diff --git a/code/__DEFINES/equipment.dm b/code/__DEFINES/equipment.dm index c56345e1d68..0280da92017 100644 --- a/code/__DEFINES/equipment.dm +++ b/code/__DEFINES/equipment.dm @@ -572,6 +572,7 @@ GLOBAL_LIST_INIT(uniform_categories, list( #define PHONE_MARINE "Marine" #define PHONE_UPP_SOLDIER "Soldier" #define PHONE_IO "IO" +#define PHONE_CANC_SOLDIER "CANC" #define PHONE_DND_FORCED 2 #define PHONE_DND_ON 1 diff --git a/code/_globalvars/lists/names.dm b/code/_globalvars/lists/names.dm index bb554dc35a4..86fc3fc0160 100644 --- a/code/_globalvars/lists/names.dm +++ b/code/_globalvars/lists/names.dm @@ -34,6 +34,10 @@ GLOBAL_LIST_INIT(first_names_female_gladiator, list("Aelia", "Aquila", "Caecilia GLOBAL_LIST_INIT(first_names_male_dutch, list("Raymond", "Jesse", "Jack", "John", "Sam", "Aaron", "Charlie", "Ellis", "Nick", "Francis", "Louis")) GLOBAL_LIST_INIT(first_names_female_dutch, list("Chelsea", "Mira", "Jessica", "Catherine", "Eliza", "Emma", "Ashley", "Annie", "Alicia", "Miranda", "Ellen")) +GLOBAL_LIST_INIT(first_names_male_chinese, list("Haoran", "Wei", "Jie", "Lei", "Tao", "Yong", "Jun", "Feng", "Ming", "Chen", "Yang", "Kai", "Jian", "Hao", "Bo", "Zhiqiang", "Weidong", "Guang", "Liang", "Chao", "Tianyu", "Zihao", "Yuxuan", "Bowen", "Yichen", "Haoyu", "Minghao", "Junhao", "Yifan", "Yuxiang", "Zehao", "Hongwei", "Junjie", "Yiming", "Yuxi", "Zixuan", "Haoxuan", "Jiahao", "Yihang", "Yuchen")) +GLOBAL_LIST_INIT(first_names_female_chinese, list("Mei", "Lan", "Juan", "Fang", "Ting", "Jing", "Li", "Xia", "Ying", "Xue", "Hui", "Yan", "Ping", "Na", "Min", "Lihua", "Xiaomei", "Shu", "Rong", "Qing", "Yuxin", "Zihan", "Yuhan", "Yinuo", "Xinyi", "Xinyan", "Yutong", "Ruoxi", "Mengyao", "Zixuan", "Jiaxin", "Yuxi", "Yuting", "Yujia", "Xinran", "Zhiruo", "Yuxiao", "Xinyue", "Wanqing", "Shihan")) +GLOBAL_LIST_INIT(last_names_chinese, list("Wang", "Li", "Zhang", "Liu", "Chen", "Yang", "Huang", "Zhao", "Wu", "Zhou", "Xu", "Sun", "Ma", "Zhu", "Hu", "Lin", "Guo", "He", "Gao", "Luo", "Liang", "Song", "Zheng", "Xie", "Han", "Tang", "Feng", "Yu", "Dong", "Xiao", "Cheng", "Cao", "Yuan", "Deng", "Fu", "Shen", "Zeng", "Peng", "Lu", "Su")) + GLOBAL_LIST_INIT(monkey_names, list("Abu", "Aldo", "Bear", "Bingo", "Clyde", "Crystal", "Gordo", "George", "Koko", "Marcel", "Nim", "Rafiki", "Spike", "Banana", "Boots", "Bubbles", "Smiley", "Winston")) GLOBAL_LIST_INIT(weapon_surnames, list("Adze", "Axe", "Bagh Nakha", "Bo", "Bola", "Bow", "Bowman", "Cannon", "Carbine", "Cestus", "Club", "Culverin", "Dagger", "Dao", "Derringer", "Dha", "Dussack", "Emeici", "Falchion", "Fan", "Flyssa", "Gauntlet", "Hammer", "Halberd", "Harquebus", "Hatchet", "Hwando", "Katar", "Kampilan", "Knuckles", "Lance", "Lancer", "Larim", "Maduvu", "Mace", "Maru", "Mauser", "Messer", "Mine", "Mubucae", "Nyepel", "Onager", "Pata", "Pike", "Ram", "Saber", "Seax", "Shamsir", "Sickle", "Sling", "Spear", "Spears", "Staff", "Sword", "Tekko")) diff --git a/code/_globalvars/misc.dm b/code/_globalvars/misc.dm index fb1c3b6116c..2249f1bc2b3 100644 --- a/code/_globalvars/misc.dm +++ b/code/_globalvars/misc.dm @@ -139,3 +139,5 @@ GLOBAL_VAR(obfs_x) GLOBAL_VAR(obfs_y) GLOBAL_VAR_INIT(ai_xeno_weeding, TRUE) + +GLOBAL_VAR_INIT(toggle_slot_preferences, TRUE) diff --git a/code/datums/ammo/bullet/special_ammo.dm b/code/datums/ammo/bullet/special_ammo.dm index 0a704aa3aed..16fefda560f 100644 --- a/code/datums/ammo/bullet/special_ammo.dm +++ b/code/datums/ammo/bullet/special_ammo.dm @@ -245,3 +245,24 @@ damage = 45 penetration = ARMOR_PENETRATION_TIER_2 shrapnel_chance = SHRAPNEL_CHANCE_TIER_2 + damage_falloff = DAMAGE_FALLOFF_TIER_4 + +/datum/ammo/bullet/m38 + name = "12x30 bullet" + damage = 65 + headshot_state = HEADSHOT_OVERLAY_MEDIUM + icon_state = "bullet_red" + ammo_glowing = TRUE + bullet_light_color = COLOR_SOFT_RED + penetration = ARMOR_PENETRATION_TIER_6 + accuracy = HIT_ACCURACY_TIER_1 + shell_speed = AMMO_SPEED_TIER_6 + effective_range_max = 10 + damage_falloff = DAMAGE_FALLOFF_TIER_7 + accurate_range = 14 + +/datum/ammo/bullet/m38/heap + name = "high-explosive armor-piercing 12x30 bullet" + damage = 80 + bullet_light_color = COLOR_RED + penetration = ARMOR_PENETRATION_TIER_9 diff --git a/code/datums/paygrades/factions/canc/canc.dm b/code/datums/paygrades/factions/canc/canc.dm index dd94e00505e..97563e06c02 100644 --- a/code/datums/paygrades/factions/canc/canc.dm +++ b/code/datums/paygrades/factions/canc/canc.dm @@ -5,30 +5,30 @@ /datum/paygrade/canc/ca1 paygrade = PAY_SHORT_CA1 - name = "Liè Bīng" - prefix = "Li." + name = "Line Soldier" + prefix = "LinS." pay_multiplier = 0.2 /datum/paygrade/canc/ca2 paygrade = PAY_SHORT_CA2 - name = "Xià Shì" - prefix = "Xi." + name = "Senior Soldier" + prefix = "SenS." pay_multiplier = 0.3 /datum/paygrade/canc/ca3 paygrade = PAY_SHORT_CA3 - name = "Zhōng Shì" - prefix = "Zh." + name = "Junior Commander" + prefix = "JunC." pay_multiplier = 0.4 /datum/paygrade/canc/ca4 paygrade = PAY_SHORT_CA4 - name = "Er Jí Shàng Shì" - prefix = "Er Ji." + name = "Senior Commander" + prefix = "SenC." pay_multiplier = 0.5 /datum/paygrade/canc/ca5 paygrade = PAY_SHORT_CA5 - name = "Yī jí Jūn Shì Zhǎng" - prefix = "Yī jí." + name = "Junior Officer" + prefix = "JunO." pay_multiplier = 0.6 diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm index de0a2ab141a..ac6fffca867 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm @@ -408,3 +408,38 @@ GLOBAL_LIST_INIT(cm_vending_chemical_medic, list( req_access = list(ACCESS_TWE_MEDPREP) vendor_theme = VENDOR_THEME_COMPANY vendor_role = list(JOB_TWE_RMC_MEDIC) + +GLOBAL_LIST_INIT(cm_vending_clothing_medic_old, list( + + list("ESSENTIALS", 0, null, null, null), + list("Essentials", 0, /obj/effect/essentials_set/medic, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), + + list("BACKPACK (CHOOSE 1)", 0, null, null, null), + list("Medical Backpack", 0, /obj/item/storage/backpack/marine/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Medical Satchel", 0, /obj/item/storage/backpack/marine/satchel/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), + + list("BELT (CHOOSE 1)", 0, null, null, null), + list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + + list("POUCHES (CHOOSE 2)", 0, null, null, null), + list("Autoinjector Pouch", 0, /obj/item/storage/pouch/autoinjector, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Bicaridine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/bicaridine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Kelotane)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/kelotane, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/tricordrazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Vial Pouch (Full)", 0, /obj/item/storage/pouch/vials/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + + list("ACCESSORIES (CHOOSE 1)", 0, null, null, null), + list("Shoulder Holster", 0, /obj/item/clothing/accessory/storage/holster, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Drop Pouch", 0, /obj/item/clothing/accessory/storage/droppouch, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + )) + +/obj/structure/machinery/cm_vending/clothing/medic/old + name = "\improper ColMarTech Squad Medical Equipment Rack" + desc = "An automated rack hooked up to a colossal storage of hospital corpsman standard-issue equipment." + req_access = list(ACCESS_MARINE_MEDPREP) + vendor_role = list(JOB_SQUAD_MEDIC) + +/obj/structure/machinery/cm_vending/clothing/medic/old/get_listed_products(mob/user) + return GLOB.cm_vending_clothing_medic_old diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm index 8ce4fff02a4..188f22c3ff3 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm @@ -1173,3 +1173,135 @@ GLOBAL_LIST_INIT(cm_vending_clothing_marine_snowflake, list( /obj/structure/machinery/cm_vending/clothing/marine/snowflake/get_listed_products(mob/user) return GLOB.cm_vending_clothing_marine_snowflake + +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/old/populate_product_list(scale) + listed_products = list( + list("STANDARD EQUIPMENT", -1, null, null, null), + list("Marine Combat Boots", floor(scale * 15), /obj/item/clothing/shoes/marine/knife, VENDOR_ITEM_REGULAR), + list("Marine Uniform", floor(scale * 15), /obj/item/clothing/under/marine/standard/old, VENDOR_ITEM_REGULAR), + list("Marine Combat Gloves", floor(scale * 15), /obj/item/clothing/gloves/marine, VENDOR_ITEM_REGULAR), + list("Marine Radio Headset", floor(scale * 15), /obj/item/device/radio/headset/almayer/marine/solardevils, VENDOR_ITEM_REGULAR), + list("Utility Cap, Jungle", floor(scale * 15), /obj/item/clothing/head/cmcap, VENDOR_ITEM_REGULAR), + list("Utility Cap, Snow", floor(scale * 15), /obj/item/clothing/head/cmcap/snow, VENDOR_ITEM_REGULAR), + list("Utility Cap, Desert", floor(scale * 15), /obj/item/clothing/head/cmcap/desert, VENDOR_ITEM_REGULAR), + list("Operations Cap, Green", floor(scale * 15), /obj/item/clothing/head/cmcap/bridge, VENDOR_ITEM_REGULAR), + list("Operations Cap, Tan", floor(scale * 15), /obj/item/clothing/head/cmcap/bridge/tan, VENDOR_ITEM_REGULAR), + list("Boonie Hat, Jungle", floor(scale * 15), /obj/item/clothing/head/cmcap/boonie, VENDOR_ITEM_REGULAR), + list("Boonie Hat, Desert", floor(scale * 15), /obj/item/clothing/head/cmcap/boonie/tan, VENDOR_ITEM_REGULAR), + + list("WEBBINGS", -1, null, null), + list("MACE Webbing", 3, /obj/item/clothing/accessory/storage/webbing/m3/old, VENDOR_ITEM_REGULAR), + list("MACE Small Pouch Webbing", 3, /obj/item/clothing/accessory/storage/webbing/m3/small/old, VENDOR_ITEM_REGULAR), + list("MACE Drop Pouch Webbing", 1, /obj/item/clothing/accessory/storage/webbing/m3/drop, VENDOR_ITEM_REGULAR), + list("Drop Pouch", 4, /obj/item/clothing/accessory/storage/droppouch, VENDOR_ITEM_REGULAR), + list("Leg Pouch", 4, /obj/item/clothing/accessory/storage/smallpouch, VENDOR_ITEM_REGULAR), + list("Shoulder Holster", round(max(1,(scale * 0.5))), /obj/item/clothing/accessory/storage/holster, VENDOR_ITEM_REGULAR), + + list("ARMOR", -1, null, null), + list("M4 Pattern Marine Helmet", floor(scale * 15), /obj/item/clothing/head/helmet/marine/old, VENDOR_ITEM_REGULAR), + list("M59 Body Armor", round(scale * 10), /obj/item/clothing/suit/marine/light/old, VENDOR_ITEM_REGULAR), + + list("BACKPACK", -1, null, null, null), + list("Assault Pack", floor(scale * 15), /obj/item/storage/backpack/marine/old, VENDOR_ITEM_REGULAR), + list("Satchel", floor(scale * 15), /obj/item/storage/backpack/marine/satchel, VENDOR_ITEM_REGULAR), + + list("RESTRICTED BACKPACKS", -1, null, null), + list("Radio Telephone Backpack", 0.75, /obj/item/storage/backpack/marine/satchel/rto, VENDOR_ITEM_REGULAR), + + list("BELTS", -1, null, null), + list("M276 Pattern Ammo Load Rig", floor(scale * 15), /obj/item/storage/belt/marine, VENDOR_ITEM_REGULAR), + list("M276 Pattern M40 Grenade Rig", floor(scale * 10), /obj/item/storage/belt/grenade, VENDOR_ITEM_REGULAR), + list("M276 Pattern General Pistol Holster Rig", floor(scale * 15), /obj/item/storage/belt/gun/m4a3, VENDOR_ITEM_REGULAR), + list("M276 Pattern General Revolver Holster Rig", floor(scale * 15), /obj/item/storage/belt/gun/m44, VENDOR_ITEM_REGULAR), + list("M276 Pattern M82F Holster Rig", floor(scale * 5), /obj/item/storage/belt/gun/flaregun, VENDOR_ITEM_REGULAR), + list("M276 G8-A General Utility Pouch", floor(scale * 15), /obj/item/storage/backpack/general_belt, VENDOR_ITEM_REGULAR), + + list("POUCHES", -1, null, null, null), + list("First-Aid Pouch", floor(scale * 15), /obj/item/storage/pouch/firstaid, VENDOR_ITEM_REGULAR), + list("Flare Pouch (Full)", floor(scale * 15), /obj/item/storage/pouch/flare/full, VENDOR_ITEM_REGULAR), + list("Magazine Pouch", floor(scale * 15), /obj/item/storage/pouch/magazine, VENDOR_ITEM_REGULAR), + list("Medium General Pouch", floor(scale * 15), /obj/item/storage/pouch/general/medium, VENDOR_ITEM_REGULAR), + list("Pistol Magazine Pouch", floor(scale * 15), /obj/item/storage/pouch/magazine/pistol, VENDOR_ITEM_REGULAR), + list("Pistol Pouch", floor(scale * 15), /obj/item/storage/pouch/pistol, VENDOR_ITEM_REGULAR), + + list("RESTRICTED POUCHES", -1, null, null, null), + list("Construction Pouch", 1.25, /obj/item/storage/pouch/construction, VENDOR_ITEM_REGULAR), + list("Explosive Pouch", 1.25, /obj/item/storage/pouch/explosive, VENDOR_ITEM_REGULAR), + list("First Responder Pouch", 2.5, /obj/item/storage/pouch/first_responder, VENDOR_ITEM_REGULAR), + list("Large Pistol Magazine Pouch", floor(scale * 2), /obj/item/storage/pouch/magazine/pistol/large, VENDOR_ITEM_REGULAR), + list("Tools Pouch", 1.25, /obj/item/storage/pouch/tools, VENDOR_ITEM_REGULAR), + list("Sling Pouch", 1.25, /obj/item/storage/pouch/sling, VENDOR_ITEM_REGULAR), + list("Incinerator Fuel Tank Pouch", 1.25, /obj/item/storage/pouch/flamertank, VENDOR_ITEM_REGULAR), + list("Shotgun Shell Pouch", 1.25, /obj/item/storage/pouch/shotgun, VENDOR_ITEM_REGULAR), + + list("MASK", -1, null, null, null), + list("M3 Gas Mask", floor(scale * 15), /obj/item/clothing/mask/gas/old, VENDOR_ITEM_REGULAR), + list("Tactical Wrap", floor(scale * 10), /obj/item/clothing/mask/rebreather/scarf/tacticalmask, VENDOR_ITEM_REGULAR), + list("Heat Absorbent Coif", floor(scale * 10), /obj/item/clothing/mask/rebreather/scarf, VENDOR_ITEM_REGULAR), + + list("MISCELLANEOUS", -1, null, null, null), + list("Ballistic goggles", round(scale * 10), /obj/item/clothing/glasses/mgoggles, VENDOR_ITEM_REGULAR), + list("Ballistic goggles, sun-shaded", round(scale * 10), /obj/item/clothing/glasses/mgoggles/black, VENDOR_ITEM_REGULAR), + list("Ballistic goggles, laser-shaded (brown)", round(scale * 10), /obj/item/clothing/glasses/mgoggles/orange, VENDOR_ITEM_REGULAR), + list("Ballistic goggles, laser-shaded (green)", round(scale * 10), /obj/item/clothing/glasses/mgoggles/green, VENDOR_ITEM_REGULAR), + list("Solar Devils Shoulder Patch", round(scale * 15), /obj/item/clothing/accessory/patch/devils, VENDOR_ITEM_REGULAR), + list("USCM Shoulder Patch", round(scale * 15), /obj/item/clothing/accessory/patch, VENDOR_ITEM_REGULAR), + list("Firearm Lubricant", round(scale * 15), /obj/item/prop/helmetgarb/gunoil, VENDOR_ITEM_REGULAR), + list("LRRP Bedroll", round(scale * 15), /obj/item/roller/bedroll, VENDOR_ITEM_REGULAR), + list("Marine Issue Compass", round(scale * 15), /obj/item/prop/helmetgarb/compass, VENDOR_ITEM_REGULAR), + list("M5 Bayonet", round(scale * 15), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), + ) + +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/old/populate_product_list(scale) + listed_products = list( + list("FOOD", -1, null, null), + list("MRE", floor(scale * 5), /obj/item/storage/box/mre/dog_war, VENDOR_ITEM_REGULAR), + list("MRE Box", floor(scale * 1), /obj/item/ammo_box/magazine/misc/mre/dog_war, VENDOR_ITEM_REGULAR), + + list("MEDICAL", -1, null, null), + list("Gauze", round(scale * 15), /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), + list("Ointment", round(scale * 15), /obj/item/stack/medical/ointment, VENDOR_ITEM_REGULAR), + list("Splints", round(scale * 15), /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR), + list("Emergency Autoinjector", round(scale * 15), /obj/item/reagent_container/hypospray/autoinjector/emergency, VENDOR_ITEM_REGULAR), + list("Bicaridine Autoinjector", round(scale * 15), /obj/item/reagent_container/hypospray/autoinjector/bicaridine/skillless, VENDOR_ITEM_REGULAR), + list("Kelotane Autoinjector", round(scale * 15), /obj/item/reagent_container/hypospray/autoinjector/kelotane/skillless, VENDOR_ITEM_REGULAR), + list("Tricordrazine Autoinjector", round(scale * 15), /obj/item/reagent_container/hypospray/autoinjector/tricord/skillless, VENDOR_ITEM_REGULAR), + list("Tramadol Injector", round(scale * 15), /obj/item/reagent_container/hypospray/autoinjector/tramadol/skillless, VENDOR_ITEM_REGULAR), + + list("TOOLS", -1, null, null), + list("Entrenching Tool (ET)", round(scale * 2), /obj/item/tool/shovel/etool/folded, VENDOR_ITEM_REGULAR), + list("Screwdriver", round(scale * 5), /obj/item/tool/screwdriver, VENDOR_ITEM_REGULAR), + list("Wirecutters", round(scale * 5), /obj/item/tool/wirecutters, VENDOR_ITEM_REGULAR), + list("Crowbar", round(scale * 5), /obj/item/tool/crowbar, VENDOR_ITEM_REGULAR), + list("Wrench", round(scale * 5), /obj/item/tool/wrench, VENDOR_ITEM_REGULAR), + list("Multitool", round(scale * 1), /obj/item/device/multitool, VENDOR_ITEM_REGULAR), + list("Welding Tool", round(scale * 1), /obj/item/tool/weldingtool, VENDOR_ITEM_REGULAR), + + list("EXPLOSIVES", -1, null, null), + list("Plastic Explosives", round(scale * 2), /obj/item/explosive/plastic, VENDOR_ITEM_REGULAR), + list("Breaching Charge", round(scale * 2), /obj/item/explosive/plastic/breaching_charge, VENDOR_ITEM_REGULAR), + + list("FLARE AND LIGHT", -1, null, null), + list("Combat Flashlight", round(scale * 5), /obj/item/device/flashlight/combat, VENDOR_ITEM_REGULAR), + list("Box of Flashlight", round(scale * 1), /obj/item/ammo_box/magazine/misc/flashlight, VENDOR_ITEM_REGULAR), + list("Box of Flares", round(scale * 1), /obj/item/ammo_box/magazine/misc/flares, VENDOR_ITEM_REGULAR), + list("M94 Marking Flare Pack", round(scale * 10), /obj/item/storage/box/flare, VENDOR_ITEM_REGULAR), + list("M89-S Signal Flare Pack", round(scale * 1), /obj/item/storage/box/flare/signal, VENDOR_ITEM_REGULAR), + + list("SIDEARMS", -1, null, null), + list("M44 Combat Revolver", round(scale * 2), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), + list("M4A3 Service Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/m4a3/unloaded, VENDOR_ITEM_REGULAR), + list("M82F Flare Gun", round(scale * 1), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), + + list("MISCELLANEOUS", -1, null, null), + list("Extinguisher", round(scale * 5), /obj/item/tool/extinguisher, VENDOR_ITEM_REGULAR), + list("Fire Extinguisher (Portable)", round(scale * 1), /obj/item/tool/extinguisher/mini, VENDOR_ITEM_REGULAR), + list("Roller Bed", round(scale * 2), /obj/item/roller, VENDOR_ITEM_REGULAR), + list("Machete Scabbard (Full)", round(scale * 5), /obj/item/storage/large_holster/machete/full, VENDOR_ITEM_REGULAR), + list("Tactical Monocular", round(scale * 2), /obj/item/device/binoculars/range/monocular, VENDOR_ITEM_REGULAR), + list("AN/PSQ-55 Sentry Console", round(scale * 1), /obj/item/device/sentry_computer, VENDOR_ITEM_REGULAR), + list("Spare PDT/L Battle Buddy Kit", round(scale * 3), /obj/item/storage/box/pdt_kit/advanced, VENDOR_ITEM_REGULAR), + list("Rail Flashlight", round(scale * 5), /obj/item/attachable/flashlight, VENDOR_ITEM_REGULAR), + list("Two-point Sling", round(scale * 5), /obj/item/attachable/sling, VENDOR_ITEM_REGULAR), + list("M5 Bayonet", round(scale * 25), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), + ) diff --git a/code/game/objects/items/explosives/grenades/marines.dm b/code/game/objects/items/explosives/grenades/marines.dm index 24876860a46..9cda47f5451 100644 --- a/code/game/objects/items/explosives/grenades/marines.dm +++ b/code/game/objects/items/explosives/grenades/marines.dm @@ -1449,3 +1449,15 @@ item_state = "grenade_training" caliber = "20mm" explosion_power = 160 + +/obj/item/explosive/grenade/high_explosive/old + name = "\improper M74 20mm Grenade" + desc = "This grenade must be launched with a grenade launcher, and detonates once it reaches its destination." + icon_state = "grenade_m74_airburst_f" + item_state = "grenade_m74_airburst_f_active" + caliber = "20mm" + explosion_power = 30 + shrapnel_count = 16 + hand_throwable = FALSE + dual_purpose = FALSE + fuse_type = 1 diff --git a/code/game/objects/items/reagent_containers/food/mre_food/dog_war.dm b/code/game/objects/items/reagent_containers/food/mre_food/dog_war.dm new file mode 100644 index 00000000000..afeffe2cccd --- /dev/null +++ b/code/game/objects/items/reagent_containers/food/mre_food/dog_war.dm @@ -0,0 +1,154 @@ +//DOG WAR USCM MRE +//Most descriptions invented by Ivan_The_Red +/obj/item/mre_food_packet/dog_war + icon = 'icons/obj/items/food/mre_food/dog_war.dmi' + + +/obj/item/reagent_container/food/snacks/mre_food/dog_war + icon = 'icons/obj/items/food/mre_food/dog_war.dmi' +///ENTREE + +/obj/item/mre_food_packet/entree/dog_war + name = "\improper S-Ration main dish" + desc = "An MRE entree component. Contains a dense, highly nutritious component." + icon = 'icons/obj/items/food/mre_food/dog_war.dmi' + icon_state = "entree" + food_list = list( + /obj/item/reagent_container/food/snacks/mre_food/dog_war/entree/beefsteak, + /obj/item/reagent_container/food/snacks/mre_food/dog_war/entree/chickenpatty, + /obj/item/reagent_container/food/snacks/mre_food/dog_war/entree/jalapenopizza, + ) + +/obj/item/reagent_container/food/snacks/mre_food/dog_war/entree/beefsteak + name = "beef steak protein loaf" + icon_state = "beef steak loaf" + desc = "A thick and weighty pale-brown block of carbohydrates and protein with several clear break lines. It contains a marines daily intake of protein and critical carbohydrates. Will not break along lines, best to smash this with your fighting knife and boil it." + +/obj/item/reagent_container/food/snacks/mre_food/dog_war/entree/beefsteak/Initialize() + . = ..() + reagents.add_reagent("meatprotein", 28) + reagents.add_reagent("sodiumchloride", 4) + reagents.add_reagent("blackpepper", 4) + +/obj/item/reagent_container/food/snacks/mre_food/dog_war/entree/chickenpatty + name = "chicken patty protein loaf" + icon_state = "chicken patty" + desc = "Moist, stringy block of carbs and proteins with a few break lines. It contains a marines daily intake of protein and critical carbohydrates. Will not break along lines, best to smash this with your fighting knife and boil it." + +/obj/item/reagent_container/food/snacks/mre_food/dog_war/entree/chickenpatty/Initialize() + . = ..() + reagents.add_reagent("meatprotein", 30) + reagents.add_reagent("blackpepper", 4) + +/obj/item/reagent_container/food/snacks/mre_food/dog_war/entree/jalapenopizza + name = "jalapeno pizza protein loaf" + icon_state = "jalapeno pizza" + desc = "An exceedingly rare main-menu item, jalapeno pizza is an almost tasteless block of protein and carbs with some artificial flavoring on top, which makes it look like a poorly made home pizza. It contains a marines daily intake of protein and critical carbohydrates." + +/obj/item/reagent_container/food/snacks/mre_food/dog_war/entree/jalapenopizza/Initialize() + . = ..() + reagents.add_reagent("cheese", 5) + reagents.add_reagent("meatprotein", 10) + reagents.add_reagent("bread", 10) + reagents.add_reagent("vegetable", 5) + reagents.add_reagent("tomatojuice", 5) + +// PASTE + +/obj/item/reagent_container/food/drinks/cans/tube/banana + name = "S-Ration vitamin paste (banana)" + icon = 'icons/obj/items/food/mre_food/dog_war.dmi' + desc = "A vaguely banana flavoured tube of paste with screw off cap. It is an offensively neon-yellow colour, smells like old peels. Goes surprisingly well with milk!" + flavor = "paste_banana" + +/obj/item/reagent_container/food/drinks/cans/tube/banana/Initialize() + . = ..() + reagents.add_reagent("banana", 10) + reagents.add_reagent("nutriment", 10) + +/obj/item/reagent_container/food/drinks/cans/tube/ketchup + name = "S-Ration vitamin paste (tomato condiment)" + desc = "They called it Don't-Ketch, on the fact it's one of the least palletable things in the whole range of menus. Rumour says trying to make it taste not so bad will get your foot blown off by a mine, or a tripwire. Comes in a tube with screw-on cap, paste is a concerning red." + flavor = "paste_tomato" + +/obj/item/reagent_container/food/drinks/cans/tube/ketchup/Initialize() + . = ..() + reagents.add_reagent("ketchup", 15) + reagents.add_reagent("nutriment", 5) + +/obj/item/reagent_container/food/drinks/cans/tube/orange + name = "S-Ration vitamin paste (orange)" + desc = "Leave this one out in the sun for about an hour and it becomes fairly tasty to drink in water. Turns green when you do this though. Held inside a tube with screw-on cap, nominally orange adjacent in colour." + flavor = "paste_orange" + +/obj/item/reagent_container/food/drinks/cans/tube/orange/Initialize() + . = ..() + reagents.add_reagent("orangejuice", 10) + reagents.add_reagent("nutriment", 10) + +// DRINK + +/obj/item/reagent_container/food/drinks/cans/water_ration + name = "S-ration potable water" + icon = 'icons/obj/items/food/mre_food/dog_war.dmi' + icon_state = "water" + desc = "A small rectangular 350ml soft-body packet of potable water, complete with a specialized purification tablet inside. Simply press the tablet with both fingers in order to break it into the water, then shake thorougly. Troops during the Dog War called this \"Devil's Milk\" thanks to the cloudy, chalky result of the purification process." + open_sound = "rip" + open_message = "You tear the packet open." + volume = 35 + food_interactable = TRUE + possible_transfer_amounts = list(5, 10) + crushable = FALSE + gulp_size = 5 + object_fluff = "packet" + +/obj/item/reagent_container/food/drinks/cans/water_ration/Initialize() + . = ..() + reagents.add_reagent("water", 35) + +/obj/item/reagent_container/food/drinks/cans/water_ration/attack_self(mob/user) + . = ..() + update_icon() + +/obj/item/reagent_container/food/drinks/cans/water_ration/update_icon() + overlays.Cut() + if(open) + icon_state = "water_open" + else + icon_state = "water" + +// PARTY POPPERS + +/obj/item/storage/pill_bottle/packet/partypoppers + name = "\improper S-ration marching tablets" + desc = "Also called \"Party-Poppers\". Caffeine-Amphetamine tablets designed for troops in extended operations or heavy combat, commonly stolen by logistics personnel who found themselves under significant stress. Discontinued after the Pang Ho treaty of 2163 in relation to serious reports of concerns over addiction among troops." + icon = 'icons/obj/items/food/mre_food/dog_war.dmi' + icon_state = "pills" + w_class = 1 + storage_slots = 3 + max_w_class = 0 + max_storage_space = 3 + skilllock = SKILL_MEDICAL_DEFAULT + storage_flags = STORAGE_FLAGS_BOX + display_maptext = FALSE + pill_type_to_fill = /obj/item/reagent_container/pill/partypopper + bottle_lid = TRUE + +/obj/item/storage/pill_bottle/packet/partypoppers/gum + pill_type_to_fill = /obj/item/reagent_container/pill/partypopper/gum + +/obj/item/reagent_container/pill/partypopper + name = "marching tablet" + icon = 'icons/obj/items/food/mre_food/dog_war.dmi' + desc = "Chocolate-flavored marching tablet, also known as a party-popper." + icon_state = "chocolate_pill" + reagent_desc_override = FALSE + volume = 31 + pill_initial_reagents = list("adrenaline_concentrated" = 1, "sugar" = 5, "coco" = 10, "coffee" = 15) + +/obj/item/reagent_container/pill/partypopper/gum + desc = "Gum-flavored marching tablet, also known as a party-popper. It's disturbingly pink." + icon_state = "gum_pill" + reagent_desc_override = FALSE + volume = 31 + pill_initial_reagents = list("adrenaline_concentrated" = 1, "sugar" = 5, "berryjuice" = 10, "coffee" = 15) diff --git a/code/game/objects/items/stacks/flags.dm b/code/game/objects/items/stacks/flags.dm index b1b437b484f..835ff1a6ff0 100644 --- a/code/game/objects/items/stacks/flags.dm +++ b/code/game/objects/items/stacks/flags.dm @@ -336,3 +336,20 @@ desc = "The flag of Brazil." icon_state = "flag_brazil_planted" flag_type = /obj/item/flag/plantable/brazil + +// CANC FLAG // +////////////////////////// + +/obj/item/flag/plantable/canc + name = "\improper CANC flag" + desc = "The flag of Chinese/Asian-Nation Cooperative. This one looks ready to be planted into the ground." + icon = 'icons/obj/structures/plantable_flag.dmi' + icon_state = "flag_canc" + flag_type = /obj/structure/flag/plantable/canc + faction = FACTION_CANC + +/obj/structure/flag/plantable/canc + name = "\improper Brazil flag" + desc = "The flag of CANC." + icon_state = "flag_canc_planted" + flag_type = /obj/item/flag/plantable/canc diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index 3882b5f018c..fa5454f48f1 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -422,6 +422,12 @@ /obj/item/storage/backpack/marine/standard has_gamemode_skin = FALSE +/obj/item/storage/backpack/marine/old + name = "\improper dated assault pack" + desc = "One of the many backpacks used by UA militaries prior to widespread adoption of M3 armor and Intuitive Mounting Point system." + icon_state = "marinepack" + item_state = "marinepack" + /obj/item/storage/backpack/marine/ammo_rack name = "\improper IMP ammo rack" desc = "A bare IMP frame with buckles designed to hold multiple ammo cans, but can fit any cumbersome box thanks to Marine ingenuity. Helps you lug around extra rounds or supplies." @@ -581,7 +587,10 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r icon_state = PHONE_ON_BASE_UNIT_ICON_STATE /obj/item/storage/backpack/marine/satchel/rto/upp_net - name = "\improper UPP Radio Telephone Pack" + name = "\improper R-559 'Bagulnik' Radio Telephone Pack" + icon_state = "upp_rto_backpack" + item_state = "upp_rto_backpack" + phone_category = PHONE_UPP_SOLDIER networks_receive = list(FACTION_UPP) networks_transmit = list(FACTION_UPP) @@ -590,7 +599,8 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r max_storage_space = 10 /obj/item/storage/backpack/marine/satchel/rto/small/upp_net - name = "\improper UPP Radio Telephone Pack" + name = "\improper R-559-A 'Bagulnik' Small Radio Telephone Pack" + desc = "A smaller variant of the heavy-duty pack, used for telecommunications between central command. Commonly carried by RTOs." networks_receive = list(FACTION_UPP) networks_transmit = list(FACTION_UPP) phone_category = PHONE_UPP_SOLDIER @@ -598,8 +608,16 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r /obj/item/storage/backpack/marine/satchel/rto/io phone_category = PHONE_IO +/obj/item/storage/backpack/marine/satchel/rto/canc + name = "\improper Type 559 Radio Telephone Pack" + icon_state = "upp_rto_backpack" + item_state = "upp_rto_backpack" + phone_category = PHONE_CANC_SOLDIER + networks_receive = list(FACTION_UPP) + networks_transmit = list(FACTION_UPP) + /obj/item/storage/backpack/marine/smock - name = "\improper M3 sniper's smock" + name = "\improper camo smock" desc = "A specially-designed smock with pockets for all your sniper needs." icon_state = "smock" worn_accessible = TRUE @@ -621,6 +639,11 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r has_gamemode_skin = FALSE //monkeysfist101 never sprited a snowtype but included duplicate icons. Why?? Recolor and touch up sprite at a later date. xeno_types = null +/obj/item/storage/backpack/marine/rocketpack/upp + name = "\improper 57-Sh-100 rocket bag" + desc = "A UPP-designed rocket bag that fits several types of rockets, grenades and missiles." + icon_state = "upp_rocketpack" + /obj/item/storage/backpack/marine/grenadepack name = "\improper USCM IMP M63A1 grenade satchel" desc = "A secure satchel with dedicated grenade pouches meant to minimize risks of secondary ignition." diff --git a/code/game/objects/items/storage/mre.dm b/code/game/objects/items/storage/mre.dm index b7eee05adbc..535c5da6ad8 100644 --- a/code/game/objects/items/storage/mre.dm +++ b/code/game/objects/items/storage/mre.dm @@ -50,10 +50,14 @@ cookie = rand(1,3) if(cookie == 1) storage_slots += 1 - new entree(src) - new side(src) - new snack(src) - new dessert(src) + if(entree) + new entree(src) + if(side) + new side(src) + if(snack) + new snack(src) + if(dessert) + new dessert(src) if(supersized) storage_slots +=4 new entree2(src) @@ -402,3 +406,45 @@ new /obj/item/reagent_container/food/drinks/cans/spread/strawberryjam(src) if(2) new /obj/item/reagent_container/food/drinks/cans/spread/sunflowerbutter(src) + +/obj/item/storage/box/mre/dog_war + name = "\improper UA field sustainment ration" + desc = "Also known as S-ration. Out of production MRE package designed to sustain colonial marines before the adoption of Marine '70. While several \"menus\" exist, the only real difference is how they flavoured the ProCar block and the assortment of pastes available. If the seal isn't broken on this hermetically secured container, it may still have its \"Party-Poppers\"!" + icon_state = "dogwar_mealpack" + icon_closed = "dogwar_mealpack" + icon_opened = "dogwar_mealpackopened" + item_state = "wy_mealpack" + trash_item = /obj/item/trash/hdr_mre + side = /obj/item/reagent_container/food/drinks/cans/water_ration + should_have_spread = TRUE + should_have_beverage = FALSE + should_have_utencil = TRUE + should_have_drink = FALSE + should_have_cigarettes = FALSE + should_have_matches = FALSE + should_have_cookie = FALSE + entree = /obj/item/mre_food_packet/entree/dog_war + snack = null + dessert = null + storage_slots = 2 + +/obj/item/storage/box/mre/dog_war/Initialize() + . = ..() + if(prob(10)) + storage_slots++ + var/poppers = pick(/obj/item/storage/pill_bottle/packet/partypoppers, /obj/item/storage/pill_bottle/packet/partypoppers/gum) + new poppers(src) + can_hold += poppers + +/obj/item/storage/box/mre/dog_war/choose_utencil() + new /obj/item/tool/kitchen/utensil/pspoon(src) + +/obj/item/storage/box/mre/dog_war/choose_spread() + var/spread_type = rand(1, 3) + switch(spread_type) + if(1) + new /obj/item/reagent_container/food/drinks/cans/tube/banana(src) + if(2) + new /obj/item/reagent_container/food/drinks/cans/tube/ketchup(src) + if(3) + new /obj/item/reagent_container/food/drinks/cans/tube/orange(src) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm b/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm index 663f894a34c..bb9b0e01441 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm @@ -211,3 +211,8 @@ /obj/structure/closet/secure_closet/marine_personal/rmc/troop_commander job = JOB_TWE_RMC_LIEUTENANT + +/obj/structure/closet/secure_closet/marine_personal/old/spawn_gear() + new /obj/item/clothing/under/marine/standard/old(src) + new /obj/item/clothing/shoes/marine/knife/old(src) + new /obj/item/device/radio/headset/almayer/marine/solardevils(src) diff --git a/code/game/objects/structures/crates_lockers/largecrate_supplies.dm b/code/game/objects/structures/crates_lockers/largecrate_supplies.dm index 5b4d11201c5..06c656b0232 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_supplies.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_supplies.dm @@ -140,7 +140,10 @@ desc = "A supply crate containing two boxed M56D mounted smartguns." supplies = list(/obj/item/storage/box/m56d_hmg = 2) - +/obj/structure/largecrate/supply/weapons/m20a2 + name = "\improper M20A2 pulse rifle chest (x2)" + desc = "A supply crate containing two unloaded M20A2 rifles, a variant of 'Harrington' rifle with an integrated shotgun." + supplies = list(/obj/item/weapon/gun/rifle/m20a/a2/unloaded = 2) /obj/structure/largecrate/supply/ammo name = "ammunition case" @@ -180,6 +183,11 @@ desc = "An ammunition case containing eight boxes of slugs, eight boxes of buckshot, and four boxes of flechette rounds." supplies = list(/obj/item/ammo_magazine/shotgun/slugs = 8, /obj/item/ammo_magazine/shotgun/buckshot = 8, /obj/item/ammo_magazine/shotgun/flechette = 4) +/obj/structure/largecrate/supply/ammo/shotgun/sixteen + name = "16 Gauge ammunition crate (4x30)" + desc = "An ammunition case containing 4 boxes of 16 gauge buckshot." + supplies = list(/obj/item/ammo_magazine/shotgun/buckshot/light = 4) + /obj/structure/largecrate/supply/ammo/m39 name = "\improper M39 HV magazine case (x16)" desc = "An ammunition case containing sixteen M39 HV magazines." @@ -215,6 +223,11 @@ desc = "An ammunition case containing 20 Type 71 magazines." supplies = list(/obj/item/ammo_magazine/rifle/type71 = 20) +/obj/structure/largecrate/supply/ammo/m20a + name = "\improper M20A magazine case (x20)" + desc = "An ammunition case containing 20 M20A magazines." + supplies = list(/obj/item/ammo_magazine/rifle/m20a = 20) + /obj/structure/largecrate/supply/ammo/nsg23 name = "\improper NSG L23A1 magazine case (x20)" desc = "An ammunition case containing 20 NSG L23A1 magazines." diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index d58c62bbcf8..ea7d7d21f96 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -371,6 +371,7 @@ GLOBAL_LIST_INIT(roundstart_mod_verbs, list( add_verb(src, /client/proc/set_cooldown) add_verb(src, /client/proc/toggle_portrait) add_verb(src, /client/proc/toggle_intro) + add_verb(src, /client/proc/toggle_slot_preferences) add_verb(src, /client/proc/game_master_rename_platoon) add_verb(src, /client/proc/toggle_vehicle_blockers) add_verb(src, /client/proc/toggle_ai_xeno_weeding) @@ -420,6 +421,7 @@ GLOBAL_LIST_INIT(roundstart_mod_verbs, list( /client/proc/disable_fire_support, /client/proc/toggle_portrait, /client/proc/toggle_intro, + /client/proc/toggle_slot_preferences, /client/proc/gm_lighting, GLOB.admin_verbs_admin, GLOB.admin_verbs_ban, diff --git a/code/modules/admin/game_master/extra_buttons/toggle_intro.dm b/code/modules/admin/game_master/extra_buttons/toggle_intro.dm index ce95b9e99d0..fca756a50a1 100644 --- a/code/modules/admin/game_master/extra_buttons/toggle_intro.dm +++ b/code/modules/admin/game_master/extra_buttons/toggle_intro.dm @@ -12,3 +12,12 @@ SSticker.mode.toggleable_flags ^= MODE_DISABLE_INTRO_BLURB message_admins("[src] has [MODE_HAS_TOGGLEABLE_FLAG(MODE_DISABLE_INTRO_BLURB) ? "turned off" : "turned on"] intro blurb.") +/client/proc/toggle_slot_preferences() + set name = "Toggle Slot Preferences" + set category = "Game Master.Flags" + + if(!admin_holder || !check_rights(R_MOD, FALSE)) + return + + GLOB.toggle_slot_preferences = !GLOB.toggle_slot_preferences + message_admins("[src] has [GLOB.toggle_slot_preferences ? "enabled" : "disabled"] slot preferences.") diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index d15b23ec3a1..a77726e57e9 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -2113,6 +2113,8 @@ GLOBAL_LIST_INIT(bgstate_options, list( /datum/preferences/proc/find_assigned_slot(job_title, is_late_join = FALSE) if(toggle_prefs & (is_late_join ? TOGGLE_LATE_JOIN_CURRENT_SLOT : TOGGLE_START_JOIN_CURRENT_SLOT)) return + if(!GLOB.toggle_slot_preferences) + return var/slot_for_job = pref_job_slots[job_title] switch(slot_for_job) if(JOB_SLOT_RANDOMISED_SLOT) diff --git a/code/modules/clothing/head/head.dm b/code/modules/clothing/head/head.dm index af889561950..e04ac9a616f 100644 --- a/code/modules/clothing/head/head.dm +++ b/code/modules/clothing/head/head.dm @@ -114,6 +114,14 @@ name = "Black Beret" icon_state = "beret_black" +/obj/item/clothing/head/beret/cm/canc + name = "CANC beret" + desc = "Military CANC beret." + icon_state = "canc_beret" + +/obj/item/clothing/head/beret/cm/canc/leader + desc = "Military CANC beret, worn by junior officers, complete with a subdued insignia." + icon_state = "canc_beret_leader" /obj/item/clothing/head/headband name = "headband" diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index f0d4a700753..1022e819f93 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -881,6 +881,15 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( force = 20 flags_atom = NO_NAME_OVERRIDE +/obj/item/clothing/head/helmet/marine/old + name = "\improper M118 APPS pattern helmet" + desc = "Advanced Personnel Protective System armored helmet designed by NAMCo. While durable and easy to produce, this helmet featured a simple night-vision capable shooting optic, basic radio microphone and rudimentary tactical camera." + icon_state = "old_helmet" + flags_atom = NO_SNOW_TYPE + specialty = "M4 pattern marine" + built_in_visors = list() + start_down_visor_type = null + /obj/item/clothing/head/helmet/marine/grenadier name = "\improper M12 grenadier helmet" desc = "Strictly speaking, the M12 is more of an offshoot of the B-series armor systems, and is fully enclosed, with hearing protection and anti-impact liquid armor layers to cushion blast. USCMC assault teams sometimes use these in close combat, grenade heavy operations." @@ -1034,6 +1043,25 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( icon_state = "canc" flags_inv_hide = HIDEEARS|HIDETOPHAIR +/obj/item/clothing/head/helmet/marine/veteran/canc/old + name = "\improper Type 60 helmet" + desc = "Outdated CANC kettle helmet. At least it's not as heavy." + icon_state = "canc_old" + flags_inv_hide = HIDEEARS|HIDETOPHAIR + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + +/obj/item/clothing/head/helmet/marine/veteran/canc/ghillie + name = "'Bashe' ghillie hood" + desc = "A simple camouflaged cloth hood." + icon_state = "ghillie_canc" + armor_melee = CLOTHING_ARMOR_LOW + armor_bullet = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_LOW + /obj/item/clothing/head/helmet/marine/veteran/pmc name = "\improper Kame combat helmet" desc = "Standard issue high molecular density polymer combat helmet used by Weyland Yutani's elite tactical teams. Designed by Weyland-Yutani, initially as a hard hat, the project was eventually retrofitted into a cheap, reliable combat helmet system that incorporates a tactical camera, IFF signal transponder, and heads up display lens. Also features white/black hot IR viewing modes from the camera system." @@ -1643,6 +1671,12 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( desc = "Standard issue peaked cap of the Ministry of Space Security." icon_state = "upp_peaked_mss" +/obj/item/clothing/head/uppcap/canc + name = "\improper CANC officer peaked cap" + desc = "Standard issue peaked service cap of the CANC's military." + icon_state = "canc_peaked" + + /obj/item/clothing/head/uppcap/ushanka name = "\improper UL2 ushanka" desc = "Standard issue cold weather hat of the UPP's military." diff --git a/code/modules/clothing/masks/gasmask.dm b/code/modules/clothing/masks/gasmask.dm index 764be56f528..cdadf3ec031 100644 --- a/code/modules/clothing/masks/gasmask.dm +++ b/code/modules/clothing/masks/gasmask.dm @@ -31,6 +31,12 @@ icon_state = "kutjevo_respirator" item_state = "kutjevo_respirator" +/obj/item/clothing/mask/gas/old + name = "\improper M3 gasmask" + desc = "An older gasmask model used by the USCMC, M3 was initially designated EXO-P2 (exo-planet, panoramic) and intended for mining and exploration activities. Despite using a pre-existing module, R&D departement had to extensively modify it to make it suitable for combat." + icon_state = "gas_old" + item_state = "gas_old" + /obj/item/clothing/mask/gas/military name = "\improper M5 gasmask" desc = "The standard service gas mask of the USCM as part of a modernization program meant to replace the need for MOPP gear." @@ -69,6 +75,12 @@ icon_state = "pfb" item_state = "pfb" +/obj/item/clothing/mask/gas/military/upp/canc + name = "\improper Type 66 gasmask" + desc = "Unlicensed CANC modification of the Union's ShMB/4 gasmask. It features additional protective layer and anti-glare self-polarizing lenses. It's also significantly heavier, with some users reporting lenses becoming opaque forever." + icon_state = "pfbcanc" + item_state = "pfbcanc" + /obj/item/clothing/mask/gas/pve_mopp name = "\improper M2 MOPP mask" desc = "The M2 MOPP mask includes a full covering cowl that securely attaches to the MOPP suit. It is capable of protecting of a variety of radiological and biological threats." diff --git a/code/modules/clothing/shoes/marine_shoes.dm b/code/modules/clothing/shoes/marine_shoes.dm index 1a2c9eaade5..f969018f65d 100644 --- a/code/modules/clothing/shoes/marine_shoes.dm +++ b/code/modules/clothing/shoes/marine_shoes.dm @@ -41,6 +41,9 @@ /obj/item/clothing/shoes/marine/knife spawn_item_type = /obj/item/weapon/knife/marine +/obj/item/clothing/shoes/marine/knife/old + spawn_item_type = /obj/item/attachable/bayonet + /obj/item/clothing/shoes/marine/brown icon_state = "marine_brown" desc = "A pair of standard issue brown United States Colonial Marine combat boots." @@ -67,6 +70,9 @@ desc = "A pair of standard issue black UPP Naval Infantry combat boots." spawn_item_type = /obj/item/attachable/bayonet/upp +/obj/item/clothing/shoes/marine/upp/canc + spawn_item_type = /obj/item/attachable/bayonet/canc + /obj/item/clothing/shoes/marine/upp/guard desc = "A pair of standard issue brown UPP Territorial Guard combat boots." icon_state = "marine_brown" diff --git a/code/modules/clothing/suits/marine_armor/_marine_armor.dm b/code/modules/clothing/suits/marine_armor/_marine_armor.dm index 0a42a6f63c8..16d998f00e9 100644 --- a/code/modules/clothing/suits/marine_armor/_marine_armor.dm +++ b/code/modules/clothing/suits/marine_armor/_marine_armor.dm @@ -881,6 +881,16 @@ /obj/item/clothing/suit/marine/light/standard flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE +/obj/item/clothing/suit/marine/light/old + name = "M118 APPS armored vest" + desc = "Advanced Personnel Protective System armored vest, featuring Namco: Guardian Gel! liquid armor, made to protect the troops from incoming projectiles up to intermediate cartridges." + desc_lore = "The M118 APPS was introduced as the 'armor of the future' when presented to the 2148 procurement trials by the Newholt Advanced Materials Corporation under the name of \"Newholt Future Combat Armor\". The components of the NFCA were already considered 'field tested' when they arrived for trial, thanks to their extensive popularity among law enforcement and private security outfits within Sol and the Core Systems." + icon_state = "oldmarinevest" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + flags_marine_armor = NO_FLAGS + armor_variation = 0 + actions_types = list() + has_light = FALSE /obj/item/clothing/suit/marine/heavy name = "\improper M3-H pattern heavy armor" diff --git a/code/modules/clothing/suits/marine_armor/ert.dm b/code/modules/clothing/suits/marine_armor/ert.dm index c433a2d82b4..a711c7141a4 100644 --- a/code/modules/clothing/suits/marine_armor/ert.dm +++ b/code/modules/clothing/suits/marine_armor/ert.dm @@ -361,6 +361,7 @@ desc = "Vintage CANC armor system. Provides basic ballistic/shrapnel protection." icon_state = "canc" flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS + flags_marine_armor = NO_FLAGS slowdown = SLOWDOWN_ARMOR_LIGHT armor_melee = CLOTHING_ARMOR_MEDIUM armor_bullet = CLOTHING_ARMOR_MEDIUM @@ -374,11 +375,36 @@ valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_DECORARMOR,ACCESSORY_SLOT_DECORSHIN, ACCESSORY_SLOT_DECORBRACER, ACCESSORY_SLOT_DECORNECK, ACCESSORY_SLOT_PAINT, ACCESSORY_SLOT_M3UTILITY, ACCESSORY_SLOT_PONCHO, ACCESSORY_SLOT_DECORKNEE) restricted_accessory_slots = list(ACCESSORY_SLOT_DECORARMOR,ACCESSORY_SLOT_DECORBRACER, ACCESSORY_SLOT_DECORNECK, ACCESSORY_SLOT_DECORSHIN, ACCESSORY_SLOT_M3UTILITY, ACCESSORY_SLOT_PAINT, ACCESSORY_SLOT_DECORKNEE) specialty = "\improper Type 12" + has_light = FALSE + actions_types = list() + var/spawn_webbing = TRUE /obj/item/clothing/suit/marine/faction/UPP/CANC/Initialize(mapload) . = ..() - var/obj/item/clothing/accessory/storage/webbing/m3/uppsmall/webbing = new() - src.attach_accessory(null, webbing, TRUE) + if(spawn_webbing) + var/obj/item/clothing/accessory/storage/webbing/m3/uppsmall/webbing = new() + src.attach_accessory(null, webbing, TRUE) + +/obj/item/clothing/suit/marine/faction/UPP/CANC/old + name = "\improper Type 3 armored cuirass" + desc = "Extremely cheap and easy to produce CANC designed armored vest made of two layers of steel and ceramics, encased in a rad-absorbent venlar carrier. It's bad, heavy, but it's certainly better than nothing." + icon_state = "canc_old" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS + slowdown = SLOWDOWN_ARMOR_MEDIUM + armor_melee = CLOTHING_ARMOR_MEDIUM + armor_bullet = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_LOW + armor_internaldamage = CLOTHING_ARMOR_LOW + time_to_unequip = 10 + time_to_equip = 10 + flags_inventory = null + valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_DECORARMOR,ACCESSORY_SLOT_DECORSHIN, ACCESSORY_SLOT_DECORBRACER, ACCESSORY_SLOT_DECORNECK, ACCESSORY_SLOT_PAINT, ACCESSORY_SLOT_M3UTILITY, ACCESSORY_SLOT_PONCHO, ACCESSORY_SLOT_DECORKNEE) + restricted_accessory_slots = list(ACCESSORY_SLOT_DECORARMOR,ACCESSORY_SLOT_DECORBRACER, ACCESSORY_SLOT_DECORNECK, ACCESSORY_SLOT_DECORSHIN, ACCESSORY_SLOT_M3UTILITY, ACCESSORY_SLOT_PAINT, ACCESSORY_SLOT_DECORKNEE) + specialty = "\improper Type 3" + has_light = FALSE + spawn_webbing = FALSE /obj/item/clothing/suit/marine/smartgunner/upp/canc name = "\improper Type 12 CANC harness" diff --git a/code/modules/clothing/suits/marine_armor/ghillie.dm b/code/modules/clothing/suits/marine_armor/ghillie.dm index 8850bbbf6f1..a83a3598627 100644 --- a/code/modules/clothing/suits/marine_armor/ghillie.dm +++ b/code/modules/clothing/suits/marine_armor/ghillie.dm @@ -173,6 +173,20 @@ current_camo = FULL_CAMOUFLAGE_ALPHA visible_camo_alpha = VISIBLE_CAMOUFLAGE_ALPHA +/obj/item/clothing/suit/storage/marine/ghillie/canc + name = "'Bashe' ghillie suit" + desc = "CANC-produced lightweight ghillie suit often used by guerillas, snipers and partisans." + icon_state = "canc_ghillie" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + flags_marine_armor = NO_FLAGS + has_light = FALSE + armor_melee = CLOTHING_ARMOR_LOW + armor_bullet = CLOTHING_ARMOR_LOW + armor_laser = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_LOW + armor_rad = CLOTHING_ARMOR_LOW + #undef FULL_CAMOUFLAGE_ALPHA #undef VISIBLE_CAMOUFLAGE_ALPHA #undef FULL_PVE_CAMOUFLAGE_ALPHA diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm index d8e75d95b8c..5847d4eb3dd 100644 --- a/code/modules/clothing/under/marine_uniform.dm +++ b/code/modules/clothing/under/marine_uniform.dm @@ -1336,3 +1336,10 @@ desc = "Standard-issue Army uniform in a two-tone desert/temperate color scheme, complete with venlar armor inserts at critical areas to protect from blades and ballistics." flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE +/obj/item/clothing/under/marine/standard/old + name = "\improper USCM khakis" + icon_state = "d_uscmboiler" + item_state = "d_uscmboiler" + worn_state = "d_uscmboiler" + desc = "Single-tone marine khakis." + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE diff --git a/code/modules/clothing/under/ties.dm b/code/modules/clothing/under/ties.dm index 446ab8742c1..ac445bd8b2d 100644 --- a/code/modules/clothing/under/ties.dm +++ b/code/modules/clothing/under/ties.dm @@ -1435,6 +1435,13 @@ /obj/item/clothing/accessory/pads/greaves/standard flags_atom = NO_SNOW_TYPE +/obj/item/clothing/accessory/pads/greaves/canc + name = "Type 12 greaves" + desc = "CANC-made greaves for their NEWEST armor system." + icon_state = "canc_greaves" + item_state = "canc_greaves" + flags_atom = NO_SNOW_TYPE + /obj/item/clothing/accessory/pads/kneepads name = "\improper M3 Kneepads" desc = "Attachable supplementary armor for the M3 armor system. High impact ruggedized outer shell and polymer internals protect from shrapnel as well as low power ballistics." @@ -1945,3 +1952,20 @@ new /obj/item/ammo_magazine/pistol/vp78/rmc(src) new /obj/item/ammo_magazine/pistol/vp78/rmc(src) new /obj/item/clothing/mask/gas/pmc/royal_marine(src) + +/obj/item/clothing/accessory/storage/webbing/m3/old + name = "\improper MACE Webbing" + icon_state = "macenormal" + desc = "Outdated Modular Assault Carrying Equipment, designed to be worn over M59 series of flak vests." + +/obj/item/clothing/accessory/storage/webbing/m3/small/old + name = "\improper MACE Small Pouch Webbing" + icon_state = "macesmall" + desc = "An outdated Modular Assault Carrying Equipment, configured to carry a whole array of small items." + +/obj/item/clothing/accessory/storage/webbing/m3/drop + name = "\improper MACE Drop Pouch Webbing" + desc = "An unusual piece of kit, this Modular Assault Carrying Equipment webbing is configured to carry a single sizeable pouch." + icon_state = "macedrop" + hold = /obj/item/storage/internal/accessory/drop_pouch + slot = ACCESSORY_SLOT_M3UTILITY diff --git a/code/modules/cm_marines/dropship_equipment.dm b/code/modules/cm_marines/dropship_equipment.dm index cc483a5e280..045ebd841b4 100644 --- a/code/modules/cm_marines/dropship_equipment.dm +++ b/code/modules/cm_marines/dropship_equipment.dm @@ -321,13 +321,14 @@ point_cost = 50 shorthand = "MG" var/deployment_cooldown + var/mg_type = /obj/structure/machinery/m56d_hmg/mg_turret/dropship var/obj/structure/machinery/m56d_hmg/mg_turret/dropship/deployed_mg combat_equipment = FALSE /obj/structure/dropship_equipment/mg_holder/Initialize() . = ..() if(!deployed_mg) - deployed_mg = new(src) + deployed_mg = new mg_type(src) deployed_mg.deployment_system = src /obj/structure/dropship_equipment/mg_holder/Destroy() @@ -445,6 +446,9 @@ deployed_mg.forceMove(src) icon_state = "mg_system_installed" +/obj/structure/dropship_equipment/mg_holder/minigun + mg_type = /obj/structure/machinery/m56d_hmg/mg_turret/dropship/minigun + //================= FUEL EQUIPMENT =================// diff --git a/code/modules/cm_marines/smartgun_mount.dm b/code/modules/cm_marines/smartgun_mount.dm index f4c76838cb2..3069907f5ea 100644 --- a/code/modules/cm_marines/smartgun_mount.dm +++ b/code/modules/cm_marines/smartgun_mount.dm @@ -1193,3 +1193,14 @@ deployment_system.deployed_mg = null deployment_system = null return ..() + +/obj/structure/machinery/m56d_hmg/mg_turret/dropship/minigun + name = "\improper M159 'Cuatro' heavy minigun" + desc = "An outdated minigun variant designed to protect landing dropcraft. Boasts incredible rate of fire and high caliber, however, M159 is prone to malfunctions." + icon_full = "evilgun" + icon_empty = "evilgun" + fire_delay = 1 + rounds = 5000 + rounds_max = 5000 + ammo = /datum/ammo/bullet/m38 + gun_noise = 'sound/weapons/gun_dropship_minigun.ogg' \ No newline at end of file diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index f50d83dcf06..54fa7e285f9 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -234,15 +234,15 @@ new_human.b_eyes = colors[eye_color][3] //gender checks if(new_human.gender == MALE) - first_name = "[capitalize(randomly_generate_chinese_word(rand(1, 3)))]" + first_name = "[pick(GLOB.first_names_male_chinese)]" new_human.h_style = pick("CIA", "Mulder", "Pixie Cut Left", "Pixie Cut Right") new_human.f_style = pick("Shaved", "Shaved", "Shaved", "Shaved", "Shaved", "Shaved", "3 O'clock Shadow", "5 O'clock Shadow", "7 O'clock Shadow",) else - first_name = "[capitalize(randomly_generate_chinese_word(rand(1, 3)))]" + first_name = "[pick(GLOB.first_names_female_chinese)]" new_human.h_style = pick("CIA", "Mulder", "Pixie Cut Left", "Pixie Cut Right","Bun", "Short Bangs") //surname - last_name = "[capitalize(randomly_generate_chinese_word(rand(1, 4)))]" - random_name = "[first_name] [last_name]" + last_name = "[pick(GLOB.last_names_chinese)]" + random_name = "[last_name] [first_name]" new_human.change_real_name(new_human, random_name) if(BRAZILIAN_ETHNICITY) new_human.skin_color = pick(45;"Tan 3",10;"Tan 2",15;"Dark 1",10;"Dark 3",10;"Melanated",5;"Pale 3",5;"Pale 2") diff --git a/code/modules/gear_presets/canc.dm b/code/modules/gear_presets/canc.dm index 59ab613c31e..7bd767ca012 100644 --- a/code/modules/gear_presets/canc.dm +++ b/code/modules/gear_presets/canc.dm @@ -86,8 +86,8 @@ //jacket new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/marine/faction/UPP/CANC(new_human), WEAR_JACKET) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/guard/canc(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/brown(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/canc(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/pistol/alt, WEAR_R_STORE) diff --git a/code/modules/gear_presets/dog_war.dm b/code/modules/gear_presets/dog_war.dm new file mode 100644 index 00000000000..5a669e3b789 --- /dev/null +++ b/code/modules/gear_presets/dog_war.dm @@ -0,0 +1,531 @@ +/datum/equipment_preset/canc/remnant/old + name = "CANC Reservist (Dog War)" + flags = EQUIPMENT_PRESET_EXTRA + assignment = "Rifleman" + +/datum/equipment_preset/canc/remnant/old/load_gear(mob/living/carbon/human/new_human) + new_human.undershirt = "undershirt" + //back + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/upp(new_human), WEAR_BACK) + var/random_yummers = pick(/obj/item/reagent_container/food/drinks/cans/food/upp/soup, /obj/item/reagent_container/food/drinks/cans/food/upp/stew, /obj/item/reagent_container/food/drinks/cans/food/upp/speck) + new_human.equip_to_slot_or_del(new random_yummers(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller/bedroll(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/canteen(new_human), WEAR_IN_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/solardevils/canc(new_human), WEAR_L_EAR) + var/random_neckwear_canc = rand(1,4) + switch(random_neckwear_canc) + if(1) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/neckerchief/red(new_human), WEAR_FACE) + if(2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/red(new_human), WEAR_FACE) + //head + var/random_headwear = rand(1, 6) + switch(random_headwear) + if(1 to 4) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/canc/old(new_human), WEAR_HEAD) + if(5) + var/random_hat = pick(/obj/item/clothing/head/uppcap/boonie/canc, /obj/item/clothing/head/cmcap/flap/canc, /obj/item/clothing/head/headband/red) + new_human.equip_to_slot_or_del(new random_hat(new_human), WEAR_HEAD) + //uniform + add_canc_uniform(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/smallpouch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/canc/e1(new_human), WEAR_ACCESSORY) + //jacket + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/marine/faction/UPP/CANC/old(new_human), WEAR_JACKET) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/guard/canc(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/brown(new_human), WEAR_HANDS) + //pockets + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack, WEAR_R_STORE) + var/l_store = pick(/obj/item/reagent_container/hypospray/autoinjector/tricord/skillless, /obj/item/reagent_container/hypospray/autoinjector/bicaridine/skillless, /obj/item/reagent_container/hypospray/autoinjector/tramadol/skillless) + new_human.equip_to_slot_or_del(new l_store, WEAR_L_STORE) + if(prob(25)) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/l42a/abr40/canc/infantry(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/upp, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type40, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type40, WEAR_IN_BELT) + else + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/pps43/flashlight(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/upp, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/pps43, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/pps43, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/pps43, WEAR_IN_BELT) + if(prob(30)) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/orange(new_human), WEAR_IN_HELMET) + +/datum/equipment_preset/canc/remnant/old/leader + name = "CANC Squad Leader (Dog War)" + paygrades = list(PAY_SHORT_CA4 = JOB_PLAYTIME_TIER_0) + flags = EQUIPMENT_PRESET_EXTRA + +/datum/equipment_preset/canc/remnant/old/leader/load_gear(mob/living/carbon/human/new_human) + new_human.undershirt = "undershirt" + //back + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/rto/canc(new_human), WEAR_BACK) + var/random_yummers = pick(/obj/item/reagent_container/food/drinks/cans/food/upp/soup, /obj/item/reagent_container/food/drinks/cans/food/upp/stew, /obj/item/reagent_container/food/drinks/cans/food/upp/speck) + new_human.equip_to_slot_or_del(new random_yummers(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/kitchen/can_opener/compact(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller/bedroll(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/canteen(new_human), WEAR_IN_BACK) + + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/solardevils/canc(new_human), WEAR_L_EAR) + var/random_neckwear_canc = rand(1,4) + switch(random_neckwear_canc) + if(1) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/neckerchief/red(new_human), WEAR_FACE) + if(2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/red(new_human), WEAR_FACE) + //head + if(prob(25)) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/canc(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/canc(new_human), WEAR_IN_BACK) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/canc(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/canc(new_human), WEAR_IN_BACK) + + //uniform + add_canc_uniform(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator/upp, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/map, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/canc/e4(new_human), WEAR_ACCESSORY) + //jacket + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/marine/faction/UPP/CANC(new_human), WEAR_JACKET) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/canc(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + //pockets + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack, WEAR_R_STORE) + var/l_store = pick(/obj/item/reagent_container/hypospray/autoinjector/tricord/skillless, /obj/item/reagent_container/hypospray/autoinjector/bicaridine/skillless, /obj/item/reagent_container/hypospray/autoinjector/tramadol/skillless) + new_human.equip_to_slot_or_del(new l_store, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/lw317(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/upp, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lw317, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lw317, WEAR_IN_BELT) + +/datum/equipment_preset/canc/remnant/old/medic + name = "CANC Reservist Medic (Dog War)" + assignment = "Medic" + paygrades = list(PAY_SHORT_CA2 = JOB_PLAYTIME_TIER_0) + flags = EQUIPMENT_PRESET_EXTRA + +/datum/equipment_preset/canc/remnant/old/medic/load_gear(mob/living/carbon/human/new_human) + new_human.undershirt = "undershirt" + //back + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/upp(new_human), WEAR_BACK) + var/random_yummers = pick(/obj/item/reagent_container/food/drinks/cans/food/upp/soup, /obj/item/reagent_container/food/drinks/cans/food/upp/stew, /obj/item/reagent_container/food/drinks/cans/food/upp/speck) + var/random_yummers2 = pick(/obj/item/reagent_container/food/drinks/cans/food/upp/soup, /obj/item/reagent_container/food/drinks/cans/food/upp/stew, /obj/item/reagent_container/food/drinks/cans/food/upp/speck) + new_human.equip_to_slot_or_del(new random_yummers(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new random_yummers2(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/canteen(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/blood/saline(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/blood/saline(new_human), WEAR_IN_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/solardevils/canc(new_human), WEAR_L_EAR) + var/random_neckwear_canc = rand(1,4) + switch(random_neckwear_canc) + if(1) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/neckerchief/red(new_human), WEAR_FACE) + if(2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/red(new_human), WEAR_FACE) + //head + var/random_headwear = pick(/obj/item/clothing/head/helmet/marine/veteran/canc/old, /obj/item/clothing/head/cmcap/flap/canc) + new_human.equip_to_slot_or_del(new random_headwear(new_human), WEAR_HEAD) + //uniform + add_canc_uniform(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer/soul, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/canc/e1(new_human), WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/armband/med(new_human), WEAR_ACCESSORY) + //jacket + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/marine/faction/UPP/CANC/old(new_human), WEAR_JACKET) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/guard/canc(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/brown(new_human), WEAR_HANDS) + //pockets + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/advanced/bruise_pack, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/tricord/skillless, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/pps43/extended_mag(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/general_belt/upp, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/advanced/bruise_pack, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/advanced/ointment, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/bicaridine, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/tramadol, WEAR_IN_BELT) + if(prob(30)) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/orange(new_human), WEAR_IN_HELMET) + +/datum/equipment_preset/canc/remnant/old/marksman + name = "CANC Reservist Marksman (Dog War)" + assignment = "Marksman" + paygrades = list(PAY_SHORT_CA2 = JOB_PLAYTIME_TIER_0) + flags = EQUIPMENT_PRESET_EXTRA + +/datum/equipment_preset/canc/remnant/old/marksman/load_gear(mob/living/carbon/human/new_human) + new_human.undershirt = "undershirt" + //back + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/l42a/abr40/canc(new_human), WEAR_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/solardevils/canc(new_human), WEAR_L_EAR) + var/random_neckwear_canc = rand(1,4) + switch(random_neckwear_canc) + if(1) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/neckerchief/red(new_human), WEAR_FACE) + if(2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/red(new_human), WEAR_FACE) + //head + var/random_headwear = rand(1, 6) + switch(random_headwear) + if(1 to 5) + var/random_hat = pick(/obj/item/clothing/head/uppcap/boonie/canc, /obj/item/clothing/head/cmcap/flap/canc, /obj/item/clothing/head/headband/red) + new_human.equip_to_slot_or_del(new random_hat(new_human), WEAR_HEAD) + //uniform + add_canc_uniform(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/smallpouch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/canc/e1(new_human), WEAR_ACCESSORY) + //jacket + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/marine/faction/UPP/CANC/old(new_human), WEAR_JACKET) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/guard/canc(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/brown(new_human), WEAR_HANDS) + //pockets + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack, WEAR_R_STORE) + var/l_store = pick(/obj/item/reagent_container/hypospray/autoinjector/tricord/skillless, /obj/item/reagent_container/hypospray/autoinjector/bicaridine/skillless, /obj/item/reagent_container/hypospray/autoinjector/tramadol/skillless) + new_human.equip_to_slot_or_del(new l_store, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/general_belt/upp(new_human), WEAR_J_STORE) + var/random_yummers = pick(/obj/item/reagent_container/food/drinks/cans/food/upp/soup, /obj/item/reagent_container/food/drinks/cans/food/upp/stew, /obj/item/reagent_container/food/drinks/cans/food/upp/speck) + new_human.equip_to_slot_or_del(new random_yummers(new_human), WEAR_IN_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/roller/bedroll(new_human), WEAR_IN_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/canteen(new_human), WEAR_IN_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/upp, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type40/ap, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type40/ap, WEAR_IN_BELT) + if(prob(30)) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/orange(new_human), WEAR_IN_HELMET) + +/datum/equipment_preset/canc/remnant/old/marksman/ghillie + name = "CANC Reservist Marksman (Dog War, Ghillied Up)" + assignment = "Marksman" + paygrades = list(PAY_SHORT_CA3 = JOB_PLAYTIME_TIER_0) + flags = EQUIPMENT_PRESET_EXTRA + +/datum/equipment_preset/canc/remnant/old/marksman/ghillie/load_gear(mob/living/carbon/human/new_human) + new_human.undershirt = "undershirt" + //back + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/l42a/abr40/canc(new_human), WEAR_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/solardevils/canc(new_human), WEAR_L_EAR) + var/obj/item/facepaint/sniper/paint = new() + paint.paint_face(new_human, new_human) + qdel(paint) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/canc/ghillie(new_human), WEAR_HEAD) + //uniform + add_canc_uniform(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch/upp, WEAR_ACCESSORY) + var/random_yummers = pick(/obj/item/reagent_container/food/drinks/cans/food/upp/soup, /obj/item/reagent_container/food/drinks/cans/food/upp/stew, /obj/item/reagent_container/food/drinks/cans/food/upp/speck) + new_human.equip_to_slot_or_del(new random_yummers(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/roller/bedroll(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/canteen(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/canc/e1(new_human), WEAR_ACCESSORY) + //jacket + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/ghillie/canc(new_human), WEAR_JACKET) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/guard/canc(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/brown(new_human), WEAR_HANDS) + //pockets + var/l_store = pick(/obj/item/reagent_container/hypospray/autoinjector/tricord/skillless, /obj/item/reagent_container/hypospray/autoinjector/bicaridine/skillless, /obj/item/reagent_container/hypospray/autoinjector/tramadol/skillless) + new_human.equip_to_slot_or_del(new l_store, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type40/ap, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type40/ap, WEAR_IN_R_STORE) + +/datum/equipment_preset/canc/remnant/old/commando + name = "CANC Commando (Dog War)" + flags = EQUIPMENT_PRESET_EXTRA + assignment = "Commando" + paygrades = list(PAY_SHORT_CA3 = JOB_PLAYTIME_TIER_0) + flags = EQUIPMENT_PRESET_EXTRA + +/datum/equipment_preset/canc/remnant/old/commando/load_gear(mob/living/carbon/human/new_human) + new_human.undershirt = "undershirt" + //back + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/canc_monoscope(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/smock(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller/bedroll(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/mre/upp(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/kitchen/can_opener(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/canteen(new_human), WEAR_IN_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/solardevils/canc(new_human), WEAR_L_EAR) + var/obj/item/facepaint/sniper/paint = new() + paint.paint_face(new_human, new_human) + qdel(paint) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/canc(new_human), WEAR_HEAD) + //uniform + add_canc_uniform(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/smallpouch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/canc/e1(new_human), WEAR_ACCESSORY) + //jacket + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/marine/faction/UPP/CANC(new_human), WEAR_JACKET) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/guard/canc(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/brown(new_human), WEAR_HANDS) + //pockets + var/pouch_type = pick(/obj/item/storage/pouch/firstaid/full/alternate, /obj/item/storage/pouch/firstaid/full) + new_human.equip_to_slot_or_del(new pouch_type(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/pistol/alt(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/t73, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/lw317(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/upp, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lw317, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lw317, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lw317, WEAR_IN_BELT) + + +/datum/equipment_preset/canc/remnant/old/commando/leader + name = "CANC Commando Leader (Dog War)" + flags = EQUIPMENT_PRESET_EXTRA + assignment = "Leader" + paygrades = list(PAY_SHORT_CA5 = JOB_PLAYTIME_TIER_0) + flags = EQUIPMENT_PRESET_EXTRA + +/datum/equipment_preset/canc/remnant/old/commando/leader/load_gear(mob/living/carbon/human/new_human) + new_human.undershirt = "undershirt" + //back + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/canc_monoscope(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/rto/canc(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller/bedroll(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/mre/upp(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/kitchen/can_opener(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/canteen(new_human), WEAR_IN_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/solardevils/canc(new_human), WEAR_L_EAR) + var/obj/item/facepaint/sniper/paint = new() + paint.paint_face(new_human, new_human) + qdel(paint) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/cm/canc/leader(new_human), WEAR_HEAD) + //uniform + add_canc_uniform(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/smallpouch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/canc/e1(new_human), WEAR_ACCESSORY) + //jacket + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/marine/faction/UPP/CANC(new_human), WEAR_JACKET) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/guard/canc(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/brown(new_human), WEAR_HANDS) + //pockets + var/pouch_type = pick(/obj/item/storage/pouch/firstaid/full/alternate, /obj/item/storage/pouch/firstaid/full) + new_human.equip_to_slot_or_del(new pouch_type(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/pistol/alt(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/t73, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/lw317(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/upp, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lw317, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lw317, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lw317, WEAR_IN_BELT) + +/datum/equipment_preset/canc/remnant/old/commando/machinegunner + name = "CANC Commando Machinegunner (Dog War)" + flags = EQUIPMENT_PRESET_EXTRA + assignment = "Commando Machinegunner" + paygrades = list(PAY_SHORT_CA4 = JOB_PLAYTIME_TIER_0) + flags = EQUIPMENT_PRESET_EXTRA + +/datum/equipment_preset/canc/remnant/old/commando/machinegunner/load_gear(mob/living/carbon/human/new_human) + new_human.undershirt = "undershirt" + //back + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/canc_monoscope(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/smock(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller/bedroll(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/mre/upp(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/kitchen/can_opener(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/canteen(new_human), WEAR_IN_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/solardevils/canc(new_human), WEAR_L_EAR) + var/obj/item/facepaint/sniper/paint = new() + paint.paint_face(new_human, new_human) + qdel(paint) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/canc(new_human), WEAR_HEAD) + //uniform + add_canc_uniform(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/smallpouch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/canc/e1(new_human), WEAR_ACCESSORY) + //jacket + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/marine/faction/UPP/CANC(new_human), WEAR_JACKET) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/guard/canc(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/brown(new_human), WEAR_HANDS) + //pockets + var/pouch_type = pick(/obj/item/storage/pouch/firstaid/full/alternate, /obj/item/storage/pouch/firstaid/full) + new_human.equip_to_slot_or_del(new pouch_type(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/pistol/alt(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/t73, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pkp/standard_fmj(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/general_belt/upp, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pkp/standard_fmj, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pkp/standard_fmj, WEAR_IN_BELT) + + +/datum/equipment_preset/canc/remnant/old/commando/sniper + name = "CANC Commando Sniper (Dog War)" + flags = EQUIPMENT_PRESET_EXTRA + assignment = "Commando Machinegunner" + paygrades = list(PAY_SHORT_CA4 = JOB_PLAYTIME_TIER_0) + flags = EQUIPMENT_PRESET_EXTRA + +/datum/equipment_preset/canc/remnant/old/commando/sniper/load_gear(mob/living/carbon/human/new_human) + new_human.undershirt = "undershirt" + //back + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/canc_monoscope(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/smock(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller/bedroll(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/mre/upp(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/kitchen/can_opener(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/canteen(new_human), WEAR_IN_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/solardevils/canc(new_human), WEAR_L_EAR) + var/obj/item/facepaint/sniper/paint = new() + paint.paint_face(new_human, new_human) + qdel(paint) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/canc(new_human), WEAR_HEAD) + //uniform + add_canc_uniform(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/smallpouch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/canc/e1(new_human), WEAR_ACCESSORY) + //jacket + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/marine/faction/UPP/CANC(new_human), WEAR_JACKET) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/guard/canc(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/brown(new_human), WEAR_HANDS) + //pockets + var/pouch_type = pick(/obj/item/storage/pouch/firstaid/full/alternate, /obj/item/storage/pouch/firstaid/full) + new_human.equip_to_slot_or_del(new pouch_type(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/t73, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/lw317/dmr(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lw317/ap(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lw317/ap(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lw317/ap(new_human), WEAR_IN_R_STORE) + +////////////////////////// +////AI PRESETS//////////// +////////////////////////// + +/datum/human_ai_equipment_preset/canc/dog_war_rifleman + name = "CANC Reservist (Dog War)" + desc = "CANC Reservist rifleman, SMG/battle rifle" + path = /datum/equipment_preset/canc/remnant/old + +/datum/human_ai_equipment_preset/canc/dog_war_leader + name = "CANC Reservist Leader (Dog War)" + desc = "CANC Reservist Leader, Better armor, LW-317." + path = /datum/equipment_preset/canc/remnant/old/leader + +/datum/human_ai_equipment_preset/canc/dog_war_medic + name = "CANC Reservist Medic (Dog War)" + desc = "CANC Reservist Medic, SMG." + path = /datum/equipment_preset/canc/remnant/old/medic + +/datum/human_ai_equipment_preset/canc/dog_war_marksman + name = "CANC Reservist Marksman (Dog War)" + desc = "CANC Reservist Marksman, Battle rifle" + path = /datum/equipment_preset/canc/remnant/old/marksman + +/datum/human_ai_equipment_preset/canc/dog_war_marksman_ghillie + name = "CANC Reservist Marksman (Dog War, Ghillied Up)" + desc = "CANC Reservist Marksman, Battle rifle, ghillied up" + path = /datum/equipment_preset/canc/remnant/old/marksman/ghillie + +/datum/human_ai_equipment_preset/canc/dog_war_commando + name = "CANC Commando (Dog War)" + desc = "CANC Commando, LW-317" + path = /datum/equipment_preset/canc/remnant/old/commando + +/datum/human_ai_equipment_preset/canc/dog_war_commando_leader + name = "CANC Commando Leader (Dog War)" + desc = "CANC Commando Leader, LW-317" + path = /datum/equipment_preset/canc/remnant/old/commando/leader + +/datum/human_ai_equipment_preset/canc/dog_war_commando_mg + name = "CANC Commando MG (Dog War)" + desc = "CANC Commando, Non-HEAP." + path = /datum/equipment_preset/canc/remnant/old/commando/machinegunner + +/datum/human_ai_equipment_preset/canc/dog_war_sniper + name = "CANC Commando Sniper (Dog War)" + desc = "CANC Commando Sniper" + path = /datum/equipment_preset/canc/remnant/old/commando/sniper + +////////////////////////// +////AI PRESETS//////////// +////////////////////////// + +/datum/human_ai_squad_preset/canc + faction = "CANC" + +/datum/human_ai_squad_preset/canc/patrol + name = "CANC Reserve Forces, Patrol (Dog War)" + desc = "2 soldiers, 1 leader." + ai_to_spawn = list( + /datum/equipment_preset/canc/remnant/old/leader = 1, + /datum/equipment_preset/canc/remnant/old = 2, + ) + +/datum/human_ai_squad_preset/canc/squad + name = "CANC Reserve Forces, Squad (Dog War)" + desc = "3 soldiers, 1 leader, 1 medic." + ai_to_spawn = list( + /datum/equipment_preset/canc/remnant/old/leader = 1, + /datum/equipment_preset/canc/remnant/old = 3, + /datum/equipment_preset/canc/remnant/old/medic = 1, + ) + +/datum/human_ai_squad_preset/canc/squad_dmr + name = "CANC Reserve Forces, Marksman Squad (Dog War)" + desc = "3 soldiers, 1 leader, 1 marksman." + ai_to_spawn = list( + /datum/equipment_preset/canc/remnant/old/leader = 1, + /datum/equipment_preset/canc/remnant/old = 3, + /datum/equipment_preset/canc/remnant/old/marksman = 1, + ) + +/datum/human_ai_squad_preset/canc/meatwave + name = "CANC Reserve Forces, Assault Force (Dog War)" + desc = "6 soldiers." + ai_to_spawn = list( + /datum/equipment_preset/canc/remnant/old = 6, + ) + +/datum/human_ai_squad_preset/canc/commando + name = "CANC Commandos, Squad (Dog War)" + desc = "2 commandos, 1 leader." + ai_to_spawn = list( + /datum/equipment_preset/canc/remnant/old/commando/leader = 1, + /datum/equipment_preset/canc/remnant/old/commando = 2, + ) + +/datum/human_ai_squad_preset/canc/commando_mg_team + name = "CANC Commandos, Machinegun Team (Dog War)" + desc = "1 commando, 1 MG." + ai_to_spawn = list( + /datum/equipment_preset/canc/remnant/old/commando/machinegunner = 1, + /datum/equipment_preset/canc/remnant/old/commando = 1, + ) + +/datum/human_ai_squad_preset/canc/commando_dmr_team + name = "CANC Commandos, Marksman Team (Dog War)" + desc = "1 commando leader, 1 DMR." + ai_to_spawn = list( + /datum/equipment_preset/canc/remnant/old/commando/leader = 1, + /datum/equipment_preset/canc/remnant/old/commando/sniper = 1, + ) \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/ai/action_datums/mg_nest.dm b/code/modules/mob/living/carbon/human/ai/action_datums/mg_nest.dm index dd309b538e9..9a7d36fff74 100644 --- a/code/modules/mob/living/carbon/human/ai/action_datums/mg_nest.dm +++ b/code/modules/mob/living/carbon/human/ai/action_datums/mg_nest.dm @@ -88,6 +88,7 @@ /datum/equipment_preset/other/elite_merc/heavy::name = /datum/equipment_preset/other/elite_merc/heavy, /datum/equipment_preset/rebel/soldier/machinegunner::name = /datum/equipment_preset/rebel/soldier/machinegunner, /datum/equipment_preset/clf/soldier/machinegunner::name = /datum/equipment_preset/clf/soldier/machinegunner, + /datum/equipment_preset/canc/remnant/old/commando/machinegunner::name = /datum/equipment_preset/canc/remnant/old/commando/machinegunner, ) if(!check_rights(R_DEBUG)) diff --git a/code/modules/mob/living/carbon/human/ai/action_datums/sniper_nest.dm b/code/modules/mob/living/carbon/human/ai/action_datums/sniper_nest.dm index c1c6fe30af5..2a7468afb3a 100644 --- a/code/modules/mob/living/carbon/human/ai/action_datums/sniper_nest.dm +++ b/code/modules/mob/living/carbon/human/ai/action_datums/sniper_nest.dm @@ -83,6 +83,9 @@ /datum/equipment_preset/royal_marine/sniper::name = /datum/equipment_preset/royal_marine/sniper/ai, /datum/equipment_preset/colonist/security/guard/marksman::name = /datum/equipment_preset/colonist/security/guard/marksman, /datum/equipment_preset/mercenary/infiltrator::name = /datum/equipment_preset/mercenary/infiltrator, + /datum/equipment_preset/canc/remnant/old/marksman::name = /datum/equipment_preset/canc/remnant/old/marksman, + /datum/equipment_preset/canc/remnant/old/marksman/ghillie::name = /datum/equipment_preset/canc/remnant/old/marksman/ghillie, + /datum/equipment_preset/canc/remnant/old/commando/sniper::name = /datum/equipment_preset/canc/remnant/old/commando/sniper, ) if(!check_rights(R_DEBUG)) diff --git a/code/modules/mob/living/carbon/human/ai/brain/ai_brain_items.dm b/code/modules/mob/living/carbon/human/ai/brain/ai_brain_items.dm index e4d88b3769e..1048ed28416 100644 --- a/code/modules/mob/living/carbon/human/ai/brain/ai_brain_items.dm +++ b/code/modules/mob/living/carbon/human/ai/brain/ai_brain_items.dm @@ -385,6 +385,10 @@ if(primary_weapon) UnregisterSignal(primary_weapon, COMSIG_PARENT_QDELETING) primary_weapon = new_gun + for(var/obj/item/attachable/flashlight/light in new_gun.contents) + if(!light) + continue + light.activate_attachment(new_gun, tied_human) appraise_primary() if(primary_weapon) RegisterSignal(primary_weapon, COMSIG_PARENT_QDELETING, PROC_REF(on_primary_delete), TRUE) @@ -492,7 +496,10 @@ /datum/human_ai_brain/proc/add_secondary_weapon(obj/item/weapon/gun/secondary) if(!secondary || (secondary in secondary_weapons)) return - + for(var/obj/item/attachable/flashlight/light in secondary.attachments) + if(!light) + continue + light.activate_attachment(secondary, tied_human) secondary_weapons += secondary RegisterSignal(secondary, COMSIG_PARENT_QDELETING, PROC_REF(on_secondary_delete), TRUE) diff --git a/code/modules/projectiles/ammo_boxes/grenade_boxes.dm b/code/modules/projectiles/ammo_boxes/grenade_boxes.dm index 0e0f7d477a3..7f4090d121b 100644 --- a/code/modules/projectiles/ammo_boxes/grenade_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/grenade_boxes.dm @@ -239,6 +239,15 @@ overlay_icon_type = "hedp" overlay_grenade_type = "40mm_hedp" +/obj/item/ammo_box/magazine/nade_box/fourtymil/old + name = "\improper M74 grenade box" + desc = "A secure box holding 25 M74 grenades. Explosive, don't store near the flamer fuel." + magazine_type = /obj/item/explosive/grenade/high_explosive/old + allowed_magazines = list(/obj/item/explosive/grenade/high_explosive/old) + overlay_model_type = "model_m74" + overlay_icon_type = "agmf" + overlay_grenade_type = "40mm_agmf" + /obj/item/ammo_box/magazine/nade_box/fourtymil/frag name = "\improper 40mm HEFA grenade box" desc = "A secure box holding 25 old-style 40mm High-Explosive, Fragmenting-Antipersonnel grenades." diff --git a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm index 2ed5f1c9e56..04cd76e5cec 100644 --- a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm @@ -877,6 +877,22 @@ /obj/item/ammo_box/magazine/mk1/large/rubber/empty empty = TRUE +/obj/item/ammo_box/magazine/mk1/large/m20 + name = "magazine box (M20A x 32)" + magazine_type = /obj/item/ammo_magazine/rifle/m20a + +/obj/item/ammo_box/magazine/mk1/large/m20/heap + name = "magazine box (HEAP M20A x 32)" + overlay_ammo_type = "_heaplarge" + overlay_content = "_heaplarge" + magazine_type = /obj/item/ammo_magazine/rifle/m20a/heap + +/obj/item/ammo_box/magazine/mk1/large/m20/ap + name = "magazine box (AP M20A x 32)" + overlay_ammo_type = "_aplarge" + overlay_content = "_aplarge" + magazine_type = /obj/item/ammo_magazine/rifle/m20a/ap + //-----------------------NSG 23 Rifle Mag Boxes----------------------- /obj/item/ammo_box/magazine/nsg23 diff --git a/code/modules/projectiles/ammo_boxes/misc_boxes.dm b/code/modules/projectiles/ammo_boxes/misc_boxes.dm index 2c6e1accb5f..8c446b6424e 100644 --- a/code/modules/projectiles/ammo_boxes/misc_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/misc_boxes.dm @@ -135,6 +135,13 @@ /obj/item/ammo_box/magazine/misc/mre/hdr/empty empty = TRUE +/obj/item/ammo_box/magazine/misc/mre/dog_war + name = "\improper box of S-rations" + desc = "A box of Field Sustainment Rations. Has a thick layer of dust on it." + icon_state = "dog_war_food_crate" + magazine_type = /obj/item/storage/box/mre/dog_war + overlay_content = "_dogwar_mre" + //------------------------M94 Marking Flare Packs Box-------------------------- /obj/item/ammo_box/magazine/misc/flares diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index f4bd2289ac2..c50ef2c08c7 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -262,6 +262,7 @@ VAR_PROTECTED/autofire_slow_mult = 1 /// How many empty shell casings are in the gun? var/empty_casings = 0 + var/sabotaged = 0 /** * An assoc list where the keys are fire delay group string defines diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 379d4e02ec4..92ebf49fb2f 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -570,6 +570,11 @@ Defined in conflicts.dm of the #defines folder. accuracy_mod = HIT_ACCURACY_MULT_TIER_3 scatter_mod = -SCATTER_AMOUNT_TIER_8 +/obj/item/attachable/m60barrel/m38 + name = "M38 barrel" + icon_state = "m38_barrel" + hud_offset_mod = -6 + /obj/item/attachable/mar50barrel name = "MAR-50 barrel" icon = 'icons/obj/items/weapons/guns/attachments/barrel.dmi' @@ -875,6 +880,34 @@ Defined in conflicts.dm of the #defines folder. else . = ..() +/obj/item/attachable/flashlight/tactical + name = "tactical flashlight" + desc = "Robust and handy tactical flashlight, produced by WiseFire Inc." + icon_state = "flashlight_tactical" + attach_icon = "flashlight_tactical_a" + original_state = "flashlight_tactical" + original_attach = "flashlight_tactical_a" + +/obj/item/attachable/flashlight/m20a + name = "integrated flashlight" + desc = "shouldnt be seeing this. . ." + icon = 'icons/obj/items/weapons/guns/attachments/under.dmi' + icon_state = "m20a_flashlight" + slot = "special" + attach_icon = "m20a_flashlight_a" + original_state = "m20a_flashlight" + original_attach = "m20a_flashlight_a" + +/obj/item/attachable/flashlight/lw317 + name = "integrated flashlight" + desc = "shouldnt be seeing this. . ." + icon = 'icons/obj/items/weapons/guns/attachments/rail.dmi' + icon_state = "lw317_flashlight" + slot = "special" + attach_icon = "lw317_flashlight_a" + original_state = "lw317_flashlight" + original_attach = "lw317_flashlight_a" + /obj/item/attachable/flashlight/grip //Grip Light is here because it is a child object. Having it further down might cause a future coder a headache. name = "underbarrel flashlight grip" desc = "Holy smokes RO man, they put a grip on a flashlight! \nReduces recoil and scatter by a tiny amount. Boosts accuracy by a tiny amount. Works as a light source." @@ -1326,6 +1359,8 @@ Defined in conflicts.dm of the #defines folder. desc = "An ARMAT S4 scope, type designation AN/PVQ-45. 2x magnification optic, increases accuracy while scoped, decreases RoF and increased wield speed." zoom_offset = 4 +/obj/item/attachable/scope/mini/canc + //Mini-scope for the scout rifle /obj/item/attachable/scope/mini/scout @@ -2603,6 +2638,13 @@ Defined in conflicts.dm of the #defines folder. icon_state = "abr40stock_tac" attach_icon = "abr40stock_tac_a" +/obj/item/attachable/stock/carbine/wood/canc + name = "\improper Type 40 \"wooden\" stock" + desc = "The default \"wooden\" stock for the Type 40 marksman rifle, the CANC modification of the L42A battle rifle. Theoretically compatible with an L42. Can't be removed." + icon_state = "type40_a" + attach_icon = "type40_a" + flags_attach_features = NO_FLAGS + /obj/item/attachable/stock/rifle/marksman name = "\improper M41A marksman stock" icon_state = "m4markstock" @@ -2768,6 +2810,10 @@ Defined in conflicts.dm of the #defines folder. melee_mod = 15 size_mod = 0 +/obj/item/attachable/stock/m60/m38 + name = "M38 stock" + icon_state = "m38_stock" + attach_icon = "m38_stock" /obj/item/attachable/stock/ppsh name = "PPSh-17b stock" @@ -3551,6 +3597,20 @@ Defined in conflicts.dm of the #defines folder. current_rounds = 1 loaded_grenades = list(new/obj/item/explosive/grenade/high_explosive/impact/upp(src)) +/obj/item/attachable/attached_gun/grenade/m20a + name = "\improper M20 integrated grenade launcher" + desc = "Unorthodox design, this single-round grenade launchers was made specifically for use with Type 71 pulse rifles. It can be quickly connected to electronic firing mechanism of the rifle, albeit wiring is prone to failures." + icon_state = "m20a" + attach_icon = "m20a" + caliber = "20mm" + current_rounds = 0 + max_rounds = 3 + max_range = 14 + attachment_firing_delay = 5 + pixel_shift_x = 20 + pixel_shift_y = 13 + has_breech = FALSE + //"ammo/flamethrower" is a bullet, but the actual process is handled through fire_attachment, linked through Fire(). /obj/item/attachable/attached_gun/flamer name = "mini flamethrower" @@ -3719,6 +3779,7 @@ Defined in conflicts.dm of the #defines folder. max_rounds = 5 current_rounds = 5 ammo = /datum/ammo/bullet/shotgun/buckshot/masterkey + var/accepted_ammo = /datum/ammo/bullet/shotgun/buckshot slot = "under" pixel_shift_y = 18 fire_sound = 'sound/weapons/gun_shotgun_u7.ogg' @@ -3743,7 +3804,7 @@ Defined in conflicts.dm of the #defines folder. /obj/item/attachable/attached_gun/shotgun/reload_attachment(obj/item/ammo_magazine/handful/mag, mob/user) if(istype(mag) && mag.flags_magazine & AMMUNITION_HANDFUL) - if(mag.default_ammo == /datum/ammo/bullet/shotgun/buckshot) + if(mag.default_ammo == accepted_ammo) if(current_rounds >= max_rounds) to_chat(user, SPAN_WARNING("[src] is full.")) else @@ -3762,13 +3823,18 @@ Defined in conflicts.dm of the #defines folder. current_rounds = 0 /obj/item/attachable/attached_gun/shotgun/m20a - name = "\improper U3 underbarrel shotgun" - desc = "An ARMAT U3 tactical shotgun. Integrated into the M20A Harrington rifle. Only capable of loading up to five buckshot shells." + name = "\improper U3 16-gauge overslung shotgun" + desc = "An ARMAT U3 tactical shotgun. Integrated into the M20A Harrington rifle. Only capable of loading up to five 16g buckshot shells." icon_state = "masterkey" attach_icon = "masterkey_a" + max_rounds = 5 + current_rounds = 5 flags_attach_features = ATTACH_ACTIVATION|ATTACH_PROJECTILE|ATTACH_RELOADABLE|ATTACH_WEAPON hidden = TRUE - + ammo = /datum/ammo/bullet/shotgun/buckshot/light + accepted_ammo = /datum/ammo/bullet/shotgun/buckshot/light + fire_sound = 'sound/weapons/gun_shotgun_xm51.ogg' + attachment_firing_delay = 6 /obj/item/attachable/attached_gun/shotgun/m20a/set_bullet_traits() return @@ -4232,6 +4298,9 @@ Defined in conflicts.dm of the #defines folder. flags_attach_features = ATTACH_ACTIVATION +/obj/item/attachable/bipod/m60/m38 + attach_icon = "bipod_m38_a" + /obj/item/attachable/bipod/vulture name = "heavy bipod" desc = "A set of rugged telescopic poles to keep a weapon stabilized during firing." diff --git a/code/modules/projectiles/guns/misc.dm b/code/modules/projectiles/guns/misc.dm index 57fb6bf7e5e..0c83426163b 100644 --- a/code/modules/projectiles/guns/misc.dm +++ b/code/modules/projectiles/guns/misc.dm @@ -92,7 +92,7 @@ start_automatic = TRUE var/cover_open = FALSE //if the gun's feed-cover is open or not. - + var/list/cover_offset = list("open_x" = -2, "open_y" = 8, "closed_x" = -10, "closed_y" = 0) /obj/item/weapon/gun/m60/Initialize(mapload, spawn_empty) . = ..() @@ -151,9 +151,9 @@ /obj/item/weapon/gun/m60/update_icon() . = ..() if(cover_open) - overlays += image("+[base_gun_icon]_cover_open", pixel_x = -2, pixel_y = 8) + overlays += image("+[base_gun_icon]_cover_open", pixel_x = cover_offset["open_x"], pixel_y = cover_offset["open_y"]) else - overlays += image("+[base_gun_icon]_cover_closed", pixel_x = -10, pixel_y = 0) + overlays += image("+[base_gun_icon]_cover_closed", pixel_x = cover_offset["closed_x"], pixel_y = cover_offset["closed_y"]) /obj/item/weapon/gun/m60/able_to_fire(mob/living/user) . = ..() @@ -279,6 +279,8 @@ to_chat(user, SPAN_WARNING("You don't seem to know how to use [src]...")) return FALSE +/obj/item/weapon/gun/pkp/standard_fmj + current_mag = /obj/item/ammo_magazine/pkp/standard_fmj /obj/item/weapon/gun/pkp/iff name = "\improper QYJ-72-I General Purpose Machine Gun" desc = "The QYJ-72-I is an experimental variant of common UPP GPMG featuring IFF capabilities which were developed by reverse-engineering USCM smartweapons. Aside from that, not much has been done to this machinegun: it's still heavy, overheats rather quickly and is able to lay down range unprecedented amounts of lead. \nAlt-click it to open the feed cover and allow for reloading." @@ -584,3 +586,39 @@ explosion_delay_sharp = !explosion_delay_sharp playsound(source, 'sound/weapons/handling/gun_burst_toggle.ogg', 15, 1) to_chat(source, SPAN_NOTICE("You [explosion_delay_sharp ? SPAN_BOLD("enable") : SPAN_BOLD("disable")] [src]'s delayed fire mode. Explosive ammo will blow up in [explosion_delay_sharp ? SPAN_BOLD("five seconds") : SPAN_BOLD("one second")].")) + +/obj/item/weapon/gun/m60/m38 + name = "M38 general purpose machinegun" + desc = "Once-standard USCM GPMG. Chambered in 12x30mm caseless, hard-hitting and extremely reliable." + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' + icon_state = "m38" + item_state = "m38" + fire_sound = 'sound/weapons/gun_hpr.ogg' + current_mag = /obj/item/ammo_magazine/m38 + aim_slowdown = SLOWDOWN_ADS_LMG + attachable_allowed = list( + /obj/item/attachable/m60barrel/m38, + /obj/item/attachable/bipod/m60/m38, + /obj/item/attachable/stock/m60/m38, + /obj/item/attachable/flashlight/tactical, + ) + starting_attachment_types = list(/obj/item/attachable/m60barrel/m38, /obj/item/attachable/bipod/m60/m38, /obj/item/attachable/stock/m60/m38, /obj/item/attachable/flashlight/tactical) + cover_offset = list("open_x" = -3, "open_y" = 4, "closed_x" = 0, "closed_y" = 0) + +/obj/item/weapon/gun/m60/m38/set_gun_config_values() + ..() + set_fire_delay(FIRE_DELAY_TIER_SMG) + set_burst_amount(BURST_AMOUNT_TIER_5) + set_burst_delay(FIRE_DELAY_TIER_LMG) + accuracy_mult = BASE_ACCURACY_MULT + accuracy_mult_unwielded = BASE_ACCURACY_MULT + scatter = SCATTER_AMOUNT_TIER_10 + fa_max_scatter = 3.5 + burst_scatter_mult = SCATTER_AMOUNT_TIER_8 + scatter_unwielded = SCATTER_AMOUNT_TIER_10 + damage_mult = BASE_BULLET_DAMAGE_MULT + recoil = RECOIL_AMOUNT_TIER_5 + empty_sound = 'sound/weapons/gun_empty.ogg' + +/obj/item/weapon/gun/m60/m38/set_gun_attachment_offsets() + attachable_offset = list("muzzle_x" = 36, "muzzle_y" = 20, "rail_x" = 0, "rail_y" = 0, "under_x" = 30, "under_y" = 14, "stock_x" = 8, "stock_y" = 16, "side_rail_x" = 30, "side_rail_y" = 16) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 55dd24a491e..19843c74e4f 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -528,6 +528,8 @@ /obj/item/attachable/lasersight, /obj/item/attachable/stock/m20a, /obj/item/attachable/attached_gun/shotgun, + /obj/item/attachable/flashlight/m20a, + /obj/item/attachable/attached_gun/grenade/m20a, ) flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER @@ -537,11 +539,11 @@ map_specific_decoration = FALSE /obj/item/weapon/gun/rifle/m20a/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 32, "muzzle_y" = 19,"rail_x" = 12, "rail_y" = 20, "under_x" = 18, "under_y" = 15, "stock_x" = 22, "stock_y" = 15, "side_rail_x" = 23, "side_rail_y" = 16) + attachable_offset = list("muzzle_x" = 32, "muzzle_y" = 19,"rail_x" = 12, "rail_y" = 20, "under_x" = 18, "under_y" = 15, "stock_x" = 22, "stock_y" = 15, "side_rail_x" = 23, "side_rail_y" = 16, "special_x" = 16, "special_y" = 16) /obj/item/weapon/gun/rifle/m20a/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_9) + set_fire_delay(FIRE_DELAY_TIER_10) set_burst_amount(BURST_AMOUNT_TIER_3) set_burst_delay(FIRE_DELAY_TIER_10) accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_5 @@ -549,14 +551,39 @@ damage_mult = BASE_BULLET_DAMAGE_MULT recoil_unwielded = RECOIL_AMOUNT_TIER_4 damage_falloff_mult = 0 - scatter = SCATTER_AMOUNT_TIER_8 - burst_scatter_mult = SCATTER_AMOUNT_TIER_8 + scatter = SCATTER_AMOUNT_TIER_9 + burst_scatter_mult = SCATTER_AMOUNT_TIER_9 /obj/item/weapon/gun/rifle/m20a/unloaded flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER|GUN_TRIGGER_SAFETY current_mag = null starting_attachment_types = list(/obj/item/attachable/stock/m20a,/obj/item/attachable/attached_gun/shotgun/m20a/unloaded) +/obj/item/weapon/gun/rifle/m20a/old + desc = "USCMC assault rifle chambered in 10x24 caseless, complete with an integrated 20mm grenade launcher and an integrated flashlight." + starting_attachment_types = list(/obj/item/attachable/stock/m20a) + start_automatic = TRUE + +/obj/item/weapon/gun/rifle/m20a/old/handle_starting_attachment() + ..() + var/obj/item/attachable/attached_gun/grenade/m20a/S = new(src) + S.flags_attach_features &= ~ATTACH_REMOVABLE + S.hidden = TRUE + S.Attach(src) + var/obj/item/attachable/flashlight/m20a/flashlight = new(src) + flashlight.flags_attach_features &= ~ATTACH_REMOVABLE + flashlight.Attach(src) + update_attachable(flashlight.slot) + +/obj/item/weapon/gun/rifle/m20a/a2 + name = "\improper M20A2 pulse rifle" + desc = "A variant of M20A pulse rifle, this model was intended for use with law enforcement agencies and during riot control operations, as it features a 16g shotgun instead of a grenade launcher. This one is painted in a tasteful metallic black color." + icon_state = "m20a2" + item_state = "m20a2" + +/obj/item/weapon/gun/rifle/m20a/a2/unloaded + current_mag = null + /obj/item/weapon/gun/rifle/m20a/merc name = "\improper M20CW pulse carbine" desc = "A heavily modified black market version of the M20A pulse rifle, often used for CQC scenarios where SMGs just aren't cutting it. Comes with an integrated grip instead of an underbarrel shotgun and downsized barrel, alongside the removed stock. It can also now shoot in automatic!" @@ -1507,8 +1534,9 @@ /obj/item/attachable/verticalgrip, // Underbarrel /obj/item/attachable/verticalgrip/upp, /obj/item/attachable/flashlight/grip/upp, + /obj/item/attachable/flashlight/lw317, ) - + starting_attachment_types = list(/obj/item/attachable/flashlight/lw317) flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER flags_equip_slot = SLOT_BACK start_automatic = TRUE @@ -1523,7 +1551,7 @@ recoil_unwielded = RECOIL_AMOUNT_TIER_3 /obj/item/weapon/gun/rifle/lw317/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 17,"rail_x" = 16, "rail_y" = 23, "under_x" = 25, "under_y" = 12, "stock_x" = 21, "stock_y" = 18, "side_rail_x" = 24, "side_rail_y" = 17) + attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 17,"rail_x" = 16, "rail_y" = 23, "under_x" = 25, "under_y" = 12, "stock_x" = 21, "stock_y" = 18, "side_rail_x" = 24, "side_rail_y" = 17, "special_x" = 15, "special_y" = 16) /obj/item/weapon/gun/rifle/lw317/dmr name = "\improper LW/RS-317 pulse carbine" @@ -1537,6 +1565,7 @@ /obj/item/attachable/verticalgrip/upp, /obj/item/attachable/flashlight/grip/upp, ) + starting_attachment_types = list() /obj/item/weapon/gun/rifle/lw317/dmr/set_gun_config_values() ..() @@ -1792,6 +1821,14 @@ /obj/item/weapon/gun/rifle/l42a/training current_mag = /obj/item/ammo_magazine/rifle/l42a/rubber +/obj/item/weapon/gun/rifle/l42a/old + name = "\improper XM24A pulse rifle" + desc = "XM24A was developed by Lindenthal-Ehrenfeld Militärindustrie under the designation of L42. It is currently undergoing field-testing in the USCMC as a marskman rifle replacement." + current_mag = /obj/item/ammo_magazine/rifle/l42a/heap + fire_sound = 'sound/weapons/gun_carbine.ogg' + starting_attachment_types = list(/obj/item/attachable/stock/carbine, /obj/item/attachable/scope/mini) + map_specific_decoration = FALSE + //------------------------------------------------------- //------------------------------------------------------- //ABR-40 hunting rifle @@ -1877,6 +1914,35 @@ /obj/item/weapon/gun/rifle/l42a/abr40/tactical/assassin starting_attachment_types = list(/obj/item/attachable/stock/carbine/wood/tactical, /obj/item/attachable/scope/mini/hunting, /obj/item/attachable/suppressor) +/obj/item/weapon/gun/rifle/l42a/abr40/canc + name = "Type 40 marksman rifle" + desc = "CANC licensed and manufactured modification of TWE's L42A rifle, chambered in the newest CANC 6x38mm caliber. Extremely common during the Dog War, but nowadays extremely rare due to the UPP destroying most of the remaining stockpiles, thus valued by collectors." + icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi' + icon_state = "type40" + item_state = "type40" + fire_sound = 'sound/weapons/gun_mar40.ogg' + current_mag = /obj/item/ammo_magazine/rifle/type40 + attachable_allowed = list( + //Barrel, + /obj/item/attachable/bayonet/canc, + //Rail, + /obj/item/attachable/scope/mini/hunting/upp, + /obj/item/attachable/flashlight, + //Under, + //Stock, + /obj/item/attachable/stock/carbine/wood/canc, + ) + starting_attachment_types = list(/obj/item/attachable/stock/carbine/wood/canc, /obj/item/attachable/scope/mini/hunting/upp) + +/obj/item/weapon/gun/rifle/l42a/abr40/canc/set_gun_attachment_offsets() + attachable_offset = list("muzzle_x" = 34, "muzzle_y" = 21,"rail_x" = 12, "rail_y" = 21, "under_x" = 18, "under_y" = 15, "stock_x" = 22, "stock_y" = 10, "side_rail_x" = 22, "side_rail_y" = 17) + +/obj/item/weapon/gun/rifle/l42a/abr40/canc/sniper + current_mag = /obj/item/ammo_magazine/rifle/type40/ap + +/obj/item/weapon/gun/rifle/l42a/abr40/canc/infantry + starting_attachment_types = list(/obj/item/attachable/stock/carbine/wood/canc, /obj/item/attachable/bayonet/canc, /obj/item/attachable/flashlight) + //=OLD ROYAL MARINES RIFLES=\\ /obj/item/weapon/gun/rifle/rmc_f90 diff --git a/code/modules/projectiles/guns/smgs.dm b/code/modules/projectiles/guns/smgs.dm index 9750dba3d46..8115ab697aa 100644 --- a/code/modules/projectiles/guns/smgs.dm +++ b/code/modules/projectiles/guns/smgs.dm @@ -410,7 +410,7 @@ /obj/item/weapon/gun/smg/pps43 name = "\improper Type-19 Submachinegun" //placeholder - desc = "An outdated, but reliable and powerful, submachinegun originating in the Union of Progressive Peoples, it is still in limited service in the UPP but is most often used by paramilitary groups or corporate security forces. It is usually used with a 35 round stick magazine, or a 71 round drum." + desc = "An outdated, but reliable submachinegun originating in the CANC." icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi' icon_state = "insasu" item_state = "insasu" @@ -440,12 +440,15 @@ burst_amount = BURST_AMOUNT_TIER_3 accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_5 - scatter = SCATTER_AMOUNT_TIER_6 - burst_scatter_mult = SCATTER_AMOUNT_TIER_4 + scatter = SCATTER_AMOUNT_TIER_7 + burst_scatter_mult = SCATTER_AMOUNT_TIER_9 scatter_unwielded = SCATTER_AMOUNT_TIER_4 damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_4 recoil_unwielded = RECOIL_AMOUNT_TIER_5 +/obj/item/weapon/gun/smg/pps43/flashlight + starting_attachment_types = list(/obj/item/attachable/flashlight) + /obj/item/weapon/gun/smg/pps43/extended_mag current_mag = /obj/item/ammo_magazine/smg/pps43/extended //------------------------------------------------------- diff --git a/code/modules/projectiles/magazines/misc.dm b/code/modules/projectiles/magazines/misc.dm index cb92a487d34..26cada9f01b 100644 --- a/code/modules/projectiles/magazines/misc.dm +++ b/code/modules/projectiles/magazines/misc.dm @@ -79,6 +79,28 @@ reload_delay = 8 gun_type = /obj/item/weapon/gun/m60 +/obj/item/ammo_magazine/m38 + name = "M38 belt box (12x30mm caseless)" + desc = "Heavy high-capacity belt box for M38 GPMG." + caliber = "12x30" + w_class = SIZE_MEDIUM + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi' + icon_state = "m60" + + matter = list("metal" = 10000) + default_ammo = /datum/ammo/bullet/m38 + max_rounds = 150 + reload_delay = 4 + gun_type = /obj/item/weapon/gun/m60/m38 + ammo_band_icon = "+m60_band" + ammo_band_icon_empty = "+m60_band_e" + +/obj/item/ammo_magazine/m38/heap + name = "M38 HEAP belt box (12x30mm caseless)" + desc = "Heavy high-capacity belt box for M38 GPMG filled with high-explosive armor piercing rounds." + default_ammo = /datum/ammo/bullet/m38/heap + ammo_band_color = AMMO_BAND_COLOR_HEAP + /obj/item/ammo_magazine/pkp name = "QYJ-72 ammo box (10x27mm HEAP)" desc = "A 250 round box of HEAP ammunition for the UPP's standard GPMG, the QYJ-72. Chambered in 10x27mm." diff --git a/code/modules/projectiles/magazines/rifles.dm b/code/modules/projectiles/magazines/rifles.dm index e4a4538387a..96a013c0675 100644 --- a/code/modules/projectiles/magazines/rifles.dm +++ b/code/modules/projectiles/magazines/rifles.dm @@ -469,6 +469,26 @@ default_ammo = /datum/ammo/bullet/rifle/holo_target/hunting ammo_band_color = AMMO_BAND_COLOR_HOLOTARGETING +/obj/item/ammo_magazine/rifle/type40 + name = "\improper Type 40 magazine (6x38mm)" + desc = "A battle rifle magazine." + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi' + caliber = "6x38mm" + icon_state = "type40" + bonus_overlay = "type40_overlay" + default_ammo = /datum/ammo/bullet/rifle/lw317 + max_rounds = 20 + gun_type = /obj/item/weapon/gun/rifle/l42a/abr40/canc + w_class = SIZE_MEDIUM + ammo_band_icon = "+type40_band" + ammo_band_icon_empty = "+type40_band_e" + + +/obj/item/ammo_magazine/rifle/type40/ap + name = "\improper Type 40 AP magazine (6x38mm)" + default_ammo = /datum/ammo/bullet/rifle/lw317/ap + ammo_band_color = AMMO_BAND_COLOR_AP + //M20A /obj/item/ammo_magazine/rifle/m20a @@ -482,6 +502,19 @@ w_class = SIZE_MEDIUM ammo_band_icon = "+m20a_band" ammo_band_icon_empty = "+m20a_band_e" + +/obj/item/ammo_magazine/rifle/m20a/heap + name = "\improper M20A HEAP magazine (10x24mm)" + desc = "A 10mm high explosive armor piercing assault rifle magazine." + default_ammo = /datum/ammo/bullet/rifle/heap + ammo_band_color = AMMO_BAND_COLOR_HEAP + +/obj/item/ammo_magazine/rifle/m20a/ap + name = "\improper M20A AP magazine (10x24mm)" + desc = "A 10mm armor piercing assault rifle magazine." + default_ammo = /datum/ammo/bullet/rifle/ap + ammo_band_color = AMMO_BAND_COLOR_AP + //------------------------------------------------------- // NSG 23 ASSAULT RIFLE - PMC PRIMARY RIFLE diff --git a/code/modules/projectiles/magazines/smgs.dm b/code/modules/projectiles/magazines/smgs.dm index 4a2606c2afd..5687b27a51a 100644 --- a/code/modules/projectiles/magazines/smgs.dm +++ b/code/modules/projectiles/magazines/smgs.dm @@ -167,9 +167,9 @@ //Type-19, based on the PPS-43 /obj/item/ammo_magazine/smg/pps43 - name = "\improper Type-19 stick magazine (7.62x25mm)" + name = "\improper Type-19 stick magazine (5.8x21mm)" desc = "A stick magazine for the Type-19 submachinegun." - caliber = "7.62x25mm" + caliber = "5.8x21mm" icon = 'icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi' icon_state = "insasu_stickmag" bonus_overlay = "insasu_stickmag_overlay" @@ -181,7 +181,7 @@ /obj/item/ammo_magazine/smg/pps43/extended - name = "\improper Type-19 drum magazine (7.62x25mm)" + name = "\improper Type-19 drum magazine (5.8x21mm)" desc = "A drum magazine for the Type-19 submachinegun." icon_state = "insasu_drum" bonus_overlay = "insasu_drum_overlay" diff --git a/colonialmarines.dme b/colonialmarines.dme index e2b70b1e956..043a4f88a2f 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -1280,6 +1280,7 @@ #include "code\game\objects\items\reagent_containers\food\drinks\jar.dm" #include "code\game\objects\items\reagent_containers\food\mre_food\clf.dm" #include "code\game\objects\items\reagent_containers\food\mre_food\core_food.dm" +#include "code\game\objects\items\reagent_containers\food\mre_food\dog_war.dm" #include "code\game\objects\items\reagent_containers\food\mre_food\hdr.dm" #include "code\game\objects\items\reagent_containers\food\mre_food\mercenary.dm" #include "code\game\objects\items\reagent_containers\food\mre_food\twe.dm" @@ -1879,6 +1880,7 @@ #include "code\modules\gear_presets\colonist.dm" #include "code\modules\gear_presets\contractor.dm" #include "code\modules\gear_presets\corpses.dm" +#include "code\modules\gear_presets\dog_war.dm" #include "code\modules\gear_presets\dutch.dm" #include "code\modules\gear_presets\fun.dm" #include "code\modules\gear_presets\mercenary.dm" diff --git a/icons/mob/humans/onmob/back.dmi b/icons/mob/humans/onmob/back.dmi index 16da10ea8b5..9bb1ddbf949 100644 Binary files a/icons/mob/humans/onmob/back.dmi and b/icons/mob/humans/onmob/back.dmi differ diff --git a/icons/mob/humans/onmob/head_1.dmi b/icons/mob/humans/onmob/head_1.dmi index 902555db820..3a34a3ba4a0 100644 Binary files a/icons/mob/humans/onmob/head_1.dmi and b/icons/mob/humans/onmob/head_1.dmi differ diff --git a/icons/mob/humans/onmob/items_lefthand_1.dmi b/icons/mob/humans/onmob/items_lefthand_1.dmi index dc48cb556c0..58a2821d37c 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_1.dmi and b/icons/mob/humans/onmob/items_lefthand_1.dmi differ diff --git a/icons/mob/humans/onmob/items_lefthand_64.dmi b/icons/mob/humans/onmob/items_lefthand_64.dmi index 626f39169d0..55791ab97e8 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_64.dmi and b/icons/mob/humans/onmob/items_lefthand_64.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_1.dmi b/icons/mob/humans/onmob/items_righthand_1.dmi index 7d3580355e2..7df45853895 100644 Binary files a/icons/mob/humans/onmob/items_righthand_1.dmi and b/icons/mob/humans/onmob/items_righthand_1.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_64.dmi b/icons/mob/humans/onmob/items_righthand_64.dmi index bc83b40c690..47e1abfe2b0 100644 Binary files a/icons/mob/humans/onmob/items_righthand_64.dmi and b/icons/mob/humans/onmob/items_righthand_64.dmi differ diff --git a/icons/mob/humans/onmob/mask.dmi b/icons/mob/humans/onmob/mask.dmi index f0efdd03645..37ec7e6462c 100644 Binary files a/icons/mob/humans/onmob/mask.dmi and b/icons/mob/humans/onmob/mask.dmi differ diff --git a/icons/mob/humans/onmob/suit_1.dmi b/icons/mob/humans/onmob/suit_1.dmi index 27329f063b9..e2c7e729228 100644 Binary files a/icons/mob/humans/onmob/suit_1.dmi and b/icons/mob/humans/onmob/suit_1.dmi differ diff --git a/icons/mob/humans/onmob/suit_slot.dmi b/icons/mob/humans/onmob/suit_slot.dmi index de6718d5e9a..222506923ed 100644 Binary files a/icons/mob/humans/onmob/suit_slot.dmi and b/icons/mob/humans/onmob/suit_slot.dmi differ diff --git a/icons/mob/humans/onmob/ties.dmi b/icons/mob/humans/onmob/ties.dmi index 3803e1a1ec7..49a2d9733cf 100644 Binary files a/icons/mob/humans/onmob/ties.dmi and b/icons/mob/humans/onmob/ties.dmi differ diff --git a/icons/mob/humans/onmob/uniform_0.dmi b/icons/mob/humans/onmob/uniform_0.dmi index 5c86b702cd9..77d4be9d520 100644 Binary files a/icons/mob/humans/onmob/uniform_0.dmi and b/icons/mob/humans/onmob/uniform_0.dmi differ diff --git a/icons/mob/humans/species/r_human.dmi b/icons/mob/humans/species/r_human.dmi index 4ab300efe5d..13cac79c299 100644 Binary files a/icons/mob/humans/species/r_human.dmi and b/icons/mob/humans/species/r_human.dmi differ diff --git a/icons/obj/items/clothing/backpacks.dmi b/icons/obj/items/clothing/backpacks.dmi index 170cad90ce5..9b6e11e3731 100644 Binary files a/icons/obj/items/clothing/backpacks.dmi and b/icons/obj/items/clothing/backpacks.dmi differ diff --git a/icons/obj/items/clothing/cm_hats.dmi b/icons/obj/items/clothing/cm_hats.dmi index 107e3aa4d81..7eb8de21c55 100644 Binary files a/icons/obj/items/clothing/cm_hats.dmi and b/icons/obj/items/clothing/cm_hats.dmi differ diff --git a/icons/obj/items/clothing/cm_suits.dmi b/icons/obj/items/clothing/cm_suits.dmi index 3aa0b846a48..5f279b36630 100644 Binary files a/icons/obj/items/clothing/cm_suits.dmi and b/icons/obj/items/clothing/cm_suits.dmi differ diff --git a/icons/obj/items/clothing/masks.dmi b/icons/obj/items/clothing/masks.dmi index e176b6d0e48..1abce3ef2d4 100644 Binary files a/icons/obj/items/clothing/masks.dmi and b/icons/obj/items/clothing/masks.dmi differ diff --git a/icons/obj/items/clothing/ties.dmi b/icons/obj/items/clothing/ties.dmi index 1dd48bd0dde..53bff345db7 100644 Binary files a/icons/obj/items/clothing/ties.dmi and b/icons/obj/items/clothing/ties.dmi differ diff --git a/icons/obj/items/clothing/ties_overlay.dmi b/icons/obj/items/clothing/ties_overlay.dmi index d799f6167e4..ba608550ca5 100644 Binary files a/icons/obj/items/clothing/ties_overlay.dmi and b/icons/obj/items/clothing/ties_overlay.dmi differ diff --git a/icons/obj/items/clothing/uniforms.dmi b/icons/obj/items/clothing/uniforms.dmi index e8e5cd1b2a1..e211af0fa96 100644 Binary files a/icons/obj/items/clothing/uniforms.dmi and b/icons/obj/items/clothing/uniforms.dmi differ diff --git a/icons/obj/items/food/mre_food/dog_war.dmi b/icons/obj/items/food/mre_food/dog_war.dmi new file mode 100644 index 00000000000..25d074b61bc Binary files /dev/null and b/icons/obj/items/food/mre_food/dog_war.dmi differ diff --git a/icons/obj/items/storage/mre.dmi b/icons/obj/items/storage/mre.dmi index d483befbe7c..c7e129634f5 100644 Binary files a/icons/obj/items/storage/mre.dmi and b/icons/obj/items/storage/mre.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi b/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi index 5a3a4e08e33..6abfcc5a195 100644 Binary files a/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi and b/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi b/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi index 075f1ba2b85..67af74959a9 100644 Binary files a/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi and b/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi index bd66837db3f..3ca4835921a 100644 Binary files a/icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi and b/icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi index caa6ac09cc7..f33c2e71fa8 100644 Binary files a/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi and b/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments/barrel.dmi b/icons/obj/items/weapons/guns/attachments/barrel.dmi index 5a4f2082b0c..7bea7bd2953 100644 Binary files a/icons/obj/items/weapons/guns/attachments/barrel.dmi and b/icons/obj/items/weapons/guns/attachments/barrel.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments/rail.dmi b/icons/obj/items/weapons/guns/attachments/rail.dmi index 656f1517869..f551137463c 100644 Binary files a/icons/obj/items/weapons/guns/attachments/rail.dmi and b/icons/obj/items/weapons/guns/attachments/rail.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments/stock.dmi b/icons/obj/items/weapons/guns/attachments/stock.dmi index e875580acc7..97b2b0bc514 100644 Binary files a/icons/obj/items/weapons/guns/attachments/stock.dmi and b/icons/obj/items/weapons/guns/attachments/stock.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments/under.dmi b/icons/obj/items/weapons/guns/attachments/under.dmi index 3b1a547c291..9ec5e6d4cb0 100644 Binary files a/icons/obj/items/weapons/guns/attachments/under.dmi and b/icons/obj/items/weapons/guns/attachments/under.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi b/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi index ddc96abaa86..0998466bba4 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi b/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi index edab035e210..5659773f7f4 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi index b2335115a03..8e989c2a7c9 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi differ diff --git a/icons/obj/structures/plantable_flag.dmi b/icons/obj/structures/plantable_flag.dmi index 96bfb372716..83ae99d6cf2 100644 Binary files a/icons/obj/structures/plantable_flag.dmi and b/icons/obj/structures/plantable_flag.dmi differ diff --git a/icons/turf/whiskeyoutpost.dmi b/icons/turf/whiskeyoutpost.dmi index 17368f0b2d8..243b9e759bb 100644 Binary files a/icons/turf/whiskeyoutpost.dmi and b/icons/turf/whiskeyoutpost.dmi differ diff --git a/map_config/shipmaps.txt b/map_config/shipmaps.txt index 23e25f24262..a08ba94980a 100644 --- a/map_config/shipmaps.txt +++ b/map_config/shipmaps.txt @@ -41,3 +41,6 @@ endmap map hms_brynhild endmap + +map golden_arrow_dog_war +endmap diff --git a/maps/golden_arrow_dog_war.json b/maps/golden_arrow_dog_war.json new file mode 100644 index 00000000000..26441f04525 --- /dev/null +++ b/maps/golden_arrow_dog_war.json @@ -0,0 +1,9 @@ +{ + "map_name": "USS Golden Arrow (Dog War)", + "map_path": "map_files/golden_arrow_dog_war", + "map_file": "golden_arrow_dog_war.dmm", + "webmap_url": "GoldenArrow", + "traits": [{"Marine Main Ship": true}], + "nightmare_path": "maps/Nightmare/maps/golden_arrow_classic/", + "platoon": "/datum/squad/marine/alpha" +} diff --git a/maps/map_files/golden_arrow_dog_war/golden_arrow_dog_war.dmm b/maps/map_files/golden_arrow_dog_war/golden_arrow_dog_war.dmm new file mode 100644 index 00000000000..af212e152f2 --- /dev/null +++ b/maps/map_files/golden_arrow_dog_war/golden_arrow_dog_war.dmm @@ -0,0 +1,30391 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/banners/united_americas_flag{ + pixel_x = -16; + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"ae" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"af" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"aj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = 7; + pixel_y = 0; + job = "Section Sergeant" + }, +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = -8; + pixel_y = 0; + job = "Corpsman" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"au" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"av" = ( +/obj/structure/target, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"aw" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 9; + pixel_y = 29 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"aA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"aC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) +"aF" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/canteen) +"aH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"aJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/item/prop/magazine/book/borntokill, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"aK" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"aM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"aY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"aZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ba" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/item/stool, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/synthcloset) +"bh" = ( +/obj/effect/landmark/start/marine/leader/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"bj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"bk" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"bl" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/firingrange) +"bp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"bs" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"bt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"bx" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"bC" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"bF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"bJ" = ( +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 + }, +/obj/structure/closet/crate/green, +/obj/item/ammo_box/magazine/nade_box/m15, +/obj/item/ammo_box/magazine/nade_box/m15, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"bO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_one_access = list() + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"bP" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"bU" = ( +/obj/structure/curtain/red, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"bV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 21 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"bY" = ( +/obj/structure/machinery/conveyor{ + dir = 10 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"ca" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/hangar) +"cb" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"cf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/clipboard{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"ch" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) +"cj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"cn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"cu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"cv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"cB" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"cF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"cM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/flare{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/device/flashlight/flare{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"cR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"cT" = ( +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"dc" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/obj/item/notepad, +/obj/item/maintenance_jack, +/obj/structure/closet, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/storage/photo_album, +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) +"dh" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_sergeant) +"do" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"dq" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"dr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"ds" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/obj/item/tool/wirecutters{ + pixel_y = -6 + }, +/obj/item/device/multitool{ + pixel_x = -10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"dw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"dx" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Private Briefing Room"; + req_access = list(); + req_one_access_txt = "12;19;32" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) +"dy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"dz" = ( +/obj/item/clothing/suit/storage/jacket/marine/service, +/obj/item/clothing/suit/storage/jacket/marine/service/tanker, +/obj/item/clothing/under/marine/officer/boiler, +/obj/structure/closet/cabinet, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"dI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"dJ" = ( +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"dK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"dQ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"dX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"ee" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"eg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"ei" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"el" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"eq" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"ev" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"ex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet{ + req_access_txt = "32;39"; + req_one_access = list(); + name = "squad sergeant locker" + }, +/obj/item/device/binoculars/range/monocular, +/obj/item/device/whistle, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"ez" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"eE" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"eK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"eM" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"eP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/misc/flares/empty{ + pixel_x = -1; + pixel_y = 16 + }, +/obj/item/device/flashlight/flare{ + pixel_x = 10 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"eT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"eV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"eW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"eX" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -20 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"fa" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"fb" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 11; + pixel_y = -10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"fh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"fm" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/engineering) +"fu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"fA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"fB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"fD" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"fE" = ( +/obj/structure/machinery/cm_vending/gear/synth{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"fH" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/old, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"fK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/old{ + req_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"fM" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"fN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet{ + name = "smartgunner locker"; + req_access_txt = "14;39"; + req_one_access = list() + }, +/obj/item/ammo_magazine/m38, +/obj/item/ammo_magazine/m38, +/obj/item/ammo_magazine/m38, +/obj/item/ammo_magazine/m38, +/obj/item/ammo_magazine/m38, +/obj/item/weapon/gun/m60/m38, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"fT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"fU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet{ + req_access_txt = "32;40"; + req_one_access = list(); + name = "squad sergeant locker" + }, +/obj/item/device/binoculars/range/monocular, +/obj/item/device/whistle, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"fV" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"fW" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"ge" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/item/device/walkman{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"gf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"gi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"gk" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"gl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"go" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"gq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"gs" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) +"gw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"gB" = ( +/obj/structure/machinery/telecomms/relay/preset/tower, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"gE" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/supply) +"gJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"gX" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/golden_arrow/briefing) +"hb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"he" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"hh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"hm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"hq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"hs" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"hy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"hC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/smartgun_battery{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/effect/spawner/random/powercell{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"hE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"hF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"hH" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 13 + }, +/obj/item/weapon/straight_razor{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"hJ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"hM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/firingrange) +"hP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/bathunisex{ + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"hS" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/platoon_commander_rooms) +"hT" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 12; + pixel_y = 29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"hX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/prop/magazine/book/bladerunner, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = 2; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"hY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"hZ" = ( +/obj/structure/machinery/cm_vending/clothing/medic/old, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"ia" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_two) +"ic" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 14; + pixel_y = -28 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"id" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"ig" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 6; + pixel_y = -29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"ii" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"ij" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"im" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"io" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"iq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) +"ir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"is" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) +"iv" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"iw" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"iA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"iE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"iF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"iI" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"iK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"iL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"iM" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"iO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"iU" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"iW" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"iY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"ja" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"jh" = ( +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = 7; + pixel_y = 0; + job = "Squad Leader" + }, +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = -8; + pixel_y = 0; + job = "Smartgunner" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"jm" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"ju" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"jw" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"jx" = ( +/obj/structure/closet/crate/green, +/obj/item/device/motiondetector, +/obj/item/device/motiondetector, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"jy" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/station_alert{ + dir = 8; + pixel_x = 15; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/synthcloset) +"jA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"jB" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"jD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"jE" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"jL" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/old{ + req_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"jP" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 17" + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"jR" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) +"jS" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"jX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"jY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"kc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional/southwest, +/area/golden_arrow/briefing) +"ke" = ( +/obj/structure/closet/wardrobe{ + name = "PT uniform" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/head/headband/red, +/obj/item/clothing/under/shorts/red, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"ko" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m20a, +/obj/item/ammo_magazine/rifle/m20a{ + pixel_x = -6; + pixel_y = 0 + }, +/obj/item/ammo_magazine/rifle/m20a{ + pixel_x = 6; + pixel_y = 0 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"ks" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"kt" = ( +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 + }, +/obj/structure/closet/crate/construction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"kw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"kx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ky" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/yellow, +/obj/item/book/manual/engineering_construction, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"kz" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"kA" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"kB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"kG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"kI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"kJ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"kN" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"kO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"kQ" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"kR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/canteen) +"kS" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/supply) +"kU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"kW" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"kY" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"lb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"le" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/synthcloset) +"lf" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"lh" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"lk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"ln" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"lo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"lp" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"lr" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/nade_box/fourtymil/old, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"lw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"lx" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"ly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"lA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"lC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"lD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"lE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"lH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 6 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"lI" = ( +/obj/structure/closet/crate/supply, +/obj/item/storage/box/flare, +/obj/item/storage/box/flare, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"lL" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 7; + pixel_y = -28 + }, +/obj/structure/reagent_dispensers/ammoniatank, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"lN" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"lS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"lT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"lU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/l42a/heap, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"lW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"lX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"ma" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"mb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/closed/wall/almayer/outer, +/area/golden_arrow/supply) +"mf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"mg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) +"mj" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Quarters" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"mm" = ( +/obj/structure/cargo_container/lockmart/mid{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"mq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"mt" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/golden_arrow/briefing) +"mu" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"my" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"mz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"mA" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"mC" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"mL" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/clothing/accessory/storage/droppouch, +/obj/item/clothing/accessory/storage/droppouch, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"mR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"mS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"mT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"mV" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Platoon Medic Office"; + req_one_access = list(); + req_one_access_txt = "8" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"mX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) +"na" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"nc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"nm" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"nn" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"np" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"ns" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"nt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/target, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"nv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"nw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"ny" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"nz" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"nC" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"nE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"nG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"nO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/synth_storage{ + pixel_x = -20 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"nP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -7; + pixel_y = 14 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"nU" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"nY" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"nZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"oc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"of" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"oi" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"op" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/prep_hallway) +"oq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"os" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null; + pixel_y = 14 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/soap, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ow" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"oA" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westleft, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_commander_rooms) +"oE" = ( +/obj/structure/largecrate/supply/ammo{ + name = "sentry crate"; + fill_from_loc = 1 + }, +/obj/item/ammo_magazine/sentry{ + layer = 3.01 + }, +/obj/item/defenses/handheld/sentry, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"oF" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"oG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"oO" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"oP" = ( +/obj/structure/machinery/light, +/obj/structure/target{ + name = "ready line Ronald" + }, +/obj/item/clothing/head/helmet/marine/veteran/canc/old{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"oV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/ceramic_plate{ + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 23 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"oY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/canteen) +"pa" = ( +/obj/structure/ladder{ + height = 1; + id = "req1" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"pc" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"pe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Sergeants Room"; + req_one_access_txt = "12;32" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_sergeant) +"pf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/m44, +/obj/item/ammo_box/magazine/m4a3{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"pi" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) +"pl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"pp" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"pr" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"ps" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/supply_drop/echo, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"pu" = ( +/obj/item/ammo_magazine/sentry{ + layer = 3.01 + }, +/obj/item/defenses/handheld/sentry, +/obj/structure/largecrate/supply/ammo{ + name = "sentry crate"; + fill_from_loc = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"pv" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/prep_hallway) +"pw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"px" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"py" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"pC" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"pF" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"pJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/golden_arrow/squad_one) +"pL" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"pR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"pT" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + name = "Weyland-Yutani premium shampoo"; + desc = "Can also be used as body wash, shaving foam, deodorant, bug repellant, lighter fluid and gatorade." + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"pV" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + layer = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"pW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"pX" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) +"qc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"qe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dorms" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/dorms) +"ql" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"qr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"qt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"qv" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"qA" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/platoon_sergeant) +"qB" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"qE" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/obj/structure/machinery/light, +/obj/structure/sign/safety/two{ + pixel_y = -22 + }, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"qF" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) +"qH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/prep_hallway) +"qU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"qY" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"qZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/dorms) +"ra" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"rj" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"rm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"rs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ru" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"ry" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"rC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"rG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"rJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"rK" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"rM" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"rN" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/rad{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"rQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/computer/supply_drop_console/limited/alternate, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"rT" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"rV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional, +/area/golden_arrow/briefing) +"rW" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoon_sergeant) +"sb" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"sd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"se" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/tool/kitchen/tray{ + pixel_x = 16; + pixel_y = -10 + }, +/obj/item/storage/box/cups{ + pixel_x = 11; + pixel_y = -9 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 3 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"sf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"sh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"si" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"sl" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = -10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"sp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"sr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/prep_hallway) +"st" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"su" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/firingrange) +"sw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_two) +"sz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"sA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Supply Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"sC" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoon_sergeant) +"sH" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/briefing) +"sI" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/cryo_cells) +"sJ" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/m20a, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"sR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"sT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"sV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"sZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"tf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/firingrange) +"tj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/cryo_cells) +"tk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"to" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"tp" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"tq" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/briefing) +"tr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"tt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"tv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"ty" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pdt_kit{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/prop/helmetgarb/spent_slug{ + pixel_y = 9; + pixel_x = 8 + }, +/obj/item/prop/helmetgarb/spent_slug{ + pixel_y = 9; + pixel_x = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"tz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"tA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"tC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"tD" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"tN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"tP" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"tR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"tU" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -5; + pixel_y = 23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"ue" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"uh" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"uj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"uk" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"um" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/faxmachine/uscm/command/capt, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"uq" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -19; + pixel_y = 6 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -31; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"us" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"ut" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"uu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"uv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"uB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"uC" = ( +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"uG" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"uI" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"uK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "\improper Medical Subsection"; + req_one_access = list() + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"uL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"uO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 11; + pixel_y = 5 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"uR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"uS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"uT" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"uU" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"va" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/cryo_cells) +"vd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = list() + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"ve" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_two) +"vg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"vl" = ( +/obj/structure/target, +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"vn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Briefing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) +"vp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"vq" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"vr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"vw" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"vx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"vz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"vC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 + }, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"vG" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pouch/electronics{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"vI" = ( +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"vM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"vU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"wb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"wf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/item/storage/toolbox/electrical, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"wh" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"wk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"wl" = ( +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"wm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"wn" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"ws" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"wu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"wv" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/golden_arrow/briefing) +"ww" = ( +/obj/structure/barricade/plasteel{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"wA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"wO" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"wR" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"wS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"wU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Platoon Sergeant's Bunk"; + req_one_access_txt = "12" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_sergeant) +"xf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"xh" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"xj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"xk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/engineering{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"xl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"xs" = ( +/obj/structure/ship_ammo/rocket/keeper, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"xu" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_sergeant) +"xx" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"xy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"xA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"xC" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/supply) +"xD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = list() + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"xG" = ( +/obj/structure/ship_ammo/minirocket/incendiary, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"xH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"xI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"xN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"xP" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/prep_hallway) +"xS" = ( +/obj/structure/machinery/conveyor{ + dir = 9 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"xT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) +"xU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"xV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_sergeant) +"xZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet{ + req_one_access = list(12); + name = "section sergeant locker" + }, +/obj/item/device/whistle, +/obj/item/device/binoculars/range/designator/sergeant, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"yd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"ye" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/engineering) +"yf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/galley{ + pixel_x = -19 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"yl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/personal_weapon, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"yq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"yu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"yw" = ( +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = -8; + pixel_y = 0; + job = "Rifleman" + }, +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = 7; + pixel_y = 0; + job = "Rifleman" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"yB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/toy/beach_ball/holoball, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 28; + pixel_y = 5; + serial_number = 12 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in Playboy Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + pixel_x = 32; + serial_number = 16 + }, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"yD" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"yE" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"yG" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"yH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"yJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"yK" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"yN" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"yO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"yP" = ( +/obj/structure/machinery/body_scanconsole{ + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"yS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"yU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"yV" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"yX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"yY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"zb" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"zd" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/storage/box/loadout/co2_knife{ + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"ze" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"zf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"zi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = -8; + pixel_y = 0; + job = "Rifleman" + }, +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = 7; + pixel_y = 0; + job = "Rifleman" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"zj" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"zm" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = -9; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"zs" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"zu" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"zy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"zA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"zC" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"zG" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"zI" = ( +/obj/structure/pipes/vents/pump, +/obj/item/tool/mop{ + pixel_x = -9; + pixel_y = 20 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"zJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"zR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"zS" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"zU" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"zX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"zY" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_one_access = list() + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Ad" = ( +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Ah" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 8; + name = "\improper Synthetic Preperations"; + req_one_access = list(36) + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + indestructible = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/synthcloset) +"Ai" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Aj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Ak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/old{ + req_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Al" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/denied{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/device/eftpos{ + eftpos_name = "Cargo Bay EFTPOS scanner"; + pixel_x = -10 + }, +/obj/item/tool/stamp/ro{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/fancy/cigar{ + pixel_x = 6 + }, +/obj/item/ashtray/glass{ + pixel_x = 11; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Am" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer/bluefull, +/area/golden_arrow/platoon_commander_rooms) +"Ap" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Ar" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Aw" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"Ax" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Az" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 3 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"AB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"AH" = ( +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"AI" = ( +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"AP" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + layer = 2.1 + }, +/obj/structure/sign/safety/manualopenclose{ + layer = 2.11; + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"AQ" = ( +/obj/structure/cargo_container/lockmart/right{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"AW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Bb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/briefing) +"Bg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Bj" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/almayer, +/area/golden_arrow/medical) +"Bl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + dir = 1; + req_one_access = list() + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Bm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Bo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Bp" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/item/stack/catwalk{ + pixel_x = 12; + pixel_y = -9 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Br" = ( +/obj/structure/closet/secure_closet/smartgunner{ + req_access_txt = "14;40"; + req_one_access = list() + }, +/turf/open/space/basic, +/area/space) +"Bw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/rewire{ + pixel_y = -29 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Bz" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"BB" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"BE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"BH" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/cargo_container/wy/right, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"BJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"BL" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"BP" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"BY" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"BZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Ca" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/weapon/gun/rifle/l42a/old, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"Cg" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Ci" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Cj" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 + }, +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Cn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Cr" = ( +/turf/open/space/basic, +/area/space) +"CA" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"CE" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"CH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"CQ" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"CR" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"CU" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"CY" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/golden_arrow/briefing) +"CZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + name = "Midway Remote Control Console"; + shuttleId = "dropship_midway" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Db" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/golden_arrow/squad_two) +"Dc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Dd" = ( +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = 7; + pixel_y = 0; + job = "Rifleman" + }, +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = -8; + pixel_y = 0; + job = "Rifleman" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Dj" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/golden_arrow/hangar) +"Dm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/dorms) +"Do" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Dp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Dq" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Dr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Dx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/item/bananapeel{ + desc = "Ew."; + gender = "plural"; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "\improper finger nails"; + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = -4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"Dy" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -25 + }, +/obj/structure/sign/safety/west{ + pixel_x = 3; + pixel_y = -25 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"DC" = ( +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"DJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"DN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"DR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"DS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"DT" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"DW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"DX" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Ea" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Eb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"Ec" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Ed" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"Ee" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"El" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/aesthetic, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Em" = ( +/obj/structure/largecrate/supply/weapons/m20a2{ + desc = "A supply crate containing two unloaded M20A2 rifles, a variant of 'Harrington' rifle with an integrated shotgun. You can see a scratched 'DO NOT STACK' sticker on the side." + }, +/obj/structure/largecrate/supply/ammo/shotgun/sixteen{ + pixel_x = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"En" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Ep" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"Eq" = ( +/obj/structure/machinery/cryopod/big, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"Er" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Es" = ( +/obj/structure/machinery/door/poddoor/almayer/open, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"Eu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Ev" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Ex" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Ey" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Ez" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"EE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"EG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"EL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/sign/safety/electronics{ + pixel_x = 31; + pixel_y = 6 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 31; + pixel_y = -6 + }, +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"EN" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"EP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"ER" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"EW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"EY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Fb" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = -10 + }, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/storage/box/cups{ + pixel_x = -5; + pixel_y = -10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Fc" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"Ff" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Fg" = ( +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"Fh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Fj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_x = -23; + pixel_y = -11 + }, +/obj/item/facepaint/black, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Fk" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 6; + pixel_y = -29 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Fl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"Fm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Fn" = ( +/obj/structure/sign/safety/firingrange{ + pixel_x = -24; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -24; + pixel_y = -7 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Fq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cryopod/big, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"Fs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/canteen) +"Ft" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"Fu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Fx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Fy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"Fz" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"FA" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"FB" = ( +/obj/structure/machinery/door/poddoor/almayer/open, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"FD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"FE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"FG" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"FI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"FO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"FP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"FQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"FR" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"FX" = ( +/obj/structure/ship_ammo/minirocket, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"FY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Ga" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Gb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 + }, +/obj/item/trash/pistachios{ + layer = 2; + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 22 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Gd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Ge" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Gj" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Briefing Room"; + req_access = list() + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) +"Gl" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/prep_hallway) +"Gn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee/simple, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"Go" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) +"Gp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Gr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Gs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Gu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Gv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Gy" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"GD" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"GE" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"GF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"GG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"GI" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"GJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/janitorialcart, +/obj/item/tool/mop{ + pixel_x = -1; + pixel_y = -10 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"GM" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"GQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"GR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"GT" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"GX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ha" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"He" = ( +/obj/structure/closet/secure_closet/squad_sergeant{ + req_access_txt = "32;40"; + req_one_access = list() + }, +/turf/open/space/basic, +/area/space) +"Hi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Hm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Hn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Ho" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/item/device/flashlight{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/tool/warning_cone, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Hr" = ( +/obj/structure/sign/poster{ + pixel_y = -8; + pixel_x = -25; + icon_state = "poster15"; + name = "pulse rifle pinup"; + desc = "The Armat Battlefield Systems Model 41 Derivative 'A' Pulse Rifle Mark One. The only pinup you'll ever need." + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Hs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Ht" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"HA" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"HK" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/cryo_cells) +"HM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"HO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"HT" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"HZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Ib" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/one{ + pixel_y = 22 + }, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"Ie" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"If" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Il" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Im" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Ip" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Ir" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/m20a, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Iw" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + info = "We've a delivery of these newer A2 rifles, yet to be unboxed. Make sure your men have a go at them in the cargo bay."; + icon_state = "paper_words" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Ix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"IA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet{ + req_access_txt = "14;40"; + req_one_access = list(); + name = "smartgunner locker" + }, +/obj/item/ammo_magazine/m38, +/obj/item/ammo_magazine/m38, +/obj/item/ammo_magazine/m38, +/obj/item/ammo_magazine/m38, +/obj/item/ammo_magazine/m38, +/obj/item/weapon/gun/m60/m38, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"IE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"IF" = ( +/obj/structure/plasticflaps, +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"IH" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"II" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 7 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -4; + pixel_y = 32; + serial_number = 11 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"IJ" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"IK" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"IM" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"IN" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"IO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/gear/medic_chemical, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"IP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"IW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Jc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Jf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Jm" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Jn" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/tool/hand_labeler{ + pixel_y = 14 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Jo" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Jr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Ju" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"Jx" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"JA" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"JB" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"JC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"JD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"JM" = ( +/obj/structure/computer3frame, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"JN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"JP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"JQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"JV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"JX" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/golden_arrow/briefing) +"JY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/bluefull, +/area/golden_arrow/platoon_commander_rooms) +"Ki" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Kj" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Kn" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"Ko" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Squad Two Armoury"; + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_two) +"Ks" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Kv" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Kw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"KC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"KF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"KG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"KH" = ( +/obj/vehicle/powerloader, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"KJ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"KN" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"KO" = ( +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"KT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/conference_room{ + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"KW" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"KX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"La" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Lb" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"Lc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"Lf" = ( +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Lg" = ( +/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar{ + roundstart_template = /datum/map_template/shuttle/typhoon + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Lj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_y = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Lo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Lq" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Lr" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/canteen) +"Lt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/coffee{ + pixel_x = -19 + }, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"Lu" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"Lv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/ammo/m20a, +/obj/structure/largecrate/supply/ammo/m20a{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"LA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"LD" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_one) +"LE" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"LI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"LL" = ( +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"LM" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"LN" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"LP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"LW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + req_one_access_txt = "8;12;39" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) +"LX" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"LZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Ma" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/clothing/synth{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"Mc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Md" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Me" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/squad_two) +"Mq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Mt" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Mw" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Mx" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/obj/item/ashtray/plastic{ + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/gun_rack/m20a{ + populate_type = /obj/item/weapon/gun/rifle/m20a/old + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"MF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"MH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"MI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"MK" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoon_commander_rooms) +"MN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"MO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"MQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"MT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + dir = 1; + req_one_access = list() + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"MU" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"MV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"MX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Platoon Sergeant's Bunk"; + req_one_access_txt = "12" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"Nf" = ( +/turf/closed/wall/almayer/white, +/area/golden_arrow/medical) +"Ng" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Nh" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Nk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Nl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"No" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"Np" = ( +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"Nr" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"Nv" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Ny" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"NF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/pop3{ + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"NG" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/golden_arrow/briefing) +"NP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"NS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Oc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Of" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/firingrange) +"Oh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Oi" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Ol" = ( +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/structure/janitorialcart, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Om" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap, +/obj/item/tool/soap{ + pixel_y = 4; + pixel_x = 6 + }, +/obj/item/tool/soap{ + pixel_y = -5; + pixel_x = -5 + }, +/obj/item/tool/soap, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Op" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"Ox" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Oz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"OB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"OD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"OK" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/dorms) +"OM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/flamer/special, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"OP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/flamer/special, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"OS" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 5; + pixel_y = 23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"OV" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 7; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"OW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"OZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Pa" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"Pg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Supply Office" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"Pj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Pq" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Pu" = ( +/obj/item/frame/camera{ + desc = "The Staff Officer insisted he needed to monitor everyone at all times."; + layer = 2.9; + name = "broken camera"; + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Px" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"PE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + dir = 4; + name = "Lower Deck Waste Tank Control" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"PN" = ( +/obj/structure/platform_decoration, +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"PO" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29; + layer = 3 + }, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_y = 22; + pixel_x = 9 + }, +/obj/structure/gun_rack/m20a{ + populate_type = /obj/item/weapon/gun/rifle/m20a/old + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"PU" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"PZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/cassette_tape/nam{ + layer = 2.9; + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"Qb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Qc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Overwatch" + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Qe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"Qj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Qk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Qm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"Qn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Qp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Qs" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = -10 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/storage/box/cups{ + pixel_x = -5; + pixel_y = -10 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Qu" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Qw" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/squad_two) +"Qx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Qy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"QB" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"QC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"QH" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"QK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"QO" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"QQ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_commander_rooms) +"QU" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"QW" = ( +/obj/structure/cargo_container/wy/left, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in Playboy Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Rd" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/supply) +"Re" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"Rj" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_one_access = list() + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Ro" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in Playboy Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Rr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Rs" = ( +/obj/structure/closet/secure_closet/marine_personal/old{ + job = "Platoon Commander" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Rv" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/canteen) +"Rw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "\improper Medical Subsection"; + req_one_access = list(); + req_one_access_txt = "8" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"RC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"RD" = ( +/obj/effect/landmark/late_join, +/obj/effect/landmark/start/marine/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"RF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"RH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Firing Range" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/firingrange) +"RP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"RQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"RS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"RU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"RV" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"RW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"RZ" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Sg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Sr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ss" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/briefing) +"Sw" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"SB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"SC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/prop/magazine/dirty/torn/alt{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"SG" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"SI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"SL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"SO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"SS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/old, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"SV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/prop/magazine/book/theartofwar, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Tc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/closed/wall/almayer/white, +/area/golden_arrow/medical) +"Td" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Tf" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Th" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ti" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Tq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Tt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/m44, +/obj/item/ammo_box/magazine/m4a3{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Ty" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/squad_one) +"Tz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"TC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"TD" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -13; + pixel_y = -13 + }, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/obj/item/tool/wirecutters{ + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"TF" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/golden_arrow/briefing) +"TG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"TN" = ( +/turf/closed/wall/almayer/reinforced, +/area/golden_arrow/engineering) +"TO" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"TS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"TT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"TU" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "19;12" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"TX" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Uc" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Ue" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ug" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"Ui" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/canteen) +"Uk" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"Un" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"Uo" = ( +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = -8; + pixel_y = 0; + job = "Smartgunner" + }, +/obj/structure/closet/secure_closet/marine_personal/old{ + pixel_x = 7; + pixel_y = 0; + job = "Squad Leader" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Up" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Uq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Us" = ( +/obj/structure/machinery/cryopod/big/flipped{ + pixel_x = -13 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"Uw" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Uz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_y = 29 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"UA" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"UB" = ( +/obj/structure/ladder{ + height = 2; + id = "req1" + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"UI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"UM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"UO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"UP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "Damage Control Locker"; + req_one_access = list() + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"US" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"UY" = ( +/obj/structure/machinery/sleep_console{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"Va" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Vg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Vh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"Vi" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Vk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Vl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"Vm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Vp" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/dorms) +"Vs" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Vt" = ( +/obj/item/storage/firstaid/softpack{ + pixel_y = 11; + pixel_x = 5 + }, +/obj/item/storage/firstaid/softpack/brute, +/obj/item/storage/firstaid/softpack/burn{ + pixel_y = 9; + pixel_x = -9; + layer = 3.01 + }, +/obj/item/storage/firstaid/softpack{ + pixel_y = -5; + pixel_x = -11 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"Vw" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Vx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Vy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"VB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"VC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Squad One Armoury"; + req_one_access_txt = "8;12;39" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) +"VM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"VN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"VP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/supply) +"VU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_one) +"VV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"VY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/green, +/obj/item/ammo_box/magazine/nade_box/m15, +/obj/item/ammo_box/magazine/nade_box/m15, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Wd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Wf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Wi" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"Wl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Wm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Wp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"Wr" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Wx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"Wy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"WC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"WD" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"WF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"WH" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"WI" = ( +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"WJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"WL" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"WM" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/largecrate/supply/ammo/m20a, +/obj/structure/largecrate/supply/ammo/m20a{ + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"WT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"WW" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"WY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"WZ" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Xc" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Xe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Xf" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Xh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_two) +"Xi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Xk" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"Xn" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Xq" = ( +/obj/structure/closet/crate/green, +/obj/item/ammo_box/magazine/m4a3, +/obj/item/ammo_box/magazine/m44, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"Xs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Xx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Xz" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/platoon_sergeant) +"XC" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"XD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"XG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"XI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"XJ" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/briefing) +"XT" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; + pixel_y = -9 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"XU" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"XV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"XW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"XX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"XY" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"XZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Yd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/item/folder/black_random, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"Yh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Yj" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/hangar) +"Yn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluefull, +/area/golden_arrow/hangar) +"Yp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"Yq" = ( +/obj/structure/sign/safety/galley{ + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Yr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Yu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Yv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Yy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/construction, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"Yz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoon_sergeant) +"YB" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/engineering) +"YC" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -19; + pixel_y = 6 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -31; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"YD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"YJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) +"YP" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/briefing) +"YR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"YV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"YX" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Za" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zc" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Zi" = ( +/obj/structure/closet/crate/green, +/obj/item/device/motiondetector, +/obj/item/device/motiondetector, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Zm" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/nade_box/fourtymil/old, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Zn" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"Zp" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zq" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 + }, +/obj/item/tool/wirecutters, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) +"Zr" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"Zt" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zv" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"ZA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/cryopod/big/flipped{ + pixel_x = -13; + pixel_y = 0 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"ZC" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/squad_one) +"ZI" = ( +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"ZJ" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/synthcloset) +"ZK" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ZP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"ZQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/firingrange) +"ZS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"ZU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"ZZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) + +(1,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(2,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(3,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(4,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(5,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(6,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(7,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(8,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(9,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(10,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(11,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(12,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(13,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(14,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(15,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(16,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(17,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(18,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(19,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(20,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(21,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(22,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(23,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(24,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(25,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(26,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(27,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(28,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(29,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(30,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(31,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(32,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(33,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(34,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(35,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(36,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(37,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(38,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(39,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(40,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(41,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(42,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(43,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(44,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Qw +Qw +Qw +Qw +Qw +Qw +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(45,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Qw +oE +Hr +Bm +jx +Qw +Cr +Cr +bl +bl +bl +bl +bl +bl +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(46,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +Cr +Cr +Cr +Cr +Cr +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +hJ +hJ +hJ +Qw +PO +Fg +Px +OP +Qw +Cr +Cr +bl +Kw +nt +ja +MQ +qr +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(47,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +Jo +ut +eM +Ix +eM +na +xs +ca +FX +ut +xG +Ix +xG +ut +FX +ca +Cr +Cr +Cr +Cr +Cr +sC +Xz +Xz +sC +sC +xZ +sC +sC +hX +KJ +qA +aH +el +qA +Lt +Gn +qA +OV +pW +Dy +Me +sJ +wA +DR +Zm +Qw +Br +He +bl +vI +yS +ja +RC +vI +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(48,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +WI +ut +WI +ut +WI +ut +WI +ca +FX +ut +xG +ut +xG +ut +FX +ca +Cr +Cr +Cr +Cr +Cr +sC +sC +sC +sC +jL +el +sC +Ju +hE +dr +wU +dr +tr +kI +Hm +fA +qA +JQ +XI +WW +Me +Me +Me +Xh +Me +Qw +Qw +Qw +bl +vI +RS +ja +lD +vI +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(49,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ut +Qb +hb +hb +hb +sZ +ut +ca +na +Qb +hb +bt +bt +HZ +na +ca +Cr +Cr +Cr +Cr +Cr +sC +SC +Kv +sC +sC +xu +sC +yG +SI +Kv +dh +Kv +yY +Yd +Iw +bp +qA +xl +XI +FO +Me +VY +lH +Yp +Tf +cM +eP +Me +Me +av +CH +Ug +gi +vl +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(50,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +DT +DT +DT +ca +Jo +Im +KO +KO +Rr +ue +xs +ca +FX +Im +KO +KO +KO +ue +FX +ca +Cr +Cr +Cr +Cr +Cr +sC +fW +dr +MX +lS +lS +bU +ij +Ap +uO +qA +Qu +pF +Fj +Jn +bp +qA +zu +TC +XZ +Me +tC +Fg +Yp +Fg +Fg +Tf +Ak +Me +vI +yS +ja +RC +vI +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(51,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +oi +MN +ut +ca +WI +Ny +Rr +Ea +KO +ue +WI +ca +FX +Ny +Rr +Ea +KO +Gr +FX +ca +Cr +Cr +Cr +Cr +Cr +sC +hH +CQ +sC +kG +el +Jx +el +rT +JC +qA +fV +Kv +Qe +Cg +rW +pe +pX +TC +jw +Ko +ve +Fg +IE +ty +Fg +Fg +SS +Me +RU +AB +ja +Wx +RU +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(52,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ut +Dc +ut +ca +ca +ca +DT +DT +DT +ca +ca +ca +ca +ca +DT +DT +DT +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +qA +Ng +fh +Tz +Yz +xV +xT +TO +uR +ia +sw +mR +hC +mf +Fy +DR +Ak +Me +Ib +EN +ww +IH +qE +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(53,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ut +Dc +wh +ca +ca +uq +ut +wR +wR +wR +wR +oF +wR +YC +wR +wR +wR +ut +ut +ut +ut +wR +ut +ut +ca +ca +wR +MU +rj +ZJ +Zq +fE +Ma +kz +is +ZJ +YD +Kv +Kv +Kv +np +qA +KT +TC +ic +Me +Ro +Fg +Nr +pf +sV +Yp +Db +Me +tf +hM +ja +hM +tf +bl +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(54,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wR +Dc +wR +ca +ca +KF +IW +IW +lC +JN +kU +JN +lC +JP +JP +IW +lC +nc +kU +WJ +dI +JP +IW +ue +ca +ca +wR +mm +ra +ZJ +Vl +eT +hq +Ep +No +ZJ +Uz +Kv +Kv +fA +sd +qA +GJ +XI +XZ +Me +Zv +Tf +dX +Bm +Fg +TT +Me +Of +LX +vx +ZQ +vx +FQ +CE +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(55,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wR +Dc +wR +kW +ut +Im +KO +Nk +qY +hh +MN +WD +WI +hF +Lo +KO +WI +WD +he +hh +Wd +Rr +KO +En +kW +ut +wR +AQ +xh +ZJ +le +yJ +ba +jy +dc +ZJ +BE +el +Ca +lU +qA +qA +hm +XI +MO +Me +Me +WM +Qw +vC +IA +fU +Me +Of +rC +Ug +oG +Zr +Ug +ko +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(56,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Qk +pl +pl +Gs +FP +zy +JD +Vs +WD +Dc +Nh +WI +tP +Yj +KH +WI +WD +Dc +WD +Yu +zy +zy +GQ +pl +pl +pl +yO +ut +ZJ +ZJ +Ah +ZJ +ZJ +ZJ +ZJ +qA +qA +qA +qA +qA +pv +Jc +sr +GG +op +Me +Me +Me +Me +Me +Me +Me +Of +su +RH +Of +Of +bl +bl +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(57,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Dc +KO +KO +KO +MI +Rr +Rr +Qn +uU +Dc +WD +WI +Bw +Yj +KH +WI +WD +Dc +WD +WI +KO +KO +Yh +KO +uG +KO +Dc +ut +Es +XZ +mS +nO +RV +RV +RV +IK +UA +XZ +XZ +cF +lo +Eu +XI +Wl +uu +WY +RV +XZ +RV +XZ +RV +XZ +Fn +io +QU +RV +WW +GD +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(58,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Dc +KO +tz +Gp +iY +Rr +QW +WI +WD +Xs +hh +OB +zy +SL +BP +OB +hh +Td +WD +WI +TD +KO +EY +ow +AW +KO +Qk +mX +FB +SO +Fu +mg +iK +iK +SO +xT +iK +iK +SO +mg +SO +iK +wn +iK +SO +Ha +SO +iK +iK +XV +XV +iK +iK +Wy +Ad +Op +CA +GD +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(59,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wR +Dc +KO +En +wR +hY +KO +rM +jB +WD +Wr +WD +WI +KO +Rr +Rr +WI +WD +lh +ZS +WI +KO +KO +En +ut +Zc +jR +Dc +wR +Es +qH +qH +RV +xP +xP +RV +XZ +XZ +RV +RV +ev +Va +Wm +XI +gq +Va +iL +RV +XZ +RV +RV +RV +XZ +XZ +xP +qH +XZ +RV +GD +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(60,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +do +Dc +KO +EP +my +lw +my +BH +IN +Vi +my +zs +Up +pc +my +mq +Up +pc +my +mq +CU +pc +Dq +aY +Up +NS +KO +Dc +Zp +XJ +gs +vn +XJ +gs +vn +Vp +Vp +Vp +Vp +Vp +Vp +op +Jc +TC +GG +pv +ZC +ZC +ZC +ZC +ZC +ZC +Ty +Gl +hJ +hJ +Gl +Gl +Gl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(61,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wR +Dc +wR +Zt +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +RZ +KO +Dc +oP +XJ +au +vM +fa +pr +zU +Vp +IM +DN +Ci +WZ +Vp +Vp +mT +vr +QK +ZC +ZC +Lv +Ty +Vw +fN +ex +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(62,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Dc +nm +nC +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +yE +sb +Dc +uh +XJ +eV +eV +cb +cb +eV +Vp +IM +wl +wl +Ex +IM +Vp +jY +XI +RV +ZC +Jf +Qy +af +cT +cT +xf +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(63,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Dc +AP +LM +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +XC +Qm +Dc +uh +pi +eV +Np +Np +rJ +eV +Vp +ez +wl +wl +wl +IM +Vp +Vx +XI +XZ +ZC +Lj +cT +zd +aJ +iE +xx +pJ +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(64,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Dc +wR +bx +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +PU +Qm +Dc +uh +pi +eV +TF +wv +kc +cb +Vp +WL +wl +vU +sR +qZ +qe +mg +TO +eW +VC +VU +nG +PZ +Dx +UI +cT +fK +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(65,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wR +Dc +KO +Zt +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +ru +sb +Dc +uh +XJ +cb +mt +JX +rV +cb +Vp +WL +wl +FE +wl +Dm +OK +pX +TC +jw +qF +LD +cT +cR +Uk +cT +cT +fH +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(66,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +do +Dc +KO +nC +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +Lg +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +yE +jR +Qk +SG +XJ +VM +gX +CY +NG +vw +Vp +Hs +wl +FI +Bo +yD +Vp +rK +XI +ic +ZC +Tt +cT +sf +cT +cT +Qy +fK +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(67,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wR +Dc +KO +LM +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +Ar +sb +Dc +uh +XJ +cb +Np +Np +rJ +eV +Vp +bs +pw +Wf +pw +kA +Vp +iw +vp +kN +ZC +II +Gd +sf +bJ +XD +yB +Ty +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(68,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Dc +wR +bx +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +PU +Qm +Dc +uh +pi +oc +oc +oc +Re +Ht +Vp +IM +Bg +FE +wl +IM +Vp +zu +XI +RV +ZC +ZC +ZC +LW +ZC +Ty +Ty +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(69,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Dc +to +Zt +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +ru +Qm +Dc +uh +pi +Ss +Ss +Ss +Ss +bF +Vp +yl +Bo +UO +wl +dQ +Vp +JQ +vr +wk +ZC +Ir +xA +Wp +OM +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(70,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Dc +AP +nC +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +yE +Qm +Dc +uh +XJ +Ss +Ss +Ss +Ss +py +Vp +dw +wl +FR +wl +WL +Vp +Nv +XI +XZ +ZC +Mx +xf +cT +lr +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(71,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wR +Dc +wR +LM +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +XC +jR +Dc +fM +XJ +rG +lk +lk +lk +zf +Vp +Ai +Cj +Gb +FY +WL +Vp +Yq +XI +XZ +ZC +pu +wO +lI +Zi +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(72,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +do +Dc +KO +tz +mu +bj +Jm +JA +QH +Uq +nU +bP +mu +Uw +Jm +bP +mu +Uq +nU +bP +QH +Uw +nU +ER +mu +yq +sb +Dc +uh +XJ +Ss +Ss +Ss +Ss +py +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Lr +kR +Lr +Ui +HK +HK +HK +HK +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(73,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wR +Qk +zy +eg +RQ +nw +zy +pl +pl +pl +zy +Oz +sb +KO +KO +KO +Ea +Ea +KO +sb +KO +KO +KO +En +wR +Im +sb +Dc +uh +pi +Ss +Ss +Ss +Ss +py +Ui +Ui +mz +iO +Wi +gk +oV +go +tN +Vh +Ui +HK +HK +Ax +Ax +Ax +HK +eK +ke +HK +Fq +Eq +Eq +Eq +Eq +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(74,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Dc +KO +ln +LI +DS +hb +hb +bt +bt +ir +ju +OW +bt +LI +bt +ch +hb +hb +sh +bt +bt +ks +EP +bt +JV +Qm +Dc +uh +pi +PN +Kn +Kn +Kn +Lu +Ui +lX +Ft +Vm +CR +Fb +GX +fB +tN +oY +pV +HK +Xc +XG +DJ +DJ +lW +EE +dy +iq +BY +BY +tp +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(75,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Dc +KO +hS +hS +hS +Zn +Zn +hS +hS +hT +Dc +hY +Nf +Nf +Bj +mV +Bj +Bj +Nf +Bj +Bj +Nf +Bj +Bj +Nf +Qm +Dc +uh +XJ +Un +sT +iM +iM +dq +Ui +qB +BB +Ue +eE +sl +OS +lN +tN +aF +pV +HK +Xc +yX +Kj +zX +Kj +BJ +Fm +iq +bh +RD +tp +LL +LL +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(76,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Dj +ca +wR +Dc +wR +hS +CZ +Bz +Qc +Bz +Mc +Zn +Zu +Dc +If +Nf +Aw +AI +AI +lp +lf +Nf +xD +xy +DW +YR +iW +Nf +zJ +Dc +fM +XJ +cb +Np +tq +Np +eV +Ui +se +Az +BL +BL +BL +BL +Dp +MF +aF +pV +HK +Xc +yX +Kj +HK +ma +NP +ig +HK +Us +Us +ZA +Us +Us +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(77,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wR +Dc +wR +hS +um +QO +SV +Bz +JY +TU +Yn +pR +hY +Nf +WF +pL +pL +Tq +lf +Nf +yH +pL +pL +XX +yP +Nf +KO +Ey +Qm +Gj +Bb +Np +Np +rJ +eV +Ui +zm +GE +BL +BL +BL +BL +BL +MF +aF +pV +HK +HK +Xf +ZK +HK +hs +UM +Om +HK +HK +HK +HK +HK +HK +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(78,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wR +Dc +wR +hS +BZ +Bz +iA +Bz +LZ +hS +Mw +Dc +hY +Nf +Ez +WH +pL +Xx +gl +Rw +Nl +lT +Nl +MH +Dr +uK +mX +ly +wR +XJ +xH +eV +sH +kJ +ql +Ui +zC +fD +tR +eE +fb +tU +uI +MF +aF +pV +HK +Xc +MV +uv +HK +nP +vz +Fk +HK +Fq +Eq +Eq +Eq +Eq +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(79,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wR +Dc +fM +hS +Bz +Bz +Bz +LE +tv +hS +En +Dc +hY +Nf +ZZ +pL +pL +pL +aK +Nf +FG +fT +FG +EG +UY +Nf +cB +lE +ut +XJ +XJ +XJ +dx +XJ +XJ +Ui +rm +FD +Sr +jE +Qs +Th +ei +VB +aF +pV +HK +Xc +MV +Kj +jX +Kj +lb +dy +iq +BY +BY +tp +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(80,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +wR +Dc +wR +hS +hS +mj +hS +hS +hS +hS +px +Er +hY +Nf +Vt +hZ +zS +IO +lf +Nf +Pa +Ed +Pa +Ed +GT +Nf +KO +Dc +ut +XJ +XJ +eV +pr +KX +eV +Ui +Ui +uj +nv +Wi +Fc +oV +lx +MF +sz +Ui +HK +Xc +yX +Kj +zX +Kj +BJ +aM +iq +ZI +ZI +tp +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(81,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +wR +Xs +nn +MK +MK +Am +zb +Bz +qU +hS +nZ +Er +mA +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Tc +Nf +Nf +Nf +Nf +KO +Dc +fM +YP +yd +ry +ry +Np +rJ +eV +Rv +Ui +Ui +Ui +Ui +Ui +Lr +Fs +Lr +Ui +HK +HK +Ks +uv +HK +RF +NP +ig +HK +Us +Us +ZA +Us +Us +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(82,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +DT +DT +DT +MK +MK +BZ +zb +Bz +NF +hS +En +Er +hY +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +aw +Dc +wR +YP +ab +Eb +Eb +nY +Np +eV +sI +Ki +VV +Sw +HK +yu +EW +OD +UM +yf +HK +zj +yX +ZK +HK +YV +NP +pT +HK +HK +HK +HK +HK +HK +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(83,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +pp +zb +Bz +GF +hS +bC +Dc +hY +gE +gE +eX +xN +gE +mL +OZ +yU +yU +ZU +Fl +lA +sA +kw +qc +ZP +YP +cn +qv +qv +Np +wS +YP +sI +Ki +Pu +Sw +HK +WT +yX +OD +UM +Yr +aC +Xn +yX +Kj +HK +uv +NP +ig +HK +Fq +Eq +Eq +Eq +Eq +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(84,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +dz +zb +Bz +pC +hS +En +Dc +hY +gE +Vy +Cn +Al +gE +Em +ny +SB +Ge +LP +Aj +LA +ns +Er +Rr +ju +YP +jA +cb +cb +cb +YP +YP +sI +os +gJ +uL +tj +cu +HM +oq +UM +Yr +Go +Yr +yX +Kj +jX +Kj +lb +rs +iq +Lf +Lf +tp +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(85,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +MK +hS +xU +hS +hS +Za +Dc +hY +gE +cf +tA +gE +gE +Xq +ny +uS +qt +TN +vq +vq +ye +Hi +TN +Hi +YB +YB +YB +YB +YP +YP +YP +sI +HK +va +HK +HK +hP +Oh +ee +Ec +Yr +YJ +Yr +kx +KC +KC +KC +KC +Ec +iq +BY +YX +tp +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(86,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +bV +wu +Lb +hS +En +Dc +hY +gE +st +iF +Pg +Md +kO +vg +RW +of +TN +Fz +AH +AH +Gv +Xe +Gv +PE +fu +TS +YB +Cr +Cr +Cr +sI +DX +aZ +Qx +HK +zi +aj +HK +Uo +yw +HK +aj +Rs +Uo +HK +Dd +Rs +jh +HK +Us +Us +ZA +Us +Us +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(87,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +oA +QQ +si +hS +En +Dc +mA +gE +Xi +Zd +gE +Jr +DC +DC +RW +Lc +TN +Mq +IP +gf +Vg +HO +uB +hy +AH +xk +YB +Cr +Cr +Cr +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(88,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +MK +MK +MK +MK +Qj +Td +hY +gE +GI +UB +gE +gE +Oi +Aj +XU +gE +TN +TN +Mt +Bl +TN +TN +Hn +Gv +IP +Ox +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(89,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +DT +DT +DT +kS +kS +kS +kS +kS +IF +kS +IF +kS +TN +Ol +zI +jD +bO +TN +Pj +Gv +IP +JM +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(90,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +LN +kS +LN +kS +TN +uT +Oc +zA +vd +TN +Mq +La +us +ii +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(91,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +LN +kS +LN +kS +TN +zY +zG +Ff +Gy +TN +yV +kB +RP +EL +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(92,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +LN +kS +LN +kS +TN +TN +TN +TN +TN +TN +TN +VN +MT +YB +YB +YB +YB +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(93,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +LN +kS +LN +kS +TN +fm +fm +fm +fm +fm +TN +xI +tk +JB +YB +XT +FA +Ti +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(94,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +kS +kS +kS +LN +kS +LN +kS +TN +TN +TN +TN +TN +TN +TN +sp +tt +lL +YB +TG +Vk +nE +Rj +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(95,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +pa +GI +kS +LN +kS +LN +kS +TN +yN +GR +wm +rN +iI +TX +xI +XW +Fh +UP +uC +ky +WC +Ee +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(96,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +QB +xj +VP +kS +LN +kS +LN +kS +TN +wf +ae +Qp +Ev +Ie +zR +wb +Ga +id +Mt +uC +tD +WC +kt +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(97,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +rQ +gw +aA +kS +LN +kS +LN +kS +TN +cv +dK +US +Uc +Fx +Uc +Do +tk +bk +YB +ws +id +QC +Sg +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(98,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +ps +xC +kS +LN +kS +LN +kS +TN +Lq +dK +US +oO +Bp +HT +KG +US +iv +YB +Ip +Pq +KW +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(99,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +mb +kS +kS +LN +kS +LN +kS +TN +KN +dK +tk +jS +vG +ds +Ho +US +El +YB +YB +YB +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(100,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +LN +kS +LN +kS +TN +KN +dK +tk +Uc +uk +Uc +ge +tk +IJ +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(101,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +LN +kS +LN +kS +TN +TN +TN +XY +TN +TN +TN +Hi +TN +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(102,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +kS +kS +kS +LN +kS +LN +kS +kS +YB +JB +Yv +HA +nz +kY +cj +JB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(103,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +kS +eq +eq +bY +kS +xS +eq +eq +YB +Yy +ze +Gu +Gu +Gu +Il +yK +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(104,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +kS +kS +kS +kS +kS +kS +kS +kS +YB +iU +GM +jm +mC +kQ +Xk +im +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(105,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +YB +YB +YB +YB +YB +YB +YB +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(106,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(107,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(108,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(109,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(110,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(111,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(112,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(113,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(114,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(115,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(116,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(117,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(118,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(119,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +jP +jP +jP +jP +jP +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(120,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +jP +gB +jP +jP +jP +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(121,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +jP +jP +jP +jP +jP +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(122,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(123,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(124,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(125,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(126,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(127,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(128,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(129,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(130,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(131,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(132,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(133,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(134,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(135,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(136,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(137,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(138,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(139,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(140,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(141,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(142,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(143,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(144,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(145,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(146,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(147,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(148,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(149,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(150,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} diff --git a/maps/shuttles/dropship_typhoon.dmm b/maps/shuttles/dropship_typhoon.dmm index 75d46db7b1f..cc148796ca1 100644 --- a/maps/shuttles/dropship_typhoon.dmm +++ b/maps/shuttles/dropship_typhoon.dmm @@ -1,33 +1,96 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aX" = ( -/turf/template_noop, -/area/space) -"bi" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 +"aa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds3{ + dir = 2; + id = "port_door" }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"ab" = ( +/obj/effect/attach_point/crew_weapon/typhoon{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"ac" = ( +/obj/effect/attach_point/crew_weapon/typhoon{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"ad" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds3{ dir = 1; - pixel_x = 8; - layer = 5 + id = "starboard_door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"ae" = ( +/obj/structure/bed/chair/vehicle{ + dir = 4; + pixel_x = 12; + pixel_y = 0 + }, +/obj/structure/bed/chair/vehicle{ + dir = 8; + pixel_x = -12 }, -/obj/structure/machinery/computer/dropship_weapons/typhoon/small{ - pixel_x = 8; - pixel_y = 8 +/obj/structure/barricade/handrail{ + dir = 1 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"bs" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "26" +"af" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, -/turf/template_noop, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"ag" = ( +/obj/structure/phone_base{ + dir = 4; + pixel_x = -19; + pixel_y = 12; + layer = 3.1; + phone_category = "Dropship"; + name = "Typhoon telephone receiver"; + phone_id = "Typhoon" + }, +/obj/structure/machinery/computer/cameras/dropship/typhoon, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"ah" = ( +/obj/structure/machinery/computer/dropship_weapons/typhoon, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = 13; + pixel_y = 19 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"cg" = ( +"ai" = ( +/turf/closed/shuttle/typhoon/transparent{ + icon_state = "96" + }, +/area/shuttle/tornado) +"aj" = ( +/turf/closed/shuttle/typhoon/transparent{ + icon_state = "98" + }, +/area/shuttle/tornado) +"ak" = ( /obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "66" + icon_state = "101" + }, +/turf/template_noop, +/area/shuttle/tornado) +"aX" = ( +/turf/template_noop, +/area/space) +"bs" = ( +/obj/structure/shuttle/part/tornado/transparent{ + icon_state = "26" }, /turf/template_noop, /area/shuttle/tornado) @@ -49,9 +112,6 @@ /turf/template_noop, /area/shuttle/tornado) "fZ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, /obj/structure/platform_decoration{ dir = 4 }, @@ -76,13 +136,8 @@ icon_state = "24" }, /area/shuttle/tornado) -"gY" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "67" - }, -/area/shuttle/tornado) "hS" = ( -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/bed/chair/vehicle{ dir = 4 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, @@ -101,11 +156,6 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"lA" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "73" - }, -/area/shuttle/tornado) "lM" = ( /turf/closed/shuttle/typhoon{ icon_state = "48" @@ -114,11 +164,6 @@ "mE" = ( /turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/tornado) -"nM" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "64" - }, -/area/shuttle/tornado) "of" = ( /turf/closed/shuttle/typhoon{ icon_state = "25" @@ -131,35 +176,14 @@ /turf/template_noop, /area/shuttle/tornado) "pQ" = ( -/obj/structure/phone_base{ - dir = 4; - pixel_x = -19; - pixel_y = 12; - layer = 3.1; - phone_category = "Dropship"; - name = "Typhoon telephone receiver"; - phone_id = "Typhoon" - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - pixel_y = 8 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/small{ - pixel_y = 16; - pixel_x = 6 - }, +/obj/structure/machinery/computer/shuttle/dropship/flight, +/obj/structure/blocker/invisible_wall, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "qH" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = 25 }, -/obj/structure/bed/chair/dropship/passenger/folded{ - dir = 4; - buckling_y = 3; - pixel_y = 3 - }, /turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/tornado) "rb" = ( @@ -172,36 +196,12 @@ icon_state = "72" }, /area/shuttle/tornado) -"tf" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/surgical_tray/empty, -/obj/item/reagent_container/hypospray/autoinjector/oxycodone{ - pixel_y = 9; - pixel_x = -3 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) "uS" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "3" }, /turf/template_noop, /area/shuttle/tornado) -"vO" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "41"; - density = 0; - layer = 4.2 - }, -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "61" - }, -/turf/template_noop, -/area/shuttle/tornado) "wd" = ( /turf/closed/shuttle/typhoon{ icon_state = "36" @@ -218,16 +218,11 @@ dir = 8; pixel_y = -5 }, -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/bed/chair/vehicle{ dir = 4 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"xq" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "69" - }, -/area/shuttle/tornado) "xP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/machinery/door/airlock/hatch/cockpit/three{ @@ -290,7 +285,7 @@ /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tornado) "BO" = ( -/obj/structure/shuttle/part/tornado/transparent{ +/obj/structure/shuttle/part/typhoon/transparent{ icon_state = "15" }, /turf/template_noop, @@ -308,9 +303,14 @@ /turf/template_noop, /area/shuttle/tornado) "CD" = ( -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 +/obj/structure/bed/chair/vehicle{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/bed/chair/vehicle{ + dir = 4; + pixel_x = 12; + pixel_y = 0 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) @@ -324,9 +324,6 @@ icon_state = "p_stair_full"; can_block_movement = 0 }, -/obj/structure/platform{ - dir = 4 - }, /obj/structure/platform{ dir = 8 }, @@ -337,22 +334,11 @@ dir = 4; pixel_y = -5 }, -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/bed/chair/vehicle{ dir = 8 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Da" = ( -/obj/structure/bed/portable_surgery{ - pixel_y = 5 - }, -/obj/structure/machinery/iv_drip{ - pixel_y = 26; - layer = 2.9 - }, -/obj/structure/curtain/medical, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) "De" = ( /obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ pixel_y = 32 @@ -380,9 +366,14 @@ /area/shuttle/tornado) "Du" = ( /obj/docking_port/mobile/marine_dropship/typhoon, -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 +/obj/structure/bed/chair/vehicle{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/bed/chair/vehicle{ + dir = 4; + pixel_x = 12; + pixel_y = 0 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) @@ -397,12 +388,6 @@ icon_state = "86a" }, /area/shuttle/tornado) -"Gv" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "70" - }, -/turf/template_noop, -/area/shuttle/tornado) "HJ" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "32" @@ -440,7 +425,7 @@ /turf/template_noop, /area/shuttle/tornado) "Jm" = ( -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/bed/chair/vehicle{ dir = 8 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, @@ -455,12 +440,12 @@ /turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/tornado) "KW" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, /obj/structure/barricade/handrail{ dir = 1 }, +/obj/structure/bed/chair/vehicle{ + dir = 8 + }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "KX" = ( @@ -504,7 +489,7 @@ /area/shuttle/tornado) "MB" = ( /turf/closed/shuttle/typhoon/transparent{ - icon_state = "97a" + icon_state = "97" }, /area/shuttle/tornado) "Nf" = ( @@ -556,11 +541,6 @@ }, /turf/template_noop, /area/shuttle/tornado) -"QF" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "62" - }, -/area/shuttle/tornado) "Rb" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "29" @@ -575,9 +555,6 @@ /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tornado) "Rg" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, /obj/structure/platform_decoration{ dir = 8 }, @@ -600,12 +577,6 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Sc" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "74" - }, -/turf/template_noop, -/area/shuttle/tornado) "Sz" = ( /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tornado) @@ -624,17 +595,6 @@ }, /turf/template_noop, /area/shuttle/tornado) -"TF" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "40"; - density = 0; - layer = 4.2 - }, -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "65" - }, -/turf/template_noop, -/area/shuttle/tornado) "Uk" = ( /obj/structure/shuttle/part/typhoon/transparent, /turf/template_noop, @@ -671,9 +631,6 @@ icon_state = "p_stair_full"; can_block_movement = 0 }, -/obj/structure/platform{ - dir = 8 - }, /obj/structure/platform{ dir = 4 }, @@ -684,23 +641,17 @@ dir = 4; pixel_x = -24 }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, /obj/structure/barricade/handrail{ dir = 1 }, +/obj/structure/bed/chair/vehicle{ + dir = 4 + }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "Yk" = ( /turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/tornado) -"YW" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "71" - }, -/turf/template_noop, -/area/shuttle/tornado) "Zk" = ( /turf/closed/shuttle/typhoon{ icon_state = "30" @@ -717,10 +668,6 @@ aX aX aX aX -aX -aX -aX -aX IT Qi Oc @@ -731,21 +678,25 @@ aX aX aX aX +aX +aX +aX +aX "} (2,1,1) = {" aX aX aX aX -aX -YW -cg -cg -vO +yE RB Rb JT BP +aX +aX +aX +aX IT OV VV @@ -759,12 +710,12 @@ aX IT dV rO -gY -gY -QF -wd Zk gN +wd +wd +gn +aa VM yE Tc @@ -773,18 +724,18 @@ BP Ts "} (4,1,1) = {" -aX -aX -aX -yE +IR +oH +CE +Fm et zj LB XJ hS wO -hS -Mj +gn +ab gx wd Zk @@ -793,10 +744,10 @@ Oh uS "} (5,1,1) = {" -IR -oH -CE -Fm +ak +ai +ag +af Or De Sz @@ -816,15 +767,15 @@ aX Mp MB pQ -bi +gn xP KN gn -gn +ae Du CD KN -gn +Mj Re Sz BL @@ -833,10 +784,10 @@ Nf aX "} (7,1,1) = {" -OE -fJ -zS -yk +ak +aj +ah +af et qH Sz @@ -853,18 +804,18 @@ Nf aX "} (8,1,1) = {" -aX -aX -aX -IT +OE +fJ +zS +yk et -Da -tf +gn +Ms KW Jm CW -Jm -Mj +gn +ac lM ZR Rw @@ -878,13 +829,13 @@ aX aX yE Dl -lA -xq -xq -nM ZR Rw of +ZR +ZR +gn +ad BO IT Dv @@ -897,15 +848,15 @@ aX aX aX aX -aX -Sc -Gv -Gv -TF +IT Qi HJ IX wI +aX +aX +aX +aX yE Jb gw @@ -917,10 +868,6 @@ aX aX aX aX -aX -aX -aX -aX yE RB Jb @@ -931,4 +878,8 @@ aX aX aX aX +aX +aX +aX +aX "} diff --git a/sound/weapons/gun_dropship_minigun.ogg b/sound/weapons/gun_dropship_minigun.ogg new file mode 100644 index 00000000000..b5b499c4023 Binary files /dev/null and b/sound/weapons/gun_dropship_minigun.ogg differ