From 8340eb7eb0213a5da94de9e0b1c348949a6b9c13 Mon Sep 17 00:00:00 2001 From: Killian Date: Tue, 11 Jun 2024 09:09:59 +0100 Subject: [PATCH] added research samples --- code/modules/samples/container.dm | 62 +++++++ code/modules/samples/samples.dm | 266 ++++++++++++++++++++++++++++++ icons/obj/samples.dmi | Bin 0 -> 10472 bytes vorestation.dme | 2 + 4 files changed, 330 insertions(+) create mode 100644 code/modules/samples/container.dm create mode 100644 code/modules/samples/samples.dm create mode 100644 icons/obj/samples.dmi diff --git a/code/modules/samples/container.dm b/code/modules/samples/container.dm new file mode 100644 index 0000000000..fe8c0f8bf2 --- /dev/null +++ b/code/modules/samples/container.dm @@ -0,0 +1,62 @@ +/obj/item/weapon/storage/sample_container + name = "sample container" + desc = "A small containment device used to safely collect and carry up to eight research samples. Has a loop for attaching to belts." + description_info = "You can use the sample container directly on a sample to quickly scoop it up, or on a tile to scoop up all samples on that tile. This negates the risk of hurting yourself if you don't have thick enough gloves to safely handle the samples!" + icon = 'icons/obj/samples.dmi' + icon_state = "sample_container_0" + + w_class = ITEMSIZE_SMALL + slot_flags = SLOT_BELT + max_w_class = ITEMSIZE_TINY + storage_slots = 8 + max_storage_space = ITEMSIZE_TINY * 8 + var/lightcolor = "#EFF1BF" + + drop_sound = 'sound/items/drop/gascan.ogg' + pickup_sound = 'sound/items/pickup/gascan.ogg' + + can_hold = list(/obj/item/weapon/research_sample) + +/obj/item/weapon/storage/sample_container/update_icon() + ..() + icon_state = "sample_container_[contents.len]" + if(contents.len > 0) + set_light(1, contents.len, lightcolor) + else + set_light(0) + +/obj/item/weapon/storage/sample_container/afterattack(turf/T as turf, mob/user as mob) + for(var/obj/item/weapon/research_sample/S in T) + S.loc = src + update_icon() + to_chat(user, "You scoop \the [S] into \the [src].") + +//Splice research sample containers into the list of valid items for these belts *without* overriding the lists entirely +/obj/item/weapon/storage/belt/explorer/New() + . = ..() + can_hold.Add(/obj/item/weapon/storage/sample_container) + +/obj/item/weapon/storage/belt/miner/New() + . = ..() + can_hold.Add(/obj/item/weapon/storage/sample_container) + +/obj/item/weapon/storage/belt/archaeology/New() + . = ..() + can_hold.Add(/obj/item/weapon/storage/sample_container) + +//ditto, lockers and redemption machines +/obj/structure/closet/secure_closet/miner/Initialize() + . = ..() + starts_with += /obj/item/weapon/storage/sample_container + +/obj/structure/closet/secure_closet/xenoarchaeologist/Initialize() + . = ..() + starts_with += /obj/item/weapon/storage/sample_container + +/obj/machinery/mineral/equipment_vendor/Initialize(mapload) + . = ..() + prize_list["Gear"] += list(EQUIPMENT("Exotic Sample Container", /obj/item/weapon/storage/sample_container, 100)) + +/obj/machinery/mineral/equipment_vendor/survey/Initialize(mapload) + . = ..() + prize_list["Gear"] += list(EQUIPMENT("Survey Tools - Exotic Sample Container", /obj/item/weapon/storage/sample_container, 100)) diff --git a/code/modules/samples/samples.dm b/code/modules/samples/samples.dm new file mode 100644 index 0000000000..975c1e1237 --- /dev/null +++ b/code/modules/samples/samples.dm @@ -0,0 +1,266 @@ +/obj/item/weapon/research_sample + name = "research sample" + desc = "A curious sample of unknown material. Perhaps a scientist could tell you more about it?
It looks dangerous to handle without heavy gloves or other protective equipment." + icon = 'icons/obj/samples.dmi' + icon_state = "sample" + w_class = ITEMSIZE_TINY + var/tech_level = 0 //base level + var/rand_level = 0 //random level between 0 and this value is added during spawn, if the techgroup is randomized + var/fixed_tech = null //do we have a predetermined tech-group, per request? if so, overrides randomization for icon and name + var/rand_tech = null //randomized tech-group from the list below + var/list/valid_techs = list(TECH_COMBAT,TECH_MAGNET,TECH_POWER,TECH_BIO,TECH_DATA,TECH_ENGINEERING,TECH_PHORON,TECH_MATERIAL,TECH_BLUESPACE,TECH_ILLEGAL,TECH_ARCANE,TECH_PRECURSOR) + origin_tech = list() //blank list creation, or else we get a runtime trying to assign the new techgroup + + persist_storable = FALSE //don't shove hazardous shinies into the item bank!! also their properties are (usually) randomized on creation, so saving them is pointless-- you won't get out what you put in + + //handling requirements; you need gloves with a low permeability threshold, RIG gauntlets, or luck- otherwise you get hand burns + var/handle_risk = 20 //20% chance to hurty if you handle it wrong + var/min_damage = 3 //min: 3 burn per hand + var/max_damage = 5 //max: 5 burn per hand + + //resource returns when crunched; a small amount of OK stuff by default + var/min_ore = 3 + var/max_ore = 5 + var/list/resource_list = list(/obj/item/weapon/ore/glass,/obj/item/weapon/ore/coal,/obj/item/weapon/ore/iron,/obj/item/weapon/ore/lead,/obj/item/weapon/ore/marble,/obj/item/weapon/ore/phoron,/obj/item/weapon/ore/silver,/obj/item/weapon/ore/gold) + +/obj/item/weapon/research_sample/New() + var/tech_mod = rand(0,rand_level) + var/tech_value = tech_level+tech_mod + if(fixed_tech) + origin_tech.Add(list("[fixed_tech]" = tech_value)) + else //if we're not a preset, randomize the name, icon, and associated tech, to make sure samples aren't predictable/metagamable + var/name_prefix = "[pick("strange","anomalous","exotic","atypical","unusual","incongruous","weird","aberrant","eccentric")]" + var/name_suffix //blank because it's randomized per sample appearance + var/sample_icon = rand(1,10) + icon_state = "generic_sample[sample_icon]" + //per-state tweaks, like glows/light emission or narrower valid tech defs + switch(sample_icon) + if(1) //prism + name_suffix = "[pick("alloy","object","sample","element","chunk")]" + if(2) //ring + name_suffix = "[pick("ring","band","torus","circuit","halo","hoop")]" + if(3) //red stone + name_suffix = "[pick("gem","crystal","jewel","stone","bauble","rock","star")]" + if(4) //circuit scrap + name_suffix = "[pick("circuit","board","scrap","junk","object","device")]" + if(5) //crystal star + name_suffix = "[pick("gem","crystal","jewel","stone","bauble","rock","star")]" + if(6) //spore + name_suffix = "[pick("glob","spore","blob","corpuscle","macroorganism","vacuole")]" + if(7) //device + name_suffix = "[pick("device","gadget","widget","object","apparatus","contraption","gizmo","object","doohickey")]" + if(8) //purple shard + name_suffix = "[pick("shard","fragment","sliver","remnant")]" + if(9) //purple rock + name_suffix = "[pick("rock","stone","slab","rubble","mineral","mass","boulder","slag")]" + if(10) //green rock + name_suffix = "[pick("rock","stone","slab","rubble","mineral","mass","boulder","slag")]" + else //none + name_suffix = "[pick("object","sample","thing","fragment","specimen","element","alloy","chunk","remnant","scrap","sliver")]" + name = "[name_prefix] [name_suffix]" + rand_tech = pick(valid_techs) //assign techs last + origin_tech.Add(list("[rand_tech]" = tech_value)) + +/obj/item/weapon/research_sample/attack_hand(mob/user) + . = ..() + var/mob/living/M = user + if(!istype(M)) + return + + var/burn_user = TRUE + if(istype(M, /mob/living/carbon/human)) + var/mob/living/carbon/human/H = user + var/obj/item/clothing/gloves/G = H.gloves + if(istype(G) && (G.permeability_coefficient < 0.25) || !prob(handle_risk) || istype(G, /obj/item/clothing/gloves/gauntlets)) + burn_user = FALSE + + if(burn_user) + H.visible_message("\The [src] flashes as it scorches [H]'s hands!") + H.apply_damage(rand(min_damage,max_damage), BURN, "r_hand", used_weapon="Anomalous Material") + H.apply_damage(rand(min_damage,max_damage), BURN, "l_hand", used_weapon="Anomalous Material") + H.drop_from_inventory(src, get_turf(H)) + return + + if(istype(user, /mob/living/silicon/robot)) + burn_user = FALSE + + if(burn_user) + M.apply_damage(rand(min_damage,max_damage), BURN, null, used_weapon="Anomalous Material") + +/obj/item/weapon/research_sample/attack_self(mob/user) + var/mob/living/M = user + if(!istype(M)) + return + + var/burn_user = TRUE + if(istype(M, /mob/living/carbon/human)) + var/mob/living/carbon/human/H = user + var/obj/item/clothing/gloves/G = H.gloves + if(istype(G) && (G.permeability_coefficient < 0.25) || !prob(handle_risk) || istype(G, /obj/item/clothing/gloves/gauntlets)) + burn_user = FALSE + + if(burn_user) + H.visible_message("\The [src] flashes as it scorches [H]'s hands!") + H.apply_damage(rand(min_damage,max_damage), BURN, "r_hand", used_weapon="Anomalous Material") + H.apply_damage(rand(min_damage,max_damage), BURN, "l_hand", used_weapon="Anomalous Material") + H.drop_from_inventory(src, get_turf(H)) + return + + else if(do_after(user,3 SECONDS)) //short delay, so you can abort/cancel if you misclick + H.visible_message("[H] crushes \the [src], stabilizing its anomalous properties and rendering it into a pile of assorted minerals.") + var/i = rand(min_ore,max_ore) + while(i>1) + var/ore = pick(resource_list) + new ore(H.loc) + i-- + H.drop_from_inventory(src,get_turf(H)) + qdel(src) + + if(istype(user, /mob/living/silicon/robot)) + burn_user = FALSE + + if(burn_user) + M.apply_damage(rand(min_damage,max_damage), BURN, null, used_weapon="Anomalous Material") + +/obj/item/weapon/research_sample/attackby(obj/item/weapon/P as obj, mob/user as mob) + ..() + + if(istype(P, /obj/item/weapon/storage/sample_container)) + var/obj/item/weapon/storage/sample_container/SC = P + src.loc = SC + SC.update_icon() + to_chat(user, "You store \the [src] in \the [SC].") + + if(istype(P, /obj/item/device/cataloguer)) + to_chat(user, "You start to scan \the [src] with \the [P]...") + if(do_after(user, 2 SECONDS)) + to_chat(user, "\The [src] seems to have [origin_tech[1]] properties?") + +/obj/item/weapon/research_sample/common + icon_state = null + tech_level = 2 //2~3 + rand_level = 1 + valid_techs = list(TECH_COMBAT,TECH_MAGNET,TECH_POWER,TECH_BIO,TECH_DATA,TECH_ENGINEERING,TECH_PHORON,TECH_MATERIAL) + catalogue_data = list(/datum/category_item/catalogue/information/research_sample/common) + +/obj/item/weapon/research_sample/uncommon + icon_state = null + tech_level = 4 //4~6 + rand_level = 2 + valid_techs = list(TECH_COMBAT,TECH_MAGNET,TECH_POWER,TECH_BIO,TECH_DATA,TECH_ENGINEERING,TECH_PHORON,TECH_MATERIAL,TECH_BLUESPACE,TECH_ILLEGAL) + catalogue_data = list(/datum/category_item/catalogue/information/research_sample/uncommon) + + handle_risk = 50 + min_damage = 4 + max_damage = 6 + + //modest amount of decent stuff + min_ore = 4 + max_ore = 6 + resource_list = list(/obj/item/weapon/ore/phoron,/obj/item/weapon/ore/silver,/obj/item/weapon/ore/gold,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/diamond) + +/obj/item/weapon/research_sample/rare + icon_state = null + tech_level = 6 //6~8 + rand_level = 2 + valid_techs = list(TECH_COMBAT,TECH_MAGNET,TECH_POWER,TECH_BIO,TECH_DATA,TECH_ENGINEERING,TECH_PHORON,TECH_MATERIAL,TECH_BLUESPACE,TECH_ILLEGAL,TECH_ARCANE,TECH_PRECURSOR) + catalogue_data = list(/datum/category_item/catalogue/information/research_sample/rare) + + handle_risk = 80 + min_damage = 5 + max_damage = 10 + + //a decent amount of rare stuff only + min_ore = 8 + max_ore = 10 + resource_list = list(/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/hydrogen,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/verdantium) + +/obj/item/weapon/research_sample/bluespace + name = "bluespace anomaly" + desc = "A small, solidified fragment of bluespace? It shimmers in and out of phase with reality, flickering ominously." + icon_state = "sample_bluespace" + tech_level = 6 //always 6 + rand_level = 0 + fixed_tech = TECH_BLUESPACE + var/lightcolor = "#0066CC" + catalogue_data = list(/datum/category_item/catalogue/information/research_sample/bluespace) + + handle_risk = 80 + min_damage = 5 + max_damage = 10 + + //a single bluespace crystal + min_ore = 1 + max_ore = 1 + resource_list = list(/obj/item/weapon/bluespace_crystal) + +/obj/item/weapon/research_sample/bluespace/New() + ..() + set_light(1, 3, lightcolor) + +//catalogue data +/datum/category_item/catalogue/information/research_sample/core_data + name = "Collection - Anomalous Matter" + desc = "Samples of various kinds of matter exposed to strange energy fields, exotic stellar radiation, or other unusual conditions, these objects are of great interest to most scientific institutions as they present novel research opportunities in a wide variety of fields, whether it's studying the material compositions themselves, the effects that exposure has had on them, or their other properties such as conductivity, flammability, and so on. There's no telling what kind of breakthroughs could be made.\ +

