diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 4ade08a892c85fddf4a024cfc22afe04c5714d04..e47c942fe83a503bb66657ee59c1952962eeb7c9 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -2,11 +2,17 @@
 
 0.10.7.1-1.1.x
 
+11/30/2018
+
+	4
+	-added buttplug attachments to the RA
+	-fixes 
+
 11/29/2018
 
 	3
 	-more fixes
-	-uncommented incubator semen donations
+	-uncommented incubator semen harvesting
 
 11/28/2018
 
diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index c53fb06f7cc5cab4566e4178580c5713d339f5b3..b912fd3013c9f187340f2c22e25ce86327016286 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -1000,6 +1000,87 @@ window.genUUID = function() {
 	return uuid;
 };
 
+window.removeFS = function(FS) {
+	const V = State.variables;
+	const arcology = V.arcologies[0];
+	let FSDecoration = FS + "Decoration";
+	let FSSMR = FS + "SMR";
+	let FSLaw = FS + "Law";
+	if (FS === "FSSupremacist" || FS === "FSSubjugationist") {
+		FSLaw += "ME";
+	}
+	switch (FS) {
+		case "FSGenderRadicalist":
+			arcology.FSGenderRadicalistLawBeauty = 0;
+			arcology.FSGenderRadicalistLawFuta = 0;
+			break;
+		case "FSGenderFundamentalist":
+			arcology.FSGenderFundamentalistLawBeauty = 0;
+			arcology.FSGenderFundamentalistLawBimbo = 0;
+			arcology.FSGenderFundamentalistSMR = 0;
+			break;
+		case "FSTransformationFetishist":
+		case "FSAssetExpansionist":
+			arcology[FSSMR] = 0;
+			break;
+		case "FSPhysicalIdealist":
+			arcology.FSPhysicalIdealistLaw = 0;
+			arcology.FSPhysicalIdealistSMR = 0;
+			arcology.FSPhysicalIdealistStrongFat = 0;
+		case "FSHedonisticDecadence":
+			arcology.FSHedonisticDecadenceLaw = 0;
+			arcology.FSHedonisticDecadenceLaw2 = 0;
+			arcology.FSHedonisticDecadenceSMR = 0;
+			arcology.FSHedonisticDecadenceStrongFat = 0;
+			break;
+		case "FSChattelReligionist":
+			arcology.FSChattelReligionistLaw = 0;
+			arcology.FSChattelReligionistSMR = 0;
+			arcology.FSChattelReligionistCreed = 0;
+			break;
+		case "FSNull":
+			break;
+		default: /* all others have one law and one SMR */
+			arcology[FSLaw] = 0;
+			arcology[FSSMR] = 0;
+			break;
+	}
+	if (FS !== "FSNull") {
+		arcology[FSDecoration] = 20;
+		if (FS === "FSRestart") {
+			V.propOutcome = 0;
+			V.failedElite = 0;
+		}
+	}
+	arcology[FS] = "unset";
+	resetFSCredits();
+};
+
+window.resetFSCredits = function() {
+	const V = State.variables;
+	let activeFS = 0;
+	for (let i = 0; i < setup.FutureSocieties.length; i++) {
+		if (V.arcologies[0][setup.FutureSocieties[i]] > 0) {
+			activeFS++;
+		}
+	}
+	console.log(activeFS);
+	if (V.arcologies[0].FSNull > 0) { /* possibly recalculate for multiculturalism */
+		activeFS--;
+		if (V.FSCreditCount === 4) {
+			activeFS += V.arcologies[0].FSNull/25;
+		} else if (V.FSCreditCount === 6) {
+			activeFS += V.arcologies[0].FSNull/17;
+		} else if (V.FSCreditCount === 7) {
+			activeFS += V.arcologies[0].FSNull/15;
+		} else {
+			activeFS += V.arcologies[0].FSNull/20;
+		}
+	}
+	console.log(activeFS);
+	V.FSCredits = Math.max(Math.trunc(V.FSGotRepCredits - activeFS), 0);
+};
+
 /*:: itemAvailability [script]*/
 
 /* intended to condense the clothing/toy/etc availability checks into something less asinine */
@@ -3032,6 +3113,7 @@ window.emptyDefaultRule = function emptyDefaultRule() {
 			bellyAccessory: "no default setting",
 			aVirginButtplug: "no default setting",
 			buttplug: "no default setting",
+			buttplugAttachment: "no default setting",
 			eyeColor: "no default setting",
 			makeup: "no default setting",
 			nails: "no default setting",
@@ -4424,10 +4506,12 @@ if(eventSlave.fetish != "mindbroken") {
 			}
 
 			if(eventSlave.entertainSkill >= 60 || ["an exotic dancer", "a dancer", "a house DJ", "a party girl", "an aspiring pop star"].includes(eventSlave.career)) {
-				if(eventSlave.health > 40) {
-					if(eventSlave.devotion > 50) {
-						if(eventSlave.trust > 50) {
-							State.variables.RESSevent.push("happy dance");
+				if(canHear(eventSlave)) {
+					if(eventSlave.health > 40) {
+						if(eventSlave.devotion > 50) {
+							if(eventSlave.trust > 50) {
+								State.variables.RESSevent.push("happy dance");
+							}
 						}
 					}
 				}
@@ -15066,6 +15150,7 @@ window.DefaultRules = (function() {
 			else
 				ProcessNonVirginButtplugs(slave, rule);
 		}
+		ProcessButtplugAttachments(slave, rule); // contains a clear condition for no buttplug
 	}
 
 	function ProcessAnalVirginButtplugs(slave, rule) {
@@ -15182,6 +15267,27 @@ window.DefaultRules = (function() {
 		}
 	}
 
+	function ProcessButtplugAttachments(slave, rule) {
+		// apply buttplug accessories to slaves
+		if (slave.buttplug === "none" && slave.buttplugAttachment !== "none") {
+			slave.buttplugAttachment = "none"; //clears buttplug attachments when buttplugs are removed above
+		} else if ((rule.buttplugAttachment !== undefined) && (rule.buttplugAttachment !== "no default setting")) {
+			if ((slave.buttplugAttachment !== rule.buttplugAttachment)) {
+				slave.buttplugAttachment = rule.buttplugAttachment;
+				switch (slave.buttplugAttachment) {
+
+					case "none":
+						r += `<br>${slave.slaveName} has been instructed not to use an attachment for her anal accessory.`;
+						break;
+
+					default:
+						r += `<br>${slave.slaveName} has been given a slave.buttplugAttachment to attach to her buttplug.`;
+						break;
+				}
+			}
+		}
+	}
+
 	function ProcessBellyImplant(slave, rule) {
 		// Here is belly implant size control, it's used in Surgery Degradation passage to setup devotion and trust changes.
 		// silent calls to surgery degradation have been replaced with a js function, which is less hacky
@@ -17674,6 +17780,7 @@ window.rulesAssistantOptions = (function() {
 			}
 			this.appendChild(new ButtplugsVirginsList());
 			this.appendChild(new ButtplugsOtherList());
+			this.appendChild(new ButtplugAttachmentsList());
 			this.appendChild(new ImplantVolumeList());
 
 		}
@@ -18127,6 +18234,21 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
+	class ButtplugAttachmentsList extends List {
+		constructor() {
+			const accs = [];
+			setup.buttplugAttachments.forEach(acc => {
+				if (acc.fs === undefined && acc.rs === undefined)
+					accs.push([acc.name, acc.value]);
+				else if (acc.rs === "buyTails" && V.toysBoughtButtPlugTails === 1)
+					accs.push([acc.name + " (Purchased)", acc.value]);
+			});
+			super("Buttplug attachments for slaves with buttplugs", accs);
+			this.setValue(current_rule.set.buttplugAttachment);
+			this.onchange = (value) => current_rule.set.buttplugAttachment = value;
+		}
+	}
+
 	class ImplantVolumeList extends List {
 		constructor() {
 			const pairs = [
@@ -18670,7 +18792,8 @@ window.rulesAssistantOptions = (function() {
 				["Permissive", "permissive"],
 				["Sapphic", "sapphic"],
 				["Masturbation", "masturbation"],
-				["Restrictive", "restrictive"]
+				["Restrictive", "restrictive"],
+				["Chastity", "chastity"]
 			];
 			super("Release rules", pairs);
 			this.setValue(current_rule.set.releaseRules);
diff --git a/src/SecExp/rebellionEvents.tw b/src/SecExp/rebellionEvents.tw
index ba71bd13264ef1ba000f1f525947a9c24d5e00c7..2b30ff5f1c26ba36d4501d711031a551f3f81c77 100644
--- a/src/SecExp/rebellionEvents.tw
+++ b/src/SecExp/rebellionEvents.tw
@@ -18,6 +18,7 @@
 	<</if>>
 <</if>>
 
+<<setNonlocalPronouns $seeDicks>>
 <<switch _event>>
 <<case 1>>
 	/* low tension slave rebellion events */
@@ -33,9 +34,9 @@
 	<<elseif _rand == 4>>
 		This week a member of a well known anti-slavery group was caught trying to infiltrate the arcology. During the capture attempt shots were fired and several guards were injured, and in the end the fugitive unfortunately managed to escape. Reports indicate several slaves helped the criminal, some going as far as using themselves as shields against the bullets of the security drones. 
 	<<elseif _rand == 5>>
-		This week a slave was caught attempting to sabotage a machine in one of the factories. She explained her action as "trying to defend herself from a dangerous machine". Reports confirmed that the apparatus is indeed quite deadly, having killed several slave since it was installed, but the expert way she handled the sabotage leaves open the possibility of a deliberate plan or even external help.
+		This week a slave was caught attempting to sabotage a machine in one of the factories. _HeU explained _hisU action as "trying to defend _himselfU from a dangerous machine". Reports confirmed that the apparatus is indeed quite deadly, having killed several slaves since it was installed, but the expert way _heU handled the sabotage leaves open the possibility of a deliberate plan or even external help.
 	<<else>>
-		This week a slave was found dead in one of the sewer tunnels. It seems she was stabbed repeatedly with a sharp object. She was fairly famous for her capabilities as a slave trainer, her old master spent not an insignificant amount of money trying to find her once he realized she was missing. The episode might have been a simple mugging gone wrong, but her activities as a slave breaker might have played a role in her homicide.
+		This week a slave was found dead in one of the sewer tunnels. It seems _heU was stabbed repeatedly with a sharp object. _HeU was fairly famous for _hisU capabilities as a slave trainer; _hisU old master spent not an insignificant amount of money trying to find _himU once he realized _heU was missing. The episode might have been a simple mugging gone wrong, but _hisU activities as a slave breaker might have played a role in _hisU homicide.
 	<</if>>
 	<<set $tension += random(1,5)>>
 <<case 2>>
@@ -50,16 +51,16 @@
 	<<elseif _rand == 3>>
 		This week a group of slavers entering the arcology was assaulted. Many reported heavy injuries, but fortunately there were no casualties. The attackers were disguised, but the security systems already identified several slaves who were likely part of the group, based on camera feeds.
 	<<elseif _rand == 4>>
-		This week the waterways were found infected by a virulent pathogen. The cause was later found to be a diseased slave that died while in the maintenance tunnels. It's not clear if the slave was there because of orders given to him or if he was trying to escape.
+		This week the waterways were found infected by a virulent pathogen. The cause was later found to be a diseased slave that died while in the maintenance tunnels. It's not clear if the slave was there because of orders given to _himU or if _heU was trying to escape.
 	<<else>>
-		This week a sleeper cell of a famous anti slavery organization was discovered in the low levels of the arcology. The group however was aware of the coming security forces and retreated before they could be dealt with.
+		This week a sleeper cell of a famous anti slavery organization was discovered in the low levels of the arcology. The group, however, was aware of the coming security forces and retreated before they could be dealt with.
 	<</if>>
 	<<set $tension += random(5,10)>>
 <<case 3>>
 	/* high tension slave rebellion events */
 	<<set _rand = random(0,4)>>
 	<<if _rand == 0>>
-		This week a group of slaves took control of one of the manufacturing plants and barricaded themselves inside. It took several days of negotiations and skirmishes to finally end this little insurrection. Many of the slaves involved will be executed in the next days.
+		This week a group of slaves took control of one of the manufacturing plants and barricaded themselves inside. It took several days of negotiations and skirmishes to finally end this little insurrection. Many of the slaves involved will be executed in the next few days.
 	<<elseif _rand == 1>>
 		This week a number of shops were burned to the ground by rioting slaves and sympathetic citizens. It took considerable effort for the security forces to take control of the situation. Harsh punishment is required and scheduled for the instigators.
 	<<elseif _rand == 2>>
diff --git a/src/SpecialForce/TrickShotNight.tw b/src/SpecialForce/TrickShotNight.tw
index 2ae8b359d843a36bf1e891cc9757e96b2bbefed1..44d6c804acab8764c49fadf1ccdd65eab3009e1d 100644
--- a/src/SpecialForce/TrickShotNight.tw
+++ b/src/SpecialForce/TrickShotNight.tw
@@ -29,73 +29,74 @@ Despite your direct elevator, interaction with the majority of your security for
 	<<link "Play it safe">>
 		<<replace "#bountyresult">>
 			<<if random(1,100) > 50>>
-			Despite your attempts to mitigate risk and play the safest shots possible, it seems lady luck has conspired against you this evening. However, even when your last bullet is shot, your security force pitch you a few bullets to keep you in the game for the rest of the night. You may have lost most of your ¤, but it seems you've @@.green;made some friends.@@
-			<<set $rep += 1000, $cash -= 250000>>
+				Despite your attempts to mitigate risk and play the safest shots possible, it seems lady luck has conspired against you this evening. However, even when your last bullet is shot, your security force pitch you a few bullets to keep you in the game for the rest of the night. You may have lost most of your ¤, but it seems you've @@.green;made some friends.@@
+				<<set $rep += 1000, $cash -= 250000>>
 			<<else>>
-			While a careful eye for accuracy has buoyed you through the evening, ultimately lady luck is the decider in handing you the win in a number of close shots. Unfortunately your meticulous play limited your chance at a larger payout, and you only come away from the evening with @@.yellowgreen;<<print cashFormat(100000)>>@@ more than you arrived with and @@.green;the respect of your security force.@@
-			<<set $rep += 1000, $cash += 100000>>
+				While a careful eye for accuracy has buoyed you through the evening, ultimately lady luck is the decider in handing you the win in a number of close shots. Unfortunately your meticulous play limited your chance at a larger payout, and you only come away from the evening with @@.yellowgreen;<<print cashFormat(100000)>>@@ more than you arrived with and @@.green;the respect of your security force.@@
+				<<set $rep += 1000, $cash += 100000>>
 			<</if>>
 		<</replace>>
 	<</link>>
 
 	<br> <<link "Up the ante">>
 		<<replace "#bountyresult">>
-			Some aggressive play and an eye for riling up your fellow players has resulted in an immense payout, and all but one of your adversaries have folded as the situation has escalated. The only player still in contention is a wily old mercenary, the veteran of her fair share of battles on the battlefield and at the firing range. She's short on bullets, however, and she'll have to buy in with something else as collateral.
+			<<set $activeSlaveOneTimeMinAge = 25>>
+			<<set $activeSlaveOneTimeMaxAge = 35>>
+			<<set $one_time_age_overrides_pedo_mode = 1>>
+			<<if $arcologies[0].FSSupremacistLawME == 1>>
+				<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
+			<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
+				<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
+				<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+				<<set $fixedRace = _races.random()>>
+			<</if>>
+			<<include "Generate XX Slave">>
+			<<set $activeSlave.origin = "She put herself up as collateral at a trick shot game, and lost.">>
+			<<set $activeSlave.career = "a soldier">>
+			<<set $activeSlave.indentureRestrictions = 2>>
+			<<set $activeSlave.indenture = 52>>
+			<<if $activeSlave.eyes == -2>>
+				<<set $activeSlave.eyes = -1>>
+			<</if>>
+			<<set $activeSlave.devotion = random(45,60)>>
+			<<set $activeSlave.trust = random(55,65)>>
+			<<set $activeSlave.health = random(60,80)>>
+			<<set $activeSlave.muscles = 60>>
+			<<if $activeSlave.weight > 130>>
+				<<set $activeSlave.weight -= 100>>
+				<<set $activeSlave.waist = random(-10,50)>>
+			<</if>>
+			<<set $activeSlave.anus = 0>>
+			<<set $activeSlave.analSkill = 0>>
+			<<set $activeSlave.whoreSkill = 0>>
+			<<set $activeSlave.combatSkill = 1>>
+			<<set $activeSlave.behavioralFlaw = "arrogant">>
+			<<set $activeSlave.hStyle = "buzzcut">>
+			<<setLocalPronouns $activeSlave>>
+			Some aggressive play and an eye for riling up your fellow players has resulted in an immense payout, and all but one of your adversaries have folded as the situation has escalated. The only player still in contention is a wily old mercenary, the veteran of $his fair share of battles on the battlefield and at the firing range. $He's short on bullets, however, and $he'll have to buy in with something else as collateral.
 			<br><br> <span id="aliveresult">
 
 				<<link "A year of servitude">>
 					<<replace "#aliveresult">>
 						<<if random(1,100) > 50>>
-						For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up her spoils, the other security force clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@
-						<<set $rep += 1000, $cash -= 500000>>
+							For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up $his spoils, the other security force clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@
+							<<set $rep += 1000, $cash -= 500000>>
 						<<else>>
-						For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. A silence falls over the room as the result is declared, but after some time your opponent breaks the hush by joking that life as your slave is probably easier than fighting for $arcologies[0].name. After some awkward laughter the night continues, and at the end your former mercenary joins you on your trip back to the penthouse to submit to processing and to begin her new life as your sexual servant. She's not young, but she's tough and not distrusting of you due to her service in $SF.Lower.
-						<br>
-						<<set $activeSlaveOneTimeMinAge = 25>>
-						<<set $activeSlaveOneTimeMaxAge = 35>>
-						<<set $one_time_age_overrides_pedo_mode = 1>>
-						<<if $arcologies[0].FSSupremacistLawME == 1>>
-							<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
-						<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-							<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-							<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
-							<<set $fixedRace = _races.random()>>
-						<</if>>
-						<<include "Generate XX Slave">>
-						<<set $activeSlave.origin = "$He put herself up as collateral at a trick shot game, and lost.">>
-						<<set $activeSlave.career = "a soldier">>
-						<<set $activeSlave.indentureRestrictions = 2>>
-						<<set $activeSlave.indenture = 52>>
-						<<if $activeSlave.eyes == -2>>
-							<<set $activeSlave.eyes = -1>>
-						<</if>>
-						<<set $activeSlave.devotion = random(45,60)>>
-						<<set $activeSlave.trust = random(55,65)>>
-						<<set $activeSlave.health = random(60,80)>>
-						<<set $activeSlave.muscles = 60>>
-						<<if $activeSlave.weight > 130>>
-							<<set $activeSlave.weight -= 100>>
-							<<set $activeSlave.waist = random(-10,50)>>
-						<</if>>
-						<<set $activeSlave.anus = 0>>
-						<<set $activeSlave.analSkill = 0>>
-						<<set $activeSlave.whoreSkill = 0>>
-						<<set $activeSlave.combatSkill = 1>>
-						<<set $activeSlave.behavioralFlaw = "arrogant">>
-						<<set $activeSlave.hStyle = "buzzcut">>
-						<<include "New Slave Intro">>
+							For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. A silence falls over the room as the result is declared, but after some time your opponent breaks the hush by joking that life as your slave is probably easier than fighting for $arcologies[0].name. After some awkward laughter the night continues, and at the end your former mercenary joins you on your trip back to the penthouse to submit to processing and to begin $his new life as your sexual servant. $He's not young, but $he's tough and not distrusting of you due to $his service in $SF.Lower.
+							<br>
+							<<include "New Slave Intro">>
 						<</if>>
 					<</replace>>
 				<</link>>
 
-				<br> <<link "Dock her wages">>
+				<br> <<link "Dock $his wages">>
 					<<replace "#aliveresult">>
 						<<if random(1,100) > 50>>
-						For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up her spoils, the other security force members clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@
-						<<set $rep += 1000, $cash -= 500000>>
+							For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up $his spoils, the other security force members clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@
+							<<set $rep += 1000, $cash -= 500000>>
 						<<else>>
-						For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. Your opponent accepts her defeat with grace and jokes to her comrades that she'll be fighting in her underwear for the next few months, and their uproar of laughter fills the room. Though you take the lion's share of the ¤, your security force also @@.green;had a good time fraternizing with you.@@
-						<<set $rep += 2000, $cash += 500000>>
+							For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. Your opponent accepts $his defeat with grace and jokes to $his comrades that $he'll be fighting in $his underwear for the next few months, and their uproar of laughter fills the room. Though you take the lion's share of the ¤, your security force also @@.green;had a good time fraternizing with you.@@
+							<<set $rep += 2000, $cash += 500000>>
 						<</if>>
 					<</replace>>
 				<</link>>
diff --git a/src/art/assistantArt.tw b/src/art/assistantArt.tw
index 516de1971da39c8e56f476315e23ec13f7ea0327..511da7a1d5aa2fe1ee03d4b0018a416d90118220 100644
--- a/src/art/assistantArt.tw
+++ b/src/art/assistantArt.tw
@@ -119,12 +119,14 @@ window.assistantArt = function assistantArt(sizePlacement) {
 		}
         }
 
-		if (sizePlacement === 3) {
-			fileName = `<img src=${fileName} style='float:right; border:3px hidden'/>`;
-		} else if (V.imageChoice === 1) {
-			fileName = `<img src=${fileName} style='float:right; border:3px hidden' width='282' height='602'/>`;
-		} else /* V.imageChoice === 0 */ {
-			fileName = `<img src=${fileName} style='float:right; border:3px hidden' width='300' height='300'/>`;
+		if (filename !== "") {
+			if (sizePlacement === 3) {
+				fileName = `<img src=${fileName} style='float:right; border:3px hidden'/>`;
+			} else if (V.imageChoice === 1) {
+				fileName = `<img src=${fileName} style='float:right; border:3px hidden' width='282' height='602'/>`;
+			} else /* V.imageChoice === 0 */ {
+				fileName = `<img src=${fileName} style='float:right; border:3px hidden' width='300' height='300'/>`;
+			}
 		}
 	}
 	return fileName;
diff --git a/src/cheats/mod_EditFSCheat.tw b/src/cheats/mod_EditFSCheat.tw
index d37eb895bf33bf6baab40bf0692e6b4965c39355..05dbbcc75dbead54d6695ab295a71ffaf0cef1c4 100644
--- a/src/cheats/mod_EditFSCheat.tw
+++ b/src/cheats/mod_EditFSCheat.tw
@@ -35,7 +35,7 @@
 	<<radiobutton "$arcologies[0].FSSupremacistRace" "semitic">> Semitic |
 	<<radiobutton "$arcologies[0].FSSupremacistRace" "mixed race">> Mixed Race
 
-	<br>[[Apply and reset Racial Subjugationism|MOD_Edit FS Cheat][$arcologies[0].FSSubjugationist = "unset", $arcologies[0].FSSubjugationistRace = 0, $arcologies[0].FSSubjugationistDecoration = 20, $arcologies[0].FSSubjugationistLawME = 0]]
+	<br>[[Apply and reset Racial Subjugationism|MOD_Edit FS Cheat][removeFS("FSSubjugationist")]]
 
 <br><br>
 
@@ -71,7 +71,7 @@
 	<<radiobutton "$arcologies[0].FSSubjugationistRace" "semitic">> Semitic |
 	<<radiobutton "$arcologies[0].FSSubjugationistRace" "mixed race">> Mixed Race
 
-	<br>[[Apply and reset Racial Supremacy|MOD_Edit FS Cheat][$arcologies[0].FSSupremacist = "unset",$arcologies[0].FSSupremacistRace = 0, $arcologies[0].FSSupremacistDecoration = 20, $arcologies[0].FSSupremacistLawME = 0]]
+	<br>[[Apply and reset Racial Supremacy|MOD_Edit FS Cheat][removeFS("FSSupremacist")]]
 
 <br><br>
 
@@ -101,7 +101,7 @@
 	| <<radiobutton "$arcologies[0].FSGenderRadicalistLawFuta" 3>> 3 (Big butts and skilled buttholes pref.)
 	| <<radiobutton "$arcologies[0].FSGenderRadicalistLawFuta" 4>> 4 (Trap pref.)
 
-	<br>[[Apply and reset Gender Traditionalism|MOD_Edit FS Cheat][$arcologies[0].FSGenderFundamentalist = "unset",$arcologies[0].FSGenderFundamentalistDecoration = 20,$arcologies[0].FSGenderFundamentalistLaw = 0]]
+	<br>[[Apply and reset Gender Traditionalism|MOD_Edit FS Cheat][removeFS("FSGenderFundamentalist")]]
 
 <br><br>
 
@@ -124,7 +124,7 @@
 	<<radiobutton "$arcologies[0].FSGenderFundamentalistSMR" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSGenderFundamentalistSMR" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Gender Radicalism|MOD_Edit FS Cheat][$arcologies[0].FSGenderRadicalist = "unset",$arcologies[0].FSGenderRadicalistDecoration = 20,$arcologies[0].FSGenderRadicalistLawBeauty = 0, $arcologies[0].FSGenderRadicalistLawFuta = 0]]
+	<br>[[Apply and reset Gender Radicalism|MOD_Edit FS Cheat][removeFS("FSGenderRadicalist")]]
 
 <<if $seePreg != 0>>
 <br><br>
@@ -152,7 +152,7 @@
 	<<radiobutton "$arcologies[0].FSRepopulationFocusLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSRepopulationFocusLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Eugenics|MOD_Edit FS Cheat][$arcologies[0].FSRestart = "unset",$arcologies[0].FSRestartDecoration = 20,$arcologies[0].FSRestartLaw = 0, $arcologies[0].FSRestartSMR = 0]]
+	<br>[[Apply and reset Eugenics|MOD_Edit FS Cheat][removeFS("FSRestart")]]
 
 <br><br>
 
@@ -175,7 +175,7 @@
 	<<radiobutton "$arcologies[0].FSRestartSMR" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSRestartSMR" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Repopulation Efforts|MOD_Edit FS Cheat][$arcologies[0].FSRepopulationFocus = "unset",$arcologies[0].FSRepopulationFocusDecoration = 20,$arcologies[0].FSRepopulationFocusLaw = 0, $arcologies[0].FSRepopulationFocusSMR = 0]]
+	<br>[[Apply and reset Repopulation Efforts|MOD_Edit FS Cheat][removeFS("FSRepopulationFocus")]]
 <</if>>
 	
 <br><br>
@@ -199,7 +199,7 @@
 	<<radiobutton "$arcologies[0].FSPaternalistLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSPaternalistLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Degradationism|MOD_Edit FS Cheat][$arcologies[0].FSDegradationist = "unset",$arcologies[0].FSDegradationistDecoration = 20,$arcologies[0].FSDegradationistLaw = 0]]
+	<br>[[Apply and reset Degradationism|MOD_Edit FS Cheat][removeFS("FSDegradationist")]]
 
 <br><br>
 
@@ -222,7 +222,7 @@
 	<<radiobutton "$arcologies[0].FSDegradationistLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSDegradationistLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Paternalism|MOD_Edit FS Cheat][$arcologies[0].FSPaternalist = "unset",$arcologies[0].FSPaternalistDecoration = 20,$arcologies[0].FSPaternalistLaw = 0]]
+	<br>[[Apply and reset Paternalism|MOD_Edit FS Cheat][removeFS("FSPaternalist")]]
 
 <br><br>
 
@@ -245,7 +245,7 @@
 	<<radiobutton "$arcologies[0].FSBodyPuristLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSBodyPuristLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Body Transformationism|MOD_Edit FS Cheat][$arcologies[0].FSTransformationFetishist = "unset",$arcologies[0].FSTransformationFetishistDecoration = 20,$arcologies[0].FSTransformationFetishistLaw = 0]]
+	<br>[[Apply and reset Body Transformationism|MOD_Edit FS Cheat][removeFS("FSTransformationFetishist")]]
 
 <br><br>
 
@@ -268,7 +268,7 @@
 	<<radiobutton "$arcologies[0].FSTransformationFetishistLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSTransformationFetishistLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Body Purism|MOD_Edit FS Cheat][$arcologies[0].FSBodyPurist = "unset",$arcologies[0].FSBodyPuristDecoration = 20,$arcologies[0].FSBodyPuristLaw = 0]]
+	<br>[[Apply and reset Body Purism|MOD_Edit FS Cheat][removeFS("FSBodyPurist")]]
 
 <br><br>
 
@@ -292,7 +292,7 @@
 	<<radiobutton "$arcologies[0].FSYouthPreferentialistLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSYouthPreferentialistLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Maturity Preferentialism|MOD_Edit FS Cheat][$arcologies[0].FSMaturityPreferentialist = "unset",$arcologies[0].FSMaturityPreferentialistDecoration = 20,$arcologies[0].FSMaturityPreferentialistLaw = 0]]
+	<br>[[Apply and reset Maturity Preferentialism|MOD_Edit FS Cheat][removeFS("FSMaturityPreferentialist")]]
 
 <br><br>
 
@@ -316,7 +316,7 @@
 	<<radiobutton "$arcologies[0].FSMaturityPreferentialistLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSMaturityPreferentialistLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Youth Preferentialism|MOD_Edit FS Cheat][$arcologies[0].FSYouthPreferentialist = "unset",$arcologies[0].FSYouthPreferentialistDecoration = 20,$arcologies[0].FSYouthPreferentialistLaw = 0]]
+	<br>[[Apply and reset Youth Preferentialism|MOD_Edit FS Cheat][removeFS("FSYouthPreferentialist")]]
 
 <br><br>
 
@@ -339,7 +339,7 @@
 	<<radiobutton "$arcologies[0].FSSlimnessEnthusiastSMR" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSSlimnessEnthusiastSMR" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Asset Expansionism|MOD_Edit FS Cheat][$arcologies[0].FSAssetExpansionist = "unset",$arcologies[0].FSAssetExpansionistDecoration = 20,$arcologies[0].FSAssetExpansionistLaw = 0]]
+	<br>[[Apply and reset Asset Expansionism|MOD_Edit FS Cheat][removeFS("FSAssetExpansionist")]]
 
 <br><br>
 
@@ -363,7 +363,7 @@
 	<<radiobutton "$arcologies[0].FSAssetExpansionistSMR" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSAssetExpansionistSMR" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Slimness Enthusiasm|MOD_Edit FS Cheat][$arcologies[0].FSSlimnessEnthusiast = "unset",$arcologies[0].FSSlimnessEnthusiastDecoration = 20,$arcologies[0].FSSlimnessEnthusiastLaw = 0]]
+	<br>[[Apply and reset Slimness Enthusiasm|MOD_Edit FS Cheat][removeFS("FSSlimnessEnthusiast")]]
 
 <br><br>
 
@@ -409,7 +409,7 @@
 	<<radiobutton "$arcologies[0].FSPhysicalIdealistSMR" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSPhysicalIdealistSMR" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Hedonistic Decadence|MOD_Edit FS Cheat][$arcologies[0].FSHedonisticDecadence = "unset",$arcologies[0].FSHedonisticDecadenceDecoration = 20,$arcologies[0].FSHedonisticDecadenceLaw = 0,$arcologies[0].FSHedonisticDecadenceLaw2 = 0, $arcologies[0].FSHedonisticDecadenceSMR = 0, $arcologies[0].FSPhysicalIdealistStrongFat = 0]]
+	<br>[[Apply and reset Hedonistic Decadence|MOD_Edit FS Cheat][removeFS("FSHedonisticDecadence")]]
 
 <br><br>
 
@@ -440,7 +440,7 @@
 	<<radiobutton "$arcologies[0].FSHedonisticDecadenceLaw2" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSHedonisticDecadenceLaw2" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset Physical Idealist|MOD_Edit FS Cheat][$arcologies[0].FSPhysicalIdealist = "unset",$arcologies[0].FSPhysicalIdealistDecoration = 20,$arcologies[0].FSPhysicalIdealistLaw = 0, $arcologies[0].FSPhysicalIdealistSMR = 0, $arcologies[0].FSHedonisticDecadenceStrongFat = 0]]
+	<br>[[Apply and reset Physical Idealist|MOD_Edit FS Cheat][removeFS("FSPhysicalIdealist")]]
 
 <br><br>
 
@@ -486,30 +486,30 @@
 	<<radiobutton "$arcologies[0].FSRomanRevivalistLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSRomanRevivalistLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][$arcologies[0].FSAztecRevivalist = "unset",$arcologies[0].FSAztecRevivalistDecoration = 20,$arcologies[0].FSAztecRevivalistLaw = 0,$arcologies[0].FSEgyptianRevivalist = "unset",$arcologies[0].FSEgyptianRevivalistDecoration = 20,$arcologies[0].FSEgyptianRevivalistLaw = 0,$arcologies[0].FSEdoRevivalistDecoration = 20,$arcologies[0].FSEdoRevivalistLaw = 0,$arcologies[0].FSArabianRevivalist = "unset",$arcologies[0].FSArabianRevivalistDecoration = 20,$arcologies[0].FSArabianRevivalistLaw = 0,$arcologies[0].FSChineseRevivalist = "unset",$arcologies[0].FSChineseRevivalistDecoration = 20,$arcologies[0].FSChineseRevivalistLaw = 0]]
+	<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][removeFS("FSAztecRevivalist"), removeFS("FSEgyptianRevivalist"), removeFS("FSEdoRevivalist"), removeFS("FSArabianRevivalist"), removeFS("FSChineseRevivalist")]]
 
 <br><br>
 
-		<<if $arcologies[0].FSAztecRevivalist != "unset">>
-			<br>You are ''pursuing'' Aztec Revivalism.
-		<<else>>
-			<br>You are ''not pursuing'' Aztec Revivalism.
-		<</if>>
-	
-		<br>Aztec Revivalism (0-100 or unset): <<textbox "$arcologies[0].FSAztecRevivalist" $arcologies[0].FSAztecRevivalist>>
-		<br>Decoration: $arcologies[0].FSAztecRevivalistDecoration
-	
-		<br><<radiobutton "$arcologies[0].FSAztecRevivalistDecoration" 20>> 20 (Minimum)
-		<br><<radiobutton "$arcologies[0].FSAztecRevivalistDecoration" 40>> 40 (Media support.)
-		<br><<radiobutton "$arcologies[0].FSAztecRevivalistDecoration" 60>> 60 (Decorated public spaces.)
-		<br><<radiobutton "$arcologies[0].FSAztecRevivalistDecoration" 80>> 80 (Slaves stationed in public spaces.)
-		<br><<radiobutton "$arcologies[0].FSAztecRevivalistDecoration" 100>> 100 (Remodeled exterior; Fully customized.)
+	<<if $arcologies[0].FSAztecRevivalist != "unset">>
+		<br>You are ''pursuing'' Aztec Revivalism.
+	<<else>>
+		<br>You are ''not pursuing'' Aztec Revivalism.
+	<</if>>
+
+	<br>Aztec Revivalism (0-100 or unset): <<textbox "$arcologies[0].FSAztecRevivalist" $arcologies[0].FSAztecRevivalist>>
+	<br>Decoration: $arcologies[0].FSAztecRevivalistDecoration
+
+	<br><<radiobutton "$arcologies[0].FSAztecRevivalistDecoration" 20>> 20 (Minimum)
+	<br><<radiobutton "$arcologies[0].FSAztecRevivalistDecoration" 40>> 40 (Media support.)
+	<br><<radiobutton "$arcologies[0].FSAztecRevivalistDecoration" 60>> 60 (Decorated public spaces.)
+	<br><<radiobutton "$arcologies[0].FSAztecRevivalistDecoration" 80>> 80 (Slaves stationed in public spaces.)
+	<br><<radiobutton "$arcologies[0].FSAztecRevivalistDecoration" 100>> 100 (Remodeled exterior; Fully customized.)
 
-		<br>Law: $arcologies[0].FSAztecRevivalistLaw |
-		<<radiobutton "$arcologies[0].FSAztecRevivalistLaw" 0>> 0 (Not passed.)
-		| <<radiobutton "$arcologies[0].FSAztecRevivalistLaw" 1>> 1 (Passed.)
+	<br>Law: $arcologies[0].FSAztecRevivalistLaw |
+	<<radiobutton "$arcologies[0].FSAztecRevivalistLaw" 0>> 0 (Not passed.)
+	| <<radiobutton "$arcologies[0].FSAztecRevivalistLaw" 1>> 1 (Passed.)
 
-		<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][$arcologies[0].FSRomanRevivalist = "unset",$arcologies[0].FSRomanRevivalistDecoration = 20,$arcologies[0].FSRomanRevivalistLaw = 0,$arcologies[0].FSEgyptianRevivalist = "unset",$arcologies[0].FSEgyptianRevivalistDecoration = 20,$arcologies[0].FSEgyptianRevivalistLaw = 0,$arcologies[0].FSEdoRevivalistDecoration = 20,$arcologies[0].FSEdoRevivalistLaw = 0,$arcologies[0].FSArabianRevivalist = "unset",$arcologies[0].FSArabianRevivalistDecoration = 20,$arcologies[0].FSArabianRevivalistLaw = 0,$arcologies[0].FSChineseRevivalist = "unset",$arcologies[0].FSChineseRevivalistDecoration = 20,$arcologies[0].FSChineseRevivalistLaw = 0]]
+	<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][removeFS("FSRomanRevivalist"), removeFS("FSEgyptianRevivalist"), removeFS("FSEdoRevivalist"), removeFS("FSArabianRevivalist"), removeFS("FSChineseRevivalist")]]
 
 <br><br>
 
@@ -532,7 +532,7 @@
 	<<radiobutton "$arcologies[0].FSEgyptianRevivalistLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSEgyptianRevivalistLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][$arcologies[0].FSRomanRevivalist = "unset",$arcologies[0].FSRomanRevivalistDecoration = 20,$arcologies[0].FSRomanRevivalistLaw = 0,$arcologies[0].FSAztecRevivalist = "unset",$arcologies[0].FSAztecRevivalistDecoration = 20,$arcologies[0].FSAztecRevivalistLaw = 0,$arcologies[0].FSEdoRevivalistDecoration = 20,$arcologies[0].FSEdoRevivalistLaw = 0,$arcologies[0].FSArabianRevivalist = "unset",$arcologies[0].FSArabianRevivalistDecoration = 20,$arcologies[0].FSArabianRevivalistLaw = 0,$arcologies[0].FSChineseRevivalist = "unset",$arcologies[0].FSChineseRevivalistDecoration = 20,$arcologies[0].FSChineseRevivalistLaw = 0,$arcologies[0].FSEgyptianRevivalistIncestPolicy = 0]]
+	<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][removeFS("FSRomanRevivalist"), removeFS("FSAztecRevivalist"), removeFS("FSEdoRevivalist"), removeFS("FSArabianRevivalist"), removeFS("FSChineseRevivalist")]]
 
 <br><br>
 
@@ -555,7 +555,7 @@
 	<<radiobutton "$arcologies[0].FSEdoRevivalistLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSEdoRevivalistLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][$arcologies[0].FSRomanRevivalist = "unset",$arcologies[0].FSRomanRevivalistDecoration = 20,$arcologies[0].FSRomanRevivalistLaw = 0,$arcologies[0].FSAztecRevivalist = "unset",$arcologies[0].FSAztecRevivalistDecoration = 20,$arcologies[0].FSAztecRevivalistLaw = 0,$arcologies[0].FSEgyptianRevivalistDecoration = 20,$arcologies[0].FSEgyptianRevivalistLaw = 0,$arcologies[0].FSArabianRevivalist = "unset",$arcologies[0].FSArabianRevivalistDecoration = 20,$arcologies[0].FSArabianRevivalistLaw = 0,$arcologies[0].FSChineseRevivalist = "unset",$arcologies[0].FSChineseRevivalistDecoration = 20,$arcologies[0].FSChineseRevivalistLaw = 0]]
+	<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][removeFS("FSRomanRevivalist"), removeFS("FSAztecRevivalist"), removeFS("FSEgyptianRevivalist"), removeFS("FSArabianRevivalist"), removeFS("FSChineseRevivalist")]]
 
 <br><br>
 
@@ -578,7 +578,7 @@
 	<<radiobutton "$arcologies[0].FSArabianRevivalistLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSArabianRevivalistLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][$arcologies[0].FSRomanRevivalist = "unset",$arcologies[0].FSRomanRevivalistDecoration = 20,$arcologies[0].FSRomanRevivalistLaw = 0,$arcologies[0].FSAztecRevivalist = "unset",$arcologies[0].FSAztecRevivalistDecoration = 20,$arcologies[0].FSAztecRevivalistLaw = 0,$arcologies[0].FSEgyptianRevivalistDecoration = 20,$arcologies[0].FSEgyptianRevivalistLaw = 0,$arcologies[0].FSEdoRevivalist = "unset",$arcologies[0].FSEdoRevivalistDecoration = 20,$arcologies[0].FSEdoRevivalistLaw = 0,$arcologies[0].FSChineseRevivalist = "unset",$arcologies[0].FSChineseRevivalistDecoration = 20,$arcologies[0].FSChineseRevivalistLaw = 0]]
+	<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][removeFS("FSRomanRevivalist"), removeFS("FSAztecRevivalist"), removeFS("FSEgyptianRevivalist"), removeFS("FSEdoRevivalist"), removeFS("FSChineseRevivalist")]]
 
 <br><br>
 
@@ -601,4 +601,4 @@
 	<<radiobutton "$arcologies[0].FSChineseRevivalistLaw" 0>> 0 (Not passed.)
 	| <<radiobutton "$arcologies[0].FSChineseRevivalistLaw" 1>> 1 (Passed.)
 
-	<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][$arcologies[0].FSRomanRevivalist = "unset",$arcologies[0].FSRomanRevivalistDecoration = 20,$arcologies[0].FSRomanRevivalistLaw = 0,$arcologies[0].FSAztecRevivalist = "unset",$arcologies[0].FSAztecRevivalistDecoration = 20,$arcologies[0].FSAztecRevivalistLaw = 0,$arcologies[0].FSEgyptianRevivalistDecoration = 20,$arcologies[0].FSEgyptianRevivalistLaw = 0,$arcologies[0].FSEdoRevivalist = "unset",$arcologies[0].FSEdoRevivalistDecoration = 20,$arcologies[0].FSEdoRevivalistLaw = 0,$arcologies[0].FSArabianRevivalist = "unset",$arcologies[0].FSArabianRevivalistDecoration = 20,$arcologies[0].FSArabianRevivalistLaw = 0]]
+	<br>[[Apply and reset other Revivalisms|MOD_Edit FS Cheat][removeFS("FSRomanRevivalist"), removeFS("FSAztecRevivalist"), removeFS("FSEgyptianRevivalist"), removeFS("FSEdoRevivalist"), removeFS("FSArabianRevivalist")]]
diff --git a/src/facilities/brothel/brothelAssignmentScene.tw b/src/facilities/brothel/brothelAssignmentScene.tw
index 9981f414e4d6029f9635f2d45d9c64ecc720db39..f4bbf7b45ac572b0862ea1eb1f797645ecee4ff7 100644
--- a/src/facilities/brothel/brothelAssignmentScene.tw
+++ b/src/facilities/brothel/brothelAssignmentScene.tw
@@ -23,170 +23,344 @@ You tell $him $he's to report to <<if $Madam != 0>>$Madam.slaveName immediately,
 <br><br>
 <<if $activeSlave.devotion > 50>>
 
-<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish != "none")>>
-	$He looks excited. "<<Master>>, I hoped you would <<s>>end me down there <<s>>ometime!
-	<<switch $activeSlave.fetish>>
-	<<case "submissive">>
-		I mean, I'll have to do whatever the cu<<s>>tomer<<s>> pay for, right?" $His eyes go a little unfocused. "And, they'll hold me down..." $He trails off.
-	<<case "masochist">>
-		I mean, it'<<s>> hard being a brothel whore, right? And when I get tired or <<s>>ore, I'll <<s>>till be <<s>>old. Even when it hurt<<s>> me to fuck any more." $His eyes glow with an unhealthy light.
-	<<case "cumslut">>
-		I mean," $he licks $his lips unconsciously,
-		<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-			"I hear there are <<s>>ome ni<<c>>e ladie<<s>> that go there for lunchtime cunnilingu<<s>>."
+	<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish != "none")>>
+		$He looks excited.
+		<<if canTalk($activeSlave)>>
+			"<<Master>>, I hoped you would <<s>>end me down there <<s>>ometime!
+			<<switch $activeSlave.fetish>>
+			<<case "submissive">>
+				I mean, I'll have to do whatever the cu<<s>>tomer<<s>> pay for, right?" $His eyes go a little unfocused. "And, they'll hold me down..." $He trails off.
+			<<case "masochist">>
+				I mean, it'<<s>> hard being a brothel whore, right? And when I get tired or <<s>>ore, I'll <<s>>till be <<s>>old. Even when it hurt<<s>> me to fuck any more." $His eyes glow with an unhealthy light.
+			<<case "cumslut">>
+				I mean," $he licks $his lips unconsciously,
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					"I hear there are <<s>>ome ni<<c>>e ladie<<s>> that go there for lunchtime cunnilingu<<s>>."
+				<<else>>
+					"the blowjob<<s>>. Ju<<s>>t, the blowjob<<s>>. That'<<s>> all."
+				<</if>>
+			<<case "humiliation">>
+				There'<<s>> a window that fa<<c>>e<<s>> the hallway there, right? <<if $Madam != 0>>Do you think $Madam.slaveName would let me<<else>>Could I<</if>> get fucked there? Where everyone could <<s>>ee me being fucked for money?"
+			<<case "buttslut">>
+				I mean," and $he shifts $his weight, $his mind obviously on $his backdoor,
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					"there have to be ladie<<s>> who want to buttfuck a whore, right? At lea<<s>>t, I really hope there are."
+				<<else>>
+					"the other girl<<s>> tell me that whore<<s>> there get fucked up the a<<ss>> all day and all night. <<S>>ounds like fun to me."
+				<</if>>
+			<<case "boobs">>
+				I mean," and $he sticks out $his chest a little,
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					"I hear from the other girl<<s>> there'<<s>> thi<<s>> ni<<c>>e lady who goe<<s>> there every morning and pay<<s>> to have a whore <<s>>uck her nipple<<s>> for, like, an hour. I," $he licks $his lips, "could do that."
+				<<else>>
+					"the other girl<<s>> tell me that whore<<s>> there get tittyfucked all the time. <<s>>ound<<s>> like fun to me."
+				<</if>>
+			<<case "pregnancy">>
+				I mean," $he says meditatively,
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					"I hear from the other girl<<s>> there'<<s>> thi<<s>> pregnant lady who goe<<s>> there every night and pay<<s>> to have a whore cuddle her. Ju<<s>>t cuddle, all night. That would be kind of hard, ju<<s>>t cuddling, but I could do it."
+				<<elseif $activeSlave.vagina == -1>>
+					"<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it take<<s>> to get a butthole pregnant? I'm gonna try, anyway."
+				<<elseif isFertile($activeSlave)>>
+					"<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it would take to get my poor womb pregnant?"
+				<<elseif $activeSlave.pregKnown == 1>>
+					"I'm going to be a pregnant whore. That'<<s>> pretty fucking <<s>>e<<x>>y."
+				<<elseif $activeSlave.preg > 0>>
+					"<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it would take to get my poor womb pregnant?"
+				<<elseif $activeSlave.ovaries == 1 && $activeSlave.pubertyXX == 0>>
+					"I can't wait till I can get pregnant. That'd be pretty fucking <<s>>e<<x>>y."
+				<<else>>
+					"I hear from the other girl<<s>> there'<<s>> thi<<s>> pregnant lady who goe<<s>> there every night and pay<<s>> to have a whore cuddle her. Ju<<s>>t cuddle, all night. That would be kind of hard, ju<<s>>t cuddling, but I could do it."
+				<</if>>
+			<<case "dom">>
+				I heard from the other girl<<s>> that <<s>>ome <<c>>iti<<z>>en<<s>> bring their girl<<s>> there. Ju<<s>>t to make them take it from a whore."
+			<<case "sadist">>
+				I heard from the other girl<<s>> that <<s>>ome <<c>>iti<<z>>en<<s>> bring their girl<<s>> there. Becau<<s>>e nobody know<<s>> how to hurt a bitch like a whore doe<<s>>." $He shivers.
+			<</switch>>
 		<<else>>
-			"the blowjob<<s>>. Ju<<s>>t, the blowjob<<s>>. That'<<s>> all."
+			<<switch $activeSlave.fetish>>
+			<<case "submissive">>
+				$He gestures that $he'll be at the mercy of $his customers. $His eyes go a little unfocused as $he clearly begins to fantasize.
+			<<case "masochist">>
+				$He gestures that $he'll probably get roughed up by some of $his customers and that there will be no breaks for $his sore holes. $His eyes glow with an unhealthy light as $he clearly begins to fantasize.
+			<<case "cumslut">>
+				$He licks $his lips unconsciously and motions
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					tounging a clit.
+				<<else>>
+					sucking cock.
+				<</if>>
+			<<case "humiliation">>
+				$He gestures if $he could be fucked in public there.
+			<<case "buttslut">>
+				$He shifts $his weight, $his mind obviously on $his backdoor, and gestures
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					if any girls would want to buttfuck $him.
+				<<else>>
+					that $he knows whores take it up the ass there and can't wait to join them.
+				<</if>>
+			<<case "boobs">>
+				$He sticks out $his chest a little and gestures
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					that $he's heard a women comes by each day just to have her nipples sucked. $He licks $his lips, clearly savoring the thought.
+				<<else>>
+					that $he knows tittyfucking is popular there and can't wait to give $his pair up for sale.
+				<</if>>
+			<<case "pregnancy">>
+				$He gestures
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					that $he's heard that a pregnant women has been coming every night to pay for a whore to cuddle her. $He asks if $he could be that $girl.
+				<<elseif $activeSlave.vagina == -1>>
+					how much $he wishes $he could get pregnant from all the cum loads $he's going to get shot up $his rear.
+				<<elseif isFertile($activeSlave)>>
+					that $he knows all the sex is bareback. By the look in $his eyes, you can tell $he is wondering how long it will take for some guys seed to take root in $him.
+				<<elseif $activeSlave.pregKnown == 1>>
+					how sexy $he thinks pregnant whores are.
+				<<elseif $activeSlave.preg > 0>>
+					that $he knows all the sex is bareback. By the look in $his eyes, you can tell $he is wondering how long it will take for some guys seed to take root in $him.
+				<<elseif $activeSlave.ovaries == 1 && $activeSlave.pubertyXX == 0>>
+					how excited $he is for the day $he starts $his menstrual cycle. Will $he even see $his first period, or will every egg $he makes get fertilized?
+				<<else>>
+					that $he's heard a pregnant women has been coming every night to pay for a whore to cuddle her. $He hopes that one day $he'll be chosen.
+				<</if>>
+			<<case "dom">>
+				$He gestures that $he knows citizens sometimes bring their toys there just to let them get pushed around by a whore. $He'd like that to be true. A lot.
+			<<case "sadist">>
+				$He gestures that $he knows citizens sometimes bring their toys there for punishment. $He shivers with anticipation.
+			<</switch>>
 		<</if>>
-	<<case "humiliation">>
-		There'<<s>> a window that fa<<c>>e<<s>> the hallway there, right? <<if $Madam != 0>>Do you think $Madam.slaveName would let me<<else>>Could I<</if>> get fucked there? Where everyone could <<s>>ee me being fucked for money?"
-	<<case "buttslut">>
-		I mean," and $he shifts $his weight, $his mind obviously on $his backdoor,
-		<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-			"there have to be ladie<<s>> who want to buttfuck a whore, right? At lea<<s>>t, I really hope there are."
+	<<else>>
+		$He looks 
+		<<if canTalk($activeSlave)>>
+			determined. "<<Master>>, I will do my be<<s>>t to be a good whore, and get lot<<s>> of <<c>>iti<<z>>en<<s>> to pay good money for my body."
 		<<else>>
-			"the other girl<<s>> tell me that whore<<s>> there get fucked up the a<<ss>> all day and all night. <<S>>ounds like fun to me."
+			determined and gestures that $he'll do $his best to get lots of citizens to pay to use $him.
 		<</if>>
-	<<case "boobs">>
-		I mean," and $he sticks out $his chest a little,
-		<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-			"I hear from the other girl<<s>> there'<<s>> thi<<s>> ni<<c>>e lady who goe<<s>> there every morning and pay<<s>> to have a whore <<s>>uck her nipple<<s>> for, like, an hour. I," $he licks $his lips, "could do that."
-		<<else>>
-			"the other girl<<s>> tell me that whore<<s>> there get tittyfucked all the time. <<s>>ound<<s>> like fun to me."
-		<</if>>
-	<<case "pregnancy">>
-		I mean," $he says meditatively,
-		<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-			"I hear from the other girl<<s>> there'<<s>> thi<<s>> pregnant lady who goe<<s>> there every night and pay<<s>> to have a whore cuddle her. Ju<<s>>t cuddle, all night. That would be kind of hard, ju<<s>>t cuddling, but I could do it."
-		<<elseif $activeSlave.vagina == -1>>
-			"<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it take<<s>> to get a butthole pregnant? I'm gonna try, anyway."
-		<<elseif isFertile($activeSlave)>>
-			"<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it would take to get my poor womb pregnant?"
-		<<elseif $activeSlave.pregKnown == 1>>
-			"I'm going to be a pregnant whore. That'<<s>> pretty fucking <<s>>e<<x>>y."
-		<<elseif $activeSlave.preg > 0>>
-			"<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it would take to get my poor womb pregnant?"
-		<<elseif $activeSlave.ovaries == 1 && $activeSlave.pubertyXX == 0>>
-			"I can't wait till I can get pregnant. That'd be pretty fucking <<s>>e<<x>>y."
-		<<else>>
-			"I hear from the other girl<<s>> there'<<s>> thi<<s>> pregnant lady who goe<<s>> there every night and pay<<s>> to have a whore cuddle her. Ju<<s>>t cuddle, all night. That would be kind of hard, ju<<s>>t cuddling, but I could do it."
-		<</if>>
-	<<case "dom">>
-		I heard from the other girl<<s>> that <<s>>ome <<c>>iti<<z>>en<<s>> bring their girl<<s>> there. Ju<<s>>t to make them take it from a whore."
-	<<case "sadist">>
-		I heard from the other girl<<s>> that <<s>>ome <<c>>iti<<z>>en<<s>> bring their girl<<s>> there. Becau<<s>>e nobody know<<s>> how to hurt a bitch like a whore doe<<s>>." $He shivers.
-	<</switch>>
-<<else>>
-	$He looks determined. "<<Master>>, I will do my be<<s>>t to be a good whore, and get lot<<s>> of <<c>>iti<<z>>en<<s>> to pay good money for my body."
-<</if>>
+	<</if>>
 
 <<elseif ($activeSlave.devotion > 20) || (($activeSlave.devotion >= -20) && ($activeSlave.trust < -20) && ($activeSlave.trust >= -50))>>
-
-<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish != "none")>>
-	$He looks cautiously excited. "<<Master>>,
-	<<switch $activeSlave.fetish>>
-	<<case "submissive">>
-		I'll have to do whatever the cu<<s>>tomer<<s>> pay for, right?" $His eyes go a little unfocused. "And, they'll hold me down..." $He trails off.
-	<<case "masochist">>
-		it'<<s>> hard being a brothel whore, right? And when I get tired or <<s>>ore, I'll <<s>>till be <<s>>old. Even when it hurt<<s>> me to fuck any more." $His eyes glow with an unhealthy light.
-	<<case "cumslut">>
-		<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-			"I hear there are <<s>>ome ni<<c>>e ladie<<s>> that go there for lunchtime cunnilingu<<s>>."
+	<<if canTalk($activeSlave)>>
+		<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish != "none")>>
+			$He looks cautiously excited. "<<Master>>,
+			<<switch $activeSlave.fetish>>
+			<<case "submissive">>
+				I'll have to do whatever the cu<<s>>tomer<<s>> pay for, right?" $His eyes go a little unfocused. "And, they'll hold me down..." $He trails off.
+			<<case "masochist">>
+				it'<<s>> hard being a brothel whore, right? And when I get tired or <<s>>ore, I'll <<s>>till be <<s>>old. Even when it hurt<<s>> me to fuck any more." $His eyes glow with an unhealthy light.
+			<<case "cumslut">>
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					"I hear there are <<s>>ome ni<<c>>e ladie<<s>> that go there for lunchtime cunnilingu<<s>>."
+				<<else>>
+					"the blowjob<<s>>. Ju<<s>>t, the blowjob<<s>>. That'<<s>> all."
+				<</if>>
+			<<case "humiliation">>
+				there'<<s>> a window that fa<<c>>e<<s>> the hallway there, right? <<if $Madam != 0>>Do you think $Madam.slaveName would let me<<else>>Could I<</if>> get fucked there? Where everyone could <<s>>ee me being fucked for money?"
+			<<case "buttslut">>
+				
+				uh," and $he shifts $his weight, $his mind obviously on $his backdoor,
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					"there have to be ladie<<s>> who want to buttfuck a whore, right? At lea<<s>>t, I really hope there are."
+				<<else>>
+					"the other girl<<s>> tell me that whore<<s>> there get fucked up the a<<ss>> all day and all night. <<s>>ounds like fun to me."
+				<</if>>
+			<<case "boobs">>
+				$He sticks out $his chest a little and gestures
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					that $he's heard a women comes by each day just to have her nipples sucked. $He licks $his lips, clearly savoring the thought.
+				<<else>>
+					that $he knows tittyfucking is popular there and can't wait to give $his pair up for sale.
+				<</if>>
+			<<case "pregnancy">>
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					I hear from the other girl<<s>> there'<<s>> thi<<s>> pregnant lady who goe<<s>> there every night and pay<<s>> to have a whore cuddle her. Ju<<s>>t cuddle, all night. That would be kind of hard, ju<<s>>t cuddling, but I could do it."
+				<<elseif $activeSlave.vagina == -1>>
+					<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it take<<s>> to get a butthole pregnant? I'm gonna try, anyway."
+				<<elseif isFertile($activeSlave)>>
+					<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it would take to get my poor womb pregnant?"
+				<<elseif $activeSlave.pregKnown == 1>>
+					"I'm going to be a pregnant whore. That'<<s>> pretty fucking <<s>>e<<x>>y."
+				<<elseif $activeSlave.preg > 0>>
+					"<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it would take to get my poor womb pregnant?"
+				<<elseif $activeSlave.ovaries == 1 && $activeSlave.pubertyXX == 0>>
+					"I can't wait till I can get pregnant. That'd be pretty fucking <<s>>e<<x>>y."
+				<<else>>
+					"I hear from the other girl<<s>> there'<<s>> thi<<s>> pregnant lady who goe<<s>> there every night and pay<<s>> to have a whore cuddle her. Ju<<s>>t cuddle, all night. That would be kind of hard, ju<<s>>t cuddling, but I could do it."
+				<</if>>
+			<<case "dom">>
+				I heard from the other girl<<s>> that <<s>>ome <<c>>iti<<z>>en<<s>> bring their girl<<s>> there. Ju<<s>>t to make them take it from a whore."
+			<<case "sadist">>
+				I heard from the other girl<<s>> that <<s>>ome <<c>>iti<<z>>en<<s>> bring their girl<<s>> there. Becau<<s>>e nobody know<<s>> how to hurt a bitch like a whore doe<<s>>." $He shivers.
+			<</switch>>
+		<<elseif $activeSlave.sexualFlaw != "none">>
+			"Ye<<s>>, <<Master>>," $he says obediently. $He hesitates, looking concerned.
+			<<switch $activeSlave.sexualFlaw>>
+			<<case "hates oral">>
+				"I - I'm going to h-have to <<s>>uck a lot of dick there, aren't I." $He swallows nervously. $His lower lip quivers, and $he does $his best not to cry in front of you.
+			<<case "hates anal">>
+				"C-cu<<s>>tomer<<s>> are really going to ream me up the butt hole, aren't they." $He <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers, and $he does $his best not to cry in front of you.
+			<<case "hates penetration">>
+				"C-cu<<s>>tomer<<s>> are really going to fuck me <<s>>ore, aren't they." $He <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<elseif $activeSlave.vagina > 0>>unconsciously lets $his hands fall to $his crotch, but catches $himself and doesn't quite shield $his pussy.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers, and $he does $his best not to cry in front of you.
+			<<case "repressed">>
+				"Being a whore i<<s>> a <<s>>in," $he <<say>>s quietly, half to $himself. "I'm going t-to b-be <<s>>o dirty. I'm going to h-hell." $He starts to cry quietly. "<<S>>-<<s>>orry, <<Master>>. I'll do my be<<s>>t."
+			<<case "idealistic">>
+				"I'm going to be <<s>>old for <<s>>e<<x>>," $he <<say>>s quietly, half to $himself. "Men are going to pay, and then they're g-going to <<s>>tick their dick<<s>> in me, and then they're going to leave." $He starts to cry quietly. "<<S>>-<<s>>orry, <<Master>>. I'll do my be<<s>>t."
+			<<case "shamefast">>
+				"I'm going to be meat in a brothel," $he <<say>>s quietly, half to $himself. "I'm going to <<s>>tand there naked with the other girl<<s>>, and men will pick me and then u<<s>>e my body. Over and over." $He starts to cry quietly. "<<S>>-<<s>>orry, <<Master>>. I'll do my be<<s>>t."
+			<<case "apathetic">>
+				"I gue<<ss>> I'll lie there," $he sighs quietly, half to $himself. "A man will pay and then he'll come in to my room where I'm lying on the bed, and he'll <<s>>tick his cock in me and cum and leave. And then the next man will come in." $He starts to cry quietly. "<<S>>-<<s>>orry, <<Master>>. I'll do my be<<s>>t."
+			<<case "crude">>
+				"Okay," $he <<say>>s, thinking. "My poor cornhole i<<s>> going to be <<s>>uch a <<s>>eminal <<s>>ewer." $He looks doubtful. "<<Sh>>ould I not have <<s>>aid that, <<Master>>?"
+			<<case "judgemental">>
+				"Gro<<ss>>," $he <<say>>s curtly. "Well, no more hand<<s>>ome boy<<s>> for me, then. Fat pathetic guy<<s>> who patroni<<z>>e whore<<s>>, all the way down. Fuck."
+			<</switch>>
 		<<else>>
-			"the blowjob<<s>>. Ju<<s>>t, the blowjob<<s>>. That'<<s>> all."
+			$He tries to be brave. "<<Master>>, I will do my be<<s>>t to be a good whore."  Then, half to $himself, $he adds in a small voice, "I can do thi<<s>>."
 		<</if>>
-	<<case "humiliation">>
-		there'<<s>> a window that fa<<c>>e<<s>> the hallway there, right? <<if $Madam != 0>>Do you think $Madam.slaveName would let me<<else>>Could I<</if>> get fucked there? Where everyone could <<s>>ee me being fucked for money?"
-	<<case "buttslut">>
-		uh," and $he shifts $his weight, $his mind obviously on $his backdoor,
-		<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-			"there have to be ladie<<s>> who want to buttfuck a whore, right? At lea<<s>>t, I really hope there are."
+	<<else>>
+		<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish != "none")>>
+			$He looks cautiously excited.
+			<<switch $activeSlave.fetish>>
+			<<case "submissive">>
+				$His eyes go a little unfocused before $he snaps back to attention and gestures that $he'll have to do whatever they want. $His attention wavers once more.
+			<<case "masochist">>
+				$He gestures if brothel whores get breaks when they get sore. Before you can tell $him no, $his eyes glow with an unhealthy light and $he expresses that $he'd like it more if it hurt.
+			<<case "cumslut">>
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					$He gestures that $he heard a rumor that some ladies swing by during lunchtime for a quick eating out.
+				<<else>>
+					As drool starts to leak from $his mouth, it's pretty obvious $he can't wait to start sucking.
+				<</if>>
+			<<case "humiliation">>
+				$He asks if there is a window that $he could be stationed in for all to see.
+			<<case "buttslut">>
+				$He shifts $his weight, $his mind obviously on $his backdoor, and gestures
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					if any girls would want to buttfuck $him.
+				<<else>>
+					that $he knows whores take it up the ass there and can't wait to join them.
+				<</if>>
+			<<case "boobs">>
+				er," and $he sticks out $his chest a little,
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					"I hear from the other girl<<s>> there'<<s>> thi<<s>> ni<<c>>e lady who goe<<s>> there every morning and pay<<s>> to have a whore <<s>>uck her nipple<<s>> for, like, an hour. I," $he licks $his lips, "could do that."
+				<<else>>
+					"the other girl<<s>> tell me that whore<<s>> there get tittyfucked all the time. <<s>>ound<<s>> like fun to me."
+				<</if>>
+			<<case "pregnancy">>
+				$He gestures
+				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
+					that $he's heard that a pregnant women has been coming every night to pay for a whore to cuddle her. $He asks if $he could be that $girl.
+				<<elseif $activeSlave.vagina == -1>>
+					how much $he wishes $he could get pregnant from all the cum loads $he's going to get shot up $his rear.
+				<<elseif isFertile($activeSlave)>>
+					that $he knows all the sex is bareback. By the look in $his eyes, you can tell $he is wondering how long it will take for some guys seed to take root in $him.
+				<<elseif $activeSlave.pregKnown == 1>>
+					how sexy $he thinks pregnant whores are.
+				<<elseif $activeSlave.preg > 0>>
+					that $he knows all the sex is bareback. By the look in $his eyes, you can tell $he is wondering how long it will take for some guys seed to take root in $him.
+				<<elseif $activeSlave.ovaries == 1 && $activeSlave.pubertyXX == 0>>
+					how excited $he is for the day $he starts $his menstrual cycle. Will $he even see $his first period, or will every egg $he makes get fertilized?
+				<<else>>
+					that $he's heard a pregnant women has been coming every night to pay for a whore to cuddle her. $He hopes that one day $he'll be chosen.
+				<</if>>
+			<<case "dom">>
+				$He gestures that $he knows citizens sometimes bring their toys there just to let them get pushed around by a whore. $He'd like that to be true. A lot.
+			<<case "sadist">>
+				$He gestures that $he knows citizens sometimes bring their toys there for punishment. $He shivers with anticipation.
+			<</switch>>
+		<<elseif $activeSlave.sexualFlaw != "none">>
+			$He nods obediently before hesitating with a concerned look on $his face.
+			<<switch $activeSlave.sexualFlaw>>
+			<<case "hates oral">>
+				$He slowly gestures if blowjobs are popular there while swallowing nervously. $His lower lip starts to quiver, and $he does $his best not to cry in front of you.
+			<<case "hates anal">>
+				$He slowly gestures if anal is popular there and <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers, and $he does $his best not to cry in front of you.
+			<<case "hates penetration">>
+				$He slowly gestures that he understands that customers will expect to fuck $him and <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<elseif $activeSlave.vagina > 0>>unconsciously lets $his hands fall to $his crotch, but catches $himself and doesn't quite shield $his pussy.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers, and $he does $his best not to cry in front of you.
+			<<case "repressed">>
+				$He shakely gestures that $he'll be a sinner, but if that's what you want, $he'll do it. $He starts to cry quietly.
+			<<case "idealistic">>
+				$He shakely gestures that $he'll do $his best to please any men that use $him. $He starts to cry quietly.
+			<<case "shamefast">>
+				$He shakely gestures that $he'll do $his best to use $his naked body to attract men and entice passersby. $He starts to cry quietly.
+			<<case "apathetic">>
+				$He shakely gestures that $he'll do $his best to take cock. $He starts to cry quietly.
+			<<case "crude">>
+				$He gestures that $his body is going to become so foul after a day's worth of fucks. $He pauses for a moment, doubtful over whether $he should have said that or not.
+			<<case "judgemental">>
+				$He gestures $his disapointment that only the most pathetic of losers will be fucking $him now. $He pauses for a moment, doubtful over whether $he should have said that or not.
+			<</switch>>
 		<<else>>
-			"the other girl<<s>> tell me that whore<<s>> there get fucked up the a<<ss>> all day and all night. <<s>>ounds like fun to me."
+			$He puts on a brave face and gestures that $he'll do $his best. As you send $him off, you catch sight of $him trying to reassure $himself.
 		<</if>>
-	<<case "boobs">>
-		er," and $he sticks out $his chest a little,
-		<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-			"I hear from the other girl<<s>> there'<<s>> thi<<s>> ni<<c>>e lady who goe<<s>> there every morning and pay<<s>> to have a whore <<s>>uck her nipple<<s>> for, like, an hour. I," $he licks $his lips, "could do that."
+	<</if>>
+
+<<elseif ($activeSlave.trust < -20)>>
+
+	<<if canTalk($activeSlave)>>
+		<<if $activeSlave.sexualFlaw != "none">>
+			"Yes, <<Master>>," $he says automatically. $He's badly frightened, and says in a small voice, half to $himself,
+			<<switch $activeSlave.sexualFlaw>>
+			<<case "hates oral">>
+				"I - I'm going to h-have to <<s>>uck a lot of dick, aren't I." $He swallows and tries to control $himself out of fear, but finally gasps out, "Oh God, I'm <<s>>cared," and bursts into tears.
+			<<case "hates anal">>
+				"C-cu<<s>>tomer<<s>> are really going to ream me up the butt hole, aren't they." $He <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers and $he tries to control $himself out of fear, but finally gasps out, "Oh God, I'm <<s>>cared," and bursts into tears.
+			<<case "hates penetration">>
+				"C-cu<<s>>tomer<<s>> are really going to fuck me <<s>>ore, aren't they." $He <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<elseif $activeSlave.vagina > 0>>unconsciously lets $his hands fall to $his crotch, but catches $himself and doesn't quite shield $his pussy.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers, and $he tries to control $himself out of fear, but finally gasps out, "Oh God, I'm <<s>>cared," and bursts into tears.
+			<<case "repressed">>
+				"Being a whore i<<s>> a <<s>>in," $he <<say>>s quietly, half to $himself. "I'm going t-to b-be <<s>>o dirty. I'm going to h-hell." $He starts to cry quietly. $He tries to get $himself back under control, out of fear, but finally wails, "Oh God, I'm <<s>>orry, p-plea<<s>>e forgive me God," and dissolves into sobbing.
+			<<case "idealistic">>
+				"I'm going to be <<s>>old for <<s>>e<<x>>," $he <<say>>s quietly, half to $himself. "Men are going to pay, and then they're g-going to <<s>>tick their dick<<s>> in me, and then they're going to leave." $He starts to cry openly. "<<S>>-<<s>>orry, <<Master>>. P-plea<<s>>se don't beat me. I'll do it."
+			<<case "shamefast">>
+				"I'm going to be meat in a brothel," $he <<say>>s quietly, half to $himself. "I'm going to <<s>>tand there naked with the other girl<<s>>, and men will pick me and then u<<s>>e my body. Over and over." $He starts to cry openly. "<<S>>-<<s>>orry, <<Master>>. P-plea<<s>>se don't beat me. I'll do it."
+			<<case "apathetic">>
+				"I gue<<ss>> I'll lie there," $he sighs quietly, half to $himself. "A man will pay and then he'll come in to my room where I'm lying on the bed, and he'll <<s>>tick his cock in me and cum and leave. And then the next man will come in." $He starts to cry quietly. "<<S>>-<<s>>orry, <<Master>>. P-plea<<s>>se don't beat me. I'll let it happen."
+			<<case "crude">>
+				"Okay," $he <<say>>s, thinking. "My poor cornhole is going to be <<s>>uch a <<s>>eminal <<s>>ewer." $He looks doubtful. "<<Sh>>ould I not have <<s>>aid that, <<Master>>?"
+			<<case "judgemental">>
+				"Gro<<ss>>," $he <<say>>s curtly. "Well, no more hand<<s>>ome boy<<s>> for me, then. Fat pathetic guy<<s>> who patroni<<z>>e whore<<s>>, all the way down. Fuck."
+			<</switch>>
 		<<else>>
-			"the other girl<<s>> tell me that whore<<s>> there get tittyfucked all the time. <<s>>ound<<s>> like fun to me."
+			$He does $his best to control $himself and avoid punishment. "<<Master>>, I will." $He holds $himself together until you dismiss $him; as $he turns away to go, the tears come fast, and $he almost runs into the doorframe on $his way out, blind with weeping.
 		<</if>>
-	<<case "pregnancy">>
-		<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-			I hear from the other girl<<s>> there'<<s>> thi<<s>> pregnant lady who goe<<s>> there every night and pay<<s>> to have a whore cuddle her. Ju<<s>>t cuddle, all night. That would be kind of hard, ju<<s>>t cuddling, but I could do it."
-		<<elseif $activeSlave.vagina == -1>>
-			<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it take<<s>> to get a butthole pregnant? I'm gonna try, anyway."
-		<<elseif isFertile($activeSlave)>>
-			<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it would take to get my poor womb pregnant?"
-		<<elseif $activeSlave.pregKnown == 1>>
-			"I'm going to be a pregnant whore. That'<<s>> pretty fucking <<s>>e<<x>>y."
-		<<elseif $activeSlave.preg > 0>>
-			"<<s>>ince it'<<s>> all bareback, I'm going to have a fuckton of cum in me. I wonder how much cum it would take to get my poor womb pregnant?"
-		<<elseif $activeSlave.ovaries == 1 && $activeSlave.pubertyXX == 0>>
-			"I can't wait till I can get pregnant. That'd be pretty fucking <<s>>e<<x>>y."
+	<<else>>
+		<<if $activeSlave.sexualFlaw != "none">>
+			$He automatically gestures consent. $He's badly frightened, and gingerly continues
+			<<switch $activeSlave.sexualFlaw>>
+			<<case "hates oral">>
+				by asking if $he'll have to suck a lot of dick. $He swallows and tries to control $himself out of fear, but finally loses composure and bursts into tears.
+			<<case "hates anal">>
+				by asking if $he'll be assfucked a lot. $He <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers and $he tries to control $himself out of fear, but finally loses composure and bursts into tears.
+			<<case "hates penetration">>
+				by asking if $he's going to be constantly fucked. $He <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<elseif $activeSlave.vagina > 0>>unconsciously lets $his hands fall to $his crotch, but catches $himself and doesn't quite shield $his pussy.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers, and $he tries to control $himself out of fear, but finally loses composure and bursts into tears.
+			<<case "repressed">>
+				that being a whore is a sin. $He starts to cry quietly. $He tries to get $himself back under control, out of fear, but finally wails and dissolves into prayers intermixed with sobbing.
+			<<case "idealistic">>
+				that sex should be with the one you love, not random men. $He starts to cry openly while begging you not to beat $him.
+			<<case "shamefast">>
+				that $he doesn't want to be naked in a line up for men to choose from. $He starts to cry openly while begging you not to beat $him.
+			<<case "apathetic">>
+				that all $he has to do is lie there and take it. $He starts to cry quietly.
+			<<case "crude">>
+				by asking if men enjoy fucking a thoroughly seeded hole. $He pauses for a moment, doubtful over whether $he should have said that or not.
+			<<case "judgemental">>
+				by expressing $his disappointment with the type of men that frequent brothels.
+			<</switch>>
 		<<else>>
-			"I hear from the other girl<<s>> there'<<s>> thi<<s>> pregnant lady who goe<<s>> there every night and pay<<s>> to have a whore cuddle her. Ju<<s>>t cuddle, all night. That would be kind of hard, ju<<s>>t cuddling, but I could do it."
+			$He does $his best to control $himself and avoid punishment. "<<Master>>, I will." $He holds $himself together until you dismiss $him; as $he turns away to go, the tears come fast, and $he almost runs into the doorframe on $his way out, blind with weeping.
 		<</if>>
-	<<case "dom">>
-		I heard from the other girl<<s>> that <<s>>ome <<c>>iti<<z>>en<<s>> bring their girl<<s>> there. Ju<<s>>t to make them take it from a whore."
-	<<case "sadist">>
-		I heard from the other girl<<s>> that <<s>>ome <<c>>iti<<z>>en<<s>> bring their girl<<s>> there. Becau<<s>>e nobody know<<s>> how to hurt a bitch like a whore doe<<s>>." $He shivers.
-	<</switch>>
-<<elseif $activeSlave.sexualFlaw != "none">>
-	"Ye<<s>>, <<Master>>," $he says obediently. $He hesitates, looking concerned.
-	<<switch $activeSlave.sexualFlaw>>
-	<<case "hates oral">>
-		"I - I'm going to h-have to <<s>>uck a lot of dick there, aren't I." $He swallows nervously. $His lower lip quivers, and $he does $his best not to cry in front of you.
-	<<case "hates anal">>
-		"C-cu<<s>>tomer<<s>> are really going to ream me up the butt hole, aren't they." $He <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers, and $he does $his best not to cry in front of you.
-	<<case "hates penetration">>
-		"C-cu<<s>>tomer<<s>> are really going to fuck me <<s>>ore, aren't they." $He <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<elseif $activeSlave.vagina > 0>>unconsciously lets $his hands fall to $his crotch, but catches $himself and doesn't quite shield $his pussy.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers, and $he does $his best not to cry in front of you.
-	<<case "repressed">>
-		"Being a whore i<<s>> a <<s>>in," $he <<say>>s quietly, half to $himself. "I'm going t-to b-be <<s>>o dirty. I'm going to h-hell." $He starts to cry quietly. "<<S>>-<<s>>orry, <<Master>>. I'll do my be<<s>>t."
-	<<case "idealistic">>
-		"I'm going to be <<s>>old for <<s>>e<<x>>," $he <<say>>s quietly, half to $himself. "Men are going to pay, and then they're g-going to <<s>>tick their dick<<s>> in me, and then they're going to leave." $He starts to cry quietly. "<<S>>-<<s>>orry, <<Master>>. I'll do my be<<s>>t."
-	<<case "shamefast">>
-		"I'm going to be meat in a brothel," $he <<say>>s quietly, half to $himself. "I'm going to <<s>>tand there naked with the other girl<<s>>, and men will pick me and then u<<s>>e my body. Over and over." $He starts to cry quietly. "<<S>>-<<s>>orry, <<Master>>. I'll do my be<<s>>t."
-	<<case "apathetic">>
-		"I gue<<ss>> I'll lie there," $he sighs quietly, half to $himself. "A man will pay and then he'll come in to my room where I'm lying on the bed, and he'll <<s>>tick his cock in me and cum and leave. And then the next man will come in." $He starts to cry quietly. "<<S>>-<<s>>orry, <<Master>>. I'll do my be<<s>>t."
-	<<case "crude">>
-		"Okay," $he <<say>>s, thinking. "My poor cornhole i<<s>> going to be <<s>>uch a <<s>>eminal <<s>>ewer." $He looks doubtful. "<<Sh>>ould I not have <<s>>aid that, <<Master>>?"
-	<<case "judgemental">>
-		"Gro<<ss>>," $he <<say>>s curtly. "Well, no more hand<<s>>ome boy<<s>> for me, then. Fat pathetic guy<<s>> who patroni<<z>>e whore<<s>>, all the way down. Fuck."
-	<</switch>>
-<<else>>
-	$He tries to be brave. "<<Master>>, I will do my be<<s>>t to be a good whore." Then, half to $himself, $he adds in a small voice, "I can do thi<<s>>."
-<</if>>
-
-<<elseif ($activeSlave.trust < -20)>>
-
-<<if $activeSlave.sexualFlaw != "none">>
-	"Yes, <<Master>>," $he says automatically. $He's badly frightened, and says in a small voice, half to $himself,
-	<<switch $activeSlave.sexualFlaw>>
-	<<case "hates oral">>
-		"I - I'm going to h-have to <<s>>uck a lot of dick, aren't I." $He swallows and tries to control $himself out of fear, but finally gasps out, "Oh God, I'm <<s>>cared," and bursts into tears.
-	<<case "hates anal">>
-		"C-cu<<s>>tomer<<s>> are really going to ream me up the butt hole, aren't they." $He <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers and $he tries to control $himself out of fear, but finally gasps out, "Oh God, I'm <<s>>cared," and bursts into tears.
-	<<case "hates penetration">>
-		"C-cu<<s>>tomer<<s>> are really going to fuck me <<s>>ore, aren't they." $He <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<elseif $activeSlave.vagina > 0>>unconsciously lets $his hands fall to $his crotch, but catches $himself and doesn't quite shield $his pussy.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers, and $he tries to control $himself out of fear, but finally gasps out, "Oh God, I'm <<s>>cared," and bursts into tears.
-	<<case "repressed">>
-		"Being a whore i<<s>> a <<s>>in," $he <<say>>s quietly, half to $himself. "I'm going t-to b-be <<s>>o dirty. I'm going to h-hell." $He starts to cry quietly. $He tries to get $himself back under control, out of fear, but finally wails, "Oh God, I'm <<s>>orry, p-plea<<s>>e forgive me God," and dissolves into sobbing.
-	<<case "idealistic">>
-		"I'm going to be <<s>>old for <<s>>e<<x>>," $he <<say>>s quietly, half to $himself. "Men are going to pay, and then they're g-going to <<s>>tick their dick<<s>> in me, and then they're going to leave." $He starts to cry openly. "<<S>>-<<s>>orry, <<Master>>. P-plea<<s>>se don't beat me. I'll do it."
-	<<case "shamefast">>
-		"I'm going to be meat in a brothel," $he <<say>>s quietly, half to $himself. "I'm going to <<s>>tand there naked with the other girl<<s>>, and men will pick me and then u<<s>>e my body. Over and over." $He starts to cry openly. "<<S>>-<<s>>orry, <<Master>>. P-plea<<s>>se don't beat me. I'll do it."
-	<<case "apathetic">>
-		"I gue<<ss>> I'll lie there," $he sighs quietly, half to $himself. "A man will pay and then he'll come in to my room where I'm lying on the bed, and he'll <<s>>tick his cock in me and cum and leave. And then the next man will come in." $He starts to cry quietly. "<<S>>-<<s>>orry, <<Master>>. P-plea<<s>>se don't beat me. I'll let it happen."
-	<<case "crude">>
-		"Okay," $he <<say>>s, thinking. "My poor cornhole is going to be <<s>>uch a <<s>>eminal <<s>>ewer." $He looks doubtful. "<<Sh>>ould I not have <<s>>aid that, <<Master>>?"
-	<<case "judgemental">>
-		"Gro<<ss>>," $he <<say>>s curtly. "Well, no more hand<<s>>ome boy<<s>> for me, then. Fat pathetic guy<<s>> who patroni<<z>>e whore<<s>>, all the way down. Fuck."
-	<</switch>>
-<<else>>
-	$He does $his best to control $himself and avoid punishment. "<<Master>>, I will." $He holds $himself together until you dismiss $him; as $he turns away to go, the tears come fast, and $he almost runs into the doorframe on $his way out, blind with weeping.
-<</if>>
+	<</if>>
 
 <<else>>
 
-$He manages to get "Oh fuck n-" out before the compliance systems activate and $he's poleaxed to the ground. Anticipating this, you had <<if $Madam != 0>>$Madam.slaveName <<else>>another, more obedient slave<</if>> standing by to haul $him away. It'll take a couple of hundred customers, but being sold in a brothel for rape should knock the resistance out of $him.
+	$He manages to
+	<<if canTalk($activeSlave)>>
+		get "Oh fuck n-" out
+	<<elseif $activeSlave.amp != 1>>
+		flip you an incredibly rude gesture
+	<<else>>
+		get an incredibly rude gesture out
+	<</if>>
+	before the compliance systems activate and $he's poleaxed to the ground. Anticipating this, you had <<if $Madam != 0>>$Madam.slaveName <<else>>another, more obedient slave<</if>> standing by to haul $him away. It'll take a couple of hundred customers, but being sold in a brothel for rape should knock the resistance out of $him.
 
 <</if>> /* CLOSES DEVOTION */
diff --git a/src/facilities/farmyard/farmyard.tw b/src/facilities/farmyard/farmyard.tw
index bd2354c6e034d205aac95b20799f12b498d85f03..dbe7da3ed3fb4832bd2101a0767f25a4d2424804 100644
--- a/src/facilities/farmyard/farmyard.tw
+++ b/src/facilities/farmyard/farmyard.tw
@@ -71,8 +71,8 @@ $farmyardNameCaps is an oasis of growth in the midst of the jungle of steel and
 	$farmyardNameCaps is working steadily. Farmhands are moving about, looking after the animals and crops.
 <<elseif $Farmer != 0>>
 	$Farmer.slaveName is alone in $farmyardName, and has nothing to do but look after the animals and crops.
-<<else>>
-	$farmyardNameCaps is empty and quiet. <<link "Decommission the Farmyard" "Main">><<set  $farmyardName = "the Farmyard", $farmyard = 0, $farmyardSlaves = 0, $farmyardDecoration = "standard", $farmyardUpgrade = {pump: 0, fertilizer: 0, hydroponics: 0, machinery: 0, seeds: 0, lab: 0}, $farmyardLab = 0, $farmyardLabUpgrades = {animalOvaries: 0, animalTesticles: 0, animalMpreg: 0}, $farmyardCrops = 0, $farmyardKennels = 0, $farmyardStable = 0, $farmyardCages = 0, $activeCanine = 0, $activeHooved = 0, $activeFeline = 0, $animalsBought = {canines: 0, hooved: 0, felines: 0, labradorRetrievers: 0, germanShepherds: 0, goldenRetrievers: 0, frenchBulldogs: 0, bulldogs: 0, beagles: 0, poodles: 0, rottweilers: 0, yorkshireTerriers: 0, siberianHuskies: 0, horses: 0, siameses: 0, persians: 0, maineCoons: 0, ragdolls: 0, bengals: 0, abbysinians: 0, birmans: 0, orientalShorthairs: 0, sphynxes: 0, russianBlues: 0, wolves: 0, foxes: 0, jackals: 0, dingos: 0, zebras: 0, cougars: 0, jaguars: 0, pumas: 0, lynx: 0, leopards: 0, lions: 0, tigers: 0}, $pitAnimal = 0, $canines = [], $hooved = [], $felines = []>>
+<<else>>	/* TODO: is there any way of cleaning up $animalsBought? I can't think of a good way */
+	$farmyardNameCaps is empty and quiet. <<link "Decommission the Farmyard" "Main">><<set  $farmyardName = "the Farmyard", $farmyard = 0, $farmyardSlaves = 0, $farmyardDecoration = "standard", $farmyardUpgrade = {pump: 0, fertilizer: 0, hydroponics: 0, machinery: 0, seeds: 0, lab: 0}, $farmyardLab = 0, $farmyardLabUpgrades = {animalOvaries: 0, animalTesticles: 0, animalMpreg: 0}, $farmyardCrops = 0, $farmyardKennels = 0, $farmyardStable = 0, $farmyardCages = 0, $activeCanine = 0, $activeHooved = 0, $activeFeline = 0, $animalsBought = {canines: 0, hooved: 0, felines: 0, labradorRetrievers: 0, germanShepherds: 0, goldenRetrievers: 0, frenchBulldogs: 0, bulldogs: 0, beagles: 0, poodles: 0, rottweilers: 0, yorkshireTerriers: 0, siberianHuskies: 0, horses: 0, siameses: 0, persians: 0, maineCoons: 0, ragdolls: 0, bengals: 0, abbysinians: 0, birmans: 0, orientalShorthairs: 0, sphynxes: 0, russianBlues: 0, wolves: 0, foxes: 0, jackals: 0, dingos: 0, zebras: 0, cougars: 0, jaguars: 0, pumas: 0, lynx: 0, leopards: 0, lions: 0, tigers: 0}, $pitAnimal = 0, $pitAnimalType = 0, $canines = [], $hooved = [], $felines = []>>
 	<<set _far = $sectors.findIndex(function(s) { return s.type == "Farmyard"; })>>
 	<<if _far != -1>>
 		<<set $sectors[_far].type = "Manufacturing">>
diff --git a/src/facilities/nursery/childInteract.tw b/src/facilities/nursery/childInteract.tw
index 0b49937d43e723609fe79d28ff7bcdcf04d7e762..e30b4f4c1eec00e68abf7a14c6e035a60b0e20ee 100644
--- a/src/facilities/nursery/childInteract.tw
+++ b/src/facilities/nursery/childInteract.tw
@@ -1053,7 +1053,7 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1
 <</if>>
 <</if>>
 <</if>>
-
+/*
 <<if $nursery > 0>>
 <<if $activeSlave.preg > 0 && $activeSlave.broodmother == 0 && $activeSlave.pregKnown == 1 && $activeSlave.eggType == "human">>
 <<if $activeSlave.assignment == "work in the dairy" && $dairyPregSetting > 0>>
diff --git a/src/facilities/nursery/childrenReport.tw b/src/facilities/nursery/childrenReport.tw
index 81a0926ae9911515a8279954dc2ba34781aaf400..0b9768a47eca05b5f167e554f912f99787245310 100644
--- a/src/facilities/nursery/childrenReport.tw
+++ b/src/facilities/nursery/childrenReport.tw
@@ -11,8 +11,8 @@
 		<</if>>
 	<</if>>
 	<<set $nurserySlaves += 1>>
-	<<if $cribs[_inc].growTime > 0>>
-		<<set $cribs[_inc].growTime -= 1>>
+	<<if $cribs[_nur].growTime > 0>>
+		<<set $cribs[_nur].growTime -= 1>>
 		<br>@@.pink;<<print $cribs[_nur].slaveName>>@@ is growing steadily. $He <<if $cribs[_nur].growTime <= 0>>is @@.lime;ready for release.@@ $He will be ejected from $his crib upon your approach<<else>>will be ready for release in about <<print $cribs[_nur].growTime>> weeks<</if>>.
 	<<else>>
 		@@.pink;$cribs[_nur].slaveName@@ is @@.lime;ready for release.@@ $He will be removed from $nurseryName upon your approach.
diff --git a/src/facilities/nursery/longChildDescription.tw b/src/facilities/nursery/longChildDescription.tw
index f2a408aca9b88554ded7388c2558e3ea7d427ebb..9f35241070159e202a9b1e091c386f6301bbcc3e 100644
--- a/src/facilities/nursery/longChildDescription.tw
+++ b/src/facilities/nursery/longChildDescription.tw
@@ -23,20 +23,22 @@
 
 <<if $activeSlave.customLabel>> (@@.yellow;''<<print $activeSlave.customLabel>>''@@)<</if>>
 
+/*
 <<if $ui == "start">>
 <<elseif $saleDescription == 1>>
 	<<if $applyLaw == 1>>
 		has passed inspection to be sold in your arcology.
-		<<include "Law Compliance">> /* includes CheckForGingering */
+		<<include "Law Compliance">> /* includes CheckForGingering *//*
 	<<else>>
 		is for sale and is available to inspect.
-		<<if $prisonCrime>> /* reports a slave's crime in the criminal market */
+		<<if $prisonCrime>> /* reports a slave's crime in the criminal market *//*
 			$He $prisonCrime
 			<<set $prisonCrime = 0>>
 		<</if>>
 	<</if>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;''$activeSlave.slaveName''
 <</if>>
+*/
 
 is
 
@@ -72,7 +74,7 @@ is
 	<</if>>
 <</if>>
 
-<<set $desc = SlaveTitle($activeSlave)>>
+<<set $desc = "child">>
 ''@@.coral;$desc.@@''
 
 
@@ -229,6 +231,7 @@ $he's
         $activeSlave.actualAge years old<<if $showAgeDetail == 1 && ($seeAge != 0)>>; <<if $activeSlave.birthWeek == 51>>$his birthday is next week<<else>>$his birthday is in <<print 52-$activeSlave.birthWeek>> weeks<</if>><</if>>.
     <</if>>
 <</if>>
+/* TODO: do we need this check? bodyswapping won't be possible with children */
 <<if $activeSlave.actualAge != $activeSlave.physicalAge>>
     However, $he has the body of a <<print $activeSlave.physicalAge>>-year old;
     <<if $activeSlave.physicalAge < 18 && $activeSlave.actualAge >= 18>>
@@ -248,6 +251,7 @@ $he's
 /*
 ** NCS will not be enabled for children
 */
+/* TODO: do we need this? */
 <<if $activeSlave.physicalAge != $activeSlave.visualAge>>
     <<if $activeSlave.visualAge <= $activeSlave.physicalAge-20 || $activeSlave.visualAge >= $activeSlave.physicalAge+20>>
         $He has undergone radical age therapy that makes $him look
@@ -404,7 +408,7 @@ $he's
 				$he's spent awake.
 			<</if>>
 		<</if>>
-
+/*
         <<if ($activeSlave.lactation > 0) && ($activeSlave.milk < 20)>>
 			$He has given a small quantity of milk<<if ($activeSlave.cum > 0)>> and about <<print commaNum($activeSlave.cum)>> deciliters of cum<</if>>.
 		<<elseif ($activeSlave.milk > 1)>>
@@ -442,7 +446,8 @@ $he's
 		<</if>>
 	<</if>>
 <</if>>
-
+*/
+/*
 <<if $activeSlave.fuckdoll == 0>> /* NORMAL NON-FUCKDOLL MENTAL REPORT */
 
 	<<eyeDescription>>
@@ -839,9 +844,9 @@ $he's
 	<<else>>
 		You do not understand $his sexuality very well.
 	<</if>>
-
+/*
 <<else>> /* FUCKDOLL MENTAL REPORT */
-
+/*
 	It's impossible to tell what intelligence or inclinations a fuckdoll might have by looking at it, but the most recent records indicate that this one is
 	<<if ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 95)>>
 		@@.deepskyblue;brilliant@@
@@ -1016,7 +1021,7 @@ $he's
 	<</if>>
 
 <</if>> /* END MENTAL REPORT */
-
+*/
 <<if $saleDescription == 0>>
 	<<if $eventDescription == 0>>
 		<<if canSee($activeSlave)>>
@@ -1106,12 +1111,12 @@ $he's
 <<else>>
 
 	<<if $activeSlave.relation != 0>>
-		<<set _lsd = $slaveIndices[$activeSlave.relationTarget]>>
-		<<if def _lsd>>
-			<<if ($slaves[_lsd].ID == $activeSlave.relationshipTarget) && ($activeSlave.relationship >= 3)>>
-				$He is @@.lightgreen;<<= SlaveFullName($slaves[_lsd])>>'s $activeSlave.relation, making their relationship incestuous.@@
+		<<set _lcd = $slaveIndices[$activeSlave.relationTarget]>>
+		<<if def _lcd>>
+			<<if ($slaves[_lcd].ID == $activeSlave.relationshipTarget) && ($activeSlave.relationship >= 3)>>
+				$He is @@.lightgreen;<<= SlaveFullName($slaves[_lcd])>>'s $activeSlave.relation, making their relationship incestuous.@@
 			<<else>>
-				$He is @@.lightgreen;<<= SlaveFullName($slaves[_lsd])>>'s $activeSlave.relation.@@
+				$He is @@.lightgreen;<<= SlaveFullName($slaves[_lcd])>>'s $activeSlave.relation.@@
 			<</if>>
 		<</if>>
 	<</if>>
@@ -1119,31 +1124,31 @@ $he's
 <</if>> /* closes extended family mode */
 
 <<if $activeSlave.rivalry != 0>>
-	<<set _lsd = $slaveIndices[$activeSlave.rivalryTarget]>>
-	<<if def _lsd>>
+	<<set _lcd = $slaveIndices[$activeSlave.rivalryTarget]>>
+	<<if def _lcd>>
 		$He
 		<<if $activeSlave.rivalry <= 1>>
-			@@.lightsalmon;dislikes@@ <<= SlaveFullName($slaves[_lsd])>>.
+			@@.lightsalmon;dislikes@@ <<= SlaveFullName($slaves[_lcd])>>.
 		<<elseif $activeSlave.rivalry <= 2>>
-			is <<= SlaveFullName($slaves[_lsd])>>'s @@.lightsalmon;rival.@@
+			is <<= SlaveFullName($slaves[_lcd])>>'s @@.lightsalmon;rival.@@
 		<<else>>
-			@@.lightsalmon;bitterly hates@@ <<= SlaveFullName($slaves[_lsd])>>.
+			@@.lightsalmon;bitterly hates@@ <<= SlaveFullName($slaves[_lcd])>>.
 		<</if>>
 	<</if>>
 <</if>>
-
+/*
 <<if $activeSlave.bodySwap > 0>>
 	<<if $activeSlave.origBodyOwner !== "">>
 		$He currently possesses <<print $activeSlave.origBodyOwner>>'s body.
 	<</if>>
 	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0 && $activeSlave.origBodyOwnerID > 0>>
-		<<set _lsd = $slaveIndices[$activeSlave.origBodyOwnerID]>>
-		<<if def _lsd>>
-			$He is fully aware that <<= SlaveFullName($slaves[_lsd])>> is in $his old body.
+		<<set _lcd = $slaveIndices[$activeSlave.origBodyOwnerID]>>
+		<<if def _lcd>>
+			$He is fully aware that <<= SlaveFullName($slaves[_lcd])>> is in $his old body.
 		<</if>>
 	<</if>>
 <</if>>
-
+*/
 <br>&nbsp;&nbsp;&nbsp;&nbsp;
 
 <<if $saleDescription == 0>>
@@ -1153,7 +1158,7 @@ $he's
 <</if>>
 
 /*TODO: This will DEFINITELY need updating - children born in your arcology do not have past experience*/
-
+/*
 <<if $activeSlave.fuckdoll == 0>>
 	<<if $activeSlave.career != 0>>
 		<<if $activeSlave.career == "a slave">>
@@ -1223,6 +1228,7 @@ $he's
 		<</if>>
 	<</if>>
 <</if>>
+*/
 
 <<if $activeSlave.prestige > 0>>
 	<<if $activeSlave.prestigeDesc>>$activeSlave.prestigeDesc<</if>>
@@ -1618,7 +1624,7 @@ $He is
 	<<accentDescription>>
 
 <</if>>
-
+/*
 <<if ($activeSlave.ID == $Bodyguard.ID) && ($activeSlave.scars > 1) && ($activeSlave.scars < 6)>>
 	$His scars make $him look even more menacing than $he actually is.
 <<elseif ($activeSlave.ID == $Bodyguard.ID) && ($activeSlave.scars == 6)>>
@@ -1626,7 +1632,7 @@ $He is
 <<elseif ($activeSlave.ID == $Wardeness.ID) && ($activeSlave.scars > 1)>>
 	$His scars make $him look like $he's in the right place.
 <</if>>
-
+*/
 <<if $activeSlave.fuckdoll == 0>>
 	<<if $activeSlave.markings == "birthmark" && $activeSlave.prestige == 0 && $activeSlave.pornPrestige < 2>>
 		$He has a large, liver-colored birthmark, detracting from $his beauty.
diff --git a/src/facilities/nursery/saNanny.tw b/src/facilities/nursery/saNanny.tw
new file mode 100644
index 0000000000000000000000000000000000000000..d05791bc01b25b4b9309271548da573656d71a68
--- /dev/null
+++ b/src/facilities/nursery/saNanny.tw
@@ -0,0 +1,5 @@
+:: SA Nanny [nobr]
+
+works as a nanny this week.
+
+/* TODO: this needs to be written */
\ No newline at end of file
diff --git a/src/init/setupVars.tw b/src/init/setupVars.tw
index d3c4c0ae7a339722d0e94bbab9793fb06e2231f6..e3975e1af1ac8c5dbde4554efa56ef7af733c616 100644
--- a/src/init/setupVars.tw
+++ b/src/init/setupVars.tw
@@ -1954,6 +1954,8 @@ Then pick _namePool.random(), or display those names as possible choices, or do
 	"Uzbek": setup.uzbekMaleSurnames,
 	"Roman Revivalist": setup.romanMaleSurnames
 	}>>
+	
+<<set setup.FutureSocieties = ["FSSupremacist", "FSSubjugationist", "FSRepopulationFocus", "FSRestart", "FSSubjugationist", "FSGenderRadicalist", "FSGenderFundamentalist", "FSPaternalist", "FSDegradationist", "FSBodyPurist", "FSTransformationFetishist", "FSYouthPreferentialist", "FSMaturityPreferentialist", "FSSlimnessEnthusiast", "FSAssetExpansionist", "FSPastoralist", "FSPhysicalIdealist", "FSHedonisticDecadence", "FSChattelReligionist", "FSRomanRevivalist", "FSAztecRevivalist", "FSEgyptianRevivalist", "FSEdoRevivalist", "FSArabianRevivalist", "FSChineseRevivalist", "FSNull"]>>
 
 <<set setup.ArcologyNamesSupremacistAmerindian = ["Akilineq", "Amerindia", "Aquadoctan", "Cahokia", "Caral", "Chicora", "Cusco", "Indigenismo", "Norumbega", "Paititi", "Porcupine", "Red Power", "Saguenay", "The Confederated Tribes"]>>
 <<set setup.ArcologyNamesSupremacistAsian = ["Eastern Sun", "Jade Empire", "Kalapa", "Mahoroba", "Penglai", "Shambhala", "Shangri-La", "Sinosphere", "The Celestial Temple", "Tian", "Zhonghua Minzu"]>>
@@ -2072,6 +2074,12 @@ Then pick _namePool.random(), or display those names as possible choices, or do
 	{name: "Long, large plug", value: "long, large plug", rs: "buyBigPlugs"},
 	{name: "Huge plug", value: "huge plug"}, {name: "Long, huge plug", value: "long, huge plug", rs: "buyBigPlugs"}]>>
 
+<<set setup.buttplugAttachments = [
+	{name: "No default setting", value: "no default setting"},
+	{name: "None", value: "none"},
+	{name: "Tail", value: "tail", rs: "buyTails"},
+	{name: "Fox tail", value: "fox tail", rs: "buyTails"}, {name: "Cat tail", value: "cat tail", rs: "buyTails"}]>>
+
 <<set setup.facilityCareers = ["be confined in the arcade", "be confined in the cellblock", "be the Attendant", "be the DJ", "be the Farmer", "be the Madam", "be the Matron", "be the Milkmaid", "be the Nurse", "be the Schoolteacher", "be the Stewardess", "be the Wardeness", "be your Concubine", "get treatment in the clinic", "learn in the schoolroom", "live with your Head Girl", "rest in the spa", "serve in the club", "serve in the master suite", "work as a farmhand", "work as a nanny", "work as a servant", "work in the brothel", "work in the dairy"]>>
 
 <<set setup.lightColorMap = {
diff --git a/src/js/DefaultRules.tw b/src/js/DefaultRules.tw
index 0ec19616ede17f21376b5e7703c17602ecbf8f17..f389a762ce8248d49f774801b85ed433ae696326 100644
--- a/src/js/DefaultRules.tw
+++ b/src/js/DefaultRules.tw
@@ -768,13 +768,14 @@ window.DefaultRules = (function() {
 	}
 
 	function ProcessAnalAccessories(slave, rule) {
-		// apply buttplugs to slave
+		// apply buttplugs and buttplug accessories to slave
 		if ((slave.vaginalAccessory !== "anal chastity") && (slave.vaginalAccessory !== "combined chastity") && (slave.dickAccessory !== "anal chastity") && (slave.dickAccessory !== "combined chastity")) {
 			if (slave.anus === 0)
 				ProcessAnalVirginButtplugs(slave, rule);
 			else
 				ProcessNonVirginButtplugs(slave, rule);
 		}
+		ProcessButtplugAttachments(slave, rule);
 	}
 
 	function ProcessAnalVirginButtplugs(slave, rule) {
@@ -891,6 +892,27 @@ window.DefaultRules = (function() {
 		}
 	}
 
+	function ProcessButtplugAttachments(slave, rule) {
+		// apply buttplug accessories to slaves
+		if (slave.buttplug === "none" && slave.buttplugAttachment !== "none") {
+			slave.buttplugAttachment = "none"; //clears buttplug attachments when buttplugs are removed above
+		} else if ((rule.buttplugAttachment !== undefined) && (rule.buttplugAttachment !== "no default setting")) {
+			if ((slave.buttplugAttachment !== rule.buttplugAttachment)) {
+				slave.buttplugAttachment = rule.buttplugAttachment;
+				switch (slave.buttplugAttachment) {
+
+					case "none":
+						r += `<br>${slave.slaveName} has been instructed not to use an attachment for her anal accessory.`;
+						break;
+
+					default:
+						r += `<br>${slave.slaveName} has been given a slave.buttplugAttachment to attach to her buttplug.`;
+						break;
+				}
+			}
+		}
+	}
+
 	function ProcessBellyImplant(slave, rule) {
 		// Here is belly implant size control, it's used in Surgery Degradation passage to setup devotion and trust changes.
 		// silent calls to surgery degradation have been replaced with a js function, which is less hacky
diff --git a/src/js/eventSelectionJS.tw b/src/js/eventSelectionJS.tw
index 0a88f3f58eea365441428c1b3012daec44f99dd7..0823008fbb36d4b32817681a586e737508553dcd 100644
--- a/src/js/eventSelectionJS.tw
+++ b/src/js/eventSelectionJS.tw
@@ -65,10 +65,12 @@ if(eventSlave.fetish != "mindbroken") {
 			}
 
 			if(eventSlave.entertainSkill >= 60 || ["an exotic dancer", "a dancer", "a house DJ", "a party girl", "an aspiring pop star"].includes(eventSlave.career)) {
-				if(eventSlave.health > 40) {
-					if(eventSlave.devotion > 50) {
-						if(eventSlave.trust > 50) {
-							State.variables.RESSevent.push("happy dance");
+				if(canHear(eventSlave)) {
+					if(eventSlave.health > 40) {
+						if(eventSlave.devotion > 50) {
+							if(eventSlave.trust > 50) {
+								State.variables.RESSevent.push("happy dance");
+							}
 						}
 					}
 				}
diff --git a/src/js/rulesAssistant.tw b/src/js/rulesAssistant.tw
index 093ee3e2479b8752adda6829ee9d0d8bc0eb8fd4..f496cdbb87f7c4fa67cb445b27257a44f7263ee5 100644
--- a/src/js/rulesAssistant.tw
+++ b/src/js/rulesAssistant.tw
@@ -218,6 +218,7 @@ window.emptyDefaultRule = function emptyDefaultRule() {
 			bellyAccessory: "no default setting",
 			aVirginButtplug: "no default setting",
 			buttplug: "no default setting",
+			buttplugAttachment: "no default setting",
 			eyeColor: "no default setting",
 			makeup: "no default setting",
 			nails: "no default setting",
diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw
index df8d33f70b56c2bc55c7ccd4e846ff180e600e99..2e8f49cbe35dac54a05f4bbacf34589668e23771 100644
--- a/src/js/rulesAssistantOptions.tw
+++ b/src/js/rulesAssistantOptions.tw
@@ -924,6 +924,7 @@ window.rulesAssistantOptions = (function() {
 			}
 			this.appendChild(new ButtplugsVirginsList());
 			this.appendChild(new ButtplugsOtherList());
+			this.appendChild(new ButtplugAttachmentsList());
 			this.appendChild(new ImplantVolumeList());
 
 		}
@@ -1377,6 +1378,21 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
+	class ButtplugAttachmentsList extends List {
+		constructor() {
+			const accs = [];
+			setup.buttplugAttachments.forEach(acc => {
+				if (acc.fs === undefined && acc.rs === undefined)
+					accs.push([acc.name, acc.value]);
+				else if (acc.rs === "buyTails" && V.toysBoughtButtPlugTails === 1)
+					accs.push([acc.name + " (Purchased)", acc.value]);
+			});
+			super("Buttplug attachments for slaves with buttplugs", accs);
+			this.setValue(current_rule.set.buttplugAttachment);
+			this.onchange = (value) => current_rule.set.buttplugAttachment = value;
+		}
+	}
+	
 	class ImplantVolumeList extends List {
 		constructor() {
 			const pairs = [
@@ -1920,7 +1936,8 @@ window.rulesAssistantOptions = (function() {
 				["Permissive", "permissive"],
 				["Sapphic", "sapphic"],
 				["Masturbation", "masturbation"],
-				["Restrictive", "restrictive"]
+				["Restrictive", "restrictive"],
+				["Chastity", "chastity"]
 			];
 			super("Release rules", pairs);
 			this.setValue(current_rule.set.releaseRules);
diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw
index 42f46de493243c5a450d322139b6b65bd91f8078..65d093905f353921ddddaa75513632f86b9141cf 100644
--- a/src/js/storyJS.tw
+++ b/src/js/storyJS.tw
@@ -996,3 +996,84 @@ window.genUUID = function() {
     });
     return uuid;
 };
+
+window.removeFS = function(FS) {
+	const V = State.variables;
+	const arcology = V.arcologies[0];
+	let FSDecoration = FS + "Decoration";
+	let FSSMR = FS + "SMR";
+	let FSLaw = FS + "Law";
+	if (FS === "FSSupremacist" || FS === "FSSubjugationist") {
+		FSLaw += "ME";
+	}
+	switch (FS) {
+		case "FSGenderRadicalist":
+			arcology.FSGenderRadicalistLawBeauty = 0;
+			arcology.FSGenderRadicalistLawFuta = 0;
+			break;
+		case "FSGenderFundamentalist":
+			arcology.FSGenderFundamentalistLawBeauty = 0;
+			arcology.FSGenderFundamentalistLawBimbo = 0;
+			arcology.FSGenderFundamentalistSMR = 0;
+			break;
+		case "FSTransformationFetishist":
+		case "FSAssetExpansionist":
+			arcology[FSSMR] = 0;
+			break;
+		case "FSPhysicalIdealist":
+			arcology.FSPhysicalIdealistLaw = 0;
+			arcology.FSPhysicalIdealistSMR = 0;
+			arcology.FSPhysicalIdealistStrongFat = 0;
+		case "FSHedonisticDecadence":
+			arcology.FSHedonisticDecadenceLaw = 0;
+			arcology.FSHedonisticDecadenceLaw2 = 0;
+			arcology.FSHedonisticDecadenceSMR = 0;
+			arcology.FSHedonisticDecadenceStrongFat = 0;
+			break;
+		case "FSChattelReligionist":
+			arcology.FSChattelReligionistLaw = 0;
+			arcology.FSChattelReligionistSMR = 0;
+			arcology.FSChattelReligionistCreed = 0;
+			break;
+		case "FSNull":
+			break;
+		default: /* all others have one law and one SMR */
+			arcology[FSLaw] = 0;
+			arcology[FSSMR] = 0;
+			break;
+	}
+	if (FS !== "FSNull") {
+		arcology[FSDecoration] = 20;
+		if (FS === "FSRestart") {
+			V.propOutcome = 0;
+			V.failedElite = 0;
+		}
+	}
+	arcology[FS] = "unset";
+	resetFSCredits();
+};
+
+window.resetFSCredits = function() {
+	const V = State.variables;
+	let activeFS = 0;
+	for (let i = 0; i < setup.FutureSocieties.length; i++) {
+		if (V.arcologies[0][setup.FutureSocieties[i]] > 0) {
+			activeFS++;
+		}
+	}
+	console.log(activeFS);
+	if (V.arcologies[0].FSNull > 0) { /* possibly recalculate for multiculturalism */
+		activeFS--;
+		if (V.FSCreditCount === 4) {
+			activeFS += V.arcologies[0].FSNull/25;
+		} else if (V.FSCreditCount === 6) {
+			activeFS += V.arcologies[0].FSNull/17;
+		} else if (V.FSCreditCount === 7) {
+			activeFS += V.arcologies[0].FSNull/15;
+		} else {
+			activeFS += V.arcologies[0].FSNull/20;
+		}
+	}
+	console.log(activeFS);
+	V.FSCredits = Math.max(Math.trunc(V.FSGotRepCredits - activeFS), 0);
+};
diff --git a/src/pregmod/FSuckle.tw b/src/pregmod/FSuckle.tw
index c4e77987efeb7ad13cd1fefc5143d73404b5581f..4096926e6ebb3039cfeaca58db3399d95038b6c5 100644
--- a/src/pregmod/FSuckle.tw
+++ b/src/pregmod/FSuckle.tw
@@ -387,7 +387,7 @@ $his other breast<<if $PC.dick == 1>><<if $PC.balls > 1>> and backflowing hard f
 	<<elseif $activeSlave.trust < -20>>
 		$He freezes in fear, unsure of what to do other than let you rest.
 	<<elseif $activeSlave.devotion < -20>>
-		$He groans at the weight leaning against $him and begrudgingly rests his arm atop your pregnant bulge.
+		$He groans at the weight leaning against $him and begrudgingly rests $his arm atop your pregnant bulge.
 		<<if $PC.pregSource == $activeSlave.ID>>
 			$He takes a moment to appreciate the size of your stomach, knowing $he was the one that seeded you. $He admires $his work with pride.
 		<<else>>
diff --git a/src/pregmod/MpregSelf.tw b/src/pregmod/MpregSelf.tw
index 87c3251ec365b3d3bcc6834d09b6d0ad6e764262..afa3a632833529f93c48fd450e6434263e1e2a14 100644
--- a/src/pregmod/MpregSelf.tw
+++ b/src/pregmod/MpregSelf.tw
@@ -1,99 +1,101 @@
-:: MpregSelf [nobr] 
- 
+:: MpregSelf [nobr]
+
+<<setNonlocalPronouns $seeDicks>>
+
 <<set $nextButton = "Back", $nextLink = "Main">>
 
 <<if $PC.birthSelf == 0>>
 	<<if $PC.balls > 2>>
-		Calling over your closest slave, you order her to bring you one of the high-volume enema syringes from the slave quarters. She rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending rivulets of precum running down to pool on your massive balls. Your pussy is similarly soaked, imagining your latest deviancy has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before she enters carrying the extra-long enema syringe. Impatient, you give her your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
-		Following your instructions, she eagerly drops to her knees and inhales your soaked member. The large volume of precum coming from your engorged prostate necessitates frequent swallowing that only adds to your pleasure. You lay back and enjoy yourself as she massages your massive balls before slipping her hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of what comes next, and soon your sack is clenching your massive balls as your body prepares to cum. Recognizing the signs, your slave removes her mouth and replaces it with the open end of the syringe. She takes her sodden hand from your cunt and starts stroking vigorously, and soon you're spraying inhumanly large jets of alabaster cum into the enema syringe. It's good that you asked for high-capacity version, as the prodigious quantity of fertile semen would have overflowed from a smaller container. 
-		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. She has thoughtfully blocked the tip with the palm of her hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes her hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of her hand, but you don't begrudge her a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more. 
-		You spread your legs into a wide M shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe between your massive balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the nubby plug-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to take both hands and ram that plunger in. Push hard, I want that syringe completely empty when you're done."
-		<br><br>The girl does as she's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, she shoves it back inside you. Seeing the undeniable pleasure on your face, she takes it as permission to continue and quickly picks up the pace. Soon she's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the pointy enema bulb into the opening of your cervix, forcibly stretching it further open with each piercing impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
-		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends thick streams of cum spraying all over the place to soak you and your slave. Seeing her cue, the girl grabs the large plunger with both hands and starts shoving it in the direction of your womb. She leans in, using her body weight to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the whole enema syringe further inside you, causing a blissful stretching sensation as the squirting enema bulb penetrates your cervix to lodge in your womb. 
+		Calling over your closest slave, you order _himU to bring you one of the high-volume enema syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending rivulets of precum running down to pool on your massive balls. Your pussy is similarly soaked, imagining your latest deviancy has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the extra-long enema syringe. Impatient, you give _himU your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
+		Following your instructions, _heU eagerly drops to _hisU knees and inhales your soaked member. The large volume of precum coming from your engorged prostate necessitates frequent swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your massive balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of what comes next, and soon your sack is clenching your massive balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying inhumanly large jets of alabaster cum into the enema syringe. It's good that you asked for high-capacity version, as the prodigious quantity of fertile semen would have overflowed from a smaller container. 
+		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more. 
+		You spread your legs into a wide "M" shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe between your massive balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the nubby plug-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to take both hands and ram that plunger in. Push hard, I want that syringe completely empty when you're done."
+		<br><br>The _girlU does as _heU's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, _heU shoves it back inside you. Seeing the undeniable pleasure on your face, _heU takes it as permission to continue and quickly picks up the pace. Soon _heU's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the pointy enema bulb into the opening of your cervix, forcibly stretching it further open with each piercing impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
+		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends thick streams of cum spraying all over the place to soak you and your slave. Seeing _hisU cue, the _girlU grabs the large plunger with both hands and starts shoving it in the direction of your womb. _HeU leans in, using _hisU body weight to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the whole enema syringe further inside you, causing a blissful stretching sensation as the squirting enema bulb penetrates your cervix to lodge in your womb. 
 		Your orgasm continues unabated, spurred on by the syringe now spraying your cum directly into your womb. You spend a couple minutes that feel like hours cumming as your slave slowly inflates your womb with a seemingly-endless volume of your virile cum. 
-		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your balloon-like womb from forcing its meal back into the syringe. The nearly 2 liters of cum you have stuffed inside you leaves your stomach looking noticeably distended, prompting you to rub your sloshing belly. You give the waiting girl her orders: "pull it out, and use your mouth to keep the mess to a minimum." She gets on her knees and takes a firm grip on the syringe before peering over your inflated belly to make sure you're ready for her to continue. As soon as you give her a nod she pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes her to swiftly yank the rest of the syringe out of you, opening the floodgates for the colossal quantity of cum inflating your womb. Your well-trained slave reacts quickly, hefting your massive balls up and out of the way so she can catch the torrent of jizz that's just starting to pour from your cunt. 
-		You hear some wet sounds as she slurps down the cum that already escaped, and then you feel her soft lips pressed to your vulva as she steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while she works, proud of your ingenious idea to take advantage of your inhuman sperm production. There's always the tap from $dairyName of course, but this way you don't have to worry about getting pregnant. That last thought gives you pause. You can't get yourself pregnant... right? 
+		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your balloon-like womb from forcing its meal back into the syringe. The nearly 2 liters of cum you have stuffed inside you leaves your stomach looking noticeably distended, prompting you to rub your sloshing belly. You give the waiting _girlU _hisU orders: "pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering over your inflated belly to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes _himU to swiftly yank the rest of the syringe out of you, opening the floodgates for the colossal quantity of cum inflating your womb. Your well-trained slave reacts quickly, hefting your massive balls up and out of the way so _heU can catch the torrent of jizz that's just starting to pour from your cunt. 
+		You hear some wet sounds as _heU slurps down the cum that already escaped, and then you feel _hisU soft lips pressed to your vulva as _heU steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your inhuman sperm production. There's always the tap from $dairyName of course, but this way you don't have to worry about getting pregnant. That last thought gives you pause. You can't get yourself pregnant... right? 
 	
 	<<elseif $PC.balls == 2>>
-		Calling over your closest slave, you order her to bring you one of the enema syringes from the slave quarters. She rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending a steady stream of precum running down to pool on your huge balls. Your pussy is similarly soaked, imagining your latest deviancy has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before she enters carrying the glass enema syringe. Impatient, you give her your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
-		<br><br>Following your instructions, she eagerly drops to her knees and inhales your soaked member. The large volume of precum coming from your swollen prostate necessitates regular swallowing that only adds to your pleasure. You lay back and enjoy yourself as she massages your huge balls before slipping her hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of what comes next, and soon your sack is clenching your huge balls as your body prepares to cum. Recognizing the signs, your slave removes her mouth and replaces it with the open end of the syringe. She takes her sodden hand from your cunt and starts stroking vigorously, and soon you're spraying massive jets of alabaster cum into the enema syringe. It's good that you decided on an enema syringe instead of a normal dildo suppository, as the huge quantity of fertile semen would have overflowed from a smaller container. 
-		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. She has thoughtfully blocked the tip with the palm of her hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes her hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of her hand, but you don't begrudge her a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more. 
-		You spread your legs into a wide M shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe between your huge balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the nubby plug-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to take both hands and ram that plunger in. Push hard, I want that syringe completely empty when you're done."
-		<br><br>The girl does as she's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, she shoves it back inside you. Seeing the undeniable pleasure on your face, she takes it as permission to continue and quickly picks up the pace. Soon she's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the pointy enema bulb into the opening of your cervix, forcibly stretching it further open with each piercing impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
-		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends thick streams of cum spraying all over the place to coat you and your slave. Seeing her cue, the girl grabs the large plunger with both hands and starts shoving it in the direction of your womb. She leans in, using her body weight to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the whole enema syringe further inside you, causing a blissful stretching sensation as the squirting enema bulb penetrates your cervix to lodge in your womb. 
+		Calling over your closest slave, you order _himU to bring you one of the enema syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending a steady stream of precum running down to pool on your huge balls. Your pussy is similarly soaked, imagining your latest deviancy has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the glass enema syringe. Impatient, you give _himU your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
+		<br><br>Following your instructions, _heU eagerly drops to _hisU knees and inhales your soaked member. The large volume of precum coming from your swollen prostate necessitates regular swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your huge balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of what comes next, and soon your sack is clenching your huge balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying massive jets of alabaster cum into the enema syringe. It's good that you decided on an enema syringe instead of a normal dildo suppository, as the huge quantity of fertile semen would have overflowed from a smaller container. 
+		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _his hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more. 
+		You spread your legs into a wide "M" shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe between your huge balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the nubby plug-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to take both hands and ram that plunger in. Push hard, I want that syringe completely empty when you're done."
+		<br><br>The _girlU does as _heU's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, _heU shoves it back inside you. Seeing the undeniable pleasure on your face, _heU takes it as permission to continue and quickly picks up the pace. Soon _heU's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the pointy enema bulb into the opening of your cervix, forcibly stretching it further open with each piercing impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
+		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends thick streams of cum spraying all over the place to coat you and your slave. Seeing _hisU cue, the _girlU grabs the large plunger with both hands and starts shoving it in the direction of your womb. _HeU leans in, using _hisU body weight to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the whole enema syringe further inside you, causing a blissful stretching sensation as the squirting enema bulb penetrates your cervix to lodge in your womb. 
 		Your orgasm continues unabated, spurred on by the syringe now spraying your cum directly into your womb. You spend a couple minutes that feel like hours cumming as your slave slowly inflates your womb with a liter of your virile cum. 
-		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your stuffed womb from forcing its meal back into the syringe. You give the waiting girl her orders: "pull it out, and use your mouth to keep the mess to a minimum." She gets on her knees and takes a firm grip on the syringe before peering over your swollen belly to make sure you're ready for her to continue. As soon as you give her a nod she pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes her to swiftly yank the rest of the syringe out of you, opening the floodgates for the huge quantity of cum that's stuffed in your womb. Your well-trained slave reacts quickly, hefting your huge balls up and out of the way so she can catch the torrent of jizz that's just starting to pour from your cunt. 
-		You hear some wet sounds as she slurps down the cum that already escaped, and then you feel her soft lips pressed to your vulva as she steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while she works, proud of your ingenious idea to take advantage of your prodigious sperm production. There's always the tap from $dairyName of course, but this way you don't have to worry about getting pregnant. That last thought gives you pause. You can't get yourself pregnant... right?
+		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your stuffed womb from forcing its meal back into the syringe. You give the waiting _girlU _hisU orders: "pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering over your swollen belly to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes _himU to swiftly yank the rest of the syringe out of you, opening the floodgates for the huge quantity of cum that's stuffed in your womb. Your well-trained slave reacts quickly, hefting your huge balls up and out of the way so _heU can catch the torrent of jizz that's just starting to pour from your cunt. 
+		You hear some wet sounds as _heU slurps down the cum that already escaped, and then you feel _hisU soft lips pressed to your vulva as _heU steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your prodigious sperm production. There's always the tap from $dairyName of course, but this way you don't have to worry about getting pregnant. That last thought gives you pause. You can't get yourself pregnant... right?
 	
 	<<elseif $PC.balls == 1>>
-		Calling over your closest slave, you order her to bring you one of the dildo-shaped suppository syringes from the slave quarters. She rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending regular drips of precum running down onto your large balls. Your pussy is similarly soaked, imagining your latest deviancy has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before she enters carrying the remarkably-lifelike dildo syringe. Impatient, you give her your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
-		<br><br>Following your instructions, she eagerly drops to her knees and inhales your straining cock. The extra precum coming from your enhanced prostate necessitates occasional swallowing that only adds to your pleasure. You lay back and enjoy yourself as she massages your large balls before slipping her hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of what comes next, and soon your sack is clenching your large balls as your body prepares to cum. Recognizing the signs, your slave removes her mouth and replaces it with the open end of the syringe. She takes her sodden hand from your cunt and starts stroking vigorously, and soon you're spraying large jets of alabaster cum into the syringe. It's close, the large quantity of fertile semen almost overflows from the dildo suppository. 
-		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. She has thoughtfully blocked the tip with the palm of her hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes her hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of her hand, but you don't begrudge her a small treat. Instead, you get a firm grasp on the silicone of the thick dildo syringe and lay back once more. 
-		You spread your legs into a wide M shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe underneath your large balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the cock-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to ram that plunger in. Push hard, I want that syringe completely empty when you're done."
-		<br><br>The girl does as she's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, she shoves it back inside you. Seeing the undeniable pleasure on your face, she takes it as permission to continue and quickly picks up the pace. Soon she's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the head of the dildo into your cervix, battering it open with each impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
-		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends jets of cum all over the place to land on you and your slave. Seeing her cue, the girl grabs the large plunger and starts shoving it in the direction of your womb. She pushes hard to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the silicone cockhead against your cervix, creating a seal and leaving the syringe free to spray your semen through your battered cervix and into your hungry womb. 
+		Calling over your closest slave, you order _himU to bring you one of the dildo-shaped suppository syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending regular drips of precum running down onto your large balls. Your pussy is similarly soaked, imagining your latest deviancy has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the remarkably-lifelike dildo syringe. Impatient, you give _himU your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
+		<br><br>Following your instructions, _heU eagerly drops to _hisU knees and inhales your straining cock. The extra precum coming from your enhanced prostate necessitates occasional swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your large balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of what comes next, and soon your sack is clenching your large balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying large jets of alabaster cum into the syringe. It's close, the large quantity of fertile semen almost overflowing from the dildo suppository. 
+		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the silicone of the thick dildo syringe and lay back once more. 
+		You spread your legs into a wide "M" shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe underneath your large balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the cock-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to ram that plunger in. Push hard, I want that syringe completely empty when you're done."
+		<br><br>The _girlU does as _heU's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, _heU shoves it back inside you. Seeing the undeniable pleasure on your face, _heU takes it as permission to continue and quickly picks up the pace. Soon _heU's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the head of the dildo into your cervix, battering it open with each impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
+		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends jets of cum all over the place to land on you and your slave. Seeing _hisU cue, the _girlU grabs the large plunger and starts shoving it in the direction of your womb. _HeU pushes hard to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the silicone cockhead against your cervix, creating a seal and leaving the syringe free to spray your semen through your battered cervix and into your hungry womb. 
 		Your orgasm continues unabated, spurred on by warm fluid flowing into your womb. You spend a minute that feel like an hour cumming as your slave slowly fills your womb with a few deciliters of virile cum. 
-		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the dildo inside you to keep you plugged up. You give the waiting girl her orders: "pull it out, and use your mouth to keep the mess to a minimum." She gets on her knees and takes a firm grip on the syringe before peering up at you to make sure you're ready for her to continue. As soon as you give her a nod she pulls the dildo free, opening the floodgates for the cum that's filling your womb. Your well-trained slave reacts quickly, lifting your large balls up and out of the way so she can catch the stream of jizz that's just starting to pour from your cunt. 
-		You hear some wet sounds as she slurps down the cum that already escaped, and then you feel her soft lips pressed to your vulva as she steadfastly works to drink the escaping semen. You relax and enjoy the afterglow of your orgasms while she works, proud of your ingenious idea to take advantage of your considerable sperm production. There's always the tap from $dairyName of course, but this way you don't have to worry about getting pregnant. That last thought gives you pause. You can't get yourself pregnant... right?
+		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the dildo inside you to keep you plugged up. You give the waiting _girlU _hisU orders: "pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering up at you to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls the dildo free, opening the floodgates for the cum that's filling your womb. Your well-trained slave reacts quickly, lifting your large balls up and out of the way so _heU can catch the stream of jizz that's just starting to pour from your cunt. 
+		You hear some wet sounds as _heU slurps down the cum that already escaped, and then you feel _hisU soft lips pressed to your vulva as _heU steadfastly works to drink the escaping semen. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your considerable sperm production. There's always the tap from $dairyName of course, but this way you don't have to worry about getting pregnant. That last thought gives you pause. You can't get yourself pregnant... right?
 	
 	<<else>>
-		Calling over your closest slave, you order her to bring you one of the dildo-shaped suppository syringes from the slave quarters. She rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, a large droplet of precum hanging from the head. Your pussy is similarly soaked, imagining your latest deviancy has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before she enters carrying the remarkably-lifelike dildo syringe. Impatient, you give her your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
-		<br><br>Following your instructions, she eagerly drops to her knees and inhales your straining cock. You lay back and enjoy yourself as she massages your balls before slipping her hand downward to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of what comes next, and soon your sack is clenching tightly as your body prepares to cum. Recognizing the signs, your slave removes her mouth and replaces it with the open end of the syringe. She takes her sodden hand from your cunt and starts stroking vigorously, and soon you're spraying jets of alabaster cum into the syringe. It's a powerful orgasm, but you only manage to fill a quarter of it. 
-		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. She has thoughtfully blocked the tip with the palm of her hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the syringe over so that the business end is pointing upward, and the slave removes her hand while you make sure the plunger is inserted far enough that you've gotten all the air out of the syringe. Your slave eagerly licks the drop of cum off the palm of her hand, but you don't begrudge her a small treat. Instead, you get a firm grasp on the silicone of the thick dildo syringe and lay back once more. 
-		You spread your legs into a wide M shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe underneath your balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the cock-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to ram that plunger in. I want that syringe completely empty when you're done."
-		<br><br>The girl does as she's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, she shoves it back inside you. Seeing the undeniable pleasure on your face, she takes it as permission to continue and quickly picks up the pace. Soon she's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the head of the dildo into your cervix, battering it open with each impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
-		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends several jets of cum to land on your reclined body. Seeing her cue, the girl grabs the large plunger and starts shoving it in the direction of your womb. She pushes hard to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the silicone cockhead against your cervix, creating a seal and leaving the syringe free to spray your semen through your battered cervix and into your hungry womb. 
+		Calling over your closest slave, you order _himU to bring you one of the dildo-shaped suppository syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, a large droplet of precum hanging from the head. Your pussy is similarly soaked, imagining your latest deviancy has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the remarkably-lifelike dildo syringe. Impatient, you give _himU your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
+		<br><br>Following your instructions, _heU eagerly drops to _hisU knees and inhales your straining cock. You lay back and enjoy yourself as _heU massages your balls before slipping _hisU hand downward to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of what comes next, and soon your sack is clenching tightly as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying jets of alabaster cum into the syringe. It's a powerful orgasm, but you only manage to fill a quarter of it. 
+		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is inserted far enough that you've gotten all the air out of the syringe. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the silicone of the thick dildo syringe and lay back once more. 
+		You spread your legs into a wide "M" shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe underneath your balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the cock-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to ram that plunger in. I want that syringe completely empty when you're done."
+		<br><br>The _girlU does as _heU's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, _heU shoves it back inside you. Seeing the undeniable pleasure on your face, _heU takes it as permission to continue and quickly picks up the pace. Soon _heU's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the head of the dildo into your cervix, battering it open with each impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
+		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends several jets of cum to land on your reclined body. Seeing _hisU cue, the _girlU grabs the large plunger and starts shoving it in the direction of your womb. _HeU pushes hard to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the silicone cockhead against your cervix, creating a seal and leaving the syringe free to spray your semen through your battered cervix and into your hungry womb. 
 		Your orgasm continues unabated, spurred on by the jet of fluid flowing into your womb. Your orgasm soon fades, and you wish that you could produce more than a deciliter of cum to fill yourself with. 
-		<br><br>Now that your orgasm is over, you notice your slave standing by while holding the dildo inside you to keep you plugged up. You give the waiting girl her orders: "pull it out, and use your mouth to keep the mess to a minimum." She gets on her knees and takes a firm grip on the syringe before peering up at you to make sure you're ready for her to continue. As soon as you give her a nod she pulls the dildo free, allowing the cum inside you to leak out. Your well-trained slave reacts quickly, lifting your balls up and out of the way so she can catch the load of jizz before it starts to leak out of your cunt. 
-		You feel her soft lips pressed to your vulva as she works to retrieve her treat. You hear some soft slurping noises and feel a warm tongue worming its way inside you to retrieve any lingering cum. You relax and enjoy the afterglow of your orgasms while she works, proud of your ingenious idea to take advantage of your own balls for a satisfying creampie. There's always a slave to do that, of course, but this way you don't have to worry about getting pregnant. That last thought gives you pause. You can't get yourself pregnant... right?
+		<br><br>Now that your orgasm is over, you notice your slave standing by while holding the dildo inside you to keep you plugged up. You give the waiting _girlU _hisU orders: "pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering up at you to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls the dildo free, allowing the cum inside you to leak out. Your well-trained slave reacts quickly, lifting your balls up and out of the way so _heU can catch the load of jizz before it starts to leak out of your cunt. 
+		You feel _hisU soft lips pressed to your vulva as _heU works to retrieve _hisU treat. You hear some soft slurping noises and feel a warm tongue worming its way inside you to retrieve any lingering cum. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your own balls for a satisfying creampie. There's always a slave to do that, of course, but this way you don't have to worry about getting pregnant. That last thought gives you pause. You can't get yourself pregnant... right?
 	
 	<</if>>
 	<<set _selfPreg = 30+($PC.balls*20)>>
 	<<= knockMeUp($PC, _selfPreg, 0, -1)>>
 <<else>>
 	<<if $PC.balls > 2>>
-		Calling over your closest slave, you order her to bring you one of the high-volume enema syringes from the slave quarters. She rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending rivulets of precum running down to pool on your massive balls. Your pussy is similarly soaked, imagining your belly swelling after your knock yourself up has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before she enters carrying the extra-long enema syringe. Impatient, you give her your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
-		Following your instructions, she eagerly drops to her knees and inhales your soaked member. The large volume of precum coming from your engorged prostate necessitates frequent swallowing that only adds to your pleasure. You lay back and enjoy yourself as she massages your massive balls before slipping her hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of the semi-incestuous stuffing that comes next, and soon your sack is clenching your massive balls as your body prepares to cum. Recognizing the signs, your slave removes her mouth and replaces it with the open end of the syringe. She takes her sodden hand from your cunt and starts stroking vigorously, and soon you're spraying inhumanly large jets of alabaster cum into the enema syringe. It's good that you asked for high-capacity version, as the prodigious quantity of fertile semen would have overflowed from a smaller container. 
-		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. She has thoughtfully blocked the tip with the palm of her hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes her hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of her hand, but you don't begrudge her a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more. 
-		You spread your legs into a wide M shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe between your massive balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the nubby plug-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to take both hands and ram that plunger in. Push hard, I want that syringe completely empty when you're done."
-		<br><br>The girl does as she's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, she shoves it back inside you. Seeing the undeniable pleasure on your face, she takes it as permission to continue and quickly picks up the pace. Soon she's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the pointy enema bulb into the opening of your cervix, forcibly stretching it further open with each piercing impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
-		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends thick streams of cum spraying all over the place to soak you and your slave. Seeing her cue, the girl grabs the large plunger with both hands and starts shoving it in the direction of your womb. She leans in, using her body weight to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the whole enema syringe further inside you, causing a blissful stretching sensation as the squirting enema bulb penetrates your cervix to lodge in your womb. 
+		Calling over your closest slave, you order _himU to bring you one of the high-volume enema syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending rivulets of precum running down to pool on your massive balls. Your pussy is similarly soaked, imagining your belly swelling after you knock yourself up has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the extra-long enema syringe. Impatient, you give _himU your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
+		Following your instructions, _heU eagerly drops to _hisU knees and inhales your soaked member. The large volume of precum coming from your engorged prostate necessitates frequent swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your massive balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of the semi-incestuous stuffing that comes next, and soon your sack is clenching your massive balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying inhumanly large jets of alabaster cum into the enema syringe. It's good that you asked for high-capacity version, as the prodigious quantity of fertile semen would have overflowed from a smaller container. 
+		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more. 
+		You spread your legs into a wide "M" shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe between your massive balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the nubby plug-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to take both hands and ram that plunger in. Push hard, I want that syringe completely empty when you're done."
+		<br><br>The _girlU does as _heU's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, _heU shoves it back inside you. Seeing the undeniable pleasure on your face, _heU takes it as permission to continue and quickly picks up the pace. Soon _heU's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the pointy enema bulb into the opening of your cervix, forcibly stretching it further open with each piercing impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
+		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends thick streams of cum spraying all over the place to soak you and your slave. Seeing _hisU cue, the _girlU grabs the large plunger with both hands and starts shoving it in the direction of your womb. _HeU leans in, using _hisU body weight to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the whole enema syringe further inside you, causing a blissful stretching sensation as the squirting enema bulb penetrates your cervix to lodge in your womb. 
 		Your orgasm continues unabated, spurred on by the syringe now spraying your cum directly into your womb. You spend a couple minutes that feel like hours cumming as your slave slowly inflates your womb with a seemingly-endless volume of your virile cum.
-		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your balloon-like womb from forcing its meal back into the syringe. The nearly 2 liters of cum you have stuffed inside you leaves your stomach looking noticeably distended, prompting you to rub your sloshing belly. You give the waiting girl her orders: "pull it out, and use your mouth to keep the mess to a minimum." She gets on her knees and takes a firm grip on the syringe before peering over your inflated belly to make sure you're ready for her to continue. As soon as you give her a nod she pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes her to swiftly yank the rest of the syringe out of you, opening the floodgates for the colossal quantity of cum inflating your womb. Your well-trained slave reacts quickly, hefting your massive balls up and out of the way so she can catch the torrent of jizz that's just starting to pour from your cunt. 
-		You hear some wet sounds as she slurps down the cum that already escaped, and then you feel her soft lips pressed to your vulva as she steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while she works, proud of your ingenious idea to take advantage of your inhuman sperm production. There's always the tap from $dairyName of course, but why use slave cum when you have such obviously superior material available? 
+		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your balloon-like womb from forcing its meal back into the syringe. The nearly 2 liters of cum you have stuffed inside you leaves your stomach looking noticeably distended, prompting you to rub your sloshing belly. You give the waiting _girlU _hisU orders: "pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering over your inflated belly to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes _himU to swiftly yank the rest of the syringe out of you, opening the floodgates for the colossal quantity of cum inflating your womb. Your well-trained slave reacts quickly, hefting your massive balls up and out of the way so _heU can catch the torrent of jizz that's just starting to pour from your cunt. 
+		You hear some wet sounds as _heU slurps down the cum that already escaped, and then you feel _hisU soft lips pressed to your vulva as _heU steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your inhuman sperm production. There's always the tap from $dairyName of course, but why use slave cum when you have such obviously superior material available? 
 	
 	<<elseif $PC.balls == 2>>
-		Calling over your closest slave, you order her to bring you one of the enema syringes from the slave quarters. She rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending a steady stream of precum running down to pool on your huge balls. Your pussy is similarly soaked, imagining your belly swelling after your knock yourself up has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before she enters carrying the glass enema syringe. Impatient, you give her your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
-		<br><br>Following your instructions, she eagerly drops to her knees and inhales your soaked member. The large volume of precum coming from your swollen prostate necessitates regular swallowing that only adds to your pleasure. You lay back and enjoy yourself as she massages your huge balls before slipping her hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of the semi-incestuous stuffing that comes next, and soon your sack is clenching your huge balls as your body prepares to cum. Recognizing the signs, your slave removes her mouth and replaces it with the open end of the syringe. She takes her sodden hand from your cunt and starts stroking vigorously, and soon you're spraying massive jets of alabaster cum into the enema syringe. It's good that you decided on an enema syringe instead of a normal dildo suppository, as the huge quantity of fertile semen would have overflowed from a smaller container. 
-		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. She has thoughtfully blocked the tip with the palm of her hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes her hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of her hand, but you don't begrudge her a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more. 
-		You spread your legs into a wide M shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe between your huge balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the nubby plug-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to take both hands and ram that plunger in. Push hard, I want that syringe completely empty when you're done."
-		<br><br>The girl does as she's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, she shoves it back inside you. Seeing the undeniable pleasure on your face, she takes it as permission to continue and quickly picks up the pace. Soon she's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the pointy enema bulb into the opening of your cervix, forcibly stretching it further open with each piercing impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
-		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends thick streams of cum spraying all over the place to coat you and your slave. Seeing her cue, the girl grabs the large plunger with both hands and starts shoving it in the direction of your womb. She leans in, using her body weight to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the whole enema syringe further inside you, causing a blissful stretching sensation as the squirting enema bulb penetrates your cervix to lodge in your womb. 
+		Calling over your closest slave, you order _himU to bring you one of the enema syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending a steady stream of precum running down to pool on your huge balls. Your pussy is similarly soaked, imagining your belly swelling after you knock yourself up has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the glass enema syringe. Impatient, you give _himU your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
+		<br><br>Following your instructions, _heU eagerly drops to _hisU knees and inhales your soaked member. The large volume of precum coming from your swollen prostate necessitates regular swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your huge balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of the semi-incestuous stuffing that comes next, and soon your sack is clenching your huge balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying massive jets of alabaster cum into the enema syringe. It's good that you decided on an enema syringe instead of a normal dildo suppository, as the huge quantity of fertile semen would have overflowed from a smaller container. 
+		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more. 
+		You spread your legs into a wide "M" shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe between your huge balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the nubby plug-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to take both hands and ram that plunger in. Push hard, I want that syringe completely empty when you're done."
+		<br><br>The _girlU does as _heU's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, _heU shoves it back inside you. Seeing the undeniable pleasure on your face, _heU takes it as permission to continue and quickly picks up the pace. Soon _heU's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the pointy enema bulb into the opening of your cervix, forcibly stretching it further open with each piercing impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
+		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends thick streams of cum spraying all over the place to coat you and your slave. Seeing _hisU cue, the _girlU grabs the large plunger with both hands and starts shoving it in the direction of your womb. _HeU leans in, using _hisU body weight to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the whole enema syringe further inside you, causing a blissful stretching sensation as the squirting enema bulb penetrates your cervix to lodge in your womb. 
 		Your orgasm continues unabated, spurred on by the syringe now spraying your cum directly into your womb. You spend a couple minutes that feel like hours cumming as your slave slowly inflates your womb with a full liter of your virile cum. 
-		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your stuffed womb from forcing its meal back into the syringe. You give the waiting girl her orders: "pull it out, and use your mouth to keep the mess to a minimum." She gets on her knees and takes a firm grip on the syringe before peering over your swollen belly to make sure you're ready for her to continue. As soon as you give her a nod she pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes her to swiftly yank the rest of the syringe out of you, opening the floodgates for the huge quantity of cum that's stuffed in your womb. Your well-trained slave reacts quickly, hefting your huge balls up and out of the way so she can catch the torrent of jizz that's just starting to pour from your cunt. 
-		You hear some wet sounds as she slurps down the cum that already escaped, and then you feel her soft lips pressed to your vulva as she steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while she works, proud of your ingenious idea to take advantage of your prodigious sperm production. There's always the tap from $dairyName of course, but why use slave cum when you have such obviously superior material available?
+		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your stuffed womb from forcing its meal back into the syringe. You give the waiting _girlU _hisU orders: "pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering over your swollen belly to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes _himU to swiftly yank the rest of the syringe out of you, opening the floodgates for the huge quantity of cum that's stuffed in your womb. Your well-trained slave reacts quickly, hefting your huge balls up and out of the way so _heU can catch the torrent of jizz that's just starting to pour from your cunt. 
+		You hear some wet sounds as _heU slurps down the cum that already escaped, and then you feel _hisU soft lips pressed to your vulva as _heU steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your prodigious sperm production. There's always the tap from $dairyName of course, but why use slave cum when you have such obviously superior material available?
 	
 	<<elseif $PC.balls == 1>>
-		Calling over your closest slave, you order her to bring you one of the dildo-shaped suppository syringes from the slave quarters. She rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending regular drips of precum running down onto your large balls. Your pussy is similarly soaked, imagining your belly swelling after your knock yourself up has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before she enters carrying the remarkably-lifelike dildo syringe. Impatient, you give her your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
-		<br><br>Following your instructions, she eagerly drops to her knees and inhales your straining cock. The extra precum coming from your enhanced prostate necessitates occasional swallowing that only adds to your pleasure. You lay back and enjoy yourself as she massages your large balls before slipping her hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of the semi-incestuous stuffing that comes next, and soon your sack is clenching your large balls as your body prepares to cum. Recognizing the signs, your slave removes her mouth and replaces it with the open end of the syringe. She takes her sodden hand from your cunt and starts stroking vigorously, and soon you're spraying large jets of alabaster cum into the syringe. It's close, the large quantity of fertile semen almost overflows from the dildo suppository. 
-		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. She has thoughtfully blocked the tip with the palm of her hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes her hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of her hand, but you don't begrudge her a small treat. Instead, you get a firm grasp on the silicone of the thick dildo syringe and lay back once more. 
-		You spread your legs into a wide M shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe underneath your large balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the cock-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to ram that plunger in. Push hard, I want that syringe completely empty when you're done."
-		<br><br>The girl does as she's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, she shoves it back inside you. Seeing the undeniable pleasure on your face, she takes it as permission to continue and quickly picks up the pace. Soon she's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the head of the dildo into your cervix, battering it open with each impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
-		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends jets of cum all over the place to land on you and your slave. Seeing her cue, the girl grabs the large plunger and starts shoving it in the direction of your womb. She pushes hard to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the silicone cockhead against your cervix, creating a seal and leaving the syringe free to spray your semen through your battered cervix and into your hungry womb. 
+		Calling over your closest slave, you order _himU to bring you one of the dildo-shaped suppository syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending regular drips of precum running down onto your large balls. Your pussy is similarly soaked, imagining your belly swelling after you knock yourself up has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the remarkably-lifelike dildo syringe. Impatient, you give _himU your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
+		<br><br>Following your instructions, _heU eagerly drops to _hisU knees and inhales your straining cock. The extra precum coming from your enhanced prostate necessitates occasional swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your large balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of the semi-incestuous stuffing that comes next, and soon your sack is clenching your large balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying large jets of alabaster cum into the syringe. It's close, the large quantity of fertile semen almost overflows from the dildo suppository. 
+		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the silicone of the thick dildo syringe and lay back once more. 
+		You spread your legs into a wide "M" shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe underneath your large balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the cock-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to ram that plunger in. Push hard, I want that syringe completely empty when you're done."
+		<br><br>The _girlU does as _heU's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, _heU shoves it back inside you. Seeing the undeniable pleasure on your face, _heU takes it as permission to continue and quickly picks up the pace. Soon _heU's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the head of the dildo into your cervix, battering it open with each impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
+		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends jets of cum all over the place to land on you and your slave. Seeing _hisU cue, the _girlU grabs the large plunger and starts shoving it in the direction of your womb. _HeU pushes hard to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the silicone cockhead against your cervix, creating a seal and leaving the syringe free to spray your semen through your battered cervix and into your hungry womb. 
 		Your orgasm continues unabated, spurred on by warm fluid flowing into your womb. You spend a minute that feel like an hour cumming as your slave slowly fills your womb with a few deciliters of virile cum. 
-		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the dildo inside you to keep you plugged up. You give the waiting girl her orders: "pull it out, and use your mouth to keep the mess to a minimum." She gets on her knees and takes a firm grip on the syringe before peering up at you to make sure you're ready for her to continue. As soon as you give her a nod she pulls the dildo free, opening the floodgates for the cum that's filling in your womb. Your well-trained slave reacts quickly, lifting your large balls up and out of the way so she can catch the stream of jizz that's just starting to pour from your cunt. 
-		You hear some wet sounds as she slurps down the cum that already escaped, and then you feel her soft lips pressed to your vulva as she steadfastly works to drink the escaping semen. You relax and enjoy the afterglow of your orgasms while she works, proud of your ingenious idea to take advantage of your considerable sperm production. There's always the tap from $dairyName of course, but why use slave cum when you have such obviously superior material available?
+		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the dildo inside you to keep you plugged up. You give the waiting _girlU _hisU orders: "pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering up at you to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls the dildo free, opening the floodgates for the cum that's filling in your womb. Your well-trained slave reacts quickly, lifting your large balls up and out of the way so _heU can catch the stream of jizz that's just starting to pour from your cunt. 
+		You hear some wet sounds as _heU slurps down the cum that already escaped, and then you feel _hisU soft lips pressed to your vulva as _heU steadfastly works to drink the escaping semen. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your considerable sperm production. There's always the tap from $dairyName of course, but why use slave cum when you have such obviously superior material available?
 	
 	<<else>>
-		Calling over your closest slave, you order her to bring you one of the dildo-shaped suppository syringes from the slave quarters. She rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, a large droplet of precum hanging from the head. Your pussy is similarly soaked, imagining your belly swelling after your knock yourself up has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before she enters carrying the remarkably-lifelike dildo syringe. Impatient, you give her your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
-		<br><br>Following your instructions, she eagerly drops to her knees and inhales your straining cock. You lay back and enjoy yourself as she massages your balls before slipping her hand downward to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of the semi-incestuous stuffing that comes next, and soon your sack is clenching tightly as your body prepares to cum. Recognizing the signs, your slave removes her mouth and replaces it with the open end of the syringe. She takes her sodden hand from your cunt and starts stroking vigorously, and soon you're spraying jets of alabaster cum into the syringe. It's a powerful orgasm, but you only manage to fill a quarter of it. 
-		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. She has thoughtfully blocked the tip with the palm of her hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the syringe over so that the business end is pointing upward, and the slave removes her hand while you make sure the plunger is inserted far enough that you've gotten all the air out of the syringe. Your slave eagerly licks the drop of cum off the palm of her hand, but you don't begrudge her a small treat. Instead, you get a firm grasp on the silicone of the thick dildo syringe and lay back once more. 
-		You spread your legs into a wide M shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe underneath your balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the cock-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to ram that plunger in. I want that syringe completely empty when you're done."
-		<br><br>The girl does as she's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, she shoves it back inside you. Seeing the undeniable pleasure on your face, she takes it as permission to continue and quickly picks up the pace. Soon she's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the head of the dildo into your cervix, battering it open with each impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
-		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends several jets of cum to land on your reclined body. Seeing her cue, the girl grabs the large plunger and starts shoving it in the direction of your womb. She pushes hard to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the silicone cockhead against your cervix, creating a seal and leaving the syringe free to spray your semen through your battered cervix and into your hungry womb. 
+		Calling over your closest slave, you order _himU to bring you one of the dildo-shaped suppository syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, a large droplet of precum hanging from the head. Your pussy is similarly soaked, imagining your belly swelling after you knock yourself up has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the remarkably-lifelike dildo syringe. Impatient, you give _himU your instructions: "pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started." 
+		<br><br>Following your instructions, _heU eagerly drops to _hisU knees and inhales your straining cock. You lay back and enjoy yourself as _heU massages your balls before slipping _hisU hand downward to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of the semi-incestuous stuffing that comes next, and soon your sack is clenching tightly as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying jets of alabaster cum into the syringe. It's a powerful orgasm, but you only manage to fill a quarter of it. 
+		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is inserted far enough that you've gotten all the air out of the syringe. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the silicone of the thick dildo syringe and lay back once more. 
+		You spread your legs into a wide "M" shape, as if preparing for a gynecological exam. You can't demean yourself by allowing your slave to penetrate you, so you carefully position the girthy syringe underneath your balls and slowly shove it into your pussy. Adjusting your grip, you keep pushing; you're unable to suppress a moan when you feel the cock-like tip knock at the entrance of your womb. Thoroughly penetrated, you lay back and give your slave instructions. "Fuck me good and hard with the syringe until I cum. When I do, I want you to ram that plunger in. I want that syringe completely empty when you're done."
+		<br><br>The _girlU does as _heU's told, getting a firm grip on the syringe and pushing in slightly before drawing it outward. After a brief pause, _heU shoves it back inside you. Seeing the undeniable pleasure on your face, _heU takes it as permission to continue and quickly picks up the pace. Soon _heU's fucking you hard and fast with the syringe. Thanks to the position caused by your widely-splayed legs, your fertile womb is lined up perfectly for each thrust to slam the head of the dildo into your cervix, battering it open with each impact. The sensation is too much to bear after having cum so recently, and you rapidly moan your way towards another orgasm. 
+		Your fevered thoughts are focused on the perverse pleasure of giving yourself a creampie, intensifying the extreme pleasure you're feeling. Soon you are cumming with a scream of ecstasy, your neglected cock making your orgasm obvious as it sends several jets of cum to land on your reclined body. Seeing _hisU cue, the _girlU grabs the large plunger and starts shoving it in the direction of your womb. _HeU pushes hard to help fight the resistance of your richly-thick and fertile semen that's filling the syringe. The pressure forces the silicone cockhead against your cervix, creating a seal and leaving the syringe free to spray your semen through your battered cervix and into your hungry womb. 
 		Your orgasm continues unabated, spurred on by the jet of fluid flowing into your womb. Your orgasm soon fades, and you wish that you could produce more than a deciliter of cum to fill yourself with. 
-		<br><br>Now that your orgasm is over, you notice your slave standing by while holding the dildo inside you to keep you plugged up. You give the waiting girl her orders: "pull it out, and use your mouth to keep the mess to a minimum." She gets on her knees and takes a firm grip on the syringe before peering up at you to make sure you're ready for her to continue. As soon as you give her a nod she pulls the dildo free, allowing the cum inside you to leak out. Your well-trained slave reacts quickly, lifting your balls up and out of the way so she can catch the load of jizz before it starts to leak out of your cunt. 
-		You feel her soft lips pressed to your vulva as she works to retrieve her treat. You hear some soft slurping noises and feel a warm tongue worming its way inside you to retrieve any lingering cum. You relax and enjoy the afterglow of your orgasms while she works, proud of your ingenious idea to take advantage of your own balls for a satisfying creampie. There's always a slave to do that, of course, but why use slave cum when you have such obviously superior material available?
+		<br><br>Now that your orgasm is over, you notice your slave standing by while holding the dildo inside you to keep you plugged up. You give the waiting _girlU _hisU orders: "pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering up at you to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls the dildo free, allowing the cum inside you to leak out. Your well-trained slave reacts quickly, lifting your balls up and out of the way so _heU can catch the load of jizz before it starts to leak out of your cunt. 
+		You feel _hisU soft lips pressed to your vulva as _heU works to retrieve _hisU treat. You hear some soft slurping noises and feel a warm tongue worming its way inside you to retrieve any lingering cum. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your own balls for a satisfying creampie. There's always a slave to do that, of course, but why use slave cum when you have such obviously superior material available?
 	
 	<</if>>
 	<<= knockMeUp($PC, 100, 0, -1)>>
diff --git a/src/pregmod/beastFucked.tw b/src/pregmod/beastFucked.tw
index d9e2b2b6d5a3e7d625a34fc2b5c261160894756c..e70e66765c35348c8e8e934ecaf5374ca999aa36 100644
--- a/src/pregmod/beastFucked.tw
+++ b/src/pregmod/beastFucked.tw
@@ -159,7 +159,7 @@
 		<<if ($activeSlave.devotion <= 20)>>
 			and only the threat of worse punishment prevents $him from running out of the room.
 		<</if>>
-			 You have $him <<if ($activeSlave.clothing != "naked") && (_sexAct != "oral")>>take off $his clothing and <</if>><<if ($activeSlave.collar != "no collar" || $activeSlave.collar != "none")>>$his $activeSlave.collar, then <</if>><<if _sexAct == "oral">>lay <<else>>kneel <</if>>down on the floor <<if _sexAct != "oral">>with $his ass in the air<<else>>on $his back<</if>>
+			 You have $him <<if ($activeSlave.clothing != "naked") && (_sexAct != "oral")>>take off $his clothing, then <</if>><<if _sexAct == "oral">>lay <<else>>kneel <</if>>down on the floor <<if _sexAct != "oral">>with $his ass in the air<<else>>on $his back<</if>>
 	<<else>>
 		and $Bodyguard.slaveName has to physically prevent $him from running out of the room<<if random(1,100) > 75>><<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>>, resulting in a $activeSlave.minorInjury. <<else>>. <</if>>You <<if ($activeSlave.clothing != "naked")>>force $him to take off $his $activeSlave.clothing and <</if>>restrain $him on the floor <<if _sexAct != "oral">>with $his ass in the air<<else>>with a ring gag in $his mouth<</if>> -- all the while ignoring $his screams and pleas for mercy --
 	<</if>>
diff --git a/src/pregmod/eliteTakeOverResult.tw b/src/pregmod/eliteTakeOverResult.tw
index f8b3aaa2bd1b91df60e0e1596ca50ed945d75d2e..dd187bfd70a8019bef2d55bd01806f3f3d438782 100644
--- a/src/pregmod/eliteTakeOverResult.tw
+++ b/src/pregmod/eliteTakeOverResult.tw
@@ -2,6 +2,11 @@
 
 <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */
 
+<<if $Bodyguard != 0>>
+	<<setLocalPronouns $Bodyguard>>
+<</if>>
+<<setNonlocalPronouns $seeDicks>>
+
 <<switch $eliteFate>>
 <<case 0>>
 	<<if $MercenariesMessageSent == 1>>
@@ -46,7 +51,7 @@
 		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite are quickly captured, abused and enslaved.
 		The officer is thankful for giving the troops a chance to let off some stream. Two soldiers decide to double team an elite; one ass fucks while the other facefucks.
 		Another soldier takes a particular interest in an elite and politely asks you
-		"<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>> can I keep her?"
+		"<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>> can I keep _himU?"
 		<br><span id="choice1">
 			<<link "No">>
 				<<replace "#choice1">>
@@ -57,20 +62,20 @@
 			<<link "Yes">>
 				<<set $rep += 500, $eliteLeft -= 1>>
 				<<replace "#choice1">>
-					For a second your acceptance shocks them. Once they recover they are very grateful. "Thank you <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>, I'll make sure to look after her. Soon the story spreads of the kind arcology owner, enhancing your reputation.
+					For a second your acceptance shocks them. Once they recover they are very grateful. "Thank you <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>, I'll make sure to look after _himU. Soon the story spreads of the kind arcology owner, enhancing your reputation.
 				<</replace>>
 			<</link>>
 		</span>
 	<<elseif $SpecialForcesMessageSent>>
 		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite are quickly captured, abused and enslaved.
 		<<if $SF.Depravity <= 0.3>>
-			Two soldiers decide to double team an elite; one gropes her ass while the other gropes her tits.
+			Two soldiers decide to double team an elite; one gropes _hisU ass while the other gropes _hisU tits.
 		<<elseif $SF.Depravity <= 1.2>>
 			Two soldiers decide to double team an elite; one ass fucks while the other facefucks.
 		<<else>>
 			Two soldiers decide to double team an elite; one breaks out their knife and begins to make little breaks in the elite's skin while the other soldier facefucks them.
 		<</if>>
-		Another soldier takes a particular interest in an elite and politely asks you "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>> can I keep her?"
+		Another soldier takes a particular interest in an elite and politely asks you "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>> can I keep _himU?"
 		<br><span id="choice1">
 			<<link "No">>
 				<<set _SFHappyEverAfter = 0>>
@@ -82,7 +87,7 @@
 			<<link "Yes">>
 				<<set $rep += 500, $eliteLeft -= 1, _SFHappyEverAfter = 1>>
 				<<replace "#choice1">>
-					For a second your acceptance shocks them. Once they recover they are very grateful. "Thank you <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>, I'll make sure to look after her. Soon the story spreads of the kind arcology owner, enhancing your reputation.
+					For a second your acceptance shocks them. Once they recover they are very grateful. "Thank you <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>, I'll make sure to look after _himU. Soon the story spreads of the kind arcology owner, enhancing your reputation.
 				<</replace>>
 			<</link>>
 		</span>
@@ -99,10 +104,10 @@
 		<<if $arcologies[0].FSDegradationist != "unset">>
 			An evil smile appears on the faces of your loyal citizens, while the surviving elite freeze in terror. The impromptu festivity will go on for hours, getting more and more depraved.
 		<<else>>
-			While some citizens respectfully step out, some join you in the fun. The impromptu festivity will go on for hours, getting more and more depraved.
+			While some citizens respectfully step out, some join you in the fun. The impromptu festivities will go on for hours, getting more and more depraved.
 		<</if>>
 	<<else>>
-		<<if $Bodyguard.fetish == "sadist">>$Bodyguard.slaveName's gets out her melee weapon and starts to give them many small cuts, the look of pleasure on her face is evident.<<else>>$Bodyguard.slaveName's ties them and then gets out her melee weapon and starts to abuse them, her face is blank.<</if>>
+		<<if $Bodyguard.fetish == "sadist">>$Bodyguard.slaveName gets out $his melee weapon and starts to give them many small cuts, the look of pleasure on $his face is evident.<<else>>$Bodyguard.slaveName ties them and then gets out $his melee weapon and starts to abuse them, $his face is blank.<</if>>
 		<br>Shortly after, the terrified <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite are quickly brought away to be officially enslaved.
 	<</if>>
 <</switch>>
@@ -113,7 +118,18 @@
 		<<set $activeSlaveOneTimeMinAge = 25>>
 		<<set $activeSlaveOneTimeMaxAge = ($retirementAge-2)>>
 		<<set $oneTimeDisableDisability = 1>>
-		<<if random(1,100) > 50>> /* 50% chance of getting girl or boy */
+		<<if $arcologies[0].FSSupremacistLawME == 1>>
+			<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
+		<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
+			<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
+			<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+			<<set $fixedRace = _races.random()>>
+		<</if>>
+		<<if $seeDicks == 0>>
+			<<include "Generate XX Slave">>
+		<<elseif $seeDicks == 100>>
+			<<include "Generate XY Slave">>
+		<<elseif random(1,100) > 50>> /* 50% chance of getting girl or boy */
 			<<include "Generate XX Slave">>
 		<<else>>
 			<<include "Generate XY Slave">>
@@ -121,7 +137,7 @@
 		<<set _origin = "She was a member of the Societal Elite, captured in their failed attempt at expressing their displeasure.">>
 		<<set $activeSlave.origin = _origin>>
 		<<set $activeSlave.career = "a well connected individual">>
-		<<set $activeSlave.prestige = either(2,2,3)>> 		/* 33% chance of getting level 3 prestige */
+		<<set $activeSlave.prestige = either(2,2,3)>> /* 33% chance of getting level 3 prestige */
 		<<set $activeSlave.prestigeDesc = "She was once considered influential in society, but now she's the one getting fucked.">>
 		<<set $activeSlave.face = random(70,100)>>
 		<<set $activeSlave.devotion = random(-10,-20)>>
@@ -147,7 +163,18 @@
 		<<set $activeSlaveOneTimeMinAge = 25>>
 		<<set $activeSlaveOneTimeMaxAge = ($retirementAge-2)>>
 		<<set $oneTimeDisableDisability = 1>>
-		<<if random(1,100) > 50>> 							/* 50% chance of getting girl or boy */
+		<<if $arcologies[0].FSSupremacistLawME == 1>>
+			<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
+		<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
+			<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
+			<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+			<<set $fixedRace = _races.random()>>
+		<</if>>
+		<<if $seeDicks == 0>>
+			<<include "Generate XX Slave">>
+		<<elseif $seeDicks == 100>>
+			<<include "Generate XY Slave">>
+		<<elseif random(1,100) > 50>> /* 50% chance of getting girl or boy */
 			<<include "Generate XX Slave">>
 		<<else>>
 			<<include "Generate XY Slave">>
@@ -160,7 +187,7 @@
 		<<set $activeSlave.face = random(70,100)>>
 		<<set $activeSlave.devotion = random(-10,-20)>>
 		<<set $activeSlave.trust = random(-20,-30)>>
-		<<if $eliteFate == 2 && random(1,100) >= 75>>		/* 25% chance of getting mindbroken elites if they were abused */
+		<<if $eliteFate == 2 && random(1,100) >= 75>> /* 25% chance of getting mindbroken elites if they were abused */
 			<<set $activeSlave.fetish = "mindbroken">>
 		<</if>>
 		<<if $activeSlave.boobShape == "saggy" || $activeSlave.boobShape == "downward-facing">>
diff --git a/src/pregmod/fMarry.tw b/src/pregmod/fMarry.tw
index 7544aa821262e96c504810cb41878bcf9f037b08..78b7f6cf7947c286a06785b25e4a60c4f6f66dad 100644
--- a/src/pregmod/fMarry.tw
+++ b/src/pregmod/fMarry.tw
@@ -42,7 +42,7 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of
 	$He doesn't react.
 	<<set _reactionType = 0>>
 <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-	You're not exactly lacking in ways to make <<if $activeSlave.physicalAge > 30>>women<<else>>girls<</if>> burst into tears, but this one is unusually effective. When $he's gotten $himself under control again, <<if $activeSlave.amp == 1>>looking somewhat embarrassed that $he can't wipe $his own tears<<else>>distractedly cuffing away $his tears<</if>> and consciously breathing deeply,
+	You're not exactly lacking in ways to make <<if $activeSlave.physicalAge > 30>>$women<<else>><<= $girl>>s<</if>> burst into tears, but this one is unusually effective. When $he's gotten $himself under control again, <<if $activeSlave.amp == 1>>looking somewhat embarrassed that $he can't wipe $his own tears<<else>>distractedly cuffing away $his tears<</if>> and consciously breathing deeply,
 	<<if canTalk($activeSlave)>>
 		$he <<say>>s,
 		<<if $activeSlave.relationship != 0>>
@@ -122,7 +122,7 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of
 	Despite $his devotion and trust, $he is still a slave, and probably knows that $his position could always change. This brings $him one step closer to true permanence, and $he knows it.
 	<<set _reactionType = 1>>
 <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-	You're not exactly lacking in ways to make <<if $activeSlave.physicalAge > 30>>women<<else>>girls<</if>> burst into tears, but this one is surprisingly effective. It seems $activeSlave.slaveName does not want to marry you, if $his prolonged, anguished sobbing is anything to go by. However, $he would have to be a fool to think there's any way out of it.
+	You're not exactly lacking in ways to make <<if $activeSlave.physicalAge > 30>>$women<<else>><<= $girl>>s<</if>> burst into tears, but this one is surprisingly effective. It seems $activeSlave.slaveName does not want to marry you, if $his prolonged, anguished sobbing is anything to go by. However, $he would have to be a fool to think there's any way out of it.
 	<<if canTalk($activeSlave)>>
 		$He <<say>>s, "Plea<<s>>e <<Master>>, I don't want to
 		<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
@@ -202,7 +202,7 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of
 	Despite $his "fortune", $he is still a slave, and undoubtedly knows that $his position could easily change should you tire of $him. $His tears may not all be genuine either, you have a feeling $he may be trying to take advantage of you.
 	<<set _reactionType = 2>>
 <<elseif $activeSlave.devotion < -20>>
-	You're not exactly lacking in ways to make <<if $activeSlave.physicalAge > 30>>women<<else>>girls<</if>> burst into tears, but this one is unusually effective. It seems $activeSlave.slaveName does not want to marry you, if $his prolonged, anguished sobbing is anything to go by. However, $he would have to be a fool to think there's any way out of it. You lean in and whisper that
+	You're not exactly lacking in ways to make <<if $activeSlave.physicalAge > 30>>$women<<else>><<= $girl>>s<</if>> burst into tears, but this one is unusually effective. It seems $activeSlave.slaveName does not want to marry you, if $his prolonged, anguished sobbing is anything to go by. However, $he would have to be a fool to think there's any way out of it. You lean in and whisper that
 	<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
 		<<if ($activeSlave.fetish == "submissive")>>
 			$he'll make the perfect submissive wife for you dominate.
diff --git a/src/pregmod/pAssociatesPublicSlut.tw b/src/pregmod/pAssociatesPublicSlut.tw
index 462790b2f725543d70f7f79988b19822fd73d385..839f760d0a3721c785b6e7676a88b81cdb9c9adc 100644
--- a/src/pregmod/pAssociatesPublicSlut.tw
+++ b/src/pregmod/pAssociatesPublicSlut.tw
@@ -2,7 +2,7 @@
 
 <<set $nextButton = "Continue", $nextLink = "RIE Eligibility Check", _num = random(1,99)>>
 
-The Promenade is especially vibrant today, humming with activity as the wealthier of ''$arcologies[0].name'''s citizens go about their business and pleasure. You are a regular sight here, leisurely strolling amidst the bustle of the many shops, boutiques and eateries that line the wide thoroughfare. These regular strolls are, of course, timed in order to allow the citizenry, particularly high society, to feel your presence. Its not all about optics though, there are frequent opportunities for pleasure during these outings, be it shopping, dining or more unique kinds of distraction. One such opportunity presents itself today.
+The Promenade is especially vibrant today, humming with activity as the wealthier of ''$arcologies[0].name'''s citizens go about their business and pleasure. You are a regular sight here, leisurely strolling amidst the bustle of the many shops, boutiques and eateries that line the wide thoroughfare. These regular strolls are, of course, timed in order to allow the citizenry, particularly high society, to feel your presence. It's not all about optics though, as there are frequent opportunities for pleasure during these outings, be it shopping, dining or more unique kinds of distraction. One such opportunity presents itself today.
 
 <br><br>
 
@@ -17,11 +17,11 @@ You take a detour down one of the minor byways that feed into the Promenade prop
 <br><br>
 
 <<if _num < $seeDicks>>
-	The one restraining him is a business associate of yours. She's a beautiful woman who cuts a gorgeous figure in her expensive, tasteful business attire. You have some rapport with one another and she greets you cheerily and you make small talk as she finishes up shackling her newly minted slave. He was, she explains, her boyfriend, who had accrued significant debt due to his severe lack of business sense and tact. She had bought out his debt in order to save him from enslavement, only to find out not long after that he had been cheating on her with another free woman. Since she owned his debt, it took only a few formalities to turn him into her property as revenge. "Since he likes sluts so much, I'm going to turn him into one!" She giggles, while stroking the struggling traps luxurious bleach blond hair. Her eyes light up as her gaze returns to you. You know whats coming, and are surprised it took this long for it to occur to her. She reaches around her slave and spreads his ass cheeks. "<<if $PC.title == 1>>Sir<<else>> Ma'am<</if>>, it would honor me if you fucked him!"
+	The one restraining him is a business associate of yours. She's a beautiful woman who cuts a gorgeous figure in her expensive, tasteful business attire. You have some rapport with one another and she greets you cheerily and you make small talk as she finishes up shackling her newly minted slave. He was, she explains, her boyfriend, who had accrued significant debt due to his severe lack of business sense and tact. She had bought out his debt in order to save him from enslavement, only to find out not long after that he had been cheating on her with another free woman. Since she owned his debt, it took only a few formalities to turn him into her property as revenge. "Since he likes sluts so much, I'm going to turn him into one!" She giggles, while stroking the struggling traps luxurious bleach blond hair. Her eyes light up as her gaze returns to you. You know what's coming, and are surprised it took this long for it to occur to her. She reaches around her slave and spreads his ass cheeks. "<<if $PC.title == 1>>Sir<<else>> Ma'am<</if>>, it would honor me if you fucked him!"
 
 	You consider the slave's anus. Your associate has clearly spent all day customizing her new toy, it looks freshly bleached and is smooth and inviting. It effectively has been transformed into a sex organ.
 <<else>>
-	The one restraining her is a business associate of yours. He's a well built man who cuts a handsome figure in his expensive, tasteful business attire. You have some rapport with one another and he greets you cheerily and you make small talk as he finishes up shackling his newly minted slave. She was, he explains, his girlfriend, who had accrued significant debt due to her severe lack of business sense and tact. He had bought out her debt in order to save her from enslavement, only to find out not long after that she had been cheating on him with another free woman. Since he owned her debt, it took only a few formalities to turn her into his property as revenge. "She was already a slut, I've simply made her look the part, and play it more honestly!" he chuckles, while fondling the struggling bimbo's ample ass. He favors you with a rueful smile as his gaze returns to you. You know whats coming, and are surprised it took this long for it to occur to him. He reaches around his slave and spreads her ass cheeks. "<<if $PC.title == 1>>Sir<<else>> Ma'am<</if>>, it would honor me if you fucked her! Ive had her hymen restored just a few hours ago, first time is all yours if you want it."
+	The one restraining her is a business associate of yours. He's a well built man who cuts a handsome figure in his expensive, tasteful business attire. You have some rapport with one another and he greets you cheerily and you make small talk as he finishes up shackling his newly minted slave. She was, he explains, his girlfriend, who had accrued significant debt due to her severe lack of business sense and tact. He had bought out her debt in order to save her from enslavement, only to find out not long after that she had been cheating on him with another free man. Since he owned her debt, it took only a few formalities to turn her into his property as revenge. "She was already a slut, I've simply made her look the part, and play it more honestly!" he chuckles, while fondling the struggling bimbo's ample ass. He favors you with a rueful smile as his gaze returns to you. You know what's coming, and are surprised it took this long for it to occur to him. He reaches around his slave and spreads her ass cheeks. "<<if $PC.title == 1>>Sir<<else>> Ma'am<</if>>, it would honor me if you fucked her! I've had her hymen restored just a few hours ago, first time is all yours if you want it."
 
 	You consider the slave's pussy. Your associate has clearly spent all day customizing his new toy, it looks tight and inviting. Surprisingly, she's quite moist, indicating that in spite of her struggling, she's actually rather aroused, seems she has a bit of a fetish for humiliation. She'll assuredly make an excellent slave if that's the case.
 <</if>>
@@ -34,7 +34,7 @@ You take a detour down one of the minor byways that feed into the Promenade prop
 		<<if _num < $seeDicks>>
 			Taking a slave's anal virginity is hardly novel for you, yet somehow it never stops being fun. You grab the bottle of lubricant your associate has left out for use and begin to generously lubricate his asshole <<if $PC.dick == 0>>. You also reach for one of the brand new strap-ons she has left out for ladies who wish to avail of her slut, tearing it eagerly from its box.<<else>>.<</if>> He begins to moan as you gently probe his anus with the tip of <<if $PC.dick == 0>>the strap on<<else>>your cock<</if>>. Slowly, you get a little deeper with every third or fourth thrust of your hips. You grab on to his petite, feminine waist as you work, occasionally using one hand to hold him roughly by the hair, neck or shoulder, or to smack his butt. Your business associate makes no attempt to hide her obvious arousal at the sight of <<if $PC.dick == 0>>the formidable dildo<<else>>your formidable cock<</if>> pounding some obedience into her slave, and flirts shamelessly with you as you work. <<if $PC.dick == 0>>The slave climaxes, and while you don't quite join him, watching him squirm helplessly underneath you as you used his ass has left you intensely aroused.<<else>>The slaves tight anal muscles massage your cock as he orgasms, bringing you to climax as well.<</if>> Your associate's face is flushed after the spectacle, though considering the disappointing size of her new slaves penis its hardly surprising that she's so thirsty for male attention. She offers to "serve you some refreshments" back at her apartment, an offer you happily take her up on. As you depart with her, a mass of curious socialites converge on the helpless sissy, eager to try his asshole out, since being fucked by the owner of the arcology has instantly, albeit temporarily, made him very fashionable. 
 		<<else>>
-			Taking a slaves virginity is hardly novel for you, yet somehow it never stops being fun. You consider the bottle of lubricant your associate has left out for use and then decide it's unnecessary, since the slutty bitch is already quite wet. <<if $PC.dick == 0>>You do however reach for one of the brand new strap-ons he has left out for ladies who wish to avail of his slut, tearing it eagerly from its box.<</if>> She begins to moan as you gently probe her pussy with the tip of <<if $PC.dick == 0>>the strap on<<else>>your cock<</if>>. Slowly, you get a little deeper with every third or fourth thrust of your hips. You grab on to her petite, feminine waist as you work, occasionally using one hand to hold her roughly by the hair, neck or shoulder, or to smack her butt. Your business associate can't keep the smug smile off his face as he watches you pound some obedience into his slave. You know nothing puts a bitch in her place harder than discovering the secret rapture of being fucked just the way she didn't even know she likes it, and focus on exploiting her apparent humiliation fetish.<<if $PC.dick == 0>> She climaxes indecently hard from your expert, hard, but just tender enough loving.<<else>> Her tight pussy brings you to climax after a hard fucking and the sensation of being filled with your semen is enough to bring about her orgasm as well.<</if>> Your associate is extremely impressed with your performance and eager to ask for some slave-breaking tips. You're more than happy to offer a little advice, considering he's new to the game, and the two of you walk off together to find somewhere where you can get refreshments as you discuss. As you depart, a mass of curious socialites converge on the helpless slut, eager to try her holes out, since being fucked by the owner of the arcology has instantly, albeit temporarily, made her very fashionable. 
+			Taking a slave's virginity is hardly novel for you, yet somehow it never stops being fun. You consider the bottle of lubricant your associate has left out for use and then decide it's unnecessary, since the slutty bitch is already quite wet. <<if $PC.dick == 0>>You do however reach for one of the brand new strap-ons he has left out for ladies who wish to avail of his slut, tearing it eagerly from its box.<</if>> She begins to moan as you gently probe her pussy with the tip of <<if $PC.dick == 0>>the strap on<<else>>your cock<</if>>. Slowly, you get a little deeper with every third or fourth thrust of your hips. You grab on to her petite, feminine waist as you work, occasionally using one hand to hold her roughly by the hair, neck or shoulder, or to smack her butt. Your business associate can't keep the smug smile off his face as he watches you pound some obedience into his slave. You know nothing puts a bitch in her place harder than discovering the secret rapture of being fucked just the way she didn't even know she likes it, and focus on exploiting her apparent humiliation fetish.<<if $PC.dick == 0>> She climaxes indecently hard from your expert, hard, but just tender enough loving.<<else>> Her tight pussy brings you to climax after a hard fucking and the sensation of being filled with your semen is enough to bring about her orgasm as well.<</if>> Your associate is extremely impressed with your performance and eager to ask for some slave-breaking tips. You're more than happy to offer a little advice, considering he's new to the game, and the two of you walk off together to find somewhere where you can get refreshments as you discuss. As you depart, a mass of curious socialites converge on the helpless slut, eager to try her holes out, since being fucked by the owner of the arcology has instantly, albeit temporarily, made her very fashionable. 
 		<</if>>
 		Your citizens @@.green;appreciated@@ the vigorous show you put on, and the fact that you are @@.green;not too snobby@@ to enjoy the simple pleasure of availing of a public whore once in a while. 
 		<<set $rep += 100>>
@@ -43,9 +43,9 @@ You take a detour down one of the minor byways that feed into the Promenade prop
 <br><<link "Decline, but suggest coffee in the cafe across the street">>
 	<<replace "#result">>
 		<<if _num < $seeDicks>>
-			You decline her offer, but instead offer to buy her coffee at the nearby cafe. You enjoy some especially delicious coffee together while admiring the view of her slaves ass being broken in by a trickle of curious parties, who also occasionally walk around to the other side of the helpless sissy to use his mouth.
+			You decline her offer, but instead offer to buy her coffee at the nearby cafe. You enjoy some especially delicious coffee together while admiring the view of her slave's ass being broken in by a trickle of curious parties, who also occasionally walk around to the other side of the helpless sissy to use his mouth.
 		<<else>>
-			You decline his offer, but instead offer to buy him coffee at the nearby cafe. You enjoy some especially delicious coffee together while admiring the view of his slaves pussy being broken in by a trickle of curious parties, who also occasionally avail of her ass or walk around to the other side of the helpless slut to use her mouth.
+			You decline his offer, but instead offer to buy him coffee at the nearby cafe. You enjoy some especially delicious coffee together while admiring the view of his slave's pussy being broken in by a trickle of curious parties, who also occasionally avail of her ass or walk around to the other side of the helpless slut to use her mouth.
 		<</if>>
 		You trade friendly chit-chat and end up discussing business after a while, eventually striking a minor bargain over some outstanding orders that were causing some grief to your holdings, earning you some @@.yellowgreen;extra cash.@@
 		<<set $cash += random(250,1000)>>
diff --git a/src/pregmod/pInsemination.tw b/src/pregmod/pInsemination.tw
index 54a4f1bf928fa66eeef6505a40ea439627255314..83480d418c13a1153ba1737f490eeb49a41ca88f 100644
--- a/src/pregmod/pInsemination.tw
+++ b/src/pregmod/pInsemination.tw
@@ -62,7 +62,7 @@
 		You arrive at the apartment of the quiet young man. Once he meekly welcomes you inside, you begin to slowly strip, drawing a deep blush to his face and a bulge to his pants. As you continue to tease him, making sure to brush his erection every now and then, he grabs your hand and pulls you into a tight hug. He's clueless. You take him by the hand and lead him to his bed; crawling into it, lying on your back and spreading your legs at him. Finally succeeding to remove his pants, he crawls onto you and hesitatingly penetrates you. It takes some time, but he eventually gets into the swing of things; even managing to coax an orgasm out of you<<if $PC.dick == 1>>, filling your condom with cum,<</if>> before blowing his load deep into your pussy. As he settles in next to you, you try to make your exit, but he asks you to stay and cuddle some. You allow him to rest himself on your <<if $PC.boobs == 1>>breasts<<else>>chest<</if>> as you gently pet him. Before long he has dozed off, giving you the opportunity to slip away. Just as you shut the door, you hear a slight call of "Will I get to see you again?"
 		<<set $virginCount++>>
 	<<elseif $virginCount == 1>>
-		You arrive at the apartment of the boy who's virginity you took. He happily hugs you before pulling you inside and into his bedroom. He certainly has become more assertive since the last time you saw him. He happily suckles from your milky nipple as he tenderly fucks you, making sure to bring you to your climax before releasing his own pent up load deep into your pussy. "I waited for you to come back you know..." He cuddles into her cleavage as you contently embrace him for a post-coital nap. When it's time to leave, he sees you to the door, promising to wait for you once more.
+		You arrive at the apartment of the boy who's virginity you took. He happily hugs you before pulling you inside and into his bedroom. He certainly has become more assertive since the last time you saw him. He happily suckles from your milky nipple as he tenderly fucks you, making sure to bring you to your climax before releasing his own pent up load deep into your pussy. "I waited for you to come back you know..." He cuddles into your cleavage as you contently embrace him for a post-coital nap. When it's time to leave, he sees you to the door, promising to wait for you once more.
 		<<set $virginCount++>>
 	<<else>>
 		You arrive at the apartment of the boy whose virginity you took. He happily hugs you before pulling you inside and into his bedroom. He wastes no time in diving deep into your needy cunt, even going as far as experimenting with new positions as he enjoys his lover's body. Once both of you are exhausted, you cuddle up for you post sex snooze. When it's time to leave, he sees you to the door. "You don't have to go..." He pleads, but you tell him running the arcology comes first.
diff --git a/src/pregmod/reTheSirenStrikesBack.tw b/src/pregmod/reTheSirenStrikesBack.tw
index 82a2d7b264439c3f15b07d5b8f6c2cef4e66f9cc..4acae22f2132e800c02d3422552a9d10ad0c8d6f 100644
--- a/src/pregmod/reTheSirenStrikesBack.tw
+++ b/src/pregmod/reTheSirenStrikesBack.tw
@@ -3,6 +3,10 @@
 <<set $nextButton = "Continue", $nextLink = "Random Nonindividual Event", $returnTo = "Random Nonindividual Event", $showEncyclopedia = 1, $encyclopedia = "Enslaving People">>
 <<set $swanSong = 3>>
 
+<<set _ssb = $slaves.find(function(s) { return s.origin == "She came to you to escape being sold to a cruel master after her producer informed her of her debt." && s.newGamePlus == 0 && s.fetish != "mindbroken" && s.fuckdoll == 0; })>>
+
+<<setLocalPronouns _ssb>>
+
 <<if $pedo_mode == 1>>
 	<<set $activeSlaveOneTimeMinAge = 16>>
 <<else>>
@@ -35,42 +39,43 @@
 <<set $activeSlave.prestigeDesc = "She was a well known music producer infamous for constantly having musicians disappear on her watch.">>
 <<set $activeSlave.accent = 1>>
 
-Several weeks have passed since you gained the musical prodigy and you couldn't help but notice her constant scowl and muttering about "getting revenge one day" or "wishing her producer would pay for what happened" whenever she was not working. You decide to look into the incident and direct $assistantName to look into the financial situation of her record label. It turns out that not only should this slave not be eligible for enslavement due to her performance profits, but a certain someone has been taking that money for themselves. You issue a bounty for her producer and await a response. With surprising speed, an answer comes from a bounty hunter. The underhanded producer never left the arcology, instead opting to make use of the guest living arrangements you had set up for the concert. Only when an announcement of the bounty went out did they realize their peril and attempt to flee. The bounty hunter literally drags the escapee by the collar into your penthouse and throws them at your feet. The coward shivers as your eyes meet theirs.
+<<setLocalPronouns $activeSlave 2>>
+
+Several weeks have passed since you gained the musical prodigy and you couldn't help but notice $his constant scowl and muttering about "getting revenge one day" or "wishing $his producer would pay for what happened" whenever $he was not working. You decide to look into the incident and direct $assistantName to look into the financial situation of $his record label. It turns out that not only should this slave not be eligible for enslavement due to $his performance profits, but a certain someone has been taking that money for themselves. You issue a bounty for $his producer and await a response. With surprising speed, an answer comes from a bounty hunter. The underhanded producer never left the arcology, instead opting to make use of the guest living arrangements you had set up for the concert. Only when an announcement of the bounty went out did _he2 realize _his2 peril and attempt to flee. The bounty hunter literally drags the escapee by the collar into your penthouse and throws _him2 at your feet. The coward shivers as your eyes meet _hers2.
 <br><br>
-"Please, don't hurt me! I'll pay for that slave I sent you to be released, even set her up with the life she would have had if I hadn't embezzled the profits!"
+"Please, don't hurt me! I'll pay for that slave I sent you to be released, even set $him up with the life $he would have had if I hadn't embezzled the profits!"
 <br><br>
-<<set _ssb = $slaves.find(function(s) { return s.origin == "She came to you to escape being sold to a cruel master after her producer informed her of her debt." && s.newGamePlus == 0 && s.fetish != "mindbroken" && s.fuckdoll == 0; })>>
 
 <<if def _ssb>>
 	<<run Enunciate(_ssb)>>
-	 Just as the coward at your feet finishes, _ssb.slaveName
+	 Just as the little weasel at your feet finishes, _ssb.slaveName
 	 <<if canWalk(_ssb)>>
 		walks in,
 	<<else>>
 		is carried in,
 	<</if>>
-	her face quickly donning a scowl of pure anger and hatred.
+	$his face quickly donning a scowl of pure anger and hatred.
 	<<if canTalk(_ssb)>>
-		"<<Master>>, plea<<s>>e let me have my revenge on thi<<s>> de<<s>>picable lowlife," she hisses. "I promi<<s>>e not to kill them, ju<<s>>t hurt them enough to let them know the <<s>>uffering they cau<<s>>ed me."
+		"<<Master>>, plea<<s>>e let me have my revenge on thi<<s>> de<<s>>picable lowlife," $he hisses. "I promi<<s>>e not to kill them, ju<<s>>t hurt them enough to let them know the <<s>>uffering they cau<<s>>ed me."
 	<<else>>
-		She may not be able to talk anymore, but her request of you is very clear across her face.
+		$He may not be able to talk anymore, but $his request of you is very clear across $his face.
 	<</if>>
 
 	<br><br>
 
 	<span id="result">
-	<<link "Enslave them">>
+	<<link "Enslave _him2">>
 		<<replace "#result">>
-		You decide to spare the coward from their former subordinate's wrath and simply enslave them.
+		You decide to spare the coward from _his2 former subordinate's wrath and simply enslave _him2.
 		<br>
 		<<include "New Slave Intro">>
 		<<set $activeSlave.recruiter = 0>>
 		<</replace>>
 	<</link>>
 	<<if _ssb.amp != 1>>
-	<br><<link "Enslave them and throw them to _ssb.slaveName">>
+	<br><<link "Enslave _him2 and throw _him2 to _ssb.slaveName">>
 		<<replace "#result">>
-		You decide to give the victimized prodigy a chance for payback. She moves over to her former boss and begins to caress the despicable coward as they shake with dread of what is to come. As she moves lower, she applies more pressure, peaking right on the genitals. The cowardly former producer yelps in pain, instinctively trying to get away from the hand crushing the most sensitive spot on their body. After several minutes of the coward screaming in pain, the former prodigy gets up and delivers a hard kick to the groin, eliciting another scream and causing her former boss to assume the fetal position. You send for another slave to drag the whimpering former producer to her feet for inspection.
+		You decide to give the victimized prodigy a chance for payback. $He moves over to $his former boss and begins to caress the despicable thief as _he2 shakes with dread of what is to come. As $he moves lower, $he applies more pressure, peaking right on the genitals. The cowardly former executive yelps in pain, instinctively trying to get away from the hand crushing the most sensitive spot on _his2 body. After several minutes of the coward screaming in pain, _his2 former victim gets up and delivers a hard kick to the groin, eliciting another scream and causing $his former boss to assume the fetal position. You send for another slave to drag the whimpering slave-_girl2 to _his2 feet for inspection.
 		<br>
 		<<set $activeSlave.recruiter = 0, $activeSlave.health -= 20>>
 		<<include "New Slave Intro">>
@@ -79,21 +84,21 @@ Several weeks have passed since you gained the musical prodigy and you couldn't
 	<</if>>
 	</span>
 <<else>>
-	You inform the coward at your feet that the slave in question is long gone, making them panic even more at their grim situation.
+	You inform the coward at your feet that the slave in question is long gone, making _him2 panic even more at _his2 grim situation.
 	<br><br>
 	<span id="result">
-	<<link "Enslave them">>
+	<<link "Enslave _him2">>
 		<<replace "#result">>
-		You spare the coward the pain and humiliation you they deserve and simply enslave them.
+		You spare the coward the pain and humiliation _he2 deserves and simply enslave _him2.
 		<br>
 		<<set $activeSlave.recruiter = 0>>
 		<<include "New Slave Intro">>
 		<</replace>>
 	<</link>>
 	<<if _ssb.amp != 1>>
-	<br><<link "Enslave them and punish them for their actions">>
+	<br><<link "Enslave _him2 and punish _him2 for their actions">>
 		<<replace "#result">>
-		You decide the coward needs more punishment. You order a whip brought to you and give her several lashes directly across her exposed genitalia. She cries out with each lash as her nethers accumulate angry red welts, some even bleeding slightly. After the yelps stop, you feel enough punishment has been given for now and have the producer turned slave hauled to her feet for a proper inspection.
+		You decide the coward needs more punishment. You order a whip brought to you and give _him2 several lashes directly across _his2 exposed genitalia. _He2 cries out with each lash as _his2 nethers accumulate angry red welts, some even bleeding slightly. After the yelps stop, you feel enough punishment has been given for now and have the producer turned slave hauled to _his2 feet for a proper inspection.
 		<br>
 		<<set $activeSlave.recruiter = 0, $activeSlave.health -= 20>>
 		<<include "New Slave Intro">>
diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw
index 89ba470077a3f09e71c48f39a9ed9780f624f486..f6098da72e56e53d09d63c7bd03e74b914b4400a 100644
--- a/src/pregmod/widgets/pregmodBirthWidgets.tw
+++ b/src/pregmod/widgets/pregmodBirthWidgets.tw
@@ -311,7 +311,7 @@
 				<<if $slaves[$i].devotion > 20>>
 					$He moans lewdly at you and wiggles $his hips. As $he teases, $he begins pushing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby out. As $he crowns, you pull $him into your arms and hold $him close. You hold $him in a comforting embrace until $he finishes.
 				<<elseif $slaves[$i].devotion >= -20>>
-					$He releases a lewd moan and begins attempting to remove $his clothes. You approach $him, clearing $his vagina and helping $him onto the couch, where you take a seat next to $him to fondle $his vulnerable body. $He begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. Once $he finishes, you give $him some time to catch $his breath.
+					$He releases a lewd moan and begins attempting to remove $his clothes. You approach $him, clearing $his <<if $slaves[$i].mpreg == 1>>asshole<<else>>vagina<</if>> and helping $him onto the couch, where you take a seat next to $him to fondle $his vulnerable body. $He begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. Once $he finishes, you give $him some time to catch $his breath.
 				<<else>>
 					$He begins desperately begging to be taken back to $his bed; instead you pull $him towards the couch and take a seat with $him in your lap, back against your front. Blushing thoroughly, $he gives a meek protest before focusing on the coming birth, rather than your wandering hands. $He begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby.
 					<<set $humiliation = 1>>
@@ -998,11 +998,12 @@
 	<</if>>
 
 <<case "be the Wardeness">>
+	<<setNonlocalPronouns $seeDicks>>
 	<<if $slaves[$i].fetish == "mindbroken">>
 		<<if (random(1,20) > $suddenBirth)>>
 			$He enters an empty cell, strips, and seats $himself on the cot. $He instinctively begins birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he returns to mindlessly breaking the confined slaves.
 		<<else>>
-			While punishing a slave, $slaves[$i].slaveName's water breaks, soaking her. Indifferent, $he resumes beating her until the contractions are too much to bear. Settling to the floor, $he begins giving birth.
+			While punishing a slave, $slaves[$i].slaveName's water breaks, soaking _himU. Indifferent, $he resumes beating _himU until the contractions are too much to bear. Settling to the floor, $he begins giving birth.
 			<<ClothingBirth>>
 			As soon as $he regains $his strength, $he resumes beating the confused slave. <<if $slaves[$i].birthsTotal == 0>>$His first<<else>>This week's<</if>> is collected by a servant, who carefully hints that $slaves[$i].slaveName should take a break before returning to $his task.
 		<</if>>
@@ -1010,7 +1011,7 @@
 		<<if (random(1,20) > $suddenBirth)>>
 			$He returns to $his bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to the cellblock.
 		<<else>>
-			While punishing a rebellious slave, $slaves[$i].slaveName's water breaks, soaking her. Noticing the slave's smirk, $he resumes beating her until the contractions are too much to bear. Relocking the cell, $he waddles into the nearest empty cell and drops $his weight onto the cot.
+			While punishing a rebellious slave, $slaves[$i].slaveName's water breaks, soaking _himU. Noticing the slave's smirk, $he resumes beating _himU until the contractions are too much to bear. Relocking the cell, $he waddles into the nearest empty cell and drops $his weight onto the cot.
 			<<ClothingBirth>>
 			Quickly, $he collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child for removal before returning to $cellblockName. On $his way past the cells, $he takes note of any slaves whispering or gesturing about what transpired for future punishment.
 		<</if>>
@@ -1045,6 +1046,7 @@
 	<</if>>
 
 <<case "recruit girls">>
+	<<setNonlocalPronouns $seeDicks>>
 	<<if (random(1,20) > $suddenBirth)>>
 		$He returns to $his bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to finding new slaves for you.
 	<<else>>
@@ -1052,9 +1054,9 @@
 		<<set $humiliation = 1>>
 		<<ClothingBirth>>
 		<<if _birthScene > 50>>
-			Exhausted from the birth and clutching <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, $he returns to find that $he never ended the call. The prospective slave is blushing furiously and seems to have begun touching $himself to the show. Apologizing for the interruption, while red with embarrassment, $slaves[$i].slaveName resumes chatting with the somewhat more pliant girl.
+			Exhausted from the birth and clutching <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, $he returns to find that $he never ended the call. The prospective slave is blushing furiously and seems to have begun touching _himselfU to the show. Apologizing for the interruption, while red with embarrassment, $slaves[$i].slaveName resumes chatting with the somewhat more pliant _girlU.
 		<<else>>
-			Exhausted from the birth and clutching <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, $he returns to find that $he never ended the call. The prospective slave is grinning widely and states she has been recording the show. She signs off, but not before saying she'll be seeing more of $slaves[$i].slaveName around the internet. <<if $slaves[$i].fetish == "humiliation">>Your recruiter can't help but become aroused at the prospect<<else>>Your recruiter is terrified that $his birth video is out there for everyone to see, partly due to $his own shame and to the potential damage it will do to $his reputation<</if>>.
+			Exhausted from the birth and clutching <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, $he returns to find that $he never ended the call. The prospective slave is grinning widely and states _heU has been recording the show. _HeU signs off, but not before saying _heU'll be seeing more of $slaves[$i].slaveName around the internet. <<if $slaves[$i].fetish == "humiliation">>Your recruiter can't help but become aroused at the prospect<<else>>Your recruiter is terrified that $his birth video is out there for everyone to see, partly due to $his own shame and to the potential damage it will do to $his reputation<</if>>.
 		<</if>>
 	<</if>>
 
@@ -1076,7 +1078,7 @@
 			$He doesn't care about any of this, as the only thoughts left in $his empty mind revolve around the sensations in $his crotch and breasts.
 		<<else>>
 			<<if (random(1,20) > $suddenBirth)>>
-				As $slaves[$i].slaveName's water breaks, a mechanical basket is extended under $his laboring <<if $slaves[$i].mpreg == 1>>ass<<else>>cunt<</if>>. $He struggles in $his bindings, attempting to break free in order to birth <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, but $his efforts are pointless. $He is forced to give birth, restrained, into the waiting holder. Once the child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> secure, the basket retracts allowing access to $his vagina.
+				As $slaves[$i].slaveName's water breaks, a mechanical basket is extended under $his laboring <<if $slaves[$i].mpreg == 1>>ass<<else>>cunt<</if>>. $He struggles in $his bindings, attempting to break free in order to birth <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, but $his efforts are pointless. $He is forced to give birth, restrained, into the waiting holder. Once the child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> secure, the basket retracts, allowing access to $his <<if $slaves[$i].mpreg == 1>>asshole<<else>>vagina<</if>>.
 			<<else>>
 				Without warning, $slaves[$i].slaveName's water breaks and $he uncontrollably births <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He manages to force out the screaming child before the basket could fully extend, flagging $his unit for maintenance and causing quite the scene. $He knows full well there is nothing $he can do to hide $his shame.
 			<</if>>
@@ -1521,7 +1523,7 @@
 			<</if>>
 		<<else>>
 			<<if $masterSuiteUpgradeLuxury == 1>>
-				While awaiting your return on the big bed in the master suite, $slaves[$i].slaveName's body begins to birth another of $his brood. Knowing there is nothing $he can do, $he accpets that $he is going to give birth in your bed.
+				While awaiting your return on the big bed in the master suite, $slaves[$i].slaveName's body begins to birth another of $his brood. Knowing there is nothing $he can do, $he accepts that $he is going to give birth in your bed.
 				<<ClothingBirth>>
 				Once $his child is removed, $he's cleaned up, and the sheets changed, $he struggles back into bed to recover for your return.
 			<<elseif $masterSuiteUpgradeLuxury == 2>>
diff --git a/src/pregmod/widgets/pregmodWidgets.tw b/src/pregmod/widgets/pregmodWidgets.tw
index efd1279e3f9f68b0847dd39bac5c95562a62029f..987f8eb59a03442f778ee495e3ed1ce4ea6ff355 100644
--- a/src/pregmod/widgets/pregmodWidgets.tw
+++ b/src/pregmod/widgets/pregmodWidgets.tw
@@ -132,7 +132,11 @@
 		<<set _him2 = $args[0].object>>
 		<<set _himself2 = $args[0].objectReflexive>>
 		<<set _girl2 = $args[0].noun>>
-		<<if _girl2 == "girl">><<set _woman2 = "woman", _loli2 = "woman">><<else>><<set _woman2 = "man", _loli2 = "shota">><</if>>
+		<<if _girl2 == "girl">>
+			<<set _woman2 = "woman", _loli2 = "loli", _women2 = "women">>
+		<<else>>
+			<<set _woman2 = "man", _loli2 = "shota", _women2 = "men">>
+		<</if>>
 
 		<<set _He2 = capFirstChar(_he2)>>
 		<<set _His2 = capFirstChar(_his2)>>
@@ -147,7 +151,11 @@
 		<<set $him = $args[0].object>>
 		<<set $himself = $args[0].objectReflexive>>
 		<<set $girl = $args[0].noun>>
-		<<if $girl == "girl">><<set $woman = "woman", $loli = "loli">><<else>><<set $woman = "man", $loli = "shota">><</if>>
+		<<if $girl == "girl">>
+			<<set $woman = "woman", $loli = "loli", $women = "women">>
+		<<else>>
+			<<set $woman = "man", $loli = "shota", $women = "men">>
+		<</if>>
 
 		<<set $He = capFirstChar($he)>>
 		<<set $His = capFirstChar($his)>>
@@ -158,6 +166,60 @@
 	<</if>>
 <</widget>>
 
+<<widget "setNonlocalPronouns">>
+	/* Used for generic slaves, citizens, security, etc. */
+	<<if $diversePronouns != 1>>
+		<<set _gendernl = 1>>
+	<<elseif $args[0] == 100>>
+		<<set _gendernl = 2>>
+	<<elseif $args[0] == 0>>
+		<<set _gendernl = 1>>
+	<<elseif (random(1,100) <= $args[0])>>
+		<<set _gendernl = 2>>
+	<<else>>
+		<<set _gendernl = 1>>
+	<</if>>
+	<<if _gendernl == 2>>
+		<<set _heU = "he">>
+		<<set _hisU = "his">>
+		<<set _hersU = "his">>
+		<<set _himU = "him">>
+		<<set _himselfU = "himself">>
+		<<set _girlU = "boy">>
+		<<set _womanU = "man">>
+		<<set _loliU = "shota">>
+		<<set _womenU = "men">>
+		<<set _HeU = "He">>
+		<<set _HisU = "His">>
+		<<set _HersU = "His">>
+		<<set _HimU = "Him">>
+		<<set _HimselfU = "Himself">>
+		<<set _GirlU = "Boy">>
+		<<set _WomanU = "Man">>
+		<<set _LoliU = "Shota">>
+		<<set _WomenU = "Men">>
+	<<else>>
+		<<set _heU = "she">>
+		<<set _hisU = "her">>
+		<<set _hersU = "hers">>
+		<<set _himU = "her">>
+		<<set _himselfU = "herself">>
+		<<set _girlU = "girl">>
+		<<set _womanU = "woman">>
+		<<set _loliU = "loli">>
+		<<set _womenU = "women">>
+		<<set _HeU = "She">>
+		<<set _HisU = "Her">>
+		<<set _HersU = "Hers">>
+		<<set _HimU = "Her">>
+		<<set _HimselfU = "Herself">>
+		<<set _GirlU = "Girl">>
+		<<set _WomanU = "Woman">>
+		<<set _LoliU = "Loli">>
+		<<set _WomenU = "Women">>
+	<</if>>
+<</widget>>
+
 <<widget "setPlayerPronouns">>
 	<<set _heP = $PC.pronoun>>
 	<<set _hisP = $PC.possessive>>
diff --git a/src/societies/aztec/slaveSacrifice.tw b/src/societies/aztec/slaveSacrifice.tw
index 2c218b43d7dc7dc904c519b9482c8deaaa4a9316..310eef8b27f2b3bef07d61fd18dd9143b835f68b 100644
--- a/src/societies/aztec/slaveSacrifice.tw
+++ b/src/societies/aztec/slaveSacrifice.tw
@@ -85,6 +85,7 @@
 	<</if>>
 
 	<br>
+	<<setNonlocalPronouns $seeDicks>>
 	As tradition dictates, the purification of $his body will be used as penance to the goddess in an attempt to pay for the favors bestowed upon your arcology. First, one of your slaves is appointed to represent you as $his owner, who willingly gives the slave as sacrifice, and is put in charge of the slave's health while $he goes through the penance process. $activeSlave.slaveName is thoroughly bathed and $his whole body covered in blue paint, while $his mouth is covered in black paint, as payment for being a prostitute. /*Might need a clause here for other jobs besides "whore"*/ $He's taken to spend the night at the sexual servitude of another slave who will be sacrificed to Tezcatlipoca, god of the night sky. $He's <<if ($activeSlave.devotion > 20)>>fucked all night long <<else>>raped over and over again throughout the night <</if>>; $his holes dedicated to the sexual satisfaction of the slave who soon will face a much darker fate than $him to please the gods.
 	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
 		<<set _randomVag = random(0,2)>>
@@ -96,7 +97,7 @@
 			<<set $activeSlave.vagina = 1, $activeSlave.anus = 1>>
 		<</if>>
 		<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
-			$His lover tried her best to plant her seed deep within $him. $He's likely pregnant after last night.
+			$His lover tried _hisU best to plant _hisU seed deep within $him. $He's likely pregnant after last night.
 			<<= knockMeUp($activeSlave, 70, 2, 0)>>
 		<</if>>
 	<<elseif canDoVaginal($activeSlave)>>
@@ -108,7 +109,7 @@
 			<<set $activeSlave.vagina = 1>>
 		<</if>>
 		<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
-			$His lover tried her best to plant her seed deep within $him. $He's likely pregnant after last night.
+			$His lover tried _hisU best to plant _hisU seed deep within $him. $He's likely pregnant after last night.
 			<<= knockMeUp($activeSlave, 70, 0, 0)>>
 		<</if>>
 	<<elseif canDoAnal($activeSlave)>>
@@ -120,7 +121,7 @@
 			<<set $activeSlave.anus = 1>>
 		<</if>>
 		<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
-			$His lover tried her best to plant her seed deep within $him. $He's likely pregnant after last night.
+			$His lover tried _hisU best to plant _hisU seed deep within $him. $He's likely pregnant after last night.
 			<<= knockMeUp($activeSlave, 70, 1, 0)>>
 		<</if>>
 	<<else>>
@@ -162,7 +163,7 @@
 	<<else>>
 		pushed
 	<</if>>
-	into a golden cage, just big enough for $him to fit. Once inside, a huge dose of aphrodisiacs are injected into $him and the door is locked. During $his week long penance, $he will be kept on a strict regimen of aphrodisiacs to keep $him aroused but unable to cum, a special spiced tea diet to avoid dehydration, and a constant vigil, with only a few hours of sleep every night.
+	into a golden cage, just big enough for $him to fit. Once inside, a huge dose of aphrodisiacs are injected into $him and the door is locked. During $his week-long penance, $he will be kept on a strict regimen of aphrodisiacs to keep $him aroused but unable to cum, a special spiced tea diet to avoid dehydration, and a constant vigil, with only a few hours of sleep every night.
 
 	<br>
 	<<if ($activeSlave.devotion > 50)>>
@@ -185,7 +186,7 @@
 				$He tries to fulfill $his sacrifice as best $he can by trying to keep $himself pure for the goddess. $He submits to every instruction to the best of $his ability. $He can be seen constantly fighting the urge to touch $himself, shaking and moaning at the overwhelming lust caused by the aphrodisiacs. $He drinks only when told, and kindly refuses it when $he thinks $he can hold longer without it. As the week progresses, $his body shakes and twitches more often as $he struggles to stave off the compounding effects of the aphrodisiacs. $He tries to minimize any extra stimulation from the soft fabric or the necklace on $his chest by staying still, but sometimes $he bursts into tears when $his strength wavers. The only interactions $he faces are the reminders to stay hydrated, the application of more aphrodisiacs and $his sleep deprivation. By the end of the week, $he can hardly stand and often remains on the floor of the cage, soaked in $his own desperation.
 			<</if>>
 		<<else>>
-			$He tries to fulfill $his sacrifice as best $he can by trying to keep $himself pure for the goddess. $He submits to every instruction to the best of $his ability. $He can be seen constantly fighting the urge to touch $himself, shaking and moaning at the overwhelming lust caused by the aphrodisiacs. $He drinks only when told, and kindly refuses it when $he thinks $he can hold longer without it. As the week progresses, $his body shakes and twitches more often as $he struggles to stave off the compounding effects of the aphrodisiacs. $He tries to minimize any extra stimulation from the soft fabric or the necklace on $his chest by staying still, but sometimes $he bursts into tears when $his strength wavers. The only interactions $he faces are the reminders to stay hydrated hydrated, the application of more aphrodisiacs and $his sleep deprivation. By the end of the week, $he can hardly stand and often remains on the floor of the cage, soaked in $his own desperation.
+			$He tries to fulfill $his sacrifice as best $he can by trying to keep $himself pure for the goddess. $He submits to every instruction to the best of $his ability. $He can be seen constantly fighting the urge to touch $himself, shaking and moaning at the overwhelming lust caused by the aphrodisiacs. $He drinks only when told, and kindly refuses it when $he thinks $he can hold longer without it. As the week progresses, $his body shakes and twitches more often as $he struggles to stave off the compounding effects of the aphrodisiacs. $He tries to minimize any extra stimulation from the soft fabric or the necklace on $his chest by staying still, but sometimes $he bursts into tears when $his strength wavers. The only interactions $he faces are the reminders to stay hydrated, the application of more aphrodisiacs and $his sleep deprivation. By the end of the week, $he can hardly stand and often remains on the floor of the cage, soaked in $his own desperation.
 		<</if>>
 
 	<<elseif ($activeSlave.devotion > 20) || (($activeSlave.devotion >= -20) && ($activeSlave.trust < -20) && ($activeSlave.trust >= -50))>>
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index 733cf1c03c6b30e2a2effc163e5c2a1a2d1e2d95..814b1d067ffa57b17d920a7c9b7f347a01a3ba92 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -363,6 +363,14 @@
 <<if ndef $PC.ballType>>
 	<<set $PC.ballType = "human">>
 <</if>>
+<<if ndef $PC.geneticQuirks>>
+	<<set $PC.geneticQuirks = {macromastia: 0, gigantomastia: 0, fertility: 0, hyperFertility: 0, superfetation: 0, gigantism: 0, dwarfism: 0, pFace: 0, uFace: 0, albinism: 0, rearLipedema: 0, wellHung: 1, wGain: 0, wLoss: 0, androgyny: 0}>>
+	<<if $PC.birthMaster > 0>>
+		<<set $PC.geneticQuirks.fertility = 2>>
+	<<elseif $PC.career == "servant">>
+		<<set $PC.geneticQuirks.fertility = 1>>
+	<</if>>
+<</if>>
 <<if $releaseID < 1032>>
 	<<if $PC.pregSource == -1>>
 		<<set $PC.pregSource = -6>>
@@ -1536,18 +1544,21 @@
 <<elseif ndef $arcologies[0].FSGenderRadicalist>>
 	<<set $arcologies[0].FSGenderRadicalist = "unset">>
 <</if>>
-
 <<if def $FSGenderRadicalistLaw>>
 	<<unset $FSGenderRadicalistLaw>>
 <</if>>
-
 <<if ndef $arcologies[0].FSGenderRadicalistLawBeauty>>
 	<<set $arcologies[0].FSGenderRadicalistLawBeauty = 0>>
 <</if>>
-
 <<if ndef $arcologies[0].FSGenderRadicalistLawFuta>>
 	<<set $arcologies[0].FSGenderRadicalistLawFuta = 0>>
 <</if>>
+<<if def $arcologies[0].FSGenderRadicalistLawDicks>>
+	<<run delete $arcologies[0].FSGenderRadicalistLawDicks>>
+<</if>>
+<<if def $arcologies[0].FSGenderRadicalistSMR>>
+	<<run delete $arcologies[0].FSGenderRadicalistSMR>>
+<</if>>
 
 <<if def $FSBodyPurist && $FSBodyPurist != "unset">>
 	<<set $arcologies[0].FSBodyPurist = $FSBodyPurist>>
@@ -1584,11 +1595,14 @@
 	<<set $arcologies[0].FSTransformationFetishist = "unset">>
 <</if>>
 
-<<if def $FSTransformationFetishistLaw && $FSTransformationFetishistLaw != 0>>
-	<<set $arcologies[0].FSTransformationFetishistLaw = $FSTransformationFetishistLaw>>
-	<<unset $FSTransformationFetishistLaw>>
-<<elseif ndef $arcologies[0].FSTransformationFetishistLaw>>
-	<<set $arcologies[0].FSTransformationFetishistLaw = 0>>
+<<if def $FSTransformationFetishistSMR && $FSTransformationFetishistSMR != 0>>
+	<<set $arcologies[0].FSTransformationFetishistSMR = $FSTransformationFetishistSMR>>
+	<<unset $FSTransformationFetishistSMR>>
+<<elseif ndef $arcologies[0].FSTransformationFetishistSMR>>
+	<<set $arcologies[0].FSTransformationFetishistSMR = 0>>
+<</if>>
+<<if def $arcologies[0].FSTransformationFetishistLaw>>
+	<<run delete $arcologies[0].FSTransformationFetishistLaw>>
 <</if>>
 
 <<if def $FSAssetExpansionist && $FSAssetExpansionist != "unset">>
@@ -1604,6 +1618,9 @@
 <<elseif ndef $arcologies[0].FSAssetExpansionistSMR>>
 	<<set $arcologies[0].FSAssetExpansionistSMR = 0>>
 <</if>>
+<<if def $arcologies[0].FSAssetExpansionistLaw>>
+	<<run delete $arcologies[0].FSAssetExpansionistLaw>>
+<</if>>
 
 <<if def $FSSlimnessEnthusiast && $FSSlimnessEnthusiast != "unset">>
 	<<set $arcologies[0].FSSlimnessEnthusiast = $FSSlimnessEnthusiast>>
@@ -1752,6 +1769,10 @@
 	<<set $arcologies[0].FSChineseRevivalistLaw = 0>>
 <</if>>
 
+<<if def $arcologies[0].FSNullLaw>>
+	<<run delete $arcologies[0].FSNullLaw>>
+<</if>>
+
 <<silently>>
 <<include "MOD_Edit FS Cheat Datatype Cleanup">>
 <<include "MOD_Edit Neighbor Arcology Cheat Datatype Cleanup">>
diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw
index bbf99abbe3b4c1e662831704a29145eb7cbf53bc..ca9f0dc4c015fea3ebc3747abed164a1b7dea170 100644
--- a/src/uncategorized/PESS.tw
+++ b/src/uncategorized/PESS.tw
@@ -125,7 +125,7 @@ The business is brief and inconsequential, but it's good to speak with $him. Whe
 
 <<case "headgirl dickgirl">>
 
-<<EventNameLink $activeSlave>>, despite being a loyal and sexually receptive slave girl, still has a virile cock. $He certainly isn't shy about using it in pursuit of $his head girl duties. $slaves[$j].slaveName has apparently committed some minor sin, and is now being made to pay. $activeSlave.slaveName has _him2 lying on _his2 back on a table with _his2 helpless <<if $seeRace == 1>>$slaves[$j].race <</if>>throat serving as a hole for $activeSlave.slaveName to fuck <<if $seeRace == 1>>with _his2 $activeSlave.race cock <</if>>while $activeSlave.slaveName rains light slaps on poor $slaves[$j].slaveName's nipples, breasts, and <<if ($slaves[$j].dick > 0) && !canAchieveErection($slaves[$j])>>limp dick<<elseif ($slaves[$j].dick > 0)>>defenseless dick<<elseif ($slaves[$j].clit > 0)>>big clit<<else>>mons<</if>>. All the while, your head girl expounds on $slaves[$j].slaveName's shortcomings and the ways in which _he2 must apply _himself2 to better serve you.
+<<EventNameLink $activeSlave>>, despite being a loyal and sexually receptive slave $girl, still has a virile cock. $He certainly isn't shy about using it in pursuit of $his head girl duties. $slaves[$j].slaveName has apparently committed some minor sin, and is now being made to pay. $activeSlave.slaveName has _him2 lying on _his2 back on a table with _his2 helpless <<if $seeRace == 1>>$slaves[$j].race <</if>>throat serving as a hole for $activeSlave.slaveName to fuck <<if $seeRace == 1>>with _his2 $activeSlave.race cock <</if>>while $activeSlave.slaveName rains light slaps on poor $slaves[$j].slaveName's nipples, breasts, and <<if ($slaves[$j].dick > 0) && !canAchieveErection($slaves[$j])>>limp dick<<elseif ($slaves[$j].dick > 0)>>defenseless dick<<elseif ($slaves[$j].clit > 0)>>big clit<<else>>mons<</if>>. All the while, your head girl expounds on $slaves[$j].slaveName's shortcomings and the ways in which _he2 must apply _himself2 to better serve you.
 
 <<case "worshipful impregnatrix">>
 
@@ -415,7 +415,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 	<<set $activeSlave.devotion -= 5>>
 	<</replace>>
 <</link>>
-<br><<link "Commend and reward her the next morning">>
+<br><<link "Commend and reward $him the next morning">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	The next morning, you sit at your desk to do business as usual, and $activeSlave.slaveName takes up station just behind your left shoulder. You thank her for $his vigilance as she does. $He looks almost confused to be thanked for doing $his proper duty, so you settle on a more direct method of communicating your closeness to her.
@@ -437,22 +437,22 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 		<<if $activeSlave.hormoneBalance >= 100>>
 			Since she's doped up on hormones, you take her out onto the balcony, arm an extra security system so she can relax, and have gentle, loving anal sex with her until she's climaxed twice.
 		<<elseif ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity" || $activeSlave.dickAccessory == "combined chastity")>>
-			Since she's a caged dickgirl, you take her out onto the balcony, arm an extra security system so she can relax, and use $his anus until she's exhausted.
+			Since $he's a caged dickgirl, you take her out onto the balcony, arm an extra security system so she can relax, and use $his anus until she's exhausted.
 		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>>
-			Since she's chemically castrated, you take her out onto the balcony, arm an extra security system so she can relax, and have gentle, loving anal sex with her until she's climaxed twice.
+			Since $he's chemically castrated, you take her out onto the balcony, arm an extra security system so she can relax, and have gentle, loving anal sex with her until she's climaxed twice.
 		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>>
-			Since she's a gelding, you take her out onto the balcony, arm an extra security system so she can relax, and have gentle, loving anal sex with her until she's climaxed twice.
+			Since $he's a gelding, you take $him out onto the balcony, arm an extra security system so she can relax, and have gentle, loving anal sex with her until she's climaxed twice.
 		<<elseif canAchieveErection($activeSlave)>>
-			Since she's a virile slave, you take her and another slave out onto the balcony, arm an extra security system so she can relax, and set the other slave to orally servicing $his erect member. Meanwhile, you have gentle, loving anal sex with her until she's climaxed twice.
+			Since $he's a virile slave, you take $him and another slave out onto the balcony, arm an extra security system so $he can relax, and set the other slave to orally servicing $his erect member. Meanwhile, you have gentle, loving anal sex with $him until $he's climaxed twice.
 		<<else>>
-			You take her out onto the balcony, arm an extra security system so she can relax, and have gentle, loving anal sex with her until she's climaxed twice.
+			You take her out onto the balcony, arm an extra security system so she can relax, and have gentle, loving anal sex with her until $he's climaxed twice.
 		<</if>>
 		<<= AnalVCheck(1)>>
 	<<else>>
-		You take her out onto the balcony, arm an extra security system so she can relax, and have gentle, loving sex with her until she's climaxed twice, once to your gentle massaging of $his mons while you fuck her, and once to hard rubbing of $his pussy while you have enthusiastic anal sex.
+		You take her out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving sex with $him until $he's climaxed twice, once to your gentle massaging of $his mons while you fuck $him, and once to hard rubbing of $his pussy while you have enthusiastic anal sex.
 		<<= BothVCheck(2, 1)>>
 	<</if>>
-	@@.hotpink;$He is grateful@@ that you allowed her to relax in this way and @@.mediumaquamarine;respects your judgment@@ in how you set things up.
+	@@.hotpink;$He is grateful@@ that you allowed $him to relax in this way and @@.mediumaquamarine;respects your judgment@@ in how you set things up.
 	<<set $activeSlave.devotion += 4>>
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
@@ -460,10 +460,10 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 
 <<case "worried headgirl">>
 
-<<link "Trust her to tell them">>
+<<link "Trust $him to tell them">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell her that you're sure she'll let them know, since she understands the situation and knows them all well. $His <<if $activeSlave.visualAge > 35>>mature<<elseif $activeSlave.face > 40>>lovely<<else>>attentive<</if>> face flicks <<if $activeSlave.height >= 185>>over<<else>>up<</if>> to look at you, @@.hotpink;her $activeSlave.eyeColor eyes glittering at the compliment.@@ "Thank you, <<Master>>," she murmurs. There's another flash on the horizon, followed by a series of smaller flashes and a low, slowly growing glow as secondaries go off and start a fire. $activeSlave.slaveName seems affected, a certain amount of moisture gathering in $his eyes, but she turns away to return to $his duties when it becomes clear that you intend to keep watching for a while, and aren't going to have sex with $him right this minute. $He does $his best to communicate the new reality to those of your slaves who are obedient enough to understand the truth: though they are slaves, @@.mediumaquamarine;there is safety to be found in slavery.@@
+	You tell her that you're sure $he'll let them know, since $he understands the situation and knows them all well. $His <<if $activeSlave.visualAge > 35>>mature<<elseif $activeSlave.face > 40>>lovely<<else>>attentive<</if>> face flicks <<if $activeSlave.height >= 185>>over<<else>>up<</if>> to look at you, @@.hotpink;her $activeSlave.eyeColor eyes glittering at the compliment.@@ "Thank you, <<Master>>," $he murmurs. There's another flash on the horizon, followed by a series of smaller flashes and a low, slowly growing glow as secondaries go off and start a fire. $activeSlave.slaveName seems affected, a certain amount of moisture gathering in $his eyes, but $he turns away to return to $his duties when it becomes clear that you intend to keep watching for a while, and aren't going to have sex with $him right this minute. $He does $his best to communicate the new reality to those of your slaves who are obedient enough to understand the truth: though they are slaves, @@.mediumaquamarine;there is safety to be found in slavery.@@
 	<<for $i = 0; $i < _SL; $i++>>
 		<<if $slaves[$i].devotion > 20>>
 		<<set $slaves[$i].trust += 1>>
diff --git a/src/uncategorized/REFI.tw b/src/uncategorized/REFI.tw
index 3b100623855e7761854f77a789dede54fd6f9dce..7e2c44d07d818d2bb0b727ec6ce47b052cf4a343 100644
--- a/src/uncategorized/REFI.tw
+++ b/src/uncategorized/REFI.tw
@@ -818,14 +818,14 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<<
 		and ask if $he wants you to impregnate $him. $He's almost beside $himself, shuddering at the titillation, but before $he can answer,
 		<<if $activeSlave.mpreg == 1>>
 			<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
-				you slide <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his rear and give $him a pounding that leaves $him begging for whats to come. <<if $PC.dick == 1>>When you start to feel you climax approaching<<else>>Once you've thoroughly enjoyed yourself<</if>>, you tell $him that pregnancy is a very special reward for very good slaves, and you might give it to $him one day - but that $he doesn't deserve it yet. With that, you slide out of $his ass and paint $his back with <<if $PC.dick == 1>>your cum<<else>>a few squirts from the dildo<</if>>.
+				you slide <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his rear and give $him a pounding that leaves $him begging for what's to come. <<if $PC.dick == 1>>When you start to feel you climax approaching<<else>>Once you've thoroughly enjoyed yourself<</if>>, you tell $him that pregnancy is a very special reward for very good slaves, and you might give it to $him one day - but that $he doesn't deserve it yet. With that, you slide out of $his ass and paint $his back with <<if $PC.dick == 1>>your cum<<else>>a few squirts from the dildo<</if>>.
 				<<= AnalVCheck()>>
 			<<else>>
 				you tell $him that pregnancy is a very special reward for very good slaves, and you might give it to $him one day - but that $he doesn't deserve it yet. With that, you run your hands across the quivering slave's belly; pantomiming it swelling with child and sending $him over the edge.
 			<</if>>
 		<<else>>
 			<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
-				you slide <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his vagina and give $him a pounding that leaves $him begging for whats to come. <<if $PC.dick == 1>>When you start to feel you climax approaching<<else>>Once you've thoroughly enjoyed yourself<</if>>, you tell $him that pregnancy is a very special reward for very good slaves, and you might give it to $him one day - but that $he doesn't deserve it yet. With that, you slide out of $his pussy and paint the quivering slave's belly with <<if $PC.dick == 1>>your cum<<else>>a few squirts from the dildo<</if>>.
+				you slide <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his vagina and give $him a pounding that leaves $him begging for what's to come. <<if $PC.dick == 1>>When you start to feel you climax approaching<<else>>Once you've thoroughly enjoyed yourself<</if>>, you tell $him that pregnancy is a very special reward for very good slaves, and you might give it to $him one day - but that $he doesn't deserve it yet. With that, you slide out of $his pussy and paint the quivering slave's belly with <<if $PC.dick == 1>>your cum<<else>>a few squirts from the dildo<</if>>.
 				<<= VaginalVCheck()>>
 			<<else>>
 				you tell $him that pregnancy is a very special reward for very good slaves, and you might give it to $him one day - but that $he doesn't deserve it yet. With that, you run your hands across the quivering slave's belly; pantomiming it swelling with child and sending $him over the edge.
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index ac029a0117d680398e0fc4622576a89d7b9d3479..66a8ded95a5ecca97823814cf9aceea3d2bfbdf5 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -1372,7 +1372,7 @@ into your bedroom. Since $he is not allowed to ask questions, $he says nothing,
 <<else>>
 	massive, sagging natural
 <</if>>
-tits dominate $his figure, but the real attention getter are $his unique, <<if $activeSlave.areolaeShape == "heart">>heart-shaped<<elseif $activeSlave.areolaeShape == "star">>star-shaped<</if>> areolae. The darker flesh around $his nipples would be - should be - circular in any other $woman, and the cute <<if $activeSlave.areolaeShape == "heart">>hearts<<elseif $activeSlave.areolaeShape == "star">>stars<</if>> around $activeSlave.slaveName's nipples are proof of just how much you've modified $him. $He's devoted to you, so much so that $he loves showing off $his special assets.
+tits dominate $his figure, but the real attention getter are $his unique, $activeSlave.areolaeShape-shaped areolae. The darker flesh around $his nipples would be - should be - circular in any other $woman, and the cute $activeSlave.areolaeShape shapes around $activeSlave.slaveName's nipples are proof of just how much you've modified $him. $He's devoted to you, so much so that $he loves showing off $his special assets.
 
 <<case "huge tits">>
 
@@ -1727,7 +1727,7 @@ As the Free Cities grow and evolve, slave culture does too. It seems this is a n
 
 <<case "birthday">>
 
-You come across <<EventNameLink $activeSlave>> in the kitchen. $He has a normal slave meal on a plate in front of $him, but also has a pack of hotwax candles from your sex gear. Oddly, $he has a candle upright in the food and is trying to light it. You ask what $he's doing, and $he explains meekly, "I don't know, <<Master>>. I've been a <<s>>lave <<s>>o long. I ju<<s>>t <<if canSee($activeSlave)>><<s>>aw<<elseif canSee($activeSlave)>>heard<<else>>reali<<z>>ed<</if>> the date today and thi<<s>> <<s>>eemed like the right thing to do. I'm <<s>>orry." It's probably $his birthday. Apparently $he's losing $his grasp on the concept.
+You come across <<EventNameLink $activeSlave>> in the kitchen. $He has a normal slave meal on a plate in front of $him, but also has a pack of hotwax candles from your sex gear. Oddly, $he has a candle upright in the food and is trying to light it. You ask what $he's doing, and $he explains meekly, "I don't know, <<Master>>. I've been a <<s>>lave <<s>>o long. I ju<<s>>t <<if canSee($activeSlave)>><<s>>aw<<elseif canHear($activeSlave)>>heard<<else>>reali<<z>>ed<</if>> the date today and thi<<s>> <<s>>eemed like the right thing to do. I'm <<s>>orry." It's probably $his birthday. Apparently $he's losing $his grasp on the concept.
 
 <<case "inconvenient labia">>
 
@@ -2339,11 +2339,13 @@ As you inspect $his with your hands, $he
 
 <<case "slave dick on slave">>
 
-Through the glass walls of your office, you see <<EventNameLink $activeSlave>> fucking another slave with $his <<if $activeSlave.dick <= 2>>small penis<<elseif $activeSlave.dick <= 4>>long cock<<elseif $activeSlave.dick > 4>>huge, horselike phallus<</if>>. Since you gave $him orders that permit $him to fuck your other slaves, $he's been fucking them whenever $he can. The other slave is <<if $activeSlave.dick <= 2>>enjoying herself even though the <<if $seeRace == 1>>$activeSlave.race <</if>>dick in her pussy is a little disappointing<<elseif $activeSlave.dick <= 4>>enjoying the sex<<else>>enjoying the big <<if $seeRace == 1>>$activeSlave.race <</if>>dick, even if she does wince from time to time<</if>>. <<if $activeSlave.scrotum > 0>><<if $activeSlave.balls > 3>>As $activeSlave.slaveName pounds, $his big balls slap against $his partner.<<elseif $activeSlave.balls > 1>>As $activeSlave.slaveName pounds, $his balls tighten, preparing to empty themselves.<</if>><</if>>
+<<setNonlocalPronouns 0>>
+Through the glass walls of your office, you see <<EventNameLink $activeSlave>> fucking another slave with $his <<if $activeSlave.dick <= 2>>small penis<<elseif $activeSlave.dick <= 4>>long cock<<elseif $activeSlave.dick > 4>>huge, horselike phallus<</if>>. Since you gave $him orders that permit $him to fuck your other slaves, $he's been fucking them whenever $he can. The other slave is <<if $activeSlave.dick <= 2>>enjoying _himselfU even though the <<if $seeRace == 1>>$activeSlave.race <</if>>dick in _hisU pussy is a little disappointing<<elseif $activeSlave.dick <= 4>>enjoying the sex<<else>>enjoying the big <<if $seeRace == 1>>$activeSlave.race <</if>>dick, even if _heU does wince from time to time<</if>>. <<if $activeSlave.scrotum > 0>><<if $activeSlave.balls > 3>>As $activeSlave.slaveName pounds, $his big balls slap against $his partner.<<elseif $activeSlave.balls > 1>>As $activeSlave.slaveName pounds, $his balls tighten, preparing to empty themselves.<</if>><</if>>
 
 <<case "slave clit on slave">>
 
-Through the glass walls of your office, you see <<EventNameLink $activeSlave>> fucking another slave. Odd, since $he doesn't have a penis: it seems the other slave likes $him enough to try to make clitoral penetration work. $activeSlave.slaveName's <<if $seeRace == 1>>$activeSlave.race <</if>>clit is certainly big enough to make it possible. Since you gave $him orders that permit $him to fuck your other slaves, $he's been having as much sex with them as $he can. The other slave is enjoying herself even though the clit in her pussy is a little disappointing compared to a real cock.
+<<setNonlocalPronouns 0>>
+Through the glass walls of your office, you see <<EventNameLink $activeSlave>> fucking another slave. Odd, since $he doesn't have a penis: it seems the other slave likes $him enough to try to make clitoral penetration work. $activeSlave.slaveName's <<if $seeRace == 1>>$activeSlave.race <</if>>clit is certainly big enough to make it possible. Since you gave $him orders that permit $him to fuck your other slaves, $he's been having as much sex with them as $he can. The other slave is enjoying _himselfU even though the clit in _hisU pussy is a little disappointing compared to a real cock.
 
 <<case "PA servant">>
 
@@ -4284,7 +4286,7 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look.
 
 <<case "devoted fearful slave">>
 
-You are working late tonight, poring over some particularly troublesome business documents, though thankfully the end appears to be in sight. The sun has all but completely slipped below the horizon, drowning your office in moody twilight. $assistantName, seeing that you are finally approaching the end of a long day, takes the liberty of having a 
+You are working late tonight, poring over some particularly troublesome business documents -- though, thankfully, the end appears to be in sight. The sun has all but completely slipped below the horizon, drowning your office in moody twilight. Seeing that you are finally approaching the end of a long day, $assistantName, takes the liberty of having a 
 <<if $PC.refreshmentType == 0>>
 	$PC.refreshment
 <<elseif $PC.refreshmentType == 1>>
@@ -4300,7 +4302,7 @@ You are working late tonight, poring over some particularly troublesome business
 <<elseif $PC.refreshmentType == 6>>
 	tab of $PC.refreshment
 <</if>>
-brought in to you. This time <<EventNameLink $activeSlave>> has been sent to deliver it. $He loves you, but fears you simultaneously. Such relationships were not uncommon before the advent of modern slavery, but they are especially prevalent in its wake, as fear has proven a highly effective control method for those slave owners with the inclination and relative lack of conscience to utilize it as such. You hurriedly put the finishing touches on your work, eager to be done, and then reach for your $PC.refreshment. $activeSlave.slaveName flinches at your sudden movement, taking a few frightened steps back, nearly dropping the serving tray and leaving you grasping at thin air. It was a simple fear response, $he didn't realize you were ready for your treat and instinctively thought you were reaching out to strike $him. Tears swell up in $his eyes as $he apologizes profusely.
+brought in to you. This time <<EventNameLink $activeSlave>> has been sent to deliver it. $He loves you, but fears you simultaneously. Such relationships were not uncommon before the advent of modern slavery, but they are especially prevalent in its wake, as fear has proven a highly effective control method for those slave owners with the inclination and relative lack of conscience to utilize it as such. You hurriedly put the finishing touches on your work, eager to be done, and then reach for your $PC.refreshment. $activeSlave.slaveName flinches at your sudden movement, taking a few frightened steps back, nearly dropping the serving tray and leaving you grasping at thin air. It was a simple fear response; $he didn't realize you were ready for your treat and instinctively thought you were reaching out to strike $him. Tears swell up in $his eyes as $he apologizes profusely.
 
 <<default>>
 	<br>ERROR: bad RESS event $RESSevent
@@ -5189,7 +5191,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 			<<if canTalk($activeSlave)>>
 				"I'm <<s>>o di<<s>>gu<<s>>ting, <<Master>>, I'm glad you <<s>>ee it too. I was <<s>>o <<c>>ertain you'd lie to me... <<S>>orry to have wa<<s>>ted your time." $He
 			<<else>>
-				$His face lightens at your <<if canHear($activeSlave)>>words<<else>>affirmation<</if>>. It seems you told her just what $he wanted to hear<<if !canHear($activeSlave)>>, so to speak<</if>>. $He gives her thanks and
+				$His face lightens at your <<if canHear($activeSlave)>>words<<else>>affirmation<</if>>. It seems you told $him just what $he wanted to hear<<if !canHear($activeSlave)>>, so to speak<</if>>. $He gives her thanks and
 			<</if>>
 			leaves your office with @@.hotpink;slightly more faith@@ in her <<= WrittenMaster()>>.
 			<<set $activeSlave.devotion += 5>>
@@ -5922,8 +5924,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 <</link>>
 <br><<link "Bring your good girls out for a day at the beach">>
 	<<EventNameDelink $activeSlave>>
+	<<setLocalPronouns $HeadGirl 2>>
 	<<replace "#result">>
-	You direct $assistantName to bring your girls who deserve it out for a day at the beach. There might be little sand out on the balcony, but there's plenty of warm sun. And beaches are overrated these days anyway, with the ocean becoming so unpredictable. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> advises them to get naked, and bring towels and sun lotion appropriate for their individual skin types, so they know they're going to get some sunshine, but they're surprised when they get outside. They're obviously expecting an orgy of some kind, but all they see is you and $activeSlave.slaveName luxuriating on the decking. As they arrive, they take the cue and line up with you one by one. After a long sunbathing session, you send a couple of them inside to bring out cool drinks, a beach ball, and other essentials. The hornier girls are doubtful for a while, but eventually they all relax and @@.mediumaquamarine;gain confidence@@ from the simple, nonsexual pleasure of a little time in the sun. <<if ($activeSlave.ID != $HeadGirl.ID) && ($HeadGirl != 0)>>Your Head Girl $HeadGirl.slaveName quietly compliments the idea, and asks you how it came to you. You let her know it was $activeSlave.slaveName's idea,<<else>>Another slave thanks you profusely, and politely asks you what gave you such a wonderful idea. You let them know it was $activeSlave.slaveName,<</if>> which $activeSlave.slaveName <<if canHear($activeSlave)>>overhears<<elseif canSee($activeSlave)>>witnesses<<else>>soon discovers<</if>>. $He blushes prettily, and @@.mediumaquamarine;is pleased@@ to <<if canHear($activeSlave)>>hear<<else>>learn<</if>> that a slave can receive credit for finding a good thing.
+	You direct $assistantName to bring your girls who deserve it out for a day at the beach. There might be little sand out on the balcony, but there's plenty of warm sun. And beaches are overrated these days anyway, with the ocean becoming so unpredictable. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> advises them to get naked, and bring towels and sun lotion appropriate for their individual skin types, so they know they're going to get some sunshine, but they're surprised when they get outside. They're obviously expecting an orgy of some kind, but all they see is you and $activeSlave.slaveName luxuriating on the decking. As they arrive, they take the cue and line up with you one by one. After a long sunbathing session, you send a couple of them inside to bring out cool drinks, a beach ball, and other essentials. The hornier girls are doubtful for a while, but eventually they all relax and @@.mediumaquamarine;gain confidence@@ from the simple, nonsexual pleasure of a little time in the sun. <<if ($activeSlave.ID != $HeadGirl.ID) && ($HeadGirl != 0)>>Your Head Girl $HeadGirl.slaveName quietly compliments the idea, and asks you how it came to you. You let _him2 know it was $activeSlave.slaveName's idea,<<else>>Another slave thanks you profusely, and politely asks you what gave you such a wonderful idea. You let them know it was $activeSlave.slaveName,<</if>> which $activeSlave.slaveName <<if canHear($activeSlave)>>overhears<<elseif canSee($activeSlave)>>witnesses<<else>>soon discovers<</if>>. $He blushes prettily, and @@.mediumaquamarine;is pleased@@ to <<if canHear($activeSlave)>>hear<<else>>learn<</if>> that a slave can receive credit for finding a good thing.
 	<<set $activeSlave.trust++>>
 	<<for _ress = 0; _ress < $slaves.length; _ress++>>
 		<<if $slaves[_ress].devotion > 20>>
@@ -5940,47 +5943,47 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<replace "#result">>
 	You laugh at $him kindly, and $he @@.mediumaquamarine;smiles with relief,@@ happy that you find $his wonderful and terrible sex drive amusing. After a cursory inspection, you 
 	<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a <<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even her gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around with things shoved up $his asshole
+		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a <<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around with things shoved up $his asshole
 	<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
 		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
 		<<if canDoVaginal($activeSlave)>>
-			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even her gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizeable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved in $his body
+			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizeable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved in $his body
 		<<else>>
-			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even her gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved up $his asshole
+			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved up $his asshole
 		<</if>>
 	<<elseif ($activeSlave.fetish == "masochism") && ($activeSlave.fetishKnown == 1)>>
 		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
 		<<if canDoVaginal($activeSlave)>>
-			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even her gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizeable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up her hole
+			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizeable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his hole
 		<<else>>
-			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even her gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his asshole
+			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his asshole
 		<</if>>
 	<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1) && $activeSlave.boobs > 300>>
 		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
 		<<if $activeSlave.nipples == "fuckable">>
-			pair of egg vibrators, let $him suck them wet and get them nestled inside $his nipples, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having things shoved inside her nipplecunts
+			pair of egg vibrators, let $him suck them wet and get them nestled inside $his nipples, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having things shoved inside $his nipplecunts
 		<<else>>
 			vibrating dildo, let $him suck it wet and get it nestled within $his cleavage, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having long, hard objects shoved between $his tits
 		<</if>>
 	<<else>>
 		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
 		<<if canDoVaginal($activeSlave)>>
-			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even her gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizeable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself,
+			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizeable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself,
 		<<else>>
-			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even her gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks,
+			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizeable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks,
 		<</if>>
 		and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he has a very short refractory period
 	<</if>>
-	and $he comes again without much delay, without touching her <<if ($activeSlave.dick > 0) && ($activeSlave.vagina > -1)>>bits<<elseif ($activeSlave.dick > 0)>>cock<<elseif $activeSlave.vagina == -1>>soft perineum, the only place $he has left<<else>>pussy<</if>>. You keep her there for quite a while, the quivering, <<if canAchieveErection($activeSlave)>>cum-jetting<<elseif ($activeSlave.balls > 0)>>cum-squirting<<elseif ($activeSlave.dick > 0)>>ejaculating<<elseif ($activeSlave.lactation > 0)>>milk-squirting<<elseif $activeSlave.vagina == -1>>weakly dribbling<<else>>femcum-dripping<</if>> statue of a slave providing visual diversion for visitors.
+	and $he comes again without much delay, without touching $his <<if ($activeSlave.dick > 0) && ($activeSlave.vagina > -1)>>bits<<elseif ($activeSlave.dick > 0)>>cock<<elseif $activeSlave.vagina == -1>>soft perineum, the only place $he has left<<else>>pussy<</if>>. You keep $him there for quite a while, the quivering, <<if canAchieveErection($activeSlave)>>cum-jetting<<elseif ($activeSlave.balls > 0)>>cum-squirting<<elseif ($activeSlave.dick > 0)>>ejaculating<<elseif ($activeSlave.lactation > 0)>>milk-squirting<<elseif $activeSlave.vagina == -1>>weakly dribbling<<else>>femcum-dripping<</if>> statue of a slave providing visual diversion for visitors.
 	<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Take pity on the poor nympho">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He shivers a little when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> you slide out from behind your desk and approach $him. $His overcharged sex drive allows her no refractory period at all, and the hunger <<if !canSee($activeSlave)>>on her face<<else>>in $his eyes<</if>> is undiminished. You pause to consider $him and her face falls a little as $he wonders what you're planning. $He's wrong to doubt you;
+	$He shivers a little when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> you slide out from behind your desk and approach $him. $His overcharged sex drive allows $him no refractory period at all, and the hunger <<if !canSee($activeSlave)>>on $his face<<else>>in $his eyes<</if>> is undiminished. You pause to consider $him and $his face falls a little as $he wonders what you're planning. $He's wrong to doubt you;
 	<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
-		you pull her in and embrace her strongly, causing the submissive slut to melt into your
+		you pull $him in and embrace $him strongly, causing the submissive slut to melt into your
 		<<if $PC.boobs == 1>>
 			<<if $PC.boobsImplant == 1>>
 				firm chest.
@@ -5990,43 +5993,43 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 		<<else>>
 			muscular arms.
 		<</if>>
-		You kiss her aggressively, $his mouth opening to accept your dominant tongue as it slides into $him. Soon $he's sighing with contentment as something else slides into her on the couch; $he clings to you with near desperation.
+		You kiss $him aggressively, $his mouth opening to accept your dominant tongue as it slides into $him. Soon $he's sighing with contentment as something else slides into $him on the couch; $he clings to you with near desperation.
 		<<if canDoVaginal($activeSlave)>>
 			<<set _didVaginal = 1>>
 		<<else>>
 			<<set _didAnal = 1>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
-		you push the orally fixated slut to $his knees and <<if $PC.dick == 0>>ride her face like it's a pussy you're tribbing<<else>>fuck her face like you're trying to impregnate her throat<</if>>. $He's forced to hold onto your thighs for dear life, making it impossible for $him to touch $himself, but $he doesn't need to and climaxes again hands-free.
+		you push the orally fixated slut to $his knees and <<if $PC.dick == 0>>ride $his face like it's a pussy you're tribbing<<else>>fuck $his face like you're trying to impregnate $his throat<</if>>. $He's forced to hold onto your thighs for dear life, making it impossible for $him to touch $himself, but $he doesn't need to and climaxes again hands-free.
 		<<set $activeSlave.oralCount++, $oralTotal++>>
 	<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
-		you set up a live feed on the screens throughout the arcology, pointing down from the ceiling above your desk, make her lie down on the desk top, and fuck $him. $He <<if canSee($activeSlave)>>stares into<<else>>gazes towards<</if>> the camera's lens with mixed shame and relish as the full weight of the humiliation of being used in front of the whole arcology bears down on her heaving chest.
+		you set up a live feed on the screens throughout the arcology, pointing down from the ceiling above your desk, make $him lie down on the desk top, and fuck $him. $He <<if canSee($activeSlave)>>stares into<<else>>gazes towards<</if>> the camera's lens with mixed shame and relish as the full weight of the humiliation of being used in front of the whole arcology bears down on $his heaving chest.
 		<<if canDoVaginal($activeSlave)>>
 			<<set _didVaginal = 1>>
 		<<else>>
 			<<set _didAnal = 1>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-		you <<if canSee($activeSlave)>>point at the couch<<else>>state "couch"<</if>> and $he hurries over to kneel and offer you $his asshole. Since the butthole slut clearly doesn't need any foreplay today, the first contact between you is <<if $PC.dick == 1>>the tip of your cock<<else>>the head of your strap-on<</if>> pressing forcefully against $his anus. $He gives a huge shuddering gasp of satisfaction as her sphincter stretches around the invading phallus.
+		you <<if canSee($activeSlave)>>point at the couch<<else>>state "couch"<</if>> and $he hurries over to kneel and offer you $his asshole. Since the butthole slut clearly doesn't need any foreplay today, the first contact between you is <<if $PC.dick == 1>>the tip of your cock<<else>>the head of your strap-on<</if>> pressing forcefully against $his anus. $He gives a huge shuddering gasp of satisfaction as $his sphincter stretches around the invading phallus.
 		<<set _didAnal = 1>>
 	<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
 		you play with $his nipples until they<<if $activeSlave.nipples != "fuckable">>'re good and hard<<else>> swallow your fingers<</if>>, while $he stands there shamelessly presenting $his breasts for your play. Once you're satisfied they can't get any harder, you
 		<<if $PC.dick == 1>>
-			push $him to $his knees<<if $activeSlave.nipples != "fuckable">>, tell $him to take over the nipple stimulation,<</if>> and fuck her boobs.
+			push $him to $his knees<<if $activeSlave.nipples != "fuckable">>, tell $him to take over the nipple stimulation,<</if>> and fuck $his boobs.
 		<<else>>
-			throw her down on the couch, straddle her boobs, and <<if $activeSlave.nipples != "fuckable">>ride each of her erect<<else>>trib her<</if>> nipples in turn.
+			throw $him down on the couch, straddle $his boobs, and <<if $activeSlave.nipples != "fuckable">>ride each of $his erect<<else>>trib $his<</if>> nipples in turn.
 		<</if>>
 		<<set $activeSlave.mammaryCount++, $mammaryTotal++>>
 	<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
-		you tell her you're going to put a slave in $his belly, bringing her instantaneously back to painfully full arousal. You take her on the couch in the missionary position so $he can stare into your face.
+		you tell $him you're going to put a slave in $his belly, bringing $him instantaneously back to painfully full arousal. You take $him on the couch in the missionary position so $he can stare into your face.
 		<<if !canDoVaginal($activeSlave)>>
-			It's $his butt you're fucking, but $he doesn't let that disrupt her fantasy.
+			It's $his butt you're fucking, but $he doesn't let that disrupt $his fantasy.
 		<<elseif ($PC.dick == 0)>>
-			The phallus in her is a strap-on, but $he doesn't let that disrupt her fantasy.
+			The phallus in $him is a strap-on, but $he doesn't let that disrupt $his fantasy.
 		<<elseif ($activeSlave.pregKnown == 1)>>
-			$He's already knocked up, but that just means that $he shamelessly begs you to fuck her even more pregnant.
+			$He's already knocked up, but that just means that $he shamelessly begs you to fuck $him even more pregnant.
 		<<elseif !isFertile($activeSlave)>>
-			$He's not fertile, but $he doesn't let that get in her way.
+			$He's not fertile, but $he doesn't let that get in $his way.
 		<</if>>
 		<<if canDoVaginal($activeSlave)>>
 			<<set _didVaginal = 1>>
@@ -6034,17 +6037,17 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 			<<set _didAnal = 1>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1)>>
-		you shove her back towards the couch and leap onto $him, pulling your legs into a scissor position. You bang her hard, and $he grinds $his hips back at you with enthusiasm. This mutually challenging fuck goes on for a long time, to sweaty, endorphin-fuelled muscle exhaustion.
+		you shove $him back towards the couch and leap onto $him, pulling your legs into a scissor position. You bang $him hard, and $he grinds $his hips back at you with enthusiasm. This mutually challenging fuck goes on for a long time, to sweaty, endorphin-fuelled muscle exhaustion.
 		<<if canDoVaginal($activeSlave)>>
 			<<set _didVaginal = 1>>
 		<<else>>
 			<<set _didAnal = 1>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "sadist") && ($activeSlave.fetishKnown == 1)>>
-		you call in a less favored slave and let $activeSlave.slaveName spank her until $he's fully aroused again. That done, you and $activeSlave.slaveName spitroast the poor girl, with $activeSlave.slaveName taking the rear end. Judging by how the victim screams into your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>, $activeSlave.slaveName is not being very nice to her at all.
+		you call in a less favored slave and let $activeSlave.slaveName spank $him until $he's fully aroused again. That done, you and $activeSlave.slaveName spitroast the poor girl, with $activeSlave.slaveName taking the rear end. Judging by how the victim screams into your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>, $activeSlave.slaveName is not being very nice to $him at all.
 		<<set $activeSlave.penetrativeCount++, $penetrativeTotal++>>
 	<<elseif ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
-		you prowl around $him to let her masochistic anticipation build before nudging her in the back of the knees. $He collapses helplessly and you drag her over to the couch, slinging her across its back and fucking her without mercy. When the pleasurable pain loses its edge, you slide a finger into her alongside your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, eliciting an appreciative shriek.
+		you prowl around $him to let $his masochistic anticipation build before nudging $him in the back of the knees. $He collapses helplessly and you drag $him over to the couch, slinging $him across its back and fucking $him without mercy. When the pleasurable pain loses its edge, you slide a finger into $him alongside your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, eliciting an appreciative shriek.
 		<<if canDoVaginal($activeSlave)>>
 			<<set _didVaginal = 1>>
 		<<else>>
@@ -6061,7 +6064,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 		Being a nympho is a never-ending struggle in some ways, and $he is @@.hotpink;deeply grateful@@ to you for understanding $him.
 		<<set $activeSlave.devotion += 5>>
 	<<else>>
-		Since $he's developing her kinks, this delightful reinforcement @@.lightcoral;advances $his fetish.@@
+		Since $he's developing $his kinks, this delightful reinforcement @@.lightcoral;advances $his fetish.@@
 		<<set $activeSlave.fetishStrength += 4>>
 	<</if>>
 	<</replace>>
@@ -6069,36 +6072,36 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 
 <<case "devoted exhibition">>
 
-<<link "Inspect her normally">>
+<<link "Inspect $him normally">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You pay no attention to the unusual circumstances, and conduct a normal inspection of her naked body. $He understands that $he did the right thing, and @@.mediumaquamarine;trusts@@ you a bit more. Since you're paying no attention to the unusual location for the inspection, $he does her very best to perform her role normally, too. $He <<if ($activeSlave.boobs > 2000)>>lifts her enormous boobs one by one<<elseif ($activeSlave.boobs > 1000)>>hefts her heavy breasts one by one<<elseif ($activeSlave.boobs > 300)>>squeezes her boobs one by one<<else>><<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> the nipples capping her flat tits<</if>>, <<if ($activeSlave.oralSkill > 60)>>opens $his mouth and wiggles her expert tongue<<elseif ($activeSlave.lips > 40)>>opens $his mouth and licks her puffy lips<<else>>opens $his mouth and sticks out $his tongue<</if>>,
+	You pay no attention to the unusual circumstances, and conduct a normal inspection of $his naked body. $He understands that $he did the right thing, and @@.mediumaquamarine;trusts@@ you a bit more. Since you're paying no attention to the unusual location for the inspection, $he does $his very best to perform $his role normally, too. $He <<if ($activeSlave.boobs > 2000)>>lifts $his enormous boobs one by one<<elseif ($activeSlave.boobs > 1000)>>hefts $his heavy breasts one by one<<elseif ($activeSlave.boobs > 300)>>squeezes $his boobs one by one<<else>><<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> the nipples capping $his flat tits<</if>>, <<if ($activeSlave.oralSkill > 60)>>opens $his mouth and wiggles $his expert tongue<<elseif ($activeSlave.lips > 40)>>opens $his mouth and licks $his puffy lips<<else>>opens $his mouth and sticks out $his tongue<</if>>,
 	<<if ($activeSlave.balls > 1)>>
 		pulls $his ballsack gently downward to display the outline of $his testes,
 	<<elseif ($activeSlave.dick > 0)>>
-		lifts her dick by its tip and turns sideways to display it,
+		lifts $his dick by its tip and turns sideways to display it,
 	<<elseif ($activeSlave.labia > 0)>>
-		carefully spreads her generous petals to show off $his pussy,
+		carefully spreads $his generous petals to show off $his pussy,
 	<<elseif ($activeSlave.clit > 0)>>
-		eases her clitoral hood back to completely reveal her massive clitoris,
+		eases $his clitoral hood back to completely reveal $his massive clitoris,
 	<<elseif $activeSlave.vagina == -1>>
 		lets you see the featureless, mannequin place between $his legs,
 	<<else>>
 		spreads $his pussy,
 	<</if>>
-	turns around and <<if ($activeSlave.butt > 5)>>pulls her massive buttocks apart to reveal<<elseif ($activeSlave.butt > 2)>>spreads her healthy buttocks to reveal<<else>>bends over to display<</if>> her <<if ($activeSlave.anus > 2)>>whorish rear pussy<<elseif ($activeSlave.anus > 1)>>inviting backdoor<<else>>tight anus<</if>>, winks it once, and then straightens, done.
+	turns around and <<if ($activeSlave.butt > 5)>>pulls $his massive buttocks apart to reveal<<elseif ($activeSlave.butt > 2)>>spreads $his healthy buttocks to reveal<<else>>bends over to display<</if>> $his <<if ($activeSlave.anus > 2)>>whorish rear pussy<<elseif ($activeSlave.anus > 1)>>inviting backdoor<<else>>tight anus<</if>>, winks it once, and then straightens, done.
 	<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
-<br><<link "Inspect $him and then leave her out for the public to use">>
+<br><<link "Inspect $him and then leave $him out for the public to use">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You pay no attention to the unusual circumstances, and conduct a normal inspection of her naked body. When done, you rise from your seat and produce a short strap. $His breath quickens as you bind $his hands and pull them down towards a bench; you secure her so $he can crouch or kneel, naked and vulnerable. As you leave, $he understands, and glances around the balcony. Fixing on the nearest citizen paying attention to $him, $he looks him straight in the eye
+	You pay no attention to the unusual circumstances, and conduct a normal inspection of $his naked body. When done, you rise from your seat and produce a short strap. $His breath quickens as you bind $his hands and pull them down towards a bench; you secure $him so $he can crouch or kneel, naked and vulnerable. As you leave, $he understands, and glances around the balcony. Fixing on the nearest citizen paying attention to $him, $he looks him straight in the eye
 	<<switch $activeSlave.fetish>>
 	<<case "submissive">>
 		and begs him submissively to do whatever he wants to $him.
 	<<case "cumslut">>
-		and begs him to come over and feed her his delicious cum.
+		and begs him to come over and feed $him his delicious cum.
 	<<case "humiliation">>
 		as $he begins to wordlessly writhe and blush with the @@.hotpink;excitement@@ of this humiliating situation.
 		<<set $activeSlave.devotion += 2>>
@@ -6111,11 +6114,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<case "dom" "sadist">>
 		and challenges him to come over and fuck $him.
 	<<case "masochist">>
-		and, applying a bit of reverse psychology, begins to beg him not to spank her helpless behind.
+		and, applying a bit of reverse psychology, begins to beg him not to spank $his helpless behind.
 	<<default>>
 		and implores him to fuck $him.
 	<</switch>>
-	You detail another slave to fetch her after the public loses interest. A couple of hours later, you catch sight of her limping towards the showers, thoroughly disheveled. $His $activeSlave.skin face and chest are spattered with cum, $he's got <<if $activeSlave.dick > 0>>her own ejaculate<<else>>pussyjuice<</if>> all over her thighs, and her well-fucked butthole is dripping semen. $He's certainly worked hard @@.green;improving your reputation.@@
+	You detail another slave to fetch $him after the public loses interest. A couple of hours later, you catch sight of $him limping towards the showers, thoroughly disheveled. $His $activeSlave.skin face and chest are spattered with cum, $he's got <<if $activeSlave.dick > 0>>$his own ejaculate<<else>>pussyjuice<</if>> all over $his thighs, and $his well-fucked butthole is dripping semen. $He's certainly worked hard @@.green;improving your reputation.@@
 	<<set $rep += 250>>
 	<<set $activeSlave.mammaryCount += 10, $mammaryTotal += 10, $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<= AnalVCheck(10)>>
@@ -6127,12 +6130,12 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<</replace>>
 <</link>>
 <<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">>
-<br><<link "Fuck her like $he likes it">>
+<br><<link "Fuck $him like $he likes it">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He's completely unsurprised when you crook a finger at her after a brief inspection, and skips over, looking excited. It's not in vain.
+	$He's completely unsurprised when you crook a finger at $him after a brief inspection, and skips over, looking excited. It's not in vain.
 	<<if ($activeSlave.fetish == "submissive")>>
-		You shove her across the back of a balcony bench and take her as $he moans with pleasure, happy you're using $his body. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby.
+		You shove $him across the back of a balcony bench and take $him as $he moans with pleasure, happy you're using $his body. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby.
 		<<set $rep += 50>>
 		<<if canDoVaginal($activeSlave)>>
 			<<set _didVaginal = 1>>
@@ -6140,11 +6143,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 			<<set _didAnal = 1>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "cumslut")>>
-		You push her down to $his knees and <<if $PC.dick == 1>>shove your cock down her throat<<if $PC.vagina == 1>> so far $he can almost reach your pussy with the tip of $his tongue<</if>><<else>>ride her face<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, moaning into you as $he pleasures your <<if $PC.dick == 1>>dick<<else>>cunt<</if>>.
+		You push $him down to $his knees and <<if $PC.dick == 1>>shove your cock down $his throat<<if $PC.vagina == 1>> so far $he can almost reach your pussy with the tip of $his tongue<</if>><<else>>ride $his face<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, moaning into you as $he pleasures your <<if $PC.dick == 1>>dick<<else>>cunt<</if>>.
 		<<set $rep += 50>>
 		<<set $activeSlave.oralCount++, $oralTotal++>>
 	<<elseif ($activeSlave.fetish == "humiliation")>>
-		You sit down on a balcony bench and pull her down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then pull $his legs as wide as they'll go as you fuck $him, displaying everything to the whole balcony<<if $activeSlave.belly >= 120000>>; her _belly stomach hangs so low that it blocks the view, however<<else>><<if $PC.vagina == 1>><<if $PC.dick == 1>>: incidentally including your own pussy, which slides up and down as you piston the cock above it in and out of her<</if>><</if>><</if>>. $He @@.hotpink;laps up@@ the @@.green;openly aroused@@ stares from her growing audience.
+		You sit down on a balcony bench and pull $him down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then pull $his legs as wide as they'll go as you fuck $him, displaying everything to the whole balcony<<if $activeSlave.belly >= 120000>>; $his _belly stomach hangs so low that it blocks the view, however<<else>><<if $PC.vagina == 1>><<if $PC.dick == 1>>: incidentally including your own pussy, which slides up and down as you piston the cock above it in and out of $him<</if>><</if>><</if>>. $He @@.hotpink;laps up@@ the @@.green;openly aroused@@ stares from $his growing audience.
 		<<set $rep += 100>>
 		<<set $activeSlave.devotion += 3>>
 		<<if canDoVaginal($activeSlave)>>
@@ -6153,23 +6156,23 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 			<<set _didAnal = 1>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "buttslut")>>
-		You shove her across the back of a balcony bench and fuck $his ass as $he moans with pleasure, happy you're using her favorite hole. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, too focused on her well-filled rectum to care.
+		You shove $him across the back of a balcony bench and fuck $his ass as $he moans with pleasure, happy you're using $his favorite hole. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, too focused on $his well-filled rectum to care.
 		<<set $rep += 50>>
 		<<set _didAnal = 1>>
 	<<elseif ($activeSlave.fetish == "boobs")>>
-		You push her down to $his knees and <<if $PC.dick == 1>>press your cock between $his tits<<else>>ride $his breasts<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, enjoying the feeling of your <<if $PC.dick == 1>>dick pounding her <<if $activeSlave.nipples != "fuckable">>cleavage<<else>>breast<</if>><<else>>cunt rubbing against one of her <<if $activeSlave.nipples != "fuckable">>hard<<else>>engorged<</if>> nipples<</if>>.
+		You push $him down to $his knees and <<if $PC.dick == 1>>press your cock between $his tits<<else>>ride $his breasts<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, enjoying the feeling of your <<if $PC.dick == 1>>dick pounding $his <<if $activeSlave.nipples != "fuckable">>cleavage<<else>>breast<</if>><<else>>cunt rubbing against one of $his <<if $activeSlave.nipples != "fuckable">>hard<<else>>engorged<</if>> nipples<</if>>.
 		<<set $rep += 50>>
 		<<set $activeSlave.mammaryCount++, $mammaryTotal++>>
 	<<elseif ($activeSlave.fetish == "pregnancy")>>
-		You shove her across the back of a balcony bench and whisper in her ear that you're going to breed her in public. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, too aroused by the idea to care.
+		You shove $him across the back of a balcony bench and whisper in $his ear that you're going to breed $him in public. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, too aroused by the idea to care.
 		<<if !canDoVaginal($activeSlave)>>
-			It's $his butt you're fucking, but $he doesn't let that disrupt her fantasy.
+			It's $his butt you're fucking, but $he doesn't let that disrupt $his fantasy.
 		<<elseif ($PC.dick == 0)>>
-			The phallus in her is a strap-on, but $he doesn't let that disrupt her fantasy.
+			The phallus in $him is a strap-on, but $he doesn't let that disrupt $his fantasy.
 		<<elseif ($activeSlave.pregKnown == 1)>>
-			$He's already knocked up, but $he doesn't let that disrupt her fantasy of getting even more pregnant.
+			$He's already knocked up, but $he doesn't let that disrupt $his fantasy of getting even more pregnant.
 		<<elseif !isFertile($activeSlave)>>
-			$He's not fertile, but $he doesn't let that disrupt her fantasy.
+			$He's not fertile, but $he doesn't let that disrupt $his fantasy.
 		<</if>>
 		<<set $rep += 50>>
 		<<if canDoVaginal($activeSlave)>>
@@ -6178,7 +6181,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 			<<set _didAnal = 1>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "dom")>>
-		You shove her back against a wall and seat your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> inside her before wrapping $his legs around you, taking a good grip on $his butt, and hauling her off the wall again, holding her in midair<<if $activeSlave.belly >= 600000>> (though her _belly belly is resting on the ground)<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, concentrating on fucking as hard as $he possibly can.
+		You shove $him back against a wall and seat your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> inside $him before wrapping $his legs around you, taking a good grip on $his butt, and hauling $him off the wall again, holding $him in midair<<if $activeSlave.belly >= 600000>> (though $his _belly belly is resting on the ground)<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, concentrating on fucking as hard as $he possibly can.
 		<<set $rep += 50>>
 		<<if canDoVaginal($activeSlave)>>
 			<<set _didVaginal = 1>>
@@ -6186,7 +6189,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 			<<set _didAnal = 1>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "sadist")>>
-		You sit down on a balcony bench and pull her down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then hand $him a tablet after pulling up a feed from a nearby cellblock. $He ignores the @@.green;mildly appreciative@@ stares from passersby as you fuck $him, enthralled by the scenes of abuse and rape on the tablet in her trembling hands.
+		You sit down on a balcony bench and pull $him down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then hand $him a tablet after pulling up a feed from a nearby cellblock. $He ignores the @@.green;mildly appreciative@@ stares from passersby as you fuck $him, enthralled by the scenes of abuse and rape on the tablet in $his trembling hands.
 		<<set $rep += 50>>
 		<<if canDoVaginal($activeSlave)>>
 			<<set _didVaginal = 1>>
@@ -6194,11 +6197,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 			<<set _didAnal = 1>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "masochist")>>
-		You spin her around cruelly, jerking her back against your torso and shoving your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> up her butthole without bending her over first. $He ignores the @@.green;mildly appreciative@@ stares from passersby as you fuck $him, too lost in the delicious agony of a harsh standing anal fuck to care.
+		You spin $him around cruelly, jerking $him back against your torso and shoving your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> up $his butthole without bending $him over first. $He ignores the @@.green;mildly appreciative@@ stares from passersby as you fuck $him, too lost in the delicious agony of a harsh standing anal fuck to care.
 		<<set $rep += 50>>
 		<<set _didAnal = 1>>
 	<<else>>
-		You appeal to her uncomplicated tastes by letting her ride you as you sit on a balcony bench, your hands idly <<if $activeSlave.nipples != "fuckable">>playing with<<else>>fingering<</if>> $his nipples as $he rocks $his hips against you. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, concentrating on your face, smiling as you react to her efforts.
+		You appeal to $his uncomplicated tastes by letting $him ride you as you sit on a balcony bench, your hands idly <<if $activeSlave.nipples != "fuckable">>playing with<<else>>fingering<</if>> $his nipples as $he rocks $his hips against you. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, concentrating on your face, smiling as you react to $his efforts.
 		<<set $rep += 50>>
 		<<if canDoVaginal($activeSlave)>>
 			<<set _didVaginal = 1>>
@@ -6212,10 +6215,10 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 		<<= VaginalVCheck()>>
 	<</if>>
 	<<if ($activeSlave.fetishStrength == 100) || ($activeSlave.fetish == "none")>>
-		Since $he's totally sure of what gets her off, this public display that you know it too makes her @@.mediumaquamarine;trust you.@@
+		Since $he's totally sure of what gets $him off, this public display that you know it too makes $him @@.mediumaquamarine;trust you.@@
 		<<set $activeSlave.trust += 5>>
 	<<else>>
-		Since $he's developing her kinks, this public display of her sexual identity @@.lightcoral;advances $his fetish.@@
+		Since $he's developing $his kinks, this public display of $his sexual identity @@.lightcoral;advances $his fetish.@@
 		<<set $activeSlave.fetishStrength += 4>>
 	<</if>>
 	<</replace>>
@@ -6241,20 +6244,20 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<else>>
 		soft
 	<</if>>
-	back, but is accustomed to your touch and knows who you are. $He does not pause her masturbation, knowing that if you want $him to, you'll tell $him. You massage her warm skin, enjoying the animal energy of the onanistic spectacle laid out before you. $He builds toward climax, turning her head <<if canSee($activeSlave)>>to glance at<<else>>to listen to<</if>> you once or twice, but eventually realizing that you're just here to watch. $He turns over hurriedly for her climax, efficiently
+	back, but is accustomed to your touch and knows who you are. $He does not pause $his masturbation, knowing that if you want $him to, you'll tell $him. You massage $his warm skin, enjoying the animal energy of the onanistic spectacle laid out before you. $He builds toward climax, turning $his head <<if canSee($activeSlave)>>to glance at<<else>>to listen to<</if>> you once or twice, but eventually realizing that you're just here to watch. $He turns over hurriedly for $his climax, efficiently
 	<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		dribbling her weak orgasm out onto her<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly
+		dribbling $his weak orgasm out onto $his<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly
 	<<elseif $activeSlave.balls > 3>>
-		blowing her massive load all over her<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly<<if $activeSlave.belly < 10000>> and chest<</if>>
+		blowing $his massive load all over $his<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly<<if $activeSlave.belly < 10000>> and chest<</if>>
 	<<elseif $activeSlave.balls > 0>>
-		blowing cum up onto her own<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly
+		blowing cum up onto $his own<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly
 	<<elseif $activeSlave.vagina == -1>>
-		jerking her tiny little front hole sideways
+		jerking $his tiny little front hole sideways
 	<<else>>
-		jerking her wet pussy upward
+		jerking $his wet pussy upward
 	<</if>>
-	to avoid having to change the sheets. $He gets up carefully and heads off for a quick shower. When $he returns, it's to <<if canSee($activeSlave)>>a sight<<else>>a sound<</if>> that brings $him to a shocked standstill: you're in her bed, sound asleep. You had a long day, and the soft bed, warmed by her pretty body, felt very nice. After some deliberation, $he crawls in beside you, snuggling up to offer you more of $his body heat, direct from the source. $He is impressed almost to tears at the @@.mediumaquamarine;trust@@ you display in $him, and relaxes completely as you, dominant even when unconscious, encircle her
-	<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
+	to avoid having to change the sheets. $He gets up carefully and heads off for a quick shower. When $he returns, it's to <<if canSee($activeSlave)>>a sight<<else>>a sound<</if>> that brings $him to a shocked standstill: you're in $his bed, sound asleep. You had a long day, and the soft bed, warmed by $his pretty body, felt very nice. After some deliberation, $he crawls in beside you, snuggling up to offer you more of $his body heat, direct from the source. $He is impressed almost to tears at the @@.mediumaquamarine;trust@@ you display in $him, and relaxes completely as you, dominant even when unconscious, encircle $his
+	<<if $activeSlave.preg > 20>>
 		pregnant belly
 	<<elseif $activeSlave.belly >= 100000>>
 		_belly middle
@@ -6263,14 +6266,14 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<else>>
 		shoulders
 	<</if>>
-	with your arms and pull her in close.
+	with your arms and pull $him in close.
 	<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Exhaust $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He starts with surprise when $he feels your hand on her
+	$He starts with surprise when $he feels your hand on $his
 	<<if $activeSlave.weight > 160>>
 		rippling
 	<<elseif $activeSlave.weight > 95>>
@@ -6284,17 +6287,17 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<else>>
 		soft
 	<</if>>
-	back, but is accustomed to your touch and knows who you are. $He does not pause her masturbation, knowing that if you want $him to, you'll tell $him. You take a moment to enjoy the warmth of the working slave's body before gently taking the hand $he's using to buttfuck $himself, <<if ($activeSlave.anus > 2)>>pulling the dildo free of her relaxed asshole, and replacing it with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> before its gape can close.<<elseif ($activeSlave.anus > 1)>>pulling the dildo free of her loose anus, and replacing it with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> before its gape can close.<<else>>pulling her fingers free of her tight little ass, and replacing them with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> while it's still relaxed.<</if>> $He moans into the pillow and pats around blindly with her freed hand before finding your thigh and rubbing it affectionately. $He steps up her humping and soon shudders,
+	back, but is accustomed to your touch and knows who you are. $He does not pause $his masturbation, knowing that if you want $him to, you'll tell $him. You take a moment to enjoy the warmth of the working slave's body before gently taking the hand $he's using to buttfuck $himself, <<if ($activeSlave.anus > 2)>>pulling the dildo free of $his relaxed asshole, and replacing it with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> before its gape can close.<<elseif ($activeSlave.anus > 1)>>pulling the dildo free of $his loose anus, and replacing it with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> before its gape can close.<<else>>pulling $his fingers free of $his tight little ass, and replacing them with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> while it's still relaxed.<</if>> $He moans into the pillow and pats around blindly with $his freed hand before finding your thigh and rubbing it affectionately. $He steps up $his humping and soon shudders,
 	<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
 		releasing a pathetic spurt onto
 	<<elseif $activeSlave.balls > 3>>
-		shooting a big jet of cum all over her own <<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> stomach<<else>>chest<</if>> and
+		shooting a big jet of cum all over $his own <<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> stomach<<else>>chest<</if>> and
 	<<elseif $activeSlave.balls != 0>>
 		orgasming messily onto
 	<<else>>
 		going limp and slumping down onto
 	<</if>>
-	the sheets beneath $him. When you climax soon after, $he expects you to get off her so $he can clean up, but instead, the <<if $PC.dick == 1>>cock up $his butt returns to rock hardness<<if $PC.vagina == 1>> as you use a little manual stimulation of your own cunt to get your cock stiff again<</if>> and<<else>>strap-on up $his butt<</if>> goes back to pumping in and out of $him. $He slides a hand under $himself to <<if $activeSlave.vagina == -1>>jerk off<<else>>rub $himself<</if>> this time. When you finally finish, a long time later, the exhausted slave is lying on a bed wet with lube, <<if ($PC.dick == 1) || ($activeSlave.dick > 0)>> ejaculate,<</if>><<if ($PC.dick == 0) || ($activeSlave.vagina > -1)>> girlcum,<</if>> drool, and sweat. $He doesn't care, and you let $him curl up in her sex-soaked nest. As you leave, you think $he's asleep already, but <<if !canSee($activeSlave)>>as you go<<else>>$his $activeSlave.eyeColor eyes open a slit as you go and<</if>> $he murmurs, @@.hotpink;Thank<<s>>,@@ <<Master>>."
+	the sheets beneath $him. When you climax soon after, $he expects you to get off $him so $he can clean up, but instead, the <<if $PC.dick == 1>>cock up $his butt returns to rock hardness<<if $PC.vagina == 1>> as you use a little manual stimulation of your own cunt to get your cock stiff again<</if>> and<<else>>strap-on up $his butt<</if>> goes back to pumping in and out of $him. $He slides a hand under $himself to <<if $activeSlave.vagina == -1>>jerk off<<else>>rub $himself<</if>> this time. When you finally finish, a long time later, the exhausted slave is lying on a bed wet with lube, <<if ($PC.dick == 1) || ($activeSlave.dick > 0)>> ejaculate,<</if>><<if ($PC.dick == 0) || ($activeSlave.vagina > -1)>> girlcum,<</if>> drool, and sweat. $He doesn't care, and you let $him curl up in $his sex-soaked nest. As you leave, you think $he's asleep already, but <<if !canSee($activeSlave)>>as you go<<else>>$his $activeSlave.eyeColor eyes open a slit as you go and<</if>> $he murmurs, @@.hotpink;Thank<<s>>,@@ <<Master>>."
 	<<set $activeSlave.devotion += 5>>
 	<<= AnalVCheck(5)>>
 	<</replace>>
@@ -6302,8 +6305,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 <<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">>
 <br><<link "Play into $his fetish at bedtime">>
 	<<EventNameDelink $activeSlave>>
+	<<setNonlocalPronouns $seeDicks>>
 	<<replace "#result">>
-	$He starts with surprise when $he feels your hands seize $him by her
+	$He starts with surprise when $he feels your hands seize $him by $his
 	<<if $activeSlave.weight > 160>>
 		fat
 	<<elseif $activeSlave.weight > 130>>
@@ -6321,61 +6325,61 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<</if>>
 	shoulders,
 	<<if ($activeSlave.fetish == "submissive")>>
-		but $he relaxes into submissive compliance as you slide it up to the nape of her neck, grinding her face deeper into the pillow. $He gives muffled whines of happiness as you give her some light spanks before using $his butt without regard for her pleasure. $He does not climax, but when you roll her unresisting body over to give $his mouth<<if $activeSlave.belly >= 1500>>, swollen belly and breasts<<else>> and breasts<</if>> some attention, $he's clearly enjoying $himself.
+		but $he relaxes into submissive compliance as you slide it up to the nape of $his neck, grinding $his face deeper into the pillow. $He gives muffled whines of happiness as you give $him some light spanks before using $his butt without regard for $his pleasure. $He does not climax, but when you roll $his unresisting body over to give $his mouth<<if $activeSlave.belly >= 1500>>, swollen belly and breasts<<else>> and breasts<</if>> some attention, $he's clearly enjoying $himself.
 		<<set _didAnal = 1>>
 		<<set $activeSlave.oralCount++, $oralTotal++, $activeSlave.mammaryCount++, $mammaryTotal++>>
 	<<elseif ($activeSlave.fetish == "cumslut")>>
-		but $he is already licking $his lips with anticipation as you roll her over and straddle $his chest so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. The orally fixated slut concentrates on the oral to a fault, so you take $his arms and straddle them too so $he can reach $himself and get back to masturbating. $He hums happily, a very fine sensation on <<if $PC.dick == 1>>shaft<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>pussylips<</if>>.
+		but $he is already licking $his lips with anticipation as you roll $him over and straddle $his chest so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. The orally fixated slut concentrates on the oral to a fault, so you take $his arms and straddle them too so $he can reach $himself and get back to masturbating. $He hums happily, a very fine sensation on <<if $PC.dick == 1>>shaft<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>pussylips<</if>>.
 		<<set $activeSlave.oralCount++, $oralTotal++>>
 	<<elseif ($activeSlave.fetish == "humiliation")>>
-		but $he complies as you pull her up to kneel and take an assfuck. You let her get used to it and then wordlessly turn her head so $he can <<if canSee($activeSlave)>>see the screen in the room: it's now on, and it's showing a public live feed of your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> penetrating $his anus. $He recognizes $himself immediately<<else>>listen to the screen in the room: it's now on, and it's showing a public live feed of your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> penetrating $his anus. $He realizes the sounds of you fucking $his ass sync up with it<</if>>, and although the shot is such a closeup that the identity of the participants is not clear, the sheer humiliation of having $his rectum penetrated on camera brings $him to an indecently quick climax.
+		but $he complies as you pull $him up to kneel and take an assfuck. You let $him get used to it and then wordlessly turn $his head so $he can <<if canSee($activeSlave)>>see the screen in the room: it's now on, and it's showing a public live feed of your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> penetrating $his anus. $He recognizes $himself immediately<<else>>listen to the screen in the room: it's now on, and it's showing a public live feed of your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> penetrating $his anus. $He realizes the sounds of you fucking $his ass sync up with it<</if>>, and although the shot is such a closeup that the identity of the participants is not clear, the sheer humiliation of having $his rectum penetrated on camera brings $him to an indecently quick climax.
 		<<set _didAnal = 1>>
 	<<elseif ($activeSlave.fetish == "buttslut")>>
-		but $he eagerly complies as you pull her up to kneel and take an assfuck. You shove $his arms up over her head to stop her masturbation, confident that the anal whore can climax from nothing but your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> pumping in and out of $his butt. You're right, and her sphincter tightens with orgasm even sooner than you expected it to. You roll her over and go again,
+		but $he eagerly complies as you pull $him up to kneel and take an assfuck. You shove $his arms up over $his head to stop $his masturbation, confident that the anal whore can climax from nothing but your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> pumping in and out of $his butt. You're right, and $his sphincter tightens with orgasm even sooner than you expected it to. You roll $him over and go again,
 		<<if ["chastity", "combined chastity"].includes($activeSlave.vaginalAccessory)>>
-			the evidence of her first orgasm leaking out from behind her chastity belt.
+			the evidence of $his first orgasm leaking out from behind $his chastity belt.
 		<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-			her soft cock still releasing little spurts of ejaculate onto her <<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>><</if>> belly.
+			$his soft cock still releasing little spurts of ejaculate onto $his <<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>><</if>> belly.
 		<<elseif $activeSlave.dick > 0>>
-			her hard dick scattering the evidence of her orgasm around as it flops around with the buttsex.
+			$his hard dick scattering the evidence of $his orgasm around as it flops around with the buttsex.
 		<<elseif $activeSlave.vagina == -1>>
-			her tiny front hole dribbling a little fluid down $his legs.
+			$his tiny front hole dribbling a little fluid down $his legs.
 		<<else>>
 			$his pussy soaking wet with arousal.
 		<</if>>
 		<<set _didAnal = 1>>
 	<<elseif ($activeSlave.fetish == "boobs")>>
-		but $he giggles with anticipation as you flip her over. $His cute giggling turns into a gasp of arousal when you <<if $activeSlave.nipples != "fuckable">>seize both of her hard<<else>>sink your fingers into her<</if>> nipples and tug them upward to pull her into a half-sitting position. You hold her boobs for $him to accomplish a messy titfuck and let her masturbate at the same time. With $his nipples providing second and third loci of pleasure, $he climaxes quickly; you flip her over and do her doggy style, holding her shoulders down so the rough fuck drags her sensitive nipples<<if $activeSlave.belly >= 100000>> and _belly belly<</if>> across the sheets with every stroke.
+		but $he giggles with anticipation as you flip $him over. $His cute giggling turns into a gasp of arousal when you <<if $activeSlave.nipples != "fuckable">>seize both of $his hard<<else>>sink your fingers into $his<</if>> nipples and tug them upward to pull $him into a half-sitting position. You hold $his boobs for $him to accomplish a messy titfuck and let $him masturbate at the same time. With $his nipples providing second and third loci of pleasure, $he climaxes quickly; you flip $him over and do $him doggy style, holding $his shoulders down so the rough fuck drags $his sensitive nipples<<if $activeSlave.belly >= 100000>> and _belly belly<</if>> across the sheets with every stroke.
 		<<set _didAnal = 1>>
 		<<set $activeSlave.mammaryCount++, $mammaryTotal++>>
 	<<elseif ($activeSlave.fetish == "pregnancy")>>
-		but $he complies as you pull her up
+		but $he complies as you pull $him up
 		<<if $activeSlave.belly >= 300000>>
-			onto her _belly dome of a middle and take her over it.
+			onto $his _belly dome of a middle and take $him over it.
 		<<else>>
 			to kneel and take it doggy style.
 		<</if>>
-		After getting things going, you use one hand to begin groping her<<if $activeSlave.bellyPreg >= 1500>> pregnant<<elseif $activeSlave.belly >= 1500>> _belly<</if>> belly. Bending forward to whisper into her ear, you begin to describe how
+		After getting things going, you use one hand to begin groping $his<<if $activeSlave.bellyPreg >= 1500>> pregnant<<elseif $activeSlave.belly >= 1500>> _belly<</if>> belly. Bending forward to whisper into $his ear, you begin to describe how
 		<<if $activeSlave.belly >= 750000>>
-			$he's nothing more than a giant egg just waiting for her children to hatch; how $he's so close to bursting with life that just a few more babies should do it.
+			$he's nothing more than a giant egg just waiting for $his children to hatch; how $he's so close to bursting with life that just a few more babies should do it.
 		<<elseif $activeSlave.belly >= 600000>>
 			if $he grows any larger with child, $he'll practically be nothing more than an overswollen womb.
 		<<elseif $activeSlave.belly >= 450000>>
-			it must feel to be so obscenely pregnant that anyone and everyone can see the life distending her struggling body.
+			it must feel to be so obscenely pregnant that anyone and everyone can see the life distending $his struggling body.
 		<<elseif $activeSlave.belly >= 300000>>
 			full $he would feel if $he got anymore pregnant and how it would be to do even the most simple of tasks.
 		<<elseif $activeSlave.belly >= 150000>>
-			with a few more babies in $him, her obscene womb would each the floor.
+			with a few more babies in $him, $his obscene womb would each the floor.
 		<<elseif $activeSlave.belly >= 100000>>
 			obscene it would be if $he were swollen with more than a dozen children.
 		<<elseif $activeSlave.belly >= 15000>>
-			full and heavy $he'd be with octuplets crowding her womb.
+			full and heavy $he'd be with octuplets crowding $his womb.
 		<<elseif $activeSlave.pregKnown == 1>>
 			$he'd look and feel swollen with multiple children.
 		<<else>>
 			it might feel if $his belly were to grow heavy with pregnancy.
 		<</if>>
-		$He gasps with sudden shocked arousal at the idea, moaning with desire as you describe your hot seed jetting into $him, racing towards her core, turning $his body into nothing more than a breeding machine.
+		$He gasps with sudden shocked arousal at the idea, moaning with desire as you describe your hot seed jetting into $him, racing towards $his core, turning $his body into nothing more than a breeding machine.
 		<<if !canDoVaginal($activeSlave)>> It's $his butt you're fucking, but $he doesn't care.<</if>>
 		<<if canDoVaginal($activeSlave)>>
 			<<set _didVaginal = 1>>
@@ -6383,13 +6387,13 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 			<<set _didAnal = 1>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "dom")>>
-		but $he keeps masturbating even as you flip her over. You tell $him to keep going, and leave her there for a moment. $He obeys, looking mystified, but is pleased to <<if canSee($activeSlave)>>see you return with another slave<<elseif canHear($activeSlave)>>hear your footsteps return accompanied by a second set<<else>>feel the body heat of another slave upon your return<</if>>. You push the other girl unceremoniously down onto $activeSlave.slaveName, making her give $activeSlave.slaveName some oral while you roughly fuck her ass. $activeSlave.slaveName enjoys $himself immensely, jerking with pleasure every time you pound the poor girl hard enough to make her moan into $activeSlave.slaveName.
+		but $he keeps masturbating even as you flip $him over. You tell $him to keep going, and leave $him there for a moment. $He obeys, looking mystified, but is pleased to <<if canSee($activeSlave)>>see you return with another slave<<elseif canHear($activeSlave)>>hear your footsteps return accompanied by a second set<<else>>feel the body heat of another slave upon your return<</if>>. You push the other _girlU unceremoniously down onto $activeSlave.slaveName, making _himU give $activeSlave.slaveName some oral while you roughly fuck _hisU ass. $activeSlave.slaveName enjoys $himself immensely, jerking with pleasure every time you pound the poor _girlU hard enough to make _himU moan into $activeSlave.slaveName.
 		<<set $activeSlave.oralCount++, $oralTotal++>>
 	<<elseif ($activeSlave.fetish == "sadist")>>
-		but $he keeps masturbating even as you flip her over. You tell $him to keep going, and leave her there for a moment. $He obeys, looking mystified, but is pleased to <<if canSee($activeSlave)>>see you return with another slave<<elseif canHear($activeSlave)>>hear your footsteps return accompanied by a second set<<else>>feel the body heat of another slave upon your return<</if>>. You push the other girl unceremoniously down onto $activeSlave.slaveName, making her give $activeSlave.slaveName some oral while you spank her and then roughly fuck her ass. $activeSlave.slaveName enjoys $himself immensely, jerking with pleasure every time you strike or sodomize the poor girl hard enough to make her scream into $activeSlave.slaveName.
+		but $he keeps masturbating even as you flip $him over. You tell $him to keep going, and leave $him there for a moment. $He obeys, looking mystified, but is pleased to <<if canSee($activeSlave)>>see you return with another slave<<elseif canHear($activeSlave)>>hear your footsteps return accompanied by a second set<<else>>feel the body heat of another slave upon your return<</if>>. You push the other _girlU unceremoniously down onto $activeSlave.slaveName, making _himU give $activeSlave.slaveName some oral while you spank _himU and then roughly fuck _hisU ass. $activeSlave.slaveName enjoys $himself immensely, jerking with pleasure every time you strike or sodomize the poor _girlU hard enough to make _himU scream into $activeSlave.slaveName.
 		<<set $activeSlave.oralCount++, $oralTotal++>>
 	<<elseif ($activeSlave.fetish == "masochist")>>
-		but $he relaxes into submissive compliance as you slide it up to the nape of her neck, grinding her face deeper into the pillow. $He gives muffled whines of mixed pain and pleasure as you give her some hard spanks before sodomizing her right up to the edge of what her poor anus can take without damage. $He climaxes repeatedly to the pain, screaming helplessly as her orgasms force her abused sphincter to tighten spastically against the phallus invading it.
+		but $he relaxes into submissive compliance as you slide it up to the nape of $his neck, grinding $his face deeper into the pillow. $He gives muffled whines of mixed pain and pleasure as you give $him some hard spanks before sodomizing $him right up to the edge of what $his poor anus can take without damage. $He climaxes repeatedly to the pain, screaming helplessly as $his orgasms force $his abused sphincter to tighten spastically against the phallus invading it.
 		<<set _didAnal = 1>>
 	<</if>>
 	<<if _didAnal == 1>>
@@ -6397,12 +6401,12 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<elseif _didVaginal == 1>>
 		<<= VaginalVCheck()>>
 	<</if>>
-	$He's surprised but not displeased to find you standing over $him the next night at exactly the same time. By the third night, $he's masturbating in anticipation of your visit to her bed.
+	$He's surprised but not displeased to find you standing over $him the next night at exactly the same time. By the third night, $he's masturbating in anticipation of your visit to $his bed.
 	<<if ($activeSlave.fetishStrength > 95)>>
-		Since $he's totally sure of what gets her off, this consistent proof that you know it too makes her @@.mediumaquamarine;trust you.@@
+		Since $he's totally sure of what gets $him off, this consistent proof that you know it too makes $him @@.mediumaquamarine;trust you.@@
 		<<set $activeSlave.trust += 5>>
 	<<else>>
-		Since $he's developing her kinks, this consistent reinforcement @@.lightcoral;advances $his fetish.@@
+		Since $he's developing $his kinks, this consistent reinforcement @@.lightcoral;advances $his fetish.@@
 		<<set $activeSlave.fetishStrength += 4>>
 	<</if>>
 	<</replace>>
@@ -6411,10 +6415,10 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 
 <<case "terrified inspection">>
 
-<<link "Confirm her fears about you">>
+<<link "Confirm $his fears about you">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<if canSee($activeSlave)>>You throw $him a black cloth bag and tell $him to put it over her head. $He obeys hurriedly, though $he cannot quite restrain her tears from running down her $activeSlave.skin cheeks as $he dons the bag, blinding $himself.<</if>> $He trembles, blind and terrified, for several agonized minutes before a strangled sob escapes $him. $He immediately cringes, expecting to be punished, but nothing happens. You let her stand there for almost an hour, until you're sure $he's let her guard down, and then approach her quietly. You consider $his body, your personal property, carefully; and on careful consideration, you aim a vicious flick at her <<if ($activeSlave.balls > 3)>>nutsack<<elseif ($activeSlave.dick > 0)>>cockhead<<elseif ($activeSlave.clit > 1)>>prominent clit<<elseif ($activeSlave.labia > 0)>>prominent labia<<elseif ($activeSlave.nipples == "huge")>>one of her vulnerable nipples<<else>>one of $his nipples<</if>>. A flick barely registers on the list of ways you can administer pain to a slave, but after so much sensory deprivation, it knocks her halfway to the ground with a shriek of surprise and agony. $He crouches involuntarily, cherishing her stinging <<if ($activeSlave.balls > 3)>>testicles<<elseif ($activeSlave.dick > 0)>>prick<<elseif ($activeSlave.clit > 1)>>bitch button<<elseif ($activeSlave.labia > 0)>>pussylips<<else>>nipple<</if>> with both hands, sobbing. You <<if canSee($activeSlave)>>pluck the bag off her head and <</if>>tell $him to get out. $He half-walks, half-crawls away<<if canSee($activeSlave)>>, shielding $his eyes from the sudden brightness<</if>>, @@.gold;choking on her tears.@@
+	<<if canSee($activeSlave)>>You throw $him a black cloth bag and tell $him to put it over $his head. $He obeys hurriedly, though $he cannot quite restrain $his tears from running down $his $activeSlave.skin cheeks as $he dons the bag, blinding $himself.<</if>> $He trembles, blind and terrified, for several agonized minutes before a strangled sob escapes $him. $He immediately cringes, expecting to be punished, but nothing happens. You let $him stand there for almost an hour, until you're sure $he's let $his guard down, and then approach $him quietly. You consider $his body, your personal property, carefully; and on careful consideration, you aim a vicious flick at $his <<if ($activeSlave.balls > 3)>>nutsack<<elseif ($activeSlave.dick > 0)>>cockhead<<elseif ($activeSlave.clit > 1)>>prominent clit<<elseif ($activeSlave.labia > 0)>>prominent labia<<elseif ($activeSlave.nipples == "huge")>>one of $his vulnerable nipples<<else>>one of $his nipples<</if>>. A flick barely registers on the list of ways you can administer pain to a slave, but after so much sensory deprivation, it knocks $him halfway to the ground with a shriek of surprise and agony. $He crouches involuntarily, cherishing $his stinging <<if ($activeSlave.balls > 3)>>testicles<<elseif ($activeSlave.dick > 0)>>prick<<elseif ($activeSlave.clit > 1)>>bitch button<<elseif ($activeSlave.labia > 0)>>pussylips<<else>>nipple<</if>> with both hands, sobbing. You <<if canSee($activeSlave)>>pluck the bag off $his head and <</if>>tell $him to get out. $He half-walks, half-crawls away<<if canSee($activeSlave)>>, shielding $his eyes from the sudden brightness<</if>>, @@.gold;choking on $his tears.@@
 	<<set $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
@@ -6423,21 +6427,21 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<replace "#result">>
 	You order $him to spin slowly in place in a matter-of-fact tone of voice. $He does,
 	<<if ($activeSlave.weight > 160)>>
-		her fat body wobbling a little with the motion.
+		$his fat body wobbling a little with the motion.
 	<<elseif $activeSlave.belly >= 10000>>
-		her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly swinging wide as $he turns.
+		$his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly swinging wide as $he turns.
 	<<elseif ($activeSlave.weight > 95)>>
-		her chubby body wobbling a little with the motion.
+		$his chubby body wobbling a little with the motion.
 	<<elseif ($activeSlave.weight > 30)>>
-		her chubby belly wobbling a little with the motion.
+		$his chubby belly wobbling a little with the motion.
 	<<elseif ($activeSlave.dick > 1)>>
-		her soft dick waving a little with the motion.
+		$his soft dick waving a little with the motion.
 	<<elseif ($activeSlave.boobs > 800)>>
-		her udders swaying a little with the motion.
+		$his udders swaying a little with the motion.
 	<<elseif ($activeSlave.butt > 4)>>
 		$his ass jiggling a little with the motion.
 	<<elseif ($activeSlave.muscles > 5)>>
-		her abs playing across her midsection as $he does<<else>>her trim rear catching your eye.
+		$his abs playing across $his midsection as $he does<<else>>$his trim rear catching your eye.
 	<</if>>
 	In the same straightforward tone, you ask about $his health. $He swallows nervously and stammers,
 	<<if ($activeSlave.preg > $activeSlave.pregData.normalBirth/8) && ($activeSlave.preg < $activeSlave.pregData.normalBirth/3.33)>>
@@ -6456,9 +6460,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<</if>>
 	<<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>."
 	<br><br>
-	You then conduct a more thorough inspection, from the top of her $activeSlave.hColor-haired head on down. $He complies submissively, obviously expecting to be abused at any moment. $He obediently <<if ($activeSlave.boobs > 1000)>>lifts each of her massive breasts one by one to display each of them from all angles.<<elseif $activeSlave.belly >= 5000>> allows you to do as you will to her gravid stomach.<<else>>opens $his mouth and sticks out $his tongue on command.<</if>> $He even obeys an instruction to <<if ($activeSlave.dick > 1)>>take $himself by the dickhead and pull her member flat up against $his abdomen.<<elseif ($activeSlave.dick > 0)>>take her little dickhead between a thumb and forefinger and hold $himself out straight to reveal how tiny $he really is.<<elseif ($activeSlave.clit > 1)>>push back her hood to reveal all of her enormous clit.<<elseif ($activeSlave.labia > 1)>>spread her meaty labia to reveal $his cunt.<<elseif $activeSlave.vagina == -1>>really show off her smooth groin, displaying every bit of it, down to the tiny hole that's its only feature.<<else>>spread her pussylips to show off $his cunt.<</if>>
+	You then conduct a more thorough inspection, from the top of $his $activeSlave.hColor-haired head on down. $He complies submissively, obviously expecting to be abused at any moment. $He obediently <<if ($activeSlave.boobs > 1000)>>lifts each of $his massive breasts one by one to display each of them from all angles.<<elseif $activeSlave.belly >= 5000>> allows you to do as you will to $his gravid stomach.<<else>>opens $his mouth and sticks out $his tongue on command.<</if>> $He even obeys an instruction to <<if ($activeSlave.dick > 1)>>take $himself by the dickhead and pull $his member flat up against $his abdomen.<<elseif ($activeSlave.dick > 0)>>take $his little dickhead between a thumb and forefinger and hold $himself out straight to reveal how tiny $he really is.<<elseif ($activeSlave.clit > 1)>>push back $his hood to reveal all of $his enormous clit.<<elseif ($activeSlave.labia > 1)>>spread $his meaty labia to reveal $his cunt.<<elseif $activeSlave.vagina == -1>>really show off $his smooth groin, displaying every bit of it, down to the tiny hole that's its only feature.<<else>>spread $his pussylips to show off $his cunt.<</if>>
 	<br><br>
-	Finally the inspection reaches $his backdoor, so you tell $him to turn around, bend over, and pull her buttocks apart as wide as $he can. $He tenses in fear, obviously expecting anal rape, but after a moment of hesitation, $he obeys. $He turns, <<if $activeSlave.belly >= 10000>>carefully bends<<else>>bends<</if>>, and <<if ($activeSlave.butt > 5)>>grabs a handful of buttcheek in both hands, trembling as $he spreads $his ass to reveal<<elseif ($activeSlave.butt > 2)>>harshly pulls her own buttcheeks apart, clearly hoping that if $he treats $himself this way, you won't. $He reveals<<else>>even though her trim ass has already revealed everything, uses $his hands to spread $himself even wider to show off<</if>> her <<if ($activeSlave.anus > 2)>>poor, overused asshole, which despite $his terror is still gaping a little.<<elseif ($activeSlave.anus > 1)>>$his asshole, which is clenched tight in terror.<<else>>invitingly tight asshole, which is clenched hard in terror.<</if>> Maintaining your neutral tone, you ask her how $he feels about anal sex.
+	Finally the inspection reaches $his backdoor, so you tell $him to turn around, bend over, and pull $his buttocks apart as wide as $he can. $He tenses in fear, obviously expecting anal rape, but after a moment of hesitation, $he obeys. $He turns, <<if $activeSlave.belly >= 10000>>carefully bends<<else>>bends<</if>>, and <<if ($activeSlave.butt > 5)>>grabs a handful of buttcheek in both hands, trembling as $he spreads $his ass to reveal<<elseif ($activeSlave.butt > 2)>>harshly pulls $his own buttcheeks apart, clearly hoping that if $he treats $himself this way, you won't. $He reveals<<else>>even though $his trim ass has already revealed everything, uses $his hands to spread $himself even wider to show off<</if>> $his <<if ($activeSlave.anus > 2)>>poor, overused asshole, which despite $his terror is still gaping a little.<<elseif ($activeSlave.anus > 1)>>$his asshole, which is clenched tight in terror.<<else>>invitingly tight asshole, which is clenched hard in terror.<</if>> Maintaining your neutral tone, you ask $him how $he feels about anal sex.
 	<<if ($activeSlave.anus == 0)>>
 		"It'<<s>> <<s>>-<<s>>cary, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm afraid it'll h-hurt," $he gasps out.
 	<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut")>>
@@ -6470,29 +6474,29 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<else>>
 		"I h-hate it, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm n-not u<<s>>ed to it, and it hurt<<s>>," $he gasps out.
 	<</if>>
-	Without another word, you tell her $he can go. $He looks around to gape uncomprehendingly at you for a moment before letting go of her buttocks, straightening up, and <<if $activeSlave.belly >= 10000>>quickly waddling<<else>>fleeing<</if>>, feeling rather mystified that you @@.mediumaquamarine;didn't use her.@@
+	Without another word, you tell $him $he can go. $He looks around to gape uncomprehendingly at you for a moment before letting go of $his buttocks, straightening up, and <<if $activeSlave.belly >= 10000>>quickly waddling<<else>>fleeing<</if>>, feeling rather mystified that you @@.mediumaquamarine;didn't use $him.@@
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 
 <<case "cooler lockin">>
 
-<<link "Just direct $assistantName to let her out">>
+<<link "Just direct $assistantName to let $him out">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> unlatches the cooler door remotely, and admonishes $activeSlave.slaveName. The chilled slave scampers out of the cold air, rubbing her<<if $activeSlave.bellyPreg >= 1500>> _belly pregnant belly's<</if>> $activeSlave.skin skin to get some warmth back into it. $He's too cold to do much more than nod dumbly at $assistantName's review of how to operate the release, but $he's much more careful the next time $he's sent in there.
+	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> unlatches the cooler door remotely, and admonishes $activeSlave.slaveName. The chilled slave scampers out of the cold air, rubbing $his<<if $activeSlave.bellyPreg >= 1500>> _belly pregnant belly's<</if>> $activeSlave.skin skin to get some warmth back into it. $He's too cold to do much more than nod dumbly at $assistantName's review of how to operate the release, but $he's much more careful the next time $he's sent in there.
 	<</replace>>
 <</link>>
-<br><<link "Let her out yourself">>
+<br><<link "Let $him out yourself">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you get there, the poor $girl is pounding weakly against the refrigerator door to try to get someone's attention. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> was right, $he must be too cold to think straight; if $he weren't $he might <<if canSee($activeSlave)>>notice the<<else>>have thought to feel around for the<</if>> prominent release button right next to where $he's striking the door. $His desperate $activeSlave.skin face is visible in the window. You hit the exterior release and the door swings open quickly, dumping her into your arms. Despite not being devoted to you, $he clings to you like a long lost love, her <<if ($activeSlave.height >= 185)>>big cold<<elseif ($activeSlave.height >= 160)>>cold<<else>>cold little<</if>> <<if $activeSlave.belly >= 1500>>_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>><</if>>body shaking convulsively. $He tries to burrow even <<if ($PC.boobs > 0)>>deeper between your breasts<<else>>closer to you<</if>>, soaking up your warmth.
+	You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you get there, the poor $girl is pounding weakly against the refrigerator door to try to get someone's attention. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> was right, $he must be too cold to think straight; if $he weren't $he might <<if canSee($activeSlave)>>notice the<<else>>have thought to feel around for the<</if>> prominent release button right next to where $he's striking the door. $His desperate $activeSlave.skin face is visible in the window. You hit the exterior release and the door swings open quickly, dumping $him into your arms. Despite not being devoted to you, $he clings to you like a long lost love, $his <<if ($activeSlave.height >= 185)>>big cold<<elseif ($activeSlave.height >= 160)>>cold<<else>>cold little<</if>> <<if $activeSlave.belly >= 1500>>_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>><</if>>body shaking convulsively. $He tries to burrow even <<if ($PC.boobs > 0)>>deeper between your breasts<<else>>closer to you<</if>>, soaking up your warmth.
 	<<if !canTalk($activeSlave)>>
-		$He gestures her thanks shakily.
+		$He gestures $his thanks shakily.
 	<<else>>
 		"T-t-thank y-you, <<Master>>. I d-don't know what would have hap-p-pened if you hadn't come by," $he <<say>>s, teeth chattering.
 	<</if>>
-	$He clearly has no idea whatsoever that $assistantName could have let her out at any time. You rub your hands up and down her
+	$He clearly has no idea whatsoever that $assistantName could have let $him out at any time. You rub your hands up and down $his
 	<<if $activeSlave.weight > 160>>
 		rippling
 	<<elseif $activeSlave.weight > 95>>
@@ -6506,14 +6510,14 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<else>>
 		soft
 	<</if>>
-	back, helping her get warm. You point out the release handle and $he apologizes hastily for forgetting. Once $he's warm you gently tell $him to get back to it, and give $him a gentle shove on her <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>>. $He @@.mediumaquamarine;smiles gratefully@@ at you before heading back to get those drinks.
+	back, helping $him get warm. You point out the release handle and $he apologizes hastily for forgetting. Once $he's warm you gently tell $him to get back to it, and give $him a gentle shove on $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>>. $He @@.mediumaquamarine;smiles gratefully@@ at you before heading back to get those drinks.
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
-<br><<link "Punish her for her forgetfulness">>
+<br><<link "Punish $him for $his forgetfulness">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you<<if $PC.dick == 0>> don a strap-on and<</if>> get there, the poor <<if $activeSlave.pregKnown == 1>>pregnant <</if>>girl is pounding weakly against the refrigerator door to try to get someone's attention. $He looks relieved when you open the door, but her relief turns to ashes when you shut the door behind you. $He shivers with cold and fear as you sternly point out the release, high up on the door, and then demand $his hands. You bind them together and loop them over the release before hoisting $his legs off the ground so that her back is against the cold metal door and all her weight is hanging off the release by $his arms. $He doesn't struggle until you tell her $he can leave - if $he can get the release open like this. $He tries, but $he can't get enough leverage; her spastic efforts get weaker as you pull her <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>> away from the door and line <<if $PC.dick == 0>>the strap-on<<else>>your cock<</if>> up with her <<if ($activeSlave.anus > 2)>>loose asspussy<<elseif ($activeSlave.anus > 1)>>asshole<<else>>tight little asshole<</if>>. Teeth chattering, legs shaking with cold, $he takes a buttfuck in the cold cooler, hanging from what $he should have used to let $himself out. When you finish, you hit it yourself and drop $his legs, letting her unhook $himself and flee to the warmth outside. $He @@.gold;begs your pardon@@ abjectly as $he rubs her <<if $activeSlave.belly >= 5000>> _belly $activeSlave.skin belly <<else>>$activeSlave.skin shoulders <</if>>to warm $himself up<<if $PC.dick == 0>><<else>>, ignoring the cum <<if ($activeSlave.anus > 2)>>leaking out of her fucked-out anus<<elseif ($activeSlave.anus > 1)>>leaking out of her now-gaped backdoor<<else>>filling her still-tight anus<</if>><</if>>.
+	You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you<<if $PC.dick == 0>> don a strap-on and<</if>> get there, the poor <<if $activeSlave.pregKnown == 1>>pregnant <</if>>girl is pounding weakly against the refrigerator door to try to get someone's attention. $He looks relieved when you open the door, but $his relief turns to ashes when you shut the door behind you. $He shivers with cold and fear as you sternly point out the release, high up on the door, and then demand $his hands. You bind them together and loop them over the release before hoisting $his legs off the ground so that $his back is against the cold metal door and all $his weight is hanging off the release by $his arms. $He doesn't struggle until you tell $him $he can leave - if $he can get the release open like this. $He tries, but $he can't get enough leverage; $his spastic efforts get weaker as you pull $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>> away from the door and line <<if $PC.dick == 0>>the strap-on<<else>>your cock<</if>> up with $his <<if ($activeSlave.anus > 2)>>loose asspussy<<elseif ($activeSlave.anus > 1)>>asshole<<else>>tight little asshole<</if>>. Teeth chattering, legs shaking with cold, $he takes a buttfuck in the cold cooler, hanging from what $he should have used to let $himself out. When you finish, you hit it yourself and drop $his legs, letting $him unhook $himself and flee to the warmth outside. $He @@.gold;begs your pardon@@ abjectly as $he rubs $his <<if $activeSlave.belly >= 5000>> _belly $activeSlave.skin belly <<else>>$activeSlave.skin shoulders <</if>>to warm $himself up<<if $PC.dick == 0>><<else>>, ignoring the cum <<if ($activeSlave.anus > 2)>>leaking out of $his fucked-out anus<<elseif ($activeSlave.anus > 1)>>leaking out of $his now-gaped backdoor<<else>>filling $his still-tight anus<</if>><</if>>.
 	<<set $activeSlave.trust -= 5>>
 	<<= AnalVCheck()>>
 	<</replace>>
@@ -6521,18 +6525,18 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 
 <<case "spa boobs">>
 
-<<link "Sit against the side of the pool with her in your lap">>
+<<link "Sit against the side of the pool with $him in your lap">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You<<if $PC.dick == 0>> don a waterproof, vibrating strap-on and<</if>> step into the pool and <<if $activeSlave.belly >= 450000>>struggle to <</if>> lift her half-out of the water in a bridal carry, your arms behind her shoulders and the backs of $his knees. <<if canSee($activeSlave)>>$His eyes open<<else>>$He mumbles<</if>> sleepily<<if $activeSlave.belly >= 1500>>as $he rests a hand on her _belly belly,<</if>> and $he <<say>>s
+	You<<if $PC.dick == 0>> don a waterproof, vibrating strap-on and<</if>> step into the pool and <<if $activeSlave.belly >= 450000>>struggle to <</if>> lift $him half-out of the water in a bridal carry, your arms behind $his shoulders and the backs of $his knees. <<if canSee($activeSlave)>>$His eyes open<<else>>$He mumbles<</if>> sleepily<<if $activeSlave.belly >= 1500>>as $he rests a hand on $his _belly belly,<</if>> and $he <<say>>s
 	<<if ($activeSlave.lips > 70)>>
-		through her huge lips,
+		through $his huge lips,
 	<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-		through her piercings,
+		through $his piercings,
 	<<else>>
 		quietly,
 	<</if>>
-	"Hi, <<Master>>." You sit against the side of the pool, letting her
+	"Hi, <<Master>>." You sit against the side of the pool, letting $his
 	<<if ($activeSlave.butt > 8)>>
 		massive
 	<<elseif ($activeSlave.butt > 5)>>
@@ -6542,28 +6546,28 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<else>>
 		trim
 	<</if>>
-	bottom sink down into your lap. $He shimmies $himself atop your <<if $PC.dick == 0>>phallus<<else>>dick<</if>>, gently seating it between her buttocks, and cranes her neck back to kiss the bottom of your chin. $He gradually comes out of her heat stupor, riding $himself back and forth more and more until the <<if ($activeSlave.anus > 2)>>slit of her asspussy<<elseif ($activeSlave.anus > 1)>>opening of $his anus<<else>>pucker of $his butt<</if>> rests against your <<if $PC.dick == 0>>strongly vibrating strap-on<<else>>cock<</if>>. You take $his hips and firmly thrust into $his rectum, eliciting a little whimper, but $he begins to bounce gently in the water, sodomizing $himself, her gigantic breasts moving up and down and making concentric ripples spread outward. $He's still very relaxed and her first orgasm takes $him by surprise, <<if ($activeSlave.balls > 0)>>her cum floating to the surface<<if canSee($activeSlave)>>; $he points at it and giggles<<else>>; $he feels it brush her skin and giggles<</if>> before getting<<else>>making her twitch and shudder with aftershocks as $he gets<</if>> her feet up on the ledge to ride you harder. When you're done you let her float again, but curiosity about how her fucked butt feels under the water leads you to reach a hand between $his legs and grope $his anus. $His warm, relaxed <<if ($activeSlave.anus > 2)>>asspussy<<elseif ($activeSlave.anus > 1)>>backdoor<<else>>tightness<</if>> is so enticing you push $him to her feet and take $him a second time, standing in the shoulder-depth water. By the time you're done $he's so @@.hotpink;sexually exhausted@@ that you carry $him to the shower.
+	bottom sink down into your lap. $He shimmies $himself atop your <<if $PC.dick == 0>>phallus<<else>>dick<</if>>, gently seating it between $his buttocks, and cranes $his neck back to kiss the bottom of your chin. $He gradually comes out of $his heat stupor, riding $himself back and forth more and more until the <<if ($activeSlave.anus > 2)>>slit of $his asspussy<<elseif ($activeSlave.anus > 1)>>opening of $his anus<<else>>pucker of $his butt<</if>> rests against your <<if $PC.dick == 0>>strongly vibrating strap-on<<else>>cock<</if>>. You take $his hips and firmly thrust into $his rectum, eliciting a little whimper, but $he begins to bounce gently in the water, sodomizing $himself, $his gigantic breasts moving up and down and making concentric ripples spread outward. $He's still very relaxed and $his first orgasm takes $him by surprise, <<if ($activeSlave.balls > 0)>>$his cum floating to the surface<<if canSee($activeSlave)>>; $he points at it and giggles<<else>>; $he feels it brush $his skin and giggles<</if>> before getting<<else>>making $him twitch and shudder with aftershocks as $he gets<</if>> $his feet up on the ledge to ride you harder. When you're done you let $him float again, but curiosity about how $his fucked butt feels under the water leads you to reach a hand between $his legs and grope $his anus. $His warm, relaxed <<if ($activeSlave.anus > 2)>>asspussy<<elseif ($activeSlave.anus > 1)>>backdoor<<else>>tightness<</if>> is so enticing you push $him to $his feet and take $him a second time, standing in the shoulder-depth water. By the time you're done $he's so @@.hotpink;sexually exhausted@@ that you carry $him to the shower.
 	<<= AnalVCheck(2)>>
 	<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>><<if ($activeSlave.anus == 0)>> //This option will take virginity//<</if>>
-<br><<link "Fuck her under the water">>
+<br><<link "Fuck $him under the water">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You gather some necessary items into a pool bag and step stealthily into the water, taking $him by an ankle and towing her toward the deep end. "Hi, <<Master>>," comes a sleepy greeting from the slave as you pull her through the water, her boobs making twin bow waves. $He manages a shocked squeal as you quickly secure a weight belt <<if $activeSlave.belly >= 120000>>above her<<else>>around her<</if>><<if $activeSlave.belly >= 1500>> _belly<</if>> middle and drop $him, letting her sink so swiftly that <<if ($activeSlave.butt > 5)>>her massive bottom pads her against a painful thump on<<elseif ($activeSlave.butt > 2)>>her healthy bottom pads her against a painful thump on<<else>>her bottom receives a painful thump against<</if>> the bottom of the pool. Before $he can panic, $he feels your mouth against her<<if ($activeSlave.lips > 70)>> dick sucking<<elseif ($activeSlave.lips > 20)>> lovely<</if>> lips, breathing for $him. You have two long, flexible snorkels designed for exactly this, but you keep $hers away from $him and breathe $his air into $him for a short time, and $he @@.mediumaquamarine;trusts@@ you enough to rely on you. When you finally give $him $his snorkel $he laughs, bubbles rising from around the mouthpiece, and then hugs you impulsively, intentionally giving you a huge faceful of boob. You pull her weight belt down and tighten it around her ankles so $he's pinned standing on the bottom, and then
+	You gather some necessary items into a pool bag and step stealthily into the water, taking $him by an ankle and towing $him toward the deep end. "Hi, <<Master>>," comes a sleepy greeting from the slave as you pull $him through the water, $his boobs making twin bow waves. $He manages a shocked squeal as you quickly secure a weight belt <<if $activeSlave.belly >= 120000>>above $his<<else>>around $his<</if>><<if $activeSlave.belly >= 1500>> _belly<</if>> middle and drop $him, letting $him sink so swiftly that <<if ($activeSlave.butt > 5)>>$his massive bottom pads $him against a painful thump on<<elseif ($activeSlave.butt > 2)>>$his healthy bottom pads $him against a painful thump on<<else>>$his bottom receives a painful thump against<</if>> the bottom of the pool. Before $he can panic, $he feels your mouth against $his<<if ($activeSlave.lips > 70)>> dick sucking<<elseif ($activeSlave.lips > 20)>> lovely<</if>> lips, breathing for $him. You have two long, flexible snorkels designed for exactly this, but you keep $hers away from $him and breathe $his air into $him for a short time, and $he @@.mediumaquamarine;trusts@@ you enough to rely on you. When you finally give $him $his snorkel $he laughs, bubbles rising from around the mouthpiece, and then hugs you impulsively, intentionally giving you a huge faceful of boob. You pull $his weight belt down and tighten it around $his ankles so $he's pinned standing on the bottom, and then
 	<<if ($PC.vagina == 1)>>
-		spread $his knees so you can scissor your pussy against her in the near-zero gravity, the tangle of limbs and breasts swaying gently as you grind.
+		spread $his knees so you can scissor your pussy against $him in the near-zero gravity, the tangle of limbs and breasts swaying gently as you grind.
 	<<else>>
 		insert yourself into the
 		<<if canDoVaginal($activeSlave)>>
-			<<if ($activeSlave.vagina > 3)>>welcoming gape of $his pussy<<elseif ($activeSlave.vagina > 2)>>loose embrace of $his pussy<<elseif ($activeSlave.vagina > 1)>>welcoming embrace of $his pussy<<else>>tight tight embrace of $his pussy<</if>>. $He enjoys the sensation of such an unusual fucking, wriggling against her weighted feet and moaning through her snorkel as you gently take her under water. $His enormous breasts quiver in near-zero gravity with each thrust, until you notice the delicious motion and take one in each hand.
+			<<if ($activeSlave.vagina > 3)>>welcoming gape of $his pussy<<elseif ($activeSlave.vagina > 2)>>loose embrace of $his pussy<<elseif ($activeSlave.vagina > 1)>>welcoming embrace of $his pussy<<else>>tight tight embrace of $his pussy<</if>>. $He enjoys the sensation of such an unusual fucking, wriggling against $his weighted feet and moaning through $his snorkel as you gently take $him under water. $His enormous breasts quiver in near-zero gravity with each thrust, until you notice the delicious motion and take one in each hand.
 			<<= VaginalVCheck()>>
 		<<else>>
-			<<if ($activeSlave.anus > 2)>>loose slit of her asspussy<<elseif ($activeSlave.anus > 1)>>welcoming pucker of $his anus<<else>>tight pucker of $his butt<</if>>. $He exaggerates her discomfort, wriggling against her weighted feet and squealing through her snorkel as you gently sodomize her under water. $His enormous breasts quiver in near-zero gravity with each thrust, until you notice the delicious motion and take one in each hand.
+			<<if ($activeSlave.anus > 2)>>loose slit of $his asspussy<<elseif ($activeSlave.anus > 1)>>welcoming pucker of $his anus<<else>>tight pucker of $his butt<</if>>. $He exaggerates $his discomfort, wriggling against $his weighted feet and squealing through $his snorkel as you gently sodomize $him under water. $His enormous breasts quiver in near-zero gravity with each thrust, until you notice the delicious motion and take one in each hand.
 			<<= AnalVCheck()>>
 		<</if>>
 	<</if>>
-	The amount of air you can pull through the snorkel just isn't enough to facilitate the throes of your lovemaking, so by the time you're done, $he's so exhausted $he can barely float to the edge of the pool. Fortunately her lovely tits make for quite the floatation device, so you gently guide $him to the shallow end<<if $PC.dick || $activeSlave.balls>>, leaving a trail of cum in your wake<</if>>.
+	The amount of air you can pull through the snorkel just isn't enough to facilitate the throes of your lovemaking, so by the time you're done, $he's so exhausted $he can barely float to the edge of the pool. Fortunately $his lovely tits make for quite the floatation device, so you gently guide $him to the shallow end<<if $PC.dick || $activeSlave.balls>>, leaving a trail of cum in your wake<</if>>.
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
@@ -6573,7 +6577,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 <<link "Slaveowners do not hold their slaves' hands">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<if canSee($activeSlave)>>You shake your head sternly<<else>>You say nothing but don't take $his hand<</if>>. $He looks neither afraid nor crushed, but simply gazes properly at you, clearly waiting for punishment. When none comes, $he accepts that it was not culpably wrong of $him to ask, but that the answer is no. $He leaves the balcony feeling reassured about her place in $arcologies[0].name - a little more independent of her <<= WrittenMaster()>> and yet a little more inured to the reality of his control. $He is a proper devoted slave and will remain so.
+	<<if canSee($activeSlave)>>You shake your head sternly<<else>>You say nothing but don't take $his hand<</if>>. $He looks neither afraid nor crushed, but simply gazes properly at you, clearly waiting for punishment. When none comes, $he accepts that it was not culpably wrong of $him to ask, but that the answer is no. $He leaves the balcony feeling reassured about $his place in $arcologies[0].name - a little more independent of $his <<= WrittenMaster()>> and yet a little more inured to the reality of his control. $He is a proper devoted slave and will remain so.
 	<</replace>>
 <</link>>
 <br><<link "Hold $his hand">>
@@ -6591,12 +6595,12 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<else>>
 		tiny hand nestles into yours,
 	<</if>>
-	and <<if $activeSlave.muscles > 30>>her grip is extremely powerful<<elseif $activeSlave.muscles > 5>>her grip surprisingly strong<<else>>her grip is soft and feminine<</if>>. Through $his hand you feel her give a little shiver and relax. It's not difficult to sense her emotions as the two of you stand there gazing at the rising sun: $he's reassessing who $he is in light of her @@.hotpink;growing devotion@@ to you, drawing emotional strength from the strong grip that gently encircles $his hand.
+	and <<if $activeSlave.muscles > 30>>$his grip is extremely powerful<<elseif $activeSlave.muscles > 5>>$his grip surprisingly strong<<else>>$his grip is soft and feminine<</if>>. Through $his hand you feel $him give a little shiver and relax. It's not difficult to sense $his emotions as the two of you stand there gazing at the rising sun: $he's reassessing who $he is in light of $his @@.hotpink;growing devotion@@ to you, drawing emotional strength from the strong grip that gently encircles $his hand.
 	<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Buttfuck her against the railing">>
+<br><<link "Buttfuck $him against the railing">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You move quietly over to $him and encircle her with your arms, holding both $his hands over her _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your
@@ -6995,11 +6999,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<else>>
 		soft
 	<</if>>
-	back, forcing her<<if ($activeSlave.belly >= 1500)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>> against the doorframe.
+	back, forcing $his<<if ($activeSlave.belly >= 1500)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>> against the doorframe.
 	<<if $activeSlave.height >= 185>>
 		$He's so tall $his butt is at the perfect height right where it is, so $he relaxes as much as possible, trapped against the doorframe.
 	<<elseif $activeSlave.height < 160>>
-		$He's short enough that even tiptoes aren't enough, and you force her up between you and the doorframe, pinning her little body helplessly in place.
+		$He's short enough that even tiptoes aren't enough, and you force $him up between you and the doorframe, pinning $his little body helplessly in place.
 	<<else>>
 		$He squirms up on tiptoes to get $his hips to the right height, trapped between you and the doorframe.
 	<</if>>
@@ -7009,13 +7013,13 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 	<<elseif $activeSlave.vagina > 1>>
 		veteran pussy notwithstanding.
 	<<else>>
-		inserting slowly into her still-tight pussy.
+		inserting slowly into $his still-tight pussy.
 	<</if>>
-	You pump her hard from the first stroke, making it clear you're taking your pleasure, leaving her nothing to do but cling to the doorframe and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to
+	You pump $him hard from the first stroke, making it clear you're taking your pleasure, leaving $him nothing to do but cling to the doorframe and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to
 	<<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>>
-		rubbing her oversized cock between it and $his leg.
+		rubbing $his oversized cock between it and $his leg.
 	<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		humping her pathetic limp dick against it.
+		humping $his pathetic limp dick against it.
 	<<elseif $activeSlave.dick > 0>>
 		rubbing $his cock against it.
 	<<else>>
@@ -7028,7 +7032,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 <</link>><<if ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
 <</if>>
 <<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>>
-<br><<link "Invite her 'in'">>
+<br><<link "Invite $him 'in'">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on her face as $he hears<<else>>on her face as $he senses<</if>> you stand up from your desk and saunter over;
@@ -7361,10 +7365,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "rebellious arrogant">>
 
-<<link "Force her out of bed and humiliate her publicly">>
+<<link "Force $him out of bed and humiliate $him publicly">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You drag her unceremoniously out of bed and straight down into the public areas of $arcologies[0].name. $His struggles and protests grow more frantic as $he <<if canSee($activeSlave)>>sees the first passersby beginning to stare at the little spectacle<<elseif canHear($activeSlave)>>begins to hear the various catcalls and other comments directed at her<<else>>feels the outdoor air on $his body<</if>>. You force her right there, thoroughly raping the struggling $girl in public. @@.gold;$He learns the consequences of refusal,@@ but @@.red;your reputation has been decreased by the unseemly commotion.@@
+	You drag $him unceremoniously out of bed and straight down into the public areas of $arcologies[0].name. $His struggles and protests grow more frantic as $he <<if canSee($activeSlave)>>sees the first passersby beginning to stare at the little spectacle<<elseif canHear($activeSlave)>>begins to hear the various catcalls and other comments directed at $him<<else>>feels the outdoor air on $his body<</if>>. You force $him right there, thoroughly raping the struggling $girl in public. @@.gold;$He learns the consequences of refusal,@@ but @@.red;your reputation has been decreased by the unseemly commotion.@@
 	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
 		<<= BothVCheck()>>
 	<<elseif canDoVaginal($activeSlave)>>
@@ -7378,31 +7382,31 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<set $rep -= 100>>
 	<</replace>>
 <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
-<br><<link "Let her stay in bed, but move it to a public restroom">>
+<br><<link "Let $him stay in bed, but move it to a public restroom">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You quickly pin the blanket to the mattress, securing her in place. You direct that a urinal in one of $arcologies[0].name's public restrooms be unbolted and replaced by the mattress, slave and all. $He's been swearing and threatening all this time, but the calumny reaches a shrieking crescendo (though muffled by the blanket) when $he feels urine beginning to soak through the blanket. After an hour or so $he's begging to be let out, @@.gold;swearing $he'll improve her conduct.@@
+	You quickly pin the blanket to the mattress, securing $him in place. You direct that a urinal in one of $arcologies[0].name's public restrooms be unbolted and replaced by the mattress, slave and all. $He's been swearing and threatening all this time, but the calumny reaches a shrieking crescendo (though muffled by the blanket) when $he feels urine beginning to soak through the blanket. After an hour or so $he's begging to be let out, @@.gold;swearing $he'll improve $his conduct.@@
 	<<set $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Let her stay in bed, but move it to a whorehouse">>
+<br><<link "Let $him stay in bed, but move it to a whorehouse">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You quickly pin the blanket to the mattress, securing her in place. You direct that $he be brought to an arcology salon that serves as a slave brothel. Once $he's there, you take a pair of scissors and cut a slit through the sheets. $He's been swearing and threatening all this time, but the calumny reaches a shrieking crescendo when $he feels a cock being shoved through the slit and between her buttocks. Being muffled and held immobile for rape for hire @@.gold;terrifies her@@ but @@.yellowgreen;earns some cash.@@
+	You quickly pin the blanket to the mattress, securing $him in place. You direct that $he be brought to an arcology salon that serves as a slave brothel. Once $he's there, you take a pair of scissors and cut a slit through the sheets. $He's been swearing and threatening all this time, but the calumny reaches a shrieking crescendo when $he feels a cock being shoved through the slit and between $his buttocks. Being muffled and held immobile for rape for hire @@.gold;terrifies $him@@ but @@.yellowgreen;earns some cash.@@
 	<<set $activeSlave.trust -= 5>>
 	<<if canDoVaginal($activeSlave)>>
 		<<set $activeSlave.vaginalCount += 5, $vaginalTotal += 5, $activeSlave.publicCount += 5>>
 		<<if canDoAnal($activeSlave)>>
 			<<set $activeSlave.analCount += 5, $analTotal += 5, $activeSlave.publicCount += 5>>
 			<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
-				After the patrons have their way with $him, @@.lime;both $his pussy and asshole have been broken in.@@ $He @@.mediumorchid;hates@@ losing her virginities in such an indignified manner and @@.gold;fears@@ what will be taken from her next.
+				After the patrons have their way with $him, @@.lime;both $his pussy and asshole have been broken in.@@ $He @@.mediumorchid;hates@@ losing $his virginities in such an indignified manner and @@.gold;fears@@ what will be taken from $him next.
 				<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++, $activeSlave.anus++>>
 			<<elseif $activeSlave.vagina == 0>>
 				After the patrons have their way with $him, @@.lime;$he's certainly no longer a virgin.@@ $He @@.mediumorchid;hates@@ losing her virginity in such an indignified manner and @@.gold;fears@@ what will be taken from her next.
 				<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++>>
 			<<elseif $activeSlave.anus == 0>>
-				After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing her anal virginity in such an indignified manner and @@.gold;fears@@ what will be taken from her next.
+				After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing $his anal virginity in such an indignified manner and @@.gold;fears@@ what will be taken from $him next.
 				<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.anus++>>
 			<</if>>
 			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
@@ -7789,13 +7793,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <br><<link "Use a bait and switch tactic on $him, before public use">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You instruct $him to get cleaned up and get dressed in her nicest clothing. $He obeys, mystified, and is further puzzled to find that you're taking her out for a nice evening at a small bar. You share a tasty meal and listen to good music played on the little stage by an older slave. As the set concludes, you lean over and give $activeSlave.slaveName her real orders for the evening. $He freezes in terror but eventually makes her way up to the stage, strips in front of all the patrons, and says
+	You instruct $him to get cleaned up and get dressed in her nicest clothing. $He obeys, mystified, and is further puzzled to find that you're taking her out for a nice evening at a small bar. You share a tasty meal and listen to good music played on the little stage by an older slave. As the set concludes, you lean over and give $activeSlave.slaveName $his real orders for the evening. $He freezes in terror but eventually makes $his way up to the stage, strips in front of all the patrons, and says
 	<<if !canTalk($activeSlave)>>
 		in embarrassed gestures, "please use me, I'm cheap."
 	<<else>>
 		"One credit per fuck, if you'll do my worthle<<ss>> body on <<s>>tage."
 	<</if>>
-	By the end of the night, $he's been fucked by almost everyone in the bar, and her itch for humiliation has been well and truly scratched. As you collect her earnings from the thoroughly pleased bartender, $he lies quiescent in a puddle of cum and exhaustion. @@.yellowgreen;You've collected a decent fee,@@ and @@.green;your reputation has increased.@@
+	By the end of the night, $he's been fucked by almost everyone in the bar, and $his itch for humiliation has been well and truly scratched. As you collect her earnings from the thoroughly pleased bartender, $he lies quiescent in a puddle of cum and exhaustion. @@.yellowgreen;You've collected a decent fee,@@ and @@.green;your reputation has increased.@@
 	<<set $rep += 100>>
 	<<set $cash += 100>>
 	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
@@ -8694,7 +8698,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<</if>>
 	$He even plays it up a little for her audience; when $he
 	<<if ($activeSlave.belly >= 120000) && ($activeSlave.dick > 0)>>
-		climaxes, $he makes sure they can see the way her enormously distended body spasms with orgasm.
+		climaxes, $he makes sure they can see the way $his enormously distended body spasms with orgasm.
 	<<elseif ($activeSlave.belly >= 10000) && ($activeSlave.dick > 0)>>
 		finally orgasms, $he attempts to hike $his hips over her head and direct the cum into $his mouth. However, her <<if $activeSlave.bellyPreg >= 5000>>advanced pregnancy<<else>>_belly belly<</if>> thwarts her efforts and $he ends up cumming on $his stomach's underside. $He brushes some cum off with her fingers and brings it to $his mouth, smiling at the taste.
 	<<elseif ($activeSlave.dick > 0) && ($activeSlave.dick < 5) && ($activeSlave.belly >= 5000)>>
@@ -8935,7 +8939,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<else>>
 		<<= AnalVCheck()>>
 	<</if>>
-	So contorted, her
+	So contorted, $his
 	<<if canDoVaginal($activeSlave)>>
 		pussy
 	<<else>>
@@ -8948,7 +8952,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		sodomy,
 	<</if>>
 	so $he is soon moaning and grunting into $his cock as you fuck $him.
-	$He finishes <<if $activeSlave.balls >= 3>>her enormous ejaculation <</if>>into her own mouth and then <<if $PC.dick == 0>>finds $himself giving you oral directly, since you pulled your strap-on off<<else>>receives your load into her now-brimming throat<<if $PC.vagina == 1>>. $He barely has time to swallow before you press your pussy against $his mouth<</if>><</if>>. @@.hotpink;$His devotion to you has increased.@@
+	$He finishes <<if $activeSlave.balls >= 3>>$his enormous ejaculation <</if>>into $his own mouth and then <<if $PC.dick == 0>>finds $himself giving you oral directly, since you pulled your strap-on off<<else>>receives your load into $his now-brimming throat<<if $PC.vagina == 1>>. $He barely has time to swallow before you press your pussy against $his mouth<</if>><</if>>. @@.hotpink;$His devotion to you has increased.@@
 	<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
@@ -8956,7 +8960,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "obedient idiot">>
 
-<<link "Give her something more appropriate to suck on">>
+<<link "Give $him something more appropriate to suck on">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>>, as usual, has to give the stupid slut considerable coaching to get $him to your office without getting lost. This is a near-miraculous imbecility, as the penthouse is expressly designed to make it nearly impossible to get anywhere from anywhere else without passing by the office door. $He understands orders to <<if $PC.dick == 0>>perform cunnilingus<<else>>suck a dick<</if>>, though, and gets down to it eagerly enough. When $he finishes the job, <<if $PC.dick == 0>>wipes $his mouth<<else>>$he busily swallows every drop of your ejaculate<</if>> and then looks up at you doubtfully.
@@ -8988,16 +8992,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>>
 	<</replace>>
 <</link>>
-<br><<link "Spank the stupid out of her">>
+<br><<link "Spank the stupid out of $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He's so intent on trying to suck off the food dispenser that $he doesn't hear you enter the room. $He starts with surprise when you seize $him and push her
+	$He's so intent on trying to suck off the food dispenser that $he doesn't hear you enter the room. $He starts with surprise when you seize $him and push $him
 	<<if $activeSlave.belly >= 300000>>
 		over her _belly belly, face-down into the counter.
 	<<else>>
 		face-down across the counter.
 	<</if>>
-	After making her confirm that $he can hear you, you patiently repeat the very simple instructions for getting meals from the kitchen. Then, you tell $him to repeat them. $He manages the first step fine and has completely forgotten the second. The moment $he hesitates, $he has an instant to hear the rush of air trying to get out of the way of your speeding palm before it contacts the $activeSlave.skin skin of her buttocks. $He writhes and cries and promises to try harder, but her poor rear end is almost raw before $he gets it all right. $He leaves the kitchen snuffling sadly to $himself, but in the coming days $he really does seem to @@.gold;do her best@@ to avoid another beating.
+	After making $him confirm that $he can hear you, you patiently repeat the very simple instructions for getting meals from the kitchen. Then, you tell $him to repeat them. $He manages the first step fine and has completely forgotten the second. The moment $he hesitates, $he has an instant to hear the rush of air trying to get out of the way of your speeding palm before it contacts the $activeSlave.skin skin of her buttocks. $He writhes and cries and promises to try harder, but her poor rear end is almost raw before $he gets it all right. $He leaves the kitchen snuffling sadly to $himself, but in the coming days $he really does seem to @@.gold;do her best@@ to avoid another beating.
 	<<set $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
@@ -9009,17 +9013,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<if ($activeSlave.muscles > 30)>>
 		$His powerful form has to be sedated for immurement in the arcade.
 	<<elseif ($activeSlave.weight >= 190)>>
-		$He is so massively fat that immuring her in the arcade is a struggle, even when $he isn't trying to.
+		$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
 	<<elseif $activeSlave.belly >= 120000>>
-		$He is so enormously gravid that immuring her in the arcade is a hassle, even though her _belly middle limits her ability to struggle.
+		$He is so enormously gravid that immuring $him in the arcade is a hassle, even though her _belly middle limits $his ability to struggle.
 	<<elseif ($activeSlave.weight >= -10)>>
-		$His desperate struggles make immuring her in the arcade difficult.
+		$His desperate struggles make immuring $him in the arcade difficult.
 	<<elseif $activeSlave.belly >= 1500>>
-		$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit her properly into the restraints for immurement in the arcade.
+		$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
 	<<elseif $activeSlave.muscles < -15>>
-		$His weak body makes immuring her in the arcade pathetically easy.
+		$His weak body makes immuring $him in the arcade pathetically easy.
 	<<else>>
-		$His thin form makes immuring her in the arcade pathetically easy.
+		$His thin form makes immuring $him in the arcade pathetically easy.
 	<</if>>
 	After $he's properly confined, the only sign of her discomfiture is a slight movement of her $activeSlave.skin butt as $he wriggles desperately against her restraints.
 	<<= assignJob($activeSlave, "be confined in the arcade")>>
@@ -9590,7 +9594,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "extreme aphrodisiacs">>
 
-<<link "Take pity and give her relief">>
+<<link "Take pity and give $him relief">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You sit on the edge of the bed and draw her down to sit on your lap. This way, you can enjoy gently fucking her while you draw orgasm after orgasm out of her with your hands. $He'll only be relieved for a few hours, but $he's @@.hotpink;tearfully grateful all the same.@@
@@ -9604,7 +9608,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
-<br><<link "Send her away">>
+<br><<link "Send $him away">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	$He leaves with ill-concealed disappointment, and is faced with the choice between covert, rule-breaking masturbation or a sleepless night. $His regard for you @@.mediumorchid;has decreased.@@
@@ -9614,32 +9618,32 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "shaped areolae">>
 
-<<link "Show her off around the arcology">>
+<<link "Show $him off around the arcology">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You give $activeSlave.slaveName a variation on a usual slave gown. It's just as gorgeous, but this one actually covers her <<if $activeSlave.belly >= 1500>>_belly <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>>, <</if>>ass and crotch as well. In fact, it covers her 
+	You give $activeSlave.slaveName a variation on a usual slave gown. It's just as gorgeous, but this one actually covers $his <<if $activeSlave.belly >= 1500>>_belly <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>>, <</if>>ass and crotch as well. In fact, it covers $his 
 	<<if $activeSlave.amp == 1>>
-		limbless torso and face completely: everything except her boobs.
+		limbless torso and head completely: everything except the lower part of $his face, and $his boobs.
 	<<else>>
-		arms, legs, and her face from the nose up.
+		arms, legs, and $his face from the nose up.
 	<</if>>
-	The only flesh visible at all is $his mouth, her chin, and her huge breasts, supported and presented by gentle corseting.
+	The only flesh visible at all is $his mouth, $his chin, and $his huge breasts, supported and presented by gentle corseting.
 	<<if $activeSlave.amp == 1>>
-		You carry her around
+		You carry $him around
 		<<if $club != 0>>
 			$clubName.
 		<<else>>
 			$arcologies[0].name's clubs.
 		<</if>>
 	<<else>>
-		You place a gentle hand on the small of her back to guide $him, and stroll around 
+		You place a gentle hand on the small of $his back to guide $him, and stroll around 
 		<<if $club != 0>>
 			$clubName.
 		<<else>>
 			$arcologies[0].name's clubs.
 		<</if>>
 	<</if>>
-	$activeSlave.slaveName <<if canSee($activeSlave)>>is blinded by the silk over her face<<else>>may not be able to see<</if>>, but $he can still hear the appreciative murmurs of onlookers as they eye her magnificent breasts with their <<if $activeSlave.areolaeShape == "heart">>heart-shaped<<elseif $activeSlave.areolaeShape == "star">>star-shaped<</if>> areolae. $He shivers a little with suppressed pride. @@.hotpink;$His devotion to you has increased,@@ and @@.green;your reputation as a person with unique property grows.@@
+	$activeSlave.slaveName <<if canSee($activeSlave)>>is blinded by the silk over $his face<<else>>may not be able to see<</if>>, but $he can still <<if canHear($activeSlave)>>hear the appreciative murmurs<<else>>feel the appreciative presence<</if>> of onlookers as they eye $his magnificent breasts with their $activeSlave.areolaeShape-shaped areolae. $He shivers a little with suppressed pride. @@.hotpink;$His devotion to you has increased,@@ and @@.green;your reputation as a person with unique property grows.@@
 	<<set $activeSlave.devotion += 4>>
 	<<set $rep += 100>>
 	<</replace>>
@@ -9647,7 +9651,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <br><<link "Use that pride as an advertisement">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	There's all sorts of business going on in $arcologies[0].name, from flesh rented or bought down to more pedestrian affairs. Advertisement never goes amiss. You place $activeSlave.slaveName naked on a slowly rotating pedestal surrounded by a clear plastiglass tube on a busy thoroughfare in the lower parts of $arcologies[0].name. These devices are often used to display slaves for sale or slave whores for rent; $activeSlave.slaveName is simply identified by your name as arcology owner, which is thus @@.yellowgreen;identified with business prosperity.@@ $He spends the day serving as eye candy for passersby, rotating gently on the pedestal as $he shows off $his body, giving pride of place to her <<if $activeSlave.areolaeShape == "heart">>heart-shaped<<elseif $activeSlave.areolaeShape == "star">>star-shaped<</if>> areolae. $He loves all the attention, and @@.hotpink;$his devotion to you has increased.@@
+	There's all sorts of business going on in $arcologies[0].name, from flesh rented or bought down to more pedestrian affairs. Advertisement never goes amiss. You place $activeSlave.slaveName naked on a slowly rotating pedestal surrounded by a clear plastiglass tube on a busy thoroughfare in the lower parts of $arcologies[0].name. These devices are often used to display slaves for sale or slave whores for rent; $activeSlave.slaveName is simply identified by your name as arcology owner, which is thus @@.yellowgreen;identified with business prosperity.@@ $He spends the day serving as eye candy for passersby, rotating gently on the pedestal as $he shows off $his body, giving pride of place to $his $activeSlave.areolaeShape-shaped areolae. $He loves all the attention, and @@.hotpink;$his devotion to you has increased.@@
 	<<set $activeSlave.devotion += 4>>
 	<<set $cash += 100>>
 	<</replace>>
@@ -9655,7 +9659,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "huge tits">>
 
-<<link "Join her in the shower">>
+<<link "Join $him in the shower">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You step into the running water and help $him to her feet with exaggerated gallantry. $He seems surprised <<if canSee($activeSlave)>>and stares at<<else>>faces<</if>> you through the steam for a moment before looking away with a blush. Before long you have her back against the shower wall, her titanic udders<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly<</if>> offering an amusing challenge as they slide soapily between you as you fuck. $He comes in no time at all, and a brief massage of her huge soapy nipples produces a whimpering aftershock orgasm. <<if canSee($activeSlave)>>$His $activeSlave.eyeColor eyes stare straight into yours<<else>>You stare into her $activeSlave.eyeColor eyes<</if>> as $he writhes with overstimulation, @@.mediumaquamarine;her trust in your stewardship of her pleasure total.@@
@@ -10112,28 +10116,28 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<elseif $PC.refreshmentType == 6>>
 		tab of $PC.refreshment.
 	<</if>>
-	$He stares at you disbelievingly for a moment before stammering her thanks and accepting it with both hands. $He holds it uncertainly, watching you get one yourself.
+	$He stares at you disbelievingly for a moment before stammering $his thanks and accepting it with both hands. $He holds it uncertainly, watching you get one yourself.
 	<br><br>
 	$He is first among your slaves, but $he is still very much a slave. $He neither receives nor expects
 	<<if $PC.refreshmentType == 0>>
 		indulgences like tobacco and other smokables. Carcinogens are sometimes the necessary side effects of slave body modification, not an acceptable downside of luxury.
 	<<elseif $PC.refreshmentType == 1>>
-		drink other than what the slave feeding systems provide $him. $He might be your Head Girl, but the liquid food keeps her libido charged, $his body healthy, and $his asshole invitingly clean, just like any other slave.
+		drink other than what the slave feeding systems provide $him. $He might be your Head Girl, but the liquid food keeps $his libido charged, $his body healthy, and $his asshole invitingly clean, just like any other slave.
 	<<elseif $PC.refreshmentType == 2>>
-		food other than what the slave feeding systems provide $him. $He might be your Head Girl, but the liquid food keeps her libido charged, $his body healthy, and $his asshole invitingly clean, just like any other slave.
+		food other than what the slave feeding systems provide $him. $He might be your Head Girl, but the liquid food keeps $his libido charged, $his body healthy, and $his asshole invitingly clean, just like any other slave.
 	<<else>>
 		drugs other than what the drug dispensers provide $him. Addictive drugs are rarely provided to slaves, replaced instead with slightly healthier, but no less addictive, aphrodisiacs.
 	<</if>>
-	But it'll do no harm, just this once, and you tell her so. $He nods, not wanting to spoil the moment by speaking.
+	But it'll do no harm, just this once, and you tell $him so. $He nods, not wanting to spoil the moment by speaking.
 	<br><br>
 	<<if $PC.refreshmentType == 0>>
-		After you light her $PC.refreshment for $him, $he holds the first taste of its smoke in $his mouth for a long, sensual moment before letting it trickle back out through $his lips.
+		After you light $his $PC.refreshment for $him, $he holds the first taste of its smoke in $his mouth for a long, sensual moment before letting it trickle back out through $his lips.
 	<<elseif $PC.refreshmentType == 1 || $PC.refreshmentType == 2>>
 		$He holds the first taste of it in $his mouth for a long, sensual moment before swallowing reverently.
 	<<else>>
-		$He savors the thrill of using $PC.refreshment for a moment, before turning to you, an almost desperate need on her face.
+		$He savors the thrill of using $PC.refreshment for a moment, before turning to you, an almost desperate need on $his face.
 	<</if>>
-	You return to work, and $he follows your example, though $he's rather distracted. When $he finishes $hers, $he sets her tablet down for a moment and comes over to you, doing her best to show her naked body to best advantage as $he comes. $He gives you a deep kiss,
+	You return to work, and $he follows your example, though $he's rather distracted. When $he finishes $hers, $he sets $his tablet down for a moment and comes over to you, doing $his best to show $his naked body to its best advantage as $he comes. $He gives you a deep kiss,
 	<<if $PC.refreshmentType == 0 || $PC.refreshmentType == 1 || $PC.refreshmentType == 2>>
 		which tastes of fine $PC.refreshment, with a hint of $activeSlave.slaveName,
 	<<else>>
@@ -10157,7 +10161,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<else>>
 		slave food
 	<</if>>
-	briefly. Comprehension dawns across her<<if $activeSlave.faceShape != "normal">> $activeSlave.faceShape<</if>> face.
+	briefly. Comprehension dawns across $his<<if $activeSlave.faceShape != "normal">> $activeSlave.faceShape<</if>> face.
 	"Yes <<Master>>," $he <<say>>s quietly, more to buy time to formulate a response than anything else. "Um. I <<s>>till really, really want to cum, though. W-would you plea<<s>>e fuck me? Plea<<s>>e, plea<<s>>e, <<Master>>, plea<<s>>e fuck
 	<<if ($activeSlave.vagina > 0) && ($activeSlave.preg > $activeSlave.pregData.normalBirth/4) && canDoVaginal($activeSlave)>>
 		my pregnant pu<<ss>>y."
@@ -10803,13 +10807,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<</replace>>
 <</link>>
 <<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish != "none")>>
-<br><<link "Reward her for coming to you">>
+<br><<link "Reward $him for coming to you">>
 	<<EventNameDelink $activeSlave>>
+	<<setNonlocalPronouns $seeDicks>>
 	<<replace "#result">>
 	$He almost cries with relief when you tell $him to
 	<<switch $activeSlave.fetish>>
 	<<case "submissive">>
-		lie down on your desk on her side in the fetal position. $He clambers up hurriedly and hugs $his knees<<if $activeSlave.belly >= 10000>> as best $he can with her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy <</if>>in the way<</if>>, spinning $himself around on the smooth surface so $his rear is pointing right at you. You stand up and pull her over, her $activeSlave.skin skin sliding across the cool glass desktop, until her
+		lie down on your desk on $his side in the fetal position. $He clambers up hurriedly and hugs $his knees<<if $activeSlave.belly >= 10000>> as best $he can with her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy <</if>>in the way<</if>>, spinning $himself around on the smooth surface so $his rear is pointing right at you. You stand up and pull her over, her $activeSlave.skin skin sliding across the cool glass desktop, until her
 		<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
 			butt is right at the edge of the desk. You warm yourself up with a pussy fuck before shifting your attention to her neglected asshole.
 			<<= BothVCheck(3)>>
@@ -10849,7 +10854,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<elseif ($activeSlave.dick > 0)>>
 			$His <<if $activeSlave.dick > 6>>enormous <</if>>soft cock, flopping around as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, starts to twitch weakly and release little dribbles of cum. As $he stumbles forward, each step releases another squirt.
 		<<elseif $activeSlave.anus > 2>>
-			As $he stumbles a little with the orgasm, her <<if canDoAnal($activeSlave)>>naked anus is easily visible from behind $him, and its lewd spasms attract attention<<else>>anus lewdly spasms under her chastity, and her odd motions attract attention<</if>>.
+			As $he stumbles a little with the orgasm, her <<if canDoAnal($activeSlave)>>naked anus is easily visible from behind $him, and its lewd spasms attract attention<<else>>anus lewdly spasms under her chastity, and $his odd motions attract attention<</if>>.
 		<<elseif canDoVaginal($activeSlave)>>
 			$He focuses her attention on $his pussy, awkwardly stumbling along as $he tries to walk and finger $himself at the same time.
 		<<elseif canDoAnal($activeSlave)>>
@@ -10994,7 +10999,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 				<<if $activeSlave.mpreg == 1>>
 					$He's eager to get pregnant and intends to put her asspussy to use.
 				<<else>>
-					It's $his butt you're fucking, but that doesn't disrupt her fantasy.
+					It's $his butt you're fucking, but that doesn't disrupt $his fantasy.
 				<</if>>
 				<<= AnalVCheck()>>
 			<<else>>
@@ -11003,10 +11008,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 			<</if>>
 		<</if>>
 	<<case "dom">>
-		wait a moment, because you know what $he needs. $He's mystified, but steels $himself and waits. Another slave appears for an inspection, and she discovers that she's to be inspected with $activeSlave.slaveName's <<if canPenetrate($activeSlave)>>cock up her asshole<<else>>fingers assfucking her<</if>>. The dominant $activeSlave.slaveName climaxes immediately to $his use of the poor slave, rubbing <<if $activeSlave.belly >= 5000>>her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>$himself<</if>> all over the other slave's buttocks while $he continues banging her backdoor.
+		wait a moment, because you know what $he needs. $He's mystified, but steels $himself and waits. Another slave appears for an inspection, and _heU discovers that _heU's to be inspected with $activeSlave.slaveName's <<if canPenetrate($activeSlave)>>cock up _hisU asshole<<else>>fingers assfucking _himU<</if>>. The dominant $activeSlave.slaveName climaxes immediately to $his use of the poor slave, rubbing <<if $activeSlave.belly >= 5000>>$his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>$himself<</if>> all over the other slave's buttocks while $he continues banging _hisU backdoor.
 		<<set $activeSlave.penetrativeCount++, $penetrativeTotal++>>
 	<<case "sadist">>
-		wait a moment, because you know what $he needs. $He's mystified, but steels $himself and waits. Another slave appears for a trivial punishment, and she discovers that she's to be punished by $activeSlave.slaveName's <<if canPenetrate($activeSlave)>>dick<<else>>fingers<</if>>, forced up her anus. The dominant $activeSlave.slaveName climaxes quickly, but quickly recovers and keeps assraping the poor girl.
+		wait a moment, because you know what $he needs. $He's mystified, but steels $himself and waits. Another slave appears for a trivial punishment, and _heU discovers that _heU's to be punished by $activeSlave.slaveName's <<if canPenetrate($activeSlave)>>dick<<else>>fingers<</if>>, forced up _hisU anus. The dominant $activeSlave.slaveName climaxes quickly, but quickly recovers and keeps assraping the poor _girlU.
 		<<set $activeSlave.penetrativeCount++, $penetrativeTotal++>>
 	<<case "masochist">>
 		get $his ass up on your desk and
@@ -11017,7 +11022,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<else>>
 			lie face down.
 		<</if>>
-		$He <<if $activeSlave.belly >= 10000>>struggles to heft her <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>body<<else>>clambers<</if>> up, and you let her lie there for a while, tortured by anticipation and arousal, before giving her nearest buttock a harsh open-handed slap. The shock and pain send her over the edge immediately, and $he grinds forward into the desk involuntarily; the feeling of the cool desk against her <<if ($activeSlave.dick > 0)>>dickhead<<elseif $activeSlave.vagina == -1>>crotch<<else>>mons<</if>> slams her into a second climax, and $he sobs with overstimulation. You keep her there for a good long while, using her as a desktop toy that makes interesting noises when you hit it.
+		$He <<if $activeSlave.belly >= 10000>>struggles to heft her <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>body<<else>>clambers<</if>> up, and you let her lie there for a while, tortured by anticipation and arousal, before giving $his nearest buttock a harsh open-handed slap. The shock and pain send her over the edge immediately, and $he grinds forward into the desk involuntarily; the feeling of the cool desk against her <<if ($activeSlave.dick > 0)>>dickhead<<elseif $activeSlave.vagina == -1>>crotch<<else>>mons<</if>> slams her into a second climax, and $he sobs with overstimulation. You keep her there for a good long while, using her as a desktop toy that makes interesting noises when you hit it.
 	<</switch>>
 	<<if ($activeSlave.fetishStrength > 95)>>
 		Since $he's totally sure of what gets her off, this proof you know it too makes her @@.mediumaquamarine;trust you.@@
@@ -11027,9 +11032,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<set $activeSlave.fetishStrength += 4>>
 	<</if>>
 	<</replace>>
-<</link>><<if (canDoVaginal($activeSlave) && $activeSlave.vagina == 0) || (canDoAnal($activeSlave) && $activeSlave.anus == 0)>> //This option may take her virginity//<</if>>
+<</link>><<if (canDoVaginal($activeSlave) && $activeSlave.vagina == 0) || (canDoAnal($activeSlave) && $activeSlave.anus == 0)>> //This option may take $his virginity//<</if>>
 <</if>>
-<br>Let her get off:
+<br>Let $him get off:
 <<if ($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
 <br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while $he sucks">>
 	<<EventNameDelink $activeSlave>>
@@ -12461,7 +12466,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 			<<elseif $activeSlave.vagina == -1>>
 				perineum,
 			<</if>>
-			making her play with $himself. Meanwhile, you look after your womanhood with your other hand, schlicking expertly while holding her close, ensuring that $he feels every motion of what you're doing. When your fingers are thoroughly coated with pussyjuice, you drop $his hand, letting her continue masturbating on her own, and then use the freed hand to replace the one you're using to touch yourself. Then, you take the wet fingers and push them into $his mouth; $he willingly sucks them clean, using $his tongue to gather every trace of your secretions. You gather sweat from between your breasts, and make $him suck that off her fingers too. When $he orgasms, you shove her against the wall and hump against $him and your hand both, climaxing yourself.
+			making $him play with $himself. Meanwhile, you look after your womanhood with your other hand, schlicking expertly while holding her close, ensuring that $he feels every motion of what you're doing. When your fingers are thoroughly coated with pussyjuice, you drop $his hand, letting her continue masturbating on her own, and then use the freed hand to replace the one you're using to touch yourself. Then, you take the wet fingers and push them into $his mouth; $he willingly sucks them clean, using $his tongue to gather every trace of your secretions. You gather sweat from between your breasts, and make $him suck that off her fingers too. When $he orgasms, you shove her against the wall and hump against $him and your hand both, climaxing yourself.
 		<<else>>
 			You pull her up onto her toes and slide yourself inside $him, the slave gasping when $he feels your hot dick enter her
 			<<if canDoVaginal($activeSlave)>>
@@ -12995,12 +13000,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<</if>>
 <</if>>
 <<if canDoVaginal($activeSlave)>>
-<br><<link "Fuck her while $he prays">>
+<br><<link "Fuck $him while $he prays">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	$activeSlave.slaveName finds $himself standing in front of you, feeling you roughly using two fingers to finger $his pussy. $He gasps out:
 	"Oh <<Master>>, owner and protector, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, my tear<<s>> of <<s>>ervi<<c>>e. Remember not my iniquitie<<s>> but my willingne<<ss>> to be raped by you. I long to <<s>>erve your <<if $PC.dick == 0>>pu<<ss>>y<<else>><<if $PC.vagina == 1>>futa <</if>>dick<</if>>, and beg that you will u<<s>>e me and make your dwelling pla<<c>>e within my <<if $activeSlave.vagina == 0>>virgin fold<<s>><<else>>feminine <<s>>lit<</if>>. I promi<<s>>e to <<s>>ubmit to you a<<s>> your vaginal <<s>>lut all the day<<s>> of my <<s>>ervitude."
-	$He moans with relief when $he feels you withdraw your penetrating digits partway through her recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up her waiting pussy. $He @@.hotpink;does her best@@ to relax and resumes, "Oh <<Master>>..."
+	$He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up $his waiting pussy. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..."
 	<<= VaginalVCheck()>>
 	<<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>>
 		<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
@@ -13014,7 +13019,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <</link>><<if $activeSlave.vagina == 0>> //This will take virginity//<</if>>
 <</if>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Sodomize her while $he prays">>
+<br><<link "Sodomize $him while $he prays">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	$activeSlave.slaveName finds $himself standing in front of you, feeling you roughly probe $his ass with two fingers. $He gasps out:
@@ -13035,10 +13040,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "resistant anal virgin">>
 
-<<link "Let her earn continued anal virginity">>
+<<link "Let $him earn continued anal virginity">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell her $he's a sex slave, and that $he needs to learn how to take a dick up the ass.
+	You tell $him $he's a sex slave, and that $he needs to learn how to take a dick up the ass.
 	<<if !canTalk($activeSlave) && ($activeSlave.amp != 1)>>
 		$He frantically begs with gestures, pleading on $his knees.
 	<<elseif !canTalk($activeSlave)>>
@@ -13066,7 +13071,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<</replace>>
 <</link>> //This will take anal virginity//
 <<if $activeSlave.vagina == 0>>
-<br><<link "Make her choose between her virginities">>
+<br><<link "Make $him choose between $his virginities">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You tell her $he's a sex slave, and that $he needs to learn how to take a dick up the ass.
@@ -13121,7 +13126,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 			virgin pussy.
 		<</if>>
 	<<elseif canDoAnal($activeSlave)>>
-		curviness while displaying her
+		curviness while displaying $his
 		<<if $activeSlave.anus > 2>>
 			gaping asshole.
 		<<elseif $activeSlave.anus > 1>>
@@ -13134,17 +13139,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<else>>
 		curviness.
 	<</if>>
-	You take her about the <<if $activeSlave.belly >= 500 || $activeSlave.weight > 30>>middle and, with a little imagination, find that, indeed, you could make your thumbs and fingertips meet around it if you were to press.<<else>>waist and find that, indeed, you can make your thumbs and fingertips meet around it if you press, which elicits a squeak<</if>>.
+	You take $him about the <<if $activeSlave.belly >= 500 || $activeSlave.weight > 30>>middle and, with a little imagination, find that, indeed, you could make your thumbs and fingertips meet around it if you were to press.<<else>>waist and find that, indeed, you can make your thumbs and fingertips meet around it if you press, which elicits a squeak<</if>>.
 	<<if !canDoVaginal($activeSlave) && !canDoAnal($activeSlave)>>
-		There are many ways you could apply this during sex, but since $he is fully locked in chastity, you can only explain, in detail, the ways you would fuck her if you could. By the end $he's blushing vibrantly, but @@.mediumaquamarine;more confident in her sexual uniqueness.@@
+		There are many ways you could apply this during sex, but since $he is fully locked in chastity, you can only explain, in detail, the ways you would fuck $him if you could. By the end $he's blushing vibrantly, but @@.mediumaquamarine;more confident in her sexual uniqueness.@@
 		<<set $activeSlave.trust += 4>>
 	<<else>>
 		This can be applied during sex many ways. First, $he sits on the bathroom counter and bends $himself almost double for
 		<<if canDoAnal($activeSlave)>>
-			anal. Your control over the pace is perfected by your grip around her tiny middle.
+			anal. Your control over the pace is perfected by your grip around $his tiny middle.
 			<<= AnalVCheck()>>
 		<<else>>
-			vaginal. Your control over the pace is perfected by your grip around her tiny middle.
+			vaginal. Your control over the pace is perfected by your grip around $his tiny middle.
 			<<= VaginalVCheck()>>
 		<</if>>
 		Finally, $he goes down on all fours for a hard
@@ -13169,7 +13174,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<else>>
 		the latest dress from one of your arcology's leading tailors<<if $PC.boobsBonus > 0 || $PC.belly >= 1500 || $PC.butt > 0 || $PC.balls > 1 || $PC.ballsImplant > 1>>, carefully tailored to accentuate your splendid curves<</if>>.
 	<</if>>
-	$activeSlave.slaveName is a confection on your arm, displayed in a silk gown of strips and cuts that accentuates her artificial figure while leaving $his breasts,
+	$activeSlave.slaveName is a confection on your arm, displayed in a silk gown of strips and cuts that accentuates $his artificial figure while leaving $his breasts,
 	<<if $activeSlave.dick > 0>>
 		<<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>>
 			caged
@@ -13193,14 +13198,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<</if>>
 	lusciously bare. Your appearance together with your living accessory @@.green;increases your reputation.@@ After a refined meal and some sedate dancing, the maître d' announces that the establishment has become (the Free Cities definition of) a salon for the evening. After the more prudish couples file out, those who remain engage in public sexual congress;
 	<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-		$activeSlave.slaveName's gown allows you to take her in a <<if $activeSlave.belly >= 5000>>tight<<else>>close<</if>> lotus position on the cleared table, face to face.
+		$activeSlave.slaveName's gown allows you to take $him in a <<if $activeSlave.belly >= 5000>>tight<<else>>close<</if>> lotus position on the cleared table, face to face.
 		<<if canDoVaginal($activeSlave)>>
 			<<= VaginalVCheck()>>
 		<<else>>
 			<<= AnalVCheck()>>
 		<</if>>
 	<<else>>
-		you and $activeSlave.slaveName enjoy the sights while fooling around. While you'd love to use $him, her chastity keeps you at bay.
+		you and $activeSlave.slaveName enjoy the sights while fooling around. While you'd love to use $him, $his chastity keeps you at bay.
 	<</if>>
 	@@.hotpink;$He has become more devoted to you.@@
 	<<set $activeSlave.devotion += 4, $rep += 100>>
@@ -13209,18 +13214,18 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "muscles">>
 
-<<link "Reward her for her gains">>
+<<link "Reward $him for $his gains">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You tell $him to spread her towel on the floor and lie
 	<<if $activeSlave.belly >= 5000>>
-		on her side on it. You lie next to $him and
+		on $his side on it. You lie next to $him and
 	<<else>>
 		face down on it. You
 	<</if>>
-	run your hands across her sweaty <<if $seeRace == 1>>$activeSlave.race <</if>>muscles before giving $him a thorough, skillful and very intense massage. $He moans and grunts as you work the lactic acid out of her muscles, slowly reducing $him to a puddle of ripped sex slave. As you're rubbing her down to finish the massage, $he meekly begs you to fuck $him.
+	run your hands across $his sweaty <<if $seeRace == 1>>$activeSlave.race <</if>>muscles before giving $him a thorough, skillful and very intense massage. $He moans and grunts as you work the lactic acid out of her muscles, slowly reducing $him to a puddle of ripped sex slave. As you're rubbing her down to finish the massage, $he meekly begs you to fuck $him.
 	<<if !canDoVaginal($activeSlave) && !canDoAnal($activeSlave)>>
-		You tell $him that's not an option and pull her into a kiss instead. It's a strange sensation, this mass of muscle lying quietly still in your arms you, whimpering with delight as you gently make out with $him. Your wandering hands eventually tip her over the edge; $he hugs you tight as $he shakes with orgasm. Once $he stops crushing you, you return to enjoying her sweaty body.
+		You tell $him that's not an option and pull $him into a kiss instead. It's a strange sensation, this mass of muscle lying quietly still in your arms you, whimpering with delight as you gently make out with $him. Your wandering hands eventually tip her over the edge; $he hugs you tight as $he shakes with orgasm. Once $he stops crushing you, you return to enjoying $his sweaty body.
 	<<else>>
 		As $he lies still,
 		<<if $PC.dick == 0>>
@@ -13230,7 +13235,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 			<<if canDoVaginal($activeSlave)>>
 				pussy; $he's so relaxed from the massage that it slides in easily.
 				<<= VaginalVCheck()>>
-				It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently penetrate $him. $He comes in no time at all. When $he does you happen to be halfway inside $him; $he wraps $his legs around you and pulls you into her depths. You explode into her as $he holds you in place with her vicelike thighs.
+				It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently penetrate $him. $He comes in no time at all. When $he does you happen to be halfway inside $him; $he wraps $his legs around you and pulls you into $his depths. You explode into her as $he holds you in place with her vicelike thighs.
 			<<else>>
 				ass; $he's so relaxed from the massage that it slides in easily.
 				<<= AnalVCheck()>>
@@ -13764,15 +13769,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <<link "Fuck the bottom">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Since the other slave is riding $activeSlave.slaveName's <<if $seeRace == 1>>$activeSlave.race <</if>>dick, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop the other slave's riding for a moment, and insert yourself into $his anus. The other slave
+	Since the other slave is riding $activeSlave.slaveName's <<if $seeRace == 1>>$activeSlave.race <</if>>dick, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop the other slave's riding for a moment, and insert yourself into _hisU anus. The other slave
 	<<if $activeSlave.dick <= 2>>
 		gasps as your <<if $PC.dick == 0>>strap-on complements the small dick<<else>>big dick complements the small one<</if>> in $his pussy.
 	<<elseif $activeSlave.dick < 4>>
-		shrieks as $he feels $his holes stretched by <<if $PC.dick == 0>>a strap-on and a cock<<else>>two cocks<</if>>.
+		shrieks as _heU feels _hisU holes stretched by <<if $PC.dick == 0>>a strap-on and a cock<<else>>two cocks<</if>>.
 	<<else>>
-		struggles and begs for mercy as $his holes are brutally stretched.
+		struggles and begs for mercy as _hisU holes are brutally stretched.
 	<</if>>
-	The poor slave rides out the sexual storm as you and $activeSlave.slaveName fuck her<<if $PC.vagina == 1>>, your pussy sliding against the base of $activeSlave.slaveName's thrusting shaft<</if>>. $activeSlave.slaveName flirts outrageously with you over the other slave's shoulder whenever $he can. @@.mediumaquamarine;$He has become more trusting of you.@@
+	The poor slave rides out the sexual storm as you and $activeSlave.slaveName fuck _himU<<if $PC.vagina == 1>>, your pussy sliding against the base of $activeSlave.slaveName's thrusting shaft<</if>>. $activeSlave.slaveName flirts outrageously with you over the other slave's shoulder whenever $he can. @@.mediumaquamarine;$He has become more trusting of you.@@
 	<<set $activeSlave.trust += 4, $activeSlave.penetrativeCount++, $penetrativeTotal++>>
 	<</replace>>
 <</link>>
@@ -13780,12 +13785,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <br><<link "Fuck the top">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop her thrusting for a moment, and penetrate her butthole.
+	Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop $his thrusting for a moment, and penetrate $his butthole.
 	<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown) == 1>>
-		$He shivers with delight as $he feels her anal ring stretch to accommodate your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>>. <<set $activeSlave.devotion += 1>>
+		$He shivers with delight as $he feels $his anal ring stretch to accommodate your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>>. <<set $activeSlave.devotion += 1>>
 	<</if>>
 	<<= AnalVCheck()>>
-	Fucking a slave with <<if $activeSlave.prostate > 0>>prostate <</if>>stimulation from your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> in her <<if $seeRace == 1>>$activeSlave.race <</if>>ass makes her cum with indecent speed. You let her slide down so $he can finish the other slave with $his mouth while you continue using $his anus. The other slave definitely enjoys $activeSlave.slaveName's moaning into $his pussy as you use $activeSlave.slaveName's ass. The hard buttfucking $activeSlave.slaveName is getting keeps her dick stiff all the way through. @@.hotpink;$His submission to you has increased.@@
+	Fucking a slave with <<if $activeSlave.prostate > 0>>prostate <</if>>stimulation from your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> in $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass makes $him cum with indecent speed. You let $him slide down so $he can finish the other slave with $his mouth while you continue using $his anus. The other slave definitely enjoys $activeSlave.slaveName's moaning into _hisU pussy as you use $activeSlave.slaveName's ass. The hard buttfucking $activeSlave.slaveName is getting keeps $his dick stiff all the way through. @@.hotpink;$His submission to you has increased.@@
 	<<set $activeSlave.devotion += 4, $activeSlave.penetrativeCount++, $penetrativeTotal++>>
 	<</replace>>
 <</link>><<if ($activeSlave.anus == 0)>> //This option will take virginity//<</if>>
@@ -13796,7 +13801,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<replace "#result">>
 	$activeSlave.slaveName's hermaphroditic genitalia is a little crammed together; it's busy down there. $He obediently stops fucking so you can maneuver into $him.
 	<<= VaginalVCheck()>>
-	Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces her erection a little, so the slave beneath her helps her penetration as much as $he can. It's not the most convenient of fucks, but that's to be expected when a <<= WrittenMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once.<<if $PC.vagina == 1>><<if $PC.dick == 1>> You add a third by grabbing a free hand and guiding it to your own pussy; its owner gets the idea and strokes it as best $he can.<</if>><</if>> $activeSlave.slaveName's orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@
+	Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces $his erection a little, so the slave beneath $him helps $his penetration as much as _heU can. It's not the most convenient of fucks, but that's to be expected when a <<= WrittenMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once.<<if $PC.vagina == 1>><<if $PC.dick == 1>> You add a third by grabbing a free hand and guiding it to your own pussy; its owner gets the idea and strokes it as best they can.<</if>><</if>> $activeSlave.slaveName's orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@
 	<<set $activeSlave.devotion += 4, $activeSlave.penetrativeCount++, $penetrativeTotal++>>
 	<</replace>>
 <</link>><<if ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
@@ -13807,7 +13812,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <<link "The slave taking it has a free anus, use that">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Since the other slave is riding $activeSlave.slaveName's huge clit, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop the other slave's riding for a moment, and insert yourself into $his anus. The other slave gasps as your <<if $PC.dick == 0>>strap-on complements the clit<<else>>big dick complements the clit<</if>> in $his pussy. The poor slave rides out the sexual storm as you and $activeSlave.slaveName fuck $him. $activeSlave.slaveName flirts outrageously with you over the other slave's shoulder whenever $he can. @@.mediumaquamarine;$He has become more trusting of you.@@
+	Since the other slave is riding $activeSlave.slaveName's huge clit, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop the other slave's riding for a moment, and insert yourself into _hisU anus. The other slave gasps as your <<if $PC.dick == 0>>strap-on complements the clit<<else>>big dick complements the clit<</if>> in _hisU pussy. The poor slave rides out the sexual storm as you and $activeSlave.slaveName fuck _himU. $activeSlave.slaveName flirts outrageously with you over the other slave's shoulder whenever $he can. @@.mediumaquamarine;$He has become more trusting of you.@@
 	<<set $activeSlave.trust += 4, $activeSlave.penetrativeCount++, $penetrativeTotal++>>
 	<</replace>>
 <</link>>
@@ -13815,12 +13820,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <br><<link "The slave giving it has a free anus, use that">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop her thrusting for a moment, and insert yourself into $his anus.
+	Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop $his thrusting for a moment, and insert yourself into $his anus.
 	<<= AnalVCheck()>>
 	<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-		$He shivers with delight as $he feels her anal ring stretch to accommodate your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>>. <<set $activeSlave.devotion += 1>>
+		$He shivers with delight as $he feels $his anal ring stretch to accommodate your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>>. <<set $activeSlave.devotion += 1>>
 	<</if>>
-	Fucking a slave with stimulation from your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> in $his ass makes her cum with indecent speed. You let her slide down so $he can finish the other slave with $his mouth while you continue using $his anus. The other slave definitely enjoys $activeSlave.slaveName's moaning into $his pussy as you use $activeSlave.slaveName's ass. The hard buttfucking $activeSlave.slaveName is getting keeps $his clit hard all the way through. @@.hotpink;$His submission to you has increased.@@
+	Fucking a slave with stimulation from your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> in $his ass makes $him cum with indecent speed. You let $him slide down so $he can finish the other slave with $his mouth while you continue using $his anus. The other slave definitely enjoys $activeSlave.slaveName's moaning into _hisU pussy as you use $activeSlave.slaveName's ass. The hard buttfucking $activeSlave.slaveName is getting keeps $his clit hard all the way through. @@.hotpink;$His submission to you has increased.@@
 	<<set $activeSlave.devotion += 4, $activeSlave.penetrativeCount++, $penetrativeTotal++>>
 	<</replace>>
 <</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
@@ -13831,7 +13836,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<replace "#result">>
 	Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop her thrusting for a moment, and insert yourself into $his pussy. $He obediently stops fucking so you can maneuver into $him.
 	<<= VaginalVCheck()>>
-	Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces her ability to use her engorged clit like a penis a little, so the slave beneath her helps her penetration as much as $he can. It's not the most convenient of fucks, but that's to be expected when a <<= WrittenMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once. $His orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@
+	Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces $his ability to use $his engorged clit like a penis a little, so the slave beneath $him helps $his penetration as much as _heU can. It's not the most convenient of fucks, but that's to be expected when a <<= WrittenMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once. $His orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@
 	<<set $activeSlave.devotion += 4, $activeSlave.penetrativeCount++, $penetrativeTotal++>>
 	<</replace>>
 <</link>><<if ($activeSlave.vagina == 0)>> //This option will take vaginal virginity//<</if>>
@@ -14099,19 +14104,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<else>>
 			$He
 		<</if>>
-		collapses like a doll with its strings cut, already crying. You seize her head in both hands and ride her sobbing mouth. If $he thought that rape required a dick, $he was wrong. If $he thought that you needed a strap-on to rape $him, $he was wrong. Your fingers form claws, holding her head in a terrifying grip as you enjoy the not unfamiliar sensation of a slave weeping into your cunt as you grind it against her crying face.
+		collapses like a doll with its strings cut, already crying. You seize $his head in both hands and ride $his sobbing mouth. If $he thought that rape required a dick, $he was wrong. If $he thought that you needed a strap-on to rape $him, $he was wrong. Your fingers form claws, holding her head in a terrifying grip as you enjoy the not unfamiliar sensation of a slave weeping into your cunt as you grind it against her crying face.
 	<<else>>
 		at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and
 		<<if $activeSlave.belly >= 5000>>
-			gently eases her <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground,
+			gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground,
 		<<else>>
 			kneels,
 		<</if>>
-		$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help her understand by
+		$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by
 		<<if $activeSlave.belly >= 600000>>
-			slamming your hands against the bloated mass grossly distending her sides,
+			slamming your hands against the bloated mass grossly distending $his sides,
 		<<else>>
-			jabbing a thumb into one of her kidneys,
+			jabbing a thumb into one of $his kidneys,
 		<</if>>
 		forcing her back to arch in involuntary response, and then grinding her face into the couch cushions.
 		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
@@ -14383,6 +14388,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<link "Improve on $his abusive little game">>
 	<<EventNameDelink $activeSlave>>
+	<<setNonlocalPronouns $seeDicks>>
 	<<replace "#result">>
 	<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
 	<<set _targetJobs = ["rest", "be a servant", "be a subordinate slave", "whore", "serve the public", "work a glory hole", "get milked", "please you", "work as a servant", "serve in the club", "rest in the spa", "learn in the schoolroom", "take classes", "work in the brothel"]>>
@@ -14392,7 +14398,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<else>>
 		with a dildo jutting up from $his crotch;
 	<</if>>
-	in order to eat, each slave must ride $activeSlave.slaveName for as long as it takes to suck down her meal<<if $activeSlave.belly >= 5000>> (given the _belly mass jutting from $his middle, it should be quite the sight)<</if>>. $activeSlave.slaveName gapes at you openmouthed for a long moment, looking like $he wants to @@.hotpink;declaim a speech of thanks,@@ but you cut $him off by pointing peremptorily at $his place; $he almost runs over, $his @@.mediumaquamarine;trust in your whim@@ nearly absolute. But the true shape of your plan isn't apparent yet. When the first girl seats herself on $activeSlave.slaveName and starts sucking off the dispenser dildo, you crouch behind her and insert yourself as well; the bitch is now airtight. She gags and splutters with the discomfort but keeps working away until she gets her meal down and struggles off the three phalluses she has in her. The next girl gets to it with some trepidation: and so it goes, slave by slave.
+	in order to eat, each slave must ride $activeSlave.slaveName for as long as it takes to suck down their meal<<if $activeSlave.belly >= 5000>> (given the _belly mass jutting from $his middle, it should be quite the sight)<</if>>. $activeSlave.slaveName gapes at you openmouthed for a long moment, looking like $he wants to @@.hotpink;declaim a speech of thanks,@@ but you cut $him off by pointing peremptorily at $his place; $he almost runs over, $his @@.mediumaquamarine;trust in your whim@@ nearly absolute. But the true shape of your plan isn't apparent yet. When the first slave seats _himselfU on $activeSlave.slaveName and starts sucking off the dispenser dildo, you crouch behind _himU and insert yourself as well; the bitch is now airtight. _HeU gags and splutters with the discomfort but keeps working away until _heU gets _hisU meal down and struggles off the three phalluses _heU has in _himU. The next in line gets to it with some trepidation: and so it goes, slave by slave.
 	<<for _ress = 0; _ress < $slaves.length; _ress++>>
 		<<if _targetJobs.includes($slaves[_ress].assignment) && $slaves[_ress].amp != 1 && $slaves[_ress].relationship != -3 && _ress.ID != $activeSlave.ID>>
 			<<if canDoAnal($slaves[_ress]) && canDoVaginal($slaves[_ress])>>
@@ -14475,7 +14481,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		Your chaste slaves hold their thighs tight together for a little frottage should they lack the ability to accommodate.
 	<</if>>
 	<<if def _anusOnly>>
-		Girls without pussies are forced to take both you and $activeSlave.slaveName up the butt at once.
+		Those slaves without pussies are forced to take both you and $activeSlave.slaveName up the butt at once.
 		<<if def _doubleAnal>>
 			Experienced assholes can take the strain just fine, but your tighter-assed slaves are @@.gold;frightened@@ by the anal pain they suffer.
 		<</if>>
@@ -14496,7 +14502,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	<<set _targetJobs = ["rest", "be a servant", "be a subordinate slave", "whore", "serve the public", "work a glory hole", "get milked", "please you", "work as a servant", "serve in the club", "rest in the spa", "learn in the schoolroom", "take classes", "work in the brothel"]>>
-	You tell $activeSlave.slaveName to get up on the kitchen counter and spread $his legs. $He catches something in the tone of your voice and looks frightened, but obeys. You then make several conversational observations, as though for no particular reason, to the rest of the slaves. First, you point out, the consent rule works for everyone: they, hypothetically, would not need to ask $activeSlave.slaveName $his permission to fuck $his ass, just like $he doesn't have to ask their permission to molest them during meals. (At this $activeSlave.slaveName's fear deepens into obvious @@.gold;terror.@@) Second, you have decided $activeSlave.slaveName will not be getting down off the counter until everyone's done with her meal - and anything else she wishes to do in the kitchen. And third, you conclude, any number of large strap-ons and dildos can be found in the kitchen cabinets. There is a general rush for these; you tell $activeSlave.slaveName, whose
+	You tell $activeSlave.slaveName to get up on the kitchen counter and spread $his legs. $He catches something in the tone of your voice and looks frightened, but obeys. You then make several conversational observations, as though for no particular reason, to the rest of the slaves. First, you point out, the consent rule works for everyone: they, hypothetically, would not need to ask $activeSlave.slaveName $his permission to fuck $his ass, just like $he doesn't have to ask their permission to molest them during meals. (At this $activeSlave.slaveName's fear deepens into obvious @@.gold;terror.@@) Second, you have decided $activeSlave.slaveName will not be getting down off the counter until everyone's done with their meals - and anything else they wish to do in the kitchen. And third, you conclude, any number of large strap-ons and dildos can be found in the kitchen cabinets. There is a general rush for these; you tell $activeSlave.slaveName, whose
 	<<if $activeSlave.lips > 40>>
 		bimbo
 	<<elseif $activeSlave.lips > 20>>
@@ -14504,7 +14510,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<elseif $activeSlave.lips > 10>>
 		soft
 	<</if>>
-	lips are quivering, to come see you after $he's done here. About an hour later, $he hobbles into your office, and you tell $him to show you $his anus. $His longtime targets for mealtime molestation were not merciful; they weren't stupid enough to damage $him, but that's one well-gaped butthole. You fuck it anyway, and $he's too tired and desensitized to care. Your less trusting slaves carefully consider the rules, and realize that there's a @@.mediumaquamarine;built-in mechanism for correction:@@ if anyone gets too rapey, they can rape her right back.
+	lips are quivering, to come see you after $he's done here. About an hour later, $he hobbles into your office, and you tell $him to show you $his anus. $His longtime targets for mealtime molestation were not merciful; they weren't stupid enough to damage $him, but that's one well-gaped butthole. You fuck it anyway, and $he's too tired and desensitized to care. Your less trusting slaves carefully consider the rules, and realize that there's a @@.mediumaquamarine;built-in mechanism for correction:@@ if anyone gets too rapey, they can rape them right back.
 	<<set $activeSlave.trust -= 5>>
 	<<= AnalVCheck(20)>>
 	<<if canGetPregnant($activeSlave) && $activeSlave.mpreg == 1>>
@@ -14532,7 +14538,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "forbidden masturbation">>
 
-<<link "Let her earn relief">>
+<<link "Let $him earn relief">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	$He's extremely relieved that you're not going to punish her for the rulebreaking when you tell $him that $he can touch $himself if $he
@@ -15102,7 +15108,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <<link "Go clubbing">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing glitzy heels, an extremely short skirt<<if $activeSlave.belly >= 5000>> barely noticeable under her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, and a string bikini top so brief that $his areolae are clearly visible. As you descend through $arcologies[0].name the beats get faster and the drops get heavier. By the time you reach the club where the Free Cities' hottest DJ has a show tonight, $activeSlave.slaveName is a whirlwind of sexual energy in motion, moving with every beat and catching every eye<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>, despite how far along $he is<<elseif $activeSlave.belly >= 5000 || $activeSlave.weight > 130>>, despite how big $he is<</if>>. $His skills could have half the club lining up to fuck her for money, but tonight $he's all yours. The entire floor is envious of you as the night wears on and her dancing turns into sexual servicing you in time with the music.
+	You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing glitzy heels, an extremely short skirt<<if $activeSlave.belly >= 5000>> barely noticeable under her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, and a string bikini top so brief that $his areolae are clearly visible. As you descend through $arcologies[0].name the beats get faster and the drops get heavier. By the time you reach the club where the Free Cities' hottest DJ has a show tonight, $activeSlave.slaveName is a whirlwind of sexual energy in motion, moving <<if canHear($activeSlave)>>with every beat<<else>>wildly<</if>> and catching every eye<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>, despite how far along $he is<<elseif $activeSlave.belly >= 5000 || $activeSlave.weight > 130>>, despite how big $he is<</if>>. $His skills could have half the club lining up to fuck $him for money, but tonight $he's all yours. The entire floor is envious of you as the night wears on and $his dancing turns into sexually servicing you<<if canHear($activeSlave)>> in time with the music<</if>>.
 	<<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>>
 		The smell of her pre-cum is noticeable even over the stink of sweat.
 	<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
@@ -17380,7 +17386,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<br><<link "Sentence $him to a day in $arcadeName for cum injection therapy">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You have $assistantName inform $activeSlave.slaveName of her unacceptable behavior and sentence $him to a day in $arcadeName. $He cries and pleads for mercy, and even begs to be allowed to suck a cock, any cock, so $he can prove her newfound enthusiasm for cum, but you are unmerciful as two other slaves drag her off to serve her sentence. $He is forced to wear a<<if $activeSlave.vagina != -1>> combined vaginal and<<else>>n<</if>> anal chastity belt so that the only hole available is $his mouth, and is then confined in $arcadeName with $his mouth spread open by a ring gag and her head sticking through the hole in the wall. A sign below $his mouth proclaims $him to be a "cum extraction tube" and $he is used that way for the duration of her stay--a grueling, 18-hour marathon of relentless throat fucking. <<if $activeSlave.sexualFlaw != "hates oral">>$His ordeal is so extreme that $he now @@.red;hates oral sex@@<<else>>$His hatred of oral sex makes her ordeal that much more horrific<</if>>, but it @@.hotpink;breaks down her resistance@@. $He now @@.gold;better understands the terrifying power you have over her@@, and the sheer amount of cum $he is forced to ingest @@.red;negatively effects $his health@@. Your other cum-fed slaves take note of what you do to girls who can't hold down their assigned diet.
+	You have $assistantName inform $activeSlave.slaveName of $his unacceptable behavior and sentence $him to a day in $arcadeName. $He cries and pleads for mercy, and even begs to be allowed to suck a cock, any cock, so $he can prove $his newfound enthusiasm for cum, but you are unmerciful as two other slaves drag $him off to serve $his sentence. $He is forced to wear a<<if $activeSlave.vagina != -1>> combined vaginal and<<else>>n<</if>> anal chastity belt so that the only hole available is $his mouth, and is then confined in $arcadeName with $his mouth spread open by a ring gag and her head sticking through the hole in the wall. A sign below $his mouth proclaims $him to be a "cum extraction tube" and $he is used that way for the duration of her stay--a grueling, 18-hour marathon of relentless throat fucking. <<if $activeSlave.sexualFlaw != "hates oral">>$His ordeal is so extreme that $he now @@.red;hates oral sex@@<<else>>$His hatred of oral sex makes her ordeal that much more horrific<</if>>, but it @@.hotpink;breaks down her resistance@@. $He now @@.gold;better understands the terrifying power you have over her@@, and the sheer amount of cum $he is forced to ingest @@.red;negatively effects $his health@@. Your other cum-fed slaves take note of what you do to those who can't hold down their assigned diet.
 	<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.oralCount += 55, $activeSlave.publicCount += 55, $oralTotal += 55, $activeSlave.sexualFlaw = "hates oral", $activeSlave.fetish = "masochist">>
 	<</replace>>
 <</link>>
@@ -17395,7 +17401,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<if $activeSlave.race != $arcologies[0].FSSupremacistRace>>
 		not particularly noteworthy.
 	<<else>>
-		advantageous to $him, as it is generally unpopular to enslave a girl of the superior race.
+		advantageous to $him, as it is generally unpopular to enslave a $girl of the superior race.
 	<</if>>
 	However, $he's about to learn that $his racial appearance isn't immutable, and in your arcology, it can make a big difference in how $he is treated. You escort the struggling <<if $activeSlave.pregKnown == 1 && $activeSlave.bellyPreg >= 1500>>mother-to-be<<else>>$girl<</if>> to the surgery center and instruct $assistantName to alter $his appearance so that $he appears to be <<print $arcologies[0].FSSubjugationistRace>>. The full meaning of your instructions
 	<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>
@@ -17467,6 +17473,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take virginity and ignore chastity//<</if>>
 <br><<link "No surgery today, but give $him something to think about">>
 	<<EventNameDelink $activeSlave>>
+	<<setNonlocalPronouns $seeDicks>>
 	<<replace "#result">>
 	You stroke <<print $activeSlave.slaveName>>'s $activeSlave.skin cheek and tell $him that $he has much more to lose than $he realizes. You decide to give $him a tour of the arcology to show $him what you mean. You make sure to <<if canSee($activeSlave)>>point out<<else>>explain<</if>> everything that makes living in your arcology as a $arcologies[0].FSSubjugationistRace slut special.
 	<<if $dairy > 0>>
@@ -17485,7 +17492,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 			A slave in the throes of labor catches $his attention. Assisted birth is a luxury, gravid <<print $arcologies[0].FSSubjugationistRace>>s receive no aid with childbirth, nor are contraceptives wasted on them. 
 		<</if>>
 	<<else>>
-		As you tour, you pass an exhausted $arcologies[0].FSSubjugationistRace girl struggling to give birth. She'll be left to handle the act alone as medical care is seldom given to $arcologies[0].FSSubjugationistRace mongrels.
+		As you tour, you pass an exhausted $arcologies[0].FSSubjugationistRace _girlU struggling to give birth. _HeU'll be left to handle the act alone as medical care is seldom given to $arcologies[0].FSSubjugationistRace mongrels.
 		<<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>>
 			A common occurrence in pregnant subhumans, since they aren't worth the cost of contraception.
 		<</if>>
@@ -17497,7 +17504,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		you take $him over to the glory hole area, where distinct labels adorn the holes reserved for members of the slave race, and $arcologies[0].FSSubjugationistRace fuck-holes are afforded "special attention" by "sympathetic" citizens of the arcology.
 	<</if>>
 	<br><br>
-	At first $activeSlave.slaveName is confused as to why you are showing $him these things, but you soon make your point clear. You explain that if $he doesn't start accepting her role, you can easily alter her appearance and force $him to accept a much different role instead. You see her <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> stupid <<if canSee($activeSlave)>>eyes<<else>>face<</if>> finally start to show signs of understanding<<else>>intelligent <<if canSee($activeSlave)>>eyes<<else>>face<</if>> quickly realize what you are talking about<</if>> and $he starts to whimper helplessly, begging you not to turn $him into a $arcologies[0].FSSubjugationistRace sub-human. By the end of the tour $he better realizes exactly what it means to be a slave. $He is starting to understand the @@.hotpink;power you have over her@@, and @@.gold;$he fears you even more because of it.@@
+	At first $activeSlave.slaveName is confused as to why you are showing $him these things, but you soon make your point clear. You explain that if $he doesn't start accepting $his role, you can easily alter $his appearance and force $him to accept a much different role instead. You see $his <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> stupid <<if canSee($activeSlave)>>eyes<<else>>face<</if>> finally start to show signs of understanding<<else>>intelligent <<if canSee($activeSlave)>>eyes<<else>>face<</if>> quickly realize what you are talking about<</if>> and $he starts to whimper helplessly, begging you not to turn $him into a $arcologies[0].FSSubjugationistRace sub-human. By the end of the tour $he better realizes exactly what it means to be a slave. $He is starting to understand the @@.hotpink;power you have over her@@, and @@.gold;$he fears you even more because of it.@@
 	<<set $activeSlave.devotion += 5, $activeSlave.trust -= 10>>
 	<</replace>>
 <</link>>
@@ -17508,7 +17515,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<if $activeSlave.belly >= 300000>>
 		shove her onto her _belly belly, expose her bare ass
 	<<else>>
-		take her over your knee, expose her bare ass
+		take her over your knee, expose $his bare ass
 	<</if>>
 	and spank her hard and relentlessly. $He screams and whines and struggles, and you call in an obedient slave to help keep control of $him as you punish her reddened bottom. You also make sure to tell her how lucky $he is that $he isn't one of those worthless sub-human $arcologies[0].FSSubjugationistRace sluts, and that $he is getting off easy. But you also remind $him that there are worse owners to belong to, and if $he continues to resist your will, you will be very selective about who you sell $him to.
 	<br><br>
@@ -17565,7 +17572,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<else>>
 		another slave to drag the broken slut to the kitchen, where $he's to receive an additional feeding of thick, creamy ejaculate-based nutrients before
 	<</if>>
-	proceeding to her next assignment.
+	proceeding to $his next assignment.
 	<br><br>
 	$He's learned a valuable lesson about what it truly means to be a slave today, and it's one $he @@.orchid;won't soon forget@@.
 	<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
@@ -18146,10 +18153,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		</span>
 	<</replace>>
 <</link>>
-<br><<link "Fill her gape">>
+<br><<link "Fill $his gape">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-		You announce that you can fill her just fine, and you'll make $him feel it just as though $he were an anal virgin again. $He looks simultaneously intrigued and apprehensive<<if !canDoAnal($activeSlave)>> as you remove her anal chastity<</if>>, but starts to get to $his knees like a good anal slut. You stop her before $he can
+		You announce that you can fill $him just fine, and you'll make $him feel it just as though $he were an anal virgin again. $He looks simultaneously intrigued and apprehensive<<if !canDoAnal($activeSlave)>> as you remove her anal chastity<</if>>, but starts to get to $his knees like a good anal slut. You stop her before $he can
 		<<if $activeSlave.belly >= 300000>>
 			lean onto her _belly belly
 		<<else>>
@@ -18157,7 +18164,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<</if>>
 		and offer you $his ass. You're going to need some lubricant for this, but the $desc's saliva should be plenty. As you <<if $PC.dick == 1>>aim your dick<<else>>swiftly pull on a strap-on and aim it<</if>> at her face, $he realizes that her spit is going to be the only relief her fucked-out butt is going to have for whatever you're planning. $He blows you with desperate eagerness, doing her absolute best to coat your<<if $PC.dick != 1>> weapon's<</if>> shaft with as much saliva as $he can. You pull it free of $his mouth with a wet pop, and $he immediately faces the floor, cocking $his hips and spreading her huge asspussy for you.
 		<br><br>
-		After watching the way it contracts slightly as $he breathes hard for a while, letting $him feel the apprehension, you shove <<if $PC.dick == 1>>yourself<<else>>the phallus<</if>> inside $him. $He takes it without any reaction at all, and her gaped hole cups it only loosely. Grabbing $him by the shoulders, you haul $his torso up so it's against your
+		After watching the way it contracts slightly as $he breathes hard for a while, letting $him feel the apprehension, you shove <<if $PC.dick == 1>>yourself<<else>>the phallus<</if>> inside $him. $He takes it without any reaction at all, and $his gaped hole cups it only loosely. Grabbing $him by the shoulders, you haul $his torso up so it's against your
 		<<if $PC.belly >= 5000>>
 			pregnancy<<if $PC.belly >= 10000>>, capped by its popped navel<</if>>,
 		<<elseif $PC.boobs == 1>>
@@ -18167,7 +18174,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<else>>
 			muscular chest,
 		<</if>>
-		and push three of your fingers into $his mouth. $He gags, surprised, but you shove them in farther, collecting as much spit as you can reach. Then you let her fall back down again. $He knows what you're going to do, and moans as you slide your fingers in alongside your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>>, taking huge shuddering gasps as $he feels her sphincter accommodate the abuse. Slowly, you slide your thumb in as well, pushing it around <<if $PC.dick == 1>>your stiff prick<<else>>the unyielding phallus<</if>> until you're holding it as if masturbating. And then you masturbate. Inside $his ass. $He begins to scream, but manages to prevent $himself from resisting. $He does her desperate best to take your crushing abuse of her worn-out hole, and collapses when you finally orgasm and let her go. $He does her best to offer some sort of @@.hotpink;submissive thanks,@@ but is barely coherent, and crawls off to shower again, her lewd sphincter pulsing as $he goes.
+		and push three of your fingers into $his mouth. $He gags, surprised, but you shove them in farther, collecting as much spit as you can reach. Then you let her fall back down again. $He knows what you're going to do, and moans as you slide your fingers in alongside your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>>, taking huge shuddering gasps as $he feels $his sphincter accommodate the abuse. Slowly, you slide your thumb in as well, pushing it around <<if $PC.dick == 1>>your stiff prick<<else>>the unyielding phallus<</if>> until you're holding it as if masturbating. And then you masturbate. Inside $his ass. $He begins to scream, but manages to prevent $himself from resisting. $He does $his desperate best to take your crushing abuse of $his worn-out hole, and collapses when you finally orgasm and let her go. $He does $his best to offer some sort of @@.hotpink;submissive thanks,@@ but is barely coherent, and crawls off to shower again, $his lewd sphincter pulsing as $he goes.
 		<<set $activeSlave.devotion += 5>>
 		<<= AnalVCheck()>>
 		<<EventFetish $activeSlave "buttslut">>
@@ -18211,28 +18218,28 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <<link "Follow $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-		$His sheer joie de vivre is irresistible, and it certainly draws you out of your office. You're not slow, and of course you know where $he's going, so you catch up quickly. $He gives you the careful measuring glance of a devoted sex slave who's checking whether $his owner wants to fuck her right now, and correctly decides that that isn't your intent, at least right this minute. Instead, you continue the direction $he was going, and $he follows. "<<Master>>," $he <<say>>s hesitantly, "I hope that wa<<s>> an okay thing for me to do." You assure her it was. "Thank<<s>>, <<Master>>," $he beams, grinning like an idiot. Smiling at her infectious enthusiasm for life, you ask her why $he's so happy this morning. $He looks momentarily perplexed<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>, not a common look for a slave as smart as her<</if>>. "I don't know! I just woke up thi<<s>> morning feeling really, really good. <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>I'm sure the fact that I'm benefiting from incredibly advanced medi<<c>>ine ha<<s>> <<s>>omething to do with it; thank you very much for that, <<Master>>. Other than that,<</if>>
+		$His sheer joie de vivre is irresistible, and it certainly draws you out of your office. You're not slow, and of course you know where $he's going, so you catch up quickly. $He gives you the careful measuring glance of a devoted sex slave who's checking whether $his owner wants to fuck her right now, and correctly decides that that isn't your intent, at least right this minute. Instead, you continue the direction $he was going, and $he follows. "<<Master>>," $he <<say>>s hesitantly, "I hope that wa<<s>> an okay thing for me to do." You assure her it was. "Thank<<s>>, <<Master>>," $he beams, grinning like an idiot. Smiling at $his infectious enthusiasm for life, you ask $him why $he's so happy this morning. $He looks momentarily perplexed<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>, not a common look for a slave as smart as $him<</if>>. "I don't know! I just woke up thi<<s>> morning feeling really, really good. <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>I'm sure the fact that I'm benefiting from incredibly advanced medi<<c>>ine ha<<s>> <<s>>omething to do with it; thank you very much for that, <<Master>>. Other than that,<</if>>
 		I ju<<s>>t feel happy." This has to be some sort of milestone for $him, and for you, and maybe for slavery in general: if $he can be this pleased with life, something must be going right. You walk $him to where $he's going
 		<<switch $activeSlave.assignment>>
 		<<case "whore">>(one of the arcology's nicer streets, where $he'll spend the day selling $his body),
 		<<case "serve the public">>(one of the arcology's nicer streets, where $he'll spend the day flirting with citizens and having sex with anyone that's willing),
 		<<case "work a glory hole">>(a wall mounting that will render $him a helpless target for dicks all day),
-		<<case "get milked">>(her favorite milker in the penthouse),
+		<<case "get milked">>($his favorite milker in the penthouse),
 		<<case "take classes">>(a quiet area with a touchscreen where $he can review material from the slave etiquette class $he's working on),
 		<<case "please you">>(the wardrobe, where $he'll get dressed before attending to you for the rest of the day),
 		<<case "be a subordinate slave">>(the living area of the slave $he's been assigned to serve),
 		<<case "be a servant">>(the closet that contains the cleaning items $he'll use to dust and polish the penthouse today),
 		<<case "be a nanny">>($nurseryName, where $he is tending to the children),
-		<<case "stay confined">>(her cell),
-		<<case "guard you">>(the armory where her weapons are kept),
+		<<case "stay confined">>($his cell),
+		<<case "guard you">>(the armory where $his weapons are kept),
 		<<case "be your Head Girl">>(the assignment location of a slave who needs some hands-on guidance from your Head Girl),
 		<<case "recruit girls">>(the camera station $he uses to convince people from the old world that becoming your slave is a good idea),
 		<<case "serve in the master suite">>(your bedroom, where $he'll ready $himself for later),
 		<<case "be the DJ">>(the back of $clubName where $he decides the playlist for the day),
 		<<case "be the Attendant">>(the back of $spaName, where $he'll decide the perfect mixture for today's baths),
-		<<case "be the Madam">>(her office in $brothelName, where $he'll decide the slaves on display),
-		<<case "be the Schoolteacher">>(her office in $schoolroomName, where $he'll decide today's lesson),
-		<<case "be the Stewardess">>(her office in $servantsQuartersName, where $he'll divvy out today's tasks),
+		<<case "be the Madam">>($his office in $brothelName, where $he'll decide the slaves on display),
+		<<case "be the Schoolteacher">>($his office in $schoolroomName, where $he'll decide today's lesson),
+		<<case "be the Stewardess">>($his office in $servantsQuartersName, where $he'll divvy out today's tasks),
 		<<case "be the Milkmaid">>($dairyName, to check on the cattle),
 		<<case "be the Farmer">><<($farmyardName, to tend to the crops),
 		<<case "be the Wardeness">>($cellblockName, to oversee the inmates),
@@ -18272,11 +18279,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<case "humiliation">>
 			Slaves are constantly passing the two of you, and you constantly turn $him to show $his body to each of them, spreading $him to display her most intimate parts. $His cheeks flush with arousal and delicious shame. Your hand
 		<<case "buttslut">>
-			You slide a hand all the way under $him, pulling the flesh of her buttock to one side and then nestling possessive fingers over $his anus, teasing and stimulating, but not penetrating. Your other hand
+			You slide a hand all the way under $him, pulling the flesh of $his buttock to one side and then nestling possessive fingers over $his anus, teasing and stimulating, but not penetrating. Your other hand
 		<<case "boobs">>
-			$He gasps as your hot mouth finds one of her $activeSlave.nipples nipples, and then moans openly as one of your hands mauls her other breast. Your other hand
+			$He gasps as your hot mouth finds one of $his $activeSlave.nipples nipples, and then moans openly as one of your hands mauls $his other breast. Your other hand
 		<<case "pregnancy">>
-			One of your hands begins to caress her _belly <<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly, worshipping its curve. Your other hand
+			One of your hands begins to caress $his _belly <<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly, worshipping its curve. Your other hand
 		<<case "dom" "sadist">>
 			You press yourself aggressively against $him, and $he presses back; you grind harder still, letting $him know that $he can let $himself be a little aggressive, too. Groaning with pleasure and satisfaction, $he kisses you furiously. One of your hands
 		<<case "masochist">>
@@ -18287,15 +18294,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<if canDoVaginal($activeSlave)>>
 			finds $his pussy
 		<<elseif canDoAnal($activeSlave)>>
-			reaches around behind $him to tease $his ass and play with her sensitive perineum
+			reaches around behind $him to tease $his ass and play with $his sensitive perineum
 		<<else>>
-			traces her chastity
+			traces $his chastity
 		<</if>>
-		and you press your groin towards $him. Getting the idea, $he begins to <<if $PC.dick == 1>>jack you off<<else>>finger your clit<</if>> energetically, taking the pace from your lusty demeanor and her own feeling of energy and well-being. The two of you orgasm almost together. <<if $PC.dick == 1>>You angle your hips to shoot your seed onto the floor<<else>>You climax so violently that some of your femcum makes it onto the floor<</if>>.
+		and you press your groin towards $him. Getting the idea, $he begins to <<if $PC.dick == 1>>jack you off<<else>>finger your clit<</if>> energetically, taking the pace from your lusty demeanor and $his own feeling of energy and well-being. The two of you orgasm almost together. <<if $PC.dick == 1>>You angle your hips to shoot your seed onto the floor<<else>>You climax so violently that some of your femcum makes it onto the floor<</if>>.
 		<<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>>
-			$His ejaculate steadily drips from her chastity cage,
+			$His ejaculate steadily drips from $his chastity cage,
 		<<elseif canAchieveErection($activeSlave)>>
-			$He blows her own load right after,
+			$He blows $his own load right after,
 		<<elseif $activeSlave.balls > 0>>
 			$His limp dick pours cum,
 		<<elseif $activeSlave.dick > 0>>
@@ -18305,33 +18312,33 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<else>>
 			Unusually for $him, $he manages to squirt a little,
 		<</if>>
-		adding to the mess. You tell her another slave will clean up, and order $him to go about her business. $He turns to go, @@.mediumaquamarine;smiling with sexual satisfaction.@@
+		adding to the mess. You tell $him another slave will clean up, and order $him to go about $his business. $He turns to go, @@.mediumaquamarine;smiling with sexual satisfaction.@@
 		<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
-<br><<link "Punish her">>
+<br><<link "Punish $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-		That was not quite the prescribed way of greeting you, there was no need to greet you as $he passed, and most importantly, $he's simply too cheery. Resolving to crush her happiness, you call her back to the office in a thunderous voice you know will reach $him. $He knows $he's made a mistake, but comes promptly, lower lip quivering. $His feelings are plain to see on her face: surprise, @@.mediumorchid;betrayal,@@ @@.gold;fear.@@ $He thought $he could be friendly, and now $he knows $he was wrong. What's more, $he thought $he could be happy, and now $he's realizing that that was also wrong. As you
+		That was not quite the prescribed way of greeting you, there was no need to greet you as $he passed, and most importantly, $he's simply too cheery. Resolving to crush $his happiness, you call $him back to the office in a thunderous voice you know will reach $him. $He knows $he's made a mistake, but comes promptly, lower lip quivering. $His feelings are plain to see on $his face: surprise, @@.mediumorchid;betrayal,@@ @@.gold;fear.@@ $He thought $he could be friendly, and now $he knows $he was wrong. What's more, $he thought $he could be happy, and now $he's realizing that that was also wrong. As you
 		<<switch $activeSlave.standardPunishment>>
-		<<case "confinement">>close her into a confinement cell,
-		<<case "whipping">>tie her up for a brief whipping,
-		<<case "chastity">>lock her into harsh chastity,
-		<<default>>gag her for speaking out of turn,
+		<<case "confinement">>close $him into a confinement cell,
+		<<case "whipping">>tie $him up for a brief whipping,
+		<<case "chastity">>lock $him into harsh chastity,
+		<<default>>gag $him for speaking out of turn,
 		<</switch>>
-		a wail of despair tears its way out of her throat, far out of proportion to the standard punishment you're applying. It's perhaps the saddest sound you've ever heard a slave make. Slaves cry all the time, but usually they already understand that happiness is out of their reach. This one just woke up thinking that $he could be happy and was happy, and now $he's realizing it isn't allowed.
+		a wail of despair tears its way out of $his throat, far out of proportion to the standard punishment you're applying. It's perhaps the saddest sound you've ever heard a slave make. Slaves cry all the time, but usually they already understand that happiness is out of their reach. This one just woke up thinking that $he could be happy and was happy, and now $he's realizing it isn't allowed.
 		<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
 	<</replace>>
 <</link>>
 
 <<case "ara ara">>
 
-<<link "Praise her outlook">>
+<<link "Praise $his outlook">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		You speak from where you are, and without preamble, startling both slaves badly. Doing their best to recover, they listen as you tell $activeSlave.slaveName that $he has a good, praiseworthy outlook on life as a sex slave.
 		<<if $activeSlave.energy > 80>>
-			$His extreme appetite for sex will serve her well. It's important to love what you do, and if $he wakes up every morning wanting to get fucked, $he'll enjoy her life as a <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>slave prostitute<<else>>public slut<</if>>.
+			$His extreme appetite for sex will serve her well. It's important to love what you do, and if $he wakes up every morning wanting to get fucked, $he'll enjoy $his life as a <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>slave prostitute<<else>>public slut<</if>>.
 		<<elseif $activeSlave.fetish == "humiliation">>
 			$He should feel lucky to have a fetish for public use. It's important to love what you do, and if being openly passed around gets her off, $he'll enjoy her life as a <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>slave prostitute<<else>>public slut<</if>>.
 		<<elseif $activeSlave.devotion > 50>>
@@ -18339,13 +18346,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<elseif $activeSlave.devotion > 20>>
 			$His obedience is commendable. You understand that $he struggles with her life as an involuntary sex object at times. $He'll learn to do better, and as $he improves, $he'll be all right as long as $he obeys you and does her best.
 		<<else>>
-			To describe her situation bluntly, the best possible approach for her is to obey you and do her best. There's not really any possible outcome in which slaves can lose out by doing their best to be useful and valuable. It's in her interest to do her best.
+			To describe $his situation bluntly, the best possible approach for her is to obey you and do her best. There's not really any possible outcome in which slaves can lose out by doing their best to be useful and valuable. It's in her interest to do her best.
 		<</if>>
 		"Yes, <<Master>>," they chorus automatically. You turn and go. $activeSlave.slaveName is taken a bit aback by your apparent omnipresence in the penthouse, but reminds $himself that your guidance seemed straightforward and genuine. $He's @@.mediumaquamarine;confirmed in her understanding@@ of what it means to be a good $desc.
 		<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Let $him know you think $he's attractive, too">>
+	<<setNonlocalPronouns $seeDicks>>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		The slaves continue their gossip until $activeSlave.slaveName feels a pair of <<if $PC.title == 1>>strong<<else>>firm, feminine<</if>> hands grip the sides of her
@@ -18380,23 +18388,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<</if>>
 		waist. $He starts but doesn't try to turn, and shivers as you run your hands up
 		<<if $activeSlave.weight > 130>>
-			the thick, soft flesh that pads her ribs
+			the thick, soft flesh that pads $his ribs
 		<<elseif $activeSlave.muscles > 30>>
-			the muscles that jacket her ribs
+			the muscles that jacket $his ribs
 		<<elseif $activeSlave.weight > 30>>
-			the soft flesh that pads her ribs
+			the soft flesh that pads $his ribs
 		<<else>>
-			her ribcage
+			$his ribcage
 		<</if>>
 		and forward
 		<<if $activeSlave.boobs > 3000>>
-			into the soft, weighty place formed by the overhang of her massive breasts
+			into the soft, weighty place formed by the overhang of $his massive breasts
 		<<elseif $activeSlave.boobs > 300>>
 			to cup $his breasts
 		<<else>>
-			to clasp her around the sternum
+			to clasp $him around the sternum
 		<</if>>
-		and pull her back into your arms. The other slave watches silently, awaiting some cue as to whether $he's to join in or return to breakfast; you give $him a flick of your chin, and $he turns away, leaving you with $activeSlave.slaveName, embracing among the eating slaves.
+		and pull $him back into your arms. The other slave watches silently, awaiting some cue as to whether _heU's to join in or return to breakfast; you give _himU a flick of your chin, and _heU turns away, leaving you with $activeSlave.slaveName, embracing among the eating slaves.
 		<br><br>
 		You whisper into her ear that you think $he's attractive, <<if $PC.dick == 1>>and point out that $he can feel the proof between her buttocks. You're hard, and your stiff prick is poking her in the rear. $He gasps and shifts a little, and you nestle your dick even closer into the warm place between $his legs and ass.<<else>>and tell $him that you can prove it. You grab one of $his hands and pull it around behind $him, between you, making $him feel your pussy. $He gasps at how wet it is.<</if>> "An old <<s>>lave like me, <<Master>>?" $he echoes in a small voice. An old slave like $him, you confirm, and tell $him that right now,
 		<<if $PC.dick == 1 && (canDoVaginal($activeSlave) || canDoAnal($activeSlave))>>
@@ -18425,7 +18433,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "im scared">>
 
-<<link "Punish her">>
+<<link "Punish $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		$He obviously knows that breaking down like this would displease you, but you patiently explain that it's against the rules anyway. $He cries harder, nodding through her tears. $He knows that interrupting you to beg would be profoundly stupid, so $he clasps $his hands in wordless submission. You tell $him that $he's to keep $himself under control; if $he fails, $he will be punished. Since $he failed, $he will now suffer her standard punishment, and be
@@ -18477,7 +18485,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<</replace>>
 <</link>>
 <</if>>
-<br><<link "Comfort her">>
+<br><<link "Comfort $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		You rise from behind your desk, and $activeSlave.slaveName collapses to the floor, sure that $he's about to be severely punished. $He's shocked to feel your arms encircle her as you kneel down beside $him and embrace her huddled form. You pull her head
@@ -18514,12 +18522,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<else>>
 			disappointingly thin
 		<</if>>
-		lips before starting to suck dick. Dissatisfied with her reluctance, you order $him to open $his eyes and look up at you; $he obeys, the $activeSlave.eyeColor orbs glittering with a little moisture as $he concentrates on breathing past your penis. You ask if your cock tastes any different than usual. "Mmm hmm, M'," $he mumbles, producing a nice humming sensation against your cock. You tell $him that $he's tasting another slave's <<if $activeSlave.vagina > -1>>pussy<<else>>ass<</if>>. $He gags, but only slightly, and controls $himself immediately. Your dick is desensitized from vigorous use, and $he has to suck it a long time before you cup the back of her head, ram yourself all the way in, and blow your load straight down her gullet. You tell her $he's a good $desc. "Thank you, <<Master>>," $he <<say>>s @@.hotpink;submissively,@@ going back to her polishing.
+		lips before starting to suck dick. Dissatisfied with $his reluctance, you order $him to open $his eyes and look up at you; $he obeys, the $activeSlave.eyeColor orbs glittering with a little moisture as $he concentrates on breathing past your penis. You ask if your cock tastes any different than usual. "Mmm hmm, M'," $he mumbles, producing a nice humming sensation against your cock. You tell $him that $he's tasting another slave's <<if $activeSlave.vagina > -1>>pussy<<else>>ass<</if>>. $He gags, but only slightly, and controls $himself immediately. Your dick is desensitized from vigorous use, and $he has to suck it a long time before you cup the back of her head, ram yourself all the way in, and blow your load straight down $his gullet. You tell $him $he's a good $desc. "Thank you, <<Master>>," $he <<say>>s @@.hotpink;submissively,@@ going back to $his polishing.
 		<<set $activeSlave.oralCount++, $oralTotal++>>
 		<<set $activeSlave.devotion += 5>>
 	<</replace>>
 <</link>>
-<br><<link "Talk to her about her issues with dick">>
+<br><<link "Talk to $him about $his issues with dick">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		<<if SlaveStatsChecker.checkForLisp($activeSlave)>>
@@ -18726,16 +18734,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<elseif $activeSlave.releaseRules == "restrictive" || $activeSlave.releaseRules == "chastity">>
 			$He obeys the rules about orgasm and hasn't gotten off as part of $his assignment recently, so $he orgasms despite the sterility of the intercourse.
 		<<else>>
-			$He does not orgasm, serving you properly and showing appropriate disregard for her own pleasure.
+			$He does not orgasm, serving you properly and showing appropriate disregard for $his own pleasure.
 		<</if>>
 		When $he's done, $he makes the perfect exit, @@.hotpink;silently padding away like the passive sex object $he is.@@
 	<</replace>>
 	<<set $activeSlave.devotion += 5>>
 <</link>>
-<br><<link "Drive her off for breaking in on your work">>
+<br><<link "Drive $him off for breaking in on your work">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-		You command $him to turn around and show you $his ass. $He obeys eagerly, spinning and bringing you face to face with her
+		You command $him to turn around and show you $his ass. $He obeys eagerly, spinning and bringing you face to face with $his
 		<<if $activeSlave.butt > 12>>
 			view filling rear.
 		<<elseif $activeSlave.butt > 5>>
@@ -18745,7 +18753,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<else>>
 			cute little rear end.
 		<</if>>
-		$He's expecting something sexy, and $he's wrong. You give her right asscheek a stinging, open-handed slap. It's so unexpected that $he jumps with surprise, takes a step forward, and instantly bursts into tears. Knowing that $he has to accept whatever you think $he deserves, $he takes a step back towards you to come back within range. <<if canTalk($activeSlave)>>"<<Master>>, I'm <<s>>-<<s>>orry," $he sobs. "I d-don't understand. What did I d-do?"<<else>>$He shakily gestures a question, begging to know what $he did.<</if>> You tell her not to disturb you when you're working, tanning $his ass viciously, first one buttock and then the other. $He stands there and takes her beating, weeping, more from the @@.gold;bitter disappointment that $he's not allowed to approach you@@ like that.
+		$He's expecting something sexy, and $he's wrong. You give $his right asscheek a stinging, open-handed slap. It's so unexpected that $he jumps with surprise, takes a step forward, and instantly bursts into tears. Knowing that $he has to accept whatever you think $he deserves, $he takes a step back towards you to come back within range. <<if canTalk($activeSlave)>>"<<Master>>, I'm <<s>>-<<s>>orry," $he sobs. "I d-don't understand. What did I d-do?"<<else>>$He shakily gestures a question, begging to know what $he did.<</if>> You tell $him not to disturb you when you're working, tanning $his ass viciously, first one buttock and then the other. $He stands there and takes $his beating, weeping, more from the @@.gold;bitter disappointment that $he's not allowed to approach you@@ like that.
 	<</replace>>
 	<<set $activeSlave.trust -= 5>>
 <</link>>
@@ -18754,6 +18762,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<link "Ask $him about $his fantasy">>
 	<<EventNameDelink $activeSlave>>
+	<<setNonlocalPronouns $seeDicks>>
 	<<replace "#result">>
 		<<set _pussy = false, _balls = false>>
 		<<for _ress = 0; _ress < $ArcadeiIDs.length; _ress++>>
@@ -18777,7 +18786,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		in there, $he stops and <<if canSee($activeSlave)>>watches<<else>>listens<</if>><<if $PC.belly >= 100000>> as you struggle to join $him in the increasingly cramped space<<elseif $PC.belly >= 5000>> as you gently slip your motherly body in after $him<</if>>.
 		Inside the industrial access corridor, above you both is a row of bodies. The slaves' faces and hips are pressed against the apertures that present their holes to customers, but the rest of them is visible from here.
 		<br><br>
-		There is little noise; the slaves are closely restrained. Indeed, you have to look closely to see that they're being fucked at all. Here and there, though, there are signs. When someone fucks a slave's face, her throat bulges, and she often gags and struggles a little within the restraints. When their <<if _pussy>>pussies<<else>>assholes<</if>> get fucked, there's also some involuntary struggling, and if the phallus being thrust into them is particularly large, a rhythmic bulging of their abdomens can be discerned.
+		There is little noise; the slaves are closely restrained. Indeed, you have to look closely to see that they're being fucked at all. Here and there, though, there are signs. When someone fucks a slave's face, _hisU throat bulges, and _heU often gags and struggles a little within the restraints. When their <<if _pussy>>pussies<<else>>assholes<</if>> get fucked, there's also some involuntary struggling, and if the phallus being thrust into them is particularly large, a rhythmic bulging of their abdomens can be discerned.
 		<<if $arcadeUpgradeInjectors == 1>>
 			The quiet hissing of the drug injectors adds a menacing undertone, and the bodies frequently jerk as electrostimulation is applied to force them to tighten their holes.
 		<</if>>
@@ -18803,7 +18812,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 					<<else>>
 						slide your stiff prick up between the virgin's thighs for some intercrural sex.
 					<</if>>
-					As you fuck<<if $activeSlave.belly >= 5000 || $PC.belly >= 5000 || $activeSlave.weight > 160 || $activeSlave.boobs > 40000 || $activeSlave.butt > 10>> in the cramped corridor<</if>>, $his <<if canSee($activeSlave)>>gaze flicks up and down along the row<<else>>ears perks up at the subtle sounds<</if>> of suffering bodies. $He climaxes again and again, shuddering at each new subtle sign that another one of the slaves here is being degraded by yet another cock inserted into yet another of her defenseless holes. By the time you're satisfied, $he's so exhausted that $his legs are shuddering uncontrollably as $he struggles to remain standing with you. You drop $him, leaving $him to find $his own way out of this place. You look back from the entrance, seeing that $he's following you on shaky legs, <<if canSee($activeSlave)>>staring at<<else>>facing<</if>> you with a profound look of mixed @@.mediumaquamarine;trust for your understanding of $his horrible sadism,@@ and deep unease that this is what truly gets $him off.
+					As you fuck<<if $activeSlave.belly >= 5000 || $PC.belly >= 5000 || $activeSlave.weight > 160 || $activeSlave.boobs > 40000 || $activeSlave.butt > 10>> in the cramped corridor<</if>>, $his <<if canSee($activeSlave)>>gaze flicks up and down along the row<<else>>ears perks up at the subtle sounds<</if>> of suffering bodies. $He climaxes again and again, shuddering at each new subtle sign that another one of the slaves here is being degraded by yet another cock inserted into yet another of _hisU defenseless holes. By the time you're satisfied, $he's so exhausted that $his legs are shuddering uncontrollably as $he struggles to remain standing with you. You drop $him, leaving $him to find $his own way out of this place. You look back from the entrance, seeing that $he's following you on shaky legs, <<if canSee($activeSlave)>>staring at<<else>>facing<</if>> you with a profound look of mixed @@.mediumaquamarine;trust for your understanding of $his horrible sadism,@@ and deep unease that this is what truly gets $him off.
 				<</replace>>
 				<<set $activeSlave.trust += 5>>
 			<</link>>
@@ -18811,10 +18820,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 				Fucking $him here would be interesting, unfortunately there just isn't enough room for two mothers-to-be.
 			<</if>>
 			<br><<link "Teach $him about true sadism">>
+				<<set _ress = $slaveIndices[$ArcadeiIDs.random()]>>
+				<<setLocalPronouns $slaves[_ress] 2>>
 				<<replace "#result2">>
-					$He seems to be focusing on the purely physical aspects of the degradation here. The true meaning of this place is so much more, and you decide to share it with $him. You call $his name, tearing $his attention away from the spectacle mere centimeters over your heads, and <<if canSee($activeSlave)>>point<<else>>direct her<</if>> to a particular slave. You tell $activeSlave.slaveName that this particular Arcade inmate's name is
-					<<set _ress = $slaveIndices[$ArcadeiIDs.random()]>>
-					<<= SlaveFullName($slaves[_ress])>>. You tell $him that she is $slaves[_ress].actualAge years old, that she is $slaves[_ress].nationality, and that she was once $slaves[_ress].career. You list more details of her life before she was placed here to be fucked endlessly. $activeSlave.slaveName's eyes widen as you recite the details of the prior life of this piece of human sexual equipment and the sheer weight of the intellectual sadism smashes into $him. Then the slave above you both jerks a little. <<if $activeSlave.dick == 0>>There's no visible sign her pussy's being fucked, so it must be<<else>>His cock hardens involuntarily, indicating that it's<</if>> going into her ass. You resume, mentioning that she's been buttfucked $slaves[_ress].analCount times.
+					$He seems to be focusing on the purely physical aspects of the degradation here. The true meaning of this place is so much more, and you decide to share it with $him. You call $his name, tearing $his attention away from the spectacle mere centimeters over your heads, and <<if canSee($activeSlave)>>point<<else>>direct $him<</if>> to a particular slave. You tell $activeSlave.slaveName that this particular Arcade inmate's name is
+					<<= SlaveFullName($slaves[_ress])>>. You tell $him that _he2 is $slaves[_ress].actualAge years old, that _he2 is $slaves[_ress].nationality, and that _he2 was once $slaves[_ress].career. You list more details of _his2 life before _he2 was placed here to be fucked endlessly. $activeSlave.slaveName's eyes widen as you recite the details of the prior life of this piece of human sexual equipment and the sheer weight of the intellectual sadism smashes into $him. Then the slave above you both jerks a little. <<if $activeSlave.dick == 0>>There's no visible sign _his2 pussy's being fucked, so it must be<<else>>_His2 cock hardens involuntarily, indicating that it's<</if>> going into _his2 ass. You resume, mentioning that _he2's been buttfucked $slaves[_ress].analCount times.
 					$activeSlave.slaveName jerks suddenly, <<if canAchieveErection($activeSlave)>>shooting $his cum onto the floor<<elseif $activeSlave.vagina < 0>>dribbling a little<<elseif $activeSlave.vaginaLube > 0>>squirting onto the floor<<else>>orgasming<</if>>. $He came without being touched. $He <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> the mess $he made just by being in the presence of the arcology's @@.hotpink;undisputed preeminent sadist;@@ $he shudders at the sheer gothic glory of it. $He has a new moment to think of when $he feels like @@.lightsalmon;indulging $his own sadism.@@
 				<</replace>>
 				<<set $activeSlave.devotion += 5, $activeSlave.fetishStrength = Math.clamp($activeSlave.fetishStrength+10, 0, 100)>>
@@ -18902,7 +18912,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "servant maid">>
 
-<<link "Stop her">>
+<<link "Stop $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You look $activeSlave.slaveName up and down slowly before informing $him that $he has one more duty left to perform.
@@ -19291,7 +19301,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <<link "Let the boys be">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The circumstances are somewhat novel, but are ultimately not worthy of your time and attention. You do, however, direct $assistantName to deploy more public servants to the area in a bid to direct the tourists' attention away from $activeSlave.slaveName. In time, the boys lose interest and wander off to leer at the other slaves suddenly populating the area. $activeSlave.slaveName @@.mediumaquamarine;trusts@@ you more for disentangling her from a potentially awkward situation.
+	The circumstances are somewhat novel, but are ultimately not worthy of your time and attention. You do, however, direct $assistantName to deploy more public servants to the area in a bid to direct the tourists' attention away from $activeSlave.slaveName. In time, the boys lose interest and wander off to leer at the other slaves suddenly populating the area. $activeSlave.slaveName @@.mediumaquamarine;trusts@@ you more for disentangling $him from a potentially awkward situation.
 	<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
@@ -19572,7 +19582,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<br><<link "Show $him that short girls are amusing in the arcade">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-		You inform $activeSlave.slaveName that short girls like her are delightfully amusing when immured in the arcade. Magnanimous as you are, you have two other slaves drag her off to be installed in the arcade for a day, so that $he too may see the humor in having short girls serve in the arcade. Though $arcadeName has arcade pens to match any height of slave, you have $activeSlave.slaveName confined in a pen built for a much taller slave. Although her head and neck protrude from one side of the pen without issue, $he is too short for $his ass to fill the other opening. As a result, $he must use the tips of $his toes maintain an unsteady grip on the rear opening, forcing $him to maintain an extremely taxing stretch just to keep $his body held aloft within the pen. Customers are unable to fuck $his holes but readily delight in watching her squirm to keep $his body extended and horizontal, even with hard cocks brutally fucking $his face. Somewhere in the grueling, 18-hour marathon of relentless throat fucking, her precarious position slips and her lower half tumbles into the interior of the pen proper. Until an attendant rescues $him, her neck is held crooked at an unnatural angle by her restraints, as the rest of $his body dangles beneath it. $His ordeal forces $him to accept that a short $girl's place is as an @@.hotpink;amusing arcade hole@@, though $he can't find the humor@@.gold;in such a terrible plight@@. Furthermore, her intense exertions during her stay @@.red;negatively effects $his health@@. Your other slaves take note of what you do to short girls who ask questions about their place in your penthouse.
+		You inform $activeSlave.slaveName that short girls like $him are delightfully amusing when immured in the arcade. Magnanimous as you are, you have two other slaves drag $him off to be installed in the arcade for a day, so that $he too may see the humor in having short girls serve in the arcade. Though $arcadeName has arcade pens to match any height of slave, you have $activeSlave.slaveName confined in a pen built for a much taller slave. Although her head and neck protrude from one side of the pen without issue, $he is too short for $his ass to fill the other opening. As a result, $he must use the tips of $his toes maintain an unsteady grip on the rear opening, forcing $him to maintain an extremely taxing stretch just to keep $his body held aloft within the pen. Customers are unable to fuck $his holes but readily delight in watching her squirm to keep $his body extended and horizontal, even with hard cocks brutally fucking $his face. Somewhere in the grueling, 18-hour marathon of relentless throat fucking, her precarious position slips and her lower half tumbles into the interior of the pen proper. Until an attendant rescues $him, her neck is held crooked at an unnatural angle by her restraints, as the rest of $his body dangles beneath it. $His ordeal forces $him to accept that a short $girl's place is as an @@.hotpink;amusing arcade hole@@, though $he can't find the humor@@.gold;in such a terrible plight@@. Furthermore, her intense exertions during her stay @@.red;negatively effects $his health@@. Your other slaves take note of what you do to short girls who ask questions about their place in your penthouse.
 		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.oralCount += 55, $oralTotal += 55>>
 		<<set $activeSlave.publicCount += 55>>
 	<</replace>>
@@ -19689,7 +19699,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<else>>
 		tiny breasts
 	<</if>>
-	in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the breast held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before silencing $himself. $He soon realizes her time with you in the near future will be as an outlet for your frustrations, and $his tits will be taking the brunt of the punishment. When you dismiss her hours later, $he scurries out of your office cradling her bruised bosom and @@.gold;trembling from her recent objectifying experience@@.
+	in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the breast held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before silencing $himself. $He soon realizes her time with you in the near future will be as an outlet for your frustrations, and $his tits will be taking the brunt of the punishment. When you dismiss her hours later, $he scurries out of your office cradling her bruised bosom and @@.gold;trembling from $his recent objectifying experience@@.
 	<<set $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
@@ -19698,7 +19708,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <br><<link "Relieve your stress with $his balls">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He came to your office clearly expecting to get fucked, but takes it in stride when you order $him to get up on your desk with her crotch to you. $He is shudders slightly when you first reach over to take one of her
+	$He came to your office clearly expecting to get fucked, but takes it in stride when you order $him to get up on your desk with $his crotch to you. $He is shudders slightly when you first reach over to take one of $his
 	<<switch $activeSlave.balls>>
 		<<case 10>>inhuman
 		<<case 9>>titanic
@@ -19712,7 +19722,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<case 1>>pathetic
 		<<default>>hypertrophied
 	<</switch>>
-	balls in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the testicle held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before struggling silencing $himself. $He soon realizes her time with you in the near future will be as an outlet for your frustrations, and you fully intend to use $his balls as literal stress balls. When you dismiss her hours later, $he staggers out of your office trying her best to not touch her swollen testicles and @@.gold;trembling from her recent objectifying experience@@.
+	balls in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the testicle held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before struggling silencing $himself. $He soon realizes her time with you in the near future will be as an outlet for your frustrations, and you fully intend to use $his balls as literal stress balls. When you dismiss her hours later, $he staggers out of your office trying her best to not touch $his swollen testicles and @@.gold;trembling from $his recent objectifying experience@@.
 	<<set $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
@@ -19757,7 +19767,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<else>>
 			ass does little to cushion you as you fuck her into the ground,
 		<</if>>
-		but $activeSlave.slaveName fares much worse in her role as living exercise equipment. By the end of your power workout you manage to work up quite a sweat, while your slave lays limp in the middle of your office with her gaped
+		but $activeSlave.slaveName fares much worse in her role as living exercise equipment. By the end of your power workout you manage to work up quite a sweat, while your slave lays limp in the middle of your office with $his gaped
 		<<if canDoVaginal($activeSlave)>>
 			cunt comically held up in the air. Using $his pussy
 		<<else>>
@@ -19775,7 +19785,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <<link "Give $him a nice massage">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You sit on the couch next to your desk and pat your thighs. $He smiles and comes over, lowering $himself <<if $PC.dick == 0>>into your lap<<else>>onto your member<<if $PC.vagina == 1>> and sliding a hand down to see to your pussy<</if>><</if>> without hesitation. You help her get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with her in your lap, gently massaging her <<if $activeSlave.boobs < 900>>big <<else>>huge <</if>> tits. Despite their fine craftsmanship, implants are prone to rendering breasts sore, so $he's soon groaning with relief at the attention you lavish upon them. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples, despite her implants making them less sensitive than usual. @@.mediumaquamarine;$He has become more trusting of you.@@
+	You sit on the couch next to your desk and pat your thighs. $He smiles and comes over, lowering $himself <<if $PC.dick == 0>>into your lap<<else>>onto your member<<if $PC.vagina == 1>> and sliding a hand down to see to your pussy<</if>><</if>> without hesitation. You help her get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with her in your lap, gently massaging $his <<if $activeSlave.boobs < 900>>big <<else>>huge <</if>> tits. Despite their fine craftsmanship, implants are prone to rendering breasts sore, so $he's soon groaning with relief at the attention you lavish upon them. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples, despite $his implants making them less sensitive than usual. @@.mediumaquamarine;$He has become more trusting of you.@@
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
@@ -19785,15 +19795,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<replace "#result">>
 	You tell $him to kneel on the smooth floor. $He knows this means doggy style, so $he compliantly
 	<<if $activeSlave.belly >= 300000>>
-		shifts onto her _belly belly,
+		shifts onto $his _belly belly,
 	<</if>>
-	arches her back and cocks $his hips to offer $himself to you. You<<if $PC.dick == 0>> don a strap-on and<</if>> enter
+	arches $his back and cocks $his hips to offer $himself to you. You<<if $PC.dick == 0>> don a strap-on and<</if>> enter
 	<<if canDoVaginal($activeSlave)>>
 		$his pussy
 	<<else>>
 		$his ass
 	<</if>>
-	without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to her augmented breasts: even as you pound her hard and grope $his chest, $his tits barely move despite their rough treatment. $His unyielding breasts only encourage you to fuck her harder, in an effort to garner any iota of movement from her ample chest.
+	without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to $his augmented breasts: even as you pound her hard and grope $his chest, $his tits barely move despite their rough treatment. $His unyielding breasts only encourage you to fuck her harder, in an effort to garner any iota of movement from $his ample chest.
 	<<if $activeSlave.dick > 0 && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>>
 		<<if canAchieveErection($activeSlave)>>
 			$His cock doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
@@ -20019,7 +20029,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<else>>
 			heavy and soft and female.
 		<</if>>
-		You ride her gently like this for a little while, enjoying the feminine weight of $him and the effects of this intimacy on her face. Once you're ready for some more stimulation, you pull one of $his hands down between $his breasts; $he gets her thumb down into $his cleavage, all the way down until it can stimulate your button and bring you to a soft orgasm. Pleased, you slide down until you're face to face with $him, and give $him a kiss.
+		You ride $him gently like this for a little while, enjoying the feminine weight of $him and the effects of this intimacy on $his face. Once you're ready for some more stimulation, you pull one of $his hands down between $his breasts; $he gets $his thumb down into $his cleavage, all the way down until it can stimulate your button and bring you to a soft orgasm. Pleased, you slide down until you're face to face with $him, and give $him a kiss.
 	<</if>>
 	$He
 	<<if $activeSlave.energy > 80>>was looking after $himself with a hand the whole time, and $he @@.mediumaquamarine;smiles gratefully at you@@ with satisfaction.
@@ -20520,7 +20530,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <<link "Comfort $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-		You set the $PC.refreshment aside on your desk for now, and take $him gently by the hand. You lead $him out onto the balcony of the Penthouse over to the railing. $He obediently assumes a position for you, bracing $his arms on the railing, arching $his back and sticking $his bottom out to present $himself for use. Much to $his surprise, your hand guides $him back into a comfortable position, and simply pulls $him close into you. You explain to $him that $he is a good $girl who tries $his best, and that you don't want $him to fear you. After a little coddling, you fall silent, and simply hold $him tight, watching the street lights of $arcologies[0].name blink to life one after the other, slowly transforming the arcology into a vibrant, elegant light show. $activeSlave.slaveName can hardly believe whats happening, but eventually is able to relax fully, melting into your arms like butter into a hot pan. $He rests $his head lovingly against your chest and silently appreciates the view with you. When $he eventually departs, $he does so with @@.hotpink;tears of joy@@, @@.mediumaquamarine;rather than fear@@, welling behind $his eyes.
+		You set the $PC.refreshment aside on your desk for now, and take $him gently by the hand. You lead $him out onto the balcony of the Penthouse over to the railing. $He obediently assumes a position for you, bracing $his arms on the railing, arching $his back and sticking $his bottom out to present $himself for use. Much to $his surprise, your hand guides $him back into a comfortable position, and simply pulls $him close into you. You explain to $him that $he is a good $girl who tries $his best, and that you don't want $him to fear you. After a little coddling, you fall silent, and simply hold $him tight, watching the street lights of $arcologies[0].name blink to life one after the other, slowly transforming the arcology into a vibrant, elegant light show. $activeSlave.slaveName can hardly believe what's happening, but eventually is able to relax fully, melting into your arms like butter into a hot pan. $He rests $his head lovingly against your chest and silently appreciates the view with you. When $he eventually departs, $he does so with @@.hotpink;tears of joy,@@ @@.mediumaquamarine;rather than fear,@@ welling behind $his eyes.
 		<<set $activeSlave.devotion += 15>>
 		<<set $activeSlave.trust += 15>>
 	<</replace>>
@@ -20536,7 +20546,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <br><<link "Vindicate $his fears">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-		You set the $PC.refreshment aside on your desk, then spin around as the slave least expects it, delivering a fierce backhand slap to $his <<if $activeSlave.face >= -10>>pretty<<else>>homely<</if>> face that nearly sends $him to the ground. You instruct $him to be more careful in future, and that you wont tolerate slaves that shy away from you for any reason, nor ones that are clumsy enough to nearly drop a serving tray while standing still. $He all but begs upon $his hands and knees for your forgiveness. You dismiss $him without further comment, and sit down to enjoy your evening refreshments. The battered, dejected slave slinks away, @@.gold;choking down tears@@. $He will be @@.hotpink;less careless@@ in future.
+		You set the $PC.refreshment aside on your desk, then spin around as the slave least expects it/*TODO: this sentence needs work*/, delivering a fierce backhand slap to $his <<if $activeSlave.face >= -10>>pretty<<else>>homely<</if>> face that nearly sends $him to the ground. You instruct $him to be more careful in future, and that you won't tolerate slaves that shy away from you for any reason, nor ones that are clumsy enough to nearly drop a serving tray while standing still. $He all but begs upon $his hands and knees for your forgiveness. You dismiss $him without further comment, and sit down to enjoy your evening refreshments. The battered, dejected slave slinks away, @@.gold;choking down tears@@. $He will be @@.hotpink;less careless@@ in future.
 		<<set $activeSlave.devotion += 10>>
 		<<set $activeSlave.trust -= 10>>
 	<</replace>>
diff --git a/src/uncategorized/arcmgmt.tw b/src/uncategorized/arcmgmt.tw
index b1be9dc6a07a86dc4a21b2cacd5253e969b1b5a1..6d4993bf5a7713b5a02c0ceb944b4a8ee7c6bc53 100644
--- a/src/uncategorized/arcmgmt.tw
+++ b/src/uncategorized/arcmgmt.tw
@@ -23,270 +23,270 @@ _upperClassP = 1,
 _topClass = 0,
 _topClassP = 1>>
 <<if $arcologies[0].FSSupremacist != "unset">>
-	<<set _FSScore += $arcologies[0].FSSupremacist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSSupremacist / 20) * 0.04,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSSupremacist / 20) * 0.05,
-	_lowerClass += Math.trunc($arcologies[0].FSSupremacist / 20) * -80,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSSupremacist / 20) * -0.004,
-	_middleClass += Math.trunc($arcologies[0].FSSupremacist / 20) * -16,
-	_middleClassP *= 1 + Math.trunc($arcologies[0].FSSupremacist / 20) * -0.002,
-	_upperClass += Math.trunc($arcologies[0].FSSupremacist / 20) * 5.4,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSSupremacist / 20) * 0.002,
-	_topClass += Math.trunc($arcologies[0].FSSupremacist / 20) * 2,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSSupremacist / 20) * 0.004>>
+	<<set _FSScore += Math.min($arcologies[0].FSSupremacist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSSupremacist, 100) / 20) * 0.04,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSSupremacist, 100) / 20) * 0.05,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSSupremacist, 100) / 20) * -80,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSSupremacist, 100) / 20) * -0.004,
+	_middleClass += Math.trunc(Math.min($arcologies[0].FSSupremacist, 100) / 20) * -16,
+	_middleClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSSupremacist, 100) / 20) * -0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSSupremacist, 100) / 20) * 5.4,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSSupremacist, 100) / 20) * 0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSSupremacist, 100) / 20) * 2,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSSupremacist, 100) / 20) * 0.004>>
 	Your racial policies are concentrating power in the hands of $arcologies[0].FSSupremacistRace people. /*perhaps too obvious to bother with printing?*/
 <</if>>
 <<if $arcologies[0].FSSubjugationist != "unset">>
-	<<set _FSScore += $arcologies[0].FSSubjugationist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSSubjugationist / 20) * 0.04,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSSubjugationist / 20) * 0.05,
-	_lowerClass += Math.trunc($arcologies[0].FSSubjugationist / 20) * -80,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSSubjugationist / 20) * -0.004,
-	_middleClass += Math.trunc($arcologies[0].FSSubjugationist / 20) * -16,
-	_middleClassP *= 1 + Math.trunc($arcologies[0].FSSubjugationist / 20) * -0.002,
-	_upperClass += Math.trunc($arcologies[0].FSSubjugationist / 20) * 5.4,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSSubjugationist / 20) * 0.002,
-	_topClass += Math.trunc($arcologies[0].FSSubjugationist / 20) * 2,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSSubjugationist / 20) * 0.004>>
+	<<set _FSScore += Math.min($arcologies[0].FSSubjugationist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSSubjugationist, 100) / 20) * 0.04,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSSubjugationist, 100) / 20) * 0.05,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSSubjugationist, 100) / 20) * -80,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSSubjugationist, 100) / 20) * -0.004,
+	_middleClass += Math.trunc(Math.min($arcologies[0].FSSubjugationist, 100) / 20) * -16,
+	_middleClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSSubjugationist, 100) / 20) * -0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSSubjugationist, 100) / 20) * 5.4,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSSubjugationist, 100) / 20) * 0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSSubjugationist, 100) / 20) * 2,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSSubjugationist, 100) / 20) * 0.004>>
 	Your racial policies are stripping all power from the $arcologies[0].FSSubjugationistRace people. /*perhaps too obvious to bother with printing?*/
 <</if>>
 <<if $arcologies[0].FSGenderRadicalist != "unset">>
-	<<set _FSScore += $arcologies[0].FSGenderRadicalist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSGenderRadicalist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSGenderRadicalist / 20) * 0.025,
-	_lowerClass += Math.trunc($arcologies[0].FSGenderRadicalist / 20) * -40,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSGenderRadicalist / 20) * -0.002,
-	_topClass += Math.trunc($arcologies[0].FSGenderRadicalist / 20),
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSGenderRadicalist / 20) * 0.002>>
+	<<set _FSScore += Math.min($arcologies[0].FSGenderRadicalist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSGenderRadicalist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSGenderRadicalist, 100) / 20) * 0.025,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSGenderRadicalist, 100) / 20) * -40,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSGenderRadicalist, 100) / 20) * -0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSGenderRadicalist, 100) / 20),
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSGenderRadicalist, 100) / 20) * 0.002>>
 	Your radical views on gender are scaring away the more traditionally minded.
 <</if>>
 <<if $arcologies[0].FSGenderFundamentalist != "unset">>
-	<<set _FSScore += $arcologies[0].FSGenderFundamentalist,
-	_lowerClass += Math.trunc($arcologies[0].FSGenderFundamentalist / 20) * 40,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSGenderFundamentalist / 20) * 0.002,
-	_topClass += Math.trunc($arcologies[0].FSGenderFundamentalist / 20) * -1,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSGenderFundamentalist / 20) * -0.002>>
+	<<set _FSScore += Math.min($arcologies[0].FSGenderFundamentalist, 100),
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSGenderFundamentalist, 100) / 20) * 40,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSGenderFundamentalist, 100) / 20) * 0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSGenderFundamentalist, 100) / 20) * -1,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSGenderFundamentalist, 100) / 20) * -0.002>>
 	Your traditional views on gender are comforting to many, unimaginative to some.
 <</if>>
 <<if $arcologies[0].FSPaternalist != "unset">>
-	<<set _FSScore += $arcologies[0].FSPaternalist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSPaternalist / 20) * -0.04,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSPaternalist / 20) * -0.05,
-	_expirationFS *= 1 + Math.trunc($arcologies[0].FSPaternalist / 20) * -0.1,
-	_slaveProductivity += Math.trunc($arcologies[0].FSPaternalist / 20) * 0.02,
-	_lowerClass += Math.trunc($arcologies[0].FSPaternalist / 20) * 80,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSPaternalist / 20) * 0.004,
-	_welfareFS *= 1 + Math.trunc($arcologies[0].FSPaternalist / 20) * -0.1,
-	_middleClass += Math.trunc($arcologies[0].FSPaternalist / 20) * 16,
-	_middleClassP *= 1 + Math.trunc($arcologies[0].FSPaternalist / 20) * 0.002,
-	_upperClass += Math.trunc($arcologies[0].FSPaternalist / 20) * -5.4,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSPaternalist / 20) * -0.002,
-	_topClass += Math.trunc($arcologies[0].FSPaternalist / 20) * -2,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSPaternalist / 20) * -0.002>>
+	<<set _FSScore += Math.min($arcologies[0].FSPaternalist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * -0.04,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * -0.05,
+	_expirationFS *= 1 + Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * -0.1,
+	_slaveProductivity += Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * 0.02,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * 80,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * 0.004,
+	_welfareFS *= 1 + Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * -0.1,
+	_middleClass += Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * 16,
+	_middleClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * 0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * -5.4,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * -0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * -2,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSPaternalist, 100) / 20) * -0.002>>
 	Poor citizens can rely on their better-off peers in $arcologies[0].name.
 <</if>>
 <<if $arcologies[0].FSDegradationist != "unset">>
-	<<set _FSScore += $arcologies[0].FSDegradationist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSDegradationist / 20) * 0.04,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSDegradationist / 20) * 0.05,
-	_expirationFS *= 1 + Math.trunc($arcologies[0].FSDegradationist / 20) * 0.1,
-	_slaveProductivity += Math.trunc($arcologies[0].FSDegradationist / 20) * 0.01,
-	_lowerClass += Math.trunc($arcologies[0].FSDegradationist / 20) * -80,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSDegradationist / 20) * -0.004,
-	_welfareFS *= 1 + Math.trunc($arcologies[0].FSDegradationist / 20) * 0.1,
-	_middleClass += Math.trunc($arcologies[0].FSDegradationist / 20) * -16,
-	_middleClassP *= 1 + Math.trunc($arcologies[0].FSDegradationist / 20) * -0.002,
-	_upperClass += Math.trunc($arcologies[0].FSDegradationist / 20) * 5.4,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSDegradationist / 20) * 0.002,
-	_topClass += Math.trunc($arcologies[0].FSDegradationist / 20) * 2,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSDegradationist / 20) * 0.004>>
+	<<set _FSScore += Math.min($arcologies[0].FSDegradationist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * 0.04,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * 0.05,
+	_expirationFS *= 1 + Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * 0.1,
+	_slaveProductivity += Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * 0.01,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * -80,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * -0.004,
+	_welfareFS *= 1 + Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * 0.1,
+	_middleClass += Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * -16,
+	_middleClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * -0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * 5.4,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * 0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * 2,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSDegradationist, 100) / 20) * 0.004>>
 	The arcology is a cutthroat place in which falling into slavery is very easy.
 <</if>>
 <<if $arcologies[0].FSBodyPurist != "unset">>
-	<<set _FSScore += $arcologies[0].FSBodyPurist,
-	_lowerClass += Math.trunc($arcologies[0].FSBodyPurist / 20) * 40,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSBodyPurist / 20) * 0.002,
-	_upperClass += Math.trunc($arcologies[0].FSBodyPurist / 20) * -2.7,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSBodyPurist / 20) * -0.001,
-	_topClass += Math.trunc($arcologies[0].FSBodyPurist / 20) * -0.5,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSBodyPurist / 20) * -0.001>>
+	<<set _FSScore += Math.min($arcologies[0].FSBodyPurist, 100),
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSBodyPurist, 100) / 20) * 40,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSBodyPurist, 100) / 20) * 0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSBodyPurist, 100) / 20) * -2.7,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSBodyPurist, 100) / 20) * -0.001,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSBodyPurist, 100) / 20) * -0.5,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSBodyPurist, 100) / 20) * -0.001>>
 	Body purist fashion standards comfort the poor stand as they stand out less from their more fortunate neighbors.
 <</if>>
 <<if $arcologies[0].FSTransformationFetishist != "unset">>
-	<<set _FSScore += $arcologies[0].FSTransformationFetishist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSTransformationFetishist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSTransformationFetishist / 20) * 0.025,
-	_lowerClass += Math.trunc($arcologies[0].FSTransformationFetishist / 20) * -40,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSTransformationFetishist / 20) * -0.002,
-	_upperClass += Math.trunc($arcologies[0].FSTransformationFetishist / 20) * 2.7,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSTransformationFetishist / 20) * 0.001,
-	_topClass += Math.trunc($arcologies[0].FSTransformationFetishist / 20) * 0.5,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSTransformationFetishist / 20) * 0.001>>
+	<<set _FSScore += Math.min($arcologies[0].FSTransformationFetishist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSTransformationFetishist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSTransformationFetishist, 100) / 20) * 0.025,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSTransformationFetishist, 100) / 20) * -40,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSTransformationFetishist, 100) / 20) * -0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSTransformationFetishist, 100) / 20) * 2.7,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSTransformationFetishist, 100) / 20) * 0.001,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSTransformationFetishist, 100) / 20) * 0.5,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSTransformationFetishist, 100) / 20) * 0.001>>
 	The lower class fear the kind of transformations could be forced on them if they ever end up enslaved, whereas the rich enjoy weilding such power.
 <</if>>
 <<if $arcologies[0].FSYouthPreferentialist != "unset">>
-	<<set _FSScore += $arcologies[0].FSYouthPreferentialist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSYouthPreferentialist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSYouthPreferentialist / 20) * 0.025,
-	_lowerClass += Math.trunc($arcologies[0].FSYouthPreferentialist / 20) * 40,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSYouthPreferentialist / 20) * 0.002,
-	_middleClass += Math.trunc($arcologies[0].FSYouthPreferentialist / 20) * -5.4,
-	_middleClassP *= 1 + Math.trunc($arcologies[0].FSYouthPreferentialist / 20) * -0.002>>
+	<<set _FSScore += Math.min($arcologies[0].FSYouthPreferentialist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSYouthPreferentialist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSYouthPreferentialist, 100) / 20) * 0.025,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSYouthPreferentialist, 100) / 20) * 40,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSYouthPreferentialist, 100) / 20) * 0.002,
+	_middleClass += Math.trunc(Math.min($arcologies[0].FSYouthPreferentialist, 100) / 20) * -5.4,
+	_middleClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSYouthPreferentialist, 100) / 20) * -0.002>>
 	Preference for youth makes the young poor in your arcology feel appreciated despite their lack of wealth.
 <</if>>
 <<if $arcologies[0].FSMaturityPreferentialist != "unset">>
-	<<set _FSScore += $arcologies[0].FSMaturityPreferentialist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSMaturityPreferentialist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSMaturityPreferentialist / 20) * 0.025,
-	_lowerClass += Math.trunc($arcologies[0].FSMaturityPreferentialist / 20) * -40,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSMaturityPreferentialist / 20) * -0.002,
-	_middleClass += Math.trunc($arcologies[0].FSMaturityPreferentialist / 20) * 5.4,
-	_middleClassP *= 1 + Math.trunc($arcologies[0].FSMaturityPreferentialist / 20) * 0.002>>
+	<<set _FSScore += Math.min($arcologies[0].FSMaturityPreferentialist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSMaturityPreferentialist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSMaturityPreferentialist, 100) / 20) * 0.025,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSMaturityPreferentialist, 100) / 20) * -40,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSMaturityPreferentialist, 100) / 20) * -0.002,
+	_middleClass += Math.trunc(Math.min($arcologies[0].FSMaturityPreferentialist, 100) / 20) * 5.4,
+	_middleClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSMaturityPreferentialist, 100) / 20) * 0.002>>
 	Preference for maturity makes the middle class of your arcology feel like their experience is finally properly appreciated.
 <</if>>
 <<if $arcologies[0].FSSlimnessEnthusiast != "unset">>
-	<<set _FSScore += $arcologies[0].FSSlimnessEnthusiast>>
+	<<set _FSScore += Math.min($arcologies[0].FSSlimnessEnthusiast, 100)>>
 <</if>>
 <<if $arcologies[0].FSAssetExpansionist != "unset">>
-	<<set _FSScore += $arcologies[0].FSAssetExpansionist>>
+	<<set _FSScore += Math.min($arcologies[0].FSAssetExpansionist, 100)>>
 <</if>>
 <<if $arcologies[0].FSPastoralist != "unset">>
-	<<set _FSScore += $arcologies[0].FSPastoralist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSPastoralist / 20) * 0.04,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSPastoralist / 20) * 0.05,
-	_lowerClass += Math.trunc($arcologies[0].FSPastoralist / 20) * -80,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSPastoralist / 20) * -0.004,
-	_middleClass += Math.trunc($arcologies[0].FSPastoralist / 20) * 16,
-	_middleClassP *= 1 + Math.trunc($arcologies[0].FSPastoralist / 20) * 0.002,
-	_upperClass += Math.trunc($arcologies[0].FSPastoralist / 20) * 2.7,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSPastoralist / 20) * 0.001,
-	_topClass += Math.trunc($arcologies[0].FSPastoralist / 20) * 0.5,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSPastoralist / 20) * 0.001>>
+	<<set _FSScore += Math.min($arcologies[0].FSPastoralist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSPastoralist, 100) / 20) * 0.04,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSPastoralist, 100) / 20) * 0.05,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSPastoralist, 100) / 20) * -80,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSPastoralist, 100) / 20) * -0.004,
+	_middleClass += Math.trunc(Math.min($arcologies[0].FSPastoralist, 100) / 20) * 16,
+	_middleClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSPastoralist, 100) / 20) * 0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSPastoralist, 100) / 20) * 2.7,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSPastoralist, 100) / 20) * 0.001,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSPastoralist, 100) / 20) * 0.5,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSPastoralist, 100) / 20) * 0.001>>
 	The pastoralization of $arcologies[0].name spurs a whole industry around human produce.
 <</if>>
 <<if $arcologies[0].FSPhysicalIdealist != "unset">>
-	<<set _FSScore += $arcologies[0].FSPhysicalIdealist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSPhysicalIdealist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSPhysicalIdealist / 20) * 0.025,
-	_slaveProductivity += Math.trunc($arcologies[0].FSPhysicalIdealist / 20) * 0.01,
-	_lowerClass += Math.trunc($arcologies[0].FSPhysicalIdealist / 20) * -40,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSPhysicalIdealist / 20) * -0.002,
-	_upperClass += Math.trunc($arcologies[0].FSPhysicalIdealist / 20) * 2.7,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSPhysicalIdealist / 20) * 0.001,
-	_topClass += Math.trunc($arcologies[0].FSPhysicalIdealist / 20) * 0.5,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSPhysicalIdealist / 20) * 0.001>>
+	<<set _FSScore += Math.min($arcologies[0].FSPhysicalIdealist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSPhysicalIdealist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSPhysicalIdealist, 100) / 20) * 0.025,
+	_slaveProductivity += Math.trunc(Math.min($arcologies[0].FSPhysicalIdealist, 100) / 20) * 0.01,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSPhysicalIdealist, 100) / 20) * -40,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSPhysicalIdealist, 100) / 20) * -0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSPhysicalIdealist, 100) / 20) * 2.7,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSPhysicalIdealist, 100) / 20) * 0.001,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSPhysicalIdealist, 100) / 20) * 0.5,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSPhysicalIdealist, 100) / 20) * 0.001>>
 	Fit slaves and citizens are more productive! However, your arcology's poor do not look forward to even more toil and sweat.
 <</if>>
 <<if $arcologies[0].FSChattelReligionist != "unset">>
-	<<set _FSScore += $arcologies[0].FSChattelReligionist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSChattelReligionist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSChattelReligionist / 20) * 0.025,
-	_lowerClass += Math.trunc($arcologies[0].FSChattelReligionist / 20) * -40,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSChattelReligionist / 20) * -0.002,
-	_upperClass += Math.trunc($arcologies[0].FSChattelReligionist / 20) * 2.7,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSChattelReligionist / 20) * 0.001,
-	_topClass += Math.trunc($arcologies[0].FSChattelReligionist / 20) * 0.5,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSChattelReligionist / 20) * 0.001>>
+	<<set _FSScore += Math.min($arcologies[0].FSChattelReligionist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSChattelReligionist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSChattelReligionist, 100) / 20) * 0.025,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSChattelReligionist, 100) / 20) * -40,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSChattelReligionist, 100) / 20) * -0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSChattelReligionist, 100) / 20) * 2.7,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSChattelReligionist, 100) / 20) * 0.001,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSChattelReligionist, 100) / 20) * 0.5,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSChattelReligionist, 100) / 20) * 0.001>>
 	Chattel Religionism helps some poor citizens see slavery as a spiritually pure fate.
 <</if>>
 <<if $arcologies[0].FSRomanRevivalist != "unset">>
-	<<set _FSScore += $arcologies[0].FSRomanRevivalist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSRomanRevivalist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSRomanRevivalist / 20) * 0.025,
-	_welfareFS *= 1 + Math.trunc($arcologies[0].FSRomanRevivalist / 20) * -0.05, 
-	_lowerClass += Math.trunc($arcologies[0].FSRomanRevivalist / 20) * 40,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSRomanRevivalist / 20) * 0.002,
-	_topClass += Math.trunc($arcologies[0].FSRomanRevivalist / 20) * -5.4,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSRomanRevivalist / 20) * -0.002>>
+	<<set _FSScore += Math.min($arcologies[0].FSRomanRevivalist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSRomanRevivalist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSRomanRevivalist, 100) / 20) * 0.025,
+	_welfareFS *= 1 + Math.trunc(Math.min($arcologies[0].FSRomanRevivalist, 100) / 20) * -0.05, 
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSRomanRevivalist, 100) / 20) * 40,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSRomanRevivalist, 100) / 20) * 0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSRomanRevivalist, 100) / 20) * -5.4,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSRomanRevivalist, 100) / 20) * -0.002>>
 	Your citizens take pride in looking after each other.
 <</if>>
 <<if $arcologies[0].FSEgyptianRevivalist != "unset">>
-	<<set _FSScore += $arcologies[0].FSEgyptianRevivalist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSEgyptianRevivalist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSEgyptianRevivalist / 20) * 0.025,
-	_welfareFS *= 1 + Math.trunc($arcologies[0].FSEgyptianRevivalist / 20) * -0.05,
-	_lowerClass += Math.trunc($arcologies[0].FSEgyptianRevivalist / 20) * 40,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSEgyptianRevivalist / 20) * 0.002,
-	_topClass += Math.trunc($arcologies[0].FSEgyptianRevivalist / 20) * -5.4,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSEgyptianRevivalist / 20) * -0.002>>
+	<<set _FSScore += Math.min($arcologies[0].FSEgyptianRevivalist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSEgyptianRevivalist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSEgyptianRevivalist, 100) / 20) * 0.025,
+	_welfareFS *= 1 + Math.trunc(Math.min($arcologies[0].FSEgyptianRevivalist, 100) / 20) * -0.05,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSEgyptianRevivalist, 100) / 20) * 40,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSEgyptianRevivalist, 100) / 20) * 0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSEgyptianRevivalist, 100) / 20) * -5.4,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSEgyptianRevivalist, 100) / 20) * -0.002>>
 	Egyptian Revivalism is benevolent in some ways, and charity is common here.
 <</if>>
 <<if $arcologies[0].FSEdoRevivalist != "unset">>
-	<<set _FSScore += $arcologies[0].FSEdoRevivalist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSEdoRevivalist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSEdoRevivalist / 20) * 0.025>>
+	<<set _FSScore += Math.min($arcologies[0].FSEdoRevivalist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSEdoRevivalist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSEdoRevivalist, 100) / 20) * 0.025>>
 <</if>>
 <<if $arcologies[0].FSArabianRevivalist != "unset">>
-	<<set _FSScore += $arcologies[0].FSArabianRevivalist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSArabianRevivalist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSArabianRevivalist / 20) * 0.025>>
+	<<set _FSScore += Math.min($arcologies[0].FSArabianRevivalist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSArabianRevivalist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSArabianRevivalist, 100) / 20) * 0.025>>
 <</if>>
 <<if $arcologies[0].FSChineseRevivalist != "unset">>
-	<<set _FSScore += $arcologies[0].FSDegradationist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSDegradationist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSDegradationist / 20) * 0.025>>
+	<<set _FSScore += Math.min($arcologies[0].FSChineseRevivalist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSChineseRevivalist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSChineseRevivalist, 100) / 20) * 0.025>>
 <</if>>
 <<if $arcologies[0].FSAztecRevivalist != "unset">>
-	<<set _FSScore += $arcologies[0].FSAztecRevivalist,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSAztecRevivalist / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSAztecRevivalist / 20) * 0.025>>
+	<<set _FSScore += Math.min($arcologies[0].FSAztecRevivalist, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSAztecRevivalist, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSAztecRevivalist, 100) / 20) * 0.025>>
 <</if>>
 <<if $arcologies[0].FSNull != "unset">>
-	<<set _FSScore += $arcologies[0].FSNull,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSNull / 20) * -0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSNull / 20) * -0.025,
-	_lowerClass += Math.trunc($arcologies[0].FSNull / 20) * 80,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSNull / 20) * 0.004,
-	_middleClass += Math.trunc($arcologies[0].FSNull / 20) * 16,
-	_middleClassP *= 1 + Math.trunc($arcologies[0].FSNull / 20) * 0.002,
-	_upperClass += Math.trunc($arcologies[0].FSNull / 20) * -5.4,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSNull / 20) * -0.002,
-	_topClass += Math.trunc($arcologies[0].FSNull / 20) * -2,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSNull / 20) * -0.004>>
+	<<set _FSScore += Math.min($arcologies[0].FSNull, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSNull, 100) / 20) * -0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSNull, 100) / 20) * -0.025,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSNull, 100) / 20) * 80,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSNull, 100) / 20) * 0.004,
+	_middleClass += Math.trunc(Math.min($arcologies[0].FSNull, 100) / 20) * 16,
+	_middleClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSNull, 100) / 20) * 0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSNull, 100) / 20) * -5.4,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSNull, 100) / 20) * -0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSNull, 100) / 20) * -2,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSNull, 100) / 20) * -0.004>>
 	Your arcology's vibrant, open culture helps everyone succeed, preventing many struggling citizens from falling into slavery.
 <</if>>
 <<if $arcologies[0].FSRepopulationFocus != "unset">>
-	<<set _FSScore += $arcologies[0].FSRepopulationFocus,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSRepopulationFocus / 20) * 0.04,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSRepopulationFocus / 20) * 0.05,
-	_slaveProductivity += Math.trunc($arcologies[0].FSRepopulationFocus / 20) * -0.01,
-	_lowerClass += Math.trunc($arcologies[0].FSRepopulationFocus / 20) * 80,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSRepopulationFocus / 20) * 0.004,
-	_middleClass += Math.trunc($arcologies[0].FSRepopulationFocus / 20) * 16,
-	_middleClassP *= 1 + Math.trunc($arcologies[0].FSRepopulationFocus / 20) * 0.002,
-	_upperClass += Math.trunc($arcologies[0].FSRepopulationFocus / 20) * -5.4,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSRepopulationFocus / 20) * -0.002,
-	_topClass += Math.trunc($arcologies[0].FSRepopulationFocus / 20) * -2,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSRepopulationFocus / 20) * -0.004>>
+	<<set _FSScore += Math.min($arcologies[0].FSRepopulationFocus, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSRepopulationFocus, 100) / 20) * 0.04,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSRepopulationFocus, 100) / 20) * 0.05,
+	_slaveProductivity += Math.trunc(Math.min($arcologies[0].FSRepopulationFocus, 100) / 20) * -0.01,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSRepopulationFocus, 100) / 20) * 80,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSRepopulationFocus, 100) / 20) * 0.004,
+	_middleClass += Math.trunc(Math.min($arcologies[0].FSRepopulationFocus, 100) / 20) * 16,
+	_middleClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSRepopulationFocus, 100) / 20) * 0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSRepopulationFocus, 100) / 20) * -5.4,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSRepopulationFocus, 100) / 20) * -0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSRepopulationFocus, 100) / 20) * -2,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSRepopulationFocus, 100) / 20) * -0.004>>
 	You've made repopulation a priority and the less fortunate hope all these new children will make their lives easier in the future, but the wealthy are wary.
 <</if>>
 <<if $arcologies[0].FSRestart != "unset">>
-	<<set _FSScore += $arcologies[0].FSRestart,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSRestart / 20) * 0.04,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSRestart / 20) * 0.05,
-	_lowerClass += Math.trunc($arcologies[0].FSRestart / 20) * -80,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSRestart / 20) * -0.004,
-	_middleClass += Math.trunc($arcologies[0].FSRestart / 20) * -16,
-	_middleClassP *= 1 + Math.trunc($arcologies[0].FSRestart / 20) * -0.002,
-	_upperClass += Math.trunc($arcologies[0].FSRestart / 20) * 5.4,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSRestart / 20) * 0.002,
-	_topClass += Math.trunc($arcologies[0].FSRestart / 20) * 2,
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSRestart / 20) * 0.004>>
+	<<set _FSScore += Math.min($arcologies[0].FSRestart, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSRestart, 100) / 20) * 0.04,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSRestart, 100) / 20) * 0.05,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSRestart, 100) / 20) * -80,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSRestart, 100) / 20) * -0.004,
+	_middleClass += Math.trunc(Math.min($arcologies[0].FSRestart, 100) / 20) * -16,
+	_middleClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSRestart, 100) / 20) * -0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSRestart, 100) / 20) * 5.4,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSRestart, 100) / 20) * 0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSRestart, 100) / 20) * 2,
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSRestart, 100) / 20) * 0.004>>
 	Highly restricted breeding pleases the powerful, but the less fortunate may seek reproductive freedom elsewhere.
 <</if>>
 <<if $arcologies[0].FSHedonisticDecadence != "unset">>
-	<<set _FSScore += $arcologies[0].FSHedonisticDecadence,
-	_slaveDemandU *= 1 + Math.trunc($arcologies[0].FSHedonisticDecadence / 20) * 0.02,
-	_slaveDemandT *= 1 + Math.trunc($arcologies[0].FSHedonisticDecadence / 20) * 0.025,
-	_slaveProductivity += Math.trunc($arcologies[0].FSHedonisticDecadence / 20) * -0.01,
-	_lowerClass += Math.trunc($arcologies[0].FSHedonisticDecadence / 20) * 40,
-	_lowerClassP *= 1 + Math.trunc($arcologies[0].FSHedonisticDecadence / 20) * 0.002,
-	_middleClass += Math.trunc($arcologies[0].FSHedonisticDecadence / 20) * -16,
-	_middleClassP *= 1 + Math.trunc($arcologies[0].FSHedonisticDecadence / 20) * -0.002,
-	_upperClass += Math.trunc($arcologies[0].FSHedonisticDecadence / 20) * -5.4,
-	_upperClassP *= 1 + Math.trunc($arcologies[0].FSHedonisticDecadence / 20) * -0.002,
-	_topClass += Math.trunc($arcologies[0].FSHedonisticDecadence / 20),
-	_topClassP *= 1 + Math.trunc($arcologies[0].FSHedonisticDecadence / 20) * 0.002>>
+	<<set _FSScore += Math.min($arcologies[0].FSHedonisticDecadence, 100),
+	_slaveDemandU *= 1 + Math.trunc(Math.min($arcologies[0].FSHedonisticDecadence, 100) / 20) * 0.02,
+	_slaveDemandT *= 1 + Math.trunc(Math.min($arcologies[0].FSHedonisticDecadence, 100) / 20) * 0.025,
+	_slaveProductivity += Math.trunc(Math.min($arcologies[0].FSHedonisticDecadence, 100) / 20) * -0.01,
+	_lowerClass += Math.trunc(Math.min($arcologies[0].FSHedonisticDecadence, 100) / 20) * 40,
+	_lowerClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSHedonisticDecadence, 100) / 20) * 0.002,
+	_middleClass += Math.trunc(Math.min($arcologies[0].FSHedonisticDecadence, 100) / 20) * -16,
+	_middleClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSHedonisticDecadence, 100) / 20) * -0.002,
+	_upperClass += Math.trunc(Math.min($arcologies[0].FSHedonisticDecadence, 100) / 20) * -5.4,
+	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSHedonisticDecadence, 100) / 20) * -0.002,
+	_topClass += Math.trunc(Math.min($arcologies[0].FSHedonisticDecadence, 100) / 20),
+	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSHedonisticDecadence, 100) / 20) * 0.002>>
 	Your citizens enjoy the pleasures of life to their fullest, but some prefer to earn these pleasures.
 <</if>>
 
@@ -571,7 +571,11 @@ $helots -= _expirationPC,
 $fuckdolls -= _expirationFD,
 $menialBioreactors -= _expirationBR>>
 <<if _expiration > 1>>
-	@@.red;<<print _expiration>> slaves died@@ due to the tough working conditions in your arcology.
+	<<if _expirationFS <= 0.5>>
+		@@.red;<<print _expiration>> slaves passed away@@ due to natural causes.
+	<<else>> 
+		@@.red;<<print _expiration>> slaves died@@ due to the tough working conditions in your arcology.
+	<</if>>
 	<<if _expirationPC > 1>>
 		Of which @@.red;<<print _expirationPC>> were yours.@@
 	<<elseif _expirationPC > 0>>
@@ -586,25 +590,29 @@ $lowerClass -= _enslaved>>
 /*Bad weather switch*/
 <<if $weatherToday.severity > 3>>
 	<<if $secExp == 1>>
-		<<if $docks || $railway < 4>>
+		<<if $docks < 4 && $railway < 4>>
 			<<set _weatherFreeze = 1>>
+			<br>//The terrible weather is @@.red;preventing people from entering or leaving@@ your arcology. Improving your transport infrastructure will prevent this from happening.//
 		<<else>>
 			<<set _weatherFreeze = 0>>
 		<</if>>
 	<<elseif $antiWeatherFreeze < 2>>
 		<<set _weatherFreeze = 1>>
+		<br>//The terrible weather is @@.red;preventing people from entering or leaving@@ your arcology. Improving your transport infrastructure will prevent this from happening.//
 	<<else>>
 		<<set _weatherFreeze = 0>>
 	<</if>>
 <<elseif $weatherToday.severity > 2>>
 	<<if $secExp == 1>>
-		<<if $docks || $railway < 3>>
+		<<if $docks < 3 && $railway < 3>>
 			<<set _weatherFreeze = 1>>
+			<br>//The terrible weather is @@.red;preventing people from entering or leaving@@ your arcology. Improving your transport infrastructure will prevent this from happening.//
 		<<else>>
-			<<set _weatherFeeze = 0>>
+			<<set _weatherFreeze = 0>>
 		<</if>>
 	<<elseif $antiWeatherFreeze < 1>>
 		<<set _weatherFreeze = 1>>
+		<br>//The terrible weather is @@.red;preventing people from entering or leaving@@ your arcology. Improving your transport infrastructure will prevent this from happening.//
 	<<else>>
 		<<set _weatherFreeze = 0>>
 	<</if>>
@@ -612,6 +620,27 @@ $lowerClass -= _enslaved>>
 	<<set _weatherFreeze = 0>>
 <</if>>
 
+/*For enslavement that happens despite the weather*/
+<<if _weatherFreeze == 1>>
+	<<if _enslaved > 0>>
+		<<if _enslaved < 4>>
+			<<set _enslavedPC = 1,
+			_enslavedNPC = _enslaved - 1>>
+		<<else>>
+			<<set _enslavedPC = Math.trunc(_enslaved / 4),
+			_enslavedNPC = _enslaved - _enslavedPC>>
+		<</if>>
+		<<set $helots += _enslavedPC,
+		$NPCSlaves += _enslavedNPC>>
+	<</if>>
+	<<if _enslaved > 1>>
+		<br>In total @@.green;<<print _enslaved>> lower class citizens@@ were enslaved for failing to pay their debts.
+		<br>@@.green;You enslaved <<print _enslavedPC>>@@ of them while other debtholders in the arcology enslaved the remaining <<print _enslavedNPC>>.
+	<<elseif _enslaved > 0>>
+		<br>@@.green;As arcology owner you claimed the slave.@@
+	<</if>>
+<</if>>
+
 /*Bunch of visitor stuff*/
 <<if _weatherFreeze == 0>>
 <<set _FSScore = _FSScore / $FSCreditCount>>
@@ -651,18 +680,8 @@ $lowerClass -= _enslaved>>
 <<set _LSCD = Math.trunc(($LSCBase * ($localEcon / 100)) + ($arcologies[0].prosperity * 4) + (($middleClass + $visitors * 0.6) * 1.5) + (($upperClass + $visitors * 0.2) * 3.5) + ($topClass * 18)),
 /*Demand for owning slaves*/
 _SCD = Math.trunc(($upperClass * ($slaveDemandU + _slaveDemandU)) + ($topClass * ($slaveDemandT + _slaveDemandT)))>>
-/*More slaves than there is work*/
-<<if $NPCSlaves > (_LSCD / ($slaveProductivity + _slaveProductivity)) - $helots + _SCD>>
-	<<set _NPCSlavesSold = $NPCSlaves - Math.trunc(_LSCD / ($slaveProductivity + _slaveProductivity) - $helots + _SCD),
-	$menialDemandFactor -= _NPCSlavesSold,
-	$NPCSlaves = Math.trunc(_LSCD / ($slaveProductivity + _slaveProductivity))>>
-	<<if _NPCSlavesSold > 1>>
-		<br>@@.red;<<print _NPCSlavesSold>> slaves@@ were sold by your inhabitants. There was so little work that they failed to earn their keep.
-	<<elseif _NPCSlavesSold > 0>>
-		<br>@@.red;One slave was sold by your inhabitants. There was so little work that it failed to earn its keep.
-	<</if>>
 /*More slaves than they know what to do with*/
-<<elseif $NPCSlaves > _SCD * 1.6>>
+<<if $NPCSlaves > _SCD * 1.6>>
 	<<set _NPCSlavesSold = $NPCSlaves - Math.trunc(_SCD * 1.6),
 	$menialDemandFactor -= _NPCSlavesSold,
 	$NPCSlaves = Math.trunc(_SCD * 1.6)>>
@@ -671,6 +690,16 @@ _SCD = Math.trunc(($upperClass * ($slaveDemandU + _slaveDemandU)) + ($topClass *
 	<<elseif _NPCSlavesSold > 0>>
 		<br>@@.red;One slave@@ was sold by your inhabitants. They've got more than enough of them already.
 	<</if>>
+/*More slaves than there is work*/
+<<elseif $NPCSlaves > (_LSCD / ($slaveProductivity + _slaveProductivity)) - $helots + _SCD>>
+	<<set _NPCSlavesSold = $NPCSlaves - Math.trunc(_LSCD / ($slaveProductivity + _slaveProductivity) - $helots + _SCD),
+	$menialDemandFactor -= _NPCSlavesSold,
+	$NPCSlaves = Math.trunc(_LSCD / ($slaveProductivity + _slaveProductivity))>>
+	<<if _NPCSlavesSold > 1>>
+		<br>@@.red;<<print _NPCSlavesSold>> slaves@@ were sold by your inhabitants. There was so little work that they failed to earn their keep.
+	<<elseif _NPCSlavesSold > 0>>
+		<br>@@.red;One slave was sold by your inhabitants. There was so little work that it failed to earn its keep.
+	<</if>>
 /*Cutting back on slaves*/
 <<elseif $NPCSlaves > _SCD * 1.4>>
 	<<if $slaveCostFactor > 0.95>>
@@ -759,7 +788,7 @@ _SCD = Math.trunc(($upperClass * ($slaveDemandU + _slaveDemandU)) + ($topClass *
 /*Need more slaves still*/
 <<if $NPCSlaves < _SCD>>
 	<<set _NPCSlavesBought = Math.trunc((_SCD - $NPCSlaves) * 0.75) + 1,
-	$menialSupplyFactor - _NPCSlavesBought,
+	$menialSupplyFactor -= _NPCSlavesBought,
 	$NPCSlaves += _NPCSlavesBought>>
 	<<if _NPCSlavesBought > 1>>
 		<br>@@.green;<<print _NPCSlavesBought>> slaves@@ were bought by your inhabitants. They did not have enough of them to satisfy their needs.
diff --git a/src/uncategorized/corporationDevelopments.tw b/src/uncategorized/corporationDevelopments.tw
index ece1c3d8e19c54b09d0edd9a5c8794fc6aefa32b..1e9492e81fe8e72352c4752abc5f457542f06e1d 100644
--- a/src/uncategorized/corporationDevelopments.tw
+++ b/src/uncategorized/corporationDevelopments.tw
@@ -97,8 +97,8 @@ its human holdings.
 <</if>>
 <<set _dividendPerShare = 0.2 * $corpProfit / _totalShares, _multplier = 0>>
 Since it is
-<<if _dividendPerShare > 5>> <<set _multplier = _dividendPerShare>>
-		<<set _dividendPerShare = 5 * Math.floor(0.2 * Math.log(_dividendPerShare)/Math.log(1.25))>>
+<<if _dividendPerShare > 5>> <<set _dividendPerShare = 5 * Math.floor(0.2 * Math.log(_dividendPerShare)/Math.log(1.25))>>
+	<<set _multplier = _dividendPerShare>>
 	 incredibly profitable, a massive dividend of @@.yellowgreen;<<print cashFormat(_dividendPerShare)>>@@
 <<elseif _dividendPerShare > 3>> <<set _multplier = 3>>
 	 extremely profitable, a huge dividend of @@.yellowgreen;¤3@@
diff --git a/src/uncategorized/fsDevelopments.tw b/src/uncategorized/fsDevelopments.tw
index ac606ca3955adb754b30f772cd1d7e06f2af8fe1..d3d8a73df118b479b797881a2539ef4f9dacc7ca 100644
--- a/src/uncategorized/fsDevelopments.tw
+++ b/src/uncategorized/fsDevelopments.tw
@@ -685,8 +685,8 @@
 		$arcologies[0].name is unconvinced of $arcologies[0].FSSupremacistRace superiority.
 	<</if>>
 	<<if $arcologies[0].FSSupremacist < 0>>
-		<<set $arcologies[0].FSSupremacist = "unset">><<set $FSCredits += 1>>
-		<<set $arcologies[0].FSSupremacistLawME = 0, $arcologies[0].FSSupremacistSMR = 0>>
+		<<run removeFS("FSSupremacist")>>
+		<<if $assistantFSAppearance == "supremacist">><<set $assistantFSAppearance = "default">><</if>>
 		<<ClearFacilityDecorations>>
 		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
 	<<elseif $arcologies[0].FSSupremacist > $arcologies[0].FSSupremacistDecoration>>
@@ -714,8 +714,8 @@
 		$arcologies[0].name is unconvinced of the inferiority of $arcologies[0].FSSubjugationistRace people.
 	<</if>>
 	<<if $arcologies[0].FSSubjugationist < 0>>
-		<<set $arcologies[0].FSSubjugationist = "unset">><<set $FSCredits += 1>>
-		<<set $arcologies[0].FSSubjugationistLawME = 0, $arcologies[0].FSSubjugationistSMR = 0>>
+		<<run removeFS("FSSubjugationist")>>
+		<<if $assistantFSAppearance == "subjugationist">><<set $assistantFSAppearance = "default">><</if>>
 		<<ClearFacilityDecorations>>
 		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
 	<<elseif $arcologies[0].FSSubjugationist > $arcologies[0].FSSubjugationistDecoration>>
@@ -731,650 +731,631 @@
 <</if>>
 
 <<if $arcologies[0].FSRepopulationFocus != "unset">>
-<<if $arcologies[0].FSRepopulationFocus >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that all women should be pregnant.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSRepopulationFocus >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly that all women should be pregnant.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSRepopulationFocus >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to the idea that all women should be pregnant.
-<<else>>
-	$arcologies[0].name is unconvinced that all women should be pregnant.
-<</if>>
-<<if $arcologies[0].FSRepopulationFocus < 0>>
-	<<set $arcologies[0].FSRepopulationFocus = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSRepopulationFocusSMR = 0, $arcologies[0].FSRepopulationFocusLaw = 0>>
-	<<if $assistantFSAppearance == "repopulation focus">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSRepopulationFocus > $arcologies[0].FSRepopulationFocusDecoration>>
-	<<set $arcologies[0].FSRepopulationFocus = $arcologies[0].FSRepopulationFocusDecoration>>
-<</if>>
-<<if $arcologies[0].FSRepopulationFocusDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSRepopulationFocus == $arcologies[0].FSRepopulationFocusDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSRepopulationFocusSMR == 1>>
-	<<set $arcologies[0].FSRepopulationFocus += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSRepopulationFocus >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that all women should be pregnant.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSRepopulationFocus >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly that all women should be pregnant.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSRepopulationFocus >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to the idea that all women should be pregnant.
+	<<else>>
+		$arcologies[0].name is unconvinced that all women should be pregnant.
+	<</if>>
+	<<if $arcologies[0].FSRepopulationFocus < 0>>
+		<<run removeFS("FSRepopulationFocus")>>
+		<<if $assistantFSAppearance == "repopulation focus">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSRepopulationFocus > $arcologies[0].FSRepopulationFocusDecoration>>
+		<<set $arcologies[0].FSRepopulationFocus = $arcologies[0].FSRepopulationFocusDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSRepopulationFocusDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSRepopulationFocus == $arcologies[0].FSRepopulationFocusDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSRepopulationFocusSMR == 1>>
+			<<set $arcologies[0].FSRepopulationFocus += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSRestart != "unset">>
-<<if $arcologies[0].FSRestart >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that only the elite should reproduce.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSRestart >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly that only the elite should reproduce.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSRestart >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to the idea only the elite should reproduce.
-<<else>>
-	$arcologies[0].name is unconvinced that only the elite should reproduce.
-<</if>>
-<<if $arcologies[0].FSRestart < 0 && $arcologies[0].FSRestartDecoration != 100>>
-	<<set $arcologies[0].FSRestart = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSRestartSMR = 0, $arcologies[0].FSRestartLaw = 0>>
-	<<if $assistantFSAppearance == "eugenics">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSRestart > $arcologies[0].FSRestartDecoration>>
-	<<set $arcologies[0].FSRestart = $arcologies[0].FSRestartDecoration>>
-<</if>>
-<<if $arcologies[0].FSRestartDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSRestart == $arcologies[0].FSRestartDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSRestartSMR == 1>>
-	<<set $arcologies[0].FSRestart += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSRestart >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that only the elite should reproduce.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSRestart >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly that only the elite should reproduce.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSRestart >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to the idea only the elite should reproduce.
+	<<else>>
+		$arcologies[0].name is unconvinced that only the elite should reproduce.
+	<</if>>
+	<<if $arcologies[0].FSRestart < 0 && $arcologies[0].FSRestartDecoration != 100>>
+		<<run removeFS("FSRestart")>>
+		<<if $assistantFSAppearance == "eugenics">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSRestart > $arcologies[0].FSRestartDecoration>>
+		<<set $arcologies[0].FSRestart = $arcologies[0].FSRestartDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSRestartDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSRestart == $arcologies[0].FSRestartDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSRestartSMR == 1>>
+			<<set $arcologies[0].FSRestart += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSGenderRadicalist != "unset">>
-<<if $arcologies[0].FSGenderRadicalist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly in the need to redefine gender around power.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSGenderRadicalist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with the need to redefine gender around power.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSGenderRadicalist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to the need to redefine gender around power.
-<<else>>
-	$arcologies[0].name is unconvinced of the need to redefine gender around power.
-<</if>>
-<<if $arcologies[0].FSGenderRadicalist < 0>>
-	<<set $arcologies[0].FSGenderRadicalist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSGenderRadicalistSMR = 0, $arcologies[0].FSGenderRadicalistLawDicks = 0, $arcologies[0].FSGenderRadicalistLawFuta = 0, $arcologies[0].FSGenderRadicalistLawBeauty = 0>>
-	<<if $assistantFSAppearance == "gender radicalist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSGenderRadicalist > $arcologies[0].FSGenderRadicalistDecoration>>
-	<<set $arcologies[0].FSGenderRadicalist = $arcologies[0].FSGenderRadicalistDecoration>>
-<</if>>
-<<if $arcologies[0].FSGenderRadicalistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSGenderRadicalist == $arcologies[0].FSGenderRadicalistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSGenderRadicalistSMR == 1>>
-	<<set $arcologies[0].FSGenderRadicalist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSGenderRadicalist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly in the need to redefine gender around power.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSGenderRadicalist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with the need to redefine gender around power.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSGenderRadicalist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to the need to redefine gender around power.
+	<<else>>
+		$arcologies[0].name is unconvinced of the need to redefine gender around power.
+	<</if>>
+	<<if $arcologies[0].FSGenderRadicalist < 0>>
+		<<run removeFS("FSGenderRadicalist")>>
+		<<if $assistantFSAppearance == "gender radicalist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSGenderRadicalist > $arcologies[0].FSGenderRadicalistDecoration>>
+		<<set $arcologies[0].FSGenderRadicalist = $arcologies[0].FSGenderRadicalistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSGenderRadicalistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSGenderRadicalist == $arcologies[0].FSGenderRadicalistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSGenderRadicalistSMR == 1>>
+			<<set $arcologies[0].FSGenderRadicalist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSGenderFundamentalist != "unset">>
-<<if $arcologies[0].FSGenderFundamentalist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly in the need to preserve traditional gender roles.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSGenderFundamentalist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with the need to preserve traditional gender roles.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSGenderFundamentalist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to the need to preserve traditional gender roles.
-<<else>>
-	$arcologies[0].name is unconvinced of the need to preserve traditional gender roles.
-<</if>>
-<<if $arcologies[0].FSGenderFundamentalist < 0>>
-	<<set $arcologies[0].FSGenderFundamentalist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSGenderFundamentalistSMR = 0, $arcologies[0].FSGenderFundamentalistLawBimbo = 0>>
-	<<if $assistantFSAppearance == "gender fundamentalist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSGenderFundamentalist > $arcologies[0].FSGenderFundamentalistDecoration>>
-	<<set $arcologies[0].FSGenderFundamentalist = $arcologies[0].FSGenderFundamentalistDecoration>>
-<</if>>
-<<if $arcologies[0].FSGenderFundamentalistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSGenderFundamentalist == $arcologies[0].FSGenderFundamentalistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSGenderFundamentalistSMR == 1>>
-	<<set $arcologies[0].FSGenderFundamentalist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSGenderFundamentalist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly in the need to preserve traditional gender roles.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSGenderFundamentalist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with the need to preserve traditional gender roles.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSGenderFundamentalist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to the need to preserve traditional gender roles.
+	<<else>>
+		$arcologies[0].name is unconvinced of the need to preserve traditional gender roles.
+	<</if>>
+	<<if $arcologies[0].FSGenderFundamentalist < 0>>
+		<<run removeFS("FSGenderFundamentalist")>>
+		<<if $assistantFSAppearance == "gender fundamentalist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSGenderFundamentalist > $arcologies[0].FSGenderFundamentalistDecoration>>
+		<<set $arcologies[0].FSGenderFundamentalist = $arcologies[0].FSGenderFundamentalistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSGenderFundamentalistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSGenderFundamentalist == $arcologies[0].FSGenderFundamentalistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSGenderFundamentalistSMR == 1>>
+			<<set $arcologies[0].FSGenderFundamentalist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSPaternalist != "unset">>
-<<if $arcologies[0].FSPaternalist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly in the vision of a well-bred race of slaves.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSPaternalist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with the vision of a well-bred race of slaves.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSPaternalist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to the vision of a well-bred race of slaves.
-<<else>>
-	$arcologies[0].name is unconvinced of the vision of a well-bred race of slaves.
-<</if>>
-<<if $arcologies[0].FSPaternalist < 0>>
-	<<set $arcologies[0].FSPaternalist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSPaternalistLaw = 0, $arcologies[0].FSPaternalistSMR = 0>>
-	<<if $assistantFSAppearance == "paternalist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSPaternalist > $arcologies[0].FSPaternalistDecoration>>
-	<<set $arcologies[0].FSPaternalist = $arcologies[0].FSPaternalistDecoration>>
-<</if>>
-<<if $arcologies[0].FSPaternalistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSPaternalist == $arcologies[0].FSPaternalistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSPaternalistSMR == 1>>
-	<<set $arcologies[0].FSPaternalist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSPaternalist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly in the vision of a well-bred race of slaves.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSPaternalist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with the vision of a well-bred race of slaves.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSPaternalist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to the vision of a well-bred race of slaves.
+	<<else>>
+		$arcologies[0].name is unconvinced of the vision of a well-bred race of slaves.
+	<</if>>
+	<<if $arcologies[0].FSPaternalist < 0>>
+		<<run removeFS("FSPaternalist")>>
+		<<if $assistantFSAppearance == "paternalist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSPaternalist > $arcologies[0].FSPaternalistDecoration>>
+		<<set $arcologies[0].FSPaternalist = $arcologies[0].FSPaternalistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSPaternalistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSPaternalist == $arcologies[0].FSPaternalistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSPaternalistSMR == 1>>
+			<<set $arcologies[0].FSPaternalist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSDegradationist != "unset">>
-<<if $arcologies[0].FSDegradationist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that slaves are not human and should be thoroughly degraded.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSDegradationist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with the idea that slaves are not human and should be thoroughly degraded.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSDegradationist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to the proposition that slaves are not human and should be thoroughly degraded.
-<<else>>
-	$arcologies[0].name is unconvinced that slaves are not human and should be thoroughly degraded.
-<</if>>
-<<if $arcologies[0].FSDegradationist < 0>>
-	<<set $arcologies[0].FSDegradationist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSDegradationistLaw = 0, $arcologies[0].FSDegradationistSMR = 0>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSDegradationist > $arcologies[0].FSDegradationistDecoration>>
-	<<set $arcologies[0].FSDegradationist = $arcologies[0].FSDegradationistDecoration>>
-<</if>>
-<<if $arcologies[0].FSDegradationistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSDegradationist == $arcologies[0].FSDegradationistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSDegradationistSMR == 1>>
-	<<set $arcologies[0].FSDegradationist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSDegradationist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that slaves are not human and should be thoroughly degraded.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSDegradationist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with the idea that slaves are not human and should be thoroughly degraded.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSDegradationist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to the proposition that slaves are not human and should be thoroughly degraded.
+	<<else>>
+		$arcologies[0].name is unconvinced that slaves are not human and should be thoroughly degraded.
+	<</if>>
+	<<if $arcologies[0].FSDegradationist < 0>>
+		<<run removeFS("FSDegradationist")>>
+		<<if $assistantFSAppearance == "degradationist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSDegradationist > $arcologies[0].FSDegradationistDecoration>>
+		<<set $arcologies[0].FSDegradationist = $arcologies[0].FSDegradationistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSDegradationistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSDegradationist == $arcologies[0].FSDegradationistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSDegradationistSMR == 1>>
+			<<set $arcologies[0].FSDegradationist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSBodyPurist != "unset">>
-<<if $arcologies[0].FSBodyPurist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly in the unattractive nature of implants.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSBodyPurist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name strongly believes in the unattractive nature of implants.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSBodyPurist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is beginning to believe in the unattractive nature of implants.
-<<else>>
-	$arcologies[0].name is unconvinced of the unattractive nature of implants.
-<</if>>
-<<if $arcologies[0].FSBodyPurist < 0>>
-	<<set $arcologies[0].FSBodyPurist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSBodyPuristLaw = 0, $arcologies[0].FSBodyPuristSMR = 0>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSBodyPurist > $arcologies[0].FSBodyPuristDecoration>>
-	<<set $arcologies[0].FSBodyPurist = $arcologies[0].FSBodyPuristDecoration>>
-<</if>>
-<<if $arcologies[0].FSBodyPuristDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSBodyPurist == $arcologies[0].FSBodyPuristDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSBodyPuristSMR == 1>>
-	<<set $arcologies[0].FSBodyPurist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSBodyPurist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly in the unattractive nature of implants.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSBodyPurist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name strongly believes in the unattractive nature of implants.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSBodyPurist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is beginning to believe in the unattractive nature of implants.
+	<<else>>
+		$arcologies[0].name is unconvinced of the unattractive nature of implants.
+	<</if>>
+	<<if $arcologies[0].FSBodyPurist < 0>>
+		<<run removeFS("FSBodyPurist")>>
+		<<if $assistantFSAppearance == "body purist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSBodyPurist > $arcologies[0].FSBodyPuristDecoration>>
+		<<set $arcologies[0].FSBodyPurist = $arcologies[0].FSBodyPuristDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSBodyPuristDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSBodyPurist == $arcologies[0].FSBodyPuristDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSBodyPuristSMR == 1>>
+			<<set $arcologies[0].FSBodyPurist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSTransformationFetishist != "unset">>
-<<if $arcologies[0].FSTransformationFetishist >= $FSLockinLevel>>
-	$arcologies[0].name passionately fetishizes implants.
-<<elseif $arcologies[0].FSTransformationFetishist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name strongly fetishizes implants.
-<<elseif $arcologies[0].FSTransformationFetishist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name beginning to fetishize implants.
-<<else>>
-	$arcologies[0].name is unconvinced about the attractiveness of implants.
-<</if>>
-<<if $arcologies[0].FSTransformationFetishist < 0>>
-	<<set $arcologies[0].FSTransformationFetishist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSTransformationFetishistLaw = 0, $arcologies[0].FSTransformationFetishistSMR = 0>>
-	<<if $assistantFSAppearance == "transformation fetishist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSTransformationFetishist > $arcologies[0].FSTransformationFetishistDecoration>>
-	<<set $arcologies[0].FSTransformationFetishist = $arcologies[0].FSTransformationFetishistDecoration>>
-<</if>>
-<<if $arcologies[0].FSTransformationFetishistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSTransformationFetishist == $arcologies[0].FSTransformationFetishistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSTransformationFetishistSMR == 1>>
-	<<set $arcologies[0].FSTransformationFetishist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSTransformationFetishist >= $FSLockinLevel>>
+		$arcologies[0].name passionately fetishizes implants.
+	<<elseif $arcologies[0].FSTransformationFetishist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name strongly fetishizes implants.
+	<<elseif $arcologies[0].FSTransformationFetishist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name beginning to fetishize implants.
+	<<else>>
+		$arcologies[0].name is unconvinced about the attractiveness of implants.
+	<</if>>
+	<<if $arcologies[0].FSTransformationFetishist < 0>>
+		<<run removeFS("FSTransformationFetishist")>>
+		<<if $assistantFSAppearance == "transformation fetishist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSTransformationFetishist > $arcologies[0].FSTransformationFetishistDecoration>>
+		<<set $arcologies[0].FSTransformationFetishist = $arcologies[0].FSTransformationFetishistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSTransformationFetishistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSTransformationFetishist == $arcologies[0].FSTransformationFetishistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSTransformationFetishistSMR == 1>>
+			<<set $arcologies[0].FSTransformationFetishist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSMaturityPreferentialist != "unset">>
-<<if $arcologies[0].FSMaturityPreferentialist >= $FSLockinLevel>>
-	$arcologies[0].name is passionately enthusiastic about older ladies.
-<<elseif $arcologies[0].FSMaturityPreferentialist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name is enthusiastic about older ladies.
-<<elseif $arcologies[0].FSMaturityPreferentialist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is beginning to be enthusiastic about older ladies.
-<<else>>
-	$arcologies[0].name is unconvinced about your preference for older ladies.
-<</if>>
-<<if $arcologies[0].FSMaturityPreferentialist < 0>>
-	<<set $arcologies[0].FSMaturityPreferentialist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSMaturityPreferentialistLaw = 0, $arcologies[0].FSMaturityPreferentialistSMR = 0>>
-	<<if $assistantFSAppearance == "maturity preferentialist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSMaturityPreferentialist > $arcologies[0].FSMaturityPreferentialistDecoration>>
-	<<set $arcologies[0].FSMaturityPreferentialist = $arcologies[0].FSMaturityPreferentialistDecoration>>
-<</if>>
-<<if $arcologies[0].FSMaturityPreferentialistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSMaturityPreferentialist == $arcologies[0].FSMaturityPreferentialistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSMaturityPreferentialistSMR == 1>>
-	<<set $arcologies[0].FSMaturityPreferentialist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSMaturityPreferentialist >= $FSLockinLevel>>
+		$arcologies[0].name is passionately enthusiastic about older ladies.
+	<<elseif $arcologies[0].FSMaturityPreferentialist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name is enthusiastic about older ladies.
+	<<elseif $arcologies[0].FSMaturityPreferentialist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is beginning to be enthusiastic about older ladies.
+	<<else>>
+		$arcologies[0].name is unconvinced about your preference for older ladies.
+	<</if>>
+	<<if $arcologies[0].FSMaturityPreferentialist < 0>>
+		<<run removeFS("FSMaturityPreferentialist")>>
+		<<if $assistantFSAppearance == "maturity preferentialist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSMaturityPreferentialist > $arcologies[0].FSMaturityPreferentialistDecoration>>
+		<<set $arcologies[0].FSMaturityPreferentialist = $arcologies[0].FSMaturityPreferentialistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSMaturityPreferentialistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSMaturityPreferentialist == $arcologies[0].FSMaturityPreferentialistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSMaturityPreferentialistSMR == 1>>
+			<<set $arcologies[0].FSMaturityPreferentialist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSYouthPreferentialist != "unset">>
-<<if $arcologies[0].FSYouthPreferentialist >= $FSLockinLevel>>
-	$arcologies[0].name is passionately enthusiastic about young women.
-<<elseif $arcologies[0].FSYouthPreferentialist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name is enthusiastic about young women.
-<<elseif $arcologies[0].FSYouthPreferentialist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is beginning to be enthusiastic about young women.
-<<else>>
-	$arcologies[0].name is unconvinced about your preference for young women.
-<</if>>
-<<if $arcologies[0].FSYouthPreferentialist < 0>>
-	<<set $arcologies[0].FSYouthPreferentialist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSYouthPreferentialistLaw = 0, $arcologies[0].FSYouthPreferentialistSMR = 0>>
-	<<if $assistantFSAppearance == "youth preferentialist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSYouthPreferentialist > $arcologies[0].FSYouthPreferentialistDecoration>>
-	<<set $arcologies[0].FSYouthPreferentialist = $arcologies[0].FSYouthPreferentialistDecoration>>
-<</if>>
-<<if $arcologies[0].FSYouthPreferentialistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSYouthPreferentialist == $arcologies[0].FSYouthPreferentialistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSYouthPreferentialistSMR == 1>>
-	<<set $arcologies[0].FSYouthPreferentialist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSYouthPreferentialist >= $FSLockinLevel>>
+		$arcologies[0].name is passionately enthusiastic about young women.
+	<<elseif $arcologies[0].FSYouthPreferentialist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name is enthusiastic about young women.
+	<<elseif $arcologies[0].FSYouthPreferentialist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is beginning to be enthusiastic about young women.
+	<<else>>
+		$arcologies[0].name is unconvinced about your preference for young women.
+	<</if>>
+	<<if $arcologies[0].FSYouthPreferentialist < 0>>
+		<<run removeFS("FSYouthPreferentialist")>>
+		<<if $assistantFSAppearance == "youth preferentialist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSYouthPreferentialist > $arcologies[0].FSYouthPreferentialistDecoration>>
+		<<set $arcologies[0].FSYouthPreferentialist = $arcologies[0].FSYouthPreferentialistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSYouthPreferentialistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSYouthPreferentialist == $arcologies[0].FSYouthPreferentialistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSYouthPreferentialistSMR == 1>>
+			<<set $arcologies[0].FSYouthPreferentialist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSSlimnessEnthusiast != "unset">>
-<<if $arcologies[0].FSSlimnessEnthusiast >= $FSLockinLevel>>
-	$arcologies[0].name is passionately enthusiastic about slim slaves with girlish figures.
-<<elseif $arcologies[0].FSSlimnessEnthusiast >= $FSLockinLevel*0.6>>
-	$arcologies[0].name is very enthusiastic about slim slaves with girlish figures.
-<<elseif $arcologies[0].FSSlimnessEnthusiast >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is enthusiastic about slim slaves with girlish figures.
-<<else>>
-	$arcologies[0].name is unconvinced about your preference for slim slaves with girlish figures.
-<</if>>
-<<if $arcologies[0].FSSlimnessEnthusiast < 0>>
-	<<set $arcologies[0].FSSlimnessEnthusiast = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSSlimnessEnthusiastSMR = 0, $arcologies[0].FSSlimnessEnthusiastLaw = 0>>
-	<<if $assistantFSAppearance == "slimness enthusiast">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSSlimnessEnthusiast > $arcologies[0].FSSlimnessEnthusiastDecoration>>
-	<<set $arcologies[0].FSSlimnessEnthusiast = $arcologies[0].FSSlimnessEnthusiastDecoration>>
-<</if>>
-<<if $arcologies[0].FSSlimnessEnthusiastDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSSlimnessEnthusiast == $arcologies[0].FSSlimnessEnthusiastDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSSlimnessEnthusiastSMR == 1>>
-	<<set $arcologies[0].FSSlimnessEnthusiast += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSSlimnessEnthusiast >= $FSLockinLevel>>
+		$arcologies[0].name is passionately enthusiastic about slim slaves with girlish figures.
+	<<elseif $arcologies[0].FSSlimnessEnthusiast >= $FSLockinLevel*0.6>>
+		$arcologies[0].name is very enthusiastic about slim slaves with girlish figures.
+	<<elseif $arcologies[0].FSSlimnessEnthusiast >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is enthusiastic about slim slaves with girlish figures.
+	<<else>>
+		$arcologies[0].name is unconvinced about your preference for slim slaves with girlish figures.
+	<</if>>
+	<<if $arcologies[0].FSSlimnessEnthusiast < 0>>
+		<<run removeFS("FSSlimnessEnthusiast")>>
+		<<if $assistantFSAppearance == "slimness enthusiast">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSSlimnessEnthusiast > $arcologies[0].FSSlimnessEnthusiastDecoration>>
+		<<set $arcologies[0].FSSlimnessEnthusiast = $arcologies[0].FSSlimnessEnthusiastDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSSlimnessEnthusiastDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSSlimnessEnthusiast == $arcologies[0].FSSlimnessEnthusiastDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSSlimnessEnthusiastSMR == 1>>
+			<<set $arcologies[0].FSSlimnessEnthusiast += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSAssetExpansionist != "unset">>
-<<if $arcologies[0].FSAssetExpansionist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that all tits and asses should be bigger.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSAssetExpansionist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with the idea that all tits and asses should be bigger.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSAssetExpansionist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to the idea that all tits and asses should be bigger.
-<<else>>
-	$arcologies[0].name is unconvinced that all tits and asses should be bigger.
-<</if>>
-<<if $arcologies[0].FSAssetExpansionist < 0>>
-	<<set $arcologies[0].FSAssetExpansionist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSAssetExpansionistSMR = 0, $arcologies[0].FSAssetExpansionistLaw = 0>>
-	<<if $assistantFSAppearance == "asset expansionist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSAssetExpansionist > $arcologies[0].FSAssetExpansionistDecoration>>
-	<<set $arcologies[0].FSAssetExpansionist = $arcologies[0].FSAssetExpansionistDecoration>>
-<</if>>
-<<if $arcologies[0].FSAssetExpansionistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSAssetExpansionist == $arcologies[0].FSAssetExpansionistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSAssetExpansionistSMR == 1>>
-	<<set $arcologies[0].FSAssetExpansionist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSAssetExpansionist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that all tits and asses should be bigger.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSAssetExpansionist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with the idea that all tits and asses should be bigger.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSAssetExpansionist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to the idea that all tits and asses should be bigger.
+	<<else>>
+		$arcologies[0].name is unconvinced that all tits and asses should be bigger.
+	<</if>>
+	<<if $arcologies[0].FSAssetExpansionist < 0>>
+		<<run removeFS("FSAssetExpansionist")>>
+		<<if $assistantFSAppearance == "asset expansionist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSAssetExpansionist > $arcologies[0].FSAssetExpansionistDecoration>>
+		<<set $arcologies[0].FSAssetExpansionist = $arcologies[0].FSAssetExpansionistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSAssetExpansionistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSAssetExpansionist == $arcologies[0].FSAssetExpansionistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSAssetExpansionistSMR == 1>>
+			<<set $arcologies[0].FSAssetExpansionist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSPastoralist != "unset">>
-<<if $arcologies[0].FSPastoralist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that slaves should be milked.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSPastoralist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with the idea that slaves should be milked.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSPastoralist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to the idea that slaves should be milked.
-<<else>>
-	$arcologies[0].name is unconvinced that slaves should be milked.
-<</if>>
-<<if $arcologies[0].FSPastoralist < 0>>
-	<<set $arcologies[0].FSPastoralist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSPastoralistLaw = 0, $arcologies[0].FSPastoralistSMR = 0>>
-	<<if $assistantFSAppearance == "pastoralist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSPastoralist > $arcologies[0].FSPastoralistDecoration>>
-	<<set $arcologies[0].FSPastoralist = $arcologies[0].FSPastoralistDecoration>>
-<</if>>
-<<if $arcologies[0].FSPastoralistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSPastoralist == $arcologies[0].FSPastoralistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSPastoralistSMR == 1>>
-	<<set $arcologies[0].FSPastoralist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSPastoralist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that slaves should be milked.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSPastoralist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with the idea that slaves should be milked.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSPastoralist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to the idea that slaves should be milked.
+	<<else>>
+		$arcologies[0].name is unconvinced that slaves should be milked.
+	<</if>>
+	<<if $arcologies[0].FSPastoralist < 0>>
+		<<run removeFS("FSPastoralist")>>
+		<<if $assistantFSAppearance == "pastoralist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSPastoralist > $arcologies[0].FSPastoralistDecoration>>
+		<<set $arcologies[0].FSPastoralist = $arcologies[0].FSPastoralistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSPastoralistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSPastoralist == $arcologies[0].FSPastoralistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSPastoralistSMR == 1>>
+			<<set $arcologies[0].FSPastoralist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSPhysicalIdealist != "unset">>
-<<if $arcologies[0].FSPhysicalIdealist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that all slaves should be tall and strong.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSPhysicalIdealist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with the idea that all slaves should be tall and strong.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSPhysicalIdealist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to the idea that all slaves should be tall and strong.
-<<else>>
-	$arcologies[0].name is unconvinced that all slaves should be tall and strong.
-<</if>>
-<<if $arcologies[0].FSPhysicalIdealist < 0>>
-	<<set $arcologies[0].FSPhysicalIdealist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSPhysicalIdealistSMR = 0, $arcologies[0].FSPhysicalIdealistLaw = 0, $arcologies[0].FSPhysicalIdealistStrongFat = 0>>
-	<<if $assistantFSAppearance == "physical idealist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSPhysicalIdealist > $arcologies[0].FSPhysicalIdealistDecoration>>
-	<<set $arcologies[0].FSPhysicalIdealist = $arcologies[0].FSPhysicalIdealistDecoration>>
-<</if>>
-<<if $arcologies[0].FSPhysicalIdealistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSPhysicalIdealist == $arcologies[0].FSPhysicalIdealistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSPhysicalIdealistSMR == 1>>
-	<<set $arcologies[0].FSPhysicalIdealist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSPhysicalIdealist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that all slaves should be tall and strong.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSPhysicalIdealist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with the idea that all slaves should be tall and strong.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSPhysicalIdealist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to the idea that all slaves should be tall and strong.
+	<<else>>
+		$arcologies[0].name is unconvinced that all slaves should be tall and strong.
+	<</if>>
+	<<if $arcologies[0].FSPhysicalIdealist < 0>>
+		<<run removeFS("FSPhysicalIdealist")>>
+		<<if $assistantFSAppearance == "physical idealist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSPhysicalIdealist > $arcologies[0].FSPhysicalIdealistDecoration>>
+		<<set $arcologies[0].FSPhysicalIdealist = $arcologies[0].FSPhysicalIdealistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSPhysicalIdealistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSPhysicalIdealist == $arcologies[0].FSPhysicalIdealistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSPhysicalIdealistSMR == 1>>
+			<<set $arcologies[0].FSPhysicalIdealist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSHedonisticDecadence != "unset">>
-<<if $arcologies[0].FSHedonisticDecadence >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that all slaves should be soft and laid-back.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSHedonisticDecadence >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with the idea that all slaves should be soft and laid-back.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSHedonisticDecadence >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to the idea that all slaves should be soft and laid-back.
-<<else>>
-	$arcologies[0].name is unconvinced that all slaves should be soft and laid-back.
-<</if>>
-<<if $arcologies[0].FSHedonisticDecadence < 0>>
-	<<set $arcologies[0].FSHedonisticDecadence = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSHedonisticDecadenceSMR = 0, $arcologies[0].FSHedonisticDecadenceLaw = 0, $arcologies[0].FSHedonisticDecadenceLaw2 = 0, $arcologies[0].FSHedonisticDecadenceStrongFat = 0>>
-	<<if $assistantFSAppearance == "hedonistic decadence">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSHedonisticDecadence > $arcologies[0].FSHedonisticDecadenceDecoration>>
-	<<set $arcologies[0].FSHedonisticDecadence = $arcologies[0].FSHedonisticDecadenceDecoration>>
-<</if>>
-<<if $arcologies[0].FSHedonisticDecadenceDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSHedonisticDecadence == $arcologies[0].FSHedonisticDecadenceDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSHedonisticDecadenceSMR == 1>>
-	<<set $arcologies[0].FSHedonisticDecadence += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSHedonisticDecadence >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that all slaves should be soft and laid-back.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSHedonisticDecadence >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with the idea that all slaves should be soft and laid-back.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSHedonisticDecadence >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to the idea that all slaves should be soft and laid-back.
+	<<else>>
+		$arcologies[0].name is unconvinced that all slaves should be soft and laid-back.
+	<</if>>
+	<<if $arcologies[0].FSHedonisticDecadence < 0>>
+		<<run removeFS("FSHedonisticDecadence")>>
+		<<if $assistantFSAppearance == "hedonistic decadence">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSHedonisticDecadence > $arcologies[0].FSHedonisticDecadenceDecoration>>
+		<<set $arcologies[0].FSHedonisticDecadence = $arcologies[0].FSHedonisticDecadenceDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSHedonisticDecadenceDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSHedonisticDecadence == $arcologies[0].FSHedonisticDecadenceDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSHedonisticDecadenceSMR == 1>>
+			<<set $arcologies[0].FSHedonisticDecadence += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSChattelReligionist != "unset">>
-<<if $arcologies[0].FSChattelReligionist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly in a version of religion that emphasizes slaveholding traditions.
-	<<set $independenceDay = 1, $nicaeaAnnounceable = 1>>
-<<elseif $arcologies[0].FSChattelReligionist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with a version of religion that emphasizes slaveholding traditions.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSChattelReligionist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to a version of religion that emphasizes slaveholding traditions.
-<<else>>
-	$arcologies[0].name is unconvinced of a version of religion that emphasizes slaveholding traditions.
-<</if>>
-<<if $arcologies[0].FSChattelReligionist < 0>>
-	<<set $arcologies[0].FSChattelReligionist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSChattelReligionistLaw = 0, $arcologies[0].FSChattelReligionistSMR = 0, $arcologies[0].FSChattelReligionistCreed = 0>>
-	<<if $assistantFSAppearance == "chattel religionist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSChattelReligionist > $arcologies[0].FSChattelReligionistDecoration>>
-	<<set $arcologies[0].FSChattelReligionist = $arcologies[0].FSChattelReligionistDecoration>>
-<</if>>
-<<if $arcologies[0].FSChattelReligionistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSChattelReligionist == $arcologies[0].FSChattelReligionistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSChattelReligionistSMR == 1>>
-	<<set $arcologies[0].FSChattelReligionist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSChattelReligionist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly in a version of religion that emphasizes slaveholding traditions.
+		<<set $independenceDay = 1, $nicaeaAnnounceable = 1>>
+	<<elseif $arcologies[0].FSChattelReligionist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with a version of religion that emphasizes slaveholding traditions.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSChattelReligionist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to a version of religion that emphasizes slaveholding traditions.
+	<<else>>
+		$arcologies[0].name is unconvinced of a version of religion that emphasizes slaveholding traditions.
+	<</if>>
+	<<if $arcologies[0].FSChattelReligionist < 0>>
+		<<run removeFS("FSChattelReligionist")>>
+		<<if $assistantFSAppearance == "chattel religionist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSChattelReligionist > $arcologies[0].FSChattelReligionistDecoration>>
+		<<set $arcologies[0].FSChattelReligionist = $arcologies[0].FSChattelReligionistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSChattelReligionistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSChattelReligionist == $arcologies[0].FSChattelReligionistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSChattelReligionistSMR == 1>>
+			<<set $arcologies[0].FSChattelReligionist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSRomanRevivalist != "unset">>
-<<if $arcologies[0].FSRomanRevivalist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that it is the new Rome.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSRomanRevivalist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with your project to build a new Rome.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSRomanRevivalist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to your project to build a new Rome.
-<<else>>
-	$arcologies[0].name is unconvinced of the wisdom of your project to build a new Rome.
-<</if>>
-<<if $arcologies[0].FSRomanRevivalist < 0>>
-	<<set $arcologies[0].FSRomanRevivalist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSRomanRevivalistLaw = 0, $arcologies[0].FSRomanRevivalistSMR = 0>>
-	<<if $assistantFSAppearance == "roman revivalist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSRomanRevivalist > $arcologies[0].FSRomanRevivalistDecoration>>
-	<<set $arcologies[0].FSRomanRevivalist = $arcologies[0].FSRomanRevivalistDecoration>>
-<</if>>
-<<if $arcologies[0].FSRomanRevivalistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSRomanRevivalist == $arcologies[0].FSRomanRevivalistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSRomanRevivalistSMR == 1>>
-	<<set $arcologies[0].FSRomanRevivalist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSRomanRevivalist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that it is the new Rome.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSRomanRevivalist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with your project to build a new Rome.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSRomanRevivalist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to your project to build a new Rome.
+	<<else>>
+		$arcologies[0].name is unconvinced of the wisdom of your project to build a new Rome.
+	<</if>>
+	<<if $arcologies[0].FSRomanRevivalist < 0>>
+		<<run removeFS("FSRomanRevivalist")>>
+		<<if $assistantFSAppearance == "roman revivalist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSRomanRevivalist > $arcologies[0].FSRomanRevivalistDecoration>>
+		<<set $arcologies[0].FSRomanRevivalist = $arcologies[0].FSRomanRevivalistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSRomanRevivalistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSRomanRevivalist == $arcologies[0].FSRomanRevivalistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSRomanRevivalistSMR == 1>>
+			<<set $arcologies[0].FSRomanRevivalist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSAztecRevivalist != "unset">>
-<<if $arcologies[0].FSAztecRevivalist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that it is the new Aztec Empire.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSAztecRevivalist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with your project to build a new Aztec Empire.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSAztecRevivalist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to your project to build a new Aztec Empire.
-<<else>>
-	$arcologies[0].name is unconvinced of the wisdom of your project to build a new Aztec Empire.
-<</if>>
-<<if $arcologies[0].FSAztecRevivalist < 0>>
-	<<set $arcologies[0].FSAztecRevivalist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSAztecRevivalistSMR = 0, $arcologies[0].FSAztecRevivalistLaw = 0>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSAztecRevivalist > $arcologies[0].FSAztecRevivalistDecoration>>
-	<<set $arcologies[0].FSAztecRevivalist = $arcologies[0].FSAztecRevivalistDecoration>>
-<</if>>
-<<if $arcologies[0].FSAztecRevivalistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSAztecRevivalist == $arcologies[0].FSAztecRevivalistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSAztecRevivalistSMR == 1>>
-	<<set $arcologies[0].FSAztecRevivalist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSAztecRevivalist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that it is the new Aztec Empire.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSAztecRevivalist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with your project to build a new Aztec Empire.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSAztecRevivalist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to your project to build a new Aztec Empire.
+	<<else>>
+		$arcologies[0].name is unconvinced of the wisdom of your project to build a new Aztec Empire.
+	<</if>>
+	<<if $arcologies[0].FSAztecRevivalist < 0>>
+		<<run removeFS("FSAztecRevivalist")>>
+		<<if $assistantFSAppearance == "aztec revivalist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSAztecRevivalist > $arcologies[0].FSAztecRevivalistDecoration>>
+		<<set $arcologies[0].FSAztecRevivalist = $arcologies[0].FSAztecRevivalistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSAztecRevivalistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSAztecRevivalist == $arcologies[0].FSAztecRevivalistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSAztecRevivalistSMR == 1>>
+			<<set $arcologies[0].FSAztecRevivalist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSEgyptianRevivalist != "unset">>
-<<if $arcologies[0].FSEgyptianRevivalist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that it is the land of the Pharaohs, reborn.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSEgyptianRevivalist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with your project to build a new land of the Pharaohs.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSEgyptianRevivalist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to your project to build a new land of the Pharaohs.
-<<else>>
-	$arcologies[0].name is unconvinced of the wisdom of your project to build a new land of the Pharaohs.
-<</if>>
-<<if $arcologies[0].FSEgyptianRevivalist < 0>>
-	<<set $arcologies[0].FSEgyptianRevivalist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSEgyptianRevivalistLaw = 0, $arcologies[0].FSEgyptianRevivalistSMR = 0>>
-	<<if $assistantFSAppearance == "egyptian revivalist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSEgyptianRevivalist > $arcologies[0].FSEgyptianRevivalistDecoration>>
-	<<set $arcologies[0].FSEgyptianRevivalist = $arcologies[0].FSEgyptianRevivalistDecoration>>
-<</if>>
-<<if $arcologies[0].FSEgyptianRevivalistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSEgyptianRevivalist == $arcologies[0].FSEgyptianRevivalistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSEgyptianRevivalistSMR == 1>>
-	<<set $arcologies[0].FSEgyptianRevivalist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSEgyptianRevivalist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that it is the land of the Pharaohs, reborn.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSEgyptianRevivalist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with your project to build a new land of the Pharaohs.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSEgyptianRevivalist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to your project to build a new land of the Pharaohs.
+	<<else>>
+		$arcologies[0].name is unconvinced of the wisdom of your project to build a new land of the Pharaohs.
+	<</if>>
+	<<if $arcologies[0].FSEgyptianRevivalist < 0>>
+		<<run removeFS("FSEgyptianRevivalist")>>
+		<<if $assistantFSAppearance == "egyptian revivalist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSEgyptianRevivalist > $arcologies[0].FSEgyptianRevivalistDecoration>>
+		<<set $arcologies[0].FSEgyptianRevivalist = $arcologies[0].FSEgyptianRevivalistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSEgyptianRevivalistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSEgyptianRevivalist == $arcologies[0].FSEgyptianRevivalistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSEgyptianRevivalistSMR == 1>>
+			<<set $arcologies[0].FSEgyptianRevivalist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSEdoRevivalist != "unset">>
-<<if $arcologies[0].FSEdoRevivalist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that it is the land of the Shogun, reborn.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSEdoRevivalist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with your project to build a new Edo Japan.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSEdoRevivalist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to your project to build a new Edo Japan.
-<<else>>
-	$arcologies[0].name is unconvinced of the wisdom of your project to build a new Edo Japan.
-<</if>>
-<<if $arcologies[0].FSEdoRevivalist < 0>>
-	<<set $arcologies[0].FSEdoRevivalist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSEdoRevivalistLaw = 0, $arcologies[0].FSEdoRevivalistSMR = 0>>
-	<<if $assistantFSAppearance == "edo revivalist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSEdoRevivalist > $arcologies[0].FSEdoRevivalistDecoration>>
-	<<set $arcologies[0].FSEdoRevivalist = $arcologies[0].FSEdoRevivalistDecoration>>
-<</if>>
-<<if $arcologies[0].FSEdoRevivalistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSEdoRevivalist == $arcologies[0].FSEdoRevivalistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSEdoRevivalistSMR == 1>>
-	<<set $arcologies[0].FSEdoRevivalist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSEdoRevivalist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that it is the land of the Shogun, reborn.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSEdoRevivalist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with your project to build a new Edo Japan.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSEdoRevivalist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to your project to build a new Edo Japan.
+	<<else>>
+		$arcologies[0].name is unconvinced of the wisdom of your project to build a new Edo Japan.
+	<</if>>
+	<<if $arcologies[0].FSEdoRevivalist < 0>>
+		<<run removeFS("FSEdoRevivalist")>>
+		<<if $assistantFSAppearance == "edo revivalist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSEdoRevivalist > $arcologies[0].FSEdoRevivalistDecoration>>
+		<<set $arcologies[0].FSEdoRevivalist = $arcologies[0].FSEdoRevivalistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSEdoRevivalistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSEdoRevivalist == $arcologies[0].FSEdoRevivalistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSEdoRevivalistSMR == 1>>
+			<<set $arcologies[0].FSEdoRevivalist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSArabianRevivalist != "unset">>
-<<if $arcologies[0].FSArabianRevivalist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that it is ancient Baghdad reborn.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSArabianRevivalist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with your project to build a new Sultanate.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSArabianRevivalist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to your project to build a new Sultanate.
-<<else>>
-	$arcologies[0].name is unconvinced of the wisdom of your project to build a new Sultanate.
-<</if>>
-<<if $arcologies[0].FSArabianRevivalist < 0>>
-	<<set $arcologies[0].FSArabianRevivalist = "unset">><<set $FSCredits += 1>>
-	<<set $arcologies[0].FSArabianRevivalistLaw = 0, $arcologies[0].FSArabianRevivalistSMR = 0>>
-	<<if $assistantFSAppearance == "arabian revivalist">><<set $assistantFSAppearance = "default">><</if>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSArabianRevivalist > $arcologies[0].FSArabianRevivalistDecoration>>
-	<<set $arcologies[0].FSArabianRevivalist = $arcologies[0].FSArabianRevivalistDecoration>>
-<</if>>
-<<if $arcologies[0].FSArabianRevivalistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSArabianRevivalist == $arcologies[0].FSArabianRevivalistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSArabianRevivalistSMR == 1>>
-	<<set $arcologies[0].FSArabianRevivalist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSArabianRevivalist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that it is ancient Baghdad reborn.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSArabianRevivalist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with your project to build a new Sultanate.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSArabianRevivalist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to your project to build a new Sultanate.
+	<<else>>
+		$arcologies[0].name is unconvinced of the wisdom of your project to build a new Sultanate.
+	<</if>>
+	<<if $arcologies[0].FSArabianRevivalist < 0>>
+		<<run removeFS("FSArabianRevivalist")>>
+		<<if $assistantFSAppearance == "arabian revivalist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSArabianRevivalist > $arcologies[0].FSArabianRevivalistDecoration>>
+		<<set $arcologies[0].FSArabianRevivalist = $arcologies[0].FSArabianRevivalistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSArabianRevivalistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSArabianRevivalist == $arcologies[0].FSArabianRevivalistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSArabianRevivalistSMR == 1>>
+			<<set $arcologies[0].FSArabianRevivalist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
 
 <<if $arcologies[0].FSChineseRevivalist != "unset">>
-<<if $arcologies[0].FSChineseRevivalist >= $FSLockinLevel>>
-	$arcologies[0].name believes implicitly that you possess the Mandate of Heaven.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSChineseRevivalist >= $FSLockinLevel*0.6>>
-	$arcologies[0].name agrees strongly with your pursuit of the Mandate of Heaven.
-	<<set $independenceDay = 1>>
-<<elseif $arcologies[0].FSChineseRevivalist >= $FSLockinLevel*0.3>>
-	$arcologies[0].name is sympathetic to your pursuit of the Mandate of Heaven.
-<<else>>
-	$arcologies[0].name is unconvinced of the wisdom of your pursuit of the Mandate of Heaven.
-<</if>>
-<<if $arcologies[0].FSChineseRevivalist < 0>>
-	<<set $arcologies[0].FSChineseRevivalist = "unset">><<set $FSCredits += 1>>
-	<<if $assistantFSAppearance == "chinese revivalist">><<set $assistantFSAppearance = "default">><</if>>
-	<<set $arcologies[0].FSChineseRevivalistLaw = 0, $arcologies[0].FSChineseRevivalistSMR = 0>>
-	<<ClearFacilityDecorations>>
-	@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
-<<elseif $arcologies[0].FSChineseRevivalist > $arcologies[0].FSChineseRevivalistDecoration>>
-	<<set $arcologies[0].FSChineseRevivalist = $arcologies[0].FSChineseRevivalistDecoration>>
-<</if>>
-<<if $arcologies[0].FSChineseRevivalistDecoration < $FSLockinLevel>>
-<<if $arcologies[0].FSChineseRevivalist == $arcologies[0].FSChineseRevivalistDecoration>>
-	@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
-<<elseif $arcologies[0].FSChineseRevivalistSMR == 1>>
-	<<set $arcologies[0].FSChineseRevivalist += 0.1*$FSSingleSlaveRep>>
-<</if>>
-<</if>>
+	<<if $arcologies[0].FSChineseRevivalist >= $FSLockinLevel>>
+		$arcologies[0].name believes implicitly that you possess the Mandate of Heaven.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSChineseRevivalist >= $FSLockinLevel*0.6>>
+		$arcologies[0].name agrees strongly with your pursuit of the Mandate of Heaven.
+		<<set $independenceDay = 1>>
+	<<elseif $arcologies[0].FSChineseRevivalist >= $FSLockinLevel*0.3>>
+		$arcologies[0].name is sympathetic to your pursuit of the Mandate of Heaven.
+	<<else>>
+		$arcologies[0].name is unconvinced of the wisdom of your pursuit of the Mandate of Heaven.
+	<</if>>
+	<<if $arcologies[0].FSChineseRevivalist < 0>>
+		<<run removeFS("FSChineseRevivalist")>>
+		<<if $assistantFSAppearance == "chinese revivalist">><<set $assistantFSAppearance = "default">><</if>>
+		<<ClearFacilityDecorations>>
+		@@.red;Your future society project has failed:@@ your citizens were repelled from your idea more than they were attracted to it. @@.yellow;You may select another option, or elect to try again.@@
+	<<elseif $arcologies[0].FSChineseRevivalist > $arcologies[0].FSChineseRevivalistDecoration>>
+		<<set $arcologies[0].FSChineseRevivalist = $arcologies[0].FSChineseRevivalistDecoration>>
+	<</if>>
+	<<if $arcologies[0].FSChineseRevivalistDecoration < $FSLockinLevel>>
+		<<if $arcologies[0].FSChineseRevivalist == $arcologies[0].FSChineseRevivalistDecoration>>
+			@@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@
+		<<elseif $arcologies[0].FSChineseRevivalistSMR == 1>>
+			<<set $arcologies[0].FSChineseRevivalist += 0.1*$FSSingleSlaveRep>>
+		<</if>>
+	<</if>>
 <</if>>
diff --git a/src/uncategorized/futureSociety.tw b/src/uncategorized/futureSociety.tw
index 74172aa793265e3bd3e9c1422abc08f444cef2e9..a010bc14021e8a6877989ff943967366b762ef35 100644
--- a/src/uncategorized/futureSociety.tw
+++ b/src/uncategorized/futureSociety.tw
@@ -593,7 +593,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 </span>
 
 <<if $arcologies[0].FSSupremacist != "unset">>
-	<br>''You are pursuing'' $arcologies[0].FSSupremacistRace superiority. //<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSSupremacist = "unset", $arcologies[0].FSSupremacistDecoration = 20, $arcologies[0].FSSupremacistLawME = 0, $arcologies[0].FSSupremacistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "supremacist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	<br>''You are pursuing'' $arcologies[0].FSSupremacistRace superiority. //<<link "Abandon" "Future Society">><<run removeFS("FSSupremacist")>><<if $assistantFSAppearance == "supremacist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSSupremacist">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "succubus")>>
@@ -622,7 +622,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <</if>>
 
 <<if $arcologies[0].FSSubjugationist != "unset">>
-	<br>''You are pursuing'' $arcologies[0].FSSubjugationistRace inferiority. //<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSSubjugationist = "unset", $arcologies[0].FSSubjugationistDecoration = 20, $arcologies[0].FSSubjugationistLawME = 0, $arcologies[0].FSSubjugationistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "subjugationist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	<br>''You are pursuing'' $arcologies[0].FSSubjugationistRace inferiority. //<<link "Abandon" "Future Society">><<run removeFS("FSSubjugationist")>><<if $assistantFSAppearance == "subjugationist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSSubjugationist">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "amazon") || ($assistantAppearance == "imp")>>
@@ -654,7 +654,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSRestart == "unset">>
 <<if $arcologies[0].FSRepopulationFocus != "unset">>
 	<br>''You are pursuing'' the belief that mass breeding will save humanity.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSRepopulationFocus = "unset", $arcologies[0].FSRepopulationFocusDecoration = 20, $arcologies[0].FSRepopulationFocusSMR = 0, $arcologies[0].FSRepopulationFocusLaw = 0, $FSCredits += 1>><<if $assistantFSAppearance == "repopulation focus">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSRepopulationFocus")>><<if $assistantFSAppearance == "repopulation focus">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSRepopulationFocus" "clothesBoughtMaternityLingerie" "clothesBoughtMaternityDress" "clothesBoughtBelly">>
   <<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
@@ -674,14 +674,14 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSRestart != "unset">>
 <<if $arcologies[0].FSRestartDecoration != 100>>
 	<br>''You are pursuing'' Eugenics.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSRestart = "unset", $arcologies[0].FSRestartDecoration = 20, $arcologies[0].FSRestartSMR = 0, $arcologies[0].FSRestartLaw = 0, $FSCredits += 1>><<if $assistantFSAppearance == "eugenics">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSRestart")>><<if $assistantFSAppearance == "eugenics">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSRestart">>
 <<else>>
 	<br>''You have established'' Eugenics.
 	<<if $eugenicsFullControl != 1>>
 		The Societal Elite will not permit you to abandon Eugenics.
 	<<else>>
-		//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSRestart = "unset", $arcologies[0].FSRestartDecoration = 2, $arcologies[0].FSRestartSMR = 0, $arcologies[0].FSRestartLaw = 0, $propOutcome = 0, $FSCredits += 1>><<if $assistantFSAppearance == "eugenics">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//
+		//<<link "Abandon" "Future Society">><<run removeFS("FSRestart")>><<if $assistantFSAppearance == "eugenics">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//
 	<</if>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSRestart">>
@@ -706,7 +706,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSGenderFundamentalist == "unset">>
 <<if $arcologies[0].FSGenderRadicalist != "unset">>
 	<br>''You are pursuing'' a radical redefinition of gender that identifies powerful people as male, and everyone else as female.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSGenderRadicalist = "unset", $arcologies[0].FSGenderRadicalistDecoration = 20, $arcologies[0].FSGenderRadicalistLawDicks = 0, $arcologies[0].FSGenderRadicalistLawFuta = 0, $arcologies[0].FSGenderRadicalistLawBeauty = 0, $arcologies[0].FSGenderRadicalistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "gender radicalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSGenderRadicalist")>><<if $assistantFSAppearance == "gender radicalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSGenderRadicalist">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "shemale") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
@@ -726,7 +726,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSGenderRadicalist == "unset">>
 <<if $arcologies[0].FSGenderFundamentalist != "unset">>
 	<br>''You are pursuing'' gender traditionalism, including a societal preference for feminine slaves and support for slave pregnancy.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSGenderFundamentalist = "unset", $arcologies[0].FSGenderFundamentalistDecoration = 20, $arcologies[0].FSGenderFundamentalistSMR = 0, $arcologies[0].FSGenderFundamentalistLawBimbo = 0, $FSCredits += 1>><<if $assistantFSAppearance == "gender fundamentalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSGenderFundamentalist")>><<if $assistantFSAppearance == "gender fundamentalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSGenderFundamentalist" "clothesBoughtBunny">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
@@ -745,7 +745,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSDegradationist == "unset">>
 <<if $arcologies[0].FSPaternalist != "unset">>
 	<br>''You are pursuing'' a vision of slave improvement, including slaves' health, mental well-being, and education.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSPaternalist = "unset", $arcologies[0].FSPaternalistDecoration = 20, $arcologies[0].FSPaternalistLaw = 0, $arcologies[0].FSPaternalistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "paternalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSPaternalist")>><<if $assistantFSAppearance == "paternalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSPaternalist" "clothesBoughtConservative">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub")>>
@@ -764,7 +764,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSPaternalist == "unset">>
 <<if $arcologies[0].FSDegradationist != "unset">>
 	<br>''You are pursuing'' slave degradation, a belief that slaves are not human and should not be treated decently.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSDegradationist = "unset", $arcologies[0].FSDegradationistDecoration = 20, $arcologies[0].FSDegradationistLaw = 0, $arcologies[0].FSDegradationistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "degradationist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSDegradationist")>><<if $assistantFSAppearance == "degradationist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSDegradationist" "clothesBoughtChains">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "monstergirl") || ($assistantAppearance == "businesswoman") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "imp")>>
@@ -783,7 +783,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSTransformationFetishist == "unset">>
 <<if $arcologies[0].FSBodyPurist != "unset">>
 	<br>''You are pursuing'' societal disapproval of implant surgery.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSBodyPurist = "unset", $arcologies[0].FSBodyPuristDecoration = 20, $arcologies[0].FSBodyPuristLaw = 0, $arcologies[0].FSBodyPuristSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "body purist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSBodyPurist")>><<if $assistantFSAppearance == "body purist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSBodyPurist">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "goddess") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch")>>
@@ -802,7 +802,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSBodyPurist == "unset">>
 <<if $arcologies[0].FSTransformationFetishist != "unset">>
 	<br>''You are pursuing'' societal fetishization of implant surgery.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSTransformationFetishist = "unset", $arcologies[0].FSTransformationFetishistDecoration = 20, $arcologies[0].FSTransformationFetishistLaw = 0, $arcologies[0].FSTransformationFetishistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "transformation fetishist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSTransformationFetishist")>><<if $assistantFSAppearance == "transformation fetishist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSTransformationFetishist">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "shemale") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT")>>
@@ -821,7 +821,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSMaturityPreferentialist == "unset">>
 <<if $arcologies[0].FSYouthPreferentialist != "unset">>
 	<br>''You are pursuing'' an accentuated societal preference for younger slaves.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSYouthPreferentialist = "unset", $arcologies[0].FSYouthPreferentialistDecoration = 20, $arcologies[0].FSYouthPreferentialistLaw = 0, $arcologies[0].FSYouthPreferentialistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "youth preferentialist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSYouthPreferentialist")>><<if $assistantFSAppearance == "youth preferentialist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSYouthPreferentialist">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "shemale") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "succubus") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "imp") || ($assistantAppearance == "witch")>>
@@ -840,7 +840,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSYouthPreferentialist == "unset">>
 <<if $arcologies[0].FSMaturityPreferentialist != "unset">>
 	<br>''You are pursuing'' a societal preference for older women.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSMaturityPreferentialist = "unset", $arcologies[0].FSMaturityPreferentialistDecoration = 20, $arcologies[0].FSMaturityPreferentialistLaw = 0, $arcologies[0].FSMaturityPreferentialistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "maturity preferentialist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSMaturityPreferentialist")>><<if $assistantFSAppearance == "maturity preferentialist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSMaturityPreferentialist">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "goddess") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "angel")>>
@@ -859,7 +859,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSAssetExpansionist == "unset">>
 <<if $arcologies[0].FSSlimnessEnthusiast != "unset">>
 	<br>''You are supporting'' enthusiasm for slaves with girlish figures.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSSlimnessEnthusiast = "unset", $arcologies[0].FSSlimnessEnthusiastDecoration = 20, $arcologies[0].FSSlimnessEnthusiastSMR = 0, $arcologies[0].FSSlimnessEnthusiastLaw = 0, $FSCredits += 1>><<if $assistantFSAppearance == "slimness enthusiast">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSSlimnessEnthusiast")>><<if $assistantFSAppearance == "slimness enthusiast">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSSlimnessEnthusiast">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "shemale") || ($assistantAppearance == "loli") || ($assistantAppearance == "cherub") || ($assistantAppearance == "imp") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
@@ -878,7 +878,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSSlimnessEnthusiast == "unset">>
 <<if $arcologies[0].FSAssetExpansionist != "unset">>
 	<br>''You are pursuing'' societal hunger for huge assets.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSAssetExpansionist = "unset", $arcologies[0].FSAssetExpansionistDecoration = 20, $arcologies[0].FSAssetExpansionistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "asset expansionist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSAssetExpansionist")>><<if $assistantFSAppearance == "asset expansionist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSAssetExpansionist">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "shemale") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "witch")>>
@@ -896,7 +896,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 
 <<if $arcologies[0].FSPastoralist != "unset">>
 	<br>''You are pursuing'' societal normalization of slave milking.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSPastoralist = "unset", $arcologies[0].FSPastoralistDecoration = 20, $arcologies[0].FSPastoralistLaw = 0, $arcologies[0].FSPastoralistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "pastoralist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSPastoralist")>><<if $assistantFSAppearance == "pastoralist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSPastoralist" "clothesBoughtWestern">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "shemale") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
@@ -914,7 +914,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSHedonisticDecadence == "unset">>
 <<if $arcologies[0].FSPhysicalIdealist != "unset">>
 	<br>''You are pursuing'' societal reverence for the idealized human form, including height, health and muscle.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSPhysicalIdealist = "unset", $arcologies[0].FSPhysicalIdealistDecoration = 20, $arcologies[0].FSPhysicalIdealistSMR = 0, $arcologies[0].FSPhysicalIdealistLaw = 0, $FSCredits += 1>><<if $assistantFSAppearance == "physical idealist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSPhysicalIdealist")>><<if $assistantFSAppearance == "physical idealist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSPhysicalIdealist" "clothesBoughtOil">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "shemale") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
@@ -933,7 +933,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSPhysicalIdealist == "unset">>
 <<if $arcologies[0].FSHedonisticDecadence != "unset">>
 	<br>''You are pursuing'' societal normalization of overindulgence and immediate gratification. Be it food, drink, sex, drugs or whatever one's desire may be.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSHedonisticDecadence = "unset", $arcologies[0].FSHedonisticDecadenceDecoration = 20, $arcologies[0].FSHedonisticDecadenceLaw = 0, $arcologies[0].FSHedonisticDecadenceLaw2 = 0, $arcologies[0].FSHedonisticDecadenceSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "hedonistic decadence">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSHedonisticDecadence")>><<if $assistantFSAppearance == "hedonistic decadence">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSHedonisticDecadence">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "imp") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>>
@@ -952,7 +952,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if $arcologies[0].FSNull == "unset">>
 <<if $arcologies[0].FSChattelReligionist != "unset">>
 	<br>''You are pursuing'' a new strain of religion that emphasizes the slaveholding portions of religious history.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSChattelReligionist = "unset", $arcologies[0].FSChattelReligionistDecoration = 20, $arcologies[0].FSChattelReligionistLaw = 0, $arcologies[0].FSChattelReligionistCreed = 0, $arcologies[0].FSChattelReligionistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "chattel religionist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSChattelReligionist")>><<if $assistantFSAppearance == "chattel religionist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSChattelReligionist" "clothesBoughtHabit">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "imp")>>
@@ -971,7 +971,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSArabianRevivalist == "unset") && ($arcologies[0].FSChineseRevivalist == "unset")>>
 <<if $arcologies[0].FSRomanRevivalist != "unset">>
 	<br>''You are pursuing'' a vision of a new Rome.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSRomanRevivalist = "unset", $arcologies[0].FSRomanRevivalistDecoration = 20, $arcologies[0].FSRomanRevivalistLaw = 0, $arcologies[0].FSRomanRevivalistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "roman revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSRomanRevivalist")>><<if $assistantFSAppearance == "roman revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSRomanRevivalist" "clothesBoughtToga">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "amazon") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
@@ -990,7 +990,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSArabianRevivalist == "unset") && ($arcologies[0].FSChineseRevivalist == "unset")>>
 <<if $arcologies[0].FSAztecRevivalist != "unset">>
 	<br>''You are pursuing'' a vision of a new Aztec Empire.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSAztecRevivalist = "unset", $arcologies[0].FSAztecRevivalistDecoration = 20, $arcologies[0].FSAztecRevivalistSMR = 0, $arcologies[0].FSAztecRevivalistLaw = 0, $FSCredits += 1>><<if $assistantFSAppearance == "aztec revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSAztecRevivalist")>><<if $assistantFSAppearance == "aztec revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSAztecRevivalist" "clothesBoughtHuipil">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "amazon") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
@@ -1009,7 +1009,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSArabianRevivalist == "unset") && ($arcologies[0].FSChineseRevivalist == "unset")>>
 <<if $arcologies[0].FSEgyptianRevivalist != "unset">>
 	<br>''You are pursuing'' a vision of Pharaoh's Egypt.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSEgyptianRevivalist = "unset", $arcologies[0].FSEgyptianRevivalistDecoration = 20, $arcologies[0].FSEgyptianRevivalistLaw = 0, $arcologies[0].FSEgyptianRevivalistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "egyptian revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSEgyptianRevivalist")>><<if $assistantFSAppearance == "egyptian revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSEgyptianRevivalist" "clothesBoughtEgypt">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "goddess") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
@@ -1028,7 +1028,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSArabianRevivalist == "unset") && ($arcologies[0].FSChineseRevivalist == "unset")>>
 <<if $arcologies[0].FSEdoRevivalist != "unset">>
 	<br>''You are pursuing'' a vision of Edo Japan.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSEdoRevivalist = "unset", $arcologies[0].FSEdoRevivalistDecoration = 20, $arcologies[0].FSEdoRevivalistLaw = 0, $arcologies[0].FSEdoRevivalistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "edo revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSEdoRevivalist")>><<if $assistantFSAppearance == "edo revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSEdoRevivalist" "clothesBoughtKimono">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "amazon") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "loli") || ($assistantAppearance == "kitsune") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
@@ -1045,7 +1045,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSChineseRevivalist == "unset")>>
 <<if $arcologies[0].FSArabianRevivalist != "unset">>
 	<br>''You are pursuing'' a vision of the Sultanate of old.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSArabianRevivalist = "unset", $arcologies[0].FSArabianRevivalistDecoration = 20, $arcologies[0].FSArabianRevivalistLaw = 0, $arcologies[0].FSArabianRevivalistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "arabian revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSArabianRevivalist")>><<if $assistantFSAppearance == "arabian revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSArabianRevivalist" "clothesBoughtHarem">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
@@ -1062,7 +1062,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 <<if ($arcologies[0].FSRomanRevivalist == "unset") && ($arcologies[0].FSAztecRevivalist == "unset") && ($arcologies[0].FSEgyptianRevivalist == "unset") && ($arcologies[0].FSEdoRevivalist == "unset") && ($arcologies[0].FSArabianRevivalist == "unset")>>
 <<if $arcologies[0].FSChineseRevivalist != "unset">>
 	<br>''You are pursuing'' a vision of ancient China.
-	//<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSChineseRevivalist = "unset", $arcologies[0].FSChineseRevivalistDecoration = 20, $arcologies[0].FSChineseRevivalistLaw = 0, $arcologies[0].FSChineseRevivalistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "chinese revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	//<<link "Abandon" "Future Society">><<run removeFS("FSChineseRevivalist")>><<if $assistantFSAppearance == "chinese revivalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<FSChangeDecoration "FSChineseRevivalist" "clothesBoughtQipao">>
 	<<if $PAPublic == 1>>
 	<<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>>
@@ -1081,7 +1081,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 	<<if $arcologies[0].FSNull != "unset">>
 		<br>''You are permitting <<if $arcologies[0].FSNull <= 25>>basic<<elseif $arcologies[0].FSNull <= 50>>considerable<<elseif $arcologies[0].FSNull <= 75>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
 		<<if $arcologies[0].FSNull <= 25>>
-			//[[Abandon|Future Society][$arcologies[0].FSNull = "unset", $arcologies[0].FSNullDecoration = 20, $arcologies[0].FSNullLaw = 0, $assistantFSAppearance = "default", $FSCredits += 1]]//
+			//[[Abandon|Future Society][removeFS("FSNull")]]//
 		<<else>>
 			//[[Withdraw|Future Society][$arcologies[0].FSNull -= 25, $FSCredits += 1]]//
 		<</if>>
@@ -1100,7 +1100,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 	<<if $arcologies[0].FSNull != "unset">>
 		<br>''You are permitting <<if $arcologies[0].FSNull <= 17>>basic<<elseif $arcologies[0].FSNull <= 34>>some<<elseif $arcologies[0].FSNull <= 51>>considerable<<elseif $arcologies[0].FSNull <= 68>>great<<elseif $arcologies[0].FSNull <= 85>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
 		<<if $arcologies[0].FSNull <= 20>>
-			//[[Abandon|Future Society][$arcologies[0].FSNull = "unset", $arcologies[0].FSNullDecoration = 20, $arcologies[0].FSNullLaw = 0, $assistantFSAppearance = "default", $FSCredits += 1]]//
+			//[[Abandon|Future Society][removeFS("FSNull")]]//
 		<<else>>
 			//[[Withdraw|Future Society][$arcologies[0].FSNull -= 17, $FSCredits += 1]]//
 		<</if>>
@@ -1119,7 +1119,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 	<<if $arcologies[0].FSNull != "unset">>
 		<br>''You are permitting <<if $arcologies[0].FSNull <= 15>>basic<<elseif $arcologies[0].FSNull <= 30>>some<<elseif $arcologies[0].FSNull <= 45>>notable<<elseif $arcologies[0].FSNull <= 60>>considerable<<elseif $arcologies[0].FSNull <= 75>>great<<elseif $arcologies[0].FSNull <= 90>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
 		<<if $arcologies[0].FSNull <= 20>>
-			//[[Abandon|Future Society][$arcologies[0].FSNull = "unset", $arcologies[0].FSNullDecoration = 20, $arcologies[0].FSNullLaw = 0, $assistantFSAppearance = "default", $FSCredits += 1]]//
+			//[[Abandon|Future Society][removeFS("FSNull")]]//
 		<<else>>
 			//[[Withdraw|Future Society][$arcologies[0].FSNull -= 15, $FSCredits += 1]]//
 		<</if>>
@@ -1138,7 +1138,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 	<<if $arcologies[0].FSNull != "unset">>
 		<br>''You are permitting <<if $arcologies[0].FSNull <= 20>>basic<<elseif $arcologies[0].FSNull <= 40>>considerable<<elseif $arcologies[0].FSNull <= 60>>great<<elseif $arcologies[0].FSNull <= 80>>advanced<<else>>absolute<</if>>'' cultural freedom in your arcology.
 		<<if $arcologies[0].FSNull <= 20>>
-			//[[Abandon|Future Society][$arcologies[0].FSNull = "unset", $arcologies[0].FSNullDecoration = 20, $arcologies[0].FSNullLaw = 0, $assistantFSAppearance = "default", $FSCredits += 1]]//
+			//[[Abandon|Future Society][removeFS("FSNull")]]//
 		<<else>>
 			//[[Withdraw|Future Society][$arcologies[0].FSNull -= 20, $FSCredits += 1]]//
 		<</if>>
diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw
index f412555376515a910cd34c59bc0abf0db9e87cb2..7e641eb893c86da1903e69e06069bce2d4317e37 100644
--- a/src/uncategorized/genericPlotEvents.tw
+++ b/src/uncategorized/genericPlotEvents.tw
@@ -50,7 +50,7 @@ The firm promptly pays @@.yellowgreen; a large compensation@@ for potentially ru
 
 It's been a good few weeks, getting settled in as owner of $arcologies[0].name. The power of being overlord of this great building and everyone in it is incredible, but so is the responsibility. It's a good thing you have ample opportunities for stress relief. You're going to need them after today. There's a nasty disturbance on a business level of the arcology. Normally, the arcology's public safety drones would suppress this kind of nonsense, but $assistantName program is suggesting that you resolve the dispute.
 <br><br>
-As you step off the elevator, you hear female shouting. Apparently one of $arcologies[0].name's few remaining strip joints has closed. It was a topless bar and strip club all in one, but the owner is packing up his things. He's explaining to a crowd of his angry former employees that he can't make ends meet. As the price of a slave whore is barely higher than that of a lap dance from a free stripper; it's not surprising. It looks like the girls are on the verge of trashing the place.
+As you step off the elevator, you hear female voices shouting. Apparently one of $arcologies[0].name's few remaining strip joints has closed. It was a topless bar and strip club all in one, but the owner is packing up his things. He's explaining to a crowd of his angry former employees that he can't make ends meet. As the price of a slave whore is barely higher than that of a lap dance from a free stripper; it's not surprising. It looks like the girls are on the verge of trashing the place.
 
 <<case "strip club aftermath">>
 
@@ -86,7 +86,7 @@ As you step off the elevator, you hear female shouting. Apparently one of $arcol
 	<<slaveCost $activeSlave>>
 	One day, you walk by the commercial space where the strip club that closed was located. It's now advertised as a massage parlor, but the real merchandise on offer is obvious. You can see a bored-looking, half-dressed masseuse rubbing a client, but the sounds of someone having hard sex are filtering out from the back room, and the pricing sheet lists more orifices than massage options.
 	<br><br>
-	As you pass, a tired-looking streetwalker walking by wearing ripped jeans and a torn top offers herself to you. $He's halfway through $his clumsy come-on before $he curses and rushes over to kneel at your feet. As $he does, $he shrieks, "You own thi<<s>> arcology! You - you offered to en<<s>>lave u<<s>> <<s>>tripper<<s>> when the old pla<<c>>e clo<<s>>ed down! Plea<<s>>e, plea<<s>>e, can I a<<cc>>ept? I'm <<s>>orry I didn't earlier. I'm <<s>>orry. I'll fucking do anything! Plea<<s>>e!"
+	As you pass, a tired-looking streetwalker walking by wearing ripped jeans and a torn top offers $himself to you. $He's halfway through $his clumsy come-on before $he curses and rushes over to kneel at your feet. As $he does, $he shrieks, "You own thi<<s>> arcology! You - you offered to en<<s>>lave u<<s>> <<s>>tripper<<s>> when the old pla<<c>>e clo<<s>>ed down! Plea<<s>>e, plea<<s>>e, can I a<<cc>>ept? I'm <<s>>orry I didn't earlier. I'm <<s>>orry. I'll fucking do anything! Plea<<s>>e!"
 	<br><br>
 	//Enslaving $him will cost <<print cashFormat($contractCost)>>. Alternatively, you could sell $him. Less costs, this will bring in <<print cashFormat($slaveCost)>>.//
 	<br><br>
@@ -118,18 +118,19 @@ As you step off the elevator, you hear female shouting. Apparently one of $arcol
 	<<set $activeSlave.clitPiercing = 1>>
 	<<set $activeSlave.hStyle = "strip">>
 	<<slaveCost $activeSlave>>
-	One day, you walk by the commercial space where the strip club that closed was located. It's now advertised as a massage parlor, and indeed, you can see a couple of competent-looking, modestly dressed masseuses seeing to clients. The only chink in the old world decorum is the pretty sign detailing pricing, which lists not only various massages but the masseuses' hands, breasts, mouths, pussies, and anuses.
+	One day, you walk by the commercial space where the strip club that closed was located. It's now advertised as a massage parlor, and indeed, you can see a couple of competent-looking, modestly dressed masseuses seeing to clients. The only chink in the old world decorum is the pretty sign detailing pricing, which lists not only various massages but the masseuses' hands, breasts, mouths,<<if $seeDicks != 100>> pussies,<</if>> and anuses.
 	<br><br>
-	As you pass, a pretty streetwalker walking by wearing an attractive club girl outfit sidles up to you. $He's halfway through $his first flirty come-on before $he recognizes you. $He gasps and <<say>>s, "You own thi<<s>> arcology! <<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, I wa<<s>> a <<s>>tripper here! Thank you <<s>>o much for helping u<<s>>. That money <<s>>et mo<<s>>t of u<<s>> up pretty well." $He hefts $his chest. "It bought me new boob<<s>>, that'<<s>> for <<s>>ure. <<S>>o, um," $he bites $his lip in indecision, "I hear -" $he hesitates and then the words come out in a rush. "I hear your girl<<s>> do really well. I've <<s>>een them, they look good. Can I come?" You arch an eyebrow and begin to ask whether $he knows what that means. "Yep," $he interrupts. "I'll be your <<s>>e<<x>> <<s>>lave."
+	As you pass, a pretty streetwalker walking by wearing an attractive club $girl outfit sidles up to you. $He's halfway through $his first flirty come-on before $he recognizes you. $He gasps and <<say>>s, "You own thi<<s>> arcology! <<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, I wa<<s>> a <<s>>tripper here! Thank you <<s>>o much for helping u<<s>>. That money <<s>>et mo<<s>>t of u<<s>> up pretty well." $He hefts $his chest. "It bought me new boob<<s>>, that'<<s>> for <<s>>ure. <<S>>o, um," $he bites $his lip in indecision, "I hear -" $he hesitates and then the words come out in a rush. "I hear your $girl<<s>> do really well. I've <<s>>een them, they look good. Can I come?" You arch an eyebrow and begin to ask whether $he knows what that means. "Yep," $he interrupts. "I'll be your <<s>>e<<x>> <<s>>lave."
 	<br><br>
 	//Enslaving $him will cost <<print cashFormat($contractCost)>>. Alternatively, you could sell $him. Less costs, this will bring in <<print cashFormat($slaveCost)>>.//
 	<br><br>
 	<<set $saleDescription = 0>>
 	<<include "Long Slave Description">>
 <<else>>
-	One day, you walk by the commercial space where the strip club that closed was located. The girls you set up in cheap housing tried to run the place as a worker-owned strip bar for a while, but as you suspected, they were obliged to start whoring in short order. With the price of sex driven so low by slave competition, there's hardly any profit in bodies patrons can't even touch. The girls here might be prostitutes now, but they're still free and they're surviving.
+	<<setNonlocalPronouns $seeDicks>>
+	One day, you walk by the commercial space where the strip club that closed was located. The <<= _girlU>>s you set up in cheap housing tried to run the place as a worker-owned strip bar for a while, but as you suspected, they were obliged to start whoring in short order. With the price of sex driven so low by slave competition, there's hardly any profit in bodies patrons can't even touch. The <<= _girlU>>s here might be prostitutes now, but they're still free and they're surviving.
 	<br><br>
-	As you pass, a pretty bottle blonde comes running out. "Hey," she calls, "you're the owner! You set us up with this place!" You ask her how they're doing. "Well," she says, smiling ruefully, "turning tricks ain't easy, you know. But we get by. Those rooms you set up for us are nice and cheap, even if we're packed in there like sorority girls." She winks. "Hey, I don't suppose you've fucked a free woman lately? I'll give you an Arcology Tour, on the house. Least I can do."
+	As you pass, a pretty bottle blonde comes running out. "Hey," _heU calls, "you're the owner! You set us up with this place!" You ask _himU how they're doing. "Well," _heU says, smiling ruefully, "turning tricks ain't easy, you know. But we get by. Those rooms you set up for us are nice and cheap, even if we're packed in there like <<if _heU == "he">>fraternity boys<<else>>sorority girls<</if>>." _HeU winks. "Hey, I don't suppose you've fucked a free _womanU lately? I'll give you an Arcology Tour, on the house. Least I can do."
 <</if>>
 
 <<case "militia">>
@@ -163,9 +164,7 @@ The crowd of nude slaves led up to the lawn and chained to rings along one edge
 	<<set _trapped.push("housewives")>>
 	<<if $seePreg != 0>>
 		<<set _trapped.push("maternity")>>
-		<<if $continent == "Africa">>
-			<<set _trapped.push("seizedMission")>>
-		<</if>>
+		<<set _trapped.push("seizedMission")>>
 	<</if>>
 	<<set _trapped.push("volleyballTeam")>>
 <</if>>
@@ -238,13 +237,12 @@ You watch on the feeds from your VTOL craft as it settles <<if $PAidTarget == "v
 <<elseif $PAidTarget == "seizedMission">>
 	building the raped missionaries
 <</if>>
-you promised to rescue<<if $PAidTarget == "seizedMission">>  where holed up in<</if>>. Its side doors retract, allowing the escapees to hustle aboard with their bundles of personal possessions. Once they're on board and strapped into their seats, the turbofans howl and the craft peels smoothly off the roof, the hot jet wash setting it alight. Once it transitions fully into level flight, the true plan goes into operation. At a carefully selected moment, injectors concealed within each seat lance into the passengers' buttocks, knocking them out. It works flawlessly, the drugs precisely calibrated to each body based on the weight added to the VTOL as each climbed aboard. This avoids the potential for over- or under-dosage present when using gas or darts to subdue groups. In perfect unison, the passengers slump against the harnesses holding them against the seats.
+you promised to rescue<<if $PAidTarget == "seizedMission">> were holed up in<</if>>. Its side doors retract, allowing the escapees to hustle aboard with their bundles of personal possessions. Once they're on board and strapped into their seats, the turbofans howl and the craft peels smoothly off the roof, the hot jet wash setting it alight. Once it transitions fully into level flight, the true plan goes into operation. At a carefully selected moment, injectors concealed within each seat lance into the passengers' buttocks, knocking them out. It works flawlessly, the drugs precisely calibrated to each body based on the weight added to the VTOL as each climbed aboard. This avoids the potential for over- or under-dosage present when using gas or darts to subdue groups. In perfect unison, the passengers slump against the harnesses holding them against the seats.
 <br><br>
 When the aircraft lands at your penthouse pad, the would-be escapees are still unconscious. This makes putting them through enslavement physically laborious, though it does cut down on the usual whining; fortunately, you reserved the credits necessary to obscure their questionably legitimate enslavement. By the time they awake, they'll be indistinguishable from any other new slave in the arcology. The possibility remains, however that rumor of the incident will leak out. Your VTOL bird's entry and exit from the capital city was likely noticed and remarked upon.
 <br><br>
 <<set _newSlaves = []>>
 <<if $PAidTarget == "convent">>
-	In any case, you've enslaved a fine group. The leader is on the older side, but not unattractive. Her girls are younger, and probably have all sorts of delightful repressed tendencies to be manipulated.
 	<<set $activeSlaveOneTimeMinAge = 30>>
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $oneTimeDisableDisability = 1>>
@@ -272,6 +270,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 	<<set $activeSlave.sexualFlaw = "repressed">>
 	<<set $activeSlave.sexualQuirk = "perverted">>
 	<<set _newSlaves.push($activeSlave)>>
+	In any case, you've enslaved a fine group. The leader is on the older side, but not unattractive. $His girls are younger, and probably have all sorts of delightful repressed tendencies to be manipulated.
 	<<for $i = 0; $i < 3; $i++>>
 		<<set $activeSlaveOneTimeMinAge = 18>>
 		<<set $activeSlaveOneTimeMaxAge = 24>>
@@ -298,7 +297,6 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 		<<set _newSlaves.push($activeSlave)>>
 	<</for>>
 <<elseif $PAidTarget == "school">>
-	In any case, you've enslaved a fine group. The principal is on the older side, and seems to have paid unusually close attention to her appearance, for the female principal of a girls' school. And for whatever reason, the school's uniform skirt seems to have been rather short in back.
 	<<set $activeSlaveOneTimeMinAge = 26>>
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $oneTimeDisableDisability = 1>>
@@ -327,12 +325,13 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 	<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy", "hates men", "hates men", "liberated")>>
 	<<set $activeSlave.sexualFlaw = "shamefast">>
 	<<set _newSlaves.push($activeSlave)>>
+	In any case, you've enslaved a fine group. The principal is on the older side, and seems to have paid unusually close attention to $his appearance, for the female principal of a girls' school. And for whatever reason, the school's uniform skirt seems to have been rather short in back.
 	<<for $i = 0; $i < 3; $i++>>
 		<<set $activeSlaveOneTimeMaxAge = 18>>
 		<<set $oneTimeDisableDisability = 1>>
 		<<include "Generate XX Slave">>
 		<<set $activeSlave.origin = "She was a student at a girls' school whose remnants you enslaved.">>
-	<<set $activeSlave.career = "a student">>
+		<<set $activeSlave.career = "a student">>
 		<<set $activeSlave.devotion = random(-90,-75)>>
 		<<set $activeSlave.trust = -20>>
 		<<set $activeSlave.health = random(-10,10)>>
@@ -353,7 +352,6 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 		<<set _newSlaves.push($activeSlave)>>
 	<</for>>
 <<elseif $PAidTarget == "maternity">>
-	In any case, you've enslaved a fine group. The expectant mothers vary widely; the only thing they have in common is their gravid bellies. None of them is in really serious condition, either, and they should bear the transition to slave life reasonably well despite their pregnancies.
 	<<for $i = 0; $i < 4; $i++>>
 		<<if $pedo_mode == 1>>
 			<<set $activeSlaveOneTimeMinAge = $fertilityAge>>
@@ -380,6 +378,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 		<<set $activeSlave.nipples = either("cute", "puffy", "partially inverted", "inverted")>>
 		<<set _newSlaves.push($activeSlave)>>
 	<</for>>
+	In any case, you've enslaved a fine group. The expectant mothers vary widely; the only thing they have in common is their gravid bellies. None of them are in really serious condition, either, and they should bear the transition to slave life reasonably well despite their pregnancies.
 <<elseif $PAidTarget == "gradeSchool">>
 	In any case, you've enslaved a fine group. The girls are all within a similar age range, young, and healthy. Their youth and vigor should make them quite popular.
 	<<for $i = 0; $i < 4; $i++>>
@@ -1052,14 +1051,14 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your
 <<else>>
 	<<link "Take an Arcology Tour">>
 		<<replace "#result">>
-		The cubicle she takes you back into is small, but clean and well-kept. She gives you a kiss on the cheek. "That's not part of the Arcology Tour. Sorry. Here's the start of the real tour." <<if $PC.dick == 1>>She sucks you to full mast while shucking off her skimpy clothing<<if $PC.vagina == 1>>, giggling appreciatively at your pussy and lavishing attention on it with her hands<</if>>. Then she turns around and slides you into her <<if $seeDicks == 100>>ass<</if>>pussy with the ease of long practice. After a good long standing fuck, she begs you to "finish the tour" in her ass and then "pay the tour guide" by coming in her mouth.<<else>>She giggles. "Tour's a little different for a lady like you, Ma'am. Here," she says, and starts to make out with you, pressing you back down onto a bench. She lavishes expert oral attention on your pussy in a series of clever positions that offer every part of her body to you in turn for you to grope, squeeze, and penetrate with your fingers.<</if>> Afterward, as she's hurrying back into her clothes, she says, "We've got the money you paid to set those rooms up, @@.yellowgreen;here it is.@@ And we're doing pretty good, so we could use a little more working space. We'd like the vacant space next door. We'll furnish it, if you'll let us have it?" @@.green;$arcologies[0].name's prosperity has increased.@@
+		The cubicle _heU takes you back into is small, but clean and well-kept. _HeU gives you a kiss on the cheek. "That's not part of the Arcology Tour. Sorry. Here's the start of the real tour." <<if $PC.dick == 1>>_HeU sucks you to full mast while shucking off _hisU skimpy clothing<<if $PC.vagina == 1>>, giggling appreciatively at your pussy and lavishing attention on it with _hisU hands<</if>>. Then _heU turns around and slides you into _hisU <<if _heU == "he">>ass<<else>>pussy<</if>> with the ease of long practice. After a good long standing fuck, _heU begs you to "finish the tour" in _hisU ass and then "pay the tour guide" by coming in _hisU mouth.<<else>>_HeU giggles. "Tour's a little different for a lady like you, Ma'am. Here," _heU says, and starts to make out with you, pressing you back down onto a bench. _HeU lavishes expert oral attention on your pussy in a series of clever positions that offer every part of _hisU body to you in turn for you to grope, squeeze, and penetrate with your fingers.<</if>> Afterward, as _heU's hurrying back into _hisU clothes, _heU says, "We've got the money you paid to set those rooms up, @@.yellowgreen;here it is.@@ And we're doing pretty good, so we could use a little more working space. We'd like the vacant space next door. We'll furnish it, if you'll let us have it?" @@.green;$arcologies[0].name's prosperity has increased.@@
 		<<set $arcologies[0].prosperity += 2>>
 		<<set $cash += 500>>
 		<</replace>>
 	<</link>>
 	<br><<link "Politely decline">>
 		<<replace "#result">>
-		"Aw," she says, "you're no fun. Well anyway, we've got the money you paid to set those rooms up, @@.yellowgreen;here it is.@@ And we're doing pretty good, so we could use a little more working space. We'd like the vacant space next door. We'll furnish it, if you'll let us have it?" @@.green;$arcologies[0].name's prosperity has increased.@@
+		"Aw," _heU says, "you're no fun. Well anyway, we've got the money you paid to set those rooms up, @@.yellowgreen;here it is.@@ And we're doing pretty good, so we could use a little more working space. We'd like the vacant space next door. We'll furnish it, if you'll let us have it?" @@.green;$arcologies[0].name's prosperity has increased.@@
 		<<set $arcologies[0].prosperity += 2>>
 		<<set $cash += 500>>
 		<</replace>>
@@ -1119,7 +1118,6 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your
 <<set $PShoot = 0>>
 <<link "Hit the muscular slave about to successfully cross the lawn">>
 	<<replace "#result">>
-	You decide to stop the athletic slave girl about to win her freedom, and place your taser slug in her muscular buttock. She goes stiff and skids across the grass with a growl. Your taser slug is linked to $assistantName, who hits her again whenever she tries to continue running. Fury glints from her eyes, but she apparently knows how to pick her battles. By the time you approach her, she's already bent over, presenting herself, and from the oily sheen on her privates, it looks like she even managed to get some lube somewhere to make the experience a little easier. It is a strange thing, respecting a slave, but she rises even higher in your estimation as you fuck her on the grass. She does her best to please you, having clearly decided to do her best given her situation. She's sexually inexpert, but clearly smart enough to know when to submit.
 	<<set $activeSlaveOneTimeMinAge = 18>>
 	<<set $activeSlaveOneTimeMaxAge = 28>>
 	<<set $one_time_age_overrides_pedo_mode = 1>>
@@ -1150,13 +1148,13 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your
 	<<set $activeSlave.fetish = "none">>
 	<<set $activeSlave.behavioralFlaw = "arrogant">>
 	<<set $activeSlave.sexualFlaw = "idealistic">>
+	You decide to stop the athletic slave $girl about to win $his freedom, and place your taser slug in $his muscular buttock. $He goes stiff and skids across the grass with a growl. Your taser slug is linked to $assistantName, who hits $him again whenever $he tries to continue running. Fury glints from her eyes, but $he apparently knows how to pick her battles. By the time you approach $him, $he's already bent over, presenting $himself, and from the oily sheen on $his privates, it looks like $he even managed to get some lube somewhere to make the experience a little easier. It is a strange thing, respecting a slave, but $he rises even higher in your estimation as you fuck her on the grass. $He does $his best to please you, having clearly decided to do her best given her situation. $He's sexually inexpert, but clearly smart enough to know when to submit.
 	<<run newSlave($activeSlave)>> /* skip New Slave Intro */
 	<</replace>>
 <</link>>
 <<if $minimumSlaveAge <= 8>>
-<br><<link "Hit the loli with the unnaturally wide hips struggling along">>
+<br><<link "Hit the young slave with the unnaturally wide hips struggling along">>
 	<<replace "#result">>
-	You decide to stop the wide-hipped loli struggling to run, and easily place your taser slug in her broad rear. She goes stiff and falls flat on her face. Your taser slug is linked to $assistantName, but since the girl can't manage to flip over, let alone stand, shocking her more is unneeded. Fury glints from her eyes, but she fully realizes it's over for her. By the time you approach her, she's hoisted her overly wide rear upwards, presenting herself, moisture beginning to ooze from her virgin cunt. It looks like she was being groomed to be a breeding slave, and she seems to understand her role quite well, judging by the way she rocks her hips back and forth for you. You thoroughly enjoy her gratifyingly tight pussy, which is so nice that you confine yourself entirely to it despite the appealing sight of her virgin butthole.
 	<<set $activeSlaveOneTimeMinAge = 8>>
 	<<set $activeSlaveOneTimeMaxAge = 8>>
 	<<set $one_time_age_overrides_pedo_mode = 1>>
@@ -1196,13 +1194,14 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your
 	<<set $activeSlave.fetishStrength = 60>>
 	<<set $activeSlave.behavioralFlaw = "anorexic">>
 	<<set $activeSlave.sexualFlaw = "idealistic">>
+	You decide to stop the wide-hipped $loli struggling to run, and easily place your taser slug in $his broad rear. $He goes stiff and falls flat on $his face. Your taser slug is linked to $assistantName, but since the $girl can't manage to flip over, let alone stand, shocking $him more is unneeded. Fury glints from $his eyes, but $he fully realizes it's over for $him. By the time you approach $him, $he's hoisted $his overly wide rear upwards, presenting herself, moisture beginning to ooze from $his virgin cunt. It looks like $he was being groomed to be a breeding slave, and $he seems to understand $his role quite well, judging by the way $he rocks $his hips back and forth for you. You thoroughly enjoy $his gratifyingly tight pussy, which is so nice that you confine yourself entirely to it despite the appealing sight of $his virgin butthole.
 	<<run newSlave($activeSlave)>> /* skip New Slave Intro */
 	<</replace>>
 <</link>>
 <</if>>
 <br><<link "Hit the plush older slave lagging behind">>
+	<<setNonlocalPronouns $seeDicks>>
 	<<replace "#result">>
-	You decide to drop the luscious specimen in the rear, and place your taser slug in her huge buttock. She goes stiff and slumps to the grass in defeat. Your taser slug is linked to $assistantName, who hits her again whenever she tries to rise. Meanwhile, an athletic slave has successfully crossed the lawn, and is sobbing with joy as her manumission forms are completed. Disbelief and anger fills your supine prize's eyes, and she's spitting with rage by the time you reach her. It's a comical sight, since her gyrations only serve to display her magnificent breasts and broad butt. She must have been recently enslaved, and is new enough to slavery that you are obliged to tase her twice more before she presents her holes. The impression of newness to slavery despite her age is reinforced by her gratifyingly tight pussy, which is so nice that you confine yourself entirely to it despite the appealing sight of what is almost certainly a virgin butthole.
 	<<set $activeSlaveOneTimeMinAge = 36>>
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $one_time_age_overrides_pedo_mode = 1>>
@@ -1234,12 +1233,13 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your
 	<<set $activeSlave.fetish = "none">>
 	<<set $activeSlave.behavioralFlaw = "bitchy">>
 	<<set $activeSlave.sexualFlaw = "hates anal">>
+	You decide to drop the luscious specimen in the rear, and place your taser slug in $his huge buttock. $He goes stiff and slumps to the grass in defeat. Your taser slug is linked to $assistantName, who hits $him again whenever $he tries to rise. Meanwhile, an athletic slave has successfully crossed the lawn, and is sobbing with joy as _hisU manumission forms are completed. Disbelief and anger fills your supine prize's eyes, and $he's spitting with rage by the time you reach $him. It's a comical sight, since $his gyrations only serve to display $his magnificent breasts and broad butt. $He must have been recently enslaved, and is new enough to slavery that you are obliged to tase $him twice more before $he presents $his holes. The impression of newness to slavery despite $his age is reinforced by $his gratifyingly tight pussy, which is so nice that you confine yourself entirely to it despite the appealing sight of what is almost certainly a virgin butthole.
 	<<run newSlave($activeSlave)>> /* skip New Slave Intro */
 	<</replace>>
 <</link>>
 <br><<link "Hit the slave with the tits, pussy and impressive dick">>
+	<<setNonlocalPronouns $seeDicks>>
 	<<replace "#result">>
-	You decide to drop the really rare specimen, and place your taser slug in her leg. She goes stiff and slumps to the grass, squealing with pain since the taser robbed her ability to break her fall, leading her to land on nearly a foot of flaccid cock. Your taser slug is linked to $assistantName, who hits her again whenever she tries to rise. Meanwhile, an athletic slave has successfully crossed the lawn, and is sobbing with joy as her manumission forms are completed. Apathy fills your supine prize's eyes, and she simply lies face down and quiescent. She obeys orders to roll over so you can see what you've gotten, however. She's clearly a work of long and careful hormonal treatment. She has no implants, but sports big breasts, feminine hips, a nice butt, plush lips, and a huge dick. When you fuck her pussy and then her anus, she even gets a massive erection, showing that she isn't even on hormone treatment to maintain this unusual set of attributes.
 	<<set $activeSlaveOneTimeMinAge = 18>>
 	<<set $activeSlaveOneTimeMaxAge = 24>>
 	<<set $one_time_age_overrides_pedo_mode = 1>>
@@ -1278,6 +1278,7 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your
 	<<set $activeSlave.fetish = "none">>
 	<<set $activeSlave.sexualFlaw = "none">>
 	<<set $activeSlave.behavioralFlaw = "odd">>
+	You decide to drop the really rare specimen, and place your taser slug in $his leg. $He goes stiff and slumps to the grass, squealing with pain since the taser robbed $his ability to break $his fall, leading $him to land on nearly a foot of flaccid cock. Your taser slug is linked to $assistantName, who hits $him again whenever $he tries to rise. Meanwhile, an athletic slave has successfully crossed the lawn, and is sobbing with joy as _hisU manumission forms are completed. Apathy fills your supine prize's eyes, and $he simply lies face down and quiescent. $He obeys orders to roll over so you can see what you've gotten, however. $He's clearly a work of long and careful hormonal treatment. $He has no implants, but sports big breasts, feminine hips, a nice butt, plush lips, and a huge dick. When you fuck $his pussy and then $his anus, $he even gets a massive erection, showing that $he isn't even on hormone treatment to maintain this unusual set of attributes.
 	<<run newSlave($activeSlave)>> /* skip New Slave Intro */
 	<</replace>>
 <</link>>
diff --git a/src/uncategorized/matchmaking.tw b/src/uncategorized/matchmaking.tw
index 34a934828f5f427e181e605b68fdec5558beb148..d5577bef6b8f93f1b51fa0ef4cef3b1f8875bff7 100644
--- a/src/uncategorized/matchmaking.tw
+++ b/src/uncategorized/matchmaking.tw
@@ -6,6 +6,8 @@
 
 <<set $desc = SlaveTitle($eventSlave)>>
 <<set _belly = bellyAdjective($eventSlave)>>
+<<setLocalPronouns $eventSlave>>
+<<setLocalPronouns $subSlave 2>>
 
 /* 000-250-006 */
 <<if $seeImages == 1>>
@@ -15,11 +17,11 @@
 <</if>>
 /* 000-250-006 */
 
-You order $eventSlave.slaveName to come to your office. The <<if $eventSlave.relationship == -2>>worshipful<<else>>slutty<</if>> $desc arrives promptly, greets you correctly, and waits <<if $eventSlave.relationship == -2>>adoringly for a command<<else>>eagerly for you to fuck her<</if>>. You consider the situation carefully.
+You order $eventSlave.slaveName to come to your office. The <<if $eventSlave.relationship == -2>>worshipful<<else>>slutty<</if>> $desc arrives promptly, greets you correctly, and waits <<if $eventSlave.relationship == -2>>adoringly for a command<<else>>eagerly for you to fuck $him<</if>>. You consider the situation carefully.
 <<if $eventSlave.relationship == -2>>
-	She's emotionally bonded to you, and loves you with all her heart. She would probably do anything you command and love you all the more for it. If you were to decide that you were tired of her adoration, you could probably set her up with another similarly broken slave. If you ordered them to love each other like they love you, they'd obey.
+	$He's emotionally bonded to you, and loves you with all $his heart. $He would probably do anything you command and love you all the more for it. If you were to decide that you were tired of $his adoration, you could probably set $him up with another similarly broken slave. If you ordered them to love each other like they love you, they'd obey.
 <<else>>
-	She's an emotional slut, and worships you and values herself primarily in terms of sex. She's such a perfect sex slave that she'd probably fuck anyone or anything you told her to, and love you all the more for giving her the chance. If you were to decide that even a sex slave like her needs a little more structure than constant omnisexual lust, you could probably set her up with another universal slut.
+	$He's an emotional slut, and worships you and values $himself primarily in terms of sex. $He's such a perfect sex slave that $he'd probably fuck anyone or anything you told $him to, and love you all the more for giving $him the chance. If you were to decide that even a sex slave like $him needs a little more structure than constant omnisexual lust, you could probably set $him up with another universal slut.
 <</if>>
 Their relationship would probably be somewhat artificial at first, and they'd have to struggle at it, but after a period of adjustment, you'd have two worshipful slaves again, except that they'd be together. It'd definitely help if they had compatible behavioral quirks and sexual fetishes.
 <br><br>
@@ -30,20 +32,20 @@ Their relationship would probably be somewhat artificial at first, and they'd ha
 <<if ($MixedMarriage == 1)>>
 <<if $eventSlave.relationship == -2>>
 <<if ($weddingPlanned != 0)>>
-You could marry her yourself, but that would have to wait, since you already have a wedding planned this week.
+You could marry $him yourself, but that would have to wait, since you already have a wedding planned this week.
 <<else>>
-Of course, you could marry her yourself, since you've decide to enable marriage between slaves and owners in your domain. Marriage with her wouldn't be binding, of course, since she'd still be a slave. She'd probably be pleased, however.
+Of course, you could marry $him yourself, since you've decided to enable marriage between slaves and owners in your domain. Marriage with $him wouldn't be binding, of course, since $he'd still be a slave. $He'd probably be pleased, however.
 
-<<link "Marry her">>
+<<link "Marry $him">>
 <<replace "#result">>
 
 <<run Enunciate($eventSlave)>>
 
 <<set $weddingSlaveID = $eventSlave.ID>>
 
-You tell $eventSlave.slaveName that you're going to marry her. (A proposal, of course, would be inappropriate, even in so enlightened a place as your arcology.) You're not exactly lacking in ways to make <<if $eventSlave.actualAge > 30>>women<<else>>girls<</if>> burst into tears, but this one is unusually effective. When she's gotten herself under control again, <<if $eventSlave.amp == 1>>looking somewhat embarrassed that she can't wipe her own tears<<else>>distractedly cuffing away her tears<</if>> and consciously breathing deeply,
+You tell $eventSlave.slaveName that you're going to marry $him. (A proposal, of course, would be inappropriate, even in so enlightened a place as your arcology.) You're not exactly lacking in ways to make <<if $eventSlave.actualAge > 30>>$women<<else>><<= $girl>>s<</if>> burst into tears, but this one is unusually effective. When $he's gotten $himself under control again, <<if $eventSlave.amp == 1>>looking somewhat embarrassed that $he can't wipe $his own tears<<else>>distractedly cuffing away $his tears<</if>> and consciously breathing deeply,
 <<if canTalk($eventSlave)>>
-	she says, "Thank you, <<Master>>. I am going to do my be<<s>>t to be a
+	$he says, "Thank you, <<Master>>. I am going to do my be<<s>>t to be a
 	<<if ($eventSlave.fetishKnown == 1) && ($eventSlave.fetishStrength > 60)>>
 		<<if ($eventSlave.fetish == "submissive")>>
 		perfect <<s>>ubmi<<ss>>ive wife to you,
@@ -69,13 +71,13 @@ You tell $eventSlave.slaveName that you're going to marry her. (A proposal, of c
 	<<else>>
 		good wife,
 	<</if>>
-	<<Master>>. Oh, thank you, <<Master>>," she blubbers, and starts crying again.
+	<<Master>>. Oh, thank you, <<Master>>," $he blubbers, and starts crying again.
 <<elseif $eventSlave.amp != 1>>
-	she shakily signs her thanks twice in a row before breaking down again.
+	$he shakily signs $his thanks twice in a row before breaking down again.
 <<else>>
-	she painstakingly mouths her thanks, since she cannot speak or use hands to sign.
+	$he painstakingly mouths $his thanks, since $he cannot speak or use hands to sign.
 <</if>>
-Despite her devotion and trust, she is still a slave, and probably knows that her position could always change. This brings her one step closer to true permanence, and she knows it.
+Despite $his devotion and trust, $he is still a slave, and probably knows that $his position could always change. This brings $him one step closer to true permanence, and $he knows it.
 <br><br>
 <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> prompts you for wedding
 <<if $assistant == 0>>
@@ -124,7 +126,7 @@ Despite her devotion and trust, she is still a slave, and probably knows that he
 <</if>>
 
 <span id="result2">
-<br><<link "Just redesignate her as your slave wife">>
+<br><<link "Just redesignate $him as your slave wife">>
 	<<replace "#result2">>
 	You order $assistantName to simply redesignate $eventSlave.slaveName as your slave wife.
 	<<if $assistant == 0>>
@@ -172,10 +174,10 @@ Despite her devotion and trust, she is still a slave, and probably knows that he
 	<<set $eventSlave.relationship = -3>>
 	<<if $PC.surname>>
 		<br><br><span id="surnaming">
-		<<link "Give her your surname">>
+		<<link "Give $him your surname">>
 			<<replace "#surnaming">>
 				<<set $eventSlave.slaveSurname = $PC.surname, $eventSlave.devotion += 5, $eventSlave.trust += 5>>
-				You also command $assistantName to rename your new slave wife $eventSlave.slaveName $eventSlave.slaveSurname. The new Mrs. $eventSlave.slaveSurname hears this, of course, and breaks down again. Being brusquely redesignated as your slave wife was such a sterile experience that she wasn't sure it was real, and hearing that she's to take your surname @@.mediumaquamarine;reassures her@@ that it is. Not to mention, she might be a $desc, but she's still a girl, and hearing that she wouldn't get a decent wedding did disappoint her, but this makes up for it. You might not be all that expressive, but @@.hotpink;she's your wife,@@ and that's what matters to her.
+				You also command $assistantName to rename your new slave wife $eventSlave.slaveName $eventSlave.slaveSurname. The new Mrs. $eventSlave.slaveSurname hears this, of course, and breaks down again. Being brusquely redesignated as your slave wife was such a sterile experience that $he wasn't sure it was real, and hearing that $he's to take your surname @@.mediumaquamarine;reassures $him@@ that it is. Not to mention, $he might be a $desc, but $he's still a $girl, and hearing that $he wouldn't get a decent wedding did disappoint $him, but this makes up for it. You might not be all that expressive, but @@.hotpink;$he's your wife,@@ and that's what matters to $him.
 				<<set $activeSlave = $eventSlave>>
 			<</replace>>
 		<</link>>
@@ -184,75 +186,75 @@ Despite her devotion and trust, she is still a slave, and probably knows that he
 	<<set $activeSlave = $eventSlave>>
 	<</replace>>
 <</link>>
-<br><<link "Have your assistant marry her to you">>
+<br><<link "Have your assistant marry $him to you">>
 	<<replace "#result2">>
-	You order $eventSlave.slaveName to go change into bridal lingerie. She hurries off, still crying. When she returns, she's wearing
+	You order $eventSlave.slaveName to go change into bridal lingerie. $He hurries off, still crying. When $he returns, $he's wearing
 	<<if ($eventSlave.vagina == 0)>>
-		white, since she's a virgin.
+		white, since $he's a virgin.
 	<<elseif ($eventSlave.pregKnown == 1)>>
-		light pink, since she is pregnant.
+		light pink, since $he is pregnant.
 	<<elseif ($eventSlave.vagina < 0) && ($eventSlave.anus == 0)>>
-		white, since she's an anal virgin.
+		white, since $he's an anal virgin.
 	<<elseif ($eventSlave.vagina < 0) && ($eventSlave.boobs > 500)>>
-		electric blue, since she's a shemale.
+		electric blue, since $he's a shemale.
 	<<elseif ($eventSlave.vagina < 0)>>
-		pale blue, since she's a sissy slave.
+		pale blue, since $he's a sissy slave.
 	<<elseif ($eventSlave.dick > 0)>>
-		hot pink, since she's a futa slave.
+		hot pink, since $he's a futa slave.
 	<<else>>
-		light pink, since she's an experienced sex slave.
+		light pink, since $he's an experienced sex slave.
 	<</if>>
-	A flimsy veil covers her head and shoulders.
+	A flimsy veil covers $his head and shoulders.
 	<<if ($eventSlave.boobs > 4000)>>
-		On such short notice, no bridal bra for boobs of her size was available, so she's topless. Not a tragedy.
+		On such short notice, no bridal bra for boobs of $his size was available, so $he's topless. Not a tragedy.
 	<<elseif ($eventSlave.boobs > 1200)>>
-		Her lacy bridal bra just barely restrains her huge boobs, leaving the tops of her areolae visible.
+		$His lacy bridal bra just barely restrains $his huge boobs, leaving the tops of $his areolae visible.
 	<<elseif ($eventSlave.boobs > 400)>>
-		Her lacy bridal bra flatters her pretty breasts.
+		$His lacy bridal bra flatters $his pretty breasts.
 	<<else>>
-		Her lacy bridal bra flatters her pretty chest.
+		$His lacy bridal bra flatters $his pretty chest.
 	<</if>>
 	<<if $eventSlave.bellyPreg >= 600000>>
-		Her expansive, squirming pregnant belly makes her bridal wear particularly obscene.
+		$His expansive, squirming pregnant belly makes $his bridal wear particularly obscene.
 	<<elseif ($eventSlave.bellyPreg >= 1500)>>
-		Her _belly pregnant belly protrudes out the front of her bridal wear.
+		$His _belly pregnant belly protrudes out the front of $his bridal wear.
 	<<elseif ($eventSlave.bellyImplant >= 1500)>>
-		Her _belly <<print $eventSlave.bellyImplant>>cc belly implant protrudes her middle out the front of her bridal wear.
+		$His _belly <<print $eventSlave.bellyImplant>>cc belly implant protrudes $His middle out the front of $his bridal wear.
 	<<elseif ($eventSlave.bellyFluid >= 10000)>>
-		Her hugely bloated, <<print $eventSlave.inflationType>>-filled belly protrudes out the front of her bridal wear.
+		$His hugely bloated, <<print $eventSlave.inflationType>>-filled belly protrudes out the front of $his bridal wear.
 	<<elseif ($eventSlave.bellyFluid >= 5000)>>
-		Her bloated, <<print $eventSlave.inflationType>>-stuffed belly protrudes out the front of her bridal wear.
+		$His bloated, <<print $eventSlave.inflationType>>-stuffed belly protrudes out the front of $his bridal wear.
 	<<elseif ($eventSlave.bellyFluid >= 1500)>>
-		Her distended, <<print $eventSlave.inflationType>>-belly protrudes out the front of her bridal wear.
+		$His distended, <<print $eventSlave.inflationType>>-belly protrudes out the front of $his bridal wear.
 	<</if>>
 	<<if $eventSlave.dickAccessory == ("chastity") || $eventSlave.dickAccessory == ("combined chastity")>>
-		Her slave dick is hidden by its chastity cage.
+		$His slave dick is hidden by its chastity cage.
 	<<elseif canAchieveErection($eventSlave)>>
 		<<if ($eventSlave.dick > 4) && ($eventSlave.belly >= 5000)>>
-		She's hugely erect, with her lacy g-string only serving to hold her dick agonizingly pressed against the bottom of her _belly <<if $eventSlave.bellyPreg >= 3000>>pregnant <</if>>belly.
+		$He's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if $eventSlave.bellyPreg >= 3000>>pregnant <</if>>belly.
 		<<elseif $eventSlave.dick > 4>>
-		She's hugely erect, with her lacy g-string only serving to hold her dick upright along her belly.
+		$He's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly.
 		<<else>>
-		Her erection tents the front of her lacy g-string.
+		$His erection tents the front of $his lacy g-string.
 		<</if>>
 	<<elseif ($eventSlave.dick > 0)>>
 		<<if $eventSlave.dick > 10>>
-		Her huge soft cock is allowed to dangle freely as no g-string could hope to contain it.
+		$His huge soft cock is allowed to dangle freely as no g-string could hope to contain it.
 		<<elseif $eventSlave.dick > 4>>
-		Her big soft cock forms a lewd mass, stuffed into her lacy g-string.
+		$His big soft cock forms a lewd mass, stuffed into $his lacy g-string.
 		<<else>>
-		Her lacy g-string perfectly conceals her soft dick.
+		$His lacy g-string perfectly conceals $his soft dick.
 		<</if>>
 	<<else>>
 		<<if $eventSlave.clit > 1>>
-		Her huge clit is quite hard, making her shift uncomfortably as her lacy g-string stimulates it.
+		$His huge clit is quite hard, making $him shift uncomfortably as $his lacy g-string stimulates it.
 		<<else>>
-		Her lacy g-string is starting to look a bit moist in front.
+		$His lacy g-string is starting to look a bit moist in front.
 		<</if>>
 	<</if>>
-	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> marries her to you in a brief ceremony adapted for slaves and their owners. You place a simple steel ring on her finger; she does not reciprocate, since this marriage does not bind you.
+	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> marries $him to you in a brief ceremony adapted for slaves and their owners. You place a simple steel ring on $his finger; $he does not reciprocate, since this marriage does not bind you.
 	<<if $assistant == 0>>
-		"The marriage protocol now requires you to <<if $PC.dick == 1>>fellate<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>," $assistantName orders her, and she hurries to obey.
+		"The marriage protocol now requires you to <<if $PC.dick == 1>>fellate<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>," $assistantName orders $him, and $he hurries to obey.
 	<<else>>
 		<<if $assistantAppearance == "monstergirl">>
 			"To consecrate the ceremony," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat <<if $PC.title == 1>>his<<else>>her<</if>> pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar begins to play with her dicks.
@@ -323,11 +325,11 @@ Despite her devotion and trust, she is still a slave, and probably knows that he
 	<<set $eventSlave.relationship = -3>>
 	<<if $PC.surname>>
 		<br><br><span id="surnaming">
-		<<link "Give her your surname">>
+		<<link "Give $him your surname">>
 			<<replace "#surnaming">>
 				<<set $eventSlave.slaveSurname = $PC.surname, $eventSlave.devotion += 5, $eventSlave.trust += 5>>
-				Before you get too distracted, you tell your lovely new wife that she's now to be known as $eventSlave.slaveName $eventSlave.slaveSurname. It would be an understatement to say she's delighted. She's a good $desc, but even she has to retain a kernel of doubt about whether a marriage between an owner and a piece of property is really worth much. This @@.mediumaquamarine;reassures her@@ that it is. Her special day probably wasn't exactly like she might once have imagined it, but she obviously thinks it's been @@.hotpink;very nice,@@ all things considered.
-				<<if canTalk($eventSlave)>>"$eventSlave.slaveName $eventSlave.slaveSurname," she murmurs to herself occasionally, smiling.<</if>>
+				Before you get too distracted, you tell your lovely new wife that $he's now to be known as $eventSlave.slaveName $eventSlave.slaveSurname. It would be an understatement to say $he's delighted. $He's a good $desc, but even $he has to retain a kernel of doubt about whether a marriage between an owner and a piece of property is really worth much. This @@.mediumaquamarine;reassures $him@@ that it is. $His special day probably wasn't exactly like $he might once have imagined it, but $he obviously thinks it's been @@.hotpink;very nice,@@ all things considered.
+				<<if canTalk($eventSlave)>>"$eventSlave.slaveName $eventSlave.slaveSurname," $he murmurs to $himself occasionally, smiling.<</if>>
 				<<set $activeSlave = $eventSlave>>
 			<</replace>>
 		<</link>>
@@ -377,7 +379,7 @@ Despite her devotion and trust, she is still a slave, and probably knows that he
 
 <<if $seeImages == 1>><br style="clear:both" /><</if>>
 
-<br><br>__Put her with another worshipful <<if $eventSlave.relationship == -2>>emotionally bonded slave<<else>>emotional slut<</if>>:__
+<br><br>__Put $him with another worshipful <<if $eventSlave.relationship == -2>>emotionally bonded slave<<else>>emotional slut<</if>>:__
 <<set $Flag = 1>>
 <<include "Slave Summary">>
 
@@ -422,31 +424,31 @@ Being ordered into a relationship would be difficult for anyone, but they're so
 <<elseif ($subSlave.fetish == "humiliation") && ($eventSlave.fetish == "sadist")>>
 	$subSlave.slaveName loves to be humiliated, and $eventSlave.slaveName can definitely get off on another girl's shame.
 <<elseif ($eventSlave.fetish == "buttslut") && ($subSlave.fetish == "dom")>>
-	$subSlave.slaveName likes fucking other girls, so once $eventSlave.slaveName asks her to just do it to her ass all the time, they're both happy.
+	$subSlave.slaveName likes fucking other girls, so once $eventSlave.slaveName asks _him2 to just do it to $his ass all the time, they're both happy.
 <<elseif ($subSlave.fetish == "buttslut") && ($eventSlave.fetish == "dom")>>
-	$eventSlave.slaveName likes fucking other girls, so once $subSlave.slaveName asks her to just do it to her ass all the time, they're both happy.
+	$eventSlave.slaveName likes fucking other girls, so once $subSlave.slaveName asks $him to just do it to _his2 ass all the time, they're both happy.
 <<elseif ($eventSlave.fetish == "boobs") && ($subSlave.boobs > 4000)>>
-	$eventSlave.slaveName fetishized breasts so much that she thinks $subSlave.slaveName's udders are one of the sexiest things she's ever seen.
+	$eventSlave.slaveName fetishized breasts so much that $he thinks $subSlave.slaveName's udders are one of the sexiest things $he's ever seen.
 <<elseif ($subSlave.fetish == "boobs") && ($eventSlave.boobs > 4000)>>
-	$subSlave.slaveName fetishized breasts so much that she thinks $eventSlave.slaveName's udders are one of the sexiest things she's ever seen.
+	$subSlave.slaveName fetishized breasts so much that _he2 thinks $eventSlave.slaveName's udders are one of the sexiest things _he2's ever seen.
 <<elseif ($eventSlave.fetish == "pregnancy") && ($subSlave.fetish == "pregnancy") && $subSlave.bellyPreg >= 300000 && $eventSlave.bellyPreg >= 300000>>
 	$eventSlave.slaveName and $subSlave.slaveName are both enormously laden with children, much to the other's delight. They can't wait to explore each other's baby filled middle.
 <<elseif ($eventSlave.fetish == "pregnancy") && ($subSlave.fetish == "pregnancy") && $subSlave.preg > $subSlave.pregData.normalBirth/2 && $eventSlave.preg > $eventSlave.pregData.normalBirth/2>>
 	$eventSlave.slaveName and $subSlave.slaveName are both heavily pregnant, much to the other's delight.
 <<elseif ($subSlave.fetish == "pregnancy") && $eventSlave.bellyPreg >= 300000>>
-	$subSlave.slaveName fetishizes pregnant bellies so much that she is awestruck by $eventSlave.slaveName's enormous, baby filled middle.
+	$subSlave.slaveName fetishizes pregnant bellies so much that _he2 is awestruck by $eventSlave.slaveName's enormous, baby filled middle.
 <<elseif ($eventSlave.fetish == "pregnancy") && $subSlave.bellyPreg >= 300000>>
-	$eventSlave.slaveName fetishizes pregnant bellies so much that she is awestruck by $subSlave.slaveName's enormous, baby filled middle.
+	$eventSlave.slaveName fetishizes pregnant bellies so much that $he is awestruck by $subSlave.slaveName's enormous, baby filled middle.
 <<elseif ($subSlave.fetish == "pregnancy") && $eventSlave.preg > $eventSlave.pregData.normalBirth/2>>
-	$subSlave.slaveName fetishizes pregnant bellies so much that she thinks $eventSlave.slaveName gravid middle is one of the sexiest things she's ever seen.
+	$subSlave.slaveName fetishizes pregnant bellies so much that _he2 thinks $eventSlave.slaveName gravid middle is one of the sexiest things _he2's ever seen.
 <<elseif ($eventSlave.fetish == "pregnancy") && $subSlave.preg > $subSlave.pregData.normalBirth/2>>
-	$eventSlave.slaveName fetishizes pregnant bellies so much that she thinks $subSlave.slaveName's gravid middle is one of the sexiest things she's ever seen.
+	$eventSlave.slaveName fetishizes pregnant bellies so much that $he thinks $subSlave.slaveName's gravid middle is one of the sexiest things $he's ever seen.
 <<elseif ($eventSlave.fetish == "pregnancy") && ($subSlave.fetish == "pregnancy") && $subSlave.bellyPreg >= 100 && $eventSlave.bellyPreg >= 100>>
 	$eventSlave.slaveName and $subSlave.slaveName are both pregnant and just beginning to show. They'll both be able to enjoy the other's swelling body.
 <<elseif ($eventSlave.fetish == "pregnancy") && canAchieveErection($subSlave)>>
-	$eventSlave.slaveName can indulge the fantasy that she's getting pregnant each and every time $subSlave.slaveName cums inside her.
+	$eventSlave.slaveName can indulge the fantasy that $he's getting pregnant each and every time $subSlave.slaveName cums inside $him.
 <<elseif ($subSlave.fetish == "pregnancy") && canAchieveErection($eventSlave)>>
-	$subSlave.slaveName can indulge the fantasy that she's getting pregnant each and every time $eventSlave.slaveName cums inside her.
+	$subSlave.slaveName can indulge the fantasy that _he2's getting pregnant each and every time $eventSlave.slaveName cums inside _him2.
 <<else>>
 	<<set _matched = 0>>
 <</if>>
@@ -490,9 +492,9 @@ Being ordered into a relationship would be difficult for anyone, but they're so
 	<<case "confident">>
 		confident, and soon come to an understanding that they'll be able to <<if $eventSlave.relationship == -2>>serve you better together<<else>>fuck third parties better as a pair<</if>>.
 	<<case "cutting">>
-		witty, and each quickly discovers that her new partner can hold up her end of a battle of quips. Their loving snippiness develops rapidly, and it's pretty cute.
+		witty, and each quickly discovers that their new partner can hold up their end of a battle of quips. Their loving snippiness develops rapidly, and it's pretty cute.
 	<<case "funny">>
-		a little weird. It takes a while for them to adjust to how funny her new partner is, but they learn to support each other soon enough.
+		a little weird. It takes a while for them to adjust to how funny their new partner is, but they learn to support each other soon enough.
 	<<case "adores women">>
 		pretty crazy about ladies. They're both slave girls themselves, which helps, and they've also got a never-ending parade of female bodies to discuss together.
 	<<case "adores men">>
@@ -500,7 +502,7 @@ Being ordered into a relationship would be difficult for anyone, but they're so
 	<<case "fitness">>
 		fitness fanatics, and being together feels natural for them, since they've already worked out together often enough.
 	<<case "insecure">>
-		very insecure. Perhaps unsurprisingly, they soon grow to depend on each other, each relying on her partner to support her low self-esteem.
+		very insecure. Perhaps unsurprisingly, they soon grow to depend on each other, each relying on their partner to support their low self-esteem.
 	<<case "sinful">>
 		<<if $arcologies[0].FSChattelReligionist == "unset">>
 			eagerly sinful, and they grow close by opening up and sharing their fraught histories of faith with each other.
diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw
index bd20a841890f9336cdfa13e48c7e20a05053db79..5a135dc2571b9aba2f4c958c07f83743b55b05c0 100644
--- a/src/uncategorized/newSlaveIntro.tw
+++ b/src/uncategorized/newSlaveIntro.tw
@@ -585,7 +585,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 <<case "She submitted to enslavement to get access to modern prenatal care.">>
 	//and since $he's worried about $his child...//
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	<<link "Manipulate $him fear for $his pregnancy">>
+	<<link "Manipulate $his fear for $his pregnancy">>
 	<<replace "#introResult">>
 		You place a curative injector on your desk, and describe its remarkable medical powers in detail, before mentioning its extreme cost. $His face rises at the first part and falls at the second. You tell $him that if $he's a perfect sex slave, $he'll get as much as $he needs, and that $he can start by sucking you off. $He grunts a little as $he hurries to get $his pregnant body down to $his knees, but works your cock with almost desperate enthusiasm. You stroke $his hair comfortingly as $he does, and inject the healing dose into $his shoulder. $He murmurs $his @@.hotpink;gratitude@@ into your dick, but @@.gold;fears@@ for $his pregnancy.
 	<</replace>>
diff --git a/src/uncategorized/pit.tw b/src/uncategorized/pit.tw
index c81d2202f98a7781569199dd9025c6f50eb5d452..01a0e6051c3195b68ffc71ff07c1caa603f6d245 100644
--- a/src/uncategorized/pit.tw
+++ b/src/uncategorized/pit.tw
@@ -1,6 +1,6 @@
 :: Pit [nobr]
 
-<<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Pit", $showEncyclopedia = 1, $encyclopedia = "Pit", _DL = $fighterIDs.length, _SL = $slaves.length>>
+<<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Pit", $showEncyclopedia = 1, $encyclopedia = "Pit", _DL = $fighterIDs.length, _SL = $slaves.length, _CL = $canines.length, _HL = $hooved.length, _FL = $felines.length>>
 <<showallAssignmentFilter>>
 <<if $pitName != "the Pit">>
 	<<set $pitNameCaps = $pitName.replace("the ", "The ")>>
@@ -19,7 +19,7 @@ $pitNameCaps is clean and ready,
 <<else>>
 	but no slaves are assigned to fight.
 	<<link "Decommission the pit" "Main">>
-		<<set $pit = 0>>
+		<<set $pit = 0, $pitAnimal = 0, $pitAnimalType = 0>>
 		<<set _pit = $sectors.findIndex(function(s) { return s.type == "Pit"; })>>
 		<<if _pit != -1>>
 			<<set $sectors[_pit].type = "Markets">>
@@ -38,16 +38,20 @@ $pitNameCaps is clean and ready,
 	Admission is charged to the fights here. [[Close them|Pit][$pitAudience = "none"]] | [[Stop charging|Pit][$pitAudience = "free"]]
 <</if>>
 
-<<if $Bodyguard != 0 || $farmyardKennels > 0 || $farmyardStable > 0 || $farmyardCages > 0>>
+<<if $Bodyguard != 0 || (_CL > 0 && $activeCanine != 0) || (_HL > 0 && $activeHooved != 0) || (_FL > 0 && $activeFeline != 0)>>
 	<br>
 	<<if $pitBG == 0>>
 		<<if $pitAnimal == 0>>
-			Two fighters will be selected from the pool at random. <<if $Bodyguard != 0>>[[Guarantee your Bodyguard a slot|Pit][$pitBG = 1, $pitAnimal = 0]]<</if>><<if $farmyardKennels > 0 || $farmyardStable > 0 || $farmyardCages > 0>> | [[Have a slave fight an animal|Pit][$pitBG = 0, $pitAnimal = 1]]<</if>>
+			Two fighters will be selected from the pool at random. 
+			<<if $Bodyguard != 0>>[[Guarantee your Bodyguard a slot|Pit][$pitBG = 1, $pitAnimal = 0]]<</if>>
+			<<if $Bodyguard != 0 && ($activeCanine != 0 || $activeHooved != 0 || $activeFeline != 0)>> | <</if>>
+			<<if $activeCanine != 0 || $activeHooved != 0 || $activeFeline != 0>>[[Have a slave fight an animal|Pit][$pitBG = 0, $pitAnimal = 1]]<</if>>
 		<<else>>
 			A random slave will fight an animal. [[Have them fight another slave|Pit][$pitBG = 0, $pitAnimal = 0]]<<if $Bodyguard != 0>> | [[Have them fight your Bodyguard|Pit][$pitBG = 1, $pitAnimal = 0]]<</if>>
 		<</if>>
 	<<else>>
-		Your Bodyguard will fight a slave selected from the pool at random. [[Make both slots random|Pit][$pitBG = 0, $pitAnimal = 0]]<<if $farmyardKennels > 0 || $farmyardStable > 0 || $farmyardCages > 0>> | [[Have a slave fight an animal|Pit][$pitBG = 0, $pitAnimal = 1]]<</if>>
+		Your Bodyguard will fight a slave selected from the pool at random. [[Make both slots random|Pit][$pitBG = 0, $pitAnimal = 0]]
+		<<if $_CL > 0 || $_HL > 0 || $_FL > 0>> | [[Have a slave fight an animal|Pit][$pitBG = 0, $pitAnimal = 1]]<</if>>
 	<</if>>
 <</if>>
 
@@ -90,6 +94,8 @@ $pitNameCaps is clean and ready,
 	<</if>>
 <</if>>
 
+<<if $activeCanine != 0 || $activeHooved != 0 || $activeFeline != 0>>
+
 <<switch $activeCanine.breed>>
 <<case "French Bulldog" "Beagle" "Poodle" "Yorkshire Terrier">>
 	<<set _animalEligible = 0>>
@@ -100,14 +106,14 @@ $pitNameCaps is clean and ready,
 <<if $pitAnimal == 1>>
 	<br>
 	<<if $pitLethal == 1>>
-		<<if $pitAnimalType == $activeCanine.species>>
+		<<if $pitAnimalType == $activeCanine.type>>
 			<<if $activeCanine.species != "dog">>
 				Your slave will fight a ''$activeCanine.species''. 
 				$activeCanine.speciesCap
-				<<if $farmyardStable > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = $activeHooved.species]]<</if>>
-				<<if $farmyardCages > 0>> | 
+				<<if _HL > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = "hooved"]]<</if>>
+				<<if _FL > 0>> | 
 					<<if $activeFeline.species != "cat">>
-						[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = $activeFeline.species]]
+						[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = "feline"]]
 					<<else>>
 						//Housecats are too small for your slave to fight//
 					<</if>>
@@ -116,65 +122,65 @@ $pitNameCaps is clean and ready,
 				<<if _animalEligible == 1>>
 					Your slave will fight a ''$activeCanine.breed''.
 					$activeCanine.breed
-					<<if $farmyardStable > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = $activeHooved.species]]<</if>>
-					<<if $farmyardCages > 0>> | 
+					<<if _HL > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = "hooved"]]<</if>>
+					<<if _FL > 0>> | 
 						<<if $activeFeline.species != "cat">>
-							[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = $activeFeline.species]]
+							[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = "feline"]]
 						<<else>>
 							//Housecats are too small for your slave to fight//
 						<</if>>
 					<</if>>
 				<<else>>
 					//<<print $activeCanine.breed>>s are too small for your slave to fight//
-					<<if $farmyardStable > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = $activeHooved.species]]<</if>>
-					<<if $farmyardCages > 0>> | 
+					<<if _HL > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = "hooved"]]<</if>>
+					<<if _FL > 0>> | 
 						<<if $activeFeline.species != "cat">>
-							[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = $activeFeline.species]]
+							[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = "feline"]]
 						<<else>>
 							//Housecats are too small for your slave to fight//
 						<</if>>
 					<</if>>
 				<</if>>
 			<</if>>
-		<<elseif $pitAnimalType == $activeHooved.species>>
+		<<elseif $pitAnimalType == $activeHooved.type>>
 			Your slave will fight a ''$activeHooved.species''. 
-			<<if $farmyardKennels > 0>>
+			<<if _CL > 0>>
 				<<if $activeCanine.species != "dog">>
-					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = $activeCanine.species]] | 
+					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = "canine"]] | 
 				<<else>>
 					<<if _animalEligible == 1>>
-						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = $activeCanine.species]] | 
+						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = "canine"]] | 
 					<<else>>
 						//<<print $activeCanine.breed>>s are too small for your slave to fight// | 
 					<</if>>
 				<</if>>
 			<</if>>
 			$activeHooved.speciesCap
-			<<if $farmyardCages > 0>> | 
+			<<if _FL > 0>> | 
 				<<if $activeFeline.species != "cat">>
-					[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = $activeFeline.species]]
+					[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = "feline"]]
 				<<else>>
 					//Housecats are too small for your slave to fight//
 				<</if>>
 			<</if>>
-		<<elseif $pitAnimalType == $activeFeline.species>>
+		<<elseif $pitAnimalType == $activeFeline.type>>
 			<<if $activeFeline.species != "cat">>
 				Your slave will fight a ''$activeFeline.species''. 
 		<<else>>
 				//Housecats are too small for your slave to fight//
 		<</if>>
-			<<if $farmyardKennels > 0>>
+			<<if _CL > 0>>
 				<<if $activeCanine.species != "dog">>
-					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = $activeCanine.species]]
+					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = "canine"]]
 				<<else>>
 					<<if _animalEligible == 1>>
-						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = $activeCanine.species]]
+						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = "canine"]]
 					<<else>>
 						//<<print $activeCanine.breed>>s are too small for your slave to fight//
 					<</if>>
 				<</if>>
 			<</if>>
-			<<if $farmyardStable > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = $activeHooved.species]] | <</if>>
+			<<if _HL > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = "hooved"]] | <</if>>
 			<<if $activeFeline.species != "cat">>
 				$activeFeline.speciesCap
 			<<else>>
@@ -182,28 +188,33 @@ $pitNameCaps is clean and ready,
 			<</if>>
 		<<else>>
 			Select an animal for your slave to fight. 
-			<<if $farmyardKennels > 0>>
+			<<if _CL > 0>>
 				<<if $activeCanine.species != "dog">>
-					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = $activeCanine.species]]
+					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = "canine"]]
 				<<else>>
 					<<if _animalEligible == 1>>
-						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = $activeCanine.species]]
+						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = "canine"]]
 					<<else>>
 						//<<print $activeCanine.breed>>s are too small for your slave to fight//
 					<</if>>
 				<</if>>
 			<</if>>
-			<<if ($farmyardCages > 0 && $farmyardStable > 0) || ($farmyardCages > 0 && $farmyardKennels > 0) || ($farmyardStable > 0 && $farmyardKennels > 0)>> | <</if>>
-			<<if $farmyardStable > 0>>[["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = $activeHooved.species]]<</if>>
-			<<if ($farmyardStable > 0 && $farmyardCages > 0)>> | <</if>>
-			<<if $activeFeline.species != "cat">>
-				[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = $activeFeline.species]]
-			<<else>>
-				//Housecats are too small for your slave to fight//
+			<<if (_CL > 0 && _HL > 0) || (_CL > 0 && _FL > 0) || (_HL > 0 && _FL > 0)>> | <</if>>
+			<<if _HL > 0>>
+				[["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = "hooved"]]
+			<</if>>
+			<<if (_HL > 0 && _FL > 0)>> | <</if>>
+			<<if _FL > 0>>
+				<<if $activeFeline.species != "cat">>
+					[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = "feline"]]
+				<<else>>
+					//Housecats are too small for your slave to fight//
+				<</if>>
 			<</if>>
+
 		<</if>>
 	<<elseif $pitLethal == 0>>
-		<<if $pitAnimalType == $activeCanine.species>>
+		<<if $pitAnimalType == $activeCanine.type>>
 			<<if $activeCanine.species != "dog">>
 				Your slave will try to avoid being used by a ''$activeCanine.species''. 
 				$activeCanine.speciesCap
@@ -211,73 +222,73 @@ $pitNameCaps is clean and ready,
 				<<if _animalEligible == 1>>
 					Your slave will try to avoid being used by a ''$activeCanine.breed''.
 					$activeCanine.breed
-					<<if $farmyardStable > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = $activeHooved.species]]<</if>>
-					<<if $farmyardCages > 0>> | 
+					<<if _HL > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = "hooved"]]<</if>>
+					<<if _FL > 0>> | 
 						<<if $activeFeline.species != "cat">>
-							[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = $activeFeline.species]]
+							[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = "feline"]]
 						<<else>>
 							//Housecats are too small to use your slave//
 						<</if>>
 					<</if>>
 				<<else>>
 					//<<print $activeCanine.breed>>s are too small to use your slave//
-					<<if $farmyardStable > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = $activeHooved.species]]<</if>>
-					<<if $farmyardCages > 0>> | 
+					<<if _HL > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = "hooved"]]<</if>>
+					<<if _FL > 0>> | 
 						<<if $activeFeline.species != "cat">>
-							[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = $activeFeline.species]]
+							[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = "feline"]]
 						<<else>>
 							//Housecats are too small to use your slave//
 						<</if>>
 					<</if>>
 				<</if>>
 			<</if>>
-			<<if $farmyardStable > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = $activeHooved.species]]<</if>>
-			<<if $farmyardCages > 0>> | 
+			<<if _HL > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = "hooved"]]<</if>>
+			<<if _FL > 0>> | 
 				<<if $activeFeline.species != "cat">>
-					[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = $activeFeline.species]]
+					[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = "feline"]]
 				<<else>>
 					//Housecats are too small to use your slave//
 				<</if>>
 			<</if>>
-		<<elseif $pitAnimalType == $activeHooved.species>>
+		<<elseif $pitAnimalType == $activeHooved.type>>
 			Your slave will try to avoid being used by a ''$activeHooved.species''. 
-			<<if $farmyardKennels > 0>>
+			<<if _CL > 0>>
 				<<if $activeCanine.species != "dog">>
-					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = $activeCanine.species]] | 
+					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = "canine"]] | 
 				<<else>>
 					<<if _animalEligible == 1>>
-						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = $activeCanine.species]] | 
+						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = "canine"]] | 
 					<<else>>
 						//<<print $activeCanine.breed>>s are too small for your slave to fight// | 
 					<</if>>
 				<</if>>
 			<</if>>
 			$activeHooved.speciesCap
-			<<if $farmyardCages > 0>> | 
+			<<if _FL > 0>> | 
 				<<if $activeFeline.species != "cat">>
-					[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = $activeFeline.species]]
+					[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = "feline"]]
 				<<else>>
 					//Housecats are too small to use your slave//
 				<</if>>
 			<</if>>
-		<<elseif $pitAnimalType == $activeFeline.species>>
+		<<elseif $pitAnimalType == $activeFeline.type>>
 			<<if $activeFeline.species != "cat">>
 				Your slave will try to avoid being used by a ''$activeFeline.species''. 
 		<<else>>
 				//Housecats are too small to use your slave// 
 		<</if>>
-			<<if $farmyardKennels > 0>>
+			<<if _CL > 0>>
 				<<if $activeCanine.species != "dog">>
-					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = $activeCanine.species]]
+					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = "canine"]]
 				<<else>>
 					<<if _animalEligible == 1>>
-						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = $activeCanine.species]]
+						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = "canine"]]
 					<<else>>
 						//<<print $activeCanine.breed>>s are too small for your slave to fight//
-	<</if>>
+					<</if>>
 				<</if>>
 			<</if>>
-			<<if $farmyardStable > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = $activeHooved.species]] | <</if>>
+			<<if _HL > 0>> | [["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = "hooved"]] | <</if>>
 			<<if $activeFeline.species != "cat">>
 				$activeFeline.speciesCap
 			<<else>>
@@ -285,32 +296,35 @@ $pitNameCaps is clean and ready,
 			<</if>>
 		<<else>>
 			Select an animal for your slave to try to avoid. 
-			<<if $farmyardKennels > 0>>
+			<<if _CL > 0>>
 				<<if $activeCanine.species != "dog">>
-					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = $activeCanine.species]]
+					[["" + $activeCanine.speciesCap + ""|Pit][$pitAnimalType = "canine"]]
 				<<else>>
 					<<if _animalEligible == 1>>
-						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = $activeCanine.species]]
+						[["" + $activeCanine.breed + ""|Pit][$pitAnimalType = "canine"]]
 					<<else>>
 						//<<print $activeCanine.breed>>s are too small for your slave to fight//
 					<</if>>
 				<</if>>
 			<</if>>
-			<<if ($farmyardCages > 0 && $farmyardStable > 0) || ($farmyardCages > 0 && $farmyardKennels > 0) || ($farmyardStable > 0 && $farmyardKennels > 0)>> | <</if>>
-			<<if $farmyardStable > 0>>[["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = $activeHooved.species]]<</if>>
-			<<if ($farmyardStable > 0 && $farmyardCages > 0)>> | <</if>>
-			<<if $activeFeline.species != "cat">>
-				<<if $farmyardCages > 0>>
-					[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = $activeFeline.species]]
+			<<if (_CL > 0 && _HL > 0) || (_CL > 0 && _FL > 0) || (_HL > 0 && _FL > 0)>> | <</if>>
+			<<if _HL > 0>>
+				[["" + $activeHooved.speciesCap + ""|Pit][$pitAnimalType = "hooved"]]
+			<</if>>
+			<<if (_HL > 0 && _FL > 0)>> | <</if>>
+			<<if _FL > 0>>
+				<<if $activeFeline.species != "cat">>
+					[["" + $activeFeline.speciesCap + ""|Pit][$pitAnimalType = "feline"]]
 				<<else>>
 					//Housecats are too small to use your slave//
 				<</if>>
 			<</if>>
 		<</if>>
 	<</if>>
-<<else>>
+<<else>>	/* if animal fight is unselected */
 	<<set $pitAnimalType = 0>>
 <</if>>
+<</if>>
 
 <<if _DL > 0>>
 	<br><br>''Cancel a slave's fight:''
diff --git a/src/uncategorized/prestigiousSlave.tw b/src/uncategorized/prestigiousSlave.tw
index f8c3478cf0b8e8dae8ac745e3a5fdb6e71a63121..1678b71240ddcd9497c88849ac125a5500c754c5 100644
--- a/src/uncategorized/prestigiousSlave.tw
+++ b/src/uncategorized/prestigiousSlave.tw
@@ -372,7 +372,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.boobsImplant += random(20,40)*200>>
 	<<set $activeSlave.boobs += $activeSlave.boobsImplant>>
 	<<set $activeSlave.boobs += 1000>>
-	<<set $activeSlave.nipples = either("cute", "puffy", "huge")>>
+	<<set $activeSlave.nipples = either("cute", "huge", "puffy")>>
 	<<set $activeSlave.areolae = 2>>
 	<<set $activeSlave.buttImplant +=  random(6,8)>>
 	<<set $activeSlave.butt += $activeSlave.buttImplant>>
@@ -517,8 +517,8 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.underArmHStyle = "waxed">>
 	<<set $activeSlave.sexualFlaw = "none">>
 	<<set $activeSlave.behavioralFlaw = "none">>
-	<<set $activeSlave.sexualQuirk = either("tease", "romantic", "perverted", "caring")>>
-	<<set $activeSlave.behavioralQuirk = either("confident", "cutting", "funny", "adores women", "adores men", "advocate")>>
+	<<set $activeSlave.sexualQuirk = either("caring", "perverted", "romantic", "tease")>>
+	<<set $activeSlave.behavioralQuirk = either("adores men", "adores women", "advocate", "confident", "cutting", "funny")>>
 	<<set $activeSlave.customDesc = "She is very comfortable with her unusual biology.">>
 
 <<case "d pornstar">>
@@ -561,7 +561,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.entertainSkill = 100>>
 	<<set $activeSlave.pubicHStyle = "waxed">>
 	<<set $activeSlave.underArmHStyle = "waxed">>
-	<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy", "anorexic")>>
+	<<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy")>>
 	<<set $activeSlave.fetish = "none">>
 	<<set $activeSlave.fetishKnown = 1>>
 	<<set $activeSlave.customDesc = "She has seen and done almost everything sexually possible, on camera.">>
diff --git a/src/uncategorized/ptWorkaround.tw b/src/uncategorized/ptWorkaround.tw
index 2ebec8c758997cb775d92ab07c098e79fcfd05a3..1ddb9ebd008551a93c6f84cd7a8fd94a9fa33bbd 100644
--- a/src/uncategorized/ptWorkaround.tw
+++ b/src/uncategorized/ptWorkaround.tw
@@ -7,7 +7,7 @@
 <<else>>
 	''You train''
 <</if>>
-''__@@.pink;$activeSlave.slaveName@@__'' when she isn't otherwise occupied.
+''__@@.pink;$activeSlave.slaveName@@__'' when $he isn't otherwise occupied.
 
 <<set $activeSlave.training = Math.clamp($activeSlave.training, 0, 100)>>
 <<set $activeSlave.training += 80-($activeSlave.intelligence+$activeSlave.intelligenceImplant)/5+(($activeSlave.devotion+$activeSlave.trust)/10)>>
@@ -19,7 +19,7 @@
 <<case "build her devotion">>
 	<<set $activeSlave.devotion += 6>>
 	<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "submissive")>>
-		Since $activeSlave.slaveName is a submissive, you @@.hotpink;build her devotion to you@@ by indulging her need to be dominated. Already smiling to herself, she changes into bondage gear that blinds her, forces her arms behind her back, forces her to present her breasts uncomfortably, and forces a painfully large dildo up her <<if $activeSlave.vagina > 0>>vagina<<if $activeSlave.anus > 0>> and anus<</if>><<elseif $activeSlave.anus > 0>>anus<</if>>. Thus attired, she is forced to serve you in whatever petty ways occur to you. She holds your tablet for you on her upthrust ass as you work, holds a thin beverage glass for you in her upturned mouth when you eat, and lies still so you can use her tits as a pillow whenever you recline. She loves it.
+		Since $activeSlave.slaveName is a submissive, you @@.hotpink;build $his devotion to you@@ by indulging $his need to be dominated. Already smiling to herself, she changes into bondage gear that blinds her, forces her arms behind her back, forces her to present her breasts uncomfortably, and forces a painfully large dildo up her <<if $activeSlave.vagina > 0>>vagina<<if $activeSlave.anus > 0>> and anus<</if>><<elseif $activeSlave.anus > 0>>anus<</if>>. Thus attired, she is forced to serve you in whatever petty ways occur to you. She holds your tablet for you on her upthrust ass as you work, holds a thin beverage glass for you in her upturned mouth when you eat, and lies still so you can use her tits as a pillow whenever you recline. She loves it.
 	<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "cumslut") && ($PC.dick == 1)>>
 		Since $activeSlave.slaveName has an unusual taste for oral sex and cum, you @@.hotpink;build her devotion to you@@ by indulging her. You allow her to spend her free time following you around. She is permitted to act as your private cum receptacle. If you use another slave, you usually pull out and give her smiling face a facial. When you come inside another slave instead, $activeSlave.slaveName is allowed to get your cum anyway, regardless of whether that requires the other slave to spit it into her mouth or $activeSlave.slaveName to suck it out of the other slave's vagina or rectum. Either way, she rubs her stomach happily after she's swallowed it down.
 		<<set $activeSlave.oralCount += 20, $oralTotal += 20>>
@@ -724,7 +724,7 @@
 	<<else>>
 		She's obedient enough that there is no trouble with any of the sexual kinks you subject her to. Some she likes more than others, but when she's not enjoying herself, she grits her teeth and concentrates on obeying you.
 	<</if>>
-	You start off by making her view a medley of pornography while $assistantName monitors her for arousal. It seems she is
+	You start off by making $him view a medley of pornography while $assistantName monitors $him for arousal. It seems $he is
 	<<if $activeSlave.attrXY <= 5>>
 		@@.red;disgusted by men@@
 	<<elseif $activeSlave.attrXY <= 15>>
@@ -758,9 +758,9 @@
 	<</if>>
 	<<if $activeSlave.fetishKnown != 1>>
 	<<set $activeSlave.fetishKnown = 1>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;You then give her a good exploratory fondle. You play with her nipples and each of her holes and gauge her reaction.
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;You then give $him a good exploratory fondle. You play with $his nipples and each of $his holes and gauge $his reaction.
 	<<if $activeSlave.fetish == "boobs">>
-		You've barely touched her nipples before she moans. After some experimentation, it becomes clear that her nipples might as well be a pair of slightly less sensitive <<if $activeSlave.nipples == "fuckable">>pussies<<else>>clits<</if>>. Finding her mammary fixation with you has @@.hotpink;increased her devotion to you.@@
+		You've barely touched $his nipples before she moans. After some experimentation, it becomes clear that her nipples might as well be a pair of slightly less sensitive <<if $activeSlave.nipples == "fuckable">>pussies<<else>>clits<</if>>. Finding her mammary fixation with you has @@.hotpink;increased her devotion to you.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif $activeSlave.fetish == "buttslut">>
 		<<if $activeSlave.vagina >= 0>>When you move from fingering her pussy to her asshole,<<else>>When you move from fondling her mouth to her asshole,<</if>> you've barely touched her butt before she comes explosively. After some experimentation, it becomes clear that her g-spot might as well be located up her ass. Finding her anal fixation with you has @@.hotpink;increased her devotion to you.@@
@@ -770,7 +770,7 @@
 	<<else>>
 		Nothing unusual happens.
 	<</if>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;Next, you demand extreme submission from her. You make her change into bondage gear that blinds her, restricts her movement, forces her to present her breasts uncomfortably, and holds vibrators against her. Thus attired, she is forced to serve you in whatever petty ways occur to you.
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;Next, you demand extreme submission from $him. You make her change into bondage gear that blinds her, restricts her movement, forces her to present her breasts uncomfortably, and holds vibrators against her. Thus attired, she is forced to serve you in whatever petty ways occur to you.
 	<<if $activeSlave.fetish == "submissive">>
 		During the first hour of this treatment, she cums hard against the vibrators. She's a natural submissive! Discovering this about herself under your hands has @@.hotpink;increased her devotion to you.@@
 		<<set $activeSlave.devotion += 4>>
diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw
index 7119ce06a2285819dff5d6db4820d9585b91d1a5..39e6a76f97e3199abafd071676d144c617928ff7 100644
--- a/src/uncategorized/reRecruit.tw
+++ b/src/uncategorized/reRecruit.tw
@@ -2054,15 +2054,15 @@ One of the tenants in your arcology has not paid rent in some time. In the Free
 
 <<case "male debtor">>
 
-One of the tenants in your arcology has not paid rent in some time. In the Free Cities, debtors may be enslaved once their debt reaches a fair price for their enslavement. Your tenant has reached this point. He comes to see you, despondent. He is male for the moment, but enslavement will change that status, if only by a technicality. More concrete feminization will be up to you.
+One of the tenants in your arcology has not paid rent in some time. In the Free Cities, debtors may be enslaved once their debt reaches a fair price for their enslavement. Your tenant has reached this point. $He comes to see you, despondent. $He is male for the moment, but enslavement will change that status, if only by a technicality. More concrete feminization will be up to you.
 
 <<case "desperate preg">>
 
-A young woman comes to your penthouse for an interview. You accepted $his request to see you because $he took the unusual step of promising to sell $himself to you if you would admit $him. The reason for this odd behavior becomes clear when $he enters. $He's dressed in torn old clothes, is obviously unhealthy, and is massively pregnant. Instead of standing in front of your desk, $he kneels and looks at the floor as $he speaks. "<<= properTitle()>>, I'm desperate. I understand slaves' babies must be sent to orphanages at birth. But I'm on the streets and I'm so sick and hungry I'm afraid I'll miscarry. Could you enslave me, <<= properTitle()>>? I'm still pretty enough, and... I know some men like pregnant women. My ass is - well, I hear slaves are more valuable if they're tight back there and I've never done it there. I'm also starting to give a little milk. I know I'll have to give up the baby. I guess that's all." $He weeps quietly as $he talks, but $he's brave enough to get through $his little speech.
+A young $woman comes to your penthouse for an interview. You accepted $his request to see you because $he took the unusual step of promising to sell $himself to you if you would admit $him. The reason for this odd behavior becomes clear when $he enters. $He's dressed in torn old clothes, is obviously unhealthy, and is massively pregnant. Instead of standing in front of your desk, $he kneels and looks at the floor as $he speaks. "<<= properTitle()>>, I'm desperate. I understand slaves' babies must be sent to orphanages at birth. But I'm on the streets and I'm so sick and hungry I'm afraid I'll miscarry. Could you enslave me, <<= properTitle()>>? I'm still pretty enough, and... I know some men like pregnant $women. My ass is - well, I hear slaves are more valuable if they're tight back there and I've never done it there. I'm also starting to give a little milk. I know I'll have to give up the baby. I guess that's all." $He weeps quietly as $he talks, but $he's brave enough to get through $his little speech.
 
 <<case "blind homeless">>
 
-A young <<if $activeSlave.physicalAge < 13>>girl<<elseif $activeSlave.physicalAge < 18>>teen<<else>>woman<</if>> struggles into your penthouse for an interview. You accepted $his request to see you because $he took the unusual step of promising to sell $himself to you if you would admit $him. The reason for this odd behavior becomes clear when $he enters. $He is gingerly feeling $his way towards your desk, before finding it and straightening up, giving you a good look at $his body. $He is clothed in rags and dangerously thin, save for a notable roundness in $his middle. $He shakily makes $his case. "<<= properTitle()>>, I'm desperate. My home was repossessed and I was forced onto the street. And the street is no place for a blind girl. T-they", $he place a hand on $his stomach, "took advantage of my helplessness. For months, they fucked me whenever they wanted, and in return the gave me next to no food and this child!" $He stamps $his foot angrily, before continuing, "but I thought, you would be far better than that life, a slow death on the streets." $He tears up and awaits your response.
+A young <<if $activeSlave.physicalAge < 13>>girl<<elseif $activeSlave.physicalAge < 18>>teen<<else>>woman<</if>> struggles into your penthouse for an interview. You accepted $his request to see you because $he took the unusual step of promising to sell $himself to you if you would admit $him. The reason for this odd behavior becomes clear when $he enters. $He is gingerly feeling $his way towards your desk, before finding it and straightening up, giving you a good look at $his body. $He is clothed in rags and dangerously thin, save for a notable roundness in $his middle. $He shakily makes $his case. "<<= properTitle()>>, I'm desperate. My home was repossessed and I was forced onto the street. And the street is no place for a blind $girl. T-they", $he place a hand on $his stomach, "took advantage of my helplessness. For months, they fucked me whenever they wanted, and in return the gave me next to no food and this child!" $He stamps $his foot angrily, before continuing, "but I thought, you would be far better than that life, a slow death on the streets." $He tears up and awaits your response.
 
 <<case "paternalist swan song">>
 
@@ -2076,12 +2076,12 @@ Not every day in the arcology is calm and this one is most certainly more energe
 <</if>>
  so happens to be such a force.
 
-Recently, a young musical prodigy has taken both the old world and the free cities by storm. Their rising popularity has gained them quite a following and the attention of some very powerful people. You look at the schedule of events for citizens tonight and, sure enough, they are to appear, live in concert, tonight. You tell $assistantName to set up a live feed of the performance for you so as not to interrupt your work. Several hours later, the young artist comes out on stage to a full house. They perform their latest hits and some fan favorites, but it's the crowd suddenly going silent that disturbs you from your paperwork. You look at the feed to see the artist standing there, a sullen expression on their face, tears streaming down their cheeks, and their body jerking, obviously wracked by occasional sobbing. They take a very quick bow and run off stage, before the feed gets cut. You shrug, artists have breakdowns and return to your tasks. Surprisingly, $assistantName chimes in to tell you that an unexpected guest has arrived. You have them sent in and are surprised to see the young, visibly distressed prodigy.
+Recently, a young musical prodigy has taken both the old world and the free cities by storm. Their rising popularity has gained them quite a following and the attention of some very powerful people. You look at the schedule of events for citizens tonight and, sure enough, they are to appear, live in concert, tonight. You tell $assistantName to set up a live feed of the performance for you so as not to interrupt your work. Several hours later, the young artist comes out on stage to a full house. They perform their latest hits and some fan favorites, but it's the crowd suddenly going silent that disturbs you from your paperwork. You look at the feed to see the artist standing there, a sullen expression on their face, tears streaming down their cheeks, and their body jerking, obviously wracked by occasional sobbing. They take a very quick bow and run off stage, before the feed gets cut. You shrug - artists have breakdowns - and return to your tasks. Surprisingly, $assistantName chimes in to tell you that an unexpected guest has arrived. You have them sent in and are surprised to see the young, visibly distressed prodigy.
 "I was told by my producer to come here, they say I have earned enough of a debt to be enslaved. I heard that slaves seem to be treated well here and thought that, just maybe, if I convinced them to let my final performance be here, I would have a chance at a better life than at another arcology owned by a crueler master. Please, would you consider taking me in?"
 
 <<case "desperate milf">>
 
-A <<if $activeSlave.physicalAge > 50>>old woman<<elseif $activeSlave.physicalAge > 30>>middle-aged woman<<elseif $activeSlave.physicalAge >= 18>>young woman<<elseif $activeSlave.physicalAge >= 13>>teenage girl<<elseif $activeSlave.physicalAge >= 7>>loli<<else>>little girl<</if>> comes to your penthouse for an interview. $He's clearly unwell. Instead of standing in front of your desk, $he kneels and looks at the floor as $he speaks. "<<= properTitle()>>, I'm desperate. I came to the Free Cities to build a better life, but... it hasn't worked out for me. I can't afford medical care, and I guess I'm too scared to try street-walking yet, though I'll have to soon. I hear you're a known slave owner, and that you give your slaves good medical care... could you enslave me, <<= properTitle()>>? I know I'm still pretty enough, so I'd be used as a sex slave." $He weeps quietly as $he talks, but $he's brave enough to get through $his little speech.
+A<<if $activeSlave.physicalAge > 50>>n old $woman<<elseif $activeSlave.physicalAge > 30>> middle-aged $woman<<elseif $activeSlave.physicalAge >= 18>> young $woman<<elseif $activeSlave.physicalAge >= 13>> teenage $girl<<elseif $activeSlave.physicalAge >= 7>> $loli<<else>> little $girl<</if>> comes to your penthouse for an interview. $He's clearly unwell. Instead of standing in front of your desk, $he kneels and looks at the floor as $he speaks. "<<= properTitle()>>, I'm desperate. I came to the Free Cities to build a better life, but... it hasn't worked out for me. I can't afford medical care, and I guess I'm too scared to try street-walking yet, though I'll have to soon. I hear you're a known slave owner, and that you give your slaves good medical care... could you enslave me, <<= properTitle()>>? I know I'm still pretty enough, so I'd be used as a sex slave." $He weeps quietly as $he talks, but $he's brave enough to get through $his little speech.
 
 <<case "tg addict">>
 
@@ -2127,7 +2127,7 @@ After a short while, your assistant whispers in your earpiece, <<if $assistant =
 
 <<case "womanly PC">>
 
-<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a supplicant has arrived at the door to the penthouse. A constant stream of hopefuls appear at your door, and $assistantName makes herself invaluable by filtering them. One of the few categories of applicant that is always admitted is people willing to be enslaved for some reason; this is just such a woman.
+<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a supplicant has arrived at the door to the penthouse. A constant stream of hopefuls appear at your door, and $assistantName makes herself invaluable by filtering them. One of the few categories of applicant that is always admitted is people willing to be enslaved for some reason; this is just such a $woman.
 <br><br>
 "It's my husband," $he says forthrightly. "I'm pretty sure the bastard is going to enslave me." $He pours out the trite story; it's terrifically boring, but it pays to hear people who want to be enslaved out. It's the only forbearance you'll need to show $him, ever, if you manage things correctly.
 <br><br>
@@ -2143,7 +2143,7 @@ After a short while, your assistant whispers in your earpiece, <<if $assistant =
 
 <<case "female SD">>
 
-Your desk flags a report of the arcology security service for your immediate attention. As it turns out, a number of pretty liberal students from the <<if $activeSlave.actualAge >= 18>>college<<elseif $activeSlave.actualAge >= 14>>high school<<elseif $activeSlave.actualAge >= 11>>junior high school<<else>>elementary school<</if>> in your arcology led a protest earlier today in the financial district several levels up from their institution. Seems to have been against slavery, for environmentalism, or some other nonsense that you skip over reading. The really interesting thing is what happened during the protest anyways. Things became a bit unruly between protesters and some counter-protesters - and at some point rocks started to fly... all of which would barely be worth a mention, if the vintage sports car of a prominent resident hadn't been parked on the same street. 
+Your desk flags a report of the arcology security service for your immediate attention. As it turns out, a number of pretty liberal students from a<<if $activeSlave.actualAge >= 18>> college<<elseif $activeSlave.actualAge >= 14>> high school<<elseif $activeSlave.actualAge >= 11>> junior high school<<else>>n elementary school<</if>> in your arcology led a protest earlier today in the financial district several levels up from their institution. Seems to have been against slavery, for environmentalism, or some other nonsense that you skip over reading. The really interesting thing is what happened during the protest anyways. Things became a bit unruly between protesters and some counter-protesters - and at some point rocks started to fly... all of which would barely be worth a mention, if the vintage sports car of a prominent resident hadn't been parked on the same street. 
 <br><br>
 One dented hood and smashed windshield later, someone was in big trouble. The ever-present camera surveillance in your arcology made it easy to track the rock to the hand of the person who threw it - a quite pretty young woman, who immediately got arrested and is awaiting sentencing in the lock-up right now. The video of $him getting booked - complete with a thorough strip-search (since all the officers agreed $he 'had to be hiding something') is definitively worth saving to a private folder.
 <br><br>
@@ -2153,7 +2153,7 @@ Given the damage to an expensive classic car and the meager balance of $his bank
 
 <<case "male SD">>
 
-Your desk flags a report of the arcology security service for your immediate attention. As it turns out, a number of pretty liberal students from the <<if $activeSlave.actualAge >= 18>>college<<elseif $activeSlave.actualAge >= 14>>high school<<elseif $activeSlave.actualAge >= 11>>junior high<<else>>elementary school<</if>> in your arcology led a protest earlier today in the financial district several levels up from their institution. Seems to have been against slavery, for environmentalism, or some other nonsense that you skip over reading. The really interesting thing is what happened during the protest anyways. Things became a bit unruly between protesters and some counter-protesters - and at some point rocks started to fly... all of which would barely be worth a mention, if the vintage sports car of a prominent resident hadn't been parked on the same street. 
+Your desk flags a report of the arcology security service for your immediate attention. As it turns out, a number of pretty liberal students from a<<if $activeSlave.actualAge >= 18>> college<<elseif $activeSlave.actualAge >= 14>> high school<<elseif $activeSlave.actualAge >= 11>> junior high school<<else>>n elementary school<</if>> in your arcology led a protest earlier today in the financial district several levels up from their institution. Seems to have been against slavery, for environmentalism, or some other nonsense that you skip over reading. The really interesting thing is what happened during the protest anyways. Things became a bit unruly between protesters and some counter-protesters - and at some point rocks started to fly... all of which would barely be worth a mention, if the vintage sports car of a prominent resident hadn't been parked on the same street. 
 <br><br>
 One dented hood and smashed windshield later, someone was in big trouble. The ever-present camera surveillance in your arcology made it easy to track the rock to the hand of the person who threw it - a good-looking young man, well-muscled too, who immediately got arrested and is awaiting sentencing in the lock-up right now. The video of him getting booked - complete with a thorough strip-search (since all the officers agreed he 'had to be hiding something') does make you think about the potential this guy would have as a dickgirl slave with a little work done on him.
 <br><br>
@@ -2163,9 +2163,9 @@ Given the damage to an expensive classic car and the meager balance of his bank
 
 <<case "female SD 2">>
 
-Your desk flags a report of the arcology security service for your immediate attention. As it turns out, a number of rather liberal students from the <<if $activeSlave.actualAge >= 18>>college<<elseif $activeSlave.actualAge >= 14>>high school<<elseif $activeSlave.actualAge >= 11>>junior high school<<else>>elementary school<</if>> in your arcology led a protest earlier today in the financial district several levels up from their institution. Seems to have been against slavery, for environmentalism, or some other nonsense that you skip over reading. The really interesting thing is what happened during the protest anyways. Things became a bit unruly between protesters and some counter-protesters - and at some point rocks started to fly... all of which would barely be worth a mention, if the vintage sports car of a prominent resident hadn't been parked on the same street. 
+Your desk flags a report of the arcology security service for your immediate attention. As it turns out, a number of rather liberal students from a<<if $activeSlave.actualAge >= 18>> college<<elseif $activeSlave.actualAge >= 14>> high school<<elseif $activeSlave.actualAge >= 11>> junior high school<<else>>n elementary school<</if>> in your arcology led a protest earlier today in the financial district several levels up from their institution. Seems to have been against slavery, for environmentalism, or some other nonsense that you skip over reading. The really interesting thing is what happened during the protest anyways. Things became a bit unruly between protesters and some counter-protesters - and at some point rocks started to fly... all of which would barely be worth a mention, if the vintage sports car of a prominent resident hadn't been parked on the same street. 
 <br><br>
-One dented hood and smashed windshield later, someone was in big trouble. The ever-present camera surveillance in your arcology made it easy to track the rock to the hand of the person who threw it - a rather fat young woman, who immediately got arrested and is awaiting sentencing in the lock-up right now. The video of $him getting booked - complete with a thorough strip-search by a new recruit (since all the officers agreed $he 'had to be hiding something') was definitely amusing. $His reaction was priceless.
+One dented hood and smashed windshield later, someone was in big trouble. The ever-present camera surveillance in your arcology made it easy to track the rock to the hand of the person who threw it - a rather fat young $woman, who immediately got arrested and is awaiting sentencing in the lock-up right now. The video of $him getting booked - complete with a thorough strip-search by a new recruit (since all the officers agreed $he 'had to be hiding something') was definitely amusing. $His reaction was priceless.
 <br><br>
 Given the damage to an expensive classic car and the meager balance of $his bank accounts, this student is definitively up for enslavement. There's no way $he or even anyone related to $him could come up with the cash.
 <<if $arcologies[0].FSHedonisticDecadence != "unset">>
@@ -2180,7 +2180,7 @@ Given the damage to an expensive classic car and the meager balance of $his bank
 
 A (quite unrealistic) blockbuster movie took your arcology by storm recently, causing some curious side effects among the more idealistic type of young people here. The movie plot is about a young woman who sells herself into slavery to be close to a love interest... then wins his adoration and her freedom in the process. Of course, just because it works like that in a movie doesn't mean real life will be the same - which didn't seem to occur to several young women who actually try to put such a plan in action. Mostly, the sudden spike of self-enslavement does lead to a number of handsome college students getting their dicks wet as they enjoy their new status as slave owners - and not a one freed his love-sick slave-girl either.
 <br><br>
-The situation does yield a few business opportunities too, as not all of the guys think just with their dicks. One of them is currently offering his free girl for sale, which your assistant instantly flags for your attention. A video attached to the offer does look quite nice, as the slave-girl happily poses in the nude for $his 'beloved', not knowing that he's planning to sell $him.
+The situation does yield a few business opportunities too, as not all of the guys think just with their dicks. One of them is currently offering his free $girl for sale, which your assistant instantly flags for your attention. A video attached to the offer does look quite nice, as the slave-$girl happily poses in the nude for $his 'beloved', not knowing that he's planning to sell $him.
 <br><br>
 //The young woman will be auctioned off, but you think you should be able to get $him for about <<print cashFormat(4000)>> or so... $he's pretty and a virgin, but the nonexistent sex skills will keep the price relatively low in the end.//
 
@@ -2188,7 +2188,7 @@ The situation does yield a few business opportunities too, as not all of the guy
 
 A (quite unrealistic) blockbuster movie took your arcology by storm recently, causing some curious side effects among the more idealistic type of young people here. The movie plot is about a young woman who sells herself into slavery to be close to a love interest... then wins his adoration and her freedom in the process. Of course, just because it works like that in a movie doesn't mean real life will be the same - which didn't seem to occur to several young women who actually try to put such a plan in action. Mostly, the sudden spike of self-enslavement does lead to a number of handsome college students getting their dicks wet as they enjoy their new status as slave owners - and not a one freed his love-sick slave-girl either.
 <br><br>
-It isn't just all natural females either, as a few men also jumped on the bandwagon, throwing in a little bit of transformative surgery in the mix. Either going all the way to making themselves into female slaves or hoping to be accepted as dick-girls after making the target of their affection fall for a pretty face and breasts. One of former cases gets flagged by your assistant as a business opportunity, as the new slave-owner wasn't impressed by a former male - despite $his good looks and virgin pussy, he can't forget $he originally was a man. A video attached to the 'sale offer' online post does show a relatively pretty young woman, sniffling quietly as $he gets ordered to show off $his body to prospective buyers.
+It isn't just all natural females either, as a few men also jumped on the bandwagon, throwing in a little bit of transformative surgery in the mix. Either going all the way to making themselves into female slaves or hoping to be accepted as dick-girls after making the target of their affection fall for a pretty face and breasts. One of former cases gets flagged by your assistant as a business opportunity, as the new slave-owner wasn't impressed by a former male - despite $his good looks and virgin pussy, he can't forget $he originally was a man. A video attached to the 'sale offer' online post does show a relatively pretty young $woman, sniffling quietly as $he gets ordered to show off $his body to prospective buyers.
 <br><br>
 //The girl should go pretty cheap, just <<print cashFormat(2000)>>. Sounds like the owner mostly wants to not be bothered by $him anymore.//
 
@@ -2204,9 +2204,9 @@ It isn't just all natural females either, as a few men also jumped on the bandwa
 
 Your desk flags a video message as coming from an... interesting source. It is from one of the minor gangs on the lower levels of your arcology - or not so minor anymore, as a pop-up tells you of the power-grab they made barely an hour ago. Curious what they might want, you take the call.
 <br><br>
-A tough-looking man with multiple tattoos and a wife-beater shirt on appears on the screen, nodding in recognition. "Hey there, boss-<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>man<<else>>woman<</if>>. Just calling to pay my respects. Those weak-ass punks that were squatting in this section won't bother you anymore... we took care of em. Now it's just all law-abiding citizens and shit down here - so you don't have to send your security goons to check us out, you know." Your assistant throws up a list of the gang's numerous criminal activities, as well as the estimates what other enterprises they've just taken over. Nothing much out of the ordinary and with the shape the world is in, you got bigger problems. The recommendation is to observe but mostly ignore them, which you casually confirm with a flick of your finger.
+A tough-looking man with multiple tattoos and a wife-beater shirt on appears on the screen, nodding in recognition. "Hey there, boss-<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>man<<else>>woman<</if>>. Just calling to pay my respects. Those weak-ass punks that were squatting in this section won't bother you anymore... we took care of 'em. Now it's just all law-abiding citizens and shit down here - so you don't have to send your security goons to check us out, you know." Your assistant throws up a list of the gang's numerous criminal activities, as well as the estimates what other enterprises they've just taken over. Nothing much out of the ordinary and with the shape the world is in, you've got bigger problems. The recommendation is to observe but mostly ignore them, which you casually confirm with a flick of your finger.
 <br><br>
-Clearing his throat, the new gang-leader on level twenty-five continues, "But that's not all, we got a bit of tribute for ya." Waving his hand, he makes room for two muscular bruisers carrying the unconscious form of another man - easily recognizable from his muscled build and numerous tattoos as a hardened criminal. The face-recognition software tells you he is the now overthrown gangster boss in that area of the arcology. "Everyone knows what fun things you do with your slaves, so we thought it'd fit for this guy. Gonna throw him in an elevator in a minute and send it up, kay? If you make him into a proper brainless slut, you'll have quite a few guys standing in line to have a go. And well, he'd make a capable gladiator in a pit fight too. Have fun with the bastard."
+Clearing his throat, the new gang-leader on level twenty-five continues, "But that's not all, we got a bit of tribute for ya." Waving his hand, he makes room for two muscular bruisers carrying the unconscious form of another man - easily recognizable from $his muscled build and numerous tattoos as a hardened criminal. The face-recognition software tells you $he is the now overthrown gangster boss in that area of the arcology. "Everyone knows what fun things you do with your slaves, so we thought it'd fit for this guy. Gonna throw $him in an elevator in a minute and send it up, kay? If you make $him into a proper brainless slut, you'll have quite a few guys standing in line to have a go. And well, $he'd make a capable gladiator in a pit fight too. Have fun with the bastard."
 <br><br>
 The signal is cut suddenly, and just a few moments later, your assistant flags an elevator going up containing a person needing medical attention. Anticipating your wishes, the planning interface of the remote surgery opens up right away, indicating available options for the criminal's feminized face.
 
@@ -2214,7 +2214,7 @@ The signal is cut suddenly, and just a few moments later, your assistant flags a
 
 A report about a successful operation by your mercenaries waits at your desk when you come in the office this morning. Turns out they tracked a brutal gang that was waylaying travellers near the Free City and stormed their hideout last night. All of the criminals were killed in the process, preventing proper punishments or more... creative uses for them. From the videos of the raid and the fanatic way the men fought to the last man, it seems that this was unavoidable, so you send a quick note of approval to their commander.
 <br><br>
-After the fighting died down, they found a dickgirl inside the compound, harshly used and seemingly the center of many gang-bangs there. A scan of $his biometric data revealed that $he is in fact a slave that ran away about two months ago - into a much worse situation after being caught by the gang, as it turns out. Countless dicks have stretched $his ass wide, $he has been crudely gelded, and they've decorated $him with numerous piercings. As you notify the owner that her property has been retrieved, the woman is distraught at the state of her merchandise, grumbling that a once quite valuable girl is now worth almost nothing. Seems she's unwilling to invest her time and money in caring for the slave. With a sigh, the slave-mistress whips out her smart-phone and starts to set up a selling offer in one of the popular slave trading apps.
+After the fighting died down, they found a dickgirl inside the compound, harshly used and seemingly the center of many gang-bangs there. A scan of $his biometric data revealed that $he is in fact a slave that ran away about two months ago - into a much worse situation after being caught by the gang, as it turns out. Countless dicks have stretched $his ass wide, $he has been crudely gelded, and they've decorated $him with numerous piercings. As you notify the owner that her property has been retrieved, the woman is distraught at the state of her merchandise, grumbling that a once quite valuable $girl is now worth almost nothing. Seems she's unwilling to invest her time and money in caring for the slave. With a sigh, the slave-mistress whips out her smart-phone and starts to set up a selling offer in one of the popular slave trading apps.
 <br><br>
 //The young dickgirl has been used and abused quite a bit, making $him deathly terrified about what might happen to $him next. $He has partially resigned to be nothing but a fuckhole. You can get $him cheap from the owner, it'll be just <<print cashFormat(1000)>>.//
 
@@ -2222,7 +2222,7 @@ After the fighting died down, they found a dickgirl inside the compound, harshly
 
 A report about a successful operation by your mercenaries waits at your desk when you come in the office this morning. Turns out they tracked a brutal gang that was waylaying travellers near the Free City and stormed their hideout last night. All of the criminals were killed in the process, preventing proper punishments or more... creative uses for them. From the videos of the raid and the fanatic way the men fought to the last man, it seems that this was unavoidable, so you send a quick note of approval to their commander.
 <br><br>
-After the fighting died down, they found a woman inside the compound, harshly used and seemingly the center of many gang-bangs there. A scan of $his biometric data revealed that $he is in fact a slave that ran away about two months ago - into a much worse situation after being caught by the gang, as it turns out. Countless dicks have stretched $his pussy and ass wide, $he<<if $activeSlave.physicalAge >= $activeSlave.pubertyAge>> is pregnant with some dead criminal's offspring,<</if>> has been crudely gelded and they've decorated $him with numerous piercings. As you notify the owner that her property has been retrieved, the woman is distraught at the state of her merchandise, grumbling that a once quite valuable girl is now worth almost nothing. Seems she's unwilling to invest her time and money in caring for the slave. With a sigh, the slave-mistress whips out her smart-phone and starts to set up a selling offer in one of the popular slave trading apps.
+After the fighting died down, they found a woman inside the compound, harshly used and seemingly the center of many gang-bangs there. A scan of $his biometric data revealed that $he is in fact a slave that ran away about two months ago - into a much worse situation after being caught by the gang, as it turns out. Countless dicks have stretched $his pussy and ass wide, $he<<if $activeSlave.physicalAge >= $activeSlave.pubertyAge>> is pregnant with some dead criminal's offspring,<</if>> has been crudely gelded, and they've decorated $him with numerous piercings. As you notify the owner that her property has been retrieved, the woman is distraught at the state of her merchandise, grumbling that a once quite valuable $girl is now worth almost nothing. Seems she's unwilling to invest her time and money in caring for the slave. With a sigh, the slave-mistress whips out her smart-phone and starts to set up a selling offer in one of the popular slave trading apps.
 <br><br>
 //The young dickgirl has been used and abused quite a bit, making $him deathly terrified about what might happen to $him next. $He has partially resigned to be nothing but a fuckhole. You can get $him cheap from the owner, it'll be just <<print cashFormat(1000)>>.//
 
@@ -2248,7 +2248,7 @@ The <<if ($activeSlave.actualAge >= 18)>>young woman<<else>>girl<</if>> is best
 
 As a minor point of information on your daily news download, you see that yet another of the new religions (cults really) that tend to spring up like weeds in the Free Cities has met its almost inevitable fate. Even with the most charismatic leader, starry-eyed idealism or boundless greed in milking the followers usually put a sudden end to the various self-declared churches, temples and holy places. In this case, the cult leader successfully made a hasty getaway, leaving his creditors and conned believers behind. Repo men are sent out in force, carting off the contents of the 'house of worship' and the luxurious apartment the man kept.
 <br><br>
-Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when a pretty, young and almost naked <<if ($activeSlave.actualAge >= 18)>>woman<<elseif ($activeSlave.actualAge >= 13)>>girl<<else>>little girl<</if>> walks through the image, escorted by two repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been the cult leader's personal slave. $He certainly has a unique look, waking your interest enough to check the slave markets for $him - and indeed, half an hour later $he's being listed as for sale.
+Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when a pretty, young and almost naked <<if ($activeSlave.actualAge >= 18)>>$woman<<elseif ($activeSlave.actualAge >= 13)>>girl<<else>>little $girl<</if>> walks through the image, escorted by two repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been the cult leader's personal slave. $He certainly has a unique look, waking your interest enough to check the slave markets for $him - and indeed, half an hour later $he's being listed as for sale.
 <br><br>
 The <<if ($activeSlave.actualAge >= 18)>>young woman<<else>>girl<</if>> is best described as being 'angelic', in a stereotypical Western view of the mythical divine messengers. Having jet-black hair and amber eyes, coupled with milky-white skin, there is a pair of beautifully detailed wings tattooed on $his back. A whole row of icons depicting stylized sex acts mark $him as being well versed in sexual matters.
 <br><br>
@@ -2258,7 +2258,7 @@ The <<if ($activeSlave.actualAge >= 18)>>young woman<<else>>girl<</if>> is best
 
 Coming to your desk in the morning, you see that your assistant has flagged an interesting news item for you to check out. Looks like the monthly final in the slave racing league was yesterday. With the push of a button on the keyboard, you check out the rankings and then choose to display a video of the race's end - with a very pretty young woman crossing the finish line, immediately followed by half a dozen further slaves. It is quite a show since of course, all of them are naked - or almost so, as anything but smallish breasts make sports bras a necessity.
 <br><br>
-Whatever your predecessor's faults, he surely did something very right in endorsing the slave racing league when it started to establish itself way back when. These days, many of your residents regularly watch the races going on - and that number rises to include a clear majority in the arcology for the special events that are also in the organizer's program. An absolute favorite of the population is the 'vestalian hunt', in which a dozen virgins are chased along the track by very well-hung dick-girls. Anyone falling behind soon has their cherry taken in the most public way possible, right on the track. Only the quickest manage to make it to the finish line at all without being wrestled down and pounded hard. Quite a risk, with the slaves precious virginity being sacrificed this way, but of course those who make it win their owners large sums of prize money. You've just switched over to see a re-play of the action, seeing the camera move past the very attractive lineup of the race, when your communicator rings with an incoming call.
+Whatever your predecessor's faults, he surely did something very right in endorsing the slave racing league when it started to establish itself way back when. These days, many of your residents regularly watch the races going on - and that number rises to include a clear majority in the arcology for the special events that are also in the organizer's program. An absolute favorite of the population is the 'vestalian hunt', in which a dozen virgins are chased along the track by very well-hung dick-girls. Anyone falling behind soon has their cherry taken in the most public way possible, right on the track. Only the quickest manage to make it to the finish line at all without being wrestled down and pounded hard. Quite a risk, with the slave's precious virginity being sacrificed this way, but of course those who make it win their owners large sums of prize money. You've just switched over to see a re-play of the action, seeing the camera move past the very attractive lineup of the race, when your communicator rings with an incoming call.
 <br><br>
 As fate has it, the person calling is the owner of the local race-track, wanting to offer you a deal. It turns out that he wants to sell one of his dick-girls to you at a fairly reasonable price. When you ask for a reason, the man replies, "Well, $he's a crowd-pleaser alright with that big dick of $hers, but... a bit headstrong. You see, $he punched one of the other girls when they grabbed a virgin at the same time. $He's been a distraction for the rest of the team, so I think it's best to remove $him and bring in new talent." He then sends you $his file to review, including more than a few videos of $him 'in action' on the racetrack - both running as well as fucking.
 <br><br>
@@ -2268,19 +2268,19 @@ As fate has it, the person calling is the owner of the local race-track, wanting
 
 Coming to your desk in the morning, you see that your assistant has flagged an interesting news item for you to check out. Looks like the monthly final in the slave racing league was yesterday. With the push of a button on the keyboard, you check out the rankings and then choose to display a video of the race's end - with a very pretty young woman crossing the finish line, immediately followed by half a dozen further slaves. It is quite a show since of course, all of them are naked - or almost so, as anything but smallish breasts make sports bras a necessity.
 <br><br>
-Whatever your predecessor's faults, he surely did something very right in endorsing the slave racing league when it started to establish itself way back when. These days, many of your residents regularly watch the races going on - and that number rises to include a clear majority in the arcology for the special events that are also in the organizer's program. An absolute favorite of the population is the 'vestalian hunt', in which a dozen virgins are chased along the track by very well-hung dick-girls. Anyone falling behind soon has their cherry taken in the most public way possible, right on the track. Only the quickest manage to make it to the finish line at all without being wrestled down and pounded hard. Quite a risk, with the slaves precious virginity being sacrificed this way, but of course those who make it win their owners large sums of prize money. You've just switched over to see a re-play of the action, seeing the camera move past the very attractive lineup of the race, when your communicator rings with an incoming call.
+Whatever your predecessor's faults, he surely did something very right in endorsing the slave racing league when it started to establish itself way back when. These days, many of your residents regularly watch the races going on - and that number rises to include a clear majority in the arcology for the special events that are also in the organizer's program. An absolute favorite of the population is the 'vestalian hunt', in which a dozen virgins are chased along the track by very well-hung dick-girls. Anyone falling behind soon has their cherry taken in the most public way possible, right on the track. Only the quickest manage to make it to the finish line at all without being wrestled down and pounded hard. Quite a risk, with the slave's precious virginity being sacrificed this way, but of course those who make it win their owners large sums of prize money. You've just switched over to see a re-play of the action, seeing the camera move past the very attractive lineup of the race, when your communicator rings with an incoming call.
 <br><br>
-As fate has it, the person calling is the owner of the local race-track, wanting to offer you a deal. It turns out that he wants to sell one of his well-known virgin runners to you. When you ask him why, he is slightly surprised that you don't know already - turns out, the young woman got caught by an especially motivated chaser during the race yesterday, wrestling $him to the ground and taking $his virginity with a thick shaft. While a great athlete like $him usually still would have a place in his stable, the race track's resident doctor just confirmed that $he's pregnant. With abortion being out of the question - as the fans would see that as scandalous cheating defeating the purpose of the virgin race - the owner now wants to sell $him before $his fame fades.
+As fate has it, the person calling is the owner of the local race-track, wanting to offer you a deal. It turns out that he wants to sell one of his well-known virgin runners to you. When you ask him why, he is slightly surprised that you don't know already - turns out, the young woman got caught by an especially motivated chaser during the race yesterday, wrestling $him to the ground and taking $his virginity with their thick shaft. While a great athlete like $him usually still would have a place in his stable, the race track's resident doctor just confirmed that $he's pregnant. With abortion being out of the question - as the fans would see that as scandalous cheating defeating the purpose of the virgin race - the owner now wants to sell $him before $his fame fades.
 <br><br>
-//The young woman is really pretty and tall, if a bit plain in the breast department. With the moderate fame $he has earned during $his racing career and its spectacular end, $he'd draw raised interest if used as a whore. Due to the fact that $he's no longer a virgin, pregnant and not really trained in sex acts, you could likely negotiate a bit and get $him for <<print cashFormat(5000)>>.//
+//The young $woman is really pretty and tall, if a bit plain in the breast department. With the moderate fame $he has earned during $his racing career and its spectacular end, $he'd draw raised interest if used as a whore. Due to the fact that $he's no longer a virgin, pregnant, and not really trained in sex acts, you could likely negotiate a bit and get $him for <<print cashFormat(5000)>>.//
 
 <<case "racer winner">>
 
 Coming to your desk in the morning, you see that your assistant has flagged an interesting news item for you to check out. Looks like the monthly final in the slave racing league was yesterday. With the push of a button on the keyboard, you check out the rankings and then choose to display a video of the race's end - with a very pretty young woman crossing the finish line, immediately followed by half a dozen further slaves. It is quite a show since of course, all of them are naked - or almost so, as anything but smallish breasts make sports bras a necessity.
 <br><br>
-Whatever your predecessor's faults, he surely did something very right in endorsing the slave racing league when it started to establish itself way back when. These days, many of your residents regularly watch the races going on - and that number rises to include a clear majority in the arcology for the special events that are also in the organizer's program. An absolute favorite of the population is the 'vestalian hunt', in which a dozen virgins are chased along the track by very well-hung dickgirls. Anyone falling behind soon has their cherry taken in the most public way possible, right on the track. Only the quickest manage to make it to the finish line at all without being wrestled down and pounded hard. Quite a risk, with the slaves precious virginity being sacrificed this way, but of course those who make it win their owners large sums of prize money. You've just switched over to see a re-play of the action, seeing the camera move past the very attractive lineup of the race, when your communicator rings with an incoming call.
+Whatever your predecessor's faults, he surely did something very right in endorsing the slave racing league when it started to establish itself way back when. These days, many of your residents regularly watch the races going on - and that number rises to include a clear majority in the arcology for the special events that are also in the organizer's program. An absolute favorite of the population is the 'vestalian hunt', in which a dozen virgins are chased along the track by very well-hung dickgirls. Anyone falling behind soon has their cherry taken in the most public way possible, right on the track. Only the quickest manage to make it to the finish line at all without being wrestled down and pounded hard. Quite a risk, with the slave's precious virginity being sacrificed this way, but of course those who make it win their owners large sums of prize money. You've just switched over to see a re-play of the action, seeing the camera move past the very attractive lineup of the race, when your communicator rings with an incoming call.
 <br><br>
-As fate has it, the person calling is the owner of the local race-track, wanting to offer you a deal. It turns out that he wants to sell one of his very prestigious virgin runners to you. $He's been the champion of the race track for three years in a row now, the virgin queen of the slave-girl sprinters... so the man decided he'd maximize his profit by selling $him at the height of $his popularity instead of chancing a loss in the next big race. It's a young woman's sport, and with new talent being trained, he feels its time to give the <<if $activeSlave.actualAge >= 20>>early twenties<</if>> slave-girl a new purpose. There are numerous interested parties in buying $him of course, but out of respect he is coming to you first.
+As fate has it, the person calling is the owner of the local race-track, wanting to offer you a deal. It turns out that he wants to sell one of his very prestigious virgin runners to you. $He's been the champion of the race track for three years in a row now, the virgin queen of the slave-girl sprinters... so the man decided he'd maximize his profit by selling $him at the height of $his popularity instead of chancing a loss in the next big race. It's a young woman's sport, and with new talent being trained, he feels it's time to give the <<if $activeSlave.actualAge >= 20>>young adult<<elseif $activeSlave.actualAge >= 13>>teenaged<<else>>pre-teen<</if>> slave-girl a new purpose. There are numerous interested parties in buying $him of course, but out of respect he is coming to you first.
 <br><br>
 //The young woman is really pretty and tall, if a bit plain in the breast department. With the fame $he has earned during $his racing career, $he'd draw quite a bit of interest if used as a whore. The price for $him reflects that of course - you doubt you can get a price under <<print cashFormat(10000)>>.//
 
@@ -2306,7 +2306,7 @@ As you're working on some boring administrative matters, a courier comes to your
 <br><br>
 From the looks of all the brochures and extra information included, the association's president is well-versed in how the Free Cities are run... leading him to promote his group directly to you. And not only that - in an effort to curry favor, he included a slave's records, including an offer to buy the obedient milking cow from his own stable for an almost ridiculously low price.
 <br><br>
-//Checking $his stats and the videos included, you see the woman is healthy and well cared for, fitting for a prized milk-producer. $He's a mother of three already and has got another baby on the way, making $his lactation an all natural one. With the registration and all, it'll still just take <<print cashFormat(2500)>> to buy $him and add $him to your own slave lineup.//
+//Checking $his stats and the videos included, you see the $woman is healthy and well cared for, fitting for a prized milk-producer. $He's a mother of three already and has got another baby on the way, making $his lactation an all natural one. With the registration and all, it'll still just take <<print cashFormat(2500)>> to buy $him and add $him to your own slave lineup.//
 
 <<case "farm bull">>
 
@@ -2328,9 +2328,9 @@ From the looks of all the brochures and extra information included, the associat
 
 An invitation to a 'visitation day' at an orphanage in the arcology pops up in your in-box, prompting you to make some room in your schedule to go have a look. Run by a well-meaning non-profit organization active in numerous of the Free Cities, the facility does house quite a few orphans (both local and saved from the chaos of the old world), doing excellent work in teaching them and finding new homes. Still, with times being what they are, the people running things do have a... realistic outlook, in the end. And so, in order to keep the orphanage going, those living there who aren't adopted till they reach maturity are sold as slaves. Legally this practice is easily arranged, as the life-debt for any of the orphans builds up over the years, pretty much automatically putting them over the limit for enslavement.
 <br><br>
-Knowing what's coming, the teachers in the facility do train their pupils accordingly and try to instill obedience and acceptance into those soon reaching eighteen years of age, but there are always those with whom the lessons don't quite take hold. The young woman that catches your eye from among the newly of age orphans is such a case... from all accounts, $he's rather headstrong and doesn't bend $his will to anyone really - for example having long lost $his virginities one way or another. Still, a young slave at a fairly low price could be worth the investment for anyone who likes breaking them in...
+Knowing what's coming, the teachers in the facility do train their pupils accordingly and try to instill obedience and acceptance into those soon reaching eighteen years of age, but there are always those with whom the lessons don't quite take hold. The young $woman that catches your eye from among the newly of age orphans is such a case... from all accounts, $he's rather headstrong and doesn't bend $his will to anyone really - for example having long lost $his virginities one way or another. Still, a young slave at a fairly low price could be worth the investment for anyone who likes breaking them in...
 <br><br>
-//A short discussion with an administrator establishes the young woman's asking price at <<print cashFormat(1500)>>.//
+//A short discussion with an administrator establishes the young $woman's asking price at <<print cashFormat(1500)>>.//
 
 <<case "orphan femboy">>
 
@@ -2344,16 +2344,16 @@ Knowing what's coming, the teachers in the facility do train their pupils accord
 
 You've been kept busy until late at night. The warm blue glow of your desk screen illuminates your work. Suddenly, your assistant flags an incoming vidcall as urgent. The call had decent encryption, but could be traced to a rural location several miles away from your arcology. The callers only specified that they had a good deal to offer.
 <br><br>
-With apprehension, you decide to let the call through. The screen switches from your work to the vidcall. Several armed men, cloaked in black, are standing around a pretty young girl. $He's gagged and bound to a chair.
+With apprehension, you decide to let the call through. The screen switches from your work to the vidcall. Several armed men, cloaked in black, are standing around a pretty young $girl. $He's gagged and bound to a chair.
 <br><br>
-The men explain that they've captured the young daughter of a wealthy old-world businessman, by abducting $him straight from a gated community. It's far from uncommon for girls to be captured and sold as slaves, but that these men had the balls to raid a gated community is something else. There are still some places in the world that are considered safe, where the world's deterioration isn't readily apparent. Showing that these places aren't safe from the predations of slavers upsets what little balance that the old world still has left, and that isn't always a good thing for the Free Cities.<br><br>
+The men explain that they've captured the young daughter of a wealthy old-world businessman, by abducting $him straight from a gated community. It's far from uncommon for <<= $girl>>s to be captured and sold as slaves, but that these men had the balls to raid a gated community is something else. There are still some places in the world that are considered safe, where the world's deterioration isn't readily apparent. Showing that these places aren't safe from the predations of slavers upsets what little balance that the old world still has left, and that isn't always a good thing for the Free Cities.<br><br>
 At any rate, $he's a fine capture. And unsurprisingly, they want to get rid of $him. Fast. They're willing to offer a below-market price for $his enslavement.
 <br><br>
 //You can buy out $his auction for <<print cashFormat(10000)>>.//
 
 <<case "desperate university milf">>
 
-A call comes in from an old world household. The caller appears on your screen, a worn down matronly woman flanked by $his two daughters. The middle-aged mother addresses you in a formal yet halting manner, as if rehearsing an unfamiliar speech. "I don't know how closely you watch the old world from where you are, but finding steady work without an education is becoming increasingly difficult".
+A call comes in from an old world household. The caller appears on your screen, a worn down matronly $woman flanked by $his two daughters. The middle-aged mother addresses you in a formal yet halting manner, as if rehearsing an unfamiliar speech. "I don't know how closely you watch the old world from where you are, but finding steady work without an education is becoming increasingly difficult".
 <br><br>
 The mother pauses to glance at $his daughters before continuing. "I want my daughters to have a chance to make a life for themselves. I know that if I can pay their way towards attending University, then I will have succeeded as a parent."
 <br><br>
@@ -2363,7 +2363,7 @@ $He begins to weep quietly, but continues after $his daughters lay their hands s
 
 Your desk flags a video message as coming from an influential old world businessman. To your surprise, rather than the portly visage you were expecting, a pretty young face appears on your screen. "Oh. My. God. How long does it take to answer a call?"
 <br><br>
-The girl speaks in a ridiculously high, bubblegum voice and bounces indignantly around $his father's luxurious office as $he rants, barely acknowledging your presence on the other end of the call. "Daddy says that I'm spending too much of his money but what the hell is all of his money for if he's not spending it on his little girl?"
+The $girl speaks in a ridiculously high, bubblegum voice and bounces indignantly around $his father's luxurious office as $he rants, barely acknowledging your presence on the other end of the call. "Daddy says that I'm spending too much of his money but what the hell is all of his money for if he's not spending it on his little $girl?"
 <br><br>
 $He pauses, looking directly at you for the first time, though you get the sense that $he seems more interested in your own luxurious surroundings. "Daddy told me all about you arcology types, so I know what you're all about. Anyways, I don't care about freedom and stuff if you treat me like the perfect princess I am."
 <br><br>
@@ -2383,7 +2383,7 @@ Coming to your desk in the morning, you see that your assistant has flagged an i
 <br><br>
 The current sale offer comes from one of the arcology's oldest college frat-houses - apparently a wealthy alumnus of the fraternity has bestowed a significant donation on the current brothers of the frat house. A few visits to the slave market later, the frat house is practically flush with fresh, nubile, slavegirls. Yet, all these new slaves have left little room for one of the frat house's oldest fixtures - an older female slave who doubled as both a housekeeper and fuckhole for a few generations of horny students. $He's pretty and has been well-trained over the years, if a bit exhausted from $his decades of serving as a sexual outlet to a house of frat brothers.
 <br><br>
-//The brothers don't want to hold onto $him for long, having already been entranced by their multitude of new purchases - which makes this a nice opportunity, as the price for the middle-aged woman is set pretty low. It'll just take <<print cashFormat(2500)>> to buy $him off their hands.//
+//The brothers don't want to hold onto $him for long, having already been entranced by their multitude of new purchases - which makes this a nice opportunity, as the price for the middle-aged $woman is set pretty low. It'll just take <<print cashFormat(2500)>> to buy $him off their hands.//
 
 <<case "immigrant">>
 
@@ -2391,17 +2391,17 @@ Your desk flags a video message as having potential. It's a desperate refugee fr
 
 <<case "wandering homeless">>
 
-As you are heading back to your penthouse from overseeing a promising new store's opening, you noticed a feminine face peeking around a nearby corner. It quickly darts out of sight before a hand beckons you in. The alley isn't particularly out of sight, so no harm looking in. The girl is young, with silver hair, blue eyes, dark skin and<<if $activeSlave.preg > 0>>is enormously pregnant<<else>>a waifish build<</if>>; certainly an eye-catching display. $He doesn't seem to speak much $language at all, and judging by $his gesturing, is trying to ask you to purchase $him.
+As you are heading back to your penthouse from overseeing a promising new store's opening, you noticed a feminine face peeking around a nearby corner. It quickly darts out of sight before a hand beckons you in. The alley isn't particularly out of sight, so no harm looking in. The $girl is young, with silver hair, blue eyes, dark skin and<<if $activeSlave.preg > 0>>is enormously pregnant<<else>>a waifish build<</if>>; certainly an eye-catching display. $He doesn't seem to speak much $language at all, and judging by $his gesturing, is trying to ask you to purchase $him.
 
 <<case "desperate birth">>
 
-As you are heading back to your penthouse from inspecting a new line of sex shops, you hear a pained moan emanate from a nearby alley. Looking in, you find a heavily pregnant <<if $activeSlave.visualAge > 17>>girl<<elseif $activeSlave.visualAge > 12>>teenager<<else>>little girl<</if>> seated, legs spread as wide as $he can, in a pool of $his own fluids. Your medical training kicks in and you descend on the laboring woman, only to find $he is well into giving birth. Judging by $his exhaustion and the ever drying amniotic fluid and blood, $he has been struggling for quite some time. The reason is evident,
+As you are heading back to your penthouse from inspecting a new line of sex shops, you hear a pained moan emanate from a nearby alley. Looking in, you find a heavily pregnant <<if $activeSlave.visualAge > 17>>$girl<<elseif $activeSlave.visualAge > 12>>teenager<<else>>little $girl<</if>> seated, legs spread as wide as $he can, in a pool of $his own fluids. Your medical training kicks in and you descend on the laboring $woman, only to find $he is well into giving birth. Judging by $his exhaustion and the ever drying amniotic fluid and blood, $he has been struggling for quite some time. The reason is evident,
 <<if $activeSlave.visualAge <= 12>>
 	$his body is far too young to birth $his child and it has become firmly wedged in $his pelvis.
 <<else>>
 	$his body is ill-suited for childbirth and the unfortunate thing has lodged in $his pelvis.
 <</if>>
-Every push, every desperate contraction must be agonizing to $him. Fortunately you know what to do, however, it will not come cheap. Hour after hour you work with the girl, $his debt to you growing ever higher, until you finally manage to coax the newborn from $his battered body. $He smiles at $his baby before losing consciousness; $he is in really bad shape. Odds are $his child will grow up an orphan, even if you call in $his debt.
+Every push, every desperate contraction must be agonizing to $him. Fortunately you know what to do, however, it will not come cheap. Hour after hour you work with the $girl, $his debt to you growing ever higher, until you finally manage to coax the newborn from $his battered body. $He smiles at $his baby before losing consciousness; $he is in really bad shape. Odds are $his child will grow up an orphan, even if you call in $his debt.
 
 <<case "overwhelmed farmgirl">>
 
@@ -2430,11 +2430,11 @@ $His odd behaviour suggests that $his will to live has nearly been snuffed out.
 
 While perusing the confidential documents in a nearby hospital's databases, you come across a particularly interesting medical record with a rather lovely face attached to it. It would seem an incredibly attractive and good gened
 <<if $activeSlave.actualAge > 17>>
-	young woman
+	young $woman
 <<elseif $activeSlave.actualAge > 12>>
 	teenager
 <<else>>
-	little girl
+	little $girl
 <</if>>
 has been has been receiving frequent prenatal check ups
 <<if $seeHyperPreg == 0>> 
@@ -2442,7 +2442,7 @@ has been has been receiving frequent prenatal check ups
 <<else>>
 	for the multiples crowding $his womb.
 <</if>>
-Judging by $his payment plan, the worrisome mother is driving herself into a steep debt and doesn't even realize it. You could easily buy $him out and make a tidy profit off $his likely to be valuable child<<if $seeHyperPreg == 1>>ren<</if>>, or keep them for yourself, if you wanted.
+Judging by $his payment plan, the worrisome mother is driving $himself into a steep debt and doesn't even realize it. You could easily buy $him out and make a tidy profit off $his likely to be valuable child<<if $seeHyperPreg == 1>>ren<</if>>, or keep them for yourself, if you wanted.
 	
 <<case "rogue cyborg">>
 
@@ -2454,7 +2454,7 @@ As a minor point of information on your daily news download, you see that yet an
 <br><br>
 Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when a pretty, young, naked and extremely pregnant <<if ($activeSlave.actualAge >= 18)>>woman<<elseif ($activeSlave.actualAge >= 13)>>girl<<else>>little girl<</if>> slowly waddles through the image, escorted by two repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been the cult leader's personal slave. $He caught your interest just enough to check the slave markets for a potential better look at that cult's tastes - and indeed, half an hour later $he's being listed as for sale.
 <br><br>
-The <<if ($activeSlave.actualAge >= 18)>>young woman<<elseif ($activeSlave.actualAge >= 13)>>girl<<else>>child<</if>> is likely a virgin, given $his obvious discomfort at being poked and prodded for display and is trying $his hardest to cover $his shame. Quickly reading through the details, your suspicions are confirmed; $he is indeed a heavily pregnant virgin. Odds are high that $he was treated as a "Virgin Mary" for the cult and is likely going to catch the eye of any collectors of religious objects.
+The <<if ($activeSlave.actualAge >= 18)>>young $woman<<elseif ($activeSlave.actualAge >= 13)>>$girl<<else>>child<</if>> is likely a virgin, given $his obvious discomfort at being poked and prodded for display and is trying $his hardest to cover $his shame. Quickly reading through the details, your suspicions are confirmed; $he is indeed a heavily pregnant virgin. Odds are high that $he was treated as a "Virgin Mary" for the cult and is likely going to catch the eye of any collectors of religious objects.
 <br><br>
 //Someone already started bidding for $him and more bids are coming in fast. As such things usually go, you guess that the price will come out to about <<print cashFormat(10000)>> in the end.//
 
@@ -2462,7 +2462,7 @@ The <<if ($activeSlave.actualAge >= 18)>>young woman<<elseif ($activeSlave.actua
 
 As a minor point of information on your daily news download, you see that yet another of the new religions (cults really) that tend to spring up like weeds in the Free Cities has met its almost inevitable fate. Even with the most charismatic leader, starry-eyed idealism or boundless greed in milking the followers usually put a sudden end to the various self-declared churches, temples and holy places. In this case, the cult leader successfully made a hasty getaway, leaving his creditors and conned believers behind. Repo men are sent out in force, carting off the contents of the 'house of worship' and the luxurious apartment the man kept.
 <br><br>
-Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when the obscenely child-filled body of a <<if ($activeSlave.actualAge >= 18)>>woman<<elseif ($activeSlave.actualAge >= 13)>>girl<<else>>little girl<</if>> is slowly carted through the image, pushed along by several repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been a slave used by the cult leader for religious rituals. $He caught your interest just enough to check the slave markets for a potential better look at that cult's tastes - and indeed, half an hour later $he's being listed as for sale.
+Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when the obscenely child-filled body of a <<if ($activeSlave.actualAge >= 18)>>$woman<<elseif ($activeSlave.actualAge >= 13)>>$girl<<else>>little $girl<</if>> is slowly carted through the image, pushed along by several repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been a slave used by the cult leader for religious rituals. $He caught your interest just enough to check the slave markets for a potential better look at that cult's tastes - and indeed, half an hour later $he's being listed as for sale.
 <br><br>
 The <<if ($activeSlave.actualAge >= 18)>>young woman<<elseif ($activeSlave.actualAge >= 13)>>girl<<else>>child<</if>> isn't in the greatest of shape, which is understandable when one is ready to burst at the seams with child, and completely devoid of any semblance of awareness of the current situation. $He was likely nothing more than a sacrifice to act as a conduit for their Lord to enter the world; in other words, an excuse to load a girl up with fertility drugs and fuck $him ridiculously pregnant before your followers while they shout praise to the heavens to every load of cum. Going by how distinctly you can see the life inside $him pushing against the thinning walls of $his abdomen, $he's likely going to either give birth or explode into crying babies at any time, something not lost on those looking to pick up a cheap bundle of future prospects.
 <br><br>
@@ -2476,7 +2476,7 @@ This call is coming from a public kiosk, which is usually an indication that the
 <br><br>
 He explains that he is the younger of two princes, and is about to carry out a plan to poison his father and take the throne for himself. However, his older brother is standing in the way of his plan simply by virtue of being next in line for the throne. He sees selling his brother to you as a more humane method of disposing of him, not wanting to have to kill any more family than he has to. It doesn't hurt that he stands to make a lot of money either.
 <br><br>
-His offer stands at a firm <<print cashFormat(100000)>>, but you've seen his brother; you stand to gain quite the addition to your chattel should you take the offer.
+//His offer stands at a firm <<print cashFormat(100000)>>, but you've seen his brother; you stand to gain quite the addition to your chattel should you take the offer.//
 
 <<case "forbidden love">>
 
@@ -2484,9 +2484,9 @@ You receive so many messages, as a noted titan of the new Free Cities world, tha
 <br><br>
 This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness and not someone of high society. This call, as you would expect, is different. The moment the person on the other end introduces themselves you immediately recognize why your assistant brought this to your attention. The caller is the King of an old world kingdom, contacting you by an untraceable means due of the conspiratorial nature of his proposal.
 <br><br>
-He explains that his daughter, the princess, attempted to marry a man of improper station, and was deflowered by him. For this, her would-be fiancé was executed and she confined to a cell. Finding his daughter impossible to deal with after killing her boyfriend, he's decided he'd rather just be rid of her than have to continue carrying the shame of having such an unruly slut as a member of the royal family.
+He explains that his daughter, the princess, attempted to marry a man of improper station, and was deflowered by him. For this, $his would-be fiancé was executed and $he confined to a cell. Finding his daughter impossible to deal with after killing $his boyfriend, he's decided he'd rather just be rid of $him than have to continue carrying the shame of having such an unruly slut as a member of the royal family.
 <br><br>
-His offer stands at a firm <<print cashFormat(100000)>>, but you've seen her exploits; you stand to gain quite the addition to your chattel should you take the offer.
+//His offer stands at a firm <<print cashFormat(100000)>>, but you've seen $his exploits; you stand to gain quite the addition to your chattel should you take the offer.//
 
 <<case "cleaning house">>
 
@@ -2494,15 +2494,14 @@ You receive so many messages, as a noted titan of the new Free Cities world, tha
 <br><br>
 This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness and not someone of high society. This call, as you would expect, is different. The moment the person on the other end introduces themselves you immediately recognize why your assistant brought this to your attention. The caller is the King of an old world kingdom, contacting you by an untraceable means due of the conspiratorial nature of his proposal.
 <br><br>
-He explains that one of his servant girls was impregnated by his fool of a son, and that he wants to sell you the girl and her nosy coworkers to clean house and cover it up.
+He explains that one of his servant <<= $girl>>s was impregnated by his fool of a son, and that he wants to sell you the $girl and $his nosy coworkers to clean house and cover it up.
 <<if $arcologies[0].FSrepopulationFocus != "unset">>
 	You relish at the opportunity to obtain an expectant mother and some decent slaves.
 <<else>>
 	You aren't particularly concerned with the pregnancy, but it sounds like you could get a several decent slaves out of this.
 <</if>>
-
 <br><br>
-His offer stands at <<print cashFormat(10000)>> per head for a total of <<print cashFormat(50000)>>. 
+//His offer stands at <<print cashFormat(10000)>> per head for a total of <<print cashFormat(50000)>>.//
 
 <</switch>> /* END SLAVE GENERATION AND INTRODUCTION */
 
@@ -2600,7 +2599,7 @@ His offer stands at <<print cashFormat(10000)>> per head for a total of <<print
 		<<case "female SD">>
 			Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with ' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where $he is being kept, you tell the young woman $he's getting out of jail right away. $He cooperates to having $his biometric readings taken and logged, only later realizing this isn't for $his release but to register $him as a slave. In shock and with tears in $his eyes, $he dejectedly follows the guard you summon to have $him brought to the slave quarters.
 		<<case "female SD 2">>
-			Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with ' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where $he is being kept, you tell the young woman $he's getting out of jail right away. $He cooperates to having $his biometric readings taken and logged, only later realizing this isn't for $his release but to register $him as a slave. $He makes a poor decision to rebel against you on the way to the slave quarters, but the jiggling mass makes it a pathetically short distance before tiring and dejectedly following the guard the rest of the way.
+			Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with ' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where $he is being kept, you tell the young $woman $he's getting out of jail right away. $He cooperates to having $his biometric readings taken and logged, only later realizing this isn't for $his release but to register $him as a slave. $He makes a poor decision to rebel against you on the way to the slave quarters, but $his jiggling mass makes it a pathetically short distance before tiring and dejectedly following the guard the rest of the way.
 		<<case "male SD">>
 			Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where he is being kept, you tell the young man he's getting out of jail right away. He cooperates to having his biometric readings taken and logged, only later realizing this isn't for a release but to register him as a slave. In shock and with tears in his eyes, he gets angry and tries to fight, only to be overwhelmed by your guards and be dragged off to the remote surgery. It doesn't take long at all to add a pretty dickgirl to your slave quarters after that.
 		<<case "female SE">>
@@ -2618,15 +2617,15 @@ His offer stands at <<print cashFormat(10000)>> per head for a total of <<print
 		<<case "blessed virgin">>
 			Winning out in the auction, you have the girl brought to you straight away. $He is helped into your penthouse in semitransparent shimmering gown - some sort of cult garb that was thrown into the sale as a bonus. It certainly looks amazing on $him, but you want to see all of your new acquisition so you order $him to strip. With quivering hands, $he slides the fabric off and lets it fall to the floor, then submits to biometric scanning, registering $him as your property.
 		<<case "blessed vessel">>
-			Winning out in the auction, you have the girl brought to you straight away. $He is rolled into your penthouse completely nude giving you a full view of $his cavernous pussy and how it is barely holding back a flood of life from being released upon your floor. Pondering whether or not this was worth it, you submit $him to biometric scanning, registering $him, and $his coming brood, as your property.
+			Winning out in the auction, you have the $girl brought to you straight away. $He is rolled into your penthouse completely nude giving you a full view of $his cavernous pussy and how it is barely holding back a flood of life from being released upon your floor. Pondering whether or not this was worth it, you submit $him to biometric scanning, registering $him, and $his coming brood, as your property.
 		<<case "racer DG chaser">>
-			After some negotiations with the race track owner, you finally agree on a good price. After he tells his subordinates to bring the girl to you, the two of you chat a bit about business matters and you're invited to the owner's booth for the next big race. A short while later, guards bring in the dickgirl athlete, dressed in nothing but a long bathrobe and with a slightly sullen look on $his face. Seems like $he was brought here from $his former owner's premises without so much as a warning or chance to put on any clothes. He really must have wanted $him out of his racing stable quickly. On your orders, $he pushes the robe over $his shoulders and lets it fall to the floor, then submits to biometric scanning, registering $him as your property.
+			After some negotiations with the race track owner, you finally agree on a good price. After he tells his subordinates to bring the $girl to you, the two of you chat a bit about business matters and you're invited to the owner's booth for the next big race. A short while later, guards bring in the dickgirl athlete, dressed in nothing but a long bathrobe and with a slightly sullen look on $his face. Seems like $he was brought here from $his former owner's premises without so much as a warning or chance to put on any clothes. He really must have wanted $him out of his racing stable quickly. On your orders, $he pushes the robe over $his shoulders and lets it fall to the floor, then submits to biometric scanning, registering $him as your property.
 		<<case "racer loser">>
 			After some negotiations with the race track owner, you finally agree on a good price. After he tells his subordinates to bring the girl to you, the two of you chat a bit about business matters and you're invited to the owner's booth for the next big race. A short while later, guards bring in the young athlete, dressed in a cute yet revealing white dress, the 'showing off' outfit used for virgin runners - or ex-virgins, in $his case. On your orders, $he obediently takes it off, letting the thin fabric fall to the floor, then submits to biometric scanning, registering $him as your property.
 		<<case "racer winner">>
 			After some negotiations with the race track owner, you finally agree on a good price. After he tells his subordinates to bring the girl to you, the two of you chat a bit about business matters and you're invited to the owner's booth for the next big race. A short while later, guards bring in the virgin athlete, dressed in a cute yet revealing white dress, highlighting $his pureness and virginity. On your orders, $he readily takes it off, letting the thin fabric fall to the floor, then submits to biometric scanning, registering $him as your property.
 		<<case "repo housekeeper">>
-			With a few keystrokes, you wire the payment to the repo company, then wait for $his delivery. After being brought into your penthouse by security, the legalities and biometric scanning with $him are taken care off fairly quickly and without fuss. Stepping towards you after the chime announcing a successful registration as your property, $activeSlave.slaveName lowers $his head obediently and asks, "<<Master>>, what will my new tasks in your household be? Shall I just clean or will there be... other things for me to do?" The eager tremble in $his voice tells you that $he's more than a little aroused by the thought of being used, so you tell $him it'll all depend on if $he's a good girl...
+			With a few keystrokes, you wire the payment to the repo company, then wait for $his delivery. After being brought into your penthouse by security, the legalities and biometric scanning with $him are taken care off fairly quickly and without fuss. Stepping towards you after the chime announcing a successful registration as your property, $activeSlave.slaveName lowers $his head obediently and asks, "<<Master>>, what will my new tasks in your household be? Shall I just clean or will there be... other things for me to do?" The eager tremble in $his voice tells you that $he's more than a little aroused by the thought of being used, so you tell $him it'll all depend on if $he's a good $girl...
 		<<case "repo nanny">>
 			With a few keystrokes, you wire the payment to the repo company, then wait for $his delivery. After being brought into your penthouse by security, the legalities and biometric scanning with $him are taken care off fairly quickly and without fuss. Stepping towards you after the chime announcing a successful registration as your property, $activeSlave.slaveName lowers $his head obediently and asks, "<<Master>>, I - umm... what will be required of me? I'm really good with children and... and I can sing. Also, I've -" The fearful tremble in $his voice tells you that $he's more than a little afraid of what you might have planned for $him. Waving off the slave's frightened babbling, you tell $him that you'll decide what to do with $him when you feel like it.
 		<<case "farm cow">>
@@ -2646,7 +2645,7 @@ His offer stands at <<print cashFormat(10000)>> per head for a total of <<print
 		<<case "repo milf housekeeper">>
 			With a few keystrokes, you wire the payment to the frat house, then wait for $his delivery. After being brought into your penthouse by security, the legalities and biometric scanning with $him are taken care off fairly quickly and without fuss. Stepping towards you after the chime announcing a successful registration as your property, $activeSlave.slaveName lowers $his head obediently and asks, "<<Master>>, what will my new tasks in your household be? Shall I just clean or will there be... other things for me to do?" The eager tremble in $his voice tells you that $he's more than a little aroused by the thought of being used, so you tell $him it'll all depend on if $he's a good MILF.
 		<<case "spoiled daughter">>
-			A few days after granting your assent to the girl's offer, $he appears at your penthouse laden with luggage and handbags. Much to your relief, $he gets through the legalities and biometric scanning with little more than a pout.
+			A few days after granting your assent to the $girl's offer, $he appears at your penthouse laden with luggage and handbags. Much to your relief, $he gets through the legalities and biometric scanning with little more than a pout.
 		<<case "desperate university milf">>
 			$He cooperates as the biometric scanners scrupulously record $his every particular as belonging not to a person but to a piece of human property. $He willingly places $his biometric signature in testament to the truth of $his voluntary enslavement. The process is completed with a distinct anticlimax: $he is one of your slaves now. $He looks almost relaxed, content in the knowledge that $his daughters' education has been paid in full.
 		<<case "immigrant">>
@@ -2660,7 +2659,7 @@ His offer stands at <<print cashFormat(10000)>> per head for a total of <<print
 		<<case "princely betrayal">>
 			You agree to purchase the prince and wire the money. The next day, a rather expensive-looking VTOL comes and drops off an angry slave wearing fine clothing and a pair of shackles on each set of limbs. Despite $his bindings, $he puts up quite the fight before the legalities and biometric scanning are complete.
 		<<case "forbidden love">>
-			You agree to purchase the princess and wire the money. The next day, a rather expensive-looking VTOL comes and drops off an angry slave wearing fine clothing and a pair of shackles on each set of limbs. You truly wish she came gagged after the string of insults and slurs she hurls at you during the enslavement process.
+			You agree to purchase the princess and wire the money. The next day, a rather expensive-looking VTOL comes and drops off an angry slave wearing fine clothing and a pair of shackles on each set of limbs. You truly wish $he came gagged after the string of insults and slurs $he hurls at you during the enslavement process.
 		<</switch>>
 		<<switch $recruit>>
 		<<case "desperate birth" "blessed vessel">>
diff --git a/src/uncategorized/reputation.tw b/src/uncategorized/reputation.tw
index 82b0283056a9eeb44e433b91979df17f5f820210..a1e639a1416eecf17204bf9300ccb3bd33588cb6 100644
--- a/src/uncategorized/reputation.tw
+++ b/src/uncategorized/reputation.tw
@@ -765,11 +765,7 @@ On formal occasions, you are announced as $PCTitle.
 <<elseif $arcologies[0].FSRestart != "unset">>
 	<<if $failedElite > 300>>
 		The Societal Elite @@.red;have departed from your arcology in disgust@@.
-		<<set $arcologies[0].FSRestart = "unset">>
-		<<set $arcologies[0].FSRestartDecoration = 20>>
-		<<set $arcologies[0].FSRestartLaw = 0>>
-		<<set $FSCredits += 1>>
-		<<set $failedElite = 0>>
+		<<run removeFS("FSRestart")>>
 		<<set $rep -= 10000>>
 		<<set $ACitizens = Math.max($ACitizens - random(30,100), 0)>>
 		<<if $arcologies[0].prosperity > 50>>
diff --git a/src/uncategorized/seLethalPit.tw b/src/uncategorized/seLethalPit.tw
index 73c493caf15cc56fa63f2cb46fa1295c9a407492..ae85c439d8d029d50681d100fc71e3e0c60b8607 100644
--- a/src/uncategorized/seLethalPit.tw
+++ b/src/uncategorized/seLethalPit.tw
@@ -15,22 +15,23 @@
 		<<goto "Nonrandom Event">>
 	<</if>>
 <<else>>
-	<<switch $pitAnimalType>>
-	<<case "wolf" "fox" "jackal" "dingo">>
+	<<switch $pitAnimalType.type>>
+	<<case "canine">>
 		<<set _animal = $activeCanine>>
-	<<case "horse">>
+	<<case "hooved">>
 		<<set _animal = $activeHooved>>
-	<<case "cougar" "jaguar" "lynx" "leopard" "lion" "tiger">>
+	<<case "feline">>
 		<<set _animal = $activeFeline>>
-	<<default>>
-		<<set _animal = "undefined">>
 	<</switch>>
 <</if>>
 
-<<if $pitAnimal > 0 && _animal == "undefined">>
-	This week, _fighterOne.slaveName was scheduled to fight an animal to the death, but was spared because no animal has been chosen.
+This week's pit fight is between _fighterOne.slaveName and <<if $pitAnimal == 0>>_fighterTwo.slaveName<<else>>a _animal.species<</if>>. 
+<<if $pitAudience == "none">>
+	You are alone above the pit, left to watch them kill and die in private.
+<<elseif $pitAudience == "free">>
+	Your guests line the rim of the pit, joking and betting, nervous and excited by the close prospect of watching a girl die.
 <<else>>
-	This week's pit fight is between _fighterOne.slaveName and <<if $pitAnimal == 0>>_fighterTwo.slaveName<<else>>a _animal.species<</if>>. <<if $pitAudience == "none">>You are alone above the pit, left to watch them kill and die in private.<<elseif $pitAudience == "free">>Your guests line the rim of the pit, joking and betting, nervous and excited by the close prospect of watching a girl die.<<else>>The attendees line the rim of the pit, betting and arguing, nervous and excited by the close prospect of watching a girl die.<</if>>
+	The attendees line the rim of the pit, betting and arguing, nervous and excited by the close prospect of watching a girl die.
 <</if>>
 
 <<if $arcologies[0].FSRomanRevivalist != "unset">>
@@ -351,11 +352,11 @@ You review the rules - the <<if $pitAnimal == 0>>combatants<<else>>slave<</if>>
 <<else>>	/*if fighting an animal*/
 	<<set $activeSlave = _fighterOne>>
 	<<set _fighterTwo = _animal>>
-	<<switch $pitAnimalType>>
-	<<case "hooved">>
-		<<set _fighterTwoDeadliness = (random(1,3))>>
+	<<switch $pitAnimalType.type>>
 	<<case "canine">>
 		<<set _fighterTwoDeadliness = (random(2,4))>>
+	<<case "hooved">>
+		<<set _fighterTwoDeadliness = (random(1,3))>>
 	<<case "feline">>
 		<<set _fighterTwoDeadliness = (random(2,6))>>
 	<</switch>>
diff --git a/src/uncategorized/seNonlethalPit.tw b/src/uncategorized/seNonlethalPit.tw
index 69f0b38df4d12edb2da89085da04dba5b2795f29..4c3c19c3c9c1b742221d559109d45615f2cb0398 100644
--- a/src/uncategorized/seNonlethalPit.tw
+++ b/src/uncategorized/seNonlethalPit.tw
@@ -15,21 +15,19 @@
 		<<goto "Nonrandom Event">>
 	<</if>>
 <<else>>
-	<<switch $pitAnimalType>>
-	<<case "wolf" "fox" "jackal" "dingo">>
+	<<switch $pitAnimalType.type>>
+	<<case "canine">>
 		<<set _animal = $activeCanine>>
-	<<case "horse">>
+	<<case "hooved">>
 		<<set _animal = $activeHooved>>
-	<<case "cougar" "jaguar" "lynx" "leopard" "lion" "tiger">>
+	<<case "feline">>
 		<<set _animal = $activeFeline>>
-	<<default>>
-		<<set _animal = "undefined">>
 	<</switch>>
 <</if>>
 
 <<if $pitAnimal == 0>>
 	This week's pit fight is between _fighterOne.slaveName and _fighterTwo.slaveName. 
-<<elseif $pitAnimal == 1 && _animal != "undefined">>
+<<elseif $pitAnimal == 1>>
 	This week a _animal.species is going to use _fighterOne.slaveName.
 <<else>>
 	This week, _fighterOne.slaveName was scheduled to be used by an animal, but is spared because no animal has been chosen.
@@ -1006,7 +1004,7 @@
 	<<if $pitBG == 0 || ($Bodyguard.ID != _loser.ID)>>
 		<<set $fighterIDs.push(_loser.ID)>>
 	<</if>>
-<<elseif _animal != "undefined">>	/*if an animal is using the slave*/
+<<else>>	/*if an animal is using the slave*/
 	<<set $activeSlave = _fighterOne>>
 
 	<<if canDoVaginal($activeSlave)>>
diff --git a/src/uncategorized/seRetirement.tw b/src/uncategorized/seRetirement.tw
index 310a306bb584f380c105bc44da7fc0fd068bd300..c65be1850f7131c133337207ef458928e4ec078a 100644
--- a/src/uncategorized/seRetirement.tw
+++ b/src/uncategorized/seRetirement.tw
@@ -9,7 +9,12 @@
 <<else>>
 	<<set _playerName = $PC.name>>
 <</if>>
-<<run Enunciate($activeSlave)>>
+<<run Enunciate(_clonedSlave)>>
+<<setLocalPronouns _clonedSlave>>
+<<set _sr = $slaveIndices[$activeSlave.relationshipTarget]>>
+<<if def _sr>>
+	<<setLocalPronouns $slaves[_sr] 2>>
+<</if>>
 
 $activeSlave.slaveName is retiring from sexual slavery this week,
 
@@ -20,43 +25,41 @@ in a way that will fill the rest of your property with envy and @@.mediumaquamar
 	<<set $slaves[$i].trust += 3>>
 <</for>>
 <<if $activeSlave.relationship > 3>>
-	<<set _sr = $slaveIndices[$activeSlave.relationshipTarget]>>
-	<<if ndef _sr>>@@.red;Error, relationshipTarget not found.@@<</if>>
-	$slaves[_sr].slaveName, for her part, is @@.hotpink;overjoyed,@@ though also a bit sad. She looks forward to joining $activeSlave.slaveName one day.
+	$slaves[_sr].slaveName, for _his2 part, is @@.hotpink;overjoyed,@@ though also a bit sad. _He2 looks forward to joining $activeSlave.slaveName one day.
 	<<set $slaves[_sr].devotion += 10>>
 <</if>>
 <br><br>
 
-She is retiring into citizenship, with a substantial annuity that will provide her with a secure if not luxurious life.
+$He is retiring into citizenship, with a substantial annuity that will provide $him with a secure if not luxurious life.
 <<if $activeSlave.relationship == -3>>
 	<<if $activeSlave.fetish == "mindbroken">>
-		Sadly, she is not mentally equipped to look after herself, but the arcology hosts several fine institutions capable of caring for her. They'll have someone check in on her daily. Her being your wife is ultimately irrelevant; she never realized it in the first place.
+		Sadly, $he is not mentally equipped to look after herself, but the arcology hosts several fine institutions capable of caring for $him. They'll have someone check in on $him daily. $Him being your wife is ultimately irrelevant; $he never realized it in the first place.
 	<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-		She wishes she could continue to be your slave wife, but she understands that marriages between slaves and slave owners are predicated on the slave relationship. She knows that her retirement has come, meaning that her slave relationship to you is ending. She's had a long time to get used to the idea, and gets through the process with dignity, doing her best to avoid embarrassing you.
+		$He wishes $he could continue to be your slave wife, but $he understands that marriages between slaves and slave owners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to get used to the idea, and gets through the process with dignity, doing $his best to avoid embarrassing you.
 	<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-		She is glad she no longer has to be your slave wife, as she never wanted to be in the first place, though she will miss taking advantage of the position. She understands that marriages between slaves and slave owners are predicated on the slave relationship. She knows that her retirement has come, meaning that her slave relationship to you is ending. She's had a long time to dream of the idea, and goes through the process with unremitting joy, doing her best to embarrass you.
+		$He is glad $he no longer has to be your slave wife, as $he never wanted to be in the first place, though $he will miss taking advantage of the position. $He understands that marriages between slaves and slave owners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to dream of the idea, and goes through the process with unremitting joy, doing $his best to embarrass you.
 	<<elseif $activeSlave.devotion < -20>>
-		She is glad she no longer has to be your slave wife, as she never wanted to be in the first place. She understands that marriages between slaves and slave owners are predicated on the slave relationship. She knows that her retirement has come, meaning that her slave relationship to you is ending. She's had a long time to dream of the idea, and goes through the process with unremitting joy, doing her best to avoid embarrassing you while she's still subject to your whims and your punishments.
+		$He is glad $he no longer has to be your slave wife, as $he never wanted to be in the first place. $He understands that marriages between slaves and slave owners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to dream of the idea, and goes through the process with unremitting joy, doing $his best to avoid embarrassing you while $he's still subject to your whims and your punishments.
 	<<else>>
-		She is glad she no longer has to be your slave wife, as she never wanted to be in the first place. She understands that marriages between slaves and slave owners are predicated on the slave relationship. She knows that her retirement has come, meaning that her slave relationship to you is ending. She's had a long time to get used to the idea, and gets through the process dutifully, doing her best to avoid embarrassing you.
+		$He is glad $he no longer has to be your slave wife, as $he never wanted to be in the first place. $He understands that marriages between slaves and slave owners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to get used to the idea, and gets through the process dutifully, doing $his best to avoid embarrassing you.
 	<</if>>
 <<elseif $activeSlave.fetish == "mindbroken">>
-	Sadly, she is not mentally equipped to look after herself, but the arcology hosts several fine institutions capable of caring for her. They'll have someone check in on her daily.
+	Sadly, $he is not mentally equipped to look after herself, but the arcology hosts several fine institutions capable of caring for $him. They'll have someone check in on $him daily.
 <<elseif $activeSlave.devotion > 95>>
-	She desperately wishes she could continue to be your sex slave, but she understands that her retirement has come. More importantly, she's had a long time to get used to the idea, and gets through the process with resolution, doing her best to avoid embarrassing herself or you.
+	$He desperately wishes $he could continue to be your sex slave, but $he understands that $his retirement has come. More importantly, $he's had a long time to get used to the idea, and gets through the process with resolution, doing $his best to avoid embarrassing herself or you.
 <<elseif $activeSlave.devotion > 20>>
-	She is very happy to be a free person again, though she does her best to do you the favor of not being too ostentatious about this.
+	$He is very happy to be a free person again, though $he does $his best to do you the favor of not being too ostentatious about this.
 <<else>>
-	It is with an ill-disguised triumphalism that she leaves sexual slavery behind her, and enters into a life in which she can decline to have things inserted into her body.
+	It is with an ill-disguised triumphalism that $he leaves sexual slavery behind $him, and enters into a life in which $he can decline to have things inserted into $his body.
 <</if>>
-She's certainly going to have some adjustments to make.
+$He's certainly going to have some adjustments to make.
 <<if $activeSlave.energy > 90>>
-	Notably, dealing with her formidable sex drive is now her business. You suspect the arcology's clubs are about to receive a fanatical new regular, and the arcology's whores may not know what hit them when she realizes that she's now quite capable of buying whatever she wants on a semi-regular basis.
+	Notably, dealing with $his formidable sex drive is now $his business. You suspect the arcology's clubs are about to receive a fanatical new regular, and the arcology's whores may not know what hit them when $he realizes that $he's now quite capable of buying whatever $he wants on a semi-regular basis.
 	<<if $activeSlave.analSkill+$activeSlave.oralSkill >= 120>>
-	She's so sexually skilled, though, that she probably won't have much trouble. She'll probably have more than a few eager lovers within days.
+	$He's so sexually skilled, though, that $he probably won't have much trouble. $He'll probably have more than a few eager lovers within days.
 	<</if>>
 	<<if $activeSlave.face > 40>>
-	She's certainly attractive enough that she'll have no trouble finding as many casual hookups as she likes.
+	$He's certainly attractive enough that $he'll have no trouble finding as many casual hookups as $he likes.
 	<</if>>
 <</if>>
 
@@ -72,46 +75,46 @@ She's certainly going to have some adjustments to make.
 <</if>>
 <<if ($toSearch.indexOf("Head Girl") != -1) || ($HeadGirl.ID == $activeSlave.ID)>>
 	<br><br>
-	She has a reputation from her long service as your Head Girl. To her bemusement, and considerable satisfaction, she has multiple job offers from slaving operations without even having to circulate her resume.
+	$He has a reputation from $his long service as your Head Girl. To $his bemusement, and considerable satisfaction, $he has multiple job offers from slaving operations without even having to circulate $his resume.
 	<<if $activeSlave.fetish == "sadist">>
-	The prospect of a virtually unlimited field for abuse and rape is something she'd pay for, now that she has her own money. She's excited beyond description to find that there are people interested in paying her to exercise her exquisitely horrible skills.
+	The prospect of a virtually unlimited field for abuse and rape is something $he'd pay for, now that $he has $his own money. $He's excited beyond description to find that there are people interested in paying $him to exercise $his exquisitely horrible skills.
 	<<elseif $activeSlave.fetish == "dom">>
-	Dominance is second nature to her. Though she doesn't have to work, her slaving skills are valuable enough that she'd probably be tempted by the pay she can expect, even if she didn't derive real pleasure from exercising them.
+	Dominance is second nature to $him. Though $he doesn't have to work, $his slaving skills are valuable enough that $he'd probably be tempted by the pay $he can expect, even if $he didn't derive real pleasure from exercising them.
 	<<else>>
-	Her annuity means that she doesn't have to work, but she's inclined to do so. Her skills command reasonable wages in the slave training field, and between those prospects and her annuity, she stands to become wealthy.
+	$His annuity means that $he doesn't have to work, but $he's inclined to do so. $His skills command reasonable wages in the slave training field, and between those prospects and $his annuity, $he stands to become wealthy.
 	<</if>>
 <<elseif ($toSearchAlt.indexOf("is world famous for") != -1)>>
 	<br><br>
 	<<set _pornFame = $activeSlave.pornPrestigeDesc>>
 	<<set _pornFame = _pornFame.replace("She is world famous for her career in slave pornography. Millions are intimately familiar with", "enjoy")>>
 	<<set _pornFame = _pornFame.replace(".", ",")>>
-	In addition to her annuity, you've laid the groundwork for her to become wealthy by the way you publicized pornography of her. Many thousands of people across the world are willing to pay to _pornFame and they enjoy it in part because she doesn't mind it, either. She's in a position to make great money for doing on camera what she would probably do anyway.
+	In addition to $his annuity, you've laid the groundwork for $him to become wealthy by the way you publicized pornography of $him. Many thousands of people across the world are willing to pay to _pornFame and they enjoy it in part because $he doesn't mind it, either. $He's in a position to make great money for doing on camera what $he would probably do anyway.
 <<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant >= -50) && ($activeSlave.muscles > 5) && ($activeSlave.combatSkill >= 1) && ($activeSlave.amp != 1) && ($activeSlave.face > 10)>>
 	<br><br>
-	She's pretty and deadly. If she feels she prefers wealth and danger to living on her annuity, she'll have no trouble finding work. In fact, she'll likely have trouble sifting through all the mercenary organizations, businesses in need of attractive and competent guards for public spaces, and citizens looking for effective bodyguards willing to hire her.
+	$He's pretty and deadly. If $he feels $he prefers wealth and danger to living on $his annuity, $he'll have no trouble finding work. In fact, $he'll likely have trouble sifting through all the mercenary organizations, businesses in need of attractive and competent guards for public spaces, and citizens looking for effective bodyguards willing to hire $him.
 <<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 50) && ($activeSlave.intelligenceImplant >= 15)>>
 	<br><br>
-	She has no skills extraordinary enough to bring prospective employers in search of her, in this new, slaveowning economy, but she is highly intelligent, educated, and has a small income. As you know from your own abundant personal experience, her intelligence is a lever, her annuity is a fulcrum, and with the two, she may move the world someday. You have no doubt that, at the very least, she will be far from the poorest of your citizens.
+	$He has no skills extraordinary enough to bring prospective employers in search of $him, in this new, slaveowning economy, but $he is highly intelligent, educated, and has a small income. As you know from your own abundant personal experience, $his intelligence is a lever, $his annuity is a fulcrum, and with the two, $he may move the world someday. You have no doubt that, at the very least, $he will be far from the poorest of your citizens.
 <</if>>
 
 <br><br>
-As she takes her leave, heading the short distance down to her modest little apartment, she presents a strange appearance. She's wearing cheap but not unattractive clothing, and you are struck by a crystal-clear mental image of what she looks like nude.
+As $he takes $his leave, heading the short distance down to $his modest little apartment, $he presents a strange appearance. $He's wearing cheap but not unattractive clothing, and you are struck by a crystal-clear mental image of what $he looks like nude.
 <<if $activeSlave.fetish != "mindbroken">>
 <<if $activeSlave.devotion > 20>>
 	<<if $activeSlave.devotion > 95>>
-		She's doing her absolute best not to sob, but her lips are quivering.
+		$He's doing $his absolute best not to sob, but $his lips are quivering.
 	<<else>>
-		She looks like she might cry.
+		$He looks like $he might cry.
 	<</if>>
 	<<if !canTalk($activeSlave)>>
-		She gestures her thanks, and ironically indicates that she'll see you around.
+		$He gestures $his thanks, and ironically indicates that $he'll see you around.
 	<<else>>
 		"Well, thank<<s>>, <<Master>>, um, I mean _playerName. I g-gue<<ss>> I'll <<s>>ee you around. I mean, the arcology. Anyway. Bye."
 	<</if>>
 	<<if $activeSlave.devotion > 95>>
-		She turns resolutely away and flees, trying to choke back her tears.
+		$He turns resolutely away and flees, trying to choke back $his tears.
 	<<else>>
-		She turns resolutely away.
+		$He turns resolutely away.
 	<</if>>
 <</if>>
 <</if>>
@@ -119,15 +122,15 @@ As she takes her leave, heading the short distance down to her modest little apa
 <br>
 When you return to your desk you realize something.
 	<<if $activeSlave.fetish == "mindbroken">>
-		The ring she wore when she was your slave wife is nowhere to be seen; she's likely forgotten she was wearing it, but no matter: you can always get more.
+		The ring $he wore when $he was your slave wife is nowhere to be seen; $he's likely forgotten $he was wearing it, but no matter: you can always get more.
 	<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-		The ring she wore when she was your slave wife is nowhere to be seen; she's likely taken it with her to remember you by.
+		The ring $he wore when $he was your slave wife is nowhere to be seen; $he's likely taken it with $him to remember you by.
 	<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-		The ring she wore when she was your slave wife is nowhere to be seen; she's likely taken it with her to either try and pawn or to dispose of. It doesn't matter: you can always get more.
+		The ring $he wore when $he was your slave wife is nowhere to be seen; $he's likely taken it with $him to either try and pawn or to dispose of. It doesn't matter: you can always get more.
 	<<elseif $activeSlave.devotion < -20>>
-		The ring she wore when she was your slave wife was left on your desk; she likely ripped it off as soon as she was free.
+		The ring $he wore when $he was your slave wife was left on your desk; $he likely ripped it off as soon as $he was free.
 	<<else>>
-		The ring she wore when she was your slave wife is nowhere to be seen; she's either taken it with her as a souvenir, or left it back in her sleeping area. If it's the former, no matter: you can always get more.
+		The ring $he wore when $he was your slave wife is nowhere to be seen; $he's either taken it with $him as a souvenir, or left it back in $his sleeping area. If it's the former, no matter: you can always get more.
 	<</if>>
 <</if>>
 <br><br>
@@ -135,51 +138,51 @@ When you return to your desk you realize something.
 <<if $activeSlave.energy > 50>>
 <<if $activeSlave.devotion > 20>>
 <span id="result">
-<<link "See her around">>
+<<link "See $him around">>
+	<<setNonlocalPronouns $seeDicks>>
 	<<replace "#result">>
-	Later that week, <<if $club > 0>>as you take an evening to enjoy $clubName in person<<else>>out in one of $arcologies[0].name's better clubs<</if>>, you run into _clonedSlave.slaveName. She looks good, and happy, and is not at all displeased to see you. She sidles up to you and makes it clear without a
+	Later that week, <<if $club > 0>>as you take an evening to enjoy $clubName in person<<else>>out in one of $arcologies[0].name's better clubs<</if>>, you run into _clonedSlave.slaveName. $He looks good, and happy, and is not at all displeased to see you. $He sidles up to you and makes it clear without a
 	<<if !canTalk(_clonedSlave)>>
 		gesture
 	<<else>>
 		word
 	<</if>>
-	that she's quite eager to fuck you as a free woman.
+	that $he's quite eager to fuck you as a free $woman.
 	<<if _clonedSlave.relationship == -3>>
 		<<if _clonedSlave.devotion+_clonedSlave.trust >= 175>>
-			When she knows she has your attention, she flashes <<if _clonedSlave.amp != 1>>her hand, revealing the steel ring that she wore when she was your slave wife<<else>> the steel ring that she wore when she was your slave wife attached to the same chain you placed around her neck on your wedding<</if>>. Even though the ring is meaningless to society, it holds a special meaning to you and her.
+			When $he knows $he has your attention, $he flashes <<if _clonedSlave.amp != 1>>$his hand, revealing the steel ring that $he wore when $he was your slave wife<<else>> the steel ring that $he wore when $he was your slave wife attached to the same chain you placed around $his neck on your wedding<</if>>. Even though the ring is meaningless to society, it holds a special meaning to you and $him.
 		<<else>>
-			When she knows she has your attention, she produces the steel ring that she wore when she was your slave wife. She doesn't put it on, but she kisses it suggestively before putting it back in her purse.
+			When $he knows $he has your attention, $he produces the steel ring that $he wore when $he was your slave wife. $He doesn't put it on, but $he kisses it suggestively before putting it back in $his purse.
 		<</if>>
 	<</if>>
 	<<if (_clonedSlave.fetish == "submissive") && (_clonedSlave.fetishKnown == 1)>>
-		Taking the lead as you know she prefers, you lead her to a private booth and make love to her, holding her down with the gentle but firm grip that never fails to bring her through a long and gasping climax.
+		Taking the lead as you know $he prefers, you lead $him to a private booth and make love to $him, holding $him down with the gentle but firm grip that never fails to bring $him through a long and gasping climax.
 	<<elseif (_clonedSlave.fetish == "cumslut") && (_clonedSlave.fetishKnown == 1)>>
-		She <<if $PC.dick == 1>>sucks your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eats you out<</if>> right there, eagerly <<if _clonedSlave.vagina > -1>>jilling off<<else>>jacking off<</if>> as she enjoys your infinitely familiar taste and scent.
+		$He <<if $PC.dick == 1>>sucks your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eats you out<</if>> right there, eagerly <<if _clonedSlave.vagina > -1>>jilling off<<else>>jacking off<</if>> as $he enjoys your infinitely familiar taste and scent.
 	<<elseif (_clonedSlave.fetish == "humiliation") && (_clonedSlave.fetishKnown == 1)>>
-		You take her right there, the humiliation slut getting what she came to the club to get: an opportunity to orgasm in public with many eyes enjoying the sight of her pleasure.
+		You take $him right there, the humiliation slut getting what $he came to the club to get: an opportunity to orgasm in public with many eyes enjoying the sight of $his pleasure.
 	<<elseif (_clonedSlave.fetish == "buttslut") && (_clonedSlave.fetishKnown == 1)>>
-		Your <<if $PC.dick == 1>>dick is<<else>>fingers are<</if>> up her ass in no time, and she's so primed for anal that she climaxes with indecent speed. She begs you to keep fucking her butt, and you do.
+		Your <<if $PC.dick == 1>>dick is<<else>>fingers are<</if>> up $his ass in no time, and $he's so primed for anal that $he climaxes with indecent speed. $He begs you to keep fucking $his butt, and you do.
 	<<elseif (_clonedSlave.fetish == "boobs") && (_clonedSlave.fetishKnown == 1)>>
-		She grinds shamelessly against you, your hands holding her breasts just the way you know she loves them held. Your <<if $PC.boobs == 1>>own tits press softly<<else>>manly chest presses<</if>> against her back as she cranes back to kiss you.
+		$He grinds shamelessly against you, your hands holding $his breasts just the way you know $he loves them held. Your <<if $PC.boobs == 1>>own tits press softly<<else>>manly chest presses<</if>> against $his back as $he cranes back to kiss you.
 	<<elseif (_clonedSlave.fetish == "pregnancy") && (_clonedSlave.fetishKnown == 1)>>
-		She begs shamelessly for your seed, right here and right now, and <<if $PC.dick == 1>>you give it to her, producing the usual perverted orgasm as she feels it inside her.<<else>>as usual, she doesn't care that the phallus you fuck her with is actually a strap-on. She manages to pretend it's a cock knocking her up.<</if>>
+		$He begs shamelessly for your seed, right here and right now, and <<if $PC.dick == 1>>you give it to $him, producing the usual perverted orgasm as $he feels it inside $him.<<else>>as usual, $he doesn't care that the phallus you fuck $him with is actually a strap-on. $He manages to pretend it's a cock knocking $him up.<</if>>
 	<<elseif (_clonedSlave.fetish == "dom") && (_clonedSlave.fetishKnown == 1)>>
-		After some mutually aggressive dancing that leaves you both panting and sweaty, you work together to attract another free dancer, a girl who _clonedSlave.slaveName had her eye on already. Before long, the poor girl is screaming with orgasm in a private booth as you take her together.
+		After some mutually aggressive dancing that leaves you both panting and sweaty, you work together to attract another free dancer, a _girlU who _clonedSlave.slaveName had $his eye on already. Before long, the poor _girlU is screaming with orgasm in a private booth as you take _himU together.
 	<<elseif (_clonedSlave.fetish == "sadist") && (_clonedSlave.fetishKnown == 1)>>
-		After some mutually aggressive dancing that leaves you both panting and sweaty, you mutually select one of the club's slaves, and drag her back to a private booth. Before long, her screams for mercy are audible on the floor.
+		After some mutually aggressive dancing that leaves you both panting and sweaty, you mutually select one of the club's slaves, and drag _himU back to a private booth. Before long, _hisU screams for mercy are audible on the floor.
 	<<elseif (_clonedSlave.fetish == "masochist") && (_clonedSlave.fetishKnown == 1)>>
-		You don't have the setup for really elaborate pain, so you fuck her hard and fast, to give her that edge of discomfort that she now requires to get off. She gasps as she gets what she needs, not free of her perversions despite her status as a citizen.
+		You don't have the setup for really elaborate pain, so you fuck $him hard and fast, to give $him that edge of discomfort that $he now requires to get off. $He gasps as $he gets what $he needs, not free of $his perversions despite $his status as a citizen.
 	<<else>>
-		You remember her uncomplicated tastes well, though the total confidence that her willingness and pleasure are unfeigned is novel. You dance, you laugh, and you make love to her, all through the night.
+		You remember $his uncomplicated tastes well, though the total confidence that $his willingness and pleasure are unfeigned is novel. You dance, you laugh, and you make love to $him, all through the night.
 	<</if>>
 	<</replace>>
 <</link>>
 <br />
 <<if _clonedSlave.relationship >= 4>>
-<<link "Send her girl into retirement with her">>
+<<link "Send $his _girl2 into retirement with $him">>
 	<<replace "#result">>
-	<<set _sr = $slaveIndices[_clonedSlave.relationshipTarget]>>
-	She doesn't get far before she hears a desperate pursuit behind her. It's her <<if _clonedSlave.relationship >= 5>>wife<<else>>lover<</if>>, $slaves[_sr].slaveName, hurrying to catch up. Watching on the monitors, you see _clonedSlave.slaveName's mixed pleasure and pain at seeing her again so soon, followed by a tearful explanation and an embrace so heartfelt that the pair of ex-slaves collapse to the floor together, sobbing.
+	$He doesn't get far before $he <<if canHear(_clonedSlave)>>hears a desperate pursuit behind $him<<else>>feels a gentle tap on $his shoulder<</if>>. It's $his <<if _clonedSlave.relationship >= 5>>wife<<else>>lover<</if>>, $slaves[_sr].slaveName, <<if canHear(_clonedSlave)>>hurrying to catch<<else>>finally catching<</if>> up. Watching on the monitors, you see _clonedSlave.slaveName's mixed pleasure and pain at seeing _him2 again so soon, followed by a tearful explanation and an embrace so heartfelt that the pair of ex-slaves collapse to the floor together, sobbing.
 	<<set $activeSlave = $slaves[_sr]>>
 	<<include "Remove activeSlave">>
 	<br><br>
@@ -209,31 +212,30 @@ in a way that will inevitably fill the rest of your property with @@.gold;fear.@
 	<<set $slaves[$i].trust -= 3>>
 <</for>>
 <<if $activeSlave.relationship > 3>>
-	<<set _sr = $slaveIndices[$activeSlave.relationshipTarget]>>
-	$slaves[_sr].slaveName, for her part, is @@.mediumorchid;horrified.@@
+	$slaves[_sr].slaveName, for _his2 part, is @@.mediumorchid;horrified.@@
 	<<set $slaves[_sr].devotion -= 20>>
 <</if>>
 <br><br>
 
-She is retiring into a featureless existence where the only realities are the phalli ejaculating food, fluid, and drugs into her <<if $activeSlave.vagina > -1>> vagina,<</if>> anus, and throat,<<if $activeSlave.balls > 0>> the relentless sodomy forcing semen out of her distended balls,<</if>> and the milk flowing into the milkers tugging at her painfully engorged nipples.
+$He is retiring into a featureless existence where the only realities are the phalli ejaculating food, fluid, and drugs into $his <<if $activeSlave.vagina > -1>> vagina,<</if>> anus, and throat,<<if $activeSlave.balls > 0>> the relentless sodomy forcing semen out of $his distended balls,<</if>> and the milk flowing into the milkers tugging at $his painfully engorged nipples.
 <<if $activeSlave.fetish == "mindbroken">>
-	She's already broken in spirit, and she complies with her installation into a milking machine with the dumb obedience of the animal she has become.
+	$He's already broken in spirit, and $he complies with $his installation into a milking machine with the dumb obedience of the animal $he has become.
 <<elseif $activeSlave.devotion > 20>>
-	She complies with her installation into a milking machine with the dumb obedience of someone whose mind will not allow them to understand their true situation out of simple immediate self-preservation.
+	$He complies with $his installation into a milking machine with the dumb obedience of someone whose mind will not allow them to understand their true situation out of simple immediate self-preservation.
 <<elseif $activeSlave.trust < 50>>
-	She is so terrified of punishment that she complies with her installation into a milking machine to avoid pain. She knows that if she does not obey, there will be pain, and if she obeys, there may be pain but it will come later.
+	$He is so terrified of punishment that $he complies with $his installation into a milking machine to avoid pain. $He knows that if $he does not obey, there will be pain, and if $he obeys, there may be pain but it will come later.
 <<else>>
-	She resists, of course, giving the compliance systems an excuse to unload quite a few volts of electricity into her. This disobedience is one of her more abortive attempts to resist your will, and it is her last.
+	$He resists, of course, giving the compliance systems an excuse to unload quite a few volts of electricity into $him. This disobedience is one of $his more abortive attempts to resist your will, and it is $his last.
 <</if>>
 <br><br>
 
-It will take her some time to reach full production, a state that she'll be kept in until it becomes impossible for the most reckless drug regime to keep her there. Near the end of the week, you check in on her idly. Her breasts are already swelling under the hormonal treatments that can only be applied when the sole priority is production. The rhythm of the milkers gives them a slight pulsing heave, first one, then the other. Her milk whitens the lines running away from her udders.
+It will take $him some time to reach full production, a state that $he'll be kept in until it becomes impossible for the most reckless drug regime to keep $him there. Near the end of the week, you check in on $him idly. $His breasts are already swelling under the hormonal treatments that can only be applied when the sole priority is production. The rhythm of the milkers gives them a slight pulsing heave, first one, then the other. $His milk whitens the lines running away from $his udders.
 <br><br>
 
 <span id="result">
 <<link "Have a taste">>
 	<<replace "#result">>
-	You tug one of the milkers off a nipple, producing a lewd sucking noise as the wet flesh pops free of the machinery. It must have been quite painful, but the feeding apparatus that covers much of the slave's face affords no indication of her reaction, if any. You heft the boob with both hands and take the nipple into your mouth, sucking gently. A rich jet of cream hits your tongue, the milkfat luscious with hints of vanilla. The warm breastflesh fills your hands, and you fancy that you can feel the prosperity under your fingers as her body desperately hurries to make more.
+	You tug one of the milkers off a nipple, producing a lewd sucking noise as the wet flesh pops free of the machinery. It must have been quite painful, but the feeding apparatus that covers much of the slave's face affords no indication of $his reaction, if any. You heft the boob with both hands and take the nipple into your mouth, sucking gently. A rich jet of cream hits your tongue, the milkfat luscious with hints of vanilla. The warm breastflesh fills your hands, and you fancy that you can feel the prosperity under your fingers as $his body desperately hurries to make more.
 	<</replace>>
 <</link>>
 </span>
@@ -249,25 +251,24 @@ in a way that will inevitably fill the rest of your property with @@.gold;fear.@
 	<<set $slaves[$i].trust -= 3>>
 <</for>>
 <<if $activeSlave.relationship > 3>>
-	<<set _sr = $slaveIndices[$activeSlave.relationshipTarget]>>
-	$slaves[_sr].slaveName, for her part, is @@.mediumorchid;horrified.@@
+	$slaves[_sr].slaveName, for _his2 part, is @@.mediumorchid;horrified.@@
 	<<set $slaves[_sr].devotion -= 20>>
 <</if>>
 <br><br>
 
-She is retiring into a dark, featureless eternity in which the only realities are phalli intruding into her<<if $activeSlave.vagina > -1>> vagina,<</if>> anus, and throat, and the drug-induced haze that will leave her no choice but to orgasm when she is penetrated.
+$He is retiring into a dark, featureless eternity in which the only realities are phalli intruding into $his<<if $activeSlave.vagina > -1>> vagina,<</if>> anus, and throat, and the drug-induced haze that will leave $him no choice but to orgasm when $he is penetrated.
 <<if $activeSlave.fetish == "mindbroken">>
-	She's already broken in spirit, and she complies with the conversion process with the dumb obedience of the animal she has become.
+	$He's already broken in spirit, and $he complies with the conversion process with the dumb obedience of the animal $he has become.
 <<elseif $activeSlave.devotion > 20>>
-	She complies with the conversion process with the dumb obedience of someone whose mind will not allow them to understand their true situation out of simple immediate self-preservation.
+	$He complies with the conversion process with the dumb obedience of someone whose mind will not allow them to understand their true situation out of simple immediate self-preservation.
 <<elseif $activeSlave.trust < 50>>
-	She is so terrified of punishment that she complies with the conversion process to avoid pain. She knows that if she does not obey, there will be pain, and if she obeys, there may be pain but it will come later.
+	$He is so terrified of punishment that $he complies with the conversion process to avoid pain. $He knows that if $he does not obey, there will be pain, and if $he obeys, there may be pain but it will come later.
 <<else>>
-	She resists, of course, giving the compliance systems an excuse to unload quite a few volts of electricity into her. This disobedience is one of her more abortive attempts to resist your will, and it is her last.
+	$He resists, of course, giving the compliance systems an excuse to unload quite a few volts of electricity into $him. This disobedience is one of $his more abortive attempts to resist your will, and it is $his last.
 <</if>>
 <br><br>
 
-She is brought down to
+$He is brought down to
 <<if $arcade != 0>>
 	$arcadeName,
 <<else>>
@@ -301,13 +302,14 @@ and, a disturbingly short time later, there is a new Fuckdoll, a humanoid figure
 
 <span id="result">
 <<link "Fuck it">>
+	<<setNonlocalPronouns $seeDicks>>
 	<<replace "#result">>
 	<<if $PC.dick == 1>>
 		You enter a command, and the Fuckdoll instantly <<if _clonedSlave.amp == 1>>presents its upper hole<<else>>collapses to its knees<</if>>. You tug the plug clear of its upper hole, and insert your cock. The Fuckdoll's nose ports open when it needs to breathe, but periodically close without warning to force its throat to spasm. When you're bored of this, you pull your dick clear and haul the Fuckdoll over to the couch, entering the command that forces it to present its rear hole. Your saliva-slicked shaft slides readily inside the sex toy's warm interior. After a while, you enter the tightening command, and the Fuckdoll's sphincter obediently cinches down, encouraging you to shoot your load inside it. A low moaning sound issues from its upper hole.
 	<<else>>
 		You shove the Fuckdoll backward onto the couch, and enter a command that forces it into a bridged position. <<if _clonedSlave.vagina > -1>>Its clit is brought to full hardness, and its front hole becomes wet and flushed. You ride this until you orgasm, the Fuckdoll's copious juices adding lewd noises to each grinding motion.<<else>>Its dick is forced to perfect hardness. Its tubes have been tied to prevent any unseemly contamination, allowing you to ride it until you are satisfied. When you're done, the Fuckdoll is allowed to go soft. It did not climax.<</if>>
 	<</if>>
-	You leave it where it is, your personal assistant directing a slave to perform maintenance on it when she has the time.
+	You leave it where it is, your personal assistant directing a slave to perform maintenance on it when _heU has the time.
 	<</replace>>
 <</link>>
 </span>
@@ -320,11 +322,10 @@ You have @@.yellowgreen;gained a fuckdoll.@@
 
 into a life of menial drudgery. This has little impact on your other human property.
 <<if $activeSlave.relationship > 3>>
-	<<set _sr = $slaveIndices[$activeSlave.relationshipTarget]>>
-	$slaves[_sr].slaveName, for her part, is @@.mediumorchid;saddened,@@ but not seriously affected. She knew this was coming.
+	$slaves[_sr].slaveName, for _his2 part, is @@.mediumorchid;saddened,@@ but not seriously affected. _He2 knew this was coming.
 	<<set $slaves[_sr].devotion -= 5>>
 <</if>>
-There are a thousand things a slave like her can usefully do around the arcology, and she'll do them. But she's reached the age where it's time for you and the arcology's citizens to fuck younger girls.
+There are a thousand things a slave like $him can usefully do around the arcology, and $he'll do them. But $he's reached the age where it's time for you and the arcology's citizens to fuck younger <<print $girl>>s.
 
 <br><br>
 You have @@.yellowgreen;gained a menial slave.@@
diff --git a/src/uncategorized/seWedding.tw b/src/uncategorized/seWedding.tw
index 9f4c004a2048228b9b7f199bb82aaff008d8d110..e260846898b6e2478bc33f13f90397ef622fe2b1 100644
--- a/src/uncategorized/seWedding.tw
+++ b/src/uncategorized/seWedding.tw
@@ -2,41 +2,43 @@
 
 <<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Scheduled Event">>
 <<set _belly = bellyAdjective($activeSlave)>>
+<<setLocalPronouns $activeSlave>>
 
 <<if $activeSlave.relationship != 0>>
 	<<if $activeSlave.relationship > 0>>
 		<<set _m = $slaveIndices[$activeSlave.relationshipTarget]>>
 		<<set $activeSlave.relationshipTarget = 0>>
 		<<set $slaves[_m].relationship = 0, $slaves[_m].relationshipTarget = 0>>
+		<<setLocalPronouns $slaves[_m] 2>>
 	<</if>>
-	In the days leading up to your wedding, $activeSlave.slaveName spent her time
+	In the days leading up to your wedding, $activeSlave.slaveName spent $his time
 	<<if $activeSlave.devotion+$activeSlave.trust >= 175>>
 		<<if $activeSlave.relationship != 0>>
 			<<if $activeSlave.relationship == -1>>
-				vowing that she'll be less of a slut.
+				vowing that $he'll be less of a slut.
 			<<elseif $activeSlave.relationship == 4>>
-				breaking up with her lover, $slaves[_m].slaveName, as painlessly as possible.
+				breaking up with $his lover, $slaves[_m].slaveName, as painlessly as possible.
 			<<elseif $activeSlave.relationship == 3>>
-				breaking up with her FWB, $slaves[_m].slaveName, as painlessly as possible.
+				breaking up with $his FWB, $slaves[_m].slaveName, as painlessly as possible.
 			<<elseif $activeSlave.relationship > 0>>
 				promising $slaves[_m].slaveName that they'll still be friends, even if they can't spend time together.
 			<<else>>
-				as close to you as she could.
+				as close to you as $he could.
 			<</if>>
 		<</if>>
 	<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
 		<<if $activeSlave.relationship == -1>>
-			sleeping with as many different people as she could.
+			sleeping with as many different people as $he could.
 			<<if !isSlaveAvailable($activeSlave)>>
-				Or she would have, if she were able.
+				Or $he would have, if $he were able.
 			<<elseif canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
 				<<set _randomVag = random(30,60)>>
 				<<set _randomAnal = random(30,60)>>
 				<<set _randomOral = random(30,60)>>
 				<<set $activeSlave.vaginalCount += _randomVag, $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>>
-				By week's end, she's managed to ruin her body out of spite. She can barely move; trapped on her back as cum steadily drips from her prolapsed, gaping, destroyed holes.
+				By week's end, $he's managed to ruin $his body out of spite. $He can barely move; trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed holes.
 				<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
-					Her actions robbed you of @@.lime;both her virginities.@@
+					$His actions robbed you of @@.lime;both $his virginities.@@
 				<</if>>
 				<<if $activeSlave.vagina < 4>><<set $activeSlave.vagina = 4>><</if>><<set $activeSlave.anus = 4>>
 				<<if canGetPregnant($activeSlave) && (random(1,100) > 70) && $activeSlave.eggType == "human">>
@@ -49,9 +51,9 @@
 				<<set _randomVag = random(30,60)>>
 				<<set _randomOral = random(30,60)>>
 				<<set $activeSlave.vaginalCount += _randomVag, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>>
-				By week's end, she's managed to ruin her body out of spite. She can barely move; trapped on her back as cum steadily drips from her prolapsed, gaping, destroyed cunt.
+				By week's end, $he's managed to ruin $his body out of spite. $He can barely move; trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed cunt.
 				<<if $activeSlave.vagina == 0>>
-					Her actions robbed you of @@.lime;her virginity.@@
+					$His actions robbed you of @@.lime;$his virginity.@@
 				<</if>>
 				<<if $activeSlave.vagina < 4>><<set $activeSlave.vagina = 4>><</if>>
 				<<if canGetPregnant($activeSlave) && (random(1,100) > 70) && $activeSlave.eggType == "human">>
@@ -64,9 +66,9 @@
 				<<set _randomAnal = random(30,60)>>
 				<<set _randomOral = random(30,60)>>
 				<<set $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>>
-				By week's end, she's managed to ruin her body out of spite. She can barely move; trapped on her back as cum steadily drips from her prolapsed, gaping, destroyed anus.
+				By week's end, $he's managed to ruin $his body out of spite. $He can barely move; trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed anus.
 				<<if $activeSlave.anus == 0>>
-					Her actions robbed you of @@.lime;her anal virginity.@@
+					$His actions robbed you of @@.lime;$his anal virginity.@@
 				<</if>>
 				<<set $activeSlave.anus = 4>>
 				<<if canGetPregnant($activeSlave) && (random(1,100) > 70) && $activeSlave.eggType == "human">>
@@ -78,21 +80,21 @@
 			<<else>>
 				<<set _randomOral = random(60,100)>>
 				<<set $activeSlave.oralCount += _randomOral, $oralTotal += _randomOral>>
-				By week's end, she's managed to make herself sick from sucking down so much sexual fluid. Luckily inducing vomiting will save your wedding from making the tabloids.
+				By week's end, $he's managed to make $himself sick from sucking down so much sexual fluid. Luckily inducing vomiting will save your wedding from making the tabloids.
 			<</if>>
 		<<elseif $activeSlave.relationship == 4>>
-			fucking her love, $slaves[_m].slaveName, as often as possible while ignoring you.
+			fucking $his love, $slaves[_m].slaveName, as often as possible while ignoring you.
 			<<if !isSlaveAvailable($activeSlave)>>
-				Or she would have, if she were able.
+				Or $he would have, if $he were able.
 			<<elseif !isSlaveAvailable($slaves[_m])>>
-				Or she would have, if she were around.
+				Or $he would have, if _he2 were around.
 			<<elseif canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
 				<<set _randomVag = random(3,7)>>
 				<<set _randomAnal = random(1,4)>>
 				<<set _randomOral = random(5,10)>>
 				<<set $activeSlave.vaginalCount += _randomVag, $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>>
 				<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
-					Her actions robbed you of @@.lime;both her virginities.@@
+					$His actions robbed you of @@.lime;both $his virginities.@@
 					<<set $activeSlave.vagina = 1, $activeSlave.anus = 1>>
 				<</if>>
 				<<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>>
@@ -106,7 +108,7 @@
 				<<set _randomOral = random(5,10)>>
 				<<set $activeSlave.vaginalCount += _randomVag, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>>
 				<<if $activeSlave.vagina == 0>>
-					Her actions robbed you of @@.lime;her virginity.@@
+					$His actions robbed you of @@.lime;$his virginity.@@
 					<<set $activeSlave.vagina = 1>>
 				<</if>>
 				<<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>>
@@ -120,7 +122,7 @@
 				<<set _randomOral = random(5,10)>>
 				<<set $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>>
 				<<if $activeSlave.anus == 0>>
-					Her actions robbed you of @@.lime;her anal virginity.@@
+					$His actions robbed you of @@.lime;$his anal virginity.@@
 					<<set $activeSlave.anus = 1>>
 				<</if>>
 				<<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>>
@@ -132,21 +134,21 @@
 			<<else>>
 				<<set _randomOral = random(15,20)>>
 				<<set $activeSlave.oralCount += _randomOral, $oralTotal += _randomOral>>
-				By week's end, she's managed to make herself sick from going down on $slaves[_m].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids.
+				By week's end, $he's managed to make $himself sick from going down on $slaves[_m].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids.
 			<</if>>
 		<<elseif $activeSlave.relationship == 3>>
-			fucking her lover, $slaves[_m].slaveName, as often as possible while ignoring you.
+			fucking $his lover, $slaves[_m].slaveName, as often as possible while ignoring you.
 			<<if !isAvailable($activeSlave)>>
-				Or she would have, if she were able.
+				Or $he would have, if $he were able.
 			<<elseif !isSlaveAvailable($slaves[_m])>>
-				Or she would have, if she were around.
+				Or $he would have, if _he2 were around.
 			<<elseif canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
 				<<set _randomVag = random(3,7)>>
 				<<set _randomAnal = random(1,4)>>
 				<<set _randomOral = random(5,10)>>
 				<<set $activeSlave.vaginalCount += _randomVag, $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>>
 				<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
-					Her actions robbed you of @@.lime;both her virginities.@@
+					$His actions robbed you of @@.lime;both $his virginities.@@
 					<<set $activeSlave.vagina = 1, $activeSlave.anus = 1>>
 				<</if>>
 				<<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>>
@@ -160,7 +162,7 @@
 				<<set _randomOral = random(5,10)>>
 				<<set $activeSlave.vaginalCount += _randomVag, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>>
 				<<if $activeSlave.vagina == 0>>
-					Her actions robbed you of @@.lime;her virginity.@@
+					$His actions robbed you of @@.lime;$his virginity.@@
 					<<set $activeSlave.vagina = 1>>
 				<</if>>
 				<<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>>
@@ -174,7 +176,7 @@
 				<<set _randomOral = random(5,10)>>
 				<<set $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>>
 				<<if $activeSlave.anus == 0>>
-					Her actions robbed you of @@.lime;her anal virginity.@@
+					$His actions robbed you of @@.lime;$his anal virginity.@@
 					<<set $activeSlave.anus = 1>>
 				<</if>>
 				<<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>>
@@ -186,7 +188,7 @@
 			<<else>>
 				<<set _randomOral = random(15,20)>>
 				<<set $activeSlave.oralCount += _randomOral, $oralTotal += _randomOral>>
-				By week's end, she's managed to make herself sick from going down on $slaves[_m].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids.
+				By week's end, $he's managed to make $himself sick from going down on $slaves[_m].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids.
 			<</if>>
 		<<elseif $activeSlave.relationship > 0>>
 			spending time away from you with $slaves[_m].slaveName.
@@ -197,67 +199,67 @@
 		<<if $activeSlave.relationship == -1>>
 			desperately pleading with you to change your mind.
 		<<elseif $activeSlave.relationship == 4>>
-			with her love, $slaves[_m].slaveName, weeping.
+			with $his love, $slaves[_m].slaveName, weeping.
 		<<elseif $activeSlave.relationship == 3>>
-			with her lover, $slaves[_m].slaveName, weeping.
+			with $his lover, $slaves[_m].slaveName, weeping.
 		<<elseif $activeSlave.relationship > 0>>
-			with her friend, $slaves[_m].slaveName, weeping.
+			with $his friend, $slaves[_m].slaveName, weeping.
 		<<else>>
 			desperately pleading with you to change your mind.
 		<</if>>
 	<<else>>
 		<<if $activeSlave.relationship == -1>>
-			trying her hardest to not sleep with anyone else.
+			trying $his hardest to not sleep with anyone else.
 		<<elseif $activeSlave.relationship == 4>>
-			alongside her love, $slaves[_m].slaveName.
+			alongside $his love, $slaves[_m].slaveName.
 			<<if canDoVaginal($activeSlave) && $activeSlave.vagina != 0>>
 				<<set $activeSlave.vaginalCount += 1, $vaginalTotal += 1>>
-				She later lets you know she let $slaves[_m].slaveName enjoy her pussy one last time.
+				$He later lets you know $he let $slaves[_m].slaveName enjoy $his pussy one last time.
 				<<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 90)>>
-					A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught girl is in a panic for making you go through this.
+					A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this.
 					<<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>>
 					<<set $activeSlave.pregType = setPregType($activeSlave)>>
 					<<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>>
 				<</if>>
 			<<elseif canDoAnal($activeSlave)>>
 				<<set $activeSlave.analCount += 1, $analTotal += 1>>
-				She later lets you know she let $slaves[_m].slaveName enjoy her butt one last time.
+				$He later lets you know $he let $slaves[_m].slaveName enjoy $his butt one last time.
 				<<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 90)>>
-					A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught girl is in a panic for making you go through this.
+					A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this.
 					<<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>>
 					<<set $activeSlave.pregType = setPregType($activeSlave)>>
 					<<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>>
 				<</if>>
 			<<else>>
 				<<set $activeSlave.oralCount += 1, $oralTotal += 1>>
-				She later tells you she gave $slaves[_m].slaveName <<if $slaves[_m].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_m])>>cunnilingus one last time<<else>>oral one last time<</if>>.
+				$He later tells you $he gave $slaves[_m].slaveName <<if $slaves[_m].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_m])>>cunnilingus one last time<<else>>oral one last time<</if>>.
 			<</if>>
 		<<elseif $activeSlave.relationship == 3>>
-			alongside her lover, $slaves[_m].slaveName.
+			alongside $his lover, $slaves[_m].slaveName.
 			<<if canDoVaginal($activeSlave) && $activeSlave.vagina != 0>>
 				<<set $activeSlave.vaginalCount += 1, $vaginalTotal += 1>>
-				She later lets you know she let $slaves[_m].slaveName enjoy her pussy one last time.
+				$He later lets you know $he let $slaves[_m].slaveName enjoy $his pussy one last time.
 				<<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 90)>>
-					A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught girl is in a panic for making you go through this.
+					A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this.
 					<<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>>
 					<<set $activeSlave.pregType = setPregType($activeSlave)>>
 					<<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>>
 				<</if>>
 			<<elseif canDoAnal($activeSlave)>>
 				<<set $activeSlave.analCount += 1, $analTotal += 1>>
-				She later lets you know she let $slaves[_m].slaveName enjoy her butt one last time.
+				$He later lets you know $he let $slaves[_m].slaveName enjoy $his butt one last time.
 				<<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 90)>>
-					A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught girl is in a panic for making you go through this.
+					A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this.
 					<<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>>
 					<<set $activeSlave.pregType = setPregType($activeSlave)>>
 					<<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>>
 				<</if>>
 			<<else>>
 				<<set $activeSlave.oralCount += 1, $oralTotal += 1>>
-				She later tells you she gave $slaves[_m].slaveName <<if $slaves[_m].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_m])>>cunnilingus one last time<<else>>oral one last time<</if>>.
+				$He later tells you $he gave $slaves[_m].slaveName <<if $slaves[_m].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_m])>>cunnilingus one last time<<else>>oral one last time<</if>>.
 			<</if>>
 		<<elseif $activeSlave.relationship > 0>>
-			with her friend, $slaves[_m].slaveName.
+			with $his friend, $slaves[_m].slaveName.
 		<<else>>
 			wearing a very conflicted expression.
 		<</if>>
@@ -273,126 +275,126 @@
 <</if>>
 
 <<if $weddingPlanned == 3>>
-	The ceremony to bind <<= SlaveFullName($activeSlave)>> to you as your slave wife, and her womb to you as your private breeding ground, is a polite affair which you host in the lower floor of your penthouse. <<if $arcologies[0].FSRestart != "unset" && ($activeSlave.breedingMark == 0 || $propOutcome == 0)>>Barely anyone is there, mostly lower-class citizens, several accompanied by their slaves. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. There is a distinct air of unrest in the room, as if the absent Elites' distaste of your actions came in their place.<<else>>All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering.<</if>>
+	The ceremony to bind <<= SlaveFullName($activeSlave)>> to you as your slave wife, and $his womb to you as your private breeding ground, is a polite affair which you host in the lower floor of your penthouse. <<if $arcologies[0].FSRestart != "unset" && ($activeSlave.breedingMark == 0 || $propOutcome == 0)>>Barely anyone is there, mostly lower-class citizens, several accompanied by their slaves. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. There is a distinct air of unrest in the room, as if the absent Elites' distaste of your actions came in their place.<<else>>All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering.<</if>>
 	<br><br>
-	$activeSlave.slaveName appears after everyone has had a chance to socialize,<<if ($activeSlave.amp == 1)>> carried by another slave since she's a quadruple amputee and she cannot walk,<</if>> wearing beautiful bridal lingerie in
+	$activeSlave.slaveName appears after everyone has had a chance to socialize,<<if ($activeSlave.amp == 1)>> carried by another slave since $he's a quadruple amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in
 	<<if ($activeSlave.vagina == 0)>>
-		white, since she's a virgin.
+		white, since $he's a virgin.
 	<<elseif ($activeSlave.pregKnown == 1)>>
-		light pink, since she's pregnant.
+		light pink, since $he's pregnant.
 	<<elseif ($activeSlave.vagina < 0) && ($activeSlave.anus == 0)>>
-		white, since she's an anal virgin.
+		white, since $he's an anal virgin.
 	<<elseif ($activeSlave.vagina < 0) && ($activeSlave.boobs > 500)>>
-		electric blue, since she's a shemale.
+		electric blue, since $he's a shemale.
 	<<elseif ($activeSlave.vagina < 0)>>
-		pale blue, since she's a sissy slave.
+		pale blue, since $he's a sissy slave.
 	<<elseif ($activeSlave.dick > 0)>>
-		hot pink, since she's a futa slave.
+		hot pink, since $he's a futa slave.
 	<<else>>
-		light pink, since she's an experienced sex slave.
+		light pink, since $he's an experienced sex slave.
 	<</if>>
-	A filmy veil covers her head and shoulders. Her lacy bridal bra
+	A filmy veil covers $his head and shoulders. $His lacy bridal bra
 	<<if ($activeSlave.boobs > 4000)>>
-		is a marvel of engineering, discreetly reinforced to support her gigantic udders.
+		is a marvel of engineering, discreetly reinforced to support $his gigantic udders.
 	<<elseif ($activeSlave.boobs > 1200)>>
-		just barely restrains her huge boobs, leaving the tops of her areolae visible.
+		just barely restrains $his huge boobs, leaving the tops of $his areolae visible.
 	<<elseif ($activeSlave.boobs > 400)>>
-		flatters her pretty breasts.
+		flatters $his pretty breasts.
 	<<else>>
-		flatters her pretty chest.
+		flatters $his pretty chest.
 	<</if>>
 	<<if $activeSlave.bellyPreg >= 600000>>
-		Her expansive, squirming pregnant belly makes her bridal wear particularly obscene.
+		$His expansive, squirming pregnant belly makes $his bridal wear particularly obscene.
 	<<elseif ($activeSlave.bellyPreg >= 1500)>>
-		Her _belly pregnant belly protrudes out the front of her bridal wear.
+		$His _belly pregnant belly protrudes out the front of $his bridal wear.
 	<<elseif ($activeSlave.bellyImplant >= 1500)>>
-		Her _belly <<print $activeSlave.bellyImplant>>cc belly implant protrudes her middle out the front of her bridal wear.
+		$His _belly <<print $activeSlave.bellyImplant>>cc belly implant protrudes $his middle out the front of $his bridal wear.
 	<<elseif ($activeSlave.bellyFluid >= 10000)>>
-		Her hugely bloated, <<print $activeSlave.inflationType>>-filled belly protrudes out the front of her bridal wear.
+		$His hugely bloated, <<print $activeSlave.inflationType>>-filled belly protrudes out the front of $his bridal wear.
 	<<elseif ($activeSlave.bellyFluid >= 5000)>>
-		Her bloated, <<print $activeSlave.inflationType>>-stuffed belly protrudes out the front of her bridal wear.
+		$His bloated, <<print $activeSlave.inflationType>>-stuffed belly protrudes out the front of $his bridal wear.
 	<<elseif ($activeSlave.bellyFluid >= 1500)>>
-		Her distended, <<print $activeSlave.inflationType>>-belly protrudes out the front of her bridal wear.
+		$His distended, <<print $activeSlave.inflationType>>-belly protrudes out the front of $his bridal wear.
 	<</if>>
 	<<if $activeSlave.dickAccessory == ("chastity") || $activeSlave.dickAccessory == ("combined chastity")>>
-		Her slave dick is hidden by its chastity cage.
+		$His slave dick is hidden by its chastity cage.
 	<<elseif canAchieveErection($activeSlave)>>
 		<<if ($activeSlave.dick > 4) && ($activeSlave.belly >= 5000)>>
-		She's hugely erect, with her lacy g-string only serving to hold her dick agonizingly pressed against the bottom of her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly.
+		$He's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly.
 		<<elseif $activeSlave.dick > 4>>
-		She's hugely erect, with her lacy g-string only serving to hold her dick upright along her belly.
+		$He's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly.
 		<<else>>
-		Her erection tents the front of her lacy g-string.
+		$His erection tents the front of $his lacy g-string.
 		<</if>>
 	<<elseif ($activeSlave.dick > 0)>>
 		<<if $activeSlave.dick > 10>>
-		Her huge soft cock is allowed to dangle freely as no g-string could hope to contain it.
+		$His huge soft cock is allowed to dangle freely as no g-string could hope to contain it.
 		<<elseif $activeSlave.dick > 4>>
-		Her big soft cock forms a lewd mass, stuffed into her lacy g-string.
+		$His big soft cock forms a lewd mass, stuffed into $his lacy g-string.
 		<<else>>
-		Her lacy g-string perfectly conceals her soft dick.
+		$His lacy g-string perfectly conceals $his soft dick.
 		<</if>>
 	<<else>>
 		<<if $activeSlave.clit > 1>>
-		Her huge clit is quite hard, making her shift uncomfortably as her lacy g-string stimulates it.
+		$His huge clit is quite hard, making $his shift uncomfortably as $his lacy g-string stimulates it.
 		<<else>>
-		Her lacy g-string covers her womanhood demurely.
+		$His lacy g-string covers $his womanhood demurely.
 		<</if>>
 	<</if>>
-	There is no aisle for her to <<if $activeSlave.amp == 1>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $activeSlave.amp == 1>>walk alongside the slave carrying<<else>>walk<</if>> her there; this symbolizes her submission to you
+	There is no aisle for $him to <<if $activeSlave.amp == 1>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $activeSlave.amp == 1>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you
 	<<if $activeSlave.fetish == "mindbroken">>
-		despite the fact that she had to be pushed into walking towards you.
+		despite the fact that $he had to be pushed into walking towards you.
 	<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-		of her own choice, and she does so with a smile.
+		of $his own choice, and $he does so with a smile.
 	<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-		of her own choice, and she does so with hesitation.
+		of $his own choice, and $he does so with hesitation.
 	<<elseif $activeSlave.devotion < -20>>
-		of her own (forced) choice, and she does so with wavering steps.
+		of $his own (forced) choice, and $he does so with wavering steps.
 	<<else>>
-		of her own choice, and she does so willingly.
+		of $his own choice, and $he does so willingly.
 	<</if>>
 	<br><br>
-	When she's in front of you,
+	When $he's in front of you,
 	<<if $activeSlave.amp == 1>>
-		the slave carrying her limbless torso sets her down on the floor in front of you and props her up so her head is level with your crotch.
+		the slave carrying $his limbless torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch.
 	<<else>>
 		<<if $activeSlave.fetish == "mindbroken">>
-			you push her onto her knees so her head
+			you push $him onto $his knees so $his head
 		<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-			she happily gets down on her knees so her head
+			$he happily gets down on $his knees so $his head
 		<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-			she slowly lowers herself onto her knees so her head
+			$he slowly lowers $himself onto $his knees so $his head
 		<<elseif $activeSlave.devotion < -20>>
-			she quickly lowers herself onto her knees so her tear-streaked face
+			$he quickly lowers $himself onto $his knees so $his tear-streaked face
 		<<else>>
-			she gets down on her knees so her head
+			$he gets down on $his knees so $his head
 		<</if>>
 	<</if>>
 	is level with your crotch.
-	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring 
+	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring 
 	<<if $activeSlave.amp == 1>>
-		on a cord around her neck, since she lacks fingers to wear it on.
+		on a cord around $his neck, since $he lacks fingers to wear it on.
 	<<else>>
-		on her <<if $activeSlave.devotion < -20 && $activeSlave.trust <= 20>>trembling <</if>>finger.
+		on $his <<if $activeSlave.devotion < -20 && $activeSlave.trust <= 20>>trembling <</if>>finger.
 	<</if>>
 	There is no ring for you, since this marriage does not bind you.
 	<br>
 	<<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>>
 		<br><br><span id="surnaming">
-		<<link "Give her your surname too">>
+		<<link "Give $him your surname too">>
 			<<replace "#surnaming">>
 				<<set $activeSlave.slaveSurname = $PC.surname>>
 				You also proclaim your new slave wife $activeSlave.slaveName $activeSlave.slaveSurname. The new Mrs. $activeSlave.slaveSurname hears this, of course, and 
 				<<if $activeSlave.fetish == "mindbroken">>
-					shows no reaction. Like many things, names mean nothing to her now. Your guests, on the other hand, appreciate the gift.
+					shows no reaction. Like many things, names mean nothing to $him now. Your guests, on the other hand, appreciate the gift.
 				<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-					breaks down again. Not only is she to be blessed with your child, but she's to take your surname as well.
+					breaks down again. Not only is $he to be blessed with your child, but $he's to take your surname as well.
 				<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-					scoffs audibly. Just another burden for her to carry; like the child soon to be growing in her womb.
+					scoffs audibly. Just another burden for $him to carry; like the child soon to be growing in $his womb.
 				<<elseif $activeSlave.devotion < -20>>
-					breaks down again. Not only are you binding her to you with your child, but with your name as well.
+					breaks down again. Not only are you binding $him to you with your child, but with your name as well.
 				<<else>>
-					nods acceptingly. Your will is her will, after all.
+					nods acceptingly. Your will is $his will, after all.
 				<</if>>
 			<</replace>>
 		<</link>>
@@ -400,32 +402,32 @@
 	<</if>>
 	<br><br>
 	<<if $activeSlave.fetish == "mindbroken">>
-		$activeSlave.slaveName is mindbroken, so you gather her up and hold her in front of you, pulling her panties off as you do. She follows your motions like a ragdoll. You maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull her knees up to give your guests a good view as you fuck her fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. She is left to face them, staring off into space. Though she faces the crowd, her mind is empty; this might as well be any other fucking to her. She twitches ever so slightly when your seed flows into her, orgasming robotically to @@.green;applause from your guests.@@ You'll fuck her repeatedly over the next few days, ensuring impregnation.
+		$activeSlave.slaveName is mindbroken, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He follows your motions like a ragdoll. You maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull $his knees up to give your guests a good view as you fuck $his fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation.
 	<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-		Then, you <<if $activeSlave.amp == 1>>gather her up and hold her in front of you, pulling her panties off as you do. Showing considerable dexterity, you maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take her hand and pull her to her feet while she shimmies out of her panties. She cocks her hips for you and you slide your cock inside her before taking her knees and drawing them up to hold her in midair, impaled on you<</if>>. She is left to face your guests, watching raptly as you fuck her fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. Though her face is towards the crowd, her mind is concentrated on your hard cock, pumping in and out of her at an angle; to her, it's @@.mediumaquamarine;concrete proof that she's special to you.@@ She gasps when your seed flows into her, orgasming herself to @@.green;applause from your guests.@@ You'll fuck her repeatedly over the next few days, ensuring impregnation.
+		Then, you <<if $activeSlave.amp == 1>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knees and drawing them up to hold $him in midair, impaled on you<</if>>. $He is left to face your guests, watching raptly as you fuck $his fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it's @@.mediumaquamarine;concrete proof that $he's special to you.@@ $He gasps when your seed flows into $him, orgasming $himself to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation.
 	<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-		$activeSlave.slaveName is unwilling, so you gather her up and hold her in front of you, pulling her panties off as you do. She was crying before, but this causes her to tremble and tear up in anticipation of what's next. Ignoring this, you maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $activeSlave.amp != 1>> Then you pull her knees up to give your guests a good view of the consummation.<</if>> She is left to face them, watching sullenly as you fuck her fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. Though her face is towards the crowd, her mind is concentrated on your hard cock, pumping in and out of her at an angle; to her, this is torture. She gasps when your seed flows into her, faking an orgasm to @@.green;applause from your guests.@@ At this, she shoots you a dirty look, blaming you for this indignity. You'll fuck her repeatedly over the next few days, ensuring impregnation, despite her efforts to defy you.
+		$activeSlave.slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and tear up in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $activeSlave.amp != 1>> Then you pull $his knees up to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, faking an orgasm to @@.green;applause from your guests.@@ At this, $he shoots you a dirty look, blaming you for this indignity. You'll fuck $him repeatedly over the next few days, ensuring impregnation, despite $his efforts to defy you.
 	<<elseif $activeSlave.devotion < -20>>
-		$activeSlave.slaveName is unwilling, so you gather her up and hold her in front of you, pulling her panties off as you do. She was crying before, but this causes her to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $activeSlave.amp != 1>> Then you pull her knees up to give your guests a good view of the consummation.<</if>> She is left to face them, watching sullenly as you fuck her fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. Though her face is towards the crowd, her mind is concentrated on your hard cock, pumping in and out of her at an angle; to her, this is torture. She gasps when your seed flows into her, orgasming unwillingly @@.green;applause from your guests.@@ At this, she completely breaks down, blubbering like a child at the unwelcome warmth in her lower belly. You'll fuck her repeatedly over the next few days, ensuring impregnation, despite her protesting.
+		$activeSlave.slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $activeSlave.amp != 1>> Then you pull $his knees up to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, orgasming unwillingly @@.green;applause from your guests.@@ At this, $he completely breaks down, blubbering like a child at the unwelcome warmth in $his lower belly. You'll fuck $him repeatedly over the next few days, ensuring impregnation, despite $his protesting.
 	<<else>>
-		$activeSlave.slaveName isn't particularly excited about what's coming, but she's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-wife of a wealthy arcology owner. You <<if $activeSlave.amp == 1>>gather her up and hold her in front of you, pulling her panties off as you do. Showing considerable dexterity, you maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take her hand and pull her to her feet while she shimmies out of her panties. She cocks her hips for you and you slide your cock inside her before taking her knees and drawing them up to hold her in midair, impaled on you<</if>>. Though her face is towards the crowd, her mind is concentrated on your hard cock, pumping in and out of her at an angle; to her, it is what it is. She gasps when your seed flows into her, orgasming shortly after to @@.green;applause from your guests.@@ You'll fuck her repeatedly over the next few days, ensuring impregnation.
+		$activeSlave.slaveName isn't particularly excited about what's coming, but $he's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-wife of a wealthy arcology owner. You <<if $activeSlave.amp == 1>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knees and drawing them up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it is what it is. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation.
 	<</if>>
 	<<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1>>
 	<<set $activeSlave.pregType = setPregType($activeSlave)>>
 	<<set WombImpregnate($activeSlave, $activeSlave.pregType, -1, $activeSlave.preg)>>
 	<<set $activeSlave.pregSource = -1>>
 	<<if ($activeSlave.vagina == 0) || ($activeSlave.mpreg == 1 && $activeSlave.anus == 0)>>
-		Naturally, the ceremony @@.lime;took her virginity;@@
+		Naturally, the ceremony @@.lime;took $his virginity;@@
 		<<if $activeSlave.fetish == "mindbroken">>
-			she didn't notice.
+			$he didn't notice.
 		<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-			she was so happy @@.hotpink;her first time was with you and so special.@@
+			$he was so happy @@.hotpink;$his first time was with you and so special.@@
 			<<set $activeSlave.devotion += 5>>
 		<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-			she was @@.mediumorchid;saving that for someone special.@@
+			$he was @@.mediumorchid;saving that for someone special.@@
 			<<set $activeSlave.devotion -= 5>>
 		<<elseif $activeSlave.devotion < -20>>
-			she weeped at the sight of cum pooling from her @@.mediumorchid;defiled <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>>.@@
+			$he weeped at the sight of cum pooling from $his @@.mediumorchid;defiled <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>>.@@
 			<<set $activeSlave.devotion -= 10>>
 		<<else>>
 			you made it @@.hotpink;enjoyable@@ at least.
@@ -436,22 +438,22 @@
 	<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60)>>
 		<<if $activeSlave.fetish == "mindbroken">>
 		<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-			As a pregnancy fetishist, @@.hotpink;she confidently believes this wedding will be the high point of her life.@@
+			As a pregnancy fetishist, @@.hotpink;$he confidently believes this wedding will be the high point of $his life.@@
 			<<set $activeSlave.devotion += 20>>
 		<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
 			As a hateful pregnancy fetishist, @@.hotpink;getting pregnant was the best part of the ceremony.@@
 			<<set $activeSlave.devotion += 1>>
 		<<elseif $activeSlave.devotion < -20>>
-			As a pregnancy fetishist, getting raped pregnant by someone she hates leaves her with very mixed feelings.
+			As a pregnancy fetishist, getting raped pregnant by someone $he hates leaves $him with very mixed feelings.
 		<<else>>
-			As a pregnancy fetishist, @@.hotpink;she thoroughly enjoyed getting knocked up in such an ostentatious fashion.@@
+			As a pregnancy fetishist, @@.hotpink;$he thoroughly enjoyed getting knocked up in such an ostentatious fashion.@@
 			<<set $activeSlave.devotion += 10>>
 		<</if>>
 	<</if>>
 	<<if $activeSlave.relationship != 0>>
 		<<if $activeSlave.devotion+$activeSlave.trust >= 175>>
 			<<if $activeSlave.relationship > 0>>
-				Her <<if $activeSlave.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for her <<if $activeSlave.relationship > 2>>ex<<else>>companion<</if>>'s future.
+				$His <<if $activeSlave.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if $activeSlave.relationship > 2>>ex<<else>>companion<</if>>'s future.
 				<<if $activeSlave.relationship == 4>>
 					<<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>>
 				<<elseif $activeSlave.relationship == 3>>
@@ -462,35 +464,35 @@
 			<</if>>
 		<<elseif $activeSlave.devotion < -20>>
 			<<if $activeSlave.relationship == -1>>
-				She @@.mediumorchid;hates@@ that she has to be yours only and @@.gold;fears@@ what will happen if she strays.
+				$He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays.
 				<<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>>
 			<<elseif $activeSlave.relationship == 4>>
-				Both her and her ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch her life's love get stolen away and fucked pregnant in such a manner.
+				Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked pregnant in such a manner.
 				<<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>>
 				<<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>>
 			<<elseif $activeSlave.relationship == 3>>
-				Both her and her ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching her life's love get stolen away and fucked pregnant in such a manner.
+				Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner.
 				<<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>>
 				<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 30>>
 			<<elseif $activeSlave.relationship > 0>>
-				Both her and her friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future.
+				Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future.
 				<<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>>
 				<<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>>
 			<</if>>
 		<<else>>
 			<<if $activeSlave.relationship == -1>>
-				She @@.mediumorchid;dislikes@@ that she has to be yours only and @@.gold;worries@@ what will happen if she strays.
+				$He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays.
 				<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
 			<<elseif $activeSlave.relationship == 4>>
-				Both her and her ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching her life's love get stolen away and fucked pregnant in such a manner.
+				Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner.
 				<<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>>
 				<<set $activeSlave.devotion -= 30, $activeSlave.trust -= 20>>
 			<<elseif $activeSlave.relationship == 3>>
-				Both her and her ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;jealous@@ of you for snagging such catch out from under her.
+				Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;jealous@@ of you for snagging such catch out from under _him2.
 				<<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>>
 				<<set $activeSlave.devotion -= 15, $activeSlave.trust -= 10>>
 			<<elseif $activeSlave.relationship > 0>>
-				Both her and her friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other.
+				Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other.
 				<<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>>
 				<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
 			<</if>>
@@ -518,45 +520,45 @@
 <<elseif $weddingPlanned == 2>>
 	The ceremony to bind <<= SlaveFullName($activeSlave)>> to you as your slave wife is an all day affair.
 	<<if $activeSlave.fetish == "mindbroken">>
-		She spent the day before resting and preparing herself, if you can call sitting around mindlessly preparing. She spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of physical reaction than anything. The theory is that she'll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she's extracted and taken off to be bathed.
+		$He spent the day before resting and preparing $himself, if you can call sitting around mindlessly preparing. $He spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of physical reaction than anything. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 		<br><br>
-		She returns shortly, looking exhausted but otherwise uncaring. She's naked still, her skin clean and $activeSlave.skin, and is led to you for the ceremony by another slave. The only evident signs that she's had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She can't conceal her tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you.
+		$He returns shortly, looking exhausted but otherwise uncaring. $He's naked still, $his skin clean and $activeSlave.skin, and is led to you for the ceremony by another slave. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He can't conceal $his tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 		<br><br>
-		Once the ceremony is complete, you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle her in your arms, and by the time she's home, she's fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave's chest rises and falls with her breathing.
+		Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing.
 	<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-		She spent the day before resting and preparing herself, and this was a necessary precaution. She spends most of the daylong party at the center of a nonstop gangbang. The theory is that she'll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she's extracted and taken off to be bathed.
+		$He spent the day before resting and preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 		<br><br>
-		She returns shortly, looking exhausted but rather proud of herself for getting through all that. She's naked still, her skin clean and $activeSlave.skin, and comes confidently to stand by you for the ceremony. The only evident signs that she's had sex with more than a hundred people today is her ass, which looks rather well-traveled, and her tiredness. She does her best to conceal how ready to sleep she is, but she leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you.
+		$He returns shortly, looking exhausted but rather proud of $himself for getting through all that. $He's naked still, $his skin clean and $activeSlave.skin, and comes confidently to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well-traveled, and $his tiredness. $He does $his best to conceal how ready to sleep $he is, but $he leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 		<br><br>
-		Once the ceremony is complete, you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle her in your arms, and by the time she's home, she's fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave's chest rises and falls with her breathing.
+		Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing.
 	<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-		She spent the day before resting and trying to ready herself, and this was a necessary precaution. She spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that she'll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she's extracted and taken off to be bathed.
+		$He spent the day before resting and trying to ready $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 		<br><br>
-		She returns shortly, looking exhausted and annoyed. She's naked still, her skin clean and $activeSlave.skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that she's had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She does her best to conceal her tiredness and look stronger than she is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you.
+		$He returns shortly, looking exhausted and annoyed. $He's naked still, $his skin clean and $activeSlave.skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness and look stronger than $he is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 		<br><br>
-		Once the ceremony is complete, you scoop up your new, protesting, slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time she's home, she's fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave's chest rises and falls with her breathing. She squirms slightly in her sleep to the unwelcome feeling of your arm around her.
+		Once the ceremony is complete, you scoop up your new, protesting, slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. $He squirms slightly in $his sleep to the unwelcome feeling of your arm around $him.
 	<<elseif $activeSlave.devotion < -20>>
-		She spent the day before resting and crying to herself, and this was a necessary precaution. She spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that she'll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she's extracted and taken off to be bathed.
+		$He spent the day before resting and crying to $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 		<br><br>
-		She returns shortly, looking exhausted and depressed. She's naked still, her skin clean and $activeSlave.skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that she's had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She does her best to conceal her tiredness out of fear of punishment, and she leans against you for support despite her feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you.
+		$He returns shortly, looking exhausted and depressed. $He's naked still, $his skin clean and $activeSlave.skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness out of fear of punishment, and $he leans against you for support despite $his feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 		<br><br>
-		Once the ceremony is complete, you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time she's home, she's fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave's chest rises and falls with her breathing.
+		Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing.
 	<<else>>
-		She spent the day before resting and reluctantly preparing herself, and this was a necessary precaution. She spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as she takes cock after cock. The theory is that she'll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she's extracted and taken off to be bathed.
+		$He spent the day before resting and reluctantly preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as $he takes cock after cock. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 		<br><br>
-		She returns shortly, looking exhausted. She's naked still, her skin clean and $activeSlave.skin, and comes to stand by you for the ceremony. The only evident signs that she's had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She does her best to conceal her it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you.
+		$He returns shortly, looking exhausted. $He's naked still, $his skin clean and $activeSlave.skin, and comes to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 		<br><br>
-		Once the ceremony is complete, you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against you, so tired that she's grateful for the break from standing. By the time she's home, she's fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave's chest rises and falls with her breathing.
+		Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against you, so tired that $he's grateful for the break from standing. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing.
 	<</if>>
 	<br>
 	<<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>>
 		<br><br><span id="surnaming">
-		<<link "Give her your surname as well">>
+		<<link "Give $him your surname as well">>
 			<<replace "#surnaming">>
 				<<set $activeSlave.slaveSurname = $PC.surname>>
 				You also proclaim your new slave wife $activeSlave.slaveName $activeSlave.slaveSurname. The new Mrs. $activeSlave.slaveSurname hears this, of course, and 
 				<<if $activeSlave.fetish == "mindbroken">>
-					shows no reaction. Like many things, names mean nothing to her now.
+					shows no reaction. Like many things, names mean nothing to $him now.
 				<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
 					breaks down again.
 				<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
@@ -571,7 +573,6 @@
 		</span>
 	<</if>>
 
-	
 	<<if ndef $activeSlave.publicCount>>
 		<<set $activeSlave.publicCount = 0>>
 	<</if>>
@@ -582,12 +583,12 @@
 	<</if>>
 	<<if $activeSlave.anus < 3>>
 		<<set $activeSlave.anus += 1>>
-		You can feel her ass, still somewhat gaped from its ordeal. It's been @@.lime;loosened@@ by her wedding party.
+		You can feel $his ass, still somewhat gaped from its ordeal. It's been @@.lime;loosened@@ by $his wedding party.
 	<</if>>
 	<<if $activeSlave.relationship != 0>>
 		<<if $activeSlave.devotion+$activeSlave.trust >= 175>>
 			<<if $activeSlave.relationship > 0>>
-				Her <<if $activeSlave.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for her <<if $activeSlave.relationship > 2>>love<<else>>companion<</if>>'s future.
+				$His <<if $activeSlave.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if $activeSlave.relationship > 2>>love<<else>>companion<</if>>'s future.
 				<<if $activeSlave.relationship == 4>>
 					<<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>>
 				<<elseif $activeSlave.relationship == 3>>
@@ -596,42 +597,42 @@
 					<<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>>
 				<</if>>
 			<<elseif $activeSlave.relationship == -2>>
-				She feels like she betrayed you by getting fucked by so many others and struggles to convince herself it was what you wanted.
+				$He feels like $he betrayed you by getting fucked by so many others and struggles to convince $himself it was what you wanted.
 			<<elseif $activeSlave.relationship == -1>>
-				Judging by the smile on her sleeping face, today may have been the @@.hotpink;best day of her life.@@
+				Judging by the smile on $his sleeping face, today may have been the @@.hotpink;best day of $his life.@@
 				<<set $activeSlave.devotion = 100, $activeSlave.trust = 100>>
 			<</if>>
 		<<elseif $activeSlave.devotion < -20>>
 			<<if $activeSlave.relationship == -1>>
-				She @@.mediumorchid;hates@@ that she has to be yours only after such a thrilling orgy and @@.gold;fears@@ what will happen if she strays.
+				$He @@.mediumorchid;hates@@ that $he has to be yours only after such a thrilling orgy and @@.gold;fears@@ what will happen if $he strays.
 				<<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>>
 			<<elseif $activeSlave.relationship == 4>>
-				Both her and her ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch her life's love get stolen away and fucked by so many others.
+				Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked by so many others.
 				<<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>>
 				<<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>>
 			<<elseif $activeSlave.relationship == 3>>
-				Both her and her ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching her life's love get stolen away and fucked by so many others.
+				Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others.
 				<<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>>
 				<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 30>>
 			<<elseif $activeSlave.relationship > 0>>
-				Both her and her friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future.
+				Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future.
 				<<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>>
 				<<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>>
 			<</if>>
 		<<else>>
 			<<if $activeSlave.relationship == -1>>
-				She @@.mediumorchid;dislikes@@ that she has to be yours only and @@.gold;worries@@ what will happen if she strays, especially after such a lovely orgy.
+				$He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays, especially after such a lovely orgy.
 				<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
 			<<elseif $activeSlave.relationship == 4>>
-				Both her and her ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching her life's love get stolen away and fucked by so many others.
+				Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others.
 				<<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>>
 				<<set $activeSlave.devotion -= 30, $activeSlave.trust -= 20>>
 			<<elseif $activeSlave.relationship == 3>>
-				Both her and her ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;resentful@@ that you'd treat such a catch that way.
+				Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;resentful@@ that you'd treat such a catch that way.
 				<<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>>
 				<<set $activeSlave.devotion -= 15, $activeSlave.trust -= 10>>
 			<<elseif $activeSlave.relationship > 0>>
-				Both her and her friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other.
+				Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other.
 				<<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>>
 				<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
 			<</if>>
@@ -662,122 +663,122 @@
 <<else>>
 	The ceremony to bind <<= SlaveFullName($activeSlave)>> to you as your slave wife is a polite affair which you host in the lower floor of your penthouse. All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering.
 	<br><br>
-	$activeSlave.slaveName appears after everyone has had a chance to socialize,<<if ($activeSlave.amp == 1)>> carried by another slave since she's a quadruple amputee and she cannot walk,<</if>> wearing beautiful bridal lingerie in
+	$activeSlave.slaveName appears after everyone has had a chance to socialize,<<if ($activeSlave.amp == 1)>> carried by another slave since $he's a quadruple amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in
 	<<if ($activeSlave.vagina == 0)>>
-		white, since she's a virgin.
+		white, since $he's a virgin.
 	<<elseif ($activeSlave.pregKnown == 1)>>
-		light pink, since she's pregnant.
+		light pink, since $he's pregnant.
 	<<elseif ($activeSlave.vagina < 0) && ($activeSlave.anus == 0)>>
-		white, since she's an anal virgin.
+		white, since $he's an anal virgin.
 	<<elseif ($activeSlave.vagina < 0) && ($activeSlave.boobs > 500)>>
-		electric blue, since she's a shemale.
+		electric blue, since $he's a shemale.
 	<<elseif ($activeSlave.vagina < 0)>>
-		pale blue, since she's a sissy slave.
+		pale blue, since $he's a sissy slave.
 	<<elseif ($activeSlave.dick > 0)>>
-		hot pink, since she's a futa slave.
+		hot pink, since $he's a futa slave.
 	<<else>>
-		light pink, since she's an experienced sex slave.
+		light pink, since $he's an experienced sex slave.
 	<</if>>
-	A filmy veil covers her head and shoulders. Her lacy bridal bra 
+	A filmy veil covers $his head and shoulders. $His lacy bridal bra 
 	<<if ($activeSlave.boobs > 4000)>>
-		is a marvel of engineering, discreetly reinforced to support her gigantic udders.
+		is a marvel of engineering, discreetly reinforced to support $his gigantic udders.
 	<<elseif ($activeSlave.boobs > 1200)>>
-		just barely restrains her huge boobs, leaving the tops of her areolae visible.
+		just barely restrains $his huge boobs, leaving the tops of $his areolae visible.
 	<<elseif ($activeSlave.boobs > 400)>>
-		flatters her pretty breasts.
+		flatters $his pretty breasts.
 	<<else>>
-		flatters her pretty chest.
+		flatters $his pretty chest.
 	<</if>>
 	<<if $activeSlave.bellyPreg >= 600000>>
-		Her expansive, squirming pregnant belly makes her bridal wear particularly obscene.
+		$His expansive, squirming pregnant belly makes $his bridal wear particularly obscene.
 	<<elseif ($activeSlave.bellyPreg >= 1500)>>
-		Her _belly pregnant belly protrudes out the front of her bridal wear.
+		$His _belly pregnant belly protrudes out the front of $his bridal wear.
 	<<elseif ($activeSlave.bellyImplant >= 1500)>>
-		Her _belly <<print $activeSlave.bellyImplant>>cc belly implant protrudes her middle out the front of her bridal wear.
+		$His _belly <<print $activeSlave.bellyImplant>>cc belly implant protrudes $his middle out the front of $his bridal wear.
 	<<elseif ($activeSlave.bellyFluid >= 10000)>>
-		Her hugely bloated, <<print $activeSlave.inflationType>>-filled belly protrudes out the front of her bridal wear.
+		$His hugely bloated, <<print $activeSlave.inflationType>>-filled belly protrudes out the front of $his bridal wear.
 	<<elseif ($activeSlave.bellyFluid >= 5000)>>
-		Her bloated, <<print $activeSlave.inflationType>>-stuffed belly protrudes out the front of her bridal wear.
+		$His bloated, <<print $activeSlave.inflationType>>-stuffed belly protrudes out the front of $his bridal wear.
 	<<elseif ($activeSlave.bellyFluid >= 1500)>>
-		Her distended, <<print $activeSlave.inflationType>>-belly protrudes out the front of her bridal wear.
+		$His distended, <<print $activeSlave.inflationType>>-belly protrudes out the front of $his bridal wear.
 	<</if>>
 	<<if $activeSlave.dickAccessory == ("chastity") || $activeSlave.dickAccessory == ("combined chastity")>>
-		Her slave dick is hidden by its chastity cage.
+		$His slave dick is hidden by its chastity cage.
 	<<elseif canAchieveErection($activeSlave)>>
 		<<if ($activeSlave.dick > 4) && ($activeSlave.belly >= 5000)>>
-		She's hugely erect, with her lacy g-string only serving to hold her dick agonizingly pressed against the bottom of her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly.
+		$He's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly.
 		<<elseif $activeSlave.dick > 4>>
-		She's hugely erect, with her lacy g-string only serving to hold her dick upright along her belly.
+		$He's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly.
 		<<else>>
-		Her erection tents the front of her lacy g-string.
+		$His erection tents the front of $his lacy g-string.
 		<</if>>
 	<<elseif ($activeSlave.dick > 0)>>
 		<<if $activeSlave.dick > 10>>
-		Her huge soft cock is allowed to dangle freely as no g-string could hope to contain it.
+		$His huge soft cock is allowed to dangle freely as no g-string could hope to contain it.
 		<<elseif $activeSlave.dick > 4>>
-		Her big soft cock forms a lewd mass, stuffed into her lacy g-string.
+		$His big soft cock forms a lewd mass, stuffed into $his lacy g-string.
 		<<else>>
-		Her lacy g-string perfectly conceals her soft dick.
+		$His lacy g-string perfectly conceals $his soft dick.
 		<</if>>
 	<<else>>
 		<<if $activeSlave.clit > 1>>
-		Her huge clit is quite hard, making her shift uncomfortably as her lacy g-string stimulates it.
+		$His huge clit is quite hard, making $him shift uncomfortably as $his lacy g-string stimulates it.
 		<<else>>
-		Her lacy g-string covers her womanhood demurely.
+		$His lacy g-string covers $his womanhood demurely.
 		<</if>>
 	<</if>>
-	There is no aisle for her to <<if $activeSlave.amp == 1>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $activeSlave.amp == 1>>walk alongside the slave carrying<<else>>walk<</if>> her there; this symbolizes her submission to you
+	There is no aisle for $him to <<if $activeSlave.amp == 1>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $activeSlave.amp == 1>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you
 	<<if $activeSlave.fetish == "mindbroken">>
-		despite the fact that she had to be pushed into walking towards you.
+		despite the fact that $he had to be pushed into walking towards you.
 	<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-		of her own choice, and she does so with a smile.
+		of $his own choice, and $he does so with a smile.
 	<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-		of her own choice, and she does so with hesitation.
+		of $his own choice, and $he does so with hesitation.
 	<<elseif $activeSlave.devotion < -20>>
-		of her own (forced) choice, and she does so with wavering steps.
+		of $his own (forced) choice, and $he does so with wavering steps.
 	<<else>>
-		of her own choice, and she does so willingly.
+		of $his own choice, and $he does so willingly.
 	<</if>>
 	<br><br>
-	When she's in front of you, <<if $activeSlave.amp == 1>>the slave carrying her limbless torso sets her down on the floor in front of you and props her up so her head is level with your crotch<<else>>she gets down on her knees so her head is level with your crotch<</if>>. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you.
+	When $he's in front of you, <<if $activeSlave.amp == 1>>the slave carrying $his limbless torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch<<else>>$he gets down on $his knees so $his head is level with your crotch<</if>>. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 	<br>
 	<<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>>
 		<br><br><span id="surnaming">
-		<<link "Give her your surname">>
+		<<link "Give $him your surname">>
 			<<replace "#surnaming">>
 				<<set $activeSlave.slaveSurname = $PC.surname>>
 				You also proclaim your new slave wife $activeSlave.slaveName $activeSlave.slaveSurname. The new Mrs. $activeSlave.slaveSurname hears this, of course, and 
 				<<if $activeSlave.fetish == "mindbroken">>
-					shows no reaction. Like many things, names mean nothing to her now. Your guests, on the other hand, appreciate the gift.
+					shows no reaction. Like many things, names mean nothing to $him now. Your guests, on the other hand, appreciate the gift.
 				<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
 					breaks down again; it's like a dream come true.
 				<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-					scoffs audibly; just another burden for her to carry.
+					scoffs audibly; just another burden for $him to carry.
 				<<elseif $activeSlave.devotion < -20>>
 					breaks down again; this is nothing more than another unwanted link to you.
 				<<else>>
-					nods acceptingly. Your will is her will, after all.
+					nods acceptingly. Your will is $his will, after all.
 				<</if>>
 			<</replace>>
 		<</link>>
 		</span>
 	<</if>>
-	<br><br> Then, you flip her veil over her head so she can <<if $PC.dick == 1>>suck your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>> in front of your guests, as the ceremony requires. She approaches her task
+	<br><br> Then, you flip $his veil over $his head so $he can <<if $PC.dick == 1>>suck your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>> in front of your guests, as the ceremony requires. $He approaches $his task
 	<<if $activeSlave.fetish == "mindbroken">>
-		with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down her throat<<else>>covering her face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry her back into the master bedroom. She absentmindedly rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle her in your arms, gazing up at you with empty eyes.
+		with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He absentmindedly rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, gazing up at you with empty eyes.
 	<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
-		<<if ($activeSlave.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down her throat<<else>>covering her face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle her in your arms, staring up at you.
+		<<if ($activeSlave.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, staring up at you.
 	<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
-		with apprehension, so much so that things are taking too long, so you grab her head and facefuck her instead. She gags and sputters, tears running down her cheeks, as you violate her mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down her throat<<else>>covering her face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry her back into the master bedroom. She looks up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far.
+		with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far.
 	<<elseif $activeSlave.devotion < -20>>
-		with apprehension, so much so that things are taking too long, so you grab her head and facefuck her instead. She gags and sputters, tears running down her cheeks, as you violate her mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down her throat<<else>>covering her face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry her back into the master bedroom. She looks up at you with fearful, tear-filled eyes as if pleading for you not to do this. 
+		with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you with fearful, tear-filled eyes as if pleading for you not to do this. 
 	<<else>>
-		with a will. She approaches her task <<if ($activeSlave.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down her throat<<else>>covering her face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry her back into the master bedroom. She looks up at you, her eyes unsure. 
+		with a will. $He approaches $his task <<if ($activeSlave.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you, $his eyes unsure. 
 	<</if>>
 	<<if $activeSlave.relationship != 0>>
 		<<if $activeSlave.devotion+$activeSlave.trust >= 175>>
 			<<if $activeSlave.relationship > 0>>
-				Her <<if $activeSlave.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for her <<if $activeSlave.relationship > 2>>love<<else>>companion<</if>>'s future.
+				$His <<if $activeSlave.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if $activeSlave.relationship > 2>>love<<else>>companion<</if>>'s future.
 				<<if $activeSlave.relationship == 4>>
 					<<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>>
 				<<elseif $activeSlave.relationship == 3>>
@@ -788,35 +789,35 @@
 			<</if>>
 		<<elseif $activeSlave.devotion < -20>>
 			<<if $activeSlave.relationship == -1>>
-				She @@.mediumorchid;hates@@ that she has to be yours only and @@.gold;fears@@ what will happen if she strays.
+				$He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays.
 				<<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>>
 			<<elseif $activeSlave.relationship == 4>>
-				Both her and her ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future.
+				Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future.
 				<<set $slaves[_m].devotion -= 40, $slaves[_m].trust -= 40>>
 				<<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>>
 			<<elseif $activeSlave.relationship == 3>>
-				Both her and her ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future.
+				Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future.
 				<<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>>
 				<<set $activeSlave.devotion -= 30, $activeSlave.trust -= 30>>
 			<<elseif $activeSlave.relationship > 0>>
-				Both her and her friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future.
+				Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future.
 				<<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>>
 				<<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>>
 			<</if>>
 		<<else>>
 			<<if $activeSlave.relationship == -1>>
-				She @@.mediumorchid;dislikes@@ that she has to be yours only and @@.gold;worries@@ what will happen if she strays.
+				$He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays.
 				<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
 			<<elseif $activeSlave.relationship == 4>>
-				Both her and her ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other.
+				Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other.
 				<<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>>
 				<<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>>
 			<<elseif $activeSlave.relationship == 3>>
-				Both her and her ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other.
+				Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other.
 				<<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>>
 				<<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>>
 			<<elseif $activeSlave.relationship > 0>>
-				Both her and her friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other.
+				Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other.
 				<<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>>
 				<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
 			<</if>>
diff --git a/src/uncategorized/slaveMarkets.tw b/src/uncategorized/slaveMarkets.tw
index e47fbac537483a20c3076910cbfa0777644f4096..4bca317b9339e90485e167b6e9dce7e5b54b771f 100644
--- a/src/uncategorized/slaveMarkets.tw
+++ b/src/uncategorized/slaveMarkets.tw
@@ -49,9 +49,9 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex
 	<<else>>
 		<<set _kidnappers = random(1,4)>>
 		There's more merchandise out of sight in the holding areas. To go by what you can hear,
-		<<if (_kidnappers == 1) && (random(0,99) < $seeDicks)>>
+		<<if (_kidnappers == 1) && (random(1,100) <= $seeDicks)>>
 		muffled insistence that the speaker is not a girl followed by struggling and then shrieks as a resistant dickgirl takes anal rape,
-		<<elseif (_kidnappers == 2) && (random(1,100) > $seeDicks)>>
+		<<elseif (_kidnappers == 2) && (random(0,99) >= $seeDicks)>>
 		muffled begging followed by struggling and then crying as a new slave learns how it feels to have a slave's cunt,
 		<<elseif (_kidnappers == 3)>>
 		muffled gagging followed gasping and sobbing as a new slave tries to get her breath back after oral rape,
@@ -70,9 +70,9 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex
 	<<else>>
 		<<set _indentures = random(1,4)>>
 		The area is crowded, and more indentured servants are packed together in the holding areas. To go by what you can hear,
-		<<if (_indentures == 1) && (random(0,99) < $seeDicks)>>
+		<<if (_indentures == 1) && (random(1,100) <= $seeDicks)>>
 		the unmistakable mixed shrieks, sobs, and slaps of anal rape,
-		<<elseif (_indentures == 2) && (random(1,100) > $seeDicks)>>
+		<<elseif (_indentures == 2) && (random(0,99) >= $seeDicks)>>
 		the characteristic crying and gasping of an unwilling girl giving up her cunt,
 		<<elseif (_indentures == 3)>>
 		the gagging and expectoration of someone who has just gotten a mouthful of unwelcome cum,
@@ -91,9 +91,9 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex
 	<<else>>
 		<<set _hunters = random(1,4)>>
 		The slave catchers consider their catches fair game, though they usually confine their amusements to the holding areas out of sight. Not out of earshot, though; to go by what you can hear,
-		<<if (_hunters == 1) && (random(0,99) < $seeDicks)>>
+		<<if (_hunters == 1) && (random(1,100) <= $seeDicks)>>
 		vehement insistence that the speaker is not a girl followed by a beating and then shrieks as a rebellious dickgirl takes anal rape,
-		<<elseif (_hunters == 2) && (random(1,100) > $seeDicks)>>
+		<<elseif (_hunters == 2) && (random(0,99) >= $seeDicks)>>
 		vehement protestations followed by a beating and then crying as a slave's cunt takes her punishment for her,
 		<<elseif (_hunters == 3)>>
 		struggling and gagging followed gasping and angry swearing as a rebellious slave tries to get her breath back after oral rape,
@@ -112,9 +112,9 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex
 	<<else>>
 		<<set _ur = random(1,4)>>
 		though they restrain themselves from reducing the value of their captures by taking virginities. They do have their fun, though; to go by what you can hear from the holding area where they keep underage girls who can be sold,
-		<<if (_ur == 1) && (random(0,99) < $seeDicks)>>
+		<<if (_ur == 1) && (random(1,100) <= $seeDicks)>>
 		a muffled but obviously sadistic description of feminization, and the desperate sobbing in response,
-		<<elseif (_ur == 2) && (random(1,100) > $seeDicks)>>
+		<<elseif (_ur == 2) && (random(0,99) >= $seeDicks)>>
 		a muffled but obviously sadistic description of breeding, and the desperate sobbing in response,
 		<<elseif (_ur == 3)>>
 		faint struggling and crying that suggests that someone is being thoroughly groped and pinched,
@@ -133,9 +133,9 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex
 	<<else>>
 		<<set _raiders = random(1,4)>>
 		though they restrain themselves from reducing the value of their captures by taking virginities. They do have their fun, though; to go by what you can hear from the holding area where they keep slaves of age who can be sold,
-		<<if (_raiders == 1) && (random(0,99) < $seeDicks)>>
+		<<if (_raiders == 1) && (random(1,100) <= $seeDicks)>>
 		a muffled but obviously sadistic description of feminization, and the desperate sobbing in response,
-		<<elseif (_raiders == 2) && (random(1,100) > $seeDicks)>>
+		<<elseif (_raiders == 2) && (random(0,99) >= $seeDicks)>>
 		a muffled but obviously sadistic description of breeding, and the desperate sobbing in response,
 		<<elseif (_raiders == 3)>>
 		faint struggling and crying that suggests that someone is being thoroughly groped and pinched,
@@ -159,9 +159,9 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex
 	<<else>>
 		<<set _trainers = random(1,4)>>
 		The trainers are a competitive bunch, and to go by what you can hear,
-		<<if (_trainers == 1) && ($seeDicks != 0) && (random(0,100) > $seeDicks)>>
+		<<if (_trainers == 1) && (random(1,100) <= $seeDicks)>>
 		moaning interspersed with lewd, well-lubricated noises coming from both anal sex and vigorous masturbation,
-		<<elseif (_trainers == 2) && ($seeDicks != 100) && (random(0,100) > $seeDicks)>>
+		<<elseif (_trainers == 2) && (random(0,99) >= $seeDicks)>>
 		moaning and the distinctive slap of feminine buttocks on thighs beneath them as a girl rides a dick,
 		<<elseif (_trainers == 3)>>
 		the lush, lewd sounds of diligent oral sex,
diff --git a/src/uncategorized/slaveShelter.tw b/src/uncategorized/slaveShelter.tw
index 2e61b3a6ff6e0d497ac21270b026d7a0c3ee727a..e4f189352ae5152bf3fb8595c016f4b20716a72c 100644
--- a/src/uncategorized/slaveShelter.tw
+++ b/src/uncategorized/slaveShelter.tw
@@ -10,22 +10,21 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 
 <<if ($shelterSlaveGeneratedWeek || 0) < $week>>
 <<set $shelterSlaveGeneratedWeek = $week>>
-<<set _num = random(1,99)>>
 
 <<set _possibleOrigins = []>>
 <<set _possibleOrigins.push("broken")>>
 <<if $seeExtreme == 1>>
 	<<set _possibleOrigins.push("amputee", "blind", "deaf")>>
-	<<if random(1,99) < $seeDicks>>
+	<<if random(1,100) <= $seeDicks>>
 		<<set _possibleOrigins.push("cannibal victim male")>>
 	<<else>>
 		<<set _possibleOrigins.push("cannibal victim female")>>
 	<</if>>
 <</if>>
-<<if _num < $seeDicks>>
+<<if random(1,100) <= $seeDicks>>
 	<<set _possibleOrigins.push("geldling", "dickpain")>>
 <</if>>
-<<if _num > $seeDicks>>
+<<if random(0,99) >= $seeDicks>>
 	<<set _possibleOrigins.push("plugs", "used whore", "reaction")>>
 	<<if $seePreg != 0>>
 		<<set _possibleOrigins.push("breeder", "broken womb")>>
diff --git a/src/utility/birthWidgets.tw b/src/utility/birthWidgets.tw
index e2d61721c48020a716a5b8ca627b34e3b17e448c..fea17e2d2a98dd92688936abc16d5e2a993254ef 100644
--- a/src/utility/birthWidgets.tw
+++ b/src/utility/birthWidgets.tw
@@ -8,7 +8,7 @@
 		<<if $clinic != 0>>
 			$slaves[$i].slaveName is taken to $clinicName since $he is scheduled for a cesarean section. $He is helped from $his clothes and into a comfortable hospital bed to relax until the surgery suite is prepped. After several minutes, $he is transferred to the surgery wing. Following $his c-section, $he is returned to the recovery wing to rest. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and $he is left under observation to make sure $he recovers.
 		<<else>>
-			$slaves[$i].slaveName is taken to the auto-surgeon, since $he is scheduled for a cesarean section. $He is stripped from $his clothes and set up on the operating table. $He is quickly sedated, and subjected to a c-section in order to avoid potential problems and preserve $his vagina. The surgery is quick, and $he is moved to a bed to recover. When $he awakes, $his child<<if $slaves[$i].pregType > 1>>ren have<<else>> has<</if>> already been taken away.
+			$slaves[$i].slaveName is taken to the auto-surgeon, since $he is scheduled for a cesarean section. $He is stripped from $his clothes and set up on the operating table. $He is quickly sedated, and subjected to a c-section in order to avoid potential problems and preserve $his <<if $slaves[$i].mpreg == 1>>asshole<<else>>vagina<</if>>. The surgery is quick, and $he is moved to a bed to recover. When $he awakes, $his child<<if $slaves[$i].pregType > 1>>ren have<<else>> has<</if>> already been taken away.
 		<</if>>
 	<<else>>
 		<<if $clinic != 0>>
@@ -130,7 +130,7 @@
 		<<if $slaves[$i].fetish == "mindbroken">>
 			You strip $him and help $him onto your couch. Instinctively, $he begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and $he falls into a contented nap. You enjoy $his exhausted body until a servant comes to help clean $him up.
 		<<else>>
-			<<if $slaves[$i].devotion > 20>>$He moans lewdly at you and wiggles $his hips. As $he teases, $he begins pushing $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>> out. As $he crowns, you pull $him into your arms and hold $him close. You hold $him in a comforting embrace until $he finishes<<elseif $slaves[$i].devotion >= -20>>$He releases a lewd moan and begins attempting to remove $his clothes. You approach $him, clearing $his vagina and helping $him onto the couch, where you take a seat next to $him to fondle $his vulnerable body. Once $he finishes, you give $him some time to catch $his breath<<else>>$He begins desperately begging to be taken back to $his bed; instead you pull $him towards the couch and take a seat with $him in your lap, back against your front. Blushing thoroughly, $he gives a meek protest before focusing on the coming birth, rather than your wandering hands<<set $humiliation = 1>><</if>>. $He begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a shower and a fresh change of clothes, $he is helped back to your office<<if $slaves[$i].devotion < -20>> where you are waiting to enjoy $his exhausted body<</if>>.
+			<<if $slaves[$i].devotion > 20>>$He moans lewdly at you and wiggles $his hips. As $he teases, $he begins pushing $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>> out. As $he crowns, you pull $him into your arms and hold $him close. You hold $him in a comforting embrace until $he finishes<<elseif $slaves[$i].devotion >= -20>>$He releases a lewd moan and begins attempting to remove $his clothes. You approach $him, clearing $his <<if $slaves[$i].mpreg == 1>>asshole<<else>>vagina<</if>> and helping $him onto the couch, where you take a seat next to $him to fondle $his vulnerable body. Once $he finishes, you give $him some time to catch $his breath<<else>>$He begins desperately begging to be taken back to $his bed; instead you pull $him towards the couch and take a seat with $him in your lap, back against your front. Blushing thoroughly, $he gives a meek protest before focusing on the coming birth, rather than your wandering hands<<set $humiliation = 1>><</if>>. $He begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a shower and a fresh change of clothes, $he is helped back to your office<<if $slaves[$i].devotion < -20>> where you are waiting to enjoy $his exhausted body<</if>>.
 		<</if>>
 	<<else>>
 		<<if $slaves[$i].fetish == "mindbroken">>
@@ -223,15 +223,15 @@
 		<<if $Attendant != 0>>$Attendant.slaveName escorts $him to a special pool designed to give birth in. Once $he is safely in the water alongside $Attendant.slaveName,<<else>>$He is escorted to a special pool designed to give birth in. Once $he is safely in the water alongside $his assistant,<</if>> $he begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, aided by $his helper. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, $he is taken back to the spa.
 	<</if>>
 
-<<case "work as a nanny">>		/* TODO: write a description for this */
+<<case "work as a nanny">> /* TODO: write a description for this */
 	//This needs a description//
 
 <<case "learn in the schoolroom">>
 	<<if !canWalk($slaves[$i])>>
-		Having been notified in the weeks leading up to $his birth, $he is helped to the front of the class and stripped. $He is being used as a learning aid in this lesson. Blushing strongly, $he begins working on birthing $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, fully aware of the rapt attention of the other students. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning and fresh change of clothes, $he is helped back to $his seat. $He can't help but <<if canSee($slaves[$i])>>notice some of the detailed notes the class took on $his genitals<<else>>overhear the descriptions of $his vagina being passed between $his peers<</if>>.
+		Having been notified in the weeks leading up to $his birth, $he is helped to the front of the class and stripped. $He is being used as a learning aid in this lesson. Blushing strongly, $he begins working on birthing $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, fully aware of the rapt attention of the other students. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning and fresh change of clothes, $he is helped back to $his seat. $He can't help but <<if canSee($slaves[$i])>>notice some of the detailed notes the class took on $his genitals<<else>>overhear the descriptions of $his <<if $slaves[$i].mpreg == 1>>asshole<<else>>vagina<</if>> being passed between $his peers<</if>>.
 		<<set $humiliation = 1>>
 	<<else>>
-		Having been notified in the weeks leading up to $his birth, $he heads to the front of the class and strips. $He is being used as a learning aid in this lesson. Blushing strongly, $he begins working on birthing $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, fully aware of the rapt attention of the other students. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning and fresh change of clothes, $he returns to $his seat. $He can't help but <<if canSee($slaves[$i])>>notice some of the detailed notes the class took on $his genitals<<else>>overhear the descriptions of $his vagina being passed between $his peers<</if>>.
+		Having been notified in the weeks leading up to $his birth, $he heads to the front of the class and strips. $He is being used as a learning aid in this lesson. Blushing strongly, $he begins working on birthing $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, fully aware of the rapt attention of the other students. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning and fresh change of clothes, $he returns to $his seat. $He can't help but <<if canSee($slaves[$i])>>notice some of the detailed notes the class took on $his genitals<<else>>overhear the descriptions of $his <<if $slaves[$i].mpreg == 1>>asshole<<else>>vagina<</if>> being passed between $his peers<</if>>.
 		<<set $humiliation = 1>>
 	<</if>>
 
@@ -524,11 +524,11 @@
 		$He is placed in a special flotation device and placed in a birthing pool. Giving birth to $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>> is easy under such relaxing circumstances. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, $he is carried back to the spa.
 	<</if>>
 
-<<case "work as a nanny">>		/* TODO: write a description for this */
+<<case "work as a nanny">> /* TODO: write a description for this */
 	//This needs a description//
 
 <<case "learn in the schoolroom">>
-		$He is placed on special seat at the front of the class and stripped. $He is being used as a learning aid in this lesson. Blushing strongly, $he begins working on birthing $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, fully aware of the rapt attention of the other students. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning and fresh change of clothes, $he is carried back to $his seat. $He can't help but <<if canSee($slaves[$i])>>notice some of the detailed notes the class took on $his genitals<<else>>overhear the descriptions of $his vagina being passed between $his peers<</if>>.
+		$He is placed on special seat at the front of the class and stripped. $He is being used as a learning aid in this lesson. Blushing strongly, $he begins working on birthing $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, fully aware of the rapt attention of the other students. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning and fresh change of clothes, $he is carried back to $his seat. $He can't help but <<if canSee($slaves[$i])>>notice some of the detailed notes the class took on $his genitals<<else>>overhear the descriptions of $his <<if $slaves[$i].mpreg == 1>>asshole<<else>>vagina<</if>> being passed between $his peers<</if>>.
 		<<set $humiliation = 1>>
 
 <<case "take classes">>
@@ -813,13 +813,14 @@
 	<</if>>
 
 <<case "recruit girls">>
+	<<setNonlocalPronouns $seeDicks>>
 	While on a video call with a potential recruit, $slaves[$i].slaveName's water breaks. $He attempts to play it cool and act like nothing is happening but the worsening contractions finally get to $him.
 	<<set $humiliation = 1>>
 	<<ClothingBirth>>
 	<<if _birthScene > 50>>
-		Exhausted from the birth and clutching $his newborn child<<if $slaves[$i].pregType > 1>>ren<</if>>, $he returns to find that $he never ended the call. The prospective slave is blushing furiously and seems to have begun touching herself to the show. Apologizing for the interruption, while red with embarrassment, $slaves[$i].slaveName resumes chatting with the somewhat more pliant girl.
+		Exhausted from the birth and clutching $his newborn child<<if $slaves[$i].pregType > 1>>ren<</if>>, $he returns to find that $he never ended the call. The prospective slave is blushing furiously and seems to have begun touching _himselfU to the show. Apologizing for the interruption, while red with embarrassment, $slaves[$i].slaveName resumes chatting with the somewhat more pliant _girlU.
 	<<else>>
-		Exhausted from the birth and clutching $his newborn child<<if $slaves[$i].pregType > 1>>ren<</if>>, $he returns to find that $he never ended the call. The prospective slave is grinning widely and states she has been recording the show. She signs off, but not before saying she'll be seeing more of $slaves[$i].slaveName around the internet. <<if $slaves[$i].fetish == "humiliation">>Your recruiter can't help but become aroused at the prospect<<else>>Your recruiter is terrified that $his birth video is out there for everyone to see, partly due to $his own shame and to the potential damage it will do to $his reputation<</if>>.
+		Exhausted from the birth and clutching $his newborn child<<if $slaves[$i].pregType > 1>>ren<</if>>, $he returns to find that $he never ended the call. The prospective slave is grinning widely and states _heU has been recording the show. _HeU signs off, but not before saying _heU'll be seeing more of $slaves[$i].slaveName around the internet. <<if $slaves[$i].fetish == "humiliation">>Your recruiter can't help but become aroused at the prospect<<else>>Your recruiter is terrified that $his birth video is out there for everyone to see, partly due to $his own shame and to the potential damage it will do to $his reputation<</if>>.
 	<</if>>
 
 <<case "be your Head Girl">>
@@ -1114,12 +1115,13 @@
 	Quickly, $he collects $his child<<if $slaves[$i].pregType > 1>>ren<</if>> for removal before returning to $dairyName. The cows around $his stall all have a knowing look on their faces<<if $dairyPregSetting > 0>> but with their own swollen bellies hanging heavily from them, they know that they soon will follow $his lead.<<else>>.<</if>>
 
 <<case "be the Wardeness">>
+	<<setNonlocalPronouns $seeDicks>>
 	<<if $slaves[$i].fetish == "mindbroken">>
-		While punishing a slave, $slaves[$i].slaveName's water breaks, soaking her. Indifferent, $he resumes beating her until the contractions are to much to bear. Settling to the floor, $he begins giving birth.
+		While punishing a slave, $slaves[$i].slaveName's water breaks, soaking _himU. Indifferent, $he resumes beating _himU until the contractions are to much to bear. Settling to the floor, $he begins giving birth.
 		<<ClothingBirth>>
-		As soon as $he regains $his strength, $he resumes beating the confused slave. $His child<<if $slaves[$i].pregType > 1>>ren<</if>> are collected by a servant, who carefully hints that $slaves[$i].slaveName should take a break before returning to $his task.
+		As soon as $he regains $his strength, $he resumes beating the confused slave. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> collected by a servant, who carefully hints that $slaves[$i].slaveName should take a break before returning to $his task.
 	<<else>>
-		While punishing a rebellious slave, $slaves[$i].slaveName's water breaks, soaking her. Noticing the slave's smirk, $he resumes beating her until the contractions are too much to bear. Relocking the cell, $he waddles into the nearest empty cell and drops $his weight onto the cot.
+		While punishing a rebellious slave, $slaves[$i].slaveName's water breaks, soaking _himU. Noticing the slave's smirk, $he resumes beating _himU until the contractions are too much to bear. Relocking the cell, $he waddles into the nearest empty cell and drops $his weight onto the cot.
 		<<ClothingBirth>>
 		Quickly, $he collects $his child<<if $slaves[$i].pregType > 1>>ren<</if>> for removal before returning to $cellblockName. On $his way past the cells, $he takes note of any slaves whispering or gesturing about what transpired for future punishment.
 	<</if>>
@@ -1368,7 +1370,7 @@ Feeling childbirth approaching, $slaves[$i].slaveName is helped to $his prepared
 
 <<case "a penitent nuns habit">>
 	<<if $slaves[$i].fetish == "mindbroken">>
-		Instinctively, $he begins to push out <<if $slaves[$i].broodmother > 0>><<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby<<else>>$his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>><</if>> into $his habit, indifferent to their comfort.
+		Instinctively, $he begins to push out <<if $slaves[$i].broodmother > 0>><<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby<<else>>$his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>><</if>> into $his habit, indifferent to their discomfort.
 	<<else>>
 		Quickly $he spreads $his legs apart and begins pushing out <<if $slaves[$i].broodmother > 0>><<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby<<else>>$his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>><</if>>.<<if $slaves[$i].fetish == "humiliation">> $He is disappointed that $his habit hides what's happening between $his legs<<else>> $He does $his best to hide what's happening between $his legs<</if>>. $He tries to keep $his newborn<<if $slaves[$i].pregType > 1>>s<</if>> from being chafed by $his habit.
 	<</if>>