\ + Perhaps the best known example of this type of object would be the now-ubiquitous Phoron. Whilst many of these samples are the equivalent of evolutionary \'dead ends\' in most respects, many can still yield intriguing results and unique possibilities - not to mention wealth and fame for those who discover a promising specimen.\ +

\ + Their exact composition often varies wildly, which means handling them without protective equipment can be a risky endeavour." + value = CATALOGUER_REWARD_MEDIUM + unlocked_by_all = list( + /datum/category_item/catalogue/information/research_sample/common, + /datum/category_item/catalogue/information/research_sample/uncommon, + /datum/category_item/catalogue/information/research_sample/rare, + /datum/category_item/catalogue/information/research_sample/bluespace + ) + +/datum/category_item/catalogue/information/research_sample/common + name = "Anomalous Sample - Common" + desc = "A chunk of mildly anomalous matter. It seems mostly safe to handle, but care should be taken nonetheless." + value = CATALOGUER_REWARD_EASY + +/datum/category_item/catalogue/information/research_sample/uncommon + name = "Anomalous Sample - Uncommon" + desc = "A chunk of moderately anomalous matter. Could be quite dangerous to handle unprotected." + value = CATALOGUER_REWARD_MEDIUM + +/datum/category_item/catalogue/information/research_sample/rare + name = "Anomalous Sample - Rare" + desc = "A chunk of exceptionally anomalous matter. It's likely very dangerous to handle without protective equipment." + value = CATALOGUER_REWARD_HARD + +/datum/category_item/catalogue/information/research_sample/bluespace + name = "Anomalous Sample - Bluespace" + desc = "A semi-crystalline particle of anomalous origin. Cataloguer sensors indicate it has extremely strong quasidimensional entanglements. Handling it without protective equipment is likely very unwise." + value = CATALOGUER_REWARD_HARD + +/obj/random/research_sample_type1 + name = "Random Research Sample" + desc = "Spawns a random research sample of any quality." + icon = 'icons/obj/samples.dmi' + icon_state = "sample_spawner1" + +/obj/random/research_sample_type1/item_to_spawn() + return pick(prob(60);/obj/item/weapon/research_sample/common, + prob(25);/obj/item/weapon/research_sample/uncommon, + prob(15);/obj/item/weapon/research_sample/rare) + +/obj/random/research_sample_type2 + name = "Random Common/Uncommon Research Sample" + desc = "Spawns a random research sample of common or uncommon quality." + icon = 'icons/obj/samples.dmi' + icon_state = "sample_spawner2" + +/obj/random/research_sample_type2/item_to_spawn() + return pick(prob(70);/obj/item/weapon/research_sample/common, + prob(30);/obj/item/weapon/research_sample/uncommon) + +/obj/random/research_sample_type3 + name = "Random Uncommon/Rare Research Sample" + desc = "Spawns a random research sample of uncommon or rare quality." + icon = 'icons/obj/samples.dmi' + icon_state = "sample_spawner3" + +/obj/random/research_sample_type3/item_to_spawn() + return pick(prob(70);/obj/item/weapon/research_sample/uncommon, + prob(30);/obj/item/weapon/research_sample/rare) diff --git a/icons/obj/samples.dmi b/icons/obj/samples.dmi new file mode 100644 index 0000000000000000000000000000000000000000..dbc81536cd64df45ea6469cf10f0fa2e77bd58da GIT binary patch literal 10472 zcmd6NXIK+m*X|_r4$=h)AOcDk0jUXyfFeZ%rFQ`-(mRAu1w{c70R;krqSAZsAkqxI zC?)jXTYwPG_`J{iUEj}h{+;WZWM-1RXRmgzb?=qL=xVFeP+q140D$J6hN>O_K)_1? zOHK;DZzxymf*)`N=o@;eKJ~Qmc;@Ey%=I|{_@x!R({gMRr&k*rydGsMbRW-HW#;gR zGmN#1Io46fCRBv|-o2I0I`LaHUTf9lE_{Cbx5Qy(QB_loaw`5`aU|(uqo@e{v$hF? zsw^T3qi&-Yr^At}v*DEFmmZtb*u)9_GTv0s(71i(=GeSScrE3_mY>@3Ye~8Py3EDu zu*sAm<2&h4g71Q#Zk6vTcR7u31?ylINeCvlw{Id=K;0Erg zD(m~DZKenM=^v(F%n0ywrLteLQ&F);kni5t{|+&xGV1nQH})#1FoFFpwf3S|Kh0*# zs*~Fa zbnjT4o|sa zd3(%#i}7-e(Ci1Wt-89ahfQ^2Wf<35?EwtqDc@&EJ2CPGlXTchvreSxRql7!=*goC z7_$db_C1wPyAEHy4IT$2a5%kvj!nLKBrDtJR5v9m%xJDHkNaGVc{Wln&{|$u+3Il1 zLoGWY(L6Q>4LhZvK~N)WY@b1eaf>SanOA)3%vLrw+HK+#`H7(ro-yT}j#M~(Ws~uz zRD!Bt$fPLBx&`BK%I0$h<(XQl)@#8S^4C+#+v}L1HDGxoH-P3eSx?>!R|f}rn6Hn| zr-};Zf`S6skr{#`1z>rWcdhzxdU9QIuLdt60(69<6YMk*t5|zoO@x2`<2<*Gaf#kk zNwT~rML+fydmsRKp=NJy|A1cMXx!!{;o{NiOu%+D&ipasl3ob!J9sOgPlZ&YWYiVH zvD-qsTSOZ_YbIMCu8r*YDU8>83q39}e~rd32)Ku5R#YTCa^w~^3w}oLkcHk})R80C zpx@Q--i4q#=VQpB*Xk@%*TAQf6TIfgKCCW#p4=tUZ8);$b0GO@b|(3inLEx)R4J-+ zUir=)A~|{advKjY$qWjOm1J91bmu(7Stj+1wuG`*=!3E$F{p>(ndB#9NX_?i_F>AO zX7iTUQxw=$zJ!p@}0t zhWVU@P40QYGDmdnP6{`V|6fG8KgDsMPw%Gy zBq4ShVy&j6AqwZFq-gWQL|W)e8z^E_@_d0)oP!Y<)S+&*TvBd9%g*j|O%Gm1Rew`0 zBqZmc<?y+KRudaD4h>u(3xPnaSh(@16><-KaL>a3yu22OOoOF^ z*O=4mGziz4K@If5VGi1h8bNn501i6LN4rrY#Qwd8RZ;1#^l^a-4bm~%00B1?Ks~1q zZGHgIP*kP?`o#e_#WN3P1H|YtE#H6#D4gfQlu%y;M0tYK*Oz&pWK17itp!d}VCSnZ z=;D=D)#KN(Lbm5A5>=CouK%DO#O!HBo7G`7zv% z3vnmBaW5OZTQ`D#q3WObR)k*xbqg4c69g%k4aa0O7_=tH4qAw&UgrY#2X$W?*Hw{2fzP>*=sf~tAnG*${N>1P(heD zZP1GL!3H#zyr2&l|5|*eM=X%HUlkKq_(drR-7R)559<-jBhe*485kMP-FtMxeqv0> zr^(a>omlYKiB8|p-|BC=)Ai9+Lx42p5ALfbKhZ|8EdTfDit!1y`Ue68{PX4k`cZY|snl z@K02ko&Oz^O4i?>`9D5bg?jm{3H>|gDm5zj+W|M_f6*{sNYel4-^dg&rOrwI_Zi6z zBDa<48Ckn&H2wtzA+vh_h@4r&$zC{;yEQ7|I`j^pZOKhSx`~&YTz` zjYLo?KmYX&=I7X+y$cZe7G~!155P3f^%pVS0OfUffan1@g%BhX@`F^@;lGhTz-`I% zU+aU&*^`9_d^h#ZDWW@94O~e;TK|R5Ng7Ns-OC`SNbG#YrCb9pah(R`LGqTMI*4AW zIrS*`e}~flkG>cwBVvqrt3lQ|o@rPQDf9Yirz?`wIJw<>?aGxaoa}%EkEL?y13z}4 z_;nq8&f99}Q*2}0+1B&BhZFlgqWH!Kuepcjlc|K7)=1;GLG!|!4zr2G#%#Zfjgfo2 zUb6vCGQa@be=-BIpq_|iDH?+F;ly&e<8T8wkl9uMlz%husXn2% z$HJin42SoK(SHDgM&b~Y-2Eyb7?CGbQaJV#2PgYGPWi4ymn4`@>gy;T`ScZyZkVx=sFXH~$U zJ3&MzgDE73gY5=nm9?G=oxQH~@_T|ljtXu=pww$Y!z%h3jHQJ{% zI97%Hvfu#+qz)<+2y8_CrwfUVjfZ7-aa)bC(-@apZKL4SGX@85Jcx8}blkyVfzHBv za9k}${q%Hbdu0W?k>=wGDIXns8|@DS^!}AETW297B?e)P4jLTGMS^TV;Mn|Bb#&}y ziYRI{`0tuZ2`1Lm2-m-!4LPXTdgWA5L?U4ZG%TtMoZ|<_YOfboAPZx}0Uy1?cYhtN zZV|v~3$5Y#Lc-lZUM_c%Q)Cgm>K;$=RcCUsdGHnL{MTWZK=ApRW}FR&Z_`GS52FE` zl@ClBhbyA1>n7-yH{nlzcO3%hqos_TpB{KA0rL9zHExP7cIRta*ZwSsFnR zmQwvSgCm|h8Xx&jeRd}LnLMRM5%!bQh}5#`Ph@4K^i4=uN~SI=SiM`{-tmmQ_F_p* zf7ED(wEWLzD@bMC&kx6JPWBdy|9B=6ZW}mVwb-&?jCij~cG|MN-KxAnd9hn*6ohQ; zC9(_+!R=V>*4T8ufdHpxXExL7YMDywql&x=XB%-V7isnn8is^8+eMu@{8@YMH(uTi zY%6oY(a)bL*gggFkE#rX0pL}~Cr6>b`;ixPupcEho$ZS2a|5HJQ5N_));as1#N-Vn z3;m`Ljy5Sm>DwYGB7#CS@mK_Swo}%;d|PyD{H~^EkD&N-;sB{oW}(LvGGrth;%qw+XLb0t9G~h?Y7aUp|v5 zm9&ZJ&HPJaV`I0|gJ%Q83tX7Rvl-^+U)hLl8d$03|C?G zi#6%`li%BJKJ${eAsSz7T+dju_YU{3j}LB_?PE|q;Tcb)h4w=H4m0?71GmmcSZK+| zj=-46&oJR9X!I$Ig3+_yT}W2!%XF0fIy+=j0Ri1j)Z_bOLU zm?vwkP;}Z8OIvLr^}PmIc7|r{%3L=+D{Fp#v^(MXIg$FSFdgj9D&HOLA5g=10ZM}3 zROo~18Zr3Iy&B3WHP;5_!a%1IYEygza z%v*Ef38E#Vaa$Lz&DMa1;TaKoIq=CT1Q5J_ox$QsHgmkoCdRS=sKGD)fX&6W0B0_m zZar_;CA`ZynTe2I+v71kYlUqLGwkmsk6naoH)$VSR(jpMe-Sw^))Xald2M&}OUQ25 zh<)GbUjP?P5AhXapOlf%UpdgZSeI-ax;Ty1mFwar4cXl2(Um{DssH}TOa9F0YT{>` zFtO&(QgFc1mV7Ie$FP7|Vp}WfSr5zB6Dn5TgH|eumTfP&+5Ho@g`W%neTXKz=vk0j zfQMx$0awdnTIXJ3*rPs%iz{+!sZ8)qL_T@k!fbY?gH|#N%0DnfUHa+0!~qYH%{bXc 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 ncv67dE*C}_6!tUig6