diff --git a/devTools/Script to convert SC to JS/SC to JS 1.py b/devTools/Script to convert SC to JS/SC to JS 1.py
index 61c717a92e42dfec1e345a0c21e62be86d4e5d0f..ca5859bbcec1c5658d5defb2d8315c0f6a561316 100644
--- a/devTools/Script to convert SC to JS/SC to JS 1.py	
+++ b/devTools/Script to convert SC to JS/SC to JS 1.py	
@@ -56,24 +56,22 @@ editor.rereplace(r" == ", r" === ")
 editor.rereplace(r" != ", r" !== ")
 
 #fix pronouns
+editor.rereplace(r"V\.Hers", r"\${Hers}")
+editor.rereplace(r"V\.hers", r"\${hers}")
 editor.rereplace(r"V\.He", r"\${He}")
 editor.rereplace(r"V\.he", r"\${he}")
+editor.rereplace(r"V\.Himself", r"\${Himself}")
+editor.rereplace(r"V\.himself", r"\${himself}")
 editor.rereplace(r"V\.Him", r"\${Him}")
 editor.rereplace(r"V\.him", r"\${him}")
 editor.rereplace(r"V\.His", r"\${His}")
 editor.rereplace(r"V\.his", r"\${his}")
-editor.rereplace(r"V\.Hers", r"\${Hers}")
-editor.rereplace(r"V\.hers", r"\${hers}")
-editor.rereplace(r"V\.Himself", r"\${Himself}")
-editor.rereplace(r"V\.himself", r"\${himself}")
 editor.rereplace(r"V\.Girl", r"\${Girl}")
 editor.rereplace(r"V\.girl", r"\${girl}")
 editor.rereplace(r"V\.Loli", r"\${Loli}")
 editor.rereplace(r"V\.loli", r"\${loli}")
 editor.rereplace(r"V\.Woman", r"\${Woman}")
 editor.rereplace(r"V\.woman", r"\${woman}")
-editor.rereplace(r"V\.Hers", r"\${Hers}")
-editor.rereplace(r"V\.hers", r"\${hers}")
 
 #fix pronouns
 editor.rereplace(r"_He2", r"\${_He2}")
diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js
index e5be2e88b0319cee5ad61244fd044c3367071b55..ef65cc82ec9746c896fd5832379c0fe96928f40b 100644
--- a/js/003-data/policiesData.js
+++ b/js/003-data/policiesData.js
@@ -1876,6 +1876,7 @@ App.Data.Policies.Selection = {
 				requirements: function() { return (V.arcologies[0].FSRestartDecoration >= 100 && V.rep >= 5000); },
 				onImplementation: function() {
 					repX(-4000, "policies");
+					Engine.play("Breeder Proposal");
 				},
 				hide: {ifActivated: 1}, // Repeal is not possible.
 				note: `Will greatly damage your reputation for even proposing`
diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt
index 2f440a2b8e484e47cf2293f54051bf579f554339..e5db8973851d24928b25034ddc4d665ec0ebb965 100644
--- a/slave variables documentation - Pregmod.txt	
+++ b/slave variables documentation - Pregmod.txt	
@@ -461,6 +461,11 @@ rules.rest:
 "permissive"	- slave is allowed to rest when tired
 "mandatory"		- day of rest each week to recover
 
+rules.mobility
+
+"restrictive"	- slave is forced to crawl should she grow too large to walk
+"permissive"	- slave is allowed to use carts and such to carry her weight should she grow too large to walk
+
 rules.relationship:
 
 "restrictive"
diff --git a/src/data/backwardsCompatibility/datatypeCleanup.js b/src/data/backwardsCompatibility/datatypeCleanup.js
index 4564df3e1027f97c63cd859987bea7823421d2c2..60a17047a0e5579de773a24678db928f63fc925a 100644
--- a/src/data/backwardsCompatibility/datatypeCleanup.js
+++ b/src/data/backwardsCompatibility/datatypeCleanup.js
@@ -1049,6 +1049,9 @@ globalThis.SlaveDatatypeCleanup = (function SlaveDatatypeCleanup() {
 		slave.choosesOwnChastity = Math.clamp(+slave.choosesOwnChastity, 0, 1) || 0;
 		slave.breedingMark = Math.clamp(+slave.breedingMark, 0, 1) || 0;
 		slave.rudeTitle = Math.clamp(+slave.rudeTitle, 0, 1) || 0;
+		if (typeof slave.rules.mobility !== "string") {
+			slave.rules.mobility = "restrictive";
+		}
 	}
 
 	/**
diff --git a/src/endWeek/reports/clinicReport.js b/src/endWeek/reports/clinicReport.js
index ca3c6dfdb76c5b3e3edc56252dfb23b52466f70e..85476812c7c4730ddb038e70391c51eae757acf9 100644
--- a/src/endWeek/reports/clinicReport.js
+++ b/src/endWeek/reports/clinicReport.js
@@ -244,7 +244,7 @@ App.EndWeek.clinicReport = function() {
 			if (V.seeImages && V.seeReportImages) {
 				App.UI.DOM.appendNewElement("div", nurseEntry, App.Art.SlaveArtElement(slave, 0, 0), ["imageRef", "tinyImg"]);
 			}
-			$(nurseEntry).append(`<span class='slave-name'>${SlaveFullName(slave)}</span> is serving as as the clinical nurse.`);
+			$(nurseEntry).append(`<span class='slave-name'>${SlaveFullName(slave)}</span> is serving as the clinical nurse.`);
 			$(nurseEntry).append(App.SlaveAssignment.standardSlaveReport(slave, false));
 		} else {
 			App.SlaveAssignment.standardSlaveReport(slave, true);
diff --git a/src/events/RESS/comfortableSeat.js b/src/events/RESS/comfortableSeat.js
new file mode 100644
index 0000000000000000000000000000000000000000..628ecfe0cb5ecaecc37f9500385d31bad3319cb7
--- /dev/null
+++ b/src/events/RESS/comfortableSeat.js
@@ -0,0 +1,360 @@
+App.Events.RESSComfortableSeat = class RESSComfortableSeat extends App.Events.BaseEvent {
+	eventPrerequisites() {
+		return [
+			() => V.PC.belly < 5000,
+			() => V.PC.balls < 10
+		];
+	}
+
+	actorPrerequisites() {
+		return [
+			[ // single event slave
+				s => s.fetish !== "mindbroken",
+				canStand,
+				hasAnyArms,
+				canSee,
+				s => s.trust > 20,
+				s => s.devotion > 20,
+				s => s.energy > 40,
+				s => s.belly < 300000
+			]
+		];
+	}
+
+	execute(node) {
+		/** @type {Array<App.Entity.SlaveState>} */
+		let [eventSlave] = this.actors.map(a => getSlave(a));
+		const {
+			He, he, His, his, him, himself, girl
+		} = getPronouns(eventSlave);
+		const {s, say, title: Master} = getEnunciation(eventSlave);
+		const desc = SlaveTitle(eventSlave);
+		const belly = bellyAdjective(eventSlave);
+		const dickSize = ["tiny", "", "big"][Math.ceil(Math.clamp(eventSlave.dick, 1, 5) / 2) - 1]; // ranges are "tiny" <= 2 < "" <= 4 < "big"
+
+		/** @type {App.Entity.PlayerState} */
+		let PC = V.PC;
+
+		V.nextLink = "Next Week";
+
+		App.Events.drawEventArt(node, eventSlave);
+
+		let t = [];
+
+		t.push("There are sturdy leather seats placed strategically throughout your penthouse. They offer something convenient to bend your slaves over, wherever you happen to encounter them, and they're comfortable, too. At the moment, you're sitting on one, using a tablet to take care of some business that caught you away from your office, but isn't worth heading back to your desk for. Slaves move by your impromptu throne as you work, mostly");
+		if (V.averageTrust > 50) {
+			t.push("greeting you cheerfully");
+		} else if (V.averageTrust > 20) {
+			t.push("greeting you properly");
+		} else if (V.averageTrust > -20) {
+			t.push("doing their best to greet you properly");
+		} else if (V.averageTrust > -50) {
+			t.push("greeting you fearfully");
+		} else {
+			t.push("struggling to greet you through their terror");
+		}
+		t.push("as they pass. Busy, you spare few of them more than a glance.");
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		t.push(`One of them slows as ${he} goes by, however. Looking up, you see that it's`);
+		t.push(App.UI.DOM.combineNodes(App.UI.DOM.slaveDescriptionDialog(eventSlave), "."));
+		if (canTalk(eventSlave)) {
+			if (eventSlave.belly >= 1500) {
+				t.push(`"Hi ${Master}," ${he} ${say}s flirtatiously rubbing a hand across ${his} ${belly} ${eventSlave.bellyPreg > 0 ? "pregnancy" : "belly"}.`);
+			} else {
+				t.push(`"Hi ${Master}," ${he} ${say}s flirtatiously.`);
+			}
+			t.push(Spoken(eventSlave, `"That looks like a really comfortable seat. Can I sit down and rest ${eventSlave.belly >= 10000 ? "my tired legs" : ""} for a little while?"`));
+		} else {
+			t.push(`${He} greets you properly, but adds a flirtiness to ${his} gestures, and asks if ${he} can sit down and rest`);
+			if (eventSlave.belly >= 10000) {
+				t.push(`${his} ${eventSlave.bellyPreg > 0 ? "gravid" : belly} bulk`);
+			}
+			t.push("on the comfortable seat for a little while.");
+		}
+		t.push(`${He} is not pointing at the soft leather cushion next to you: ${he}'s pointing at your crotch.`);
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		t.push(`You're nude, a consequence of ${V.Concubine !== 0 && V.Concubine.ID !== eventSlave.ID ? `recent activities involving ${V.Concubine.slaveName}` : "recent unrelated activities"}. ${PC.dick !== 0 ? "Your formidable dick is three quarters hard," : "Nude, that is, all except for the strap-on you were just using and haven't taken off yet,"} and ${eventSlave.slaveName} is pointing right at it. ${He} knows exactly what ${he}'s asking for and gives ${his}`);
+		if (eventSlave.hips > 0) {
+			t.push("broad");
+		} else if (eventSlave.hips > -1) {
+			t.push("trim");
+		} else {
+			t.push("narrow");
+		}
+		t.push("hips a little wiggle to make it even more abundantly clear.");
+		if (eventSlave.chastityPenis === 1) {
+			t.push(`${His} poor dick is visibly straining against the restrictive chastity belt ${he}'s wearing.`);
+		} else if (canAchieveErection(eventSlave)) {
+			t.push(`${His} ${dickSize} dick is jutting out stiffly and there's a bead of precum ${eventSlave.foreskin === 0 ? "forming at its smooth tip" : `escaping from ${his} foreskin`}.`);
+		} else if (eventSlave.dick > 0) {
+			t.push(`${His} ${dickSize} dick is as soft as ever, but there's a string of precum running between ${eventSlave.foreskin === 0 ? "its smooth tip" : "the soft foreskin that completely covers its tip"} and ${his} inner thigh.`);
+		} else if (eventSlave.clit > 0) {
+			t.push(`${His} ${eventSlave.clit > 1 ? "formidable" : "big"} clit is visibly erect. ${eventSlave.clitPiercing > 1 ? `${His} sizable clit piercing never lets its hood completely cover hide ${his} bitch button, but it's completely retracted now,` : `${His} delicate clitoral hood has been pushed back by ${his} female erection,`} leaving ${him} proudly aroused.`);
+		} else if (eventSlave.labia > 0) {
+			t.push(`${His} ${eventSlave.labia > 1 ? "dangling" : "thick"} labia are visibly swollen, flushing and growing prouder as the blood rushes to ${his} womanhood.`);
+		} else if (eventSlave.vagina === -1) {
+			t.push(`Since ${he}'s featureless in front, ${he} makes a little half turn to the side, making it very clear that ${his} asspussy needs fucking.`);
+		} else {
+			t.push(`${He} has a shapely womanhood, with trim labia and a demure clit, but it's a little flushed.`);
+		}
+		t.push(`${eventSlave.vaginaLube > 0 ? `${His} wet cunt is already lubricating itself generously for you, slicking ${his} labia with female arousal.` : ""} The slutty ${desc} wants it badly.`);
+
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		App.Events.addResponses(node, [
+			new App.Events.Result(`Let ${him} do what ${he} wants`, permit),
+			new App.Events.Result(`Have ${him} service you while you work`, service),
+			new App.Events.Result(`Drive ${him} off for breaking in on your work`, spank)
+		]);
+
+		function permit() {
+			t = [];
+
+			t.push(`You tell ${him} to sit down if ${he}'d like to. ${He} looks at you quizzically, ${eventSlave.intelligence + eventSlave.intelligenceImplant < -15 ? `${his} dim mind slowly` : ""} realizing that you're letting ${him} choose what to do. ${canTalk(eventSlave) ? `"Oh, thank you, ${Master}," ${he} ${say}s,` : `${He} gestures ${his} thanks,`} and then makes a show of deciding. ${He} ${eventSlave.intelligence + eventSlave.intelligenceImplant < -15 ? "doesn't have to pretend" : "cheekily pretends"} to be an airheaded bimbo puzzling over how ${he} wants to approach a fuck, bouncing`);
+			if ((eventSlave.boobsImplant / eventSlave.boobs) >= 0.60) {
+				t.push(`${his} fake tits a little,`);
+			} else if (eventSlave.boobs > 4000) {
+				t.push(`${his} monstrous udders heavily,`);
+			} else if (eventSlave.boobs > 1000) {
+				t.push(`${his} heavy breasts a little,`);
+			} else if (eventSlave.boobs > 300) {
+				t.push(`${his} boobs a little,`);
+			} else {
+				t.push(`on ${his} heels,`);
+			}
+			if (eventSlave.belly >= 5000) {
+				t.push(`rocking ${his}`);
+				if (eventSlave.bellyPreg >= 3000) {
+					t.push("baby bump");
+				} else if (eventSlave.bellyImplant >= 3000) {
+					t.push("implant-filled belly");
+				} else {
+					t.push(`${eventSlave.inflationType}-filled belly`);
+				}
+				t.push("side to side seductively");
+			} else {
+				t.push(`wiggling ${his} rear side to side alluringly`);
+			}
+			t.push(`and putting a finger to ${his} slightly parted lips as ${he} stares down at your ${PC.dick !== 0 ? "stiff prick" : "strap-on"}.`);
+			App.Events.addParagraph(node, t);
+			t = [];
+
+			if (eventSlave.fetishKnown === 1 && eventSlave.fetish !== "none") {
+				t.push(`Finally making ${his} decision, ${he}`);
+				switch (eventSlave.fetish) {
+					case "submissive":
+						t.push(`turns around and carefully perches ${himself} on ${PC.dick !== 0 ? "your cock" : "the phallus"},`);
+						if (canDoVaginal(eventSlave) && eventSlave.vagina > 0) {
+							t.push(`letting ${his} weight slide it inside ${his} wet pussy.`);
+							VCheck.Vaginal(1, eventSlave);
+						} else if (canDoAnal(eventSlave) && eventSlave.anus > 0) {
+							t.push(`letting ${his} weight push it up ${his} asshole.`);
+							VCheck.Anal(1, eventSlave);
+						} else {
+							t.push(`putting it between ${his} thighs.`);
+						}
+						t.push(`${He}'s not used to being on top, but ${he} uses ${himself} to service you as submissively as ${he} can. ${He} pays ${his} own pleasure no attention at all,`);
+						break;
+					case "cumslut":
+						t.push(`squats down, coming face to face with ${PC.dick !== 0 ? "your cock" : "the phallus"}. ${canTalk(eventSlave) ? `"${Master}, I changed my mind about ${s}itting," ${he} ${say}s` : `${He} gestures that ${he} changed ${his} mind about sitting`}, and licks ${his} lips sluttily. Then ${he} gives ${PC.dick !== 0 ? "you" : "the phallus"} a lusty blowjob, humming and licking happily. ${He} ${PC.dick !== 0 ? "swallows your load hungrily" : "helps you out of the harness with your permission and eats you out too"},`);
+						seX(eventSlave, "oral", PC, "penetrative");
+						break;
+					case "humiliation":
+						t.push(`turns around and sits on ${PC.dick !== 0 ? "your cock" : "the phallus"}, leaning back against you and making sure all the other slaves who pass by can see`);
+						if (canDoVaginal(eventSlave) && eventSlave.vagina > 0) {
+							t.push(`where it penetrates ${his} cunt.`);
+							VCheck.Vaginal(1, eventSlave);
+						} else if (canDoAnal(eventSlave) && eventSlave.anus > 0) {
+							t.push(`where it's lodged up ${his} butt.`);
+							VCheck.Anal(1, eventSlave);
+						} else {
+							t.push(`where it's rubbing ${him} intimately between ${his} thighs.`);
+						}
+						t.push(`${He} gets off on their looks,`);
+						break;
+					case "buttslut":
+						if (canDoAnal(eventSlave) && eventSlave.anus > 0) {
+							t.push(`turns around and shivers with pleasure as ${he} hilts ${his} anal sphincter around the base of ${PC.dick !== 0 ? "your cock" : "the phallus"}. ${He} bounces on it happily, reaming ${his} own ass,`);
+							VCheck.Anal(1, eventSlave);
+						} else {
+							t.push(`turns around and shivers with pleasure as ${he} feels ${PC.dick !== 0 ? "your cock" : "the phallus"} slip between ${his} buttcheeks. ${He} rubs against it, happy to share ${his} butt with you,`);
+						}
+						break;
+					case "boobs":
+						t.push(`squats down, placing ${PC.dick !== 0 ? "your cock" : "the phallus"}`);
+						if (eventSlave.boobs > 4000) {
+							t.push(`in the virtual hole formed in the place between ${his} breasts, which are so massive they rest together.`);
+						} else if (eventSlave.boobs > 1000) {
+							t.push(`in the valley between ${his} tits.`);
+						} else if (eventSlave.boobs > 300) {
+							t.push(`between ${his} breasts.`);
+						} else {
+							t.push(`against one of ${his} nipples.`);
+						}
+						t.push(`${canTalk(eventSlave) ? `"${Master}, I changed my mind about ${s}itting," ${he} ${say}s` : `${He} gestures that ${he} changed ${his} mind about sitting`}, and starts giving you a boob job. ${He} enjoys the breast play,`);
+
+						seX(eventSlave, "mammary", PC, "penetrative");
+						break;
+					case "pregnancy":
+						if (canDoVaginal(eventSlave) && eventSlave.vagina > 0) {
+							t.push(`turns around and lovingly lowers ${his} pussy onto you.`);
+							if (PC.dick !== 0) {
+								if (eventSlave.pregKnown === 1) {
+									t.push(`${He}'s already pregnant, so this isn't a direct satisfaction of ${his} impregnation fetish, but being fucked while pregnant is almost as good as far as ${he}'s concerned.`);
+								} else if (canGetPregnant(eventSlave)) {
+									t.push(`This might be the moment ${he} gets pregnant, and ${he}'s quivering with anticipations.`);
+								} else {
+									t.push(`${He} knows ${he} isn't fertile, but ${he}'s good at fantasizing.`);
+								}
+							} else {
+								t.push(`Your strap-on might not be able to impregnate anyone, but ${he}'s good at fantasizing.`);
+							}
+							t.push(`${He} rides you hungrily,`);
+
+							VCheck.Vaginal(1, eventSlave);
+							if (canImpreg(eventSlave, PC)) {
+								knockMeUp(eventSlave, 40, 0, -1);
+							}
+						} else {
+							t.push(`turns around and carefully perches ${himself} on ${PC.dick !== 0 ? "your cock" : "the phallus"}, putting it between ${his} thighs. ${He} rides you caringly,`);
+						}
+						break;
+					case "dom":
+						t.push(`turns around and sits right down on ${PC.dick !== 0 ? "your cock" : "the phallus"}, eagerly`);
+						if (canDoVaginal(eventSlave) && eventSlave.vagina > 0) {
+							t.push(`taking it into ${his} cunt.`);
+							VCheck.Vaginal(1, eventSlave);
+						} else if (canDoAnal(eventSlave) && eventSlave.anus > 0) {
+							t.push(`getting it shoved up ${his} butt.`);
+							VCheck.Anal(1, eventSlave);
+						} else {
+							t.push(`squeezing it between ${his} thighs.`);
+						}
+						t.push(`${He} loves being on top, even if ${he}'s the one who's getting fucked. ${He} rides you happily,`);
+						break;
+					case "sadist":
+						t.push(`turns around and hesitantly sits on ${PC.dick !== 0 ? "your cock" : "the phallus"}, letting`);
+						if (canDoVaginal(eventSlave) && eventSlave.vagina > 0) {
+							t.push(`it slide into ${his} cunt.`);
+							VCheck.Vaginal(1, eventSlave);
+						} else if (canDoAnal(eventSlave) && eventSlave.anus > 0) {
+							t.push(`it slide up ${his} butt.`);
+							VCheck.Anal(1, eventSlave);
+						} else {
+							t.push(`it slide between ${his} thighs.`);
+						}
+						t.push(`${He} prefers to be rough, but settles for just directing how ${he} gets used. ${He} rides you cautiously,`);
+						break;
+					case "masochist":
+						t.push(`turns around and carefully perches ${himself} on ${PC.dick !== 0 ? "your cock" : "the phallus"},`);
+						if (canDoVaginal(eventSlave) && eventSlave.vagina > 0) {
+							t.push(`letting ${his} weight slide it inside ${his} wet pussy at an uncomfortable angle.`);
+							VCheck.Vaginal(1, eventSlave);
+						} else if (canDoAnal(eventSlave) && eventSlave.anus > 0) {
+							t.push(`letting ${his} weight push it up ${his} asshole at an uncomfortable angle.`);
+							VCheck.Anal(1, eventSlave);
+						} else {
+							t.push(`putting it between ${his} thighs at an uncomfortable angle.`);
+						}
+						t.push(`${He} does ${his} best to please you while making sex as unpleasant as ${he} can for ${himself}. ${He} pays close attention to your comfort versus ${his} own,`);
+						break;
+				}
+				t.push(`and after you've ${PC.dick !== 0 ? "cum" : "climaxed"}, ${he} <span class="mediumaquamarine">thanks you trustingly,</span> happy ${he}'s still allowed a sexy choice with you now and then.`);
+			} else {
+				t.push(`${eventSlave.fetishKnown === 1 ? `${He} can't really think of how to accommodate the situation to ${his} own preferred approach to sex` : `${He} isn't well versed in how ${his} own sexual needs might fit into the situation`}, so ${he} just services you like a good ${girl}. ${He} turns around and sits on ${PC.dick !== 0 ? "your cock" : "the phallus"},`);
+				if (canDoVaginal(eventSlave) && eventSlave.vagina > 0) {
+					t.push(`squatting to bounce ${his} cunt up and down on it.`);
+					VCheck.Vaginal(1, eventSlave);
+				} else if (canDoAnal(eventSlave) && eventSlave.anus > 0) {
+					t.push(`squatting to bounce ${his} butthole up and down on it.`);
+					VCheck.Anal(1, eventSlave);
+				} else {
+					t.push(`putting it between ${his} thighs for some intercrural sex, since ${his} ${eventSlave.vagina > -1 ? "holes aren't" : "hole isn't"} appropriate.`);
+				}
+				t.push(`When ${he}'s gotten you off, ${he} <span class="mediumaquamarine">thanks you trustingly.</span> Even though ${he} wasn't able to figure out how to seat ${himself} in a really satisfactorily sexy way, ${he}'s glad you gave ${him} some agency.`);
+			}
+			App.Events.addParagraph(node, t);
+
+			eventSlave.trust += 5;
+
+			t = []; /* need to clear the array before returning in this case because otherwise weird things happen */
+			return t;
+		}
+
+		function service() {
+			t = [];
+
+			t.push(`You order ${him} to sit on your ${PC.dick !== 0 ? "dick" : "strap-on"} and get you off like a good ${girl}, but not to disturb you while you're working. ${He}`);
+			if (canTalk(eventSlave)) {
+				t.push(`shuts up immediately,`);
+			} else {
+				t.push(`obediently drops ${his} ${hasBothArms(eventSlave) ? `hands to ${his} sides and stops communicating with them` : `hand to ${his} side and stops communicating with it`},`);
+			}
+			t.push(`and approaches you carefully. Meanwhile, you go back to your tablet, ignoring ${him} completely. ${He} gingerly straddles your legs, positioning ${his} intimate areas directly over the pointing head of ${PC.dick !== 0 ? "your erection" : "the phallus"}`);
+			if (eventSlave.belly >= 5000) {
+				t.push(`${PC.dick !== 0 ? "your erection" : "the phallus"}, all while delicately trying to not bump into you with ${his} ${eventSlave.bellyPreg >= 3000 ? "pregnancy" : "belly"}.`);
+			} else {
+				t.push(`${PC.dick !== 0 ? "your erection" : "the phallus"}.`);
+			}
+			t.push(`Deciding that ${he} shouldn't use ${his} ${hasBothArms(eventSlave) ? "hands" : "hand"} to guide it, ${he} lowers ${himself} slowly,`);
+			if (canDoVaginal(eventSlave) && eventSlave.vagina > 0) {
+				t.push(`breathing a little harder as ${he} feels its head spread ${his} pussylips and then slide inside ${him}.`);
+				VCheck.Vaginal(1, eventSlave);
+			} else if (canDoAnal(eventSlave) && eventSlave.anus > 0) {
+				t.push(`letting out a breath and relaxing as ${he} feels its head press past ${his} sphincter and then all the way up ${his} butt.`);
+				VCheck.Anal(1, eventSlave);
+			} else {
+				t.push(`getting it situated between ${his} thighs, since that's the best option ${he} has available.`);
+			}
+			t.push(`${eventSlave.belly >= 5000 ? `Before starting to pleasure you, ${he} notices there is no way ${he} can move with ${his} rounded middle sticking out as far as it does. ${He} carefully turns around, feeling your glare on ${his} back at ${his} mistake.` : ""} Still crouched over you, ${he} begins to move up and down, milking ${PC.dick !== 0 ? "your penis" : "the strap-on"}. As ${he} works into it, ${he} lets ${his} butt touch you, just once, but you make a nonverbal sound of disapproval, letting ${him} know not to disturb your work like that. Realizing that ${he} needs to play the human sex toy, ${he}`);
+			if (eventSlave.butt > 12) {
+				t.push(`grabs ${his} massive buttocks and finds that there is no way ${he} can keep the expanses of flesh from enveloping your lap.`);
+			} else if (eventSlave.butt > 5) {
+				t.push(`grabs ${his} huge buttocks and holds them apart, doing ${his} best to keep them out of the way.`);
+			} else if (eventSlave.butt > 2) {
+				t.push(`takes hold of ${his} healthy asscheeks and spreads them as far as they'll go, doing ${his} best to keep them out of the way.`);
+			} else {
+				t.push(`uses ${his} arms for balance, since ${his} cute butt can stay out of the way on its own and doesn't need to be spread by hand.`);
+			}
+			if (eventSlave.belly >= 10000) {
+				t.push(`You spread your legs as you shift into a more comfortable position, stealthily showing mercy since ${he} can't possibly keep ${his} ${eventSlave.bellyPreg >= 3000 ? "full-term" : belly} belly off you otherwise.`);
+			}
+			t.push(`${He} bobs up and down, getting you off without ever touching you${PC.dick !== 0 ? `, other than the contact between your penis and the inside of ${his} body, of course` : ""}.`);
+			if (eventSlave.energy > 80) {
+				t.push(`${He} has such a powerful sex drive that even this sterile intercourse brings ${him} to orgasm.`);
+			} else if (!App.Utils.hasNonassignmentSex(eventSlave)) {
+				t.push(`${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 {
+				t.push(`${He} does not orgasm, serving you properly and showing appropriate disregard for ${his} own pleasure.`);
+			}
+			t.push(`When ${he}'s done, ${he} makes the perfect exit, <span class="hotpink">silently padding away like the passive sex object ${he} is.</span>`);
+
+			eventSlave.devotion += 5;
+			return t;
+		}
+
+		function spank() {
+			t = [];
+
+			t.push(`You command ${him} to turn around and show you ${his} ass. ${He} obeys eagerly, spinning and bringing you face to face with ${his}`);
+			if (eventSlave.butt > 12) {
+				t.push("view filling rear.");
+			} else if (eventSlave.butt > 5) {
+				t.push("monstrous bottom.");
+			} else if (eventSlave.butt > 2) {
+				t.push("womanly butt.");
+			} else {
+				t.push("cute little rear end.");
+			}
+			t.push(`${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. ${canTalk(eventSlave) ? `${Master}, I'm ${s}-${s}orry," ${he} sobs. "I d-don't under${s}tand. What did I d-do?"` : `${He} shakily gestures a question, begging to know what ${he} did.`} 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 <span class="gold">bitter disappointment that ${he}'s not allowed to approach you</span> like that.`);
+
+			eventSlave.trust -= 5;
+			return t;
+		}
+	}
+};
diff --git a/src/events/RESS/devotedAnalVirgin.js b/src/events/RESS/devotedAnalVirgin.js
index 64c9569e149d0696cb8a9391d96c2d00a4df746b..a710cd1c96dcc41af2c5ec7fa54c92b54c4e464c 100644
--- a/src/events/RESS/devotedAnalVirgin.js
+++ b/src/events/RESS/devotedAnalVirgin.js
@@ -21,7 +21,7 @@ App.Events.RESSDevotedAnalVirgin = class RESSDevotedAnalVirgin extends App.Event
 		/** @type {Array<App.Entity.SlaveState>} */
 		let [eventSlave] = this.actors.map(a => getSlave(a));
 		const {
-			He, he, his, him, himself
+			He, His, he, his, him, himself
 		} = getPronouns(eventSlave);
 		const {say, title: Master} = getEnunciation(eventSlave);
 		const belly = bellyAdjective(eventSlave);
@@ -83,7 +83,7 @@ App.Events.RESSDevotedAnalVirgin = class RESSDevotedAnalVirgin extends App.Event
 			}
 			t.push(`body against you and shivering with delight.`);
 			if (eventSlave.vagina > 0 && canDoVaginal(eventSlave)) {
-				t.push(`$His shivers reach a crescendo when you ${PC.dick === 0 ? "scissor yourself against" : "enter"} ${his} warm, wet pussy, which convulsively flexes against your ${PC.dick === 0 ? "clit" : "rock hard dick"}.`);
+				t.push(`${His} shivers reach a crescendo when you ${PC.dick === 0 ? "scissor yourself against" : "enter"} ${his} warm, wet pussy, which convulsively flexes against your ${PC.dick === 0 ? "clit" : "rock hard dick"}.`);
 			} else {
 				if (PC.dick === 0) {
 					t.push(`You ride ${his} face,`);
@@ -112,13 +112,14 @@ App.Events.RESSDevotedAnalVirgin = class RESSDevotedAnalVirgin extends App.Event
 			}
 			t.push(`body for a long time. Every so often you move your hands over ${his} unfucked butthole, making ${him} shiver and press ${himself} against you, but you only make it the center of attention once the poor over-aroused slave`);
 			if (canTalk(eventSlave)) {
-				t.push(`begs, "I can't take it any more, ${Master}! Plea${s}e fuck my a${ss}!"`);
+				t.push(`begs,`);
+				t.push(Spoken(eventSlave, `"I can't take it any more, ${Master}! Please fuck my ass!"`));
 			} else {
 				t.push("begins to use piteous gestures to beg you abjectly for anal.");
 			}
 
 			t.push(`In reward, you sink a lightly lubricated finger up to the first knuckle in ${his} delightfully tight asshole. ${He}'s already on the edge of orgasm, and it takes a long, long time for you to work first a finger, then two, and then your ${PC.dick === 0 ? "strap-on" : "cock"} up ${his} ass without sending ${him} over. When you finally let ${him} orgasm, ${PC.dick === 0 ? `${his} unabashed enjoyment` : `the strength of ${his} spasming sphincter`} send you over as well. ${He}'s left in a haze of <span class="hotpink">sexual satisfaction</span> that radiates outward from ${his} <span class="lime">newly stretched asshole,</span> and ${he} <span class="mediumaquamarine">trusts you</span> a lot more, now.`);
-			if ((eventSlave.fetishKnown !== 1 || eventSlave.fetish !== "buttslut") && fetishChangeChance(eventSlave) > jsRandom(1,100)) {
+			if ((eventSlave.fetishKnown !== 1 || eventSlave.fetish !== "buttslut") && fetishChangeChance(eventSlave) > jsRandom(1, 100)) {
 				t.push(`Before the end of the week ${he}'s back, begging for <span class="lightcoral">another dick up the ass.</span>`);
 
 				eventSlave.fetishKnown = 1;
@@ -130,7 +131,7 @@ App.Events.RESSDevotedAnalVirgin = class RESSDevotedAnalVirgin extends App.Event
 			eventSlave.trust += 3;
 			eventSlave.anus = 1;
 			seX(eventSlave, "anal", PC, "penetrative");
-			if (PC.dick !== 0 && eventSlave.eggType === "human" && canGetPregnant(eventSlave)) {
+			if (canImpreg(eventSlave, PC)) {
 				knockMeUp(eventSlave, 15, 1, -1);
 			}
 			return t;
@@ -140,7 +141,7 @@ App.Events.RESSDevotedAnalVirgin = class RESSDevotedAnalVirgin extends App.Event
 			t = [];
 
 			t.push(`You throw ${him} onto the couch face-down, ${eventSlave.belly >= 5000 ? `${his} rear pushed into the air by ${his} rounded belly` : ""} catching a glimpse of ${his} doubtful face as ${he} goes; ${he}'s already started to wonder whether this was a mistake. In a few moments ${he} knows it for sure as ${he} feels ${!canDoAnal(eventSlave) ? `${his} anal chastity ripped off and` : ""} the burning sensation of a lubricated ${PC.dick === 0 ? "strap-on" : "dickhead"} forcing ${his} virgin sphincter wide. Whatever noises ${he} might be making are pretty inaudible, since you have ${his} sobbing face shoved deep between the leather cushions. ${He} tries not to struggle and relax for ${his} beloved master, but ${his} body rebels against the pain and ${he} starts to wriggle spastically, trying to burrow into the couch to get away from the pounding. When you finish, the poor slave is left lying on the couch with a ${PC.dick !== 0 ? `thin dribble of ejaculate escaping from ${his}` : ""} <span class="lime">newly fucked butthole,</span> a stream of drying tears running down each side of ${his} face, ${eventSlave.dick > 0 ? `a single drop of precum at the tip of ${his} totally flaccid dick,` : ""} and a new understanding of <span class="gold">${his} place in life.</span>`);
-			if ((eventSlave.fetishKnown !== 1 || eventSlave.fetish !== "submissive") && fetishChangeChance(eventSlave) > jsRandom(1,100)) {
+			if ((eventSlave.fetishKnown !== 1 || eventSlave.fetish !== "submissive") && fetishChangeChance(eventSlave) > jsRandom(1, 100)) {
 				t.push(`Before the end of the week it's clear that ${he}'s taken the anal rape to heart, and now sees ${his} body as something <span class="lightcoral">for others to use and abuse.</span>`);
 
 				eventSlave.fetishKnown = 1;
@@ -151,7 +152,7 @@ App.Events.RESSDevotedAnalVirgin = class RESSDevotedAnalVirgin extends App.Event
 			eventSlave.trust -= 5;
 			eventSlave.anus = 1;
 			seX(eventSlave, "anal", PC, "penetrative");
-			if (PC.dick !== 0 && eventSlave.eggType === "human" && canGetPregnant(eventSlave)) {
+			if (canImpreg(eventSlave, PC)) {
 				knockMeUp(eventSlave, 15, 1, -1);
 			}
 			return t;
diff --git a/src/events/RESS/devotedVirgin.js b/src/events/RESS/devotedVirgin.js
index 0cbbaa40943c64bc9fb91f6603d61b1c90bc944f..dd9089ef9c5523106b44669b65fdaa8afc95122f 100644
--- a/src/events/RESS/devotedVirgin.js
+++ b/src/events/RESS/devotedVirgin.js
@@ -94,7 +94,7 @@ App.Events.RESSDevotedVirgin = class RESSDevotedVirgin extends App.Events.BaseEv
 				t.push(`begins to reach for your ${PC.dick === 0 ? "strap-on" : "cock"} to pull it towards ${himself}.`);
 			}
 			t.push(`Finally, you lubricate your hand. Then you slowly and gently push a finger into ${his} invitingly tight virgin pussy. ${He}'s already on the edge of orgasm, and you patiently inch your ${PC.dick === 0 ? "strap-on" : "cock"} into ${his} pussy without making ${him} climax. You then start pumping and ${he} starts to moan and breathing more and more heavily. You continue pumping until ${he} finally starts to orgasm, ${PC.dick === 0 ? `${his} climactic shudders` : `the walls of ${his} tightening vagina`} send you over as well. ${He}'s left in a haze of <span class="hotpink">sexual satisfaction</span> that radiates outward from ${his} <span class="lime">newly initiated pussy,</span> and ${he} <span class="mediumaquamarine">trusts you</span> a lot more, now.`);
-			if ((eventSlave.fetishKnown !== 1 || eventSlave.fetish !== "pregnancy") && fetishChangeChance(eventSlave) > jsRandom(1,100)) {
+			if ((eventSlave.fetishKnown !== 1 || eventSlave.fetish !== "pregnancy") && fetishChangeChance(eventSlave) > jsRandom(1, 100)) {
 				t.push(`${He}'s back again before the week is over, eager for <span class="lightcoral">another dick in ${his} fuckhole.</span>`);
 
 				eventSlave.fetishKnown = 1;
@@ -106,7 +106,7 @@ App.Events.RESSDevotedVirgin = class RESSDevotedVirgin extends App.Events.BaseEv
 			eventSlave.trust += 3;
 			eventSlave.vagina = 1;
 			seX(eventSlave, "vaginal", PC, "penetrative");
-			if (PC.dick !== 0 && eventSlave.eggType === "human" && canGetPregnant(eventSlave)) {
+			if (canImpreg(eventSlave, PC)) {
 				knockMeUp(eventSlave, 15, 0, -1);
 			}
 			return t;
@@ -116,7 +116,7 @@ App.Events.RESSDevotedVirgin = class RESSDevotedVirgin extends App.Events.BaseEv
 			t = [];
 
 			t.push(`You throw ${him} onto the couch beside your desk; ${he} fails to stop ${himself} from losing balance with ${his} flailing ${isAmputee(eventSlave) ? "stumps" : "limbs"}. ${He} looks around doubtfully; ${he}'s already started to wonder whether this was a mistake. In a few moments ${he} knows it for sure as ${he} feels ${!canDoVaginal(eventSlave) ? `${his} vaginal chastity ripped off and` : ""} the burning sensation of a lubricated ${PC.dick === 0 ? "strap-on" : "dickhead"} forcing ${his} virgin pussy wide. You have ${his} face shoved deep between the leather cushions and you ignore the muffled sounds coming from ${him}. ${He} limply tries to relax for ${his} beloved master, but the painful sensation coming from ${his} crotch causes ${him} to start to writhe uncontrollably. ${He} pushes against the couch, trying to endure the pounding. When you finish, the poor slave is left lying on the couch with a ${PC.dick !== 0 ? `thin dribble of ejaculate escaping from ${his}` : ""} <span class="lime">newly fucked vagina,</span> a stream of drying tears running down each side of ${his} face, ${eventSlave.dick > 0 ? `a single drop of precum at the tip of ${his} totally flaccid dick,` : ""} and a new understanding of <span class="gold">${his} place in life.</span>`);
-			if ((eventSlave.fetishKnown !== 1 || eventSlave.fetish !== "submissive") && fetishChangeChance(eventSlave) > jsRandom(1,100)) {
+			if ((eventSlave.fetishKnown !== 1 || eventSlave.fetish !== "submissive") && fetishChangeChance(eventSlave) > jsRandom(1, 100)) {
 				t.push(`Before the end of the week it's clear that ${he}'s taken the rape to heart, and now sees ${his} body as something <span class="lightcoral">for others to use and abuse.</span>`);
 
 				eventSlave.fetishKnown = 1;
@@ -127,7 +127,7 @@ App.Events.RESSDevotedVirgin = class RESSDevotedVirgin extends App.Events.BaseEv
 			eventSlave.trust -= 5;
 			eventSlave.vagina = 1;
 			seX(eventSlave, "vaginal", PC, "penetrative");
-			if (PC.dick !== 0 && eventSlave.eggType === "human" && canGetPregnant(eventSlave)) {
+			if (canImpreg(eventSlave, PC)) {
 				knockMeUp(eventSlave, 15, 0, -1);
 			}
 			return t;
diff --git a/src/events/RESS/devotedWaist.js b/src/events/RESS/devotedWaist.js
new file mode 100644
index 0000000000000000000000000000000000000000..442acee4c650e32687de8544f7a900bd32c30cdb
--- /dev/null
+++ b/src/events/RESS/devotedWaist.js
@@ -0,0 +1,174 @@
+App.Events.RESSDevotedWaist = class RESSDevotedWaist extends App.Events.BaseEvent {
+	eventPrerequisites() {
+		return [];
+	}
+
+	actorPrerequisites() {
+		return [
+			[ // single event slave
+				s => s.fetish !== "mindbroken",
+				hasAnyArms,
+				canStand,
+				s => s.waist < -95,
+				s => s.weight <= 95,
+				s => s.trust >= -20,
+				s => s.devotion > 20,
+				s => s.belly < 30000
+			]
+		];
+	}
+
+	execute(node) {
+		/** @type {Array<App.Entity.SlaveState>} */
+		let [eventSlave] = this.actors.map(a => getSlave(a));
+		const {
+			He, he, His, his, him, himself, woman
+		} = getPronouns(eventSlave);
+		const belly = bellyAdjective(eventSlave);
+
+		/** @type {App.Entity.PlayerState} */
+		let PC = V.PC;
+
+		V.nextLink = "Next Week";
+
+		App.Events.drawEventArt(node, eventSlave, "no clothing");
+
+		let t = [];
+
+		t.push(App.UI.DOM.slaveDescriptionDialog(eventSlave));
+		t.push(`is a real work of surgical art. As ${he} showers, carefully soaping and then moisturizing every ${V.showInches === 2 ? "inch" : "centimeter"} of ${his} eventSlave.skin skin, you notice the undeniable eroticism created by the unnatural narrowness of`);
+		if (eventSlave.belly >= 5000) {
+			t.push(`${his} middle, especially given how much ${his} ${belly} ${eventSlave.bellyPreg >= 3000 ? "pregnancy" : "belly"} extends past ${his} sides.`);
+		} else {
+			t.push(`${his} middle.`);
+		}
+		t.push(`Though ${his} hands are by no means large, when ${he} washes ${his} sides, ${his} hands span almost the entire circumference of ${his} waist.`);
+		if (eventSlave.dick > 0) {
+			t.push(`Though ${he}'s not sexually aroused, ${his} cock is visible as ${he} bathes ${himself}; ${his} member and ${his} narrow waist work together to create a real mélange of gender traits.`);
+		} else if (eventSlave.boobs > 800 && eventSlave.butt > 4) {
+			t.push(`${His} massive bust and hips work together to create a spectacular hourglass effect; ${he}'s a fantasy ${woman} made flesh.`);
+		} else {
+			t.push(`The narrowness of ${his} waist accentuates ${his} feminine features.`);
+		}
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		App.Events.addResponses(node, [
+			new App.Events.Result(`Join ${him} and see if your hands can span ${his} waist`, grab, virginityWarning()),
+			new App.Events.Result("Such a lovely work of art must be displayed", display, virginityWarning()),
+		]);
+
+		function grab() {
+			t = [];
+
+			t.push(`By the time you reach the shower, ${eventSlave.slaveName} is toweling ${himself}. ${He} notices your approach and folds the towel neatly before performing a little naked pirouette that shows off ${his} artificial`);
+			if (canDoVaginal(eventSlave) && canDoAnal(eventSlave)) {
+				t.push(`curviness while displaying each of ${his} delectable holes.`);
+			} else if (canDoVaginal(eventSlave)) {
+				t.push(`curviness while displaying ${his}`);
+				if (eventSlave.vagina > 3) {
+					t.push("gaping cunt.");
+				} else if (eventSlave.vagina > 2) {
+					t.push("loose cunt.");
+				} else if (eventSlave.vagina > 1) {
+					t.push("slutty pussy.");
+				} else if (eventSlave.vagina > 0) {
+					t.push("tight pussy.");
+				} else {
+					t.push("virgin pussy.");
+				}
+			} else if (canDoAnal(eventSlave)) {
+				t.push(`curviness while displaying ${his}`);
+				if (eventSlave.anus > 2) {
+					t.push("gaping asshole.");
+				} else if (eventSlave.anus > 1) {
+					t.push("slutty asshole.");
+				} else if (eventSlave.anus > 0) {
+					t.push("tight asshole.");
+				} else {
+					t.push("virgin asshole.");
+				}
+			} else {
+				t.push("curviness.");
+			}
+			if (eventSlave.belly >= 500 || eventSlave.weight > 30) {
+				t.push(`You take ${him} about the 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 {
+				t.push(`You take ${him} about the waist and find that, indeed, you can make your thumbs and fingertips meet around it if you press, which elicits a squeak.`);
+			}
+			if (!canDoVaginal(eventSlave) && !canDoAnal(eventSlave)) {
+				t.push(`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 <span class="mediumaquamarine">more confident in ${his} sexual uniqueness.</span>`);
+			} else {
+				t.push(`This can be applied during sex many ways. First, ${he} sits on the bathroom counter and bends ${himself} almost double for`);
+				if (canDoAnal(eventSlave)) {
+					t.push(`anal. Your control over the pace is perfected by your grip around ${his} tiny middle.`);
+					VCheck.Anal(1, eventSlave);
+				} else {
+					t.push(`vaginal. Your control over the pace is perfected by your grip around ${his} tiny middle.`);
+					VCheck.Vaginal(1, eventSlave);
+				}
+				t.push(`Finally, ${he} goes down on ${hasAllLimbs(eventSlave) ? "all fours" : "the floor"} for a hard`);
+				if (canDoVaginal(eventSlave)) {
+					t.push(`pounding, doggy style, losing ${himself} in the intense penetration as you use your hold around ${him} to give it to ${him} even harder.`);
+					VCheck.Vaginal(1, eventSlave);
+				} else {
+					t.push(`buttfuck, doggy style, losing ${himself} in the intense anal as you use your hold around ${him} to give it to ${him} even harder.`);
+					VCheck.Anal(1, eventSlave);
+				}
+				t.push(`By the end ${he}'s tired but <span class="mediumaquamarine">confident in ${his} sexual uniqueness.</span>`);
+			}
+
+			eventSlave.trust += 4;
+			return t;
+		}
+
+		function display() {
+			t = [];
+
+			t.push(`There is a polite soirée tonight at one of ${V.arcologies[0].name}'s more upscale eating establishments. Many couples are there to enjoy themselves and preen, but even so, you make a stir as you enter wearing`);
+			if (PC.title === 1) {
+				t.push(`the latest in men's eveningwear${PC.boobs >= 300 || PC.belly >= 1500 || PC.butt >= 3 || PC.balls >= 9 ? ", tastefully tailored to accommodate your unusual build" : ""}.`);
+			} else {
+				t.push(`the latest dress from one of your arcology's leading tailors${PC.boobs >= 300 || PC.belly >= 1500 || PC.butt >= 3 || PC.balls >= 9 ? ", carefully tailored to accentuate your splendid curves" : ""}.`);
+			}
+			t.push(`${eventSlave.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 (eventSlave.dick > 0) {
+				t.push(`${eventSlave.chastityPenis === 1 ? "caged" : ""} cock,`);
+			} else if (eventSlave.vagina > -1) {
+				t.push(`${eventSlave.chastityPenis === 1 ? "chaste" : ""} pussy,`);
+			} else if (eventSlave.balls > 1 && eventSlave.scrotum > 0) {
+				t.push("dangling balls,");
+			} else {
+				t.push("featureless groin,");
+			}
+			t.push(`and ${eventSlave.chastityAnus ? "off-limits rear" : "butt"} lusciously bare. Your appearance together with your living accessory <span class="green">increases your reputation.</span> 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(eventSlave) || canDoVaginal(eventSlave)) {
+				t.push(`${eventSlave.slaveName}'s gown allows you to take ${him} in a ${eventSlave.belly >= 5000 ? "tight" : "close"} lotus position on the cleared table, face to face.`);
+				if (canDoVaginal(eventSlave)) {
+					VCheck.Vaginal(1, eventSlave);
+				} else {
+					VCheck.Anal(1, eventSlave);
+				}
+			} else {
+				t.push(`you and ${eventSlave.slaveName} enjoy the ${canSee(eventSlave) ? "sights" : "atmosphere"} while fooling around. While you'd love to use ${him}, ${his} chastity keeps you at bay.`);
+			}
+			t.push(`<span class="hotpink">${He} has become more devoted to you.</span>`);
+
+			eventSlave.devotion += 4;
+			repX(500, "event", eventSlave);
+			return t;
+		}
+
+		function virginityWarning() {
+			if (eventSlave.anus === 0 && canDoAnal(eventSlave)) {
+				if (eventSlave.vagina === 0 && canDoVaginal(eventSlave)) {
+					return `This option will take ${his} anal and vaginal virginity`;
+				} else {
+					return `This option will take ${his} anal virginity`;
+				}
+			} else if (eventSlave.vagina === 0 && canDoVaginal(eventSlave)) {
+				return `This option will take ${his} vaginal virginity`;
+			}
+		}
+	}
+};
diff --git a/src/events/RESS/frighteningDick.js b/src/events/RESS/frighteningDick.js
new file mode 100644
index 0000000000000000000000000000000000000000..1b976c93c4288cc4d10c374fd7dce9c974f39769
--- /dev/null
+++ b/src/events/RESS/frighteningDick.js
@@ -0,0 +1,149 @@
+App.Events.RESSFrighteningDick = class RESSFrighteningDick extends App.Events.BaseEvent {
+	eventPrerequisites() {
+		return [
+			() => V.PC.dick > 0,
+			() => V.PC.belly < 5000
+		];
+	}
+
+	actorPrerequisites() {
+		return [
+			[ // single event slave
+				s => s.fetish !== "mindbroken",
+				hasAnyArms,
+				hasAnyLegs,
+				canTalk,
+				s => s.assignment === Job.HOUSE,
+				s => s.attrXY <= 35 || s.behavioralFlaw === "hates men" || s.sexualFlaw === "repressed",
+				s => s.trust > 20,
+				s => s.devotion >= -20,
+			]
+		];
+	}
+
+	execute(node) {
+		/** @type {Array<App.Entity.SlaveState>} */
+		let [eventSlave] = this.actors.map(a => getSlave(a));
+		const {
+			He, he, His, his, him, himself
+		} = getPronouns(eventSlave);
+		const {s, say, title: Master} = getEnunciation(eventSlave);
+		const desc = SlaveTitle(eventSlave);
+		const belly = bellyAdjective(eventSlave);
+
+		/** @type {App.Entity.PlayerState} */
+		let PC = V.PC;
+
+		V.nextLink = "Next Week";
+
+		App.Events.drawEventArt(node, eventSlave);
+
+		let t = [];
+
+		t.push("In a fortuitous confluence of circumstances,");
+		t.push(App.UI.DOM.slaveDescriptionDialog(eventSlave));
+		t.push(`happens to be polishing your office one evening. Keeping every surface in the penthouse at a state of perfect shine is one of your servants' endless tasks, and your office is ${his} area of responsibility today. At the key moment, ${he}'s working on an area at waist height, directly next to the door that leads to your suite; and ${he}'s crouching to polish this area most comfortably. ${He} is working diligently, and is paying close attention to what ${he}'s doing. Meanwhile, and for completely unrelated reasons, you have just finished having fun inside said suite. You are naked, and your penis remains fully erect despite your having climaxed only moments before; you are in excellent physical and sexual condition and this happens frequently. You have decided to address a likewise unrelated matter in your office, and walk into it from your suite, naked and erect.`);
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		t.push(`This is how ${eventSlave.slaveName} comes face to face with your cock, unexpectedly, at a distance of only a few ${V.showInches === 2 ? "inches" : "centimeters"}.`);
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		t.push(`${He} shrieks, backpedaling, and then falls backward, ${his}`);
+		if (eventSlave.butt > 6) {
+			t.push("monstrous bottom");
+		} else if (eventSlave.butt > 3) {
+			t.push("healthy rear end");
+		} else {
+			t.push("cute butt");
+		}
+		t.push(`hitting the floor with an audible whack. The light cloth ${he} was using to polish with went flying, and flutters to the ground accusingly. After scrabbling back a short distance, looking up at you hesitantly, and visibly recollecting ${himself}, ${he} swallows twice and then says, "I'm ${s}orry, ${Master}," in a tone of voice with a great deal of effort applied to keep it even. A frantic, embarrassed search for ${his} cloth ensues. Finding it at last, ${he} returns to ${his} original, low position, and crouch-walks back to the place ${he} was polishing, doing ${his} absolute best to look diligent and industrious and not at all aware that your cock is pointing at ${him} like a gun barrel.`);
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		App.Events.addResponses(node, [
+			new App.Events.Result("Polish this", polish),
+			new App.Events.Result(`Talk to ${him} about ${his} issues with dick`, coach),
+			canDoAnal(eventSlave) || canDoVaginal(eventSlave)
+				? new App.Events.Result(`Rape ${him}`, rape, virginityWarning())
+				: new App.Events.Result()
+		]);
+
+		function polish() {
+			t = [];
+
+			t.push(`You tell ${him} to polish this instead, advancing even closer. ${He} turns, finding your cockhead so close to ${his} face that ${his} eyes cross ludicrously as they attempt to focus on it. ${He} does not like dicks, and obviously does not find the prospect of sucking this one appealing right now, but ${he} knows it's in ${his} best interests to ${eventSlave.skill.oral > 10 ? `put ${his} oral knowledge to work` : `do ${his} best`} right now. ${He} closes ${his} eyes and takes you into ${his} mouth, forming a seal around your cock with ${his}`);
+			if (eventSlave.lips > 40) {
+				t.push(`ridiculous`);
+			} else if (eventSlave.lips > 20) {
+				t.push(`pillowy`);
+			} else if (eventSlave.lips > 10) {
+				t.push(`pretty`);
+			} else {
+				t.push(`disappointingly thin`);
+			}
+			t.push(`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 ${App.Desc.eyesColor(eventSlave, "", "orb", "orbs")} glittering with a little moisture as ${he} concentrates on breathing past your penis. You ask if your cock ${canTaste(eventSlave) ? "tastes" : "feels"} any different than usual. "Mmm hmm, M'," ${he} mumbles, producing a nice humming sensation against your cock. You tell ${him} that ${he}'s ${canTaste(eventSlave) ? "tasting" : "feeling"} another slave's ${eventSlave.vagina > -1 ? "pussy" : "ass"}. ${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 ${his} 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 <span class="hotpink">submissively,</span> going back to ${his} polishing.`);
+
+			seX(eventSlave, "oral", PC, "penetrative");
+			eventSlave.devotion += 5;
+			return t;
+		}
+
+		function coach() {
+			t = [];
+
+			t.push(`You sit yourself down in the doorway, right next to ${him}, and pat your thighs. ${He} sits on your lap, obeying despite some evident reluctance to sit atop your moist cock. It nestles easily between ${his} lower buttocks and upper thighs, and ${he} gets ${himself} situated, doing ${his} best to ignore the feeling of your hot hard meat, hard against ${his} fundament. You encircle ${him} with your arms, possessively and dominantly but not sexually, and tell ${him} that you're concerned about ${his} relationship with cock. ${He} shifts uncomfortably. "${Spoken(eventSlave, `Sorry, ${Master}, sorry I'm not better at hiding that. I should be a good ${desc} and not react like that. I mean, in a bad way. You startled me, but I don't always react well to dick even when I'm not startled. I'll try harder.`)}" This is more contrition and submission than you were expecting, and you probe further, asking ${him} pointedly whether ${he}'s attracted to dicks now. "N-no," ${he} admits, after only a moment's hesitation to remember that honesty is the most important rule for ${him} to follow. "${Spoken(eventSlave, `No, I don't like them. But I'll do my best to be a good sex slave anyway, ${Master}.`)}" Pleased, you tell ${him} that things will get easier for ${him}.`);
+			if (eventSlave.hormoneBalance >= 50) {
+				t.push(`The hormone treatments ${he}'s currently taking will slowly reorient ${his} sexuality, and eventually ${he}'ll lust after every cock ${he} sees.`);
+			} else if (eventSlave.aphrodisiacs > 0 || eventSlave.inflationType === "aphrodisiac") {
+				t.push(`The aphrodisiacs ${he}'s on will make ${him} so omnisexually horny that soon ${he} won't care how anyone's equipped, as long as they'll fuck ${him}.`);
+			} else if (eventSlave.energy > 60) {
+				t.push(`${His} excellent and improving libido will eventually soften ${him} to all kinds of sex, with all kinds of people.`);
+			} else {
+				t.push(`Habit and training will get ${him} used to dick, and eventually ${he}'ll barely remember that ${he} ever had a problem with sucking a quick cock.`);
+			}
+			t.push(`${He}'s a little unsure whether or not to be reassured by this, but ${he}'s <span class="mediumaquamarine">relieved ${he}'s not in trouble.</span>`);
+
+			eventSlave.trust += 5;
+			return t;
+		}
+
+		function rape() {
+			t = [];
+
+			t.push(`Sometimes there's really no need to overthink things. You reach down, grab ${him} under the armpits, and haul ${him} up, throwing ${him} across your desk. ${He} lands on ${his} back, and the impact drives the wind out of ${him}, so ${he} lies there, <span class="gold">all possibility of resistance driven out of ${him}.</span> ${eventSlave.clothes === "no clothing" ? `${He}'s already naked, so there's no need to` : "You"} tear the clothes off ${him}. You force yourself in between ${his} legs as ${he} struggles to get ${his} breath back, and ${he} gets another good look at the formidable dick that's about to be slammed inside ${him}`);
+			if (eventSlave.belly >= 5000) {
+				t.push(`before it disappears beneath ${his} ${eventSlave.bellyPreg >= 3000 ? "pregnant" : belly } belly`);
+			}
+			t.push(t.pop() + `. ${His} eyes go wide with fear, and you enhance the effect by smacking yourself against`);
+			if (canDoVaginal(eventSlave)) {
+				t.push(`${his} ${eventSlave.vagina === 0 ? "virgin" : ""} vulva.`);
+			} else if (eventSlave.dick > 0) {
+				t.push(`limp bitchclit.`);
+			} else {
+				t.push(`${his} buttocks.`);
+			}
+			t.push(`You tell ${him} not to worry, because you're still pretty wet from the last slave you fucked, so this shouldn't hurt too much. Then you ram your cock`);
+			if (eventSlave.vagina > 0) {
+				t.push(`inside ${him}.`);
+				VCheck.Vaginal(1, eventSlave);
+			} else {
+				t.push(`up ${his} spasming ass.`);
+				VCheck.Anal(1, eventSlave);
+			}
+			t.push(`${He} whines and bucks, but ${he}'s entirely at your mercy. ${He} doesn't like dicks, and to go by ${his} facial expression as you piston in and out of ${him}, this experience isn't going to make ${him} reconsider. When you fill ${him} with cum, pull out, and let ${him} retreat to clean ${himself} up, ${he}'s relieved to go.`);
+
+			eventSlave.trust -= 5;
+			return t;
+		}
+
+		function virginityWarning() {
+			if (eventSlave.vagina === 0 && canDoVaginal(eventSlave)) {
+				return `This option will take ${his}  virginity`;
+			} else if (eventSlave.anus === 0 && !canDoVaginal(eventSlave)) {
+				return `This option will take ${his} anal virginity`;
+			}
+		}
+	}
+};
diff --git a/src/events/RESS/imScared.js b/src/events/RESS/imScared.js
new file mode 100644
index 0000000000000000000000000000000000000000..0277a821fd4c4a19f28d2c4b5c46bf0fbe7f488f
--- /dev/null
+++ b/src/events/RESS/imScared.js
@@ -0,0 +1,208 @@
+App.Events.RESSImScared = class RESSImScared extends App.Events.BaseEvent {
+	eventPrerequisites() {
+		return [];
+	}
+
+	actorPrerequisites() {
+		return [
+			[ // single event slave
+				s => s.fetish !== "mindbroken",
+				hasAnyArms,
+				hasAnyLegs,
+				canTalk,
+				s => s.assignment !== Job.QUARTER,
+				s => s.trust < -50,
+				s => s.devotion <= 50,
+			]
+		];
+	}
+
+	execute(node) {
+		/** @type {Array<App.Entity.SlaveState>} */
+		let [eventSlave] = this.actors.map(a => getSlave(a));
+		const {
+			He, he, his, him, himself
+		} = getPronouns(eventSlave);
+		const {say, title: Master} = getEnunciation(eventSlave);
+
+		/** @type {App.Entity.PlayerState} */
+		let PC = V.PC;
+
+		V.nextLink = "Next Week";
+
+		App.Events.drawEventArt(node, eventSlave, "no clothing");
+
+		let t = [];
+
+		t.push(`During ${his} weekly inspection,`);
+		t.push(App.UI.DOM.slaveDescriptionDialog(eventSlave));
+		t.push(`has trouble following the routine orders that position ${him} so you can examine ${his} body. The cause is not difficult to determine: ${he}'s so cripplingly terrified that ${he}'s having difficulty functioning. ${He} seems to be trying to obey you, but ${he}'s so scared that ${his} mind is having trouble translating your simple verbal commands into physical obedience. You ask ${him} what ${he}'s so frightened of. The question stuns ${him}, and ${he} ${canSee(eventSlave) ? "stares at" : "faces"} you in mute horror, looking even more terrified than ${he} has up to this point and completely devoid of any idea how to respond. You order ${him} to respond, and this starts ${him} out of ${his} fugue. ${He} begins to cry, makes two false starts, sobs, and then begins forcing out words.`);
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		t.push(`"E-e-everything," ${he} cries. "${Spoken(eventSlave, "I'm s-so s-sorry b-but I c-can't help")}," ${he} chokes on a sob and hiccups, "${Spoken(eventSlave, "help it. This, this place, being a sex slave")},`);
+		switch (eventSlave.rules.punishment) {
+			case "confinement":
+				t.push(Spoken(eventSlave, "b-being sh-shut up in the d-dark"));
+				break;
+			case "whipping":
+				t.push(Spoken(eventSlave, "b-being wh-wh-whip-ped"));
+				break;
+			case "chastity":
+				t.push(Spoken(eventSlave, "h-having my p-parts locked up in ch-chastity"));
+				break;
+			default:
+				t.push(Spoken(eventSlave, "n-never knowing what th-the p-punishment will be"));
+		}
+		t.push(`${Spoken(eventSlave, `wh-when I'm bad, e-everything, ${eventSlave.rudeTitle === 1 ? PoliteRudeTitle(eventSlave) : Master}. Oh, oh, I'm sorry, p-please, I'm sorry I, I'm like this, I'm crying, p-please ${eventSlave.rudeTitle === 1 ? PoliteRudeTitle(eventSlave) : Master}, please don't...`)}" ${He} trails off, giving you a look of supplication.`);
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		App.Events.addResponses(node, [
+			new App.Events.Result(`Punish ${him}`, punish),
+			new App.Events.Result(`Comfort ${him}`, comfort),
+			(V.dairyRestraintsSetting === 2
+				? new App.Events.Result(`Threaten ${him} with the industrial Dairy`, industrial)
+				: new App.Events.Result()),
+			(V.seeExtreme === 1
+				? new App.Events.Result(`Threaten to convert ${him} into a Fuckdoll`, fuckdoll)
+				: new App.Events.Result())
+		]);
+
+		function punish() {
+			t = [];
+
+			t.push(`${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 ${his} tears. ${He} knows that interrupting you to beg would be profoundly stupid, so ${he} clasps ${his} ${hasBothArms(eventSlave) ? "hands" : "hand"} 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 ${his} standard punishment, and be`);
+
+			switch (eventSlave.rules.punishment) {
+				case "confinement":
+					t.push(`shut up in a box. <span class="gold">${He} breaks down,</span> falling to ${his} knees, begging abjectly for mercy.`);
+					if (eventSlave.belly >= 100000 || eventSlave.boobs > 25000 || eventSlave.weight > 190) {
+						t.push(Spoken(eventSlave, `"It's too cramped in there,"`));
+					} else {
+						t.push(Spoken(eventSlave, `"It's dark in there,"`));
+					}
+					t.push(`${he} screams as you open the box for ${him}. ${He} knows that if ${he} doesn't climb in, it'll be longer before ${he}'s let out, so ${he} does, scrabbling inside and sobbing desperately as you close the lid.`);
+					break;
+				case "whipping":
+					t.push(`whipped. <span class="gold">${He} breaks down,</span> falling to ${his} knees, begging abjectly for mercy. "It'll h-hu-hurt," ${he} blubbers weakly as you attach ${his} handif (hasBothArms(eventSlave)) {s} to shackles high on the office wall. The first stroke across ${his} buttocks draws a long shriek out of ${him}.`);
+					break;
+				case "chastity":
+					t.push(`locked up in chastity. <span class="gold">${He} breaks down,</span> falling to ${his} knees, begging abjectly for mercy. "I c-can't," ${he} moans. "I can't take it. I can't stand it." As you lock the chastity onto ${him}, ${he} sobs inconsolably, knowing that any arousal will be torturous until ${he}'s released.`);
+					break;
+				default:
+					t.push(`gagged, since that's the appropriate castigation for failure to control ${his} mouth and deportment. ${He} tries to behave, but <span class="gold">breaks down</span> as you slide a dildo gag into ${his} throat, choking and struggling to breathe as ${he} tries to cry past it.`);
+			}
+			t.push(`The thing ${he}'s most frightened of is that ${he} won't be able to control ${his} fear in the future, and will continue to suffer.`);
+
+			eventSlave.trust -= 5;
+			return t;
+		}
+
+		function comfort() {
+			t = [];
+
+			t.push(`You rise from behind your desk, and ${eventSlave.slaveName} collapses to the floor, sure that ${he}'s about to be severely punished. ${He}'s shocked to feel your arms encircle ${him} as you kneel down beside ${him} and embrace ${his} huddled form. You pull ${his} head`);
+			if (V.PC.boobs >= 1400) {
+				t.push(`against your enormous, ${PC.boobsImplant !== 0 ? "hard" : "soft"} breasts,`);
+			} else if (V.PC.boobs >= 1200) {
+				t.push(`against your huge ${PC.boobsImplant !== 0 ? "firm" : "soft"} breasts,`);
+			} else if (V.PC.boobs >= 1000) {
+				t.push(`against your big ${PC.boobsImplant !== 0 ? "firm" : "soft"} breasts,`);
+			} else if (V.PC.boobs >= 300) {
+				t.push(`against your soft breasts,`);
+			} else if (V.PC.title == 0) {
+				t.push(`against your flat chest,`);
+			} else {
+				t.push(`into your shoulder,`);
+			}
+			t.push(`stroking it reassuringly and murmuring kindness. ${He} clings to you, mostly for lack of any other comfort in the whole world, and sobs convulsively, <span class="mediumaquamarine">${his} terror flowing out of ${him}</span> in a torrent as you gently rub ${his} back. When ${he}'s mostly cried ${himself} out, you tell ${him} that ${he}'ll be all right. You're sure ${he}'ll be a good slave one day. You understand that ${his} life is hard. ${He}'ll make mistakes, and you'll punish ${him} for them, but that's part of slave training, and that's all right. If ${he} does ${his} best, ${he}'ll be all right. ${He} sniffles, cuffing tears away. "${Spoken(eventSlave, `Th-thank you, ${eventSlave.rudeTitle === 1 ? PoliteRudeTitle(eventSlave) : Master}, I'll d-do my b-best`)}," ${he} manages to ${say}.`);
+
+			eventSlave.trust += 5;
+			return t;
+		}
+
+		function industrial() {
+			t = [];
+			const watchListenFreezes = canSee(eventSlave) ? "watches" : (canHear(eventSlave) ? "listens" : "freezes");
+
+			t.push(`You grab ${him} by the scruff of ${his} neck and drag ${him} down to ${V.dairyName}. ${He} tries to control ${himself}, but breaks down in tears when you haul ${him} to a stop, forcing ${him} to get a good`);
+			if (canSee(eventSlave)) {
+				t.push(`look at the`);
+			} else if (canHear(eventSlave)) {
+				t.push(`listen of the sound of`);
+			} else {
+				t.push(`feel for the omnipresent aura of`);
+			}
+			t.push(`rows of bodies being mercilessly milked. You explain that if ${he} continues to fail to control ${himself}, your patience with ${his} will eventually expire, and you'll be forced to immure ${him} here. ${canSee(eventSlave) ? "Indicating" : `Facing ${him} towards`} a slave who's being`);
+			if (eventSlave.balls > 0 && V.dairyStimulatorsSetting === 2) {
+				t.push(`cockmilked by the machines, you tell ${eventSlave.slaveName} to pay close attention. ${He} ${watchListenFreezes} in horror as a dildo the size of ${his} forearm slides in and out of the slave's rectum, pounding it harder and harder until the slave stiffens and the transparent tubing coming off its cockhead whitens with cum. As the slave relaxes slightly in the restrains, the powerful milkers continue their relentless tugging at ${his} gigantic udders.`);
+				if (!canSee(eventSlave)) {
+					t.push(`As the dildo begins its efforts to loose a second cumming, you grab the horrified slave's hands and push them to the cow's throbbing dick just in time for ${him} to feel the ejaculate forced out by its unwilling orgasm.`);
+				}
+				t.push(`You run a hand down to ${eventSlave.slaveName}'s own balls and, squeezing them slightly, tell ${him} that unless ${he} wants ${his} ass ruined by constant machine rape, ${his} tits turned into immobilizing milk factories and ${his} balls drained of every last drop of seed,`);
+			} else if ((eventSlave.ovaries === 1 || eventSlave.mpreg === 1) && V.dairyPregSetting === 2) {
+				t.push(`used for reproduction by the machines, you tell ${eventSlave.slaveName} to pay close attention. ${He} ${watchListenFreezes} in horror as a dildo the size of ${his} forearm fucks the slave's enormous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against ${his} cervix. The slave is gigantically pregnant. You tell ${eventSlave.slaveName} that this is the vaginal treatment ${he} can expect when pregnant; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.`);
+				if (!canSee(eventSlave)) {
+					t.push(`As the dildo retracts from the cow's gaping cunt, you grab the horrified slave's hands and push them to its gravid middle just in time for ${him} to feel a massive contraction.`);
+				}
+				t.push(`You run a hand down to ${eventSlave.slaveName}'s own middle and, patting it gently, tell ${him} that unless ${he} wants ${his} womb converted into an industrial component,`);
+			} else if ((eventSlave.ovaries === 1 || eventSlave.mpreg === 1) && V.dairyPregSetting === 3) {
+				t.push(`used for mass reproduction by the machines, you tell ${eventSlave.slaveName} to pay close attention. ${He} ${watchListenFreezes} in horror as a dildo the size of ${his} forearm fucks the slave's cavernous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against ${his} tortured cervix. The slave is absolutely enormous, more a taut sphere of a belly than a person; so pregnant that the children within ${his} are visibly forced to bulge the skin covering ${his} straining womb by their sisters. You tell ${eventSlave.slaveName} that this is the treatment ${he} can expect when pregnant here; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.`);
+				if (!canSee(eventSlave)) {
+					t.push(`As the cow takes the huge dildo absentmindedly, you grab the horrified slave's ${hasBothArms(eventSlave) ? "hands" : "hand"} and push ${hasBothArms(eventSlave) ? "them" : "it"} to its gravid middle, forcing ${him} to feel the children squirming within its packed womb. ${He} squeals in terror at the feeling of so many babies moving under ${his} fingers.`);
+				}
+				t.push(`You run a hand down to ${eventSlave.slaveName}'s own middle and, patting it gently, tell ${him} that unless ${he} wants to become an industrial breeder,`);
+			} else {
+				t.push(`drained of ${his} milk, you tell ${eventSlave.slaveName} to pay close attention. ${He} ${watchListenFreezes} in horror as the slave's gigantic breasts are massaged and squeezed, while the milkers attached to ${his} absurd nipples tug and pull with industrial power. ${He} can't ${canSee(eventSlave) ? "look away; the orbs of jiggling flesh being manipulated are each as big as the slave's torso" : "shut out the sound of those enormous jiggling orbs of flesh being so roughly manipulated"}. It's good for milk production to drain slaves completely on occasion, and the machine doesn't stop until every drop is wrung from both udders.`);
+				if (!canSee(eventSlave)) {
+						t.push(`You force the horrified slave's ${hasBothArms(eventSlave) ? "hands" : "hand"} onto its breasts so that ${he} may get a good sense of just how big and swollen they are and how hard the milker is pulling at them.`);
+				}
+				t.push(`You run a hand over to ${eventSlave.slaveName}'s own breast and, teasing ${his} nipple, tell ${him} that unless ${he} wants to experience that twice a day,`);
+			}
+			t.push(`${he} had better behave ${himself}. ${He} nods furiously, <span class="gold">terrified beyond the ability to speak.</span>`);
+
+			eventSlave.trust -= 8;
+			return t;
+		}
+
+		function fuckdoll() {
+			t = [];
+
+			t.push(`You order a Fuckdoll brought to your office. ${eventSlave.slaveName} `);
+			if (canSee(eventSlave)) {
+				t.push(`watches it totter in,`);
+			} else if (canHear(eventSlave)) {
+				t.push(`listens to the clicks of its approaching heels and the ominous squeaking of its latex shell,`);
+			} else {
+				t.push(`feels the uncomfortable latex skin of its suit when it brushes up against ${him},`);
+			}
+			t.push(`automatically following the tugs on its leash and the tonal commands passed by its suit. ${He} already understands the implicit threat, and ${he} shivers uncontrollably, <span class="gold">almost falling to ${his} knees in fear.</span> Not content with that, you tell ${him} that ${he}'s trying your patience with ${his} behavior. If ${he} doesn't control ${himself} better in the future, you'll give up on ${him} and convert ${him} into a Fuckdoll. At the spoken threat ${eventSlave.slaveName} does collapse, but you order ${him} to get back to ${his} feet and ${canSee(eventSlave) ? "watch" : "pay attention"}. ${He} does, shakily, tears streaming down ${his} face as you put the Fuckdoll on all fours, as though it were about to take dick. Its`);
+			if (eventSlave.vagina > -1) {
+				t.push(`holes are pointed straight at ${eventSlave.slaveName}'s face,`);
+				if (canSee(eventSlave)) {
+					t.push(`and ${he} can't avoid seeing how loose and used they look.`);
+				} else {
+					t.push(`so you grab both ${his} hands and force one into each of its blown out holes. ${eventSlave.slaveName} shrieks in horror at the recognizable sensation.`);
+				}
+			} else {
+				t.push(`rear hole is pointed straight at ${eventSlave.slaveName}'s face,`);
+				if (canSee(eventSlave)) {
+					t.push(`and ${he} can't avoid seeing how loose and used it looks.`);
+				} else {
+					t.push(`so you grab both ${his} hands and force them into its blown out ass. ${eventSlave.slaveName} shrieks in horror at the recognizable sensation.`);
+				}
+			}
+			t.push(`Suddenly, you activate the Fuckdoll's suit's punishment systems. It does not and cannot scream, but `);
+			if (canSee(eventSlave)) {
+				t.push(`a slight stiffening of its posture communicates extreme anguish, and its sphincter spasms tightly closed with obviously involuntary force.`);
+			} else {
+				t.push(`the sudden, pitiful attempt to clamp down on ${his} arms makes it perfectly clear that you just forced it to undergo extreme anguish.`);
+			}
+			t.push(`${eventSlave.slaveName} is almost incapacitated by terror.`);
+
+			eventSlave.trust -= 8;
+			return t;
+		}
+	}
+};
diff --git a/src/events/RESS/obedientAddict.js b/src/events/RESS/obedientAddict.js
index 0a5eb25c99975aa4031dcbded5fd48f746ac2ec0..2af196656457f45cdf56afb537ede5eb1be00480 100644
--- a/src/events/RESS/obedientAddict.js
+++ b/src/events/RESS/obedientAddict.js
@@ -24,7 +24,7 @@ App.Events.RESSObedientAddict = class RESSObedientAddict extends App.Events.Base
 		const {
 			He, he, His, his, him, girl
 		} = getPronouns(eventSlave);
-		const {S, title: Master} = getEnunciation(eventSlave);
+		const {title: Master} = getEnunciation(eventSlave);
 
 		/** @type {App.Entity.PlayerState} */
 		let PC = V.PC;
@@ -38,7 +38,7 @@ App.Events.RESSObedientAddict = class RESSObedientAddict extends App.Events.Base
 		t.push(App.UI.DOM.slaveDescriptionDialog(eventSlave));
 		t.push(`takes ${his} aphrodisiacs in pill form, with ${his} food. They're dispensed alongside ${his} nutrition in the kitchen. You happen to be passing by when ${he}'s being issued ${his} drugs, and you see ${him} ${canSee(eventSlave) ? "staring" : "gazing"} thoughtfully at the insignificant-looking little pill, just holding it in ${his} hand and considering it for a long time. When ${he} realizes you're watching, ${he} turns to you and you realize ${his} eyes are moist.`);
 		if (canTalk(eventSlave)) {
-			t.push(`${He} ${SlaveStatsChecker.checkForLisp(eventSlave) ? "lisps through huge, quivering lips" : "mutters"}, "${Master}, ${Spoken(eventSlave, "I hate this shit. I come and come and come but it's just physical. I haven't felt close to anyone ever since I've been on these fucking aphrodisiacs.")}" ${He} shrugs bitterly. "${S}till crave them though."`);
+			t.push(`${He} ${SlaveStatsChecker.checkForLisp(eventSlave) ? "lisps through huge, quivering lips" : "mutters"}, "${Master}, ${Spoken(eventSlave, "I hate this shit. I come and come and come but it's just physical. I haven't felt close to anyone ever since I've been on these fucking aphrodisiacs.")}" ${He} shrugs bitterly. ${Spoken(eventSlave, `"Still crave them though."`)}`);
 		} else {
 			t.push(`${He} uses trembling gestures to pour out dissatisfaction with life as an aphrodisiac addict. ${He} is emotionally unsatisfied with the mechanical orgasms ${he} gets on the drugs, but craves them intensely.`);
 		}
diff --git a/src/events/RESS/obedientGirlish.js b/src/events/RESS/obedientGirlish.js
new file mode 100644
index 0000000000000000000000000000000000000000..67e148be597c71fc3e2c33961528bdb82907c648
--- /dev/null
+++ b/src/events/RESS/obedientGirlish.js
@@ -0,0 +1,162 @@
+App.Events.RESSObedientGirlish = class RESSObedientGirlish extends App.Events.BaseEvent {
+	eventPrerequisites() {
+		return [];
+	}
+
+	actorPrerequisites() {
+		return [
+			[ // single event slave
+				s => s.fetish !== "mindbroken",
+				s => s.assignment !== "work as a servant",
+				s => canDoAnal(s) || canDoVaginal(s),
+				s => s.butt < 3,
+				s => s.boobs < 500,
+				s => s.weight <= 10,
+				s => s.muscles <= 30,
+				s => s.trust >= -20,
+				s => s.devotion > 20,
+				s => s.devotion <= 50
+			]
+		];
+	}
+
+	execute(node) {
+		/** @type {Array<App.Entity.SlaveState>} */
+		let [eventSlave] = this.actors.map(a => getSlave(a));
+		const {
+			He, he, His, his, him, himself
+		} = getPronouns(eventSlave);
+		const {title: Master} = getEnunciation(eventSlave);
+		const belly = bellyAdjective(eventSlave);
+
+		/** @type {App.Entity.PlayerState} */
+		let PC = V.PC;
+
+		V.nextLink = "Next Week";
+
+		App.Events.drawEventArt(node, eventSlave, "no clothing");
+
+		let t = [];
+
+		t.push(App.UI.DOM.slaveDescriptionDialog(eventSlave));
+		if (eventSlave.bellyPreg >= 1500) {
+			t.push(`is nice and slim as ${he} can be given ${his} pregnancy,`);
+		} else if (eventSlave.bellyImplant >= 1500) {
+			t.push(`is nice and slim as ${he} can be given the implant rounding out ${his} middle,`);
+		} else if (eventSlave.bellyFluid >= 1500) {
+			t.push(`is nice and slim as ${he} can be given the amount of eventSlave.inflationType distending ${his} middle,`);
+		} else {
+			t.push("is nice and slim,");
+		}
+		t.push(`with a trim chest, narrow hips and not much of an ass to speak of. Despite the myriad ways a Free Cities slaveowner can give his property tits and asses, you've held off for now, keeping ${him} lithe.`);
+		if (canMove(eventSlave)) {
+			if (hasAnyArms(eventSlave)) {
+				t.push(`${He} comes before you for a routine nude inspection, obediently ${canStand(eventSlave) ? "standing" : "kneeling"} before your desk with ${his} ${hasBothArms(eventSlave) ? "hands crossed" : "hand placed"}`);
+				if (eventSlave.belly >= 30000) {
+					t.push(`atop ${his} ${belly} stomach.`);
+				} else if (eventSlave.belly >= 1500) {
+					t.push(`over ${his} rounded stomach.`);
+				} else {
+					t.push(`over ${his} flat stomach.`);
+				}
+			} else {
+				t.push(`${He} comes before you for a routine nude inspection, obediently ${canStand(eventSlave) ? "standing" : "kneeling"} before your desk.`);
+			}
+		} else if (!hasAnyLegs(eventSlave)) {
+			t.push(`Another slave strips ${him} and leaves ${his} naked torso on your desk for a routine inspection.`);
+		} else {
+			t.push(`Another slave helps ${him} in, aids in undressing ${him}, and leaves ${him} for your routine inspection.`);
+		}
+		t.push(`A perfectly devoted slave might display ${himself}, and a rebellious one might try to cover ${himself}: ${he}'s neither. `);
+		if (eventSlave.dick > 0) {
+			t.push(`Though ${he}'s not sexually aroused, ${his} cock is visible and contributes greatly to ${his} androgyny.`);
+		} else if (eventSlave.vagina === -1) {
+			t.push(`The smooth featureless skin between ${his} legs makes ${him} look like a doll, not a girl.`);
+		} else {
+			t.push(`${His} bare pussy completes the picture of simultaneous innocence and availability.`);
+		}
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		App.Events.addResponses(node, [
+			new App.Events.Result(`Let ${him} get dressed and spend some quality time with ${him}`, dress, virginityWarning(1)),
+			canDoAnal(eventSlave)
+				? new App.Events.Result(`Dominate ${his} narrow ass`, dominate, virginityWarning(0))
+				: new App.Events.Result()
+		]);
+
+		function dress() {
+			t = [];
+
+			t.push(`You let ${eventSlave.slaveName} don a nice dress and take ${him} out ${!canWalk(eventSlave) ? "in a wheelchair" : ""}. ${He}'s a little suspicious at first but when you reach the first balcony on your lazy route around the huge building the sun on ${his} face and the gentle breeze around ${his} ears convince ${him} there's no trick. ${He} watches you shyly as you lead ${him} around, soaking in the sights and relaxing. Though you still speak as ${his} ${WrittenMaster(eventSlave)}, you chat about goings on around the arcology, and you buy ${him} a fresh fruit from a vendor. The unexpected show of care and compassion has ${him} quite agog. By the time you take ${him} out onto another parklike balcony and fuck ${him} on a bench,`);
+			if (eventSlave.dick > 0 && eventSlave.chastityPenis === 1 && eventSlave.chastityAnus === 1) {
+				t.push(`${his} combined chastity cage and anal chastity belt makes ${him} move awkwardly.`);
+			} else if (eventSlave.dick > 0 && eventSlave.chastityPenis === 1) {
+				t.push(`${his} chastity cage is dribbling precum, a sign ${he} wouldn't mind having to take it up the ass.`);
+			} else if (eventSlave.dick > 0 && eventSlave.chastityAnus === 1) {
+				t.push(`${his} dick is tenting the front of ${his} dress, through ${his} anal chastity belt.`);
+			} else if (eventSlave.dick > 0 && canAchieveErection(eventSlave)) {
+				t.push(`${his} dick is tenting the front of ${his} dress and ${he}'s happy to take it up the ass.`);
+			} else if (eventSlave.dick > 6) {
+				t.push(`${he}'s happy to take it up the ass; there's even a steady stream of pre dripping from ${his} monstrous cock.`);
+			} else if (eventSlave.dick > 0) {
+				t.push(`${he}'s happy to take it up the ass, though there's no sign of an erection from ${his} useless sissy dick.`);
+			} else if (!canDoVaginal(eventSlave)) {
+				t.push(`${he}'s obviously ready and willing to get buttfucked, even if ${his} body has no physically obvious way to show it off.`);
+			} else {
+				t.push(`${he}'s wet and ready and moans happily as you enter ${him}.`);
+			}
+			t.push(`There's no hesitation or fear at all on ${his} face when ${he} ${canSee(eventSlave) ? "sees" : "notices"} you're returning ${him} to your penthouse; <span class="mediumaquamarine">${his} trust in you has increased.</span>`);
+			if (canDoVaginal(eventSlave)) {
+				VCheck.Vaginal(1, eventSlave);
+			} else {
+				VCheck.Anal(1, eventSlave);
+			}
+
+			eventSlave.trust += 4;
+			return t;
+		}
+
+		function dominate() {
+			t = [];
+
+			t.push(`You make a show of examining ${him} with a critical air that makes ${him} aware of ${his} modest endowments. Finished, you announce in a serious tone that you're concerned that you can't tell if ${he}'s a girl, since girls have breasts and butts. ${eventSlave.belly >= 1500 ? `${He} should do something about that bulbous gut too, you mock.` : ""}`);
+			if (!canTalk(eventSlave)) {
+				t.push(`${He} protests wordlessly, gesturing desperately at ${himself}.`);
+			} else {
+				if (eventSlave.lips > 70) {
+					t.push(`${He} protests through ${his} huge lips,`);
+				} else if (eventSlave.lipsPiercing + eventSlave.tonguePiercing > 2) {
+					t.push(`${He} protests through ${his} piercings,`);
+				} else {
+					t.push(`${He} protests,`);
+				}
+				t.push(Spoken(eventSlave, `"${Master}, I'm a slave girl! Please, just look at me, ${Master}!"`));
+			}
+			t.push(`${canSee(eventSlave) ? "Shaking your head" : "Tutting"} with pretended doubt, you say that since you're not sure you'll have to make do. Your order ${him} to`);
+			if (eventSlave.belly >= 300000) {
+				t.push(`lean over ${his} ${belly} belly${PC.dick === 0 ? " while you don a strap-on" : ""}.`);
+			} else if (eventSlave.belly >= 5000) {
+				t.push(`lean face-down into the couch cushions${PC.dick === 0 ? " while you don a strap-on" : ""}.`);
+			} else {
+				t.push(`lie face-down on the couch${PC.dick === 0 ? " while you don a strap-on" : ""}.`);
+			}
+			t.push(`${He} does doubtfully, only realizing what you intend when ${he} feels ${PC.dick === 0 ? "the strap-on" : "your dickhead"} forcing its way between ${his} narrow buttcheeks. ${He} whimpers and moans ${eventSlave.belly < 300000 ? "into the couch" : ""} as you roughly sodomize ${him}. It's true, ${he}'s pretty androgynous from this angle, especially while ${he} takes it up the butthole. <span class="hotpink">${He} has become more submissive to you,</span> but there's <span class="gold">some fear there, too.</span>`);
+
+			VCheck.Anal(1, eventSlave);
+			eventSlave.trust -= 2;
+			eventSlave.devotion += 4;
+			return t;
+		}
+
+		function virginityWarning(type) {
+			if (type === 1 && canDoVaginal(eventSlave)) {
+				if (eventSlave.vagina === 0) {
+					return `This option will take ${his} vaginal virginity`;
+				}
+			} else if (eventSlave.anus === 0 && canDoVaginal(eventSlave)) {
+				return `This option will take ${his} anal virginity`;
+			}
+		}
+	}
+};
diff --git a/src/events/RESS/obedientIdiot.js b/src/events/RESS/obedientIdiot.js
index a6a24c1c93b7b0d690da70570f9bfd4a7e1a6bad..b3834b62be36781094118362557193fc55022975 100644
--- a/src/events/RESS/obedientIdiot.js
+++ b/src/events/RESS/obedientIdiot.js
@@ -95,7 +95,7 @@ App.Events.RESSObedientIdiot = class RESSObedientIdiot extends App.Events.BaseEv
 			t.push(`with your arms and ${canHear(eventSlave) ? `murmur reassuringly in ${his} ear` : `give ${him} a reassuring squeeze`}.`);
 			if (canTalk(eventSlave)) {
 				t.push(`${He} ${say}s sadly,`);
-				t.push(Spoken(eventSlave, `"$Sorry ${eventSlave.rudeTitle === 1 ? PoliteRudeTitle(eventSlave) : Master}. I'm trying to be a good slave but it's hard."`));
+				t.push(Spoken(eventSlave, `"Sorry ${eventSlave.rudeTitle === 1 ? PoliteRudeTitle(eventSlave) : Master}. I'm trying to be a good slave but it's hard."`));
 			} else {
 				t.push(`${He} sadly gestures at the spigot and then flicks ${his} own head.`);
 			}
diff --git a/src/events/RESS/obedientShemale.js b/src/events/RESS/obedientShemale.js
index 1b9c0c3855495cab2672f0d7bee10d866dbdd1ce..54dc9773fb94f60f445836424168575265e8e909 100644
--- a/src/events/RESS/obedientShemale.js
+++ b/src/events/RESS/obedientShemale.js
@@ -96,7 +96,7 @@ App.Events.RESSObedientShemale = class RESSObedientShemale extends App.Events.Ba
 			t = [];
 
 			t.push(`${He} obeys your orders to keep ${his} ${hasBothArms(eventSlave) ? "hands" : "hand"} off ${his} dick, but can't hide ${his} disappointment and frustration. You keep a close watch on ${him}, and fuck ${his} ${anusDesc} anus every chance you get, keeping ${him} desperately aroused and desperately sodomized. After some days of this, ${he} finally reaches a point of desperate arousal that permits ${him} to orgasm to prostate stimulation alone.`);
-			if (fetishChangeChance(eventSlave) > jsRandom(1,100)) {
+			if (fetishChangeChance(eventSlave) > jsRandom(1, 100)) {
 				t.push(`Before ${he} realizes what's happening, <span class="lightcoral">${he}'s getting aroused at the thought of anal sex.</span>`);
 
 				eventSlave.fetishStrength = 10;
diff --git a/src/events/RESS/passingDeclaration.js b/src/events/RESS/passingDeclaration.js
new file mode 100644
index 0000000000000000000000000000000000000000..4b918926b2c7c114b8b4fb40881332ec85f21a55
--- /dev/null
+++ b/src/events/RESS/passingDeclaration.js
@@ -0,0 +1,271 @@
+App.Events.RESSPassingDeclaration = class RESSPassingDeclaration extends App.Events.BaseEvent {
+	eventPrerequisites() {
+		return [];
+	}
+
+	actorPrerequisites() {
+		return [
+			[ // single event slave
+				s => s.fetish !== "mindbroken",
+				hasAnyArms,
+				hasAnyLegs,
+				canTalk,
+				s => s.devotion > 50,
+				s => s.trust > 50,
+				s => s.health.condition > 90,
+				s => s.muscles > 5,
+				s => s.weight >= -30,
+				s => s.weight <= 30
+			]
+		];
+	}
+
+	execute(node) {
+		/** @type {Array<App.Entity.SlaveState>} */
+		let [eventSlave] = this.actors.map(a => getSlave(a));
+		const {
+			He, he, His, his, him, himself, girl
+		} = getPronouns(eventSlave);
+		const {say, title: Master} = getEnunciation(eventSlave);
+		const desc = SlaveTitle(eventSlave);
+		const belly = bellyAdjective(eventSlave);
+
+		/** @type {App.Entity.PlayerState} */
+		let PC = V.PC;
+
+		V.nextLink = "Next Week";
+
+		App.Events.drawEventArt(node, eventSlave);
+
+		let t = [];
+
+		t.push("As you manage your empire from your office, a constant traffic of slaves passes by its door. The glass walls allow a good view of them, and since you naturally own what you find appealing, the passing chattel often draws your eye. For example, this morning you notice");
+		t.push(App.UI.DOM.slaveDescriptionDialog(eventSlave));
+		t.push(`almost bounce into view. ${He}'s physically fit, at a healthy weight,`);
+		if (eventSlave.belly >= 10000) {
+			if (eventSlave.bellyPreg >= 3000) {
+				t.push(`heavily pregnant,`);
+			} else if (eventSlave.bellyImplant >= 3000) {
+				t.push(`despite ${his} ${belly} fake belly,`);
+			} else {
+				t.push(`completely full of ${eventSlave.inflationType},`);
+			}
+		}
+		if (eventSlave.physicalAge > 35) {
+			t.push(`and is getting such excellent modern medical care that despite ${his} age, ${he} has the energy of a teenager.`);
+		} else if (eventSlave.physicalAge > 19) {
+			t.push(`is full of youth and vigor, and is in truly perfect health due to the miracles of modern medicine.`);
+		} else if (eventSlave.physicalAge > 12) {
+			t.push(`and is a teenager, not to mention the perfect health ${he} owes to the miracles of modern medicine.`);
+		} else {
+			t.push(`and is a little ${girl}, not to mention the perfect health ${he} owes to the miracles of modern medicine.`);
+		}
+		if (eventSlave.energy > 95) {
+			t.push(`Apart from ${his} absurd sex drive,`);
+		} else if (eventSlave.energy > 40) {
+			t.push(`In addition to ${his} very healthy libido,`);
+		} else {
+			t.push(`Despite ${his} mediocre libido,`);
+		}
+		t.push(`${he}'s overflowing with energy. ${He} half-runs, half-skips down the hallway, slowing in the doorway as ${he} feels your gaze. Without stopping, ${he} turns to meet your eyes, winks trustingly, and bursts out, "${Spoken(eventSlave, `Hi ${Master}! Love you!`)}" Then ${he} continues on ${his} merry way.`);
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		t.push(`Someone's a happy ${desc} today.`);
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		App.Events.addResponses(node, [
+			new App.Events.Result(`Follow ${him}`, follow),
+			new App.Events.Result(`Play with ${him}`, play),
+			new App.Events.Result(`Punish ${him}`, punish)
+		]);
+
+		function follow() {
+			t = [];
+
+			t.push(`${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 ${him} 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 was an okay thing for me to do." You assure ${him} it was. "Thanks, ${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 ${eventSlave.intelligence + eventSlave.intelligenceImplant > 50 ? `perplexed, not a common look for a slave as smart as ${him}` : "perplexed"}.`);
+			t.push(`"${Spoken(eventSlave, `I don't know! I just woke up this morning feeling really, really good. ${eventSlave.intelligence + eventSlave.intelligenceImplant > 50 ? `I'm sure the fact that I'm benefiting from incredibly advanced medicine has something to do with it; thank you very much for that, ${Master}. Other than that,` : ""} I just 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 (eventSlave.assignment) {
+				case "whore":
+					t.push(`(one of the arcology's nicer streets, where ${he}'ll spend the day selling ${his} body),`);
+					break;
+				case "serve the public":
+					t.push(`(one of the arcology's nicer streets, where ${he}'ll spend the day flirting with citizens and having sex with anyone that's willing),`);
+					break;
+				case "work a glory hole":
+					t.push(`(a wall mounting that will render ${him} a helpless target for dicks all day),`);
+					break;
+				case "get milked":
+					t.push(`(${his} favorite milker in the penthouse),`);
+					break;
+				case "take classes":
+					t.push(`(a quiet area with a touchscreen where ${he} can review material from the slave etiquette class ${he}'s working on),`);
+					break;
+				case "please you":
+					t.push(`(the wardrobe, where ${he}'ll get dressed before attending to you for the rest of the day),`);
+					break;
+				case "be a subordinate slave":
+					t.push(`(the living area of the slave ${he}'s been assigned to serve),`);
+					break;
+				case "work as a servant":
+				case "be a servant":
+					t.push(`(the closet that contains the cleaning items ${he}'ll use to dust and polish the penthouse today),`);
+					break;
+				case "work as a nanny":
+					t.push(`(${V.nurseryName}, where ${he} is tending to the children),`);
+					break;
+				case "stay confined":
+					t.push(`(${his} cell),`);
+					break;
+				case "guard you":
+					t.push(`(the armory where ${his} weapons are kept),`);
+					break;
+				case "be your Head Girl":
+					t.push(`(the assignment location of a slave who needs some hands-on guidance from your Head Girl),`);
+					break;
+				case "recruit girls":
+					t.push(`(the camera station ${he} uses to convince people from the old world that becoming your slave is a good idea),`);
+					break;
+				case "serve in the master suite":
+					t.push(`(your bedroom, where ${he}'ll ready ${himself} for later),`);
+					break;
+				case "be the DJ":
+					t.push(`(the back of ${V.clubName} where ${he} decides the playlist for the day),`);
+					break;
+				case "be the Attendant":
+					t.push(`(the back of ${V.spaName}, where ${he}'ll decide the perfect mixture for today's baths),`);
+					break;
+				case "be the Madam":
+					t.push(`(${his} office in ${V.brothelName}, where ${he}'ll decide the slaves on display),`);
+					break;
+				case "be the Schoolteacher":
+					t.push(`(${his} office in ${V.schoolroomName}, where ${he}'ll decide today's lesson),`);
+					break;
+				case "be the Stewardess":
+					t.push(`(${his} office in ${V.servantsQuartersName}, where ${he}'ll divvy out today's tasks),`);
+					break;
+				case "be the Milkmaid":
+					t.push(`(${V.dairyName}, to check on the cattle),`);
+					break;
+				case "be the Farmer":
+					t.push(`(${V.farmyardName}, to tend to the crops),`);
+					break;
+				case "be the Wardeness":
+					t.push(`(${V.cellblockName}, to oversee the inmates),`);
+					break;
+				case "be your Concubine":
+					t.push(`(your bed),`);
+					break;
+				case "be the Nurse":
+					t.push(`(${V.clinicName}, to check on the patients),`);
+					break;
+				case "be the Matron":
+					t.push(`(${V.nurseryName}, where ${he} is managing children and nannies),`);
+					break;
+				case "live with your Head Girl":
+					break;
+				default:
+					t.push(`(a waiting area for further assignment),`);
+			}
+			t.push(`and when you get there, ${he} gives you a peck on the cheek. ${eventSlave.height < 170 ? `The short ${desc} has to go up on tiptoe to reach.` : ""} "<span class="hotpink">${Spoken(eventSlave, "I really do love you")},</span> ${Master}," ${he} ${say}s, ${canSee(eventSlave) ? `${App.Desc.eyesColor(eventSlave)} shining` : "face filled with joy"}.`);
+
+			eventSlave.devotion += 5;
+			return t;
+		}
+
+		function play() {
+			t = [];
+
+			t.push(`You're not a slave, so you can't understand ${his} inner workings through direct empathy. But in your experience, a quick orgasm never fails to make a good day better. You're not slow, and of course you know where ${he}'s going, so you catch up to ${him} on quiet feet and`);
+			if (eventSlave.butt > 12) {
+				t.push(`sink both hands into ${his} immense rear.`);
+			} else if (eventSlave.butt > 6) {
+				t.push(`set ${his} enormous ass jiggling with a smack.`);
+			} else if (eventSlave.butt > 3) {
+				t.push(`give ${his} womanly bottom a squeeze.`);
+			} else {
+				t.push(`pinch ${his} cute rear.`);
+			}
+			t.push(`${He} squeals and whirls around, ${eventSlave.energy > 60 ? `eagerly flinging ${himself} into your arms, ready for some action` : `trustingly throwing ${himself} into your arms`}. Feeling spontaneous, you decide to get everyone off quickly and cleanly, right here.`);
+			switch (eventSlave.fetish) {
+				case "submissive":
+					t.push(`You place a dominant hand around ${his} throat, firmly but not harshly, almost sending the submissive to ${his} knees. Your other hand`);
+					break;
+				case "cumslut":
+					t.push(`You kiss ${him}, sliding your tongue all the way into ${his} mouth. ${He} melts into you, rhapsodically entranced by the intense oral stimulation, and ${his} tongue presses against yours with frankly sexual significance. Your hand`);
+					break;
+				case "humiliation":
+					t.push(`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 ${his} most intimate parts. ${His} cheeks flush with arousal and delicious shame. Your hand`);
+					break;
+				case "buttslut":
+					t.push(`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`);
+					break;
+				case "boobs":
+					t.push(`${He} gasps as your hot mouth finds one of ${his} eventSlave.nipples nipples, and then moans openly as one of your hands mauls ${his} other breast. Your other hand`);
+					break;
+				case "pregnancy":
+					t.push(`One of your hands begins to caress ${his} ${belly} ${eventSlave.pregKnown === 1 ? "pregnant" : ""} belly, worshipping its curve. Your other hand`);
+					break;
+				case "dom":
+				case "sadist":
+					t.push(`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`);
+					break;
+				case "masochist":
+					t.push(`You caress one of ${his} nipples, ${eventSlave.nipples !== "fuckable" ? "bringing it completely erect before gripping it firmly. You twist it, pull it, pinch it" : "letting it swell completely shut before driving your entire fist into it"}; ${he} moans with masochistic pleasure. Your other hand`);
+					break;
+				default:
+					t.push(`Your hand`);
+			}
+			if (canDoVaginal(eventSlave)) {
+				t.push(`finds ${his} pussy`);
+			} else if (canDoAnal(eventSlave)) {
+				t.push(`reaches around behind ${him} to tease ${his} ass and play with ${his} sensitive perineum`);
+			} else {
+				t.push(`traces ${his} chastity`);
+			}
+			t.push(`and you press your groin towards ${him}. Getting the idea, ${he} begins to ${PC.dick !== 0 ? "jack you off" : "finger your clit"} energetically, taking the pace from your lusty demeanor and ${his} own feeling of energy and well-being. The two of you orgasm almost together. ${PC.dick !== 0 ? "You angle your hips to shoot your seed onto the floor" : "You climax so violently that some of your femcum makes it onto the floor"}.`);
+			if (eventSlave.chastityPenis === 1) {
+				t.push(`${His} ejaculate steadily drips from ${his} chastity cage,`);
+			} else if (canAchieveErection(eventSlave)) {
+				t.push(`${He} blows ${his} own load right after,`);
+			} else if (eventSlave.balls > 0) {
+				t.push(`${His} limp dick pours cum,`);
+			} else if (eventSlave.dick > 0) {
+				t.push(`${His} bitchclit produces a little watery fluid,`);
+			} else if (eventSlave.vaginaLube > 1) {
+				t.push(`${He} squirts copiously,`);
+			} else {
+				t.push(`Unusually for ${him}, ${he} manages to squirt a little,`);
+			}
+			t.push(`adding to the mess. You tell ${him} another slave will clean up, and order ${him} to go about ${his} business. ${He} turns to go, <span class="mediumaquamarine">smiling with sexual satisfaction.</span>`);
+
+			eventSlave.trust += 5;
+			return t;
+		}
+
+		function punish() {
+			t = [];
+
+			t.push(`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, <span class="mediumorchid">betrayal,</span> <span class="gold">fear.</span> ${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 (eventSlave.rules.punishment) {
+				case "confinement":
+					t.push(`close ${him} into a confinement cell,`);
+					break;
+				case "whipping":
+					t.push(`tie ${him} up for a brief whipping,`);
+					break;
+				case "chastity":
+					t.push(`lock ${him} into harsh chastity,`);
+					break;
+				default:
+					t.push(`gag ${him} for speaking out of turn,`);
+			}
+			t.push(`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.`);
+
+			eventSlave.devotion -= 10;
+			eventSlave.trust -= 10;
+			return t;
+		}
+	}
+};
diff --git a/src/events/randomEvent.js b/src/events/randomEvent.js
index b1d276309168b312abd7c404fae2dc921e737a71..a37ceb1c61233c1742930e07101e735d0a518e28 100644
--- a/src/events/randomEvent.js
+++ b/src/events/randomEvent.js
@@ -12,26 +12,32 @@ App.Events.getIndividualEvents = function() {
 		// example: new App.Events.TestEvent(),
 		new App.Events.RESSAssFitting(),
 		new App.Events.RESSCockFeederResistance(),
+		new App.Events.RESSComfortableSeat(),
 		new App.Events.RESSDevotedAnalVirgin(),
 		new App.Events.RESSDevotedVirgin(),
+		new App.Events.RESSDevotedWaist(),
 		new App.Events.RESSEscapee(),
+		new App.Events.RESSFrighteningDick(),
 		new App.Events.RESSHotPC(),
+		new App.Events.RESSImScared(),
 		new App.Events.RESSLazyEvening(),
 		new App.Events.RESSMoistPussy(),
 		new App.Events.RESSMuscles(),
 		new App.Events.RESSObedientAddict(),
 		new App.Events.RESSObedientBitchy(),
+		new App.Events.RESSObedientGirlish(),
 		new App.Events.RESSObedientIdiot(),
 		new App.Events.RESSObedientShemale(),
+		new App.Events.RESSPassingDeclaration(),
 		new App.Events.RESSRetchingCum(),
 		new App.Events.RESSSuppositoryResistance(),
 		new App.Events.RESSWaistlineWoes(),
 
 		new App.Events.RECIButthole(),
+		new App.Events.RECIFeminization(),
 		new App.Events.RECIFuta(),
 		new App.Events.RECIMilf(),
 		new App.Events.RECIOrientation(),
-		new App.Events.RECIFeminization(),
 
 		new App.Events.RETSSiblingTussle(),
 	];
diff --git a/src/facilities/clinic/clinic.tw b/src/facilities/clinic/clinic.tw
index b1cdc8af600a831da191ca60aceefe84da671b66..f29386e96abb096a1e10caf2931998cc460f2764 100644
--- a/src/facilities/clinic/clinic.tw
+++ b/src/facilities/clinic/clinic.tw
@@ -72,7 +72,7 @@
 		$clinicNameCaps is busy. Patients occupy many of the beds; most are alert, but a few are dozing under medication designed to promote healing through deep rest.
 	<<elseif _CL > 0>>
 		$clinicNameCaps is sparsely populated. Patients occupy a few of the beds; most are alert, but a few are dozing under medication designed to promote healing through deep rest.
-	<<elseif _S.Nurse != 0>>
+	<<elseif _S.Nurse>>
 		_S.Nurse.slaveName is alone in the clinic, and has nothing to do but keep the place spotlessly clean and ready for its next patients.
 	<<else>>
 		$clinicNameCaps is empty and quiet.
diff --git a/src/gui/css/mainStyleSheet.css b/src/gui/css/mainStyleSheet.css
index 99a23af72c15df74833beeb920c99ff775bd56d1..ea810776e556246be27260e75ebe1efc1403990f 100644
--- a/src/gui/css/mainStyleSheet.css
+++ b/src/gui/css/mainStyleSheet.css
@@ -339,7 +339,7 @@ div.double-choices, p.double-choices {
 	font-style: italic;
 }
 
-.story-label {
+.story-label, .underline {
 	text-decoration: underline;
 }
 
@@ -381,7 +381,7 @@ h3 + p {
 	margin: 0 auto;
 }
 
-.major-link {
+.major-link, .bold {
 	font-weight: bold;
 }
 
diff --git a/src/interaction/slaveInteract.js b/src/interaction/slaveInteract.js
index cd56cffbf022fd13c29f46cf87f59ab55f504dbb..aa4bd94453b88fda2c8d558fa610f5f0b9f14c5e 100644
--- a/src/interaction/slaveInteract.js
+++ b/src/interaction/slaveInteract.js
@@ -1708,7 +1708,7 @@ App.UI.SlaveInteract.incubator = function(slave) {
 
 	if (V.incubator > 0) {
 		if (slave.preg > 0 && slave.broodmother === 0 && slave.pregKnown === 1 && slave.eggType === "human") {
-			if ((slave.assignment === Job.DAIRY && V.dairyPregSetting > 0) || (slave.assignment === Job.FARMYARD && V.farmyardBreeding > 0)) {} else {
+			if ((slave.assignment === Job.DAIRY && V.dairyPregSetting > 0) || (slave.assignment === Job.FARMYARD && V.farmyardBreeding > 0)) { } else {
 				let title = document.createElement('div');
 				let link = document.createElement('div');
 				link.className = "choices";
@@ -1878,7 +1878,7 @@ App.UI.SlaveInteract.nursery = function(slave) {
 		let _reservedNursery = WombReserveCount(slave, "nursery");
 		let _WL = slave.womb.length;
 		if (slave.preg > 0 && slave.broodmother === 0 && slave.pregKnown === 1 && slave.eggType === "human") {
-			if ((slave.assignment === Job.DAIRY && V.dairyPregSetting > 0) || (slave.assignment === Job.FARMYARD && V.farmyardBreeding > 0)) {} else {
+			if ((slave.assignment === Job.DAIRY && V.dairyPregSetting > 0) || (slave.assignment === Job.FARMYARD && V.farmyardBreeding > 0)) { } else {
 				let title = document.createElement('div');
 				let link = document.createElement('div');
 				link.className = "choices";
@@ -2030,118 +2030,415 @@ App.UI.SlaveInteract.nursery = function(slave) {
 	return jQuery('#nursery').empty().append(el);
 };
 
-App.UI.SlaveInteract.smartSettings = function(slave) {
-	let el = document.createElement('div');
-
-	const {His} = getPronouns(slave);
-	const bodyPart = [];
-	const BDSM = [];
-	const gender = [];
-	const level = [];
-
-	if (slave.clitPiercing === 3 || slave.vaginalAccessory === "smart bullet vibrator") {
-		// Level
-		level.push({text: `No sex`, updateSlave: {clitSetting: `none`}});
-		level.push({text: `All sex`, updateSlave: {clitSetting: `all`}});
-
-		// Body part
-		bodyPart.push({text: `Vanilla`, updateSlave: {clitSetting: `vanilla`}});
-		bodyPart.push({text: `Oral`, updateSlave: {clitSetting: `oral`}});
-		bodyPart.push({text: `Anal`, updateSlave: {clitSetting: `anal`}});
-		bodyPart.push({text: `Boobs`, updateSlave: {clitSetting: `boobs`}});
-		if (V.seePreg !== 0) {
-			bodyPart.push({text: `Preg`, updateSlave: {clitSetting: `pregnancy`}});
-		}
-		// BDSM
-		BDSM.push({text: `Sub`, updateSlave: {clitSetting: `submissive`}});
-		BDSM.push({text: `Dom`, updateSlave: {clitSetting: `dom`}});
-		BDSM.push({text: `Masochism`, updateSlave: {clitSetting: `masochist`}});
-		BDSM.push({text: `Sadism`, updateSlave: {clitSetting: `sadist`}});
-		BDSM.push({text: `Humiliation`, updateSlave: {clitSetting: `humiliation`}});
-
-		// Gender
-		gender.push({text: `Men`, updateSlave: {clitSetting: `men`}});
-		gender.push({text: `Women`, updateSlave: {clitSetting: `women`}});
-		gender.push({text: `Anti-men`, updateSlave: {clitSetting: `anti-men`}});
-		gender.push({text: `Anti-women`, updateSlave: {clitSetting: `anti-women`}});
-	}
-
-	let label = null;
-	if (slave.clitPiercing === 3) {
-		if (slave.dick < 1) {
-			label = `${His} smart clit piercing `;
-			if (slave.vaginalAccessory === "smart bullet vibrator") {
-				label += `and smart bullet vibrator are `;
+App.UI.SlaveInteract.rules = function(slave) {
+	const frag = new DocumentFragment();
+	let p;
+	let div;
+	let array;
+	let choices;
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	if (V.seePreg !== 0) {
+		p = document.createElement('p');
+		if (V.universalRulesImpregnation === "HG") {
+			if (slave.HGExclude === 0) {
+				p.append(`Will be bred by the Head Girl when fertile. `);
+				p.append(
+					App.UI.DOM.link(
+						`Exempt ${him}`,
+						() => {
+							slave.HGExclude = 1;
+							App.UI.SlaveInteract.rules(slave);
+						}
+					)
+				);
 			} else {
-				label += `is `;
+				p.append(`Will not be bred by the Head Girl when fertile. `);
+				p.append(
+					App.UI.DOM.link(
+						`Include ${him}`,
+						() => {
+							slave.HGExclude = 0;
+							App.UI.SlaveInteract.rules(slave);
+						}
+					)
+				);
 			}
-			label += `set to: `;
-		} else {
-			label = `${His} smart frenulum piercing `;
-			if (slave.vaginalAccessory === "smart bullet vibrator") {
-				label += `and smart bullet vibrator are `;
+		} else if (V.universalRulesImpregnation === "Stud") {
+			if (slave.StudExclude === 0) {
+				p.append(`Will be bred by your Stud when fertile. `);
+				p.append(
+					App.UI.DOM.link(
+						`Exempt ${him}`,
+						() => {
+							slave.StudExclude = 1;
+							App.UI.SlaveInteract.rules(slave);
+						}
+					)
+				);
 			} else {
-				label += `is `;
+				p.append(`Will not be bred by your Stud when fertile. `);
+				p.append(
+					App.UI.DOM.link(
+						`Include ${him}`,
+						() => {
+							slave.StudExclude = 0;
+							App.UI.SlaveInteract.rules(slave);
+						}
+					)
+				);
 			}
-			label += `set to: `;
 		}
-	} else if (slave.vaginalAccessory === "smart bullet vibrator") {
-		label = `${His} smart bullet vibe is set to: `;
-	}
-	if (label) {
-		let title = App.UI.DOM.appendNewElement('div', el, label);
-		let selected = App.UI.DOM.appendNewElement('span', title, `${slave.clitSetting}. `);
-		selected.style.fontWeight = "bold";
+		frag.append(p);
 	}
+	p = document.createElement('p');
 
-	App.UI.SlaveInteract.appendLabeledChoiceRow(el, "Level", level, slave);
-	App.UI.SlaveInteract.appendLabeledChoiceRow(el, "Body part", bodyPart, slave);
-	App.UI.SlaveInteract.appendLabeledChoiceRow(el, "BDSM", BDSM, slave);
-	App.UI.SlaveInteract.appendLabeledChoiceRow(el, "Gender", gender, slave);
+	array = [];
+	if (slave.useRulesAssistant === 0) {
+		App.UI.DOM.appendNewElement("span", p, `Not subject `, ["bold", "gray"]);
+		App.UI.DOM.appendNewElement("span", p, `to the Rules Assistant.`, "gray");
+		array.push(
+			App.UI.DOM.link(
+				`Include ${him}`,
+				() => {
+					slave.useRulesAssistant = 1;
+					App.UI.SlaveInteract.rules(slave);
+				}
+			)
+		);
+	} else {
+		App.UI.DOM.appendNewElement("h3", p, `Rules Assistant`);
+
+		if (slave.hasOwnProperty("currentRules") && slave.currentRules.length > 0) {
+			const ul = document.createElement("UL");
+			ul.style.margin = 0;
+			V.defaultRules.filter(
+				x => ruleApplied(slave, x)
+			).map(
+				x => {
+					const li = document.createElement('li');
+					li.append(x.name);
+					ul.append(li);
+				}
+			);
 
-	return jQuery('#smartSettings').empty().append(el);
-};
+			// set up rules display
+			if ($("ul").has("li").length ) {
+				App.UI.DOM.appendNewElement("div", p, `Rules applied: `);
+				p.append(ul);
+			} else {
+				App.UI.DOM.appendNewElement("div", p, `There are no rules that would apply to ${him}.`, "gray");
+			}
+		}
+		array.push(
+			App.UI.DOM.link(
+				`Apply rules`,
+				() => {
+					DefaultRules(slave);
+					App.UI.SlaveInteract.rules(slave);
+				}
+			)
+		);
+		array.push(
+			App.UI.DOM.link(
+				`Exempt ${him}`,
+				() => {
+					slave.useRulesAssistant = 0;
+					App.UI.SlaveInteract.rules(slave);
+				}
+			)
+		);
+		array.push(App.UI.DOM.passageLink("Rules Assistant Options", "Rules Assistant"));
+	}
+	p.append(App.UI.DOM.generateLinksStrip(array));
+	frag.append(p);
 
-App.UI.SlaveInteract.orgasm = function(slave) {
-	let el = document.createElement('div');
+	p = document.createElement('p');
+	App.UI.DOM.appendNewElement("h3", p, `Other Rules`);
 
-	let title = document.createElement('div');
-	title.textContent = `Non-assignment orgasm rules: `;
-	el.append(title);
+	// Living
+	if (slave.fuckdoll > 0) {
+		// Rules have little meaning for living sex toys//
+	} else {
+		penthouseCensus();
+		p.append("Living standard: ");
+		App.UI.DOM.appendNewElement("span", p, slave.rules.living, "bold");
+	}
+	if (setup.facilityCareers.includes(slave.assignment)) {
+		// ${His} living conditions are managed by ${his} assignment.//
+	} else if ((slave.assignment === "be your Head Girl") && (V.HGSuite === 1)) {
+		// ${He} has ${his} own little luxurious room in the penthouse with everything ${he} needs to be a proper Head Girl.//
+	} else if ((slave.assignment === "guard you") && (V.dojo > 1)) {
+		// ${He} has a comfortable room in the armory to call ${his} own.//
+	} else {
+		choices = [
+			{value: "spare"},
+			{value: "normal"},
+		];
+		if (V.roomsPopulation <= V.rooms - 0.5) {
+			choices.push({value: "luxurious"});
+		} else {
+			choices.push({
+				title: `Luxurious`,
+				disabled: ["No luxurious rooms available"]
+			});
+		}
+
+		p.append(listChoices(choices, "living"));
+	}
+
+	// Rest
+	if (V.cheatMode) {
+		if (["be a servant", "get milked", "please you", "serve in the club", "serve the public", "whore", "work as a farmhand", "work in the brothel", "work in the dairy", "work a glory hole"].includes(slave.assignment)) {
+			div = document.createElement("div");
+			div.append("Sleep rules: ");
+			App.UI.DOM.appendNewElement("span", div, slave.rules.rest, "bold");
+			choices = [
+				{value: "none"},
+				{value: "cruel"},
+				{value: "restrictive"},
+				{value: "permissive"},
+				{value: "mandatory"},
+			];
+			div.append(listChoices(choices, "rest"));
+			p.append(div);
+		}
+	}
+
+	// Punishment
+	div = document.createElement("div");
+	div.append("Typical punishment: ");
+	App.UI.DOM.appendNewElement("span", div, slave.rules.punishment, "bold");
+	choices = [
+		{value: "confinement"},
+		{value: "whipping"},
+		{value: "orgasm"},
+		{value: "chastity"},
+		{value: "situational"},
+	];
+	div.append(listChoices(choices, "punishment"));
+	p.append(div);
+
+	// Reward
+	div = document.createElement("div");
+	div.append("Typical reward: ");
+	App.UI.DOM.appendNewElement("span", div, slave.rules.reward, "bold");
+	choices = [
+		{value: "relaxation"},
+		{value: "drugs"},
+		{value: "orgasm"},
+		{value: "situational"},
+	];
+	div.append(listChoices(choices, "reward"));
+	p.append(div);
+
+	// Lactation
+	if (slave.lactation !== 2) {
+		div = document.createElement("div");
+		div.append("Lactation maintenance: ");
+		App.UI.DOM.appendNewElement("span", div, slave.rules.lactation, "bold");
+		choices = [
+			{
+				title: "Left alone",
+				value: "none",
+			},
+		];
 
-	makeLinks("Masturbation", "rules.release.masturbation");
-	makeLinks("Partner", "rules.release.partner");
-	makeLinks("Family", "rules.release.family");
-	makeLinks("Other slaves", "rules.release.slaves");
-	makeLinks("Master", "rules.release.master", true);
+		if (slave.lactation === 0) {
+			choices.push(
+				{
+					title: "Induce lactation",
+					value: "induce",
+				}
+			);
+		} else {
+			choices.push(
+				{
+					title: "Maintain lactation",
+					value: "maintain",
+				}
+			);
+		}
+		div.append(listChoices(choices, "lactation"));
+		p.append(div);
+	}
 
-	function makeLinks(text, setting, master=false) {
-		const options =
-			[{text: master ? `Grant` : `Allow`, updateSlave: {[setting]: 1}},
-			 {text: master ? `Deny` : `Forbid`, updateSlave: {[setting]: 0}}];
+	p.append(orgasm(slave));
 
-		let links = document.createElement('div');
-		links.append(`${text}: `);
-		links.append(status(_.get(slave, setting), master));
-		links.appendChild(App.UI.SlaveInteract.generateRows(options, slave));
-		links.className = "choices";
-		el.append(links);
+	if (slave.voice !== 0) {
+		div = document.createElement("div");
+		div.append("Speech rules: ");
+		App.UI.DOM.appendNewElement("span", div, slave.rules.speech, "bold");
+		choices = [
+			{value: "restrictive"},
+			{value: "permissive"},
+		];
+		if (slave.accent > 0 && slave.accent < 4) {
+			choices.push(
+				{value: "accent elimination"},
+			);
+		} else if (slave.accent > 3) {
+			choices.push(
+				{value: "language lessons"},
+			);
+		}
+		div.append(listChoices(choices, "speech"));
+		p.append(div);
+	}
+
+	div = document.createElement("div");
+	div.append("Relationship rules: ");
+	App.UI.DOM.appendNewElement("span", div, slave.rules.relationship, "bold");
+	choices = [
+		{value: "restrictive"},
+		{value: "just friends"},
+		{value: "permissive"},
+	];
+	div.append(listChoices(choices, "relationship"));
+	p.append(div);
+
+	p.append(smartSettings(slave));
+	frag.append(p);
+	return jQuery('#rules').empty().append(frag);
+
+	function listChoices(choices, property) {
+		const links = [];
+		for (const c of choices) {
+			const title = c.title || capFirstChar(c.value);
+			if (c.disabled) {
+				links.push(
+					App.UI.DOM.disabledLink(
+						title, c.disabled
+					)
+				);
+			} else {
+				links.push(
+					App.UI.DOM.link(
+						title,
+						() => {
+							slave.rules[property] = c.value;
+							App.UI.SlaveInteract.rules(slave);
+						}
+					)
+				);
+			}
+		}
+		return App.UI.DOM.generateLinksStrip(links);
 	}
+	function orgasm(slave) {
+		let el = document.createElement('div');
 
-	function status(setting, master) {
-		let selected = document.createElement('span');
-		selected.style.fontWeight = "bold";
-		let text;
-		if (master) {
-			text = setting ? "granted" : "denied";
-		} else {
-			text = setting ? "allowed" : "denied";
+		let title = document.createElement('div');
+		title.textContent = `Non-assignment orgasm rules: `;
+		el.append(title);
+
+		makeLinks("Masturbation", "rules.release.masturbation");
+		makeLinks("Partner", "rules.release.partner");
+		makeLinks("Family", "rules.release.family");
+		makeLinks("Other slaves", "rules.release.slaves");
+		makeLinks("Master", "rules.release.master", true);
+
+		function makeLinks(text, setting, master = false) {
+			const options =
+				[{text: master ? `Grant` : `Allow`, updateSlave: {[setting]: 1}},
+					{text: master ? `Deny` : `Forbid`, updateSlave: {[setting]: 0}}];
+
+			let links = document.createElement('div');
+			links.append(`${text}: `);
+			links.append(status(_.get(slave, setting), master));
+			links.appendChild(App.UI.SlaveInteract.generateRows(options, slave));
+			links.className = "choices";
+			el.append(links);
+		}
+
+		function status(setting, master) {
+			let selected = document.createElement('span');
+			selected.style.fontWeight = "bold";
+			let text;
+			if (master) {
+				text = setting ? "granted" : "denied";
+			} else {
+				text = setting ? "allowed" : "denied";
+			}
+			selected.textContent = `${text}. `;
+			return selected;
 		}
-		selected.textContent = `${text}. `;
-		return selected;
+
+		return el;
 	}
 
-	return jQuery('#orgasm').empty().append(el);
+	function smartSettings(slave) {
+		let el = document.createElement('div');
+
+		const {His} = getPronouns(slave);
+		const bodyPart = [];
+		const BDSM = [];
+		const gender = [];
+		const level = [];
+
+		if (slave.clitPiercing === 3 || slave.vaginalAccessory === "smart bullet vibrator") {
+			// Level
+			level.push({text: `No sex`, updateSlave: {clitSetting: `none`}});
+			level.push({text: `All sex`, updateSlave: {clitSetting: `all`}});
+
+			// Body part
+			bodyPart.push({text: `Vanilla`, updateSlave: {clitSetting: `vanilla`}});
+			bodyPart.push({text: `Oral`, updateSlave: {clitSetting: `oral`}});
+			bodyPart.push({text: `Anal`, updateSlave: {clitSetting: `anal`}});
+			bodyPart.push({text: `Boobs`, updateSlave: {clitSetting: `boobs`}});
+			if (V.seePreg !== 0) {
+				bodyPart.push({text: `Preg`, updateSlave: {clitSetting: `pregnancy`}});
+			}
+			// BDSM
+			BDSM.push({text: `Sub`, updateSlave: {clitSetting: `submissive`}});
+			BDSM.push({text: `Dom`, updateSlave: {clitSetting: `dom`}});
+			BDSM.push({text: `Masochism`, updateSlave: {clitSetting: `masochist`}});
+			BDSM.push({text: `Sadism`, updateSlave: {clitSetting: `sadist`}});
+			BDSM.push({text: `Humiliation`, updateSlave: {clitSetting: `humiliation`}});
+
+			// Gender
+			gender.push({text: `Men`, updateSlave: {clitSetting: `men`}});
+			gender.push({text: `Women`, updateSlave: {clitSetting: `women`}});
+			gender.push({text: `Anti-men`, updateSlave: {clitSetting: `anti-men`}});
+			gender.push({text: `Anti-women`, updateSlave: {clitSetting: `anti-women`}});
+		}
+
+		let label = null;
+		if (slave.clitPiercing === 3) {
+			if (slave.dick < 1) {
+				label = `${His} smart clit piercing `;
+				if (slave.vaginalAccessory === "smart bullet vibrator") {
+					label += `and smart bullet vibrator are `;
+				} else {
+					label += `is `;
+				}
+				label += `set to: `;
+			} else {
+				label = `${His} smart frenulum piercing `;
+				if (slave.vaginalAccessory === "smart bullet vibrator") {
+					label += `and smart bullet vibrator are `;
+				} else {
+					label += `is `;
+				}
+				label += `set to: `;
+			}
+		} else if (slave.vaginalAccessory === "smart bullet vibrator") {
+			label = `${His} smart bullet vibe is set to: `;
+		}
+		if (label) {
+			let title = App.UI.DOM.appendNewElement('div', el, label);
+			let selected = App.UI.DOM.appendNewElement('span', title, `${slave.clitSetting}. `);
+			selected.style.fontWeight = "bold";
+		}
+
+		App.UI.SlaveInteract.appendLabeledChoiceRow(el, "Level", level, slave);
+		App.UI.SlaveInteract.appendLabeledChoiceRow(el, "Body part", bodyPart, slave);
+		App.UI.SlaveInteract.appendLabeledChoiceRow(el, "BDSM", BDSM, slave);
+		App.UI.SlaveInteract.appendLabeledChoiceRow(el, "Gender", gender, slave);
+
+		return el;
+	}
 };
 
 App.UI.SlaveInteract.custom = (function() {
@@ -3080,7 +3377,6 @@ App.UI.SlaveInteract.refreshAll = function(slave) {
 	App.UI.SlaveInteract.diet(slave);
 	App.UI.SlaveInteract.dietBase(slave);
 	App.UI.SlaveInteract.snacks(slave);
-	App.UI.SlaveInteract.smartSettings(slave);
-	App.UI.SlaveInteract.orgasm(slave);
+	App.UI.SlaveInteract.rules(slave);
 	App.UI.SlaveInteract.work(slave);
 };
diff --git a/src/js/SlaveState.js b/src/js/SlaveState.js
index 0313f4892c1647257af7136a5957860d5b24dfe2..92f35f702d2f61f60101b8c11ff2fd131ffaa698 100644
--- a/src/js/SlaveState.js
+++ b/src/js/SlaveState.js
@@ -44,6 +44,12 @@ App.Entity.RuleState = class RuleState {
 		 * * "mandatory"
 		 */
 		this.rest = "restrictive";
+		/**
+		 * Is the slave allowed to use mobility aids
+		 * * "restrictive"
+		 * * "permissive"
+		 */
+		this.mobility = "restrictive";
 		/**
 		 * * "restrictive"
 		 * * "permissive"
diff --git a/src/js/eventSelectionJS.js b/src/js/eventSelectionJS.js
index 9c92ac163066d304aa23660ca36e038da72aa431..a175fc14dddd2f0540aab5ec2874d727ce33f6e5 100644
--- a/src/js/eventSelectionJS.js
+++ b/src/js/eventSelectionJS.js
@@ -537,20 +537,6 @@ globalThis.generateRandomEventPoolStandard = function(eventSlave) {
 					}
 				}
 
-				if (V.PC.dick > 0) {
-					if (V.PC.belly < 5000) {
-						if (eventSlave.assignment === Job.HOUSE) {
-							if (eventSlave.attrXY <= 35 || eventSlave.behavioralFlaw === "hates men" || eventSlave.sexualFlaw === "repressed") {
-								if (eventSlave.devotion >= -20) {
-									if (eventSlave.trust > 20) {
-										V.RESSevent.push("frightening dick");
-									}
-								}
-							}
-						}
-					}
-				}
-
 				if (V.spa > 0) {
 					if (eventSlave.boobs > 2000) {
 						if (eventSlave.devotion > 20) {
@@ -655,26 +641,6 @@ globalThis.generateRandomEventPoolStandard = function(eventSlave) {
 					}
 				}
 
-				if (eventSlave.health.condition > 90) {
-					if (eventSlave.muscles > 5) {
-						if (eventSlave.weight <= 30) {
-							if (eventSlave.weight >= -30) {
-								if (eventSlave.trust > 50) {
-									if (eventSlave.devotion > 50) {
-										V.RESSevent.push("passing declaration");
-									}
-								}
-							}
-						}
-					}
-				}
-
-				if (eventSlave.trust < -50) {
-					if (eventSlave.devotion <= 50) {
-						V.RESSevent.push("im scared");
-					}
-				}
-
 				if (eventSlave.fetish === "sadist") {
 					if (eventSlave.fetishStrength > 20) {
 						if (App.Entity.facilities.arcade.established) {
@@ -748,20 +714,6 @@ globalThis.generateRandomEventPoolStandard = function(eventSlave) {
 				}
 			}
 
-			if (eventSlave.trust > 20) {
-				if (eventSlave.devotion > 20) {
-					if (eventSlave.energy > 40) {
-						if (eventSlave.belly < 300000) {
-							if (V.PC.belly < 5000 && V.PC.balls < 10) {
-								if (canSee(eventSlave)) {
-									V.RESSevent.push("comfortable seat");
-								}
-							}
-						}
-					}
-				}
-			}
-
 			if (eventSlave.devotion <= 20) {
 				if (eventSlave.trust <= -20) {
 					if (eventSlave.genes === "XY") {
@@ -1050,18 +1002,6 @@ globalThis.generateRandomEventPoolStandard = function(eventSlave) {
 				}
 			}
 
-			if (eventSlave.waist < -95) {
-				if (eventSlave.devotion > 20) {
-					if (eventSlave.trust >= -20) {
-						if (eventSlave.belly < 30000) {
-							if (eventSlave.weight <= 95) {
-								V.RESSevent.push("devoted waist");
-							}
-						}
-					}
-				}
-			}
-
 			if (eventSlave.skill.entertainment >= 100) {
 				if (eventSlave.trust > 50) {
 					if (eventSlave.assignment === Job.PUBLIC) {
@@ -1423,22 +1363,6 @@ globalThis.generateRandomEventPoolStandard = function(eventSlave) {
 			}
 		}
 
-		if (eventSlave.boobs < 500) {
-			if (eventSlave.butt < 3) {
-				if (canDoAnal(eventSlave) || canDoVaginal(eventSlave)) {
-					if (eventSlave.devotion <= 50) {
-						if (eventSlave.devotion > 20 && eventSlave.trust >= -20) {
-							if (eventSlave.weight <= 10) {
-								if (eventSlave.muscles <= 30) {
-									V.RESSevent.push("obedient girlish");
-								}
-							}
-						}
-					}
-				}
-			}
-		}
-
 		if (eventSlave.boobs > 1200) {
 			if (eventSlave.areolaeShape !== "circle") {
 				if (eventSlave.devotion > 50) {
@@ -1928,18 +1852,6 @@ globalThis.generateRandomEventPoolServant = function(eventSlave) {
 					}
 				}
 
-				if (V.PC.dick > 0) {
-					if (V.PC.belly < 5000) {
-						if (eventSlave.attrXY <= 35 || eventSlave.behavioralFlaw === "hates men" || eventSlave.sexualFlaw === "repressed") {
-							if (eventSlave.devotion >= -20) {
-								if (eventSlave.trust > 20) {
-									V.RESSevent.push("frightening dick");
-								}
-							}
-						}
-					}
-				}
-
 				if (V.spa > 0) {
 					if (eventSlave.boobs > 2000) {
 						if (eventSlave.devotion > 20) {
@@ -2006,20 +1918,6 @@ globalThis.generateRandomEventPoolServant = function(eventSlave) {
 					}
 				}
 
-				if (eventSlave.health.condition > 90) {
-					if (eventSlave.muscles > 5) {
-						if (eventSlave.weight <= 30) {
-							if (eventSlave.weight >= -30) {
-								if (eventSlave.trust > 50) {
-									if (eventSlave.devotion > 50) {
-										V.RESSevent.push("passing declaration");
-									}
-								}
-							}
-						}
-					}
-				}
-
 				if (eventSlave.fetish === "sadist") {
 					if (eventSlave.fetishStrength > 20) {
 						if (App.Entity.facilities.arcade.established) {
@@ -2059,20 +1957,6 @@ globalThis.generateRandomEventPoolServant = function(eventSlave) {
 				}
 			}
 
-			if (eventSlave.trust > 20) {
-				if (eventSlave.devotion > 20) {
-					if (eventSlave.energy > 40) {
-						if (eventSlave.belly < 300000) {
-							if (V.PC.belly < 5000 && V.PC.balls < 10) {
-								if (canSee(eventSlave)) {
-									V.RESSevent.push("comfortable seat");
-								}
-							}
-						}
-					}
-				}
-			}
-
 			if (V.seeAge === 1) {
 				if (eventSlave.actualAge < 18) {
 					if (eventSlave.devotion > 20) {
@@ -2279,18 +2163,6 @@ globalThis.generateRandomEventPoolServant = function(eventSlave) {
 				}
 			}
 
-			if (eventSlave.waist < -95) {
-				if (eventSlave.devotion > 20) {
-					if (eventSlave.trust >= -20) {
-						if (eventSlave.belly < 30000) {
-							if (eventSlave.weight <= 95) {
-								V.RESSevent.push("devoted waist");
-							}
-						}
-					}
-				}
-			}
-
 			if (eventSlave.dick > 0) {
 				if (eventSlave.balls === 0) {
 					if (eventSlave.genes === "XY") {
diff --git a/src/js/slaveExpenses.js b/src/js/slaveExpenses.js
new file mode 100644
index 0000000000000000000000000000000000000000..9327b167f0a27bd01feb87deb0025fc4658a47f3
--- /dev/null
+++ b/src/js/slaveExpenses.js
@@ -0,0 +1,231 @@
+/**
+ * Returns a block that describes an overview of the slave's impact on your reputation and finances in the short term
+ * @param {App.Entity.SlaveState} slave
+ * @returns {node}
+ */
+globalThis.slaveExpenses = function(slave) {
+	const frag = new DocumentFragment();
+	let div;
+
+	// Generate the lines of the report
+	for (const line of getSlaveCostArray(slave)) {
+		div = document.createElement("div");
+		div.classList.add("indent");
+		App.UI.DOM.appendNewElement("span", div, `${line.text}: `);
+		App.UI.DOM.appendNewElement("span", div, cashFormat(line.value), "cash");
+		frag.append(div);
+	}
+
+	// Total expenses
+	const individualCosts = getSlaveCost(slave);
+	div = document.createElement("div");
+	div.classList.add("double-indent");
+
+	App.UI.DOM.appendNewElement("span", div, "Predicted expense", "underline");
+	div.append(": ");
+	div.append(App.UI.DOM.cashFormat(-individualCosts));
+	frag.append(div);
+
+	// Income from last week vs expense gives net, assistant gated
+	if (V.assistant.power > 0) {
+		if (slave.lastWeeksCashIncome > 0) {
+			div = document.createElement("div");
+			div.classList.add("indent");
+			App.UI.DOM.appendNewElement("span", div, `Income: `);
+			div.append(App.UI.DOM.cashFormat(slave.lastWeeksCashIncome));
+			frag.append(div);
+
+			div = document.createElement("div");
+			div.classList.add("double-indent");
+			App.UI.DOM.appendNewElement("span", div, `Total`, "underline");
+			App.UI.DOM.appendNewElement("span", div, `: `);
+			div.append(App.UI.DOM.cashFormat(slave.lastWeeksCashIncome - individualCosts));
+			frag.append(div);
+		}
+	}
+	frag.append(slaveImpactLongTerm(slave));
+
+	return frag;
+};
+
+/**
+ * Returns a block that describes an overview of the slave's impact on your reputation and finances over the long term
+ * @param {App.Entity.SlaveState} slave
+ * @returns {node}
+ */
+globalThis.slaveImpactLongTerm = function(slave) {
+	const frag = new DocumentFragment();
+	const {he, his, him} = getPronouns(slave);
+	let p;
+	let div;
+	let span;
+	let _Cost;
+	let _Expense;
+	let _Income;
+	let text;
+
+	// Background and original cost
+	if (slave.origin !== 0) {
+		App.UI.DOM.appendNewElement("div", frag, pronounsForSlaveProp(slave, slave.origin), "indent");
+	}
+	div = document.createElement("div");
+	div.classList.add("indent");
+	if (slave.slaveCost < 0) {
+		div.append(`You bought ${him} for: `);
+		div.append(App.UI.DOM.cashFormat(slave.slaveCost));
+		div.append(`.`);
+		_Cost = slave.slaveCost;
+	} else if (slave.slaveCost === 0) {
+		div.append(`You spent nothing to acquire ${him}.`);
+		_Cost = slave.slaveCost;
+	} else {
+		text = `You have no record of how much `;
+		if (slave.origin !== 0) {
+			text += `this`;
+		} else {
+			text += `${he} originally`;
+		}
+		text += ` cost.`;
+		div.append(text);
+		_Cost = 0;
+	}
+	frag.append(div);
+
+	// Lifetime totals, assistant gated
+	if (V.assistant.power > 0) {
+		const _weeksOwned = V.week - slave.weekAcquired;
+		// Lifetime expense
+		div = document.createElement("div");
+		div.classList.add("indent");
+		if (slave.lifetimeCashExpenses < 0) {
+			text = `In ${his} `;
+			if (_weeksOwned > 0) {
+				text += `${_weeksOwned} `;
+				if (_weeksOwned === 1) {
+					text += `week`;
+				} else {
+					text += `weeks`;
+				}
+			} else {
+				text += `time`;
+			}
+			text += ` with you, ${he} has cost `;
+			div.append(text);
+			div.append(App.UI.DOM.cashFormat(slave.lifetimeCashExpenses));
+			div.append(`.`);
+			_Expense = slave.lifetimeCashExpenses;
+		} else {
+			div.append(`You have no record of ${him} costing you any ¤.`);
+			_Expense = 0;
+		}
+		frag.append(div);
+
+		// Lifetime income
+		div = document.createElement("div");
+		div.classList.add("indent");
+		if (slave.lifetimeCashIncome > 0) {
+			text = `In ${his} `;
+			if (_weeksOwned > 0) {
+				text += `${_weeksOwned} `;
+				if (_weeksOwned === 1) {
+					text += `week`;
+				} else {
+					text += `weeks`;
+				}
+			} else {
+				text += `time`;
+			}
+			text += ` with you, ${he} has earned `;
+			div.append(text);
+			div.append(App.UI.DOM.cashFormat(slave.lifetimeCashIncome));
+			div.append(`.`);
+			_Income = slave.lifetimeCashIncome;
+		} else {
+			div.append(`You have no record of ${him} making you any ¤.`);
+			_Income = 0;
+		}
+		frag.append(div);
+
+		// Lifetime total
+		div = document.createElement("div");
+		div.classList.add("indent");
+		div.append(`Overall, `);
+		if ((_Income + _Cost + _Expense) > 0) {
+			div.append(`you have made `);
+			div.append(App.UI.DOM.cashFormat(_Income + _Cost + _Expense));
+			div.append(` net from ${his} labors.`);
+		} else if ((_Income + _Cost + _Expense) === 0) {
+			div.append(`${he} is even in cost and income.`);
+		} else {
+			div.append(`${he} has cost you `);
+			div.append(App.UI.DOM.cashFormat(_Income + _Cost + _Expense));
+			div.append(`.`);
+		}
+		frag.append(div);
+
+		// Reputation:
+		p = document.createElement("p");
+		if (slave.lifetimeRepIncome !== 0 || slave.lifetimeRepExpenses !== 0) {
+			let _repTotal = (slave.lifetimeRepIncome + slave.lifetimeRepExpenses);
+			if (V.cheatMode === 1 || V.debugMode === 1) {
+				if (slave.lifetimeRepIncome !== 0) {
+					div = document.createElement("div");
+					div.classList.add("indent");
+					div.append(`This week ${he} has `);
+					if (slave.lastWeeksRepIncome === 0) {
+						div.append(`had no positive effect on your reputation, but `);
+					} else {
+						div.append(`improved your reputation by `);
+						App.UI.DOM.appendNewElement("span", div, num(slave.lastWeeksRepIncome), "green");
+						div.append(` and `);
+					}
+					div.append(`over ${his} entire time with you, ${he} gained `);
+					App.UI.DOM.appendNewElement("span", div, `${num(slave.lifetimeRepIncome)}.`, "green");
+					p.append(div);
+				}
+
+				if (slave.lifetimeRepExpenses !== 0) {
+					div = document.createElement("div");
+					div.classList.add("indent");
+					div.append(`This week ${he} has `);
+					if (slave.lastWeeksRepExpenses === 0) {
+						div.append(`had no negative effect on your reputation, but `);
+					} else {
+						div.append(`lowered your reputation by `);
+						App.UI.DOM.appendNewElement("span", div, slave.lastWeeksRepExpenses, "red");
+						div.append(` and `);
+					}
+					div.append(`over ${his} entire time with you, ${he} cost `);
+					App.UI.DOM.appendNewElement("span", div, `${slave.lifetimeRepExpenses}.`, "red");
+					p.append(div);
+				}
+
+				div = document.createElement("div");
+				div.classList.add("indent");
+				div.append(`Overall then, ${he} has changed your reputation by `);
+				span = document.createElement("span");
+				if (_repTotal > 0) {
+					span.classList.add("green");
+				} else if (_repTotal < 0) {
+					span.classList.add("red");
+				}
+				span.append(num(_repTotal));
+				div.append(span);
+				p.append(div);
+			} else {
+				/* lowercasedonkey: TODO: I don't like how vague my placeholder is. Probably need to set up some kind of sliding scale to describe how much rep (roughly) she has made or lost. Need to get a sense of common ranges. */
+				text = `Overall, ${he} has `;
+				if (_repTotal === 0) {
+					text += `had no impact on your reputation.`;
+				} else if (_repTotal > 0) {
+					text += `<span class="green">increased</span> your reputation.`;
+				} else if (_repTotal < 0) {
+					text += `<span class="red">decreased</span> your reputation.`;
+				}
+				App.UI.DOM.appendNewElement("div", p, text, "indent");
+			}
+		}
+		frag.append(p);
+	}
+	return frag;
+};
diff --git a/src/js/utilsDOM.js b/src/js/utilsDOM.js
index 27531125aa81bb12b0711a878886f59807ec5109..efd222f544541de35cd3d3df43b596a2aab60db1 100644
--- a/src/js/utilsDOM.js
+++ b/src/js/utilsDOM.js
@@ -382,3 +382,14 @@ Macro.add("includeDOM", {
 		}
 	}
 });
+
+App.UI.DOM.cashFormat = function(s) {
+	const span = document.createElement("span");
+	if (s < 0) { // Display red if the value is negative, unless invert is true
+		span.classList.add("red");
+	} else if (s !== 0) { // Yellow for positive
+		span.classList.add("cash");
+	}
+	span.textContent = cashFormat(Math.trunc(s));
+	return span;
+};
diff --git a/src/npc/descriptions/boobs/boobs.js b/src/npc/descriptions/boobs/boobs.js
index 52cadbad17c74ee1db402ee08a7a3299efb9b9f1..97c279fe42747ba27ccc520db5c3557fcb25b448 100644
--- a/src/npc/descriptions/boobs/boobs.js
+++ b/src/npc/descriptions/boobs/boobs.js
@@ -1315,7 +1315,7 @@ App.Desc.boobs = function() {
 	 * @returns {string}
 	 */
 	function detailedInspection(slave) {
-		const {he, his, him, He, His, girl} = getPronouns(slave);
+		const {he, his, him, He, His, himself} = getPronouns(slave);
 		function musclesTone(slave) {
 			return slave.muscles > 95 ? 'shredded' : slave.muscles > 30 ? 'rippling' : 'toned';
 		}
@@ -1324,12 +1324,22 @@ App.Desc.boobs = function() {
 			if (!hasAnyLegs(slave)) {
 				return `${he} might not be able to walk, if ${he} still had legs.`;
 			} else if (slave.muscles >= 5) {
-				return `${his} ${musclesTone(slave)} back muscles get a workout just from supporting them. If they grow any larger, ${he} may not be able to walk.`;
+				return `${his} ${musclesTone(slave)} back muscles get a workout just from supporting them. If they grow any larger, ${he} may not be able to stand, let alone walk.`;
 			} else {
 				return `${he} can barely stand. If they grow any larger, ${he} may not be able to walk.`;
 			}
 		}
 
+		function movingAbility(slave) {
+			if (!hasAnyLegs(slave)) {
+				return `${he} might not be able to move at all, if ${he} still had legs.`;
+			} else if (slave.muscles >= 5) {
+				return `${his} ${musclesTone(slave)} muscles get a workout just from living with them. If they grow any larger, ${he} may not be able to move at all.`;
+			} else {
+				return `${he} can barely move ${himself}. If they grow any larger, ${he} may become completely immobilized.`;
+			}
+		}
+
 		let r = `${His} `;
 		if (slave.boobs < 300) {
 			r += `${App.Desc.boobBits.adjective(slave.boobs)} breasts are practically non-existent.`;
@@ -1362,6 +1372,14 @@ App.Desc.boobs = function() {
 				r += 'They';
 			}
 			r += ` are so large that ${walkingAbility(slave)}`;
+		} else if (slave.boobs < 25000 + (slave.muscles * 20) && slave.physicalAge <= 3) {
+			r += `${App.Desc.boobBits.noun(slave.boobs, false)} have ${slave.boobsImplant / slave.boobs >= .50 ? 'been altered' : 'grown'} past any pretense of proportion. `;
+			if (V.showBoobCCs) {
+				r += `At ${num(slave.boobs)} CCs each, they`;
+			} else {
+				r += 'They';
+			}
+			r += ` are so large that ${movingAbility(slave)}`;
 		} else if (slave.boobs < 25000 + (slave.muscles * 100) && slave.physicalAge < 18 && slave.physicalAge >= 13) {
 			r += `${App.Desc.boobBits.noun(slave.boobs, false)} have ${slave.boobsImplant / slave.boobs >= .50 ? 'been altered' : 'grown'} past any pretense of proportion. `;
 			if (V.showBoobCCs) {
@@ -1465,6 +1483,28 @@ App.Desc.boobsExtra = function(slave, {market, eventDescription} = {}) {
 		return r;
 	}
 
+	/**
+	 * @param {slaveTestCallback} dairyTest
+	 * @returns {string}
+	 */
+	function movingRestrictions(dairyTest) {
+		let r = '';
+		if (slave.muscles > 95) {
+			r += `However, ${he} is so powerfully built that ${he} can crawl with them using ${his} intense musculature.`;
+		} else if (slave.muscles > 50) {
+			r += `However, ${he} is so buff ${he} can manage to crawl with them, using ${his} strong muscles to carry their weight.`;
+		} else if (slave.muscles > 30) {
+			r += `${He} can barely manage to lift them off the ground, but ${his} toned body allows ${him} to retain some semblance of mobility.`;
+		} else if (slave.muscles > 5) {
+			r += `${He} requires assistance to lift them, and has little choice but to drag them along the ground should ${he} want to move someplace.`;
+		} else if ((slave.assignment === App.Data.Facilities.dairy.jobs.cow.assignment) && (V.dairyRestraintsSetting > 1) && (dairyTest(slave))) {
+			r += `The straps that secure ${him} to the milking machine have become less necessary since ${his} breasts grew to the point where they pin ${him} to it.`;
+		} else {
+			r += `${He} requires assistance to lift them and can barely manage to drag them along the ground.`;
+		}
+		return r;
+	}
+
 	/**
 	 * @param {number} sizeLimit
 	 * @param {number} bodySize
@@ -1479,7 +1519,7 @@ App.Desc.boobsExtra = function(slave, {market, eventDescription} = {}) {
 				res.push(`The difficulties of having gigantic breasts are much reduced for a Fuckdoll, since ${he}'s almost always restrained, stationary, or both.`);
 			} else {
 				if (canWalk(slave)) {
-					res.push(`${His} breasts are so heavy that it is difficult for ${him} to move.`);
+					res.push(`${His} breasts are so heavy that it is difficult for ${him} to walk.`);
 					res.push(walkingRestrictions(dairyTest));
 				} else if (slave.boobs >= dwarfSize) {
 					res.push(`They each dwarf ${him}, making ${him} mostly boob.`);
@@ -1488,6 +1528,10 @@ App.Desc.boobsExtra = function(slave, {market, eventDescription} = {}) {
 				} else {
 					res.push(`Together they are nearly the same size as ${his} torso, making ${him} about half boob.`);
 				}
+				if (canMove(slave) && !canWalk(slave)) {
+					res.push(`${His} breasts are so heavy that it is difficult for ${him} to move at all.`);
+					res.push(movingRestrictions(dairyTest));
+				}
 				if (slave.boobs >= 25000) {
 					if ((slave.assignment !== App.Data.Facilities.dairy.jobs.cow.assignment) || (V.dairyRestraintsSetting < 2)) {
 						res.push(penthouseAccessibility());
diff --git a/src/npc/descriptions/crotch/dick.js b/src/npc/descriptions/crotch/dick.js
index 496b1af1bfc1cde9de2d8a4598b4b18a87d5fa38..0fa49789ea631021f94a9a63100a58b483dc1de5 100644
--- a/src/npc/descriptions/crotch/dick.js
+++ b/src/npc/descriptions/crotch/dick.js
@@ -1048,6 +1048,17 @@ App.Desc.dick = function(slave, {market, eventDescription} = {}) {
 							} else {
 								r.push(`${He} cannot get to ${his} feet unaided, and prefers to remain seated so ${his} enormous balls don't weigh ${him} down as much.`);
 							}
+						} else if (canMove(slave)) {
+							r.push(`${His} balls are so massive that it is difficult for ${him} to move at all.`);
+							if (slave.muscles > 95) {
+								r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, dragging ${his} testicles along behind ${him}.`);
+							} else if (slave.muscles > 30) {
+								r.push(`${He} can barely manage to lift ${his} testicles, and finds it exhausting to drag them everywhere.`);
+							} else if (slave.muscles > 5) {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and tries avoid moving them whenever ${he} can.`);
+							} else {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and can barely manage to drag them along behind ${him}.`);
+							}
 						} else if (slave.balls >= 100) {
 							r.push(`${His} testicles each dwarf ${him}, making ${him} almost entirely testicle.`);
 						} else {
@@ -1084,6 +1095,17 @@ App.Desc.dick = function(slave, {market, eventDescription} = {}) {
 							} else {
 								r.push(`${He} cannot get to ${his} feet unaided, and prefers to remain seated so ${his} enormous balls don't weigh ${him} down as much.`);
 							}
+						} else if (canMove(slave)) {
+							r.push(`${His} balls are so massive that it is difficult for ${him} to move at all.`);
+							if (slave.muscles > 95) {
+								r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, dragging ${his} testicles along behind ${him}.`);
+							} else if (slave.muscles > 30) {
+								r.push(`${He} can barely manage to lift ${his} testicles, and finds it exhausting to drag them everywhere.`);
+							} else if (slave.muscles > 5) {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and tries avoid moving them whenever ${he} can.`);
+							} else {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and can barely manage to drag them along behind ${him}.`);
+							}
 						} else if (slave.balls >= 100) {
 							r.push(`${His} testicles are each nearly the same size as ${him}, making ${him} mostly testicle.`);
 						} else {
@@ -1120,6 +1142,17 @@ App.Desc.dick = function(slave, {market, eventDescription} = {}) {
 							} else {
 								r.push(`${He} cannot get to ${his} feet unaided, and prefers to remain seated so ${his} enormous balls don't weigh ${him} down as much.`);
 							}
+						} else if (canMove(slave)) {
+							r.push(`${His} balls are so massive that it is difficult for ${him} to move at all.`);
+							if (slave.muscles > 95) {
+								r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, dragging ${his} testicles along behind ${him}.`);
+							} else if (slave.muscles > 30) {
+								r.push(`${He} can barely manage to lift ${his} testicles, and finds it exhausting to drag them everywhere.`);
+							} else if (slave.muscles > 5) {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and tries avoid moving them whenever ${he} can.`);
+							} else {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and can barely manage to drag them along behind ${him}.`);
+							}
 						} else if (slave.balls >= 100) {
 							r.push(`Together, ${his} testicles are nearly the same size as ${him}, making ${him} about half testicle.`);
 						} else {
@@ -1431,6 +1464,17 @@ App.Desc.dick = function(slave, {market, eventDescription} = {}) {
 							} else {
 								r.push(`${He} cannot get to ${his} feet unaided, and prefers to remain seated so ${his} enormous balls don't weigh ${him} down as much.`);
 							}
+						} else if (canMove(slave)) {
+							r.push(`${His} balls are so massive that it is difficult for ${him} to move at all.`);
+							if (slave.muscles > 95) {
+								r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, dragging ${his} testicles along behind ${him}.`);
+							} else if (slave.muscles > 30) {
+								r.push(`${He} can barely manage to lift ${his} testicles, and finds it exhausting to drag them everywhere.`);
+							} else if (slave.muscles > 5) {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and tries avoid moving them whenever ${he} can.`);
+							} else {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and can barely manage to drag them along behind ${him}.`);
+							}
 						} else if (slave.balls >= 100) {
 							r.push(`${His} testicles each dwarf ${him}, making ${him} almost entirely testicle.`);
 						} else {
@@ -1467,6 +1511,17 @@ App.Desc.dick = function(slave, {market, eventDescription} = {}) {
 							} else {
 								r.push(`${He} cannot get to ${his} feet unaided, and prefers to remain seated so ${his} enormous balls don't weigh ${him} down as much.`);
 							}
+						} else if (canMove(slave)) {
+							r.push(`${His} balls are so massive that it is difficult for ${him} to move at all.`);
+							if (slave.muscles > 95) {
+								r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, dragging ${his} testicles along behind ${him}.`);
+							} else if (slave.muscles > 30) {
+								r.push(`${He} can barely manage to lift ${his} testicles, and finds it exhausting to drag them everywhere.`);
+							} else if (slave.muscles > 5) {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and tries avoid moving them whenever ${he} can.`);
+							} else {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and can barely manage to drag them along behind ${him}.`);
+							}
 						} else if (slave.balls >= 100) {
 							r.push(`${His} testicles are each nearly the same size as ${him}, making ${him} about mostly testicle.`);
 						} else {
@@ -1503,6 +1558,17 @@ App.Desc.dick = function(slave, {market, eventDescription} = {}) {
 							} else {
 								r.push(`${He} cannot get to ${his} feet unaided, and prefers to remain seated so ${his} enormous balls don't weigh ${him} down as much.`);
 							}
+						} else if (canMove(slave)) {
+							r.push(`${His} balls are so massive that it is difficult for ${him} to move at all.`);
+							if (slave.muscles > 95) {
+								r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, dragging ${his} testicles along behind ${him}.`);
+							} else if (slave.muscles > 30) {
+								r.push(`${He} can barely manage to lift ${his} testicles, and finds it exhausting to drag them everywhere.`);
+							} else if (slave.muscles > 5) {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and tries avoid moving them whenever ${he} can.`);
+							} else {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and can barely manage to drag them along behind ${him}.`);
+							}
 						} else if (slave.balls >= 100) {
 							r.push(`Together, ${his} testicles are nearly the same size as ${him}, making ${him} about half testicle.`);
 						} else {
@@ -1861,6 +1927,17 @@ App.Desc.dick = function(slave, {market, eventDescription} = {}) {
 							} else {
 								r.push(`${He} cannot get to ${his} feet unaided, and prefers to remain seated so ${his} enormous balls don't weigh ${him} down as much.`);
 							}
+						} else if (canMove(slave)) {
+							r.push(`${His} balls are so massive that it is difficult for ${him} to move at all.`);
+							if (slave.muscles > 95) {
+								r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, dragging ${his} testicles along behind ${him}.`);
+							} else if (slave.muscles > 30) {
+								r.push(`${He} can barely manage to lift ${his} testicles, and finds it exhausting to drag them everywhere.`);
+							} else if (slave.muscles > 5) {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and tries avoid moving them whenever ${he} can.`);
+							} else {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and can barely manage to drag them along behind ${him}.`);
+							}
 						} else if (slave.balls >= 100) {
 							r.push(`${His} testicles each dwarf ${him}, making ${him} almost entirely testicle.`);
 						} else {
@@ -1897,6 +1974,17 @@ App.Desc.dick = function(slave, {market, eventDescription} = {}) {
 							} else {
 								r.push(`${He} cannot get to ${his} feet unaided, and prefers to remain seated so ${his} enormous balls don't weigh ${him} down as much.`);
 							}
+						} else if (canMove(slave)) {
+							r.push(`${His} balls are so massive that it is difficult for ${him} to move at all.`);
+							if (slave.muscles > 95) {
+								r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, dragging ${his} testicles along behind ${him}.`);
+							} else if (slave.muscles > 30) {
+								r.push(`${He} can barely manage to lift ${his} testicles, and finds it exhausting to drag them everywhere.`);
+							} else if (slave.muscles > 5) {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and tries avoid moving them whenever ${he} can.`);
+							} else {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and can barely manage to drag them along behind ${him}.`);
+							}
 						} else if (slave.balls >= 100) {
 							r.push(`${His} testicles are each nearly the same size as ${him}, making ${him} about mostly testicle.`);
 						} else {
@@ -1933,6 +2021,17 @@ App.Desc.dick = function(slave, {market, eventDescription} = {}) {
 							} else {
 								r.push(`${He} cannot get to ${his} feet unaided, and prefers to remain seated so ${his} enormous balls don't weigh ${him} down as much.`);
 							}
+						} else if (canMove(slave)) {
+							r.push(`${His} balls are so massive that it is difficult for ${him} to move at all.`);
+							if (slave.muscles > 95) {
+								r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, dragging ${his} testicles along behind ${him}.`);
+							} else if (slave.muscles > 30) {
+								r.push(`${He} can barely manage to lift ${his} testicles, and finds it exhausting to drag them everywhere.`);
+							} else if (slave.muscles > 5) {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and tries avoid moving them whenever ${he} can.`);
+							} else {
+								r.push(`${He} requires assistance to get ${his} testicles off the ground, and can barely manage to drag them along behind ${him}.`);
+							}
 						} else if (slave.balls >= 100) {
 							r.push(`Together, ${his} testicles are nearly the same size as ${him}, making ${him} about half testicle.`);
 						} else {
diff --git a/src/npc/interaction/fSlaveFeed.tw b/src/npc/interaction/fSlaveFeed.tw
index a91527177c410e4195e867e669f2ece6366613a6..e7d6fe2cc5a86b40a31abd995d9e7e68220a77b5 100644
--- a/src/npc/interaction/fSlaveFeed.tw
+++ b/src/npc/interaction/fSlaveFeed.tw
@@ -22,6 +22,12 @@
 
 <<if getSlave($AS).inflationType == "milk">>
 <<set getSlave($AS).milkSource = $milkTap.ID>>
+<<if $milkTap.behavioralQuirk == "sinful" || $milkTap.sexualQuirk == "perverted" || $milkTap.fetish == "incest">> /* incest is a planned fetish, don't touch it! */
+	<<set _incestGive = 1>>
+<</if>>
+<<if getSlave($AS).behavioralQuirk == "sinful" || getSlave($AS).sexualQuirk == "perverted" || getSlave($AS).fetish == "incest">>
+	<<set _incestTake = 1>>
+<</if>>
 
 The first necessary step is to prepare the milk cow and _his2 udders.
 
@@ -52,19 +58,107 @@ The first necessary step is to prepare the milk cow and _his2 udders.
 	This is very easy, since $milkTap.slaveName loves _his2 tits played with and can't wait to get suckled. <<if $milkTap.lactation > 1>>_he2 is practically gushing milk with excitement<<else>>It takes next to no effort to get _his2 milk flowing<</if>>.
 
 <<elseif getSlave($AS).mother == $milkTap.ID>>
-	This is easy enough, as $milkTap.slaveName fondly remembers nursing _his2 <<print relativeTerm($milkTap, getSlave($AS))>>. <<if $milkTap.lactation > 1>>$he is practically gushing milk with nostalgia<<else>>It takes minimal effort to get _his2 milk flowing<</if>>.
+	<<if _incestGive>>
+		This is easy enough, as $milkTap.slaveName fondly remembers nursing _his2 <<print relativeTerm($milkTap, getSlave($AS))>>.
+	<<else>>
+		This is fairly easy, as $milkTap.slaveName's body remembers nursing _his2 <<print relativeTerm($milkTap, getSlave($AS))>>, even if $he is resistant to the idea.
+	<</if>>
+	<<if $milkTap.lactation > 1>>
+		_He2 is practically gushing milk with nostalgia.
+	<<else>>
+		It takes minimal effort to get _his2 milk flowing.
+	<</if>>
 <<elseif getSlave($AS).father == $milkTap.ID>>
-	This is extremely tough, as $milkTap.slaveName is very uncomfortable breast feeding the $girl _he2 sired. <<if $milkTap.lactation > 1>>_His2 excessive milk production quickly leaves _him2 eager for release, however<<else>>It takes some coaxing and kneading to get _his2 milk flowing and _him2 eager for relief<</if>>.
+	<<if _incestGive>>
+		This is easy enough, as $milkTap.slaveName is aroused at the thought of breast feeding the $girl _he2 sired.
+		<<if $milkTap.lactation > 1>>
+			_He2 is practically gushing milk with excitement.
+		<<else>>
+			It takes minimal effort to get _his2 milk flowing.
+		<</if>>
+	<<else>>
+		This is extremely tough, as $milkTap.slaveName is very uncomfortable breast feeding the $girl _he2 sired.
+		<<if $milkTap.lactation > 1>>
+			_His2 excessive milk production quickly leaves _him2 eager for release, however.
+		<<else>>
+			It takes some coaxing and kneading to get _his2 milk flowing and _him2 eager for relief.
+		<</if>>
+	<</if>>
 <<elseif $milkTap.mother == getSlave($AS).ID>>
-	This is moderately tough, as $milkTap.slaveName finds it awkward to nurse _his2 own mother. <<if $milkTap.lactation > 1>>_His2 excessive milk production quickly leaves _him2 eager for release<<else>>It takes some coaxing and kneading to get _his2 milk flowing and _him2 eager for relief<</if>>.
+	<<if _incestGive>>
+		This is easy enough, as $milkTap.slaveName is aroused at the lewdity of breast feeding _his2 own mother.
+		<<if $milkTap.lactation > 1>>
+			_He2 is practically gushing milk with excitement.
+		<<else>>
+			It takes minimal effort to get _his2 milk flowing.
+		<</if>>
+	<<else>>
+		This is moderately tough, as $milkTap.slaveName finds it awkward to nurse _his2 own mother.
+		<<if $milkTap.lactation > 1>>
+			_His2 excessive milk production quickly leaves _him2 eager for release.
+		<<else>>
+			It takes some coaxing and kneading to get _his2 milk flowing and _him2 eager for relief.
+		<</if>>
+	<</if>>
 <<elseif $milkTap.father == getSlave($AS).ID>>
-	This is very tough, as $milkTap.slaveName finds it weird to let _his2 father suckle from _him2. <<if $milkTap.lactation > 1>>_His2 excessive milk production quickly leaves _him2 eager for release, however<<else>>It takes some coaxing and kneading to get _his2 milk flowing and _him2 eager for relief<</if>>.
+	<<if _incestGive>>
+		This is easy enough, as having _his2 father drink _his2 milk is a taboo $milkTap.slaveName can't wait to break.
+		<<if $milkTap.lactation > 1>>
+			_He2 is practically gushing milk with excitement.
+		<<else>>
+			It takes minimal effort to get _his2 milk flowing.
+		<</if>>
+	<<else>>
+		This is very tough, as $milkTap.slaveName finds it weird to let _his2 father suckle from _him2.
+		<<if $milkTap.lactation > 1>>
+			_His2 excessive milk production quickly leaves _him2 eager for release, however.
+		<<else>>
+			It takes some coaxing and kneading to get _his2 milk flowing and _him2 eager for relief.
+		<</if>>
+	<</if>>
 <<elseif areSisters(getSlave($AS), $milkTap) == 1>>
-	This is easy enough, as $milkTap.slaveName wants _his2 <<print relativeTerm(getSlave($AS), $milkTap)>> to try _his2 milk, but only if $he can taste $hers too. <<if $milkTap.lactation > 1>>$he is practically gushing milk with excitement<<else>>It takes minimal effort to get _his2 milk flowing<</if>>.
+	<<if _incestGive>>
+		This is easy enough, as having $milkTap.slaveName enjoys sexually experimenting with _his2 <<print relativeTerm(getSlave($AS), $milkTap)>>.
+	<<else>>
+		This is easy enough, as $milkTap.slaveName wants _his2 <<print relativeTerm(getSlave($AS), $milkTap)>> to try _his2 milk, but only if $he can taste $hers too.
+	<</if>>
+	<<if $milkTap.lactation > 1>>
+		_He2 is practically gushing milk with excitement.
+	<<else>>
+		It takes minimal effort to get _his2 milk flowing.
+	<</if>>
 <<elseif areSisters(getSlave($AS), $milkTap) == 2>>
-	This is moderately tough, as $milkTap.slaveName is uncomfortable getting so intimate with _his2 <<print relativeTerm($milkTap, getSlave($AS))>>. <<if $milkTap.lactation > 1>>_His2 excessive milk production quickly leaves _him2 eager for release<<else>>It takes some coaxing and kneading to get _his2 milk flowing and _him2 eager for relief<</if>>.
+	<<if _incestGive>>
+		This is easy enough, as having $milkTap.slaveName enjoys sexually experimenting with _his2 <<print relativeTerm(getSlave($AS), $milkTap)>>.
+		<<if $milkTap.lactation > 1>>
+			_He2 is practically gushing milk with excitement.
+		<<else>>
+			It takes minimal effort to get _his2 milk flowing.
+		<</if>>
+	<<else>>
+		This is moderately tough, as $milkTap.slaveName is uncomfortable getting so intimate with _his2 <<print relativeTerm($milkTap, getSlave($AS))>>.
+		<<if $milkTap.lactation > 1>>
+			_His2 excessive milk production quickly leaves _him2 eager for release.
+		<<else>>
+			It takes some coaxing and kneading to get _his2 milk flowing and _him2 eager for relief.
+		<</if>>
+	<</if>>
 <<elseif areSisters(getSlave($AS), $milkTap) == 3>>
-	This is slightly difficult, as $milkTap.slaveName is uncomfortable getting so intimate with _his2 <<print relativeTerm($milkTap, getSlave($AS))>>. <<if $milkTap.lactation > 1>>_His2 excessive milk production quickly leaves _him2 eager for release<<else>>It takes some coaxing and kneading to get _his2 milk flowing and _him2 eager for relief<</if>>.
+	<<if _incestGive>>
+		This is easy enough, as having $milkTap.slaveName enjoys sexually experimenting with _his2 <<print relativeTerm(getSlave($AS), $milkTap)>>.
+		<<if $milkTap.lactation > 1>>
+			_He2 is practically gushing milk with excitement.
+		<<else>>
+			It takes minimal effort to get _his2 milk flowing.
+		<</if>>
+	<<else>>
+		This is slightly difficult, as $milkTap.slaveName is uncomfortable getting so intimate with _his2 <<print relativeTerm($milkTap, getSlave($AS))>>.
+		<<if $milkTap.lactation > 1>>
+			_His2 excessive milk production quickly leaves _him2 eager for release.
+		<<else>>
+			It takes some coaxing and kneading to get _his2 milk flowing and _him2 eager for relief.
+		<</if>>
+	<</if>>
 
 <<elseif ($milkTap.lactation > 1) && ($milkTap.devotion >= -20)>>
 	Since $milkTap.slaveName produces so much milk, _he2 eagerly accepts any source of relief _he2 can manage.
@@ -116,17 +210,21 @@ Next, you see to <<= getSlave($AS).slaveName>>.
 <<elseif getSlave($AS).mother == $milkTap.ID>>
 	$He draws close to $his mother's nipples, trying to remember if $he once had a favorite.
 <<elseif getSlave($AS).father == $milkTap.ID>>
-	$He hesitatingly lowers $himself to $his father's nipple. <<if $milkTap.dick > 0 && canAchieveErection($milkTap)>> $he nearly backs away when $he feels the dick that sired $him poking at $his belly.<</if>>
+	<<if _incestTake>>
+		$He eagerly wraps $his lips around $his father's nipple.<<if canAchieveErection($milkTap)>> $He shudders with budding lust when $he feels the dick that sired $him poking at $his belly.<</if>>
+	<<else>>
+		$He hesitatingly lowers $himself to $his father's nipple.<<if canAchieveErection($milkTap)>> $He nearly backs away when $he feels the dick that sired $him poking at $his belly.<</if>>
+	<</if>>
 <<elseif $milkTap.mother == getSlave($AS).ID>>
-	$He awkwardly brings $his lips to $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s nipple.
+	$He <<if _incestTake>>happily<<else>>awkwardly<</if>> brings $his lips to $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s nipple.
 <<elseif $milkTap.father == getSlave($AS).ID>>
-	$He awkwardly brings $his lips to $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s nipple<<if getSlave($AS).dick > 0 && canAchieveErection(getSlave($AS))>>, $his cock steadily hardening at the perversion of suckling from $his child<</if>>.
+	$He <<if _incestTake>>eagerly<<else>>awkwardly<</if>> brings $his lips to $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s nipple<<if canAchieveErection(getSlave($AS))>>, $his cock steadily hardening at the perversion of suckling from $his child<</if>>.
 <<elseif areSisters(getSlave($AS), $milkTap) == 1>>
 	$He readily gets in position to <<if canTaste(getSlave($AS))>>taste<<else>>suckle from<</if>> $his <<print relativeTerm(getSlave($AS), $milkTap)>><<if getSlave($AS).lactation > 0>> while coaxing $his own milk to flow<</if>>.
 <<elseif areSisters(getSlave($AS), $milkTap) == 2>>
-	$He hesitatingly lowers $himself to $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s nipple.
+	$He <<if _incestTake>>eagerly wraps $his lips around<<else>>hesitatingly lowers $himself to<</if>> $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s nipple.
 <<elseif areSisters(getSlave($AS), $milkTap) == 3>>
-	$He hesitatingly lowers $himself to $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s nipple.
+	$He <<if _incestTake>>eagerly wraps $his lips around<<else>>hesitatingly lowers $himself to<</if>> $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s nipple.
 
 <<elseif (getSlave($AS).fetish == "boobs") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60) && (getSlave($AS).devotion >= -20)>>
 	$He can't wait to <<if hasBothArms(getSlave($AS))>>wrap $his hands around<<else>>get between<</if>> $milkTap.slaveName's massive milky breasts and eagerly approaches $his nipples to suckle.
@@ -176,7 +274,7 @@ Next, you see to <<= getSlave($AS).slaveName>>.
 <<elseif getSlave($AS).mother == $milkTap.ID>>
 	$milkTap.slaveName sighs contently as _his2 little $girl once again suckles from _his2 breasts. You enjoy the show, specifically the sight of <<= getSlave($AS).slaveName>>'s belly steadily growing larger until <<if getSlave($AS).inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and rubbing $his gurgling stomach<</if>><<elseif getSlave($AS).inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and teasing $his wobbling, gurgling stomach<</if>><<elseif getSlave($AS).inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif getSlave($AS).father == $milkTap.ID>>
-	$milkTap.slaveName moans lewdly as _his2 <<print relativeTerm($milkTap, getSlave($AS))>> suckles from _his2 breasts<<if $milkTap.dick > 0 && canAchieveErection($milkTap)>>, _his2 dick throbbing with lust<</if>>. You enjoy the show, specifically the sight of <<= getSlave($AS).slaveName>>'s belly steadily growing larger until <<if getSlave($AS).inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and rubbing $his gurgling stomach<</if>><<elseif getSlave($AS).inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and teasing $his wobbling, gurgling stomach<</if>><<elseif getSlave($AS).inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and teasing $his gurgling stomach<</if>><</if>><<if $milkTap.dick > 0 && canAchieveErection($milkTap)>><<if getSlave($AS).sexualQuirk == "perverted">>. The way $he is wiggling $his hips suggests $he isn't finished with $his daddy just yet, and $his father's moaning confirms $he is teasing _him2 with $his rear. $He giggles as the horny cow unloads on $his backside<<else>>. $He doesn't stay put for long, as a strong moan and a blast of cum across $his rear from the horny cow startles $him from $his rest<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _his2 <<print relativeTerm($milkTap, getSlave($AS))>> suckles from _his2 breasts<<if canAchieveErection($milkTap)>>, _his2 dick throbbing with lust<</if>>. You enjoy the show, specifically the sight of <<= getSlave($AS).slaveName>>'s belly steadily growing larger until <<if getSlave($AS).inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and rubbing $his gurgling stomach<</if>><<elseif getSlave($AS).inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and teasing $his wobbling, gurgling stomach<</if>><<elseif getSlave($AS).inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and teasing $his gurgling stomach<</if>><</if>><<if canAchieveErection($milkTap)>><<if _incestTake>>. The way $he is wiggling $his hips suggests $he isn't finished with $his daddy just yet, and $his father's moaning confirms $he is teasing _him2 with $his rear. $He giggles as the horny cow unloads on $his backside<<else>>. $He doesn't stay put for long, as a strong moan and a blast of cum across $his rear from the horny cow startles $him from $his rest<</if>><</if>>.
 <<elseif $milkTap.mother == getSlave($AS).ID>>
 	$milkTap.slaveName moans lewdly as _he2 enjoys some role reversal as _his2 mother suckles from _his2 breasts. You enjoy the show, specifically the sight of <<= getSlave($AS).slaveName>>'s belly steadily growing larger until <<if getSlave($AS).inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and rubbing $his gurgling stomach<</if>><<elseif getSlave($AS).inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and teasing $his wobbling, gurgling stomach<</if>><<elseif getSlave($AS).inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s nipple and settles into _his2 breasts for a short rest while hiccupping<<if hasAnyArms(getSlave($AS))>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif $milkTap.father == getSlave($AS).ID>>
@@ -347,7 +445,12 @@ Next, you see to <<= getSlave($AS).slaveName>>.
 
 <<else>> /* cum variant */
 <<set getSlave($AS).cumSource = $milkTap.ID>>
-
+<<if $milkTap.behavioralQuirk == "sinful" || $milkTap.sexualQuirk == "perverted" || $milkTap.fetish == "incest">> /* incest is a planned fetish, don't touch it! */
+	<<set _incestGive = 1>>
+<</if>>
+<<if getSlave($AS).behavioralQuirk == "sinful" || getSlave($AS).sexualQuirk == "perverted" || getSlave($AS).fetish == "incest">>
+	<<set _incestTake = 1>>
+<</if>>
 
 The first necessary step is to prepare the cum slave and $his cock and balls.
 
@@ -375,22 +478,50 @@ The first necessary step is to prepare the cum slave and $his cock and balls.
 	<</if>>
 
 <<elseif getSlave($AS).mother == $milkTap.ID>>
-	This is tough, as $milkTap.slaveName is very uncomfortable having _his2 dick sucked by _his2 <<print relativeTerm($milkTap, getSlave($AS))>>, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<<if _incestGive>>
+		This is easy enough, as $milkTap.slaveName savors the thought of having _his2 dick sucked by _his2 <<print relativeTerm($milkTap, getSlave($AS))>>.
+	<<else>>
+		This is tough, as $milkTap.slaveName is very uncomfortable having _his2 dick sucked by _his2 <<print relativeTerm($milkTap, getSlave($AS))>>, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<</if>>
 <<elseif getSlave($AS).father == $milkTap.ID>>
-	This is tough, as $milkTap.slaveName is rather uncomfortable having _his2 dick sucked by _his2 <<print relativeTerm($milkTap, getSlave($AS))>>, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<<if _incestGive>>
+		This is easy enough, as $milkTap.slaveName cherishes the sheer lewdity of having _his2 dick sucked by _his2 <<print relativeTerm($milkTap, getSlave($AS))>>.
+	<<else>>
+		This is tough, as $milkTap.slaveName is rather uncomfortable having _his2 dick sucked by _his2 <<print relativeTerm($milkTap, getSlave($AS))>>, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<</if>>
 <<elseif $milkTap.mother == getSlave($AS).ID>>
-	This is moderately tough, as $milkTap.slaveName is very uncomfortable having _his2 dick sucked by _his2 own mother, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<<if _incestGive>>
+		This is easy enough, as $milkTap.slaveName savors the thought of having _his2 dick sucked by _his2 own mother.
+	<<else>>
+		This is moderately tough, as $milkTap.slaveName is very uncomfortable having _his2 dick sucked by _his2 own mother, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<</if>>
 <<elseif $milkTap.father == getSlave($AS).ID>>
-	This is tough, as $milkTap.slaveName is very uncomfortable having _his2 dick sucked by _his2 own father, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<<if _incestGive>>
+		This is easy enough, as $milkTap.slaveName cherishes the sheer lewdity of having _his2 dick sucked by _his2 own father.
+	<<else>>
+		This is tough, as $milkTap.slaveName is very uncomfortable having _his2 dick sucked by _his2 own father, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<</if>>
 <<elseif areSisters(getSlave($AS), $milkTap) == 1>>
-	This is moderately tough, as $milkTap.slaveName is uncomfortable getting so intimate with _his2 <<print relativeTerm(getSlave($AS), $milkTap)>><<if $milkTap.energy >= 95>>, though as a nymphomaniac, the thought of someone who looks so much like _his2 is a major turn on<<else>> but _he2 can't really complain about getting _his2 overfilled nuts drained<</if>>.
+	<<if _incestGive>>
+		This is easy enough, as $milkTap.slaveName enjoys the notion of twincest quite a lot.
+	<<else>>
+		This is moderately tough, as $milkTap.slaveName is uncomfortable getting so intimate with _his2 <<print relativeTerm(getSlave($AS), $milkTap)>><<if $milkTap.energy >= 95>>, though as a nymphomaniac, the thought of someone who looks so much like _his2 is a major turn on<<else>> but _he2 can't really complain about getting _his2 overfilled nuts drained<</if>>.
+	<</if>>
 <<elseif areSisters(getSlave($AS), $milkTap) == 2>>
-	This is moderately tough, as $milkTap.slaveName is uncomfortable getting so intimate with _his2 <<print relativeTerm($milkTap, getSlave($AS))>>, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<<if _incestGive>>
+		This is easy enough, as $milkTap.slaveName is quite eager to get intimate with _his2 <<print relativeTerm($milkTap, getSlave($AS))>>.
+	<<else>>
+		This is moderately tough, as $milkTap.slaveName is uncomfortable getting so intimate with _his2 <<print relativeTerm($milkTap, getSlave($AS))>>, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<</if>>
 <<elseif areSisters(getSlave($AS), $milkTap) == 3>>
-	This is moderately tough, as $milkTap.slaveName is uncomfortable getting so intimate with _his2 <<print relativeTerm($milkTap, getSlave($AS))>>, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<<if _incestGive>>
+		This is easy enough, as $milkTap.slaveName is quite eager to get intimate with _his2 <<print relativeTerm($milkTap, getSlave($AS))>>.
+	<<else>>
+		This is moderately tough, as $milkTap.slaveName is uncomfortable getting so intimate with _his2 <<print relativeTerm($milkTap, getSlave($AS))>>, but _he2 can't really complain about getting _his2 overfilled nuts drained.
+	<</if>>
 
 <<elseif ($milkTap.fetish == "cumslut") && ($milkTap.fetishKnown == 1) && ($milkTap.fetishStrength > 60) && ($milkTap.devotion >= -20)>>
-	This is very easy, since $milkTap.slaveName loves blasting loads whenever _he2 can, and it is just a bonus to _his2 that _he2 gets a blowjob in the process.
+	This is very easy, since $milkTap.slaveName loves blasting loads whenever _he2 can, and it is just a bonus to _him2 that _he2 gets a blowjob in the process.
 
 <<elseif ($milkTap.energy > 95)>>
 	This is very easy, since $milkTap.slaveName is so sexually charged _he2 is practically overflowing at the thought of getting _his2 dick sucked.
@@ -457,19 +588,19 @@ Next, you see to <<= getSlave($AS).slaveName>>.
 	<</if>>
 
 <<elseif getSlave($AS).mother == $milkTap.ID>>
-	$He awkwardly brings $his lips to $his mother's cock.
+	$He <<if _incestTake>>eagerly wraps $his lips around<<else>>awkwardly brings $his lips to<</if>> $his mother's cock.
 <<elseif getSlave($AS).father == $milkTap.ID>>
-	$He <<if getSlave($AS).sexualQuirk == "perverted">>eagerly<<else>>awkwardly<</if>> brings $his lips to daddy's cock.
+	$He <<if _incestTake>>eagerly wraps $his lips around<<else>>awkwardly brings $his lips to<</if>> daddy's cock.
 <<elseif $milkTap.mother == getSlave($AS).ID>>
-	$He awkwardly brings $his lips to $his <<print relativeTerm(getSlave($AS), $milkTap)>><<print relativeTerm(getSlave($AS), $milkTap)>>'s cock.
+	$He <<if _incestTake>>eagerly wraps $his lips around<<else>>awkwardly brings $his lips to<</if>> $his <<print relativeTerm(getSlave($AS), $milkTap)>><<print relativeTerm(getSlave($AS), $milkTap)>>'s cock.
 <<elseif $milkTap.father == getSlave($AS).ID>>
-	$He awkwardly brings $his lips to $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s cock.
+	$He <<if _incestTake>>eagerly wraps $his lips around<<else>>awkwardly brings $his lips to<</if>> $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s cock.
 <<elseif areSisters(getSlave($AS), $milkTap) == 1>>
-	$He gets in position to suck $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s dick.
+	$He <<if _incestTake>>readily <</if>>gets in position to suck $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s dick.
 <<elseif areSisters(getSlave($AS), $milkTap) == 2>>
-	$He hesitatingly lowers $himself to $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s cock.
+	$He <<if _incestTake>>eagerly wraps $his lips around<<else>>hesitatingly lowers $himself to<</if>> $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s cock.
 <<elseif areSisters(getSlave($AS), $milkTap) == 3>>
-	$He hesitatingly lowers $himself to $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s cock.
+	$He <<if _incestTake>>eagerly wraps $his lips around<<else>>hesitatingly lowers $himself to<</if>> $his <<print relativeTerm(getSlave($AS), $milkTap)>>'s cock.
 
 <<elseif (getSlave($AS).fetish == "cumslut") && (getSlave($AS).fetishKnown == 1) && (getSlave($AS).fetishStrength > 60) && (getSlave($AS).devotion >= -20)>>
 	$He can't wait to wrap $his lips around $milkTap.slaveName's cock and balloon with cum, so $he eagerly approaches the waiting shaft.
diff --git a/src/npc/interaction/passage/fSlaveImpreg.tw b/src/npc/interaction/passage/fSlaveImpreg.tw
index 2e5015ba3a3ad1eaa041c0ec9d333f8e9b7fb068..ea74e085502754f4fbd5ca0f322f0070f8d88957 100644
--- a/src/npc/interaction/passage/fSlaveImpreg.tw
+++ b/src/npc/interaction/passage/fSlaveImpreg.tw
@@ -9,7 +9,7 @@
 
 <h3>Select an eligible slave to serve as the semen donatrix</h3>
 
-<<set _eligibles = $slaves.filter((s) => (s.ID != getSlave($AS).ID) && canImpreg(getSlave($AS), s))>>
+<<set _eligibles = $slaves.filter((s) => (s.ID != getSlave($AS).ID) && canImpreg(getSlave($AS), s) && canPenetrate(getSlave($AS), s))>>
 <<for _i = 0; _i < _eligibles.length; _i++>>
 	<<set _name = SlaveFullName(_eligibles[_i])>>
 	<div>
diff --git a/src/player/js/enslavePlayer.js b/src/player/js/enslavePlayer.js
index b995e6412f2e575f1ff9584ac3b3b8cd7020f024..752f46e5a9ebca016f2136b03c0b7927829e2a52 100644
--- a/src/player/js/enslavePlayer.js
+++ b/src/player/js/enslavePlayer.js
@@ -89,6 +89,7 @@ globalThis.convertPlayerToSlave = function(slave, badEnd = "boring") {
 	slave.currentRules = [];
 	slave.HGExclude = 0;
 	slave.choosesOwnChastity = 0;
+	slave.rules.mobility = "restrictive";
 	slave.pregControl = "none";
 	slave.readyProsthetics = [];
 	slave.death = "";
diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw
index 4ccce545607c43f0d34433a396aa71061ee9c387..399c764a95e788f0c718bea3e4b3b5fd59547660 100644
--- a/src/pregmod/widgets/pregmodBirthWidgets.tw
+++ b/src/pregmod/widgets/pregmodBirthWidgets.tw
@@ -1782,7 +1782,7 @@
 	<<if _S.Nurse>>
 		<<setLocalPronouns _S.Nurse 2>>
 	<</if>>
-	$slaves[$i].slaveName is in the perfect place to give birth when $his body begins to push out another of $his brood. <<if _S.Nurse != 0>>_S.Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child before taking them away. Before long _he2 returns to attend to _his2 patient's perpetual pregnancy.
+	$slaves[$i].slaveName is in the perfect place to give birth when $his body begins to push out another of $his brood. <<if _S.Nurse>>_S.Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child before taking them away. Before long _he2 returns to attend to _his2 patient's perpetual pregnancy.
 
 <<case "be confined in the cellblock">>
 	<<if $slaves[$i].fetish == "mindbroken">>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index b15495baf37df82f3242314bb5376d83f6fcb84f..6ce35653b7b0d37657a2ccb33357314147aef9e3 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -44,7 +44,7 @@
 <<set _clothesTemp = $activeSlave.clothes>>
 <<switch $RESSevent>>
 /*Some events start with the slave naked (any event that starts with the daily inspection, for example). Here we switch their clothing just for the image to load, then switch it back quickly so the player's choice is not messed up.*/
-<<case "age implant" "ara ara" "back stretch" "bad dream" "bed snuggle" "bondage gear" "bonded love" "breast expansion blues" "confident tanning" "devoted educated slave" "devoted exhibition" "devoted lotion" "desperate null" "devoted nympho" "devoted shortstack" "devoted waist" "extreme aphrodisiacs" "fearful balls" "fucktoy tribbing" "gaped asshole" "happy dance" "heavy piercing" "huge naturals" "huge tits" "hugely pregnant" "ignorant horny" "im scared" "implant inspection" "kitchen molestation" "language lesson" "mindbroken morning" "modest clothes" "mods please" "obedient girlish" "old PC age difference" "orchiectomy please" "PA flirting" "penitent" "permitted masturbation" "plimb help" "rebellious arrogant" "resistant gelding" "resistant shower" "resting amp" "restricted profession" "restricted smart" "sexy succubus" "shaped areolae" "shift masturbation" "shift sleep" "shower slip" "slave clit on slave" "slave dick huge" "slave dick on slave" "sleeping ambivalent" "sore shoulders" "spa boobs" "subjugation blues" "tendon fall" "terrified inspection" "tittymonster inspection" "torpedo squeeze" "transition anxiety" "trusting HG" "unhappy virgin" "used whore" "vocal disobedience" "young PC age difference">>
+<<case "age implant" "ara ara" "back stretch" "bad dream" "bed snuggle" "bondage gear" "bonded love" "breast expansion blues" "confident tanning" "devoted educated slave" "devoted exhibition" "devoted lotion" "desperate null" "devoted nympho" "devoted shortstack" "extreme aphrodisiacs" "fearful balls" "fucktoy tribbing" "gaped asshole" "happy dance" "heavy piercing" "huge naturals" "huge tits" "hugely pregnant" "ignorant horny" "implant inspection" "kitchen molestation" "language lesson" "mindbroken morning" "modest clothes" "mods please" "old PC age difference" "orchiectomy please" "PA flirting" "penitent" "permitted masturbation" "plimb help" "rebellious arrogant" "resistant gelding" "resistant shower" "resting amp" "restricted profession" "restricted smart" "sexy succubus" "shaped areolae" "shift masturbation" "shift sleep" "shower slip" "slave clit on slave" "slave dick huge" "slave dick on slave" "sleeping ambivalent" "sore shoulders" "spa boobs" "subjugation blues" "tendon fall" "terrified inspection" "tittymonster inspection" "torpedo squeeze" "transition anxiety" "trusting HG" "unhappy virgin" "used whore" "vocal disobedience" "young PC age difference">>
 	<<set $activeSlave.clothes = "no clothing">>
 <<case "whore rebellious">>
 	/* this scene states they are wearing "thick, durable latex with temperature regulation and anchor points for restraint" no matter what they are assigned to wear. */
@@ -2315,43 +2315,6 @@ $His responses to your routine questions are so mechanical and honest that you m
 <br><br>
 Lately, you've noticed that $he reacts to these <<if canSee($activeSlave)>>sights<<elseif canHear($activeSlave)>>sounds<<else>>thoughts<</if>> with a well-concealed flash of apprehension. It seems $he's figured out that $he will probably be required to take it up $his little <<if $seeRace == 1>>$activeSlave.race <</if>>butt someday, and isn't enthusiastic about the prospect. You could probably exploit this.
 
-<<case "devoted waist">>
-
-<<= App.UI.slaveDescriptionDialog($activeSlave)>> is a real work of surgical art. As $he showers, carefully soaping and then moisturizing every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of $his $activeSlave.skin skin, you notice the undeniable eroticism created by the unnatural narrowness of $his middle<<if $activeSlave.belly >= 5000>>, especially given how much $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> extends past $his sides<</if>>. Though $his hands are by no means large, when $he washes $his sides, $his hands span almost the entire circumference of $his waist. <<if $activeSlave.dick > 0>>Though $he's not sexually aroused, $his cock is visible as $he bathes $himself; $his member and $his narrow waist work together to create a real mélange of gender traits.<<elseif ($activeSlave.boobs > 800) && ($activeSlave.butt > 4)>>$His massive bust and hips work together to create a spectacular hourglass effect; $he's a fantasy $woman made flesh.<<else>>The narrowness of $his waist accentuates $his feminine features.<</if>>
-
-<<case "obedient girlish">>
-
-<<= App.UI.slaveDescriptionDialog($activeSlave)>> is nice and
-<<if $activeSlave.bellyPreg >= 1500>>
-	slim as $he can be given $his pregnancy,
-<<elseif $activeSlave.bellyImplant >= 1500>>
-	slim as $he can be given the implant rounding out $his middle,
-<<elseif $activeSlave.bellyFluid >= 1500>>
-	slim as $he can be given the amount of $activeSlave.inflationType distending $his middle,
-<<else>>
-	slim,
-<</if>>
-with a trim chest, narrow hips and not much of an ass to speak of. Despite the myriad ways a Free Cities slaveowner can give his property tits and asses, you've held off for now, keeping $him lithe.
-<<if hasAnyLegs($activeSlave)>>
-	$He comes before you for a routine nude inspection, obediently standing before your
-	<<if hasAnyArms($activeSlave)>>
-		desk with $his <<if hasBothArms($activeSlave)>>hands crossed<<else>>hand placed<</if>>
-		<<if $activeSlave.belly >= 30000>>
-			atop $his _belly
-		<<elseif $activeSlave.belly >= 1500>>
-			over $his rounded
-		<<else>>
-			over $his flat
-		<</if>>
-		stomach.
-	<<else>>
-		desk.
-	<</if>>
-<<else>>
-	Another slave strips $him and leaves $his naked torso on your desk for a routine inspection.
-<</if>>
-A perfectly devoted slave might display $himself, and a rebellious one might try to cover $himself: $he's neither. <<if $activeSlave.dick > 0>>Though $he's not sexually aroused, $his cock is visible and contributes greatly to $his androgyny.<<elseif $activeSlave.vagina == -1>>The smooth featureless skin between $his legs makes $him look like a doll, not a girl.<<else>>$His bare pussy completes the picture of simultaneous innocence and availability.<</if>>
-
 <<case "diet">>
 
 <<= App.UI.slaveDescriptionDialog($activeSlave)>> is on a diet, and $he needs it. That doesn't make it any easier for $him. Your slaves are not permitted time to waste over meals. They enter the simple kitchen, drink their allotted portion of slave food out of a cup, and get on with their duties.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>> Despite eating for <<if $activeSlave.pregType <= 1>>two<<elseif $activeSlave.pregType >= 10>>far too many<<else>><<= num($activeSlave.pregType + 1)>><</if>>, $his diet is still in full effect.<</if>> <<= capFirstChar($assistant.name)>> catches $activeSlave.slaveName, whose cup is always filled less than halfway, skulking around in the hope that one of the others will take $his eyes off $his cup, or even leave leftovers.
@@ -3449,31 +3412,6 @@ $He continues in $his <<if $activeSlave.voice == 1>>deep<<elseif $activeSlave.vo
 <</switch>>
 May I?" $He spins, <<if $activeSlave.belly >= 5000>>spreading $his legs for $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly while <</if>>bending at the waist<<if $activeSlave.butt > 6>> and prising $his monstrous buttocks apart<<elseif $activeSlave.butt > 3>> spreading $his healthy buttocks<</if>> to reveal $his gaping anus. It could indeed benefit from surgical repair.
 
-<<case "passing declaration">>
-
-As you manage your empire from your office, a constant traffic of slaves passes by its door. The glass walls allow a good view of them, and since you naturally own what you find appealing, the passing chattel often draws your eye. For example, this morning you notice <<= App.UI.slaveDescriptionDialog($activeSlave)>> almost bounce into view. $He's physically fit, at a healthy weight,
-<<if $activeSlave.belly >= 10000>>
-	<<if $activeSlave.bellyPreg >= 3000>>
-		heavily pregnant,
-	<<elseif $activeSlave.bellyImplant >= 3000>>
-		despite $his _belly fake belly,
-	<<else>>
-		completely full of $activeSlave.inflationType,
-	<</if>>
-<</if>>
-<<if $activeSlave.physicalAge > 35>>
-	and is getting such excellent modern medical care that despite $his age, $he has the energy of a teenager.
-<<elseif $activeSlave.physicalAge > 19>>
-	is full of youth and vigor, and is in truly perfect health due to the miracles of modern medicine.
-<<elseif $activeSlave.physicalAge > 12>>
-	and is a teenager, not to mention the perfect health $he owes to the miracles of modern medicine.
-<<else>>
-	and is a little $girl, not to mention the perfect health $he owes to the miracles of modern medicine.
-<</if>>
-<<if $activeSlave.energy > 95>>Apart from $his absurd sex drive<<elseif $activeSlave.energy > 40>>In addition to $his very healthy libido<<else>>Despite $his mediocre libido<</if>>, $he's overflowing with energy. $He half-runs, half-skips down the hallway, slowing in the doorway as $he feels your gaze. Without stopping, $he turns to meet your eyes, winks trustingly, and bursts out, "Hi <<Master>>! Love you!" Then $he continues on $his merry way.
-<br><br>
-Someone's a happy $desc today.
-
 <<case "ara ara">>
 
 Passing by the kitchen in the morning, you take a moment to listen to the low hum of your slaves chatting as they <<if $feeder != 0>>wait their turn at the phallic feeders<<else>>drink their breakfasts<</if>>. <<= App.UI.slaveDescriptionDialog($activeSlave)>> is nearest the door, and you overhear $his <<if $activeSlave.voice == 1>>low<<elseif $activeSlave.voice == 2>>pretty<<else>>high<</if>> voice clearly as $he expresses confusion to another slave. "I don't under<<s>>tand it," $he <<say>>s. "Why are <<s>>o many men intere<<s>>ted in an old <<s>>lave like me? I never got thi<<s>> much attention when I wa<<s>> free! Now <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>guy<<s>> line up to pay<<else>>every guy I approach want<<s>><</if>> to fuck me!"
@@ -3541,52 +3479,6 @@ I didn't mean to <<s>>ound con<<c>>eited, either. I gue<<ss>> I'm <<s>>till gett
 	<<set $activeSlave.fetishKnown = 1>>
 <</if>>
 
-<<case "im scared">>
-
-During $his weekly inspection, <<= App.UI.slaveDescriptionDialog($activeSlave)>> has trouble following the routine orders that position $him so you can examine $his body. The cause is not difficult to determine: $he's so cripplingly terrified that $he's having difficulty functioning. $He seems to be trying to obey you, but $he's so scared that $his mind is having trouble translating your simple verbal commands into physical obedience. You ask $him what $he's so frightened of. The question stuns $him, and $he <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> you in mute horror, looking even more terrified than $he has up to this point and completely devoid of any idea how to respond. You order $him to respond, and this starts $him out of $his fugue. $He begins to cry, makes two false starts, sobs, and then begins forcing out words.
-<br><br>
-"E-e-everything," $he cries. "I'm <<s>>-<<s>>o <<s>>-<<s>>orry b-but I c-can't help," $he chokes on a sob and hiccups, "help it. Thi<<s>>, thi<<s>> pla<<c>>e, being a <<s>>e<<x>> <<s>>lave,
-<<switch $activeSlave.rules.punishment>>
-<<case "confinement">>b-being <<sh>>-<<sh>>ut up in the d-dark
-<<case "whipping">>b-being wh-wh-whip-ped
-<<case "chastity">>h-having my p-part<<s>> locked up in ch-cha<<s>>tity
-<<default>>n-never knowing what th-the p-puni<<sh>>ment will be
-<</switch>>
-wh-when I'm bad, e-everything, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. Oh, oh, I'm <<s>>orry, p-plea<<s>>e, I'm <<s>>orry I, I'm like thi<<s>>, I'm crying, p-plea<<s>>e <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>, plea<<s>>e don't..." $He trails off, giving you a look of supplication.
-
-<<case "frightening dick">>
-
-In a fortuitous confluence of circumstances, <<= App.UI.slaveDescriptionDialog($activeSlave)>> happens to be polishing your office one evening. Keeping every surface in the penthouse at a state of perfect shine is one of your servants' endless tasks, and your office is $his area of responsibility today. At the key moment, $he's working on an area at waist height, directly next to the door that leads to your suite; and $he's crouching to polish this area most comfortably. $He is working diligently, and is paying close attention to what $he's doing. Meanwhile, and for completely unrelated reasons, you have just finished having fun inside said suite. You are naked, and your penis remains fully erect despite your having climaxed only moments before; you are in excellent physical and sexual condition and this happens frequently. You have decided to address a likewise unrelated matter in your office, and walk into it from your suite, naked and erect.
-<br><br>
-This is how $activeSlave.slaveName comes face to face with your cock, unexpectedly, at a distance of only a few <<if $showInches == 2>>inches<<else>>centimeters<</if>>.
-<br><br>
-$He shrieks, backpedaling, and then falls backward, $his <<if $activeSlave.butt > 6>>monstrous bottom<<elseif $activeSlave.butt > 3>>healthy rear end<<else>>cute butt<</if>> hitting the floor with an audible whack. The light cloth $he was using to polish with went flying, and flutters to the ground accusingly. After scrabbling back a short distance, looking up at you hesitantly, and visibly recollecting $himself, $he swallows twice and then says, "I'm <<s>>orry, <<Master>>," in a tone of voice with a great deal of effort applied to keep it even. A frantic, embarrassed search for $his cloth ensues. Finding it at last, $he returns to $his original, low position, and crouch-walks back to the place $he was polishing, doing $his absolute best to look diligent and industrious and not at all aware that your cock is pointing at $him like a gun barrel.
-
-<<case "comfortable seat">>
-
-There are sturdy leather seats placed strategically throughout your penthouse. They offer something convenient to bend your slaves over, wherever you happen to encounter them, and they're comfortable, too. At the moment, you're sitting on one, using a tablet to take care of some business that caught you away from your office, but isn't worth heading back to your desk for. Slaves move by your impromptu throne as you work, mostly <<if $averageTrust > 50>>greeting you cheerfully<<elseif $averageTrust > 20>>greeting you properly<<elseif $averageTrust > -20>>doing their best to greet you properly<<elseif $averageTrust > -50>>greeting you fearfully<<else>>struggling to greet you through their terror<</if>> as they pass. Busy, you spare few of them more than a glance.
-<br><br>
-One of them slows as $he goes by, however. Looking up, you see that it's <<= App.UI.slaveDescriptionDialog($activeSlave)>>. <<if canTalk($activeSlave)>>"Hi <<Master>>," $he <<say>>s flirtatiously<<if $activeSlave.belly >= 1500>> rubbing a hand across $his _belly <<if $activeSlave.bellyPreg > 0>> pregnancy<<else>>belly<</if>><</if>>. "That look<<s>> like a really comfortable <<s>>eat. Can I <<s>>it down and re<<s>>t <<if $activeSlave.belly >= 10000>>my tired leg<<s>> <</if>>for a little while?"<<else>>$He greets you properly, but adds a flirtiness to $his gestures, and asks if $he can sit down and rest <<if $activeSlave.belly >= 10000>> $his <<if $activeSlave.bellyPreg > 0>>gravid<<else>>_belly<</if>> bulk <</if>>on the comfortable seat for a little while.<</if>> $He is not pointing at the soft leather cushion next to you: $he's pointing at your crotch.
-<br><br>
-You're nude, a consequence of <<if $Concubine != 0 && $Concubine.ID != $activeSlave.ID>>recent activities involving $Concubine.slaveName<<else>>recent unrelated activities<</if>>. <<if $PC.dick != 0>>Your formidable dick is three quarters hard,<<else>>Nude, that is, all except for the strap-on you were just using and haven't taken off yet,<</if>> and $activeSlave.slaveName is pointing right at it. $He knows exactly what $he's asking for and gives $his <<if $activeSlave.hips > 0>>broad<<elseif $activeSlave.hips > -1>>trim<<else>>narrow<</if>> hips a little wiggle to make it even more abundantly clear.
-<<if ($activeSlave.chastityPenis == 1)>>
-	$His poor dick is visibly straining against the restrictive chastity belt $he's wearing.
-<<elseif canAchieveErection($activeSlave)>>
-	$His <<if $activeSlave.dick > 4>>big dick<<elseif $activeSlave.dick > 2>>dick<<else>>tiny dick<</if>> is jutting out stiffly and there's a bead of precum <<if $activeSlave.foreskin == 0>>forming at its smooth tip<<else>>escaping from $his foreskin<</if>>.
-<<elseif $activeSlave.dick > 0>>
-	$His <<if $activeSlave.dick > 4>>big dick<<elseif $activeSlave.dick > 2>>dick<<else>>tiny dick<</if>> is as soft as ever, but there's a string of precum running between <<if $activeSlave.foreskin == 0>>its smooth tip<<else>>the soft foreskin that completely covers its tip<</if>> and $his inner thigh.
-<<elseif $activeSlave.clit > 0>>
-	$His <<if $activeSlave.clit > 1>>formidable<<else>>big<</if>> clit is visibly erect. <<if $activeSlave.clitPiercing > 1>>$His sizable clit piercing never lets its hood completely cover hide $his bitch button, but it's completely retracted now,<<else>>$His delicate clitoral hood has been pushed back by $his female erection,<</if>> leaving $him proudly aroused.
-<<elseif $activeSlave.labia > 0>>
-	$His <<if $activeSlave.labia > 1>>dangling<<else>>thick<</if>> labia are visibly swollen, flushing and growing prouder as the blood rushes to $his womanhood.
-<<elseif $activeSlave.vagina == -1>>
-	Since $he's featureless in front, $he makes a little half turn to the side, making it very clear that $his asspussy needs fucking.
-<<else>>
-	$He has a shapely womanhood, with trim labia and a demure clit, but it's a little flushed.
-<</if>>
-<<if $activeSlave.vaginaLube > 0>>$His wet cunt is already lubricating itself generously for you, slicking $his labia with female arousal.<</if>>
-The slutty $desc wants it badly.
-
 <<case "arcade sadist">>
 
 You happen to come across <<= App.UI.slaveDescriptionDialog($activeSlave)>> during one of $his rest periods. $He's lying on a couch in the slave areas, <<if canSee($activeSlave)>>staring at the ceiling above $him<<else>>leaning back<</if>> with a dreamy expression on $his face. $He's <<if $activeSlave.rules.release.masturbation == 1>>touching $himself idly.<<else>>not allowed to touch $himself, but $he's extremely aroused.<</if>> Whatever's on $his mind, it's so absorbing that $he doesn't realize you're there until you're standing over $him.
@@ -12294,178 +12186,6 @@ brought in to you. This time <<= App.UI.slaveDescriptionDialog($activeSlave)>> h
 	<</if>>
 <</if>>
 
-<<case "devoted waist">>
-
-<<link "Join $him and see if your hands can span $his waist">>
-	<<replace "#result">>
-		By the time you reach the shower, $activeSlave.slaveName is toweling $himself. $He notices your approach and folds the towel neatly before performing a little naked pirouette that shows off $his artificial
-		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-			curviness while displaying each of $his delectable holes.
-		<<elseif canDoVaginal($activeSlave)>>
-			curviness while displaying $his
-			<<if $activeSlave.vagina > 3>>
-				gaping cunt
-			<<elseif $activeSlave.vagina > 2>>
-				loose cunt
-			<<elseif $activeSlave.vagina > 1>>
-				slutty pussy
-			<<elseif $activeSlave.vagina > 0>>
-				tight pussy
-			<<else>>
-				virgin pussy.
-			<</if>>
-		<<elseif canDoAnal($activeSlave)>>
-			curviness while displaying $his
-			<<if $activeSlave.anus > 2>>
-				gaping asshole.
-			<<elseif $activeSlave.anus > 1>>
-				slutty asshole.
-			<<elseif $activeSlave.anus > 1>>
-				tight asshole.
-			<<else>>
-				virgin asshole.
-			<</if>>
-		<<else>>
-			curviness.
-		<</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 $him if you could. By the end $he's blushing vibrantly, but @@.mediumaquamarine;more confident in $his 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 $his tiny middle.
-				<<= VCheck.Anal()>>
-			<<else>>
-				vaginal. Your control over the pace is perfected by your grip around $his tiny middle.
-				<<= VCheck.Vaginal()>>
-			<</if>>
-			Finally, $he goes down on <<if hasAllLimbs($activeSlave)>>all fours<<else>>the floor<</if>> for a hard
-			<<if canDoVaginal($activeSlave)>>
-				pounding, doggy style, losing $himself in the intense penetration as you use your hold around $him to give it to $him even harder.
-				<<= VCheck.Vaginal()>>
-			<<else>>
-				buttfuck, doggy style, losing $himself in the intense anal as you use your hold around $him to give it to $him even harder.
-				<<= VCheck.Anal()>>
-			<</if>>
-			By the end $he's tired but @@.mediumaquamarine;confident in $his sexual uniqueness.@@
-			<<set $activeSlave.trust += 4>>
-		<</if>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
-<br><<link "Such a lovely work of art must be displayed">>
-	<<replace "#result">>
-		There is a polite soirée tonight at one of $arcologies[0].name's more upscale eating establishments. Many couples are there to enjoy themselves and preen, but even so, you make a stir as you enter wearing
-		<<if $PC.title == 1>>
-			the latest in men's eveningwear<<if $PC.boobs >= 300 || $PC.belly >= 1500 || $PC.butt >= 3 || $PC.balls >= 9>>, tastefully tailored to accommodate your unusual build<</if>>.
-		<<else>>
-			the latest dress from one of your arcology's leading tailors<<if $PC.boobs >= 1000 || $PC.belly >= 1500 || $PC.butt >= 3 || $PC.balls >= 5>>, 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 $his artificial figure while leaving $his breasts,
-		<<if $activeSlave.dick > 0>>
-			<<if ($activeSlave.chastityPenis == 1)>>
-				caged
-			<</if>>
-			cock,
-		<<elseif $activeSlave.vagina > -1>>
-			<<if ($activeSlave.chastityPenis == 1)>>
-				chaste
-			<</if>>
-			pussy,
-		<<elseif $activeSlave.balls > 1 && $activeSlave.scrotum > 0>>
-			dangling balls,
-		<<else>>
-			featureless groin,
-		<</if>>
-		and
-		<<if ($activeSlave.chastityAnus)>>
-			off-limits rear
-		<<else>>
-			butt
-		<</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 $him in a <<if $activeSlave.belly >= 5000>>tight<<else>>close<</if>> lotus position on the cleared table, face to face.
-			<<if canDoVaginal($activeSlave)>>
-				<<= VCheck.Vaginal()>>
-			<<else>>
-				<<= VCheck.Anal()>>
-			<</if>>
-		<<else>>
-			you and $activeSlave.slaveName enjoy the <<if canSee($activeSlave)>>sights<<else>>atmosphere<</if>> 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>>
-		<<run repX(500, "event", $activeSlave)>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
-
-<<case "obedient girlish">>
-
-<<link "Let $him get dressed and spend some quality time with $him">>
-	<<replace "#result">>
-		You let $activeSlave.slaveName don a nice dress and take $him out. $He's a little suspicious at first but when you reach the first balcony on your lazy route around the huge building the sun on $his face and the gentle breeze around $his ears convince $him there's no trick. $He watches you shyly as you lead $him around, soaking in the sights and relaxing. Though you still speak as $his <<= WrittenMaster($activeSlave)>>, you chat about goings on around the arcology, and you buy $him a fresh fruit from a vendor. The unexpected show of care and compassion has $him quite agog. By the time you take $him out onto another parklike balcony and fuck $him on a bench,
-		<<if ($activeSlave.dick > 0) && ($activeSlave.chastityPenis == 1) && ($activeSlave.chastityAnus == 1)>>
-			$his combined chastity cage and anal chastity belt makes $him move awkwardly.
-		<<elseif ($activeSlave.dick > 0) && ($activeSlave.chastityPenis == 1)>>
-			$his chastity cage is dribbling precum, a sign $he wouldn't mind having to take it up the ass.
-		<<elseif ($activeSlave.dick > 0) && ($activeSlave.chastityAnus == 1)>>
-			$his dick is tenting the front of $his dress, through $his anal chastity belt.
-		<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
-			$his dick is tenting the front of $his dress and $he's happy to take it up the ass.
-		<<elseif ($activeSlave.dick > 6)>>
-			$he's happy to take it up the ass; there's even a steady stream of pre dripping from $his monstrous cock.
-		<<elseif ($activeSlave.dick > 0)>>
-			$he's happy to take it up the ass, though there's no sign of an erection from $his useless sissy dick.
-		<<elseif !canDoVaginal($activeSlave)>>
-			$he's obviously ready and willing to get buttfucked, even if $his body has no physically obvious way to show it off.
-		<<else>>
-			$he's wet and ready and moans happily as you enter $him.
-		<</if>>
-		<<if ($activeSlave.vagina > -1)>>
-			<<= VCheck.Vaginal()>>
-		<<else>>
-			<<= VCheck.Anal()>>
-		<</if>>
-		There's no hesitation or fear at all on $his face when $he <<if canSee($activeSlave)>>sees<<else>>notices<</if>> you're returning $him to your penthouse; @@.mediumaquamarine;$his trust in you has increased.@@
-		<<set $activeSlave.trust += 4>>
-	<</replace>>
-<</link>><<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && (($activeSlave.vagina == -1) && ($activeSlave.anus == 0)) || ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
-<<if canDoAnal($activeSlave)>>
-	<br><<link "Dominate $his narrow ass">>
-		<<replace "#result">>
-			You make a show of examining $him with a critical air that makes $him aware of $his modest endowments. Finished, you announce in a serious tone that you're concerned that you can't tell if $he's a girl, since girls have breasts and butts.<<if $activeSlave.belly >= 1500>> $He should do something about that bulbous gut too, you mock.<</if>>
-			<<if !canTalk($activeSlave)>>
-				$He protests wordlessly, gesturing desperately at $himself.
-			<<else>>
-				<<if ($activeSlave.lips > 70)>>
-					$He protests through $his huge lips,
-				<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-					$He protests through $his piercings,
-				<<else>>
-					$He protests,
-				<</if>>
-				"<<Master>>, I'm a <<s>>lave girl! Plea<<s>>e, ju<<s>>t look at me, <<Master>>!"
-			<</if>>
-			<<if canSee($activeSlave)>>Shaking your head<<else>>Tutting<</if>> with pretended doubt, you say that since you're not sure you'll have to make do. Your order $him to
-			<<if $activeSlave.belly >= 300000>>
-				lean over $his _belly belly<<if $PC.dick == 0>> while you don a strap-on<</if>>.
-			<<elseif $activeSlave.belly >= 5000>>
-				lean face-down into the couch cushions<<if $PC.dick == 0>> while you don a strap-on<</if>>.
-			<<else>>
-				lie face-down on the couch<<if $PC.dick == 0>> while you don a strap-on<</if>>.
-			<</if>>
-			$He does doubtfully, only realizing what you intend when $he feels <<if $PC.dick == 0>>the strap-on<<else>>your dickhead<</if>> forcing its way between $his narrow buttcheeks.
-			<<= VCheck.Anal()>>
-			$He whimpers and moans
-			<<if $activeSlave.belly < 300000>>into the couch<</if>>
-			as you roughly sodomize $him. It's true, $he's pretty androgynous from this angle, especially while $he takes it up the butthole. @@.hotpink;$He has become more submissive to you,@@ but there's @@.gold;some fear there, too.@@
-			<<set $activeSlave.trust -= 2, $activeSlave.devotion += 4>>
-		<</replace>>
-	<</link>><<if canDoAnal($activeSlave) && $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
-<</if>>
-
 <<case "diet">>
 
 <<link "Catch $him at it and punish $him">>
@@ -16963,121 +16683,6 @@ brought in to you. This time <<= App.UI.slaveDescriptionDialog($activeSlave)>> h
 	<</link>>
 <</if>>
 
-<<case "passing declaration">>
-
-<<link "Follow $him">>
-	<<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 $him 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 $him 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">>($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 "work as a nanny">>($nurseryName, where $he is tending to the children),
-		<<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">>($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),
-		<<case "be your Concubine">>(your bed),
-		<<case "be the Nurse">>($clinicName, to check on the patients),
-		<<case "be the Matron">>($nurseryName, where $he is managing children and nannies),
-		<<case "live with your Head Girl">>
-		<<default>>(a waiting area for further assignment),
-		<</switch>>
-		and when you get there, $he gives you a peck on the cheek.
-		<<if $activeSlave.height < 170>>
-			The short $desc has to go up on tiptoe to reach.
-		<</if>>
-		"@@.hotpink;I really do love you,@@ <<Master>>," $he <<say>>s, <<if canSee($activeSlave)>><<= App.Desc.eyesColor($activeSlave)>> shining<<else>>face filled with joy<</if>>.
-		<<set $activeSlave.devotion += 5>>
-	<</replace>>
-<</link>>
-<br><<link "Play with $him">>
-	<<replace "#result">>
-		You're not a slave, so you can't understand $his inner workings through direct empathy. But in your experience, a quick orgasm never fails to make a good day better. You're not slow, and of course you know where $he's going, so you catch up to $him on quiet feet and
-		<<if $activeSlave.butt > 12>>
-			sink both hands into $his immense rear.
-		<<elseif $activeSlave.butt > 6>>
-			set $his enormous ass jiggling with a smack.
-		<<elseif $activeSlave.butt > 3>>
-			give $his womanly bottom a squeeze.
-		<<else>>
-			pinch $his cute rear.
-		<</if>>
-		$He squeals and whirls around, <<if $activeSlave.energy > 60>>eagerly flinging $himself into your arms, ready for some action<<else>>trustingly throwing $himself into your arms<</if>>. Feeling spontaneous, you decide to get everyone off quickly and cleanly, right here.
-		<<switch $eventSlave.fetish>>
-		<<case "submissive">>
-			You place a dominant hand around $his throat, firmly but not harshly, almost sending the submissive to $his knees. Your other hand
-		<<case "cumslut">>
-			You kiss $him, sliding your tongue all the way into $his mouth. $He melts into you, rhapsodically entranced by the intense oral stimulation, and $his tongue presses against yours with frankly sexual significance. Your hand
-		<<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 $his 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 $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 $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 $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">>
-			You caress one of $his nipples, <<if $activeSlave.nipples != "fuckable">>bringing it completely erect before gripping it firmly. You twist it, pull it, pinch it<<else>>letting it swell completely shut before driving your entire fist into it<</if>>; $he moans with masochistic pleasure. Your other hand
-		<<default>>
-			Your hand
-		<</switch>>
-		<<if canDoVaginal($activeSlave)>>
-			finds $his pussy
-		<<elseif canDoAnal($activeSlave)>>
-			reaches around behind $him to tease $his ass and play with $his sensitive perineum
-		<<else>>
-			traces $his chastity
-		<</if>>
-		and you press your groin towards $him. Getting the idea, $he begins to <<if $PC.dick != 0>>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 != 0>>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 ($activeSlave.chastityPenis == 1)>>
-			$His ejaculate steadily drips from $his chastity cage,
-		<<elseif canAchieveErection($activeSlave)>>
-			$He blows $his own load right after,
-		<<elseif $activeSlave.balls > 0>>
-			$His limp dick pours cum,
-		<<elseif $activeSlave.dick > 0>>
-			$His bitchclit produces a little watery fluid,
-		<<elseif $activeSlave.vaginaLube > 1>>
-			$He squirts copiously,
-		<<else>>
-			Unusually for $him, $he manages to squirt a little,
-		<</if>>
-		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 $him">>
-	<<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 $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.rules.punishment>>
-		<<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 $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 $his outlook">>
@@ -17176,349 +16781,6 @@ brought in to you. This time <<= App.UI.slaveDescriptionDialog($activeSlave)>> h
 	<</replace>>
 <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $PC.dick != 0>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0) && $PC.dick != 0>> //This option will take $his anal virginity//<</if>>
 
-<<case "im scared">>
-
-<<link "Punish $him">>
-	<<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 $his tears. $He knows that interrupting you to beg would be profoundly stupid, so $he clasps $his hand<<if hasBothArms($activeSlave)>>s<</if>> 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 $his standard punishment, and be
-		<<switch $activeSlave.rules.punishment>>
-		<<case "confinement">>
-			shut up in a box. @@.gold;$He breaks down,@@ falling to $his knees, begging abjectly for mercy.
-			<<if $activeSlave.belly >= 100000 || $activeSlave.boobs > 25000 || $activeSlave.weight > 190>>
-				"It'<<s>> too cramped in there,"
-			<<else>>
-				"It'<<s>> dark in there,"
-			<</if>>
-			$he screams as you open the box for $him. $He knows that if $he doesn't climb in, it'll be longer before $he's let out, so $he does, scrabbling inside and sobbing desperately as you close the lid.
-		<<case "whipping">>
-			whipped. @@.gold;$He breaks down,@@ falling to $his knees, begging abjectly for mercy. "It'll h-hu-hurt," $he blubbers weakly as you attach $his hand<<if hasBothArms($activeSlave)>>s<</if>> to shackles high on the office wall. The first stroke across $his buttocks draws a long shriek out of $him.
-		<<case "chastity">>
-			locked up in chastity. @@.gold;$He breaks down,@@ falling to $his knees, begging abjectly for mercy. "I c-can't," $he moans. "I can't take it. I can't <<s>>tand it." As you lock the chastity onto $him, $he sobs inconsolably, knowing that any arousal will be torturous until $he's released.
-		<<default>>
-			gagged, since that's the appropriate castigation for failure to control $his mouth and deportment. $He tries to behave, but @@.gold;breaks down@@ as you slide a dildo gag into $his throat, choking and struggling to breathe as $he tries to cry past it.
-		<</switch>>
-		The thing $he's most frightened of is that $he won't be able to control $his fear in the future, and will continue to suffer.
-		<<set $activeSlave.trust -= 5>>
-	<</replace>>
-<</link>>
-<<if $dairyRestraintsSetting == 2>>
-	<br><<link "Threaten $him with the industrial Dairy">>
-		<<replace "#result">>
-			You grab $him by the scruff of $his neck and drag $him down to $dairyName. $He tries to control $himself, but breaks down in tears when you haul $him to a stop, forcing $him to get a good <<if canSee($activeSlave)>>look at the rows of bodies being<<elseif canHear($activeSlave)>>listen of the sound of rows of bodies being<<else>>feel for the omnipresent aura of rows of bodies being<</if>> mercilessly milked. You explain that if $he continues to fail to control $himself, your patience with $his will eventually expire, and you'll be forced to immure $him here. <<if canSee($activeSlave)>>Indicating<<else>>Facing $him towards<</if>> a slave who's being
-			<<if ($activeSlave.balls > 0) && ($dairyStimulatorsSetting == 2)>>
-				cockmilked by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm slides in and out of the slave's rectum, pounding it harder and harder until the slave stiffens and the transparent tubing coming off its cockhead whitens with cum. As the slave relaxes slightly in the restrains, the powerful milkers continue their relentless tugging at $his gigantic udders.<<if !canSee($activeSlave)>> As the dildo begins its efforts to loose a second cumming, you grab the horrified slave's hands and push them to the cow's throbbing dick just in time for $him to feel the ejaculate forced out by its unwilling orgasm.<</if>> You run a hand down to $activeSlave.slaveName's own balls and, squeezing them slightly, tell $him that unless $he wants $his ass ruined by constant machine rape, $his tits turned into immobilizing milk factories and $his balls drained of every last drop of seed,
-			<<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && ($dairyPregSetting == 2)>>
-				used for reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm fucks the slave's enormous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his cervix. The slave is gigantically pregnant. You tell $activeSlave.slaveName that this is the vaginal treatment $he can expect when pregnant; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the dildo retracts from the cow's gaping cunt, you grab the horrified slave's hands and push them to its gravid middle just in time for $him to feel a massive contraction.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants $his womb converted into an industrial component,
-			<<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && ($dairyPregSetting == 3)>>
-				used for mass reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm fucks the slave's cavernous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his tortured cervix. The slave is absolutely enormous, more a taut sphere of a belly than a person; so pregnant that the children within $his are visibly forced to bulge the skin covering $his straining womb by their sisters. You tell $activeSlave.slaveName that this is the treatment $he can expect when pregnant here; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the cow takes the huge dildo absentmindedly, you grab the horrified slave's hand<<if hasBothArms($activeSlave)>>s<</if>> and push <<if hasBothArms($activeSlave)>>them<<else>>it<</if>> to its gravid middle, forcing $him to feel the children squirming within its packed womb. $He squeals in terror at the feeling of so many babies moving under $his fingers.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants to become an industrial breeder,
-			<<else>>
-				drained of $his milk, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as the slave's gigantic breasts are massaged and squeezed, while the milkers attached to $his absurd nipples tug and pull with industrial power. $He can't <<if canSee($activeSlave)>>look away; the orbs of jiggling flesh being manipulated are each as big as the slave's torso<<else>>shut out the sound of those enormous jiggling orbs of flesh being so roughly manipulated<</if>>. It's good for milk production to drain slaves completely on occasion, and the machine doesn't stop until every drop is wrung from both udders.<<if !canSee($activeSlave)>> You force the horrified slave's hand<<if hasBothArms($activeSlave)>>s<</if>> onto its breasts so that $he may get a good sense of just how big and swollen they are and how hard the milker is pulling at them.<</if>> You run a hand over to $activeSlave.slaveName's own breast and, teasing $his nipple, tell $him that unless $he wants to experience that twice a day,
-			<</if>>
-			$he had better behave $himself. $He nods furiously, @@.gold;terrified beyond the ability to speak.@@
-			<<set $activeSlave.trust -= 8>>
-		<</replace>>
-	<</link>>
-<</if>>
-<<if $seeExtreme != 0>>
-	<br><<link "Threaten to convert $him into a Fuckdoll">>
-		<<replace "#result">>
-			You order a Fuckdoll brought to your office. $activeSlave.slaveName <<if canSee($activeSlave)>>watches it totter in<<elseif canHear($activeSlave)>>listens to the clicks of its approaching heels and the ominous squeaking of its latex shell<<else>>feels the uncomfortable latex skin of its suit when it brushes up against $him<</if>>, automatically following the tugs on its leash and the tonal commands passed by its suit. $He already understands the implicit threat, and $he shivers uncontrollably, @@.gold;almost falling to $his knees in fear.@@ Not content with that, you tell $him that $he's trying your patience with $his behavior. If $he doesn't control $himself better in the future, you'll give up on $him and convert $him into a Fuckdoll. At the spoken threat $activeSlave.slaveName does collapse, but you order $him to get back to $his feet and <<if canSee($activeSlave)>>watch<<else>>pay attention<</if>>. $He does, shakily, tears streaming down $his face as you put the Fuckdoll on all fours, as though it were about to take dick. Its <<if $activeSlave.vagina > -1>>holes are pointed straight at $activeSlave.slaveName's face, <<if canSee($activeSlave)>>and $he can't avoid seeing how loose and used they look<<else>>so you grab both $his hands and force one into each of its blown out holes. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><<else>>rear hole is pointed straight at $activeSlave.slaveName's face,<<if canSee($activeSlave)>> and $he can't avoid seeing how loose and used it looks<<else>>so you grab both $his hands and force them into its blown out ass. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><</if>>. Suddenly, you activate the Fuckdoll's suit's punishment systems. It does not and cannot scream, but <<if canSee($activeSlave)>>a slight stiffening of its posture communicates extreme anguish, and its sphincter spasms tightly closed with obviously involuntary force<<else>>the sudden, pitiful attempt to clamp down on $his arms makes it perfectly clear that you just forced it to undergo extreme anguish<</if>>. $activeSlave.slaveName is almost incapacitated by terror.
-			<<set $activeSlave.trust -= 8>>
-		<</replace>>
-	<</link>>
-<</if>>
-<br><<link "Comfort $him">>
-	<<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 $him as you kneel down beside $him and embrace $his huddled form. You pull $his head
-		<<if $PC.boobs >= 1400>>
-			against your enormous, <<if $PC.boobsImplant != 0>>hard<<else>>soft<</if>> breasts,
-		<<elseif $PC.boobs >= 1200>>
-			against your huge <<if $PC.boobsImplant != 0>>firm<<else>>soft<</if>> breasts,
-		<<elseif $PC.boobs >= 1000>>
-			against your big <<if $PC.boobsImplant != 0>>firm<<else>>soft<</if>> breasts,
-		<<elseif $PC.boobs >= 300>>
-			against your soft breasts,
-		<<elseif $PC.title == 0>>
-			against your flat chest,
-		<<else>>
-			into your shoulder,
-		<</if>>
-		stroking it reassuringly and murmuring kindness. $He clings to you, mostly for lack of any other comfort in the whole world, and sobs convulsively, @@.mediumaquamarine;$his terror flowing out of $him@@ in a torrent as you gently rub $his back. When $he's mostly cried $himself out, you tell $him that $he'll be all right. You're sure $he'll be a good slave one day. You understand that $his life is hard. $He'll make mistakes, and you'll punish $him for them, but that's part of slave training, and that's all right. If $he does $his best, $he'll be all right. $He sniffles, cuffing tears away. "Th-thank you, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>, I'll d-do my b-be<<s>>t," $he manages to <<say>>.
-		<<set $activeSlave.trust += 5>>
-	<</replace>>
-<</link>>
-
-<<case "frightening dick">>
-
-<<link "Polish this">>
-	<<replace "#result">>
-		You tell $him to polish this instead, advancing even closer. $He turns, finding your cockhead so close to $his face that $his eyes cross ludicrously as they attempt to focus on it. $He does not like dicks, and obviously does not find the prospect of sucking this one appealing right now, but $he knows it's in $his best interests to <<if $activeSlave.skill.oral > 10>>put $his oral knowledge to work<<else>>do $his best<</if>> right now. $He closes $his eyes and takes you into $his mouth, forming a seal around your cock with $his
-		<<if $activeSlave.lips > 40>>
-			ridiculous
-		<<elseif $activeSlave.lips > 20>>
-			pillowy
-		<<elseif $activeSlave.lips > 10>>
-			pretty
-		<<else>>
-			disappointingly thin
-		<</if>>
-		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 <<= App.Desc.eyesColor($activeSlave, "", "orb", "orbs")>> glittering with a little moisture as $he concentrates on breathing past your penis. You ask if your cock <<if canTaste($activeSlave)>>tastes<<else>>feels<</if>> any different than usual. "Mmm hmm, M'," $he mumbles, producing a nice humming sensation against your cock. You tell $him that $he's <<if canTaste($activeSlave)>>tasting<<else>>feeling<</if>> 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 $his 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.
-		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
-		<<set $activeSlave.devotion += 5>>
-	<</replace>>
-<</link>>
-<br><<link "Talk to $him about $his issues with dick">>
-	<<replace "#result">>
-		<<if SlaveStatsChecker.checkForLisp($activeSlave)>>
-			<<set _desc = lispReplace($desc)>>
-		<<else>>
-			<<set _desc = $desc>>
-		<</if>>
-		You sit yourself down in the doorway, right next to $him, and pat your thighs. $He sits on your lap, obeying despite some evident reluctance to sit atop your moist cock. It nestles easily between $his lower buttocks and upper thighs, and $he gets $himself situated, doing $his best to ignore the feeling of your hot hard meat, hard against $his fundament. You encircle $him with your arms, possessively and dominantly but not sexually, and tell $him that you're concerned about $his relationship with cock. $He shifts uncomfortably. "<<S>>orry, <<Master>>, <<s>>orry I'm not better at hiding that. I should be a good _desc and not react like that. I mean, in a bad way. You <<s>>tartled me, but I don't alway<<s>> react well to dick even when I'm not <<s>>tartled. I'll try harder." This is more contrition and submission than you were expecting, and you probe further, asking $him pointedly whether $he's attracted to dicks now. "N-no," $he admits, after only a moment's hesitation to remember that honesty is the most important rule for $him to follow. "No, I don't like them. But I'll do my be<<s>>t to be a good <<s>>e<<x>> <<s>>lave anyway, <<Master>>." Pleased, you tell $him that things will get easier for $him.
-		<<if $activeSlave.hormoneBalance >= 50>>
-			The hormone treatments $he's currently taking will slowly reorient $his sexuality, and eventually $he'll lust after every cock $he sees.
-		<<elseif $activeSlave.aphrodisiacs > 0 || $activeSlave.inflationType == "aphrodisiac">>
-			The aphrodisiacs $he's on will make $him so omnisexually horny that soon $he won't care how anyone's equipped, as long as they'll fuck $him.
-		<<elseif $activeSlave.energy > 60>>
-			$His excellent and improving libido will eventually soften $him to all kinds of sex, with all kinds of people.
-		<<else>>
-			Habit and training will get $him used to dick, and eventually $he'll barely remember that $he ever had a problem with sucking a quick cock.
-		<</if>>
-		$He's a little unsure whether or not to be reassured by this, but $he's @@.mediumaquamarine;relieved $he's not in trouble.@@
-		<<set $activeSlave.trust += 5>>
-	<</replace>>
-<</link>>
-<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-	<br><<link "Rape $him">>
-		<<replace "#result">>
-			Sometimes there's really no need to overthink things. You reach down, grab $him under the armpits, and haul $him up, throwing $him across your desk. $He lands on $his back, and the impact drives the wind out of $him, so $he lies there, @@.gold;all possibility of resistance driven out of $him.@@
-			<<if $activeSlave.clothes == "no clothing">>
-				$He's already naked, so there's no need to
-			<<else>>
-				You
-			<</if>>
-			tear the clothes off $him. You force yourself in between $his legs as $he struggles to get $his breath back, and $he gets another good look at the formidable dick that's about to be slammed inside $him<<if $activeSlave.belly >= 5000>> before it disappears beneath $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<</if>>. $His eyes go wide with fear, and you enhance the effect by smacking yourself against
-			<<if canDoVaginal($activeSlave)>>
-				$his
-				<<if $activeSlave.vagina == 0>>
-					virgin
-				<</if>>
-				vulva.
-			<<elseif $activeSlave.dick > 0>>
-				limp bitchclit.
-			<<else>>
-				$his buttocks.
-			<</if>>
-			You tell $him not to worry, because you're still pretty wet from the last slave you fucked, so this shouldn't hurt too much. Then you ram your cock
-			<<if $activeSlave.vagina > 0>>
-				inside $him.
-				<<= VCheck.Vaginal()>>
-			<<else>>
-				up $his spasming ass.
-				<<= VCheck.Anal()>>
-			<</if>>
-			$He whines and bucks, but $he's entirely at your mercy. $He doesn't like dicks, and to go by $his facial expression as you piston in and out of $him, this experience isn't going to make $him reconsider. When you fill $him with cum, pull out, and let $him retreat to clean $himself up, $he's relieved to go.
-			<<set $activeSlave.trust -= 5>>
-		<</replace>>
-	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
-<</if>>
-
-<<case "comfortable seat">>
-
-<<link "Let $him do what $he wants">>
-	<<replace "#result">>
-		You tell $him to sit down if $he'd like to. $He looks at you quizzically, <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>$his dim mind slowly <</if>>realizing that you're letting $him choose what to do. <<if canTalk($activeSlave)>>
-			"Oh, thank you, <<Master>>," $he <<say>>s,
-		<<else>>
-			$He gestures $his thanks,
-		<</if>>
-		and then makes a show of deciding. $He <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>doesn't have to pretend<<else>>cheekily pretends<</if>> to be an airheaded bimbo puzzling over how $he wants to approach a fuck, bouncing
-		<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
-			$his fake tits a little,
-		<<elseif $activeSlave.boobs > 4000>>
-			$his monstrous udders heavily,
-		<<elseif $activeSlave.boobs > 1000>>
-			$his heavy breasts a little,
-		<<elseif $activeSlave.boobs > 300>>
-			$his boobs a little,
-		<<else>>
-			on $his heels,
-		<</if>>
-		<<if $activeSlave.belly >= 5000>>
-			rocking $his <<if $activeSlave.bellyPreg >= 3000>>baby bump<<elseif $activeSlave.bellyImplant >= 3000>>implant-filled belly<<else>><<print $activeSlave.inflationType>>-filled belly<</if>> side to side seductively
-		<<else>>
-			wiggling $his rear side to side alluringly
-		<</if>>
-		and putting a finger to $his slightly parted lips as $he stares down at your <<if $PC.dick != 0>>stiff prick<<else>>strap-on<</if>>.
-		<br><br>
-		<<set _fucked = 0>>
-		<<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">>
-			Finally making $his decision, $he
-			<<switch $eventSlave.fetish>>
-			<<case "submissive">>
-				turns around and carefully perches $himself on <<if $PC.dick != 0>>your cock<<else>>the phallus<</if>>,
-				<<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>>
-					letting $his weight slide it inside $his wet pussy.
-					<<= VCheck.Vaginal()>>
-				<<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>>
-					letting $his weight push it up $his asshole.
-					<<= VCheck.Anal()>>
-				<<else>>
-					putting it between $his thighs.
-				<</if>>
-				$He's not used to being on top, but $he uses $himself to service you as submissively as $he can. $He pays $his own pleasure no attention at all,
-				<<set _fucked = 1>>
-			<<case "cumslut">>
-				squats down, coming face to face with <<if $PC.dick != 0>>your cock<<else>>the phallus<</if>>. <<if canTalk($activeSlave)>>"<<Master>>, I changed my mind about <<s>>itting," $he <<say>>s<<else>>$He gestures that $he changed $his mind about sitting<</if>>, and licks $his lips sluttily. Then $he gives <<if $PC.dick != 0>>you<<else>>the phallus<</if>> a lusty blowjob, humming and licking happily. <<if $PC.dick != 0>>$He swallows your load hungrily,<<else>>$He helps you out of the harness with your permission and eats you out too,<</if>>
-				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
-				<<set _fucked = 1>>
-			<<case "humiliation">>
-				turns around and sits on <<if $PC.dick != 0>>your cock<<else>>the phallus<</if>>, leaning back against you and making sure all the other slaves who pass by can see
-				<<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>>
-					where it penetrates $his cunt.
-					<<= VCheck.Vaginal()>>
-				<<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>>
-					where it's lodged up $his butt.
-					<<= VCheck.Anal()>>
-				<<else>>
-					where it's rubbing $him intimately between $his thighs.
-				<</if>>
-				$He gets off on their looks,
-				<<set _fucked = 1>>
-			<<case "buttslut">>
-				<<if canDoAnal($activeSlave) && ($activeSlave.anus > 0)>>
-					turns around and shivers with pleasure as $he hilts $his anal sphincter around the base of <<if $PC.dick != 0>>your cock<<else>>the phallus<</if>>. $He bounces on it happily, reaming $his own ass,
-					<<= VCheck.Anal()>>
-				<<else>>
-					turns around and shivers with pleasure as $he feels <<if $PC.dick != 0>>your cock<<else>>the phallus<</if>> slip between $his buttcheeks. $He rubs against it, happy to share $his butt with you,
-				<</if>>
-				<<set _fucked = 1>>
-			<<case "boobs">>
-				squats down, placing <<if $PC.dick != 0>>your cock<<else>>the phallus<</if>> <<if $activeSlave.boobs > 4000>>in the virtual hole formed in the place between $his breasts, which are so massive they rest together<<elseif $activeSlave.boobs > 1000>>in the valley between $his tits<<elseif $activeSlave.boobs > 300>>between $his breasts<<else>>against one of $his nipples<</if>>. <<if canTalk($activeSlave)>>"<<Master>>, I changed my mind about <<s>>itting," $he <<say>>s<<else>>$He gestures that $he changed $his mind about sitting<</if>>, and starts giving you a boob job. $He enjoys the breast play,
-				<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
-				<<set _fucked = 1>>
-			<<case "pregnancy">>
-				<<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>>
-					turns around and lovingly lowers $his pussy onto you. <<if $PC.dick != 0>><<if $activeSlave.pregKnown == 1>>$He's already pregnant, so this isn't a direct satisfaction of $his impregnation fetish, but being fucked while pregnant is almost as good as far as $he's concerned.<<elseif canGetPregnant($activeSlave)>>This might be the moment $he gets pregnant, and $he's quivering with anticipations.<<else>>$He knows $he isn't fertile, but $he's good at fantasizing.<</if>><<else>>Your strap-on might not be able to impregnate anyone, but $he's good at fantasizing.<</if>> $He rides you hungrily,
-					<<= VCheck.Vaginal()>>
-					<<if canImpreg($activeSlave, $PC)>>
-						<<= knockMeUp($activeSlave, 40, 0, -1)>>
-					<</if>>
-				<<else>>
-					turns around and carefully perches $himself on <<if $PC.dick != 0>>your cock<<else>>the phallus<</if>>, putting it between $his thighs. $He rides you caringly,
-				<</if>>
-				<<set _fucked = 1>>
-			<<case "dom">>
-				turns around and sits right down on <<if $PC.dick != 0>>your cock<<else>>the phallus<</if>>, eagerly
-				<<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>>
-					taking it into $his cunt.
-					<<= VCheck.Vaginal()>>
-				<<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>>
-					getting it shoved up $his butt.
-					<<= VCheck.Anal()>>
-				<<else>>
-					squeezing it between $his thighs.
-				<</if>>
-				$He loves being on top, even if $he's the one who's getting fucked. $He rides you happily,
-				<<set _fucked = 1>>
-			<<case "sadist">>
-				turns around and hesitantly sits on <<if $PC.dick != 0>>your cock<<else>>the phallus<</if>>, letting
-				<<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>>
-					it slide into $his cunt.
-					<<= VCheck.Vaginal()>>
-				<<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>>
-					it slide up $his butt.
-					<<= VCheck.Anal()>>
-				<<else>>
-					it slide between $his thighs.
-				<</if>>
-				$He prefers to be rough, but settles for just directing how $he gets used. $He rides you cautiously,
-				<<set _fucked = 1>>
-			<<case "masochist">>
-				turns around and carefully perches $himself on <<if $PC.dick != 0>>your cock<<else>>the phallus<</if>>,
-				<<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>>
-					letting $his weight slide it inside $his wet pussy at an uncomfortable angle.
-					<<= VCheck.Vaginal()>>
-				<<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>>
-					letting $his weight push it up $his asshole at an uncomfortable angle.
-					<<= VCheck.Anal()>>
-				<<else>>
-					putting it between $his thighs at an uncomfortable angle.
-				<</if>>
-				$He does $his best to please you while making sex as unpleasant as $he can for $himself. $He pays close attention to your comfort versus $his own,
-				<<set _fucked = 1>>
-			<</switch>>
-		<</if>>
-		<<if _fucked == 1>>
-			and after you've <<if $PC.dick != 0>>cum<<else>>climaxed<</if>>, $he @@.mediumaquamarine;thanks you trustingly,@@ happy $he's still allowed a sexy choice with you now and then.
-		<<else>>
-			<<if $activeSlave.fetishKnown == 1>>$He can't really think of how to accommodate the situation to $his own preferred approach to sex,<<else>>$He isn't well versed in how $his own sexual needs might fit into the situation,<</if>> so $he just services you like a good $girl. $He turns around and sits on <<if $PC.dick != 0>>your cock<<else>>the phallus<</if>>,
-			<<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>>
-				squatting to bounce $his cunt up and down on it.
-				<<= VCheck.Vaginal()>>
-			<<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>>
-				squatting to bounce $his butthole up and down on it.
-				<<= VCheck.Anal()>>
-			<<else>>
-				putting it between $his thighs for some intercrural sex, since $his <<if $activeSlave.vagina > -1>>holes aren't<<else>>hole isn't<</if>> appropriate.
-			<</if>>
-			When $he's gotten you off, $he @@.mediumaquamarine;thanks you trustingly.@@ Even though $he wasn't able to figure out how to seat $himself in a really satisfactorily sexy way, $he's glad you gave $him some agency.
-		<</if>>
-	<</replace>>
-	<<set $activeSlave.trust += 5>>
-<</link>>
-<br><<link "Have $him service you while you work">>
-	<<replace "#result">>
-		You order $him to sit on your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> and get you off like a good $girl, but not to disturb you while you're working. $He <<if canTalk($activeSlave)>>shuts up immediately<<else>>obediently drops $his hand<<if hasBothArms($activeSlave)>>s<</if>> to $his side<<if hasBothArms($activeSlave)>>s<</if>> and stops communicating with them<</if>>, and approaches you carefully. Meanwhile, you go back to your tablet, ignoring $him completely. $He gingerly straddles your legs, positioning $his intimate areas directly over the pointing head of <<if $PC.dick != 0>>your erection<<else>>the phallus<</if>><<if $activeSlave.belly >= 5000>>, all while delicately trying to not bump into you with $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><</if>>. Deciding that $he shouldn't use $his hand<<if hasBothArms($activeSlave)>>s<</if>> to guide it, $he lowers $himself slowly,
-		<<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>>
-			breathing a little harder as $he feels its head spread $his pussylips and then slide inside $him.
-			<<= VCheck.Vaginal()>>
-		<<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>>
-			letting out a breath and relaxing as $he feels its head press past $his sphincter and then all the way up $his butt.
-			<<= VCheck.Anal()>>
-		<<else>>
-			getting it situated between $his thighs, since that's the best option $he has available.
-		<</if>>
-		<<if $activeSlave.belly >= 5000>>Before starting to pleasure you, $he notices there is no way $he can move with $his rounded middle sticking out as far as it does. $He carefully turns around, feeling your glare on $his back at $his mistake.<</if>>
-		Still crouched over you, $he begins to move up and down, milking <<if $PC.dick != 0>>your penis<<else>>the strap-on<</if>>. As $he works into it, $he lets $his butt touch you, just once, but you make a nonverbal sound of disapproval, letting $him know not to disturb your work like that. Realizing that $he needs to play the human sex toy, $he
-		<<if $activeSlave.butt > 12>>
-			grabs $his massive buttocks and finds that there is no way $he can keep the expanses of flesh from enveloping your lap.
-		<<elseif $activeSlave.butt > 5>>
-			grabs $his huge buttocks and holds them apart, doing $his best to keep them out of the way.
-		<<elseif $activeSlave.butt > 2>>
-			takes hold of $his healthy asscheeks and spreads them as far as they'll go, doing $his best to keep them out of the way.
-		<<else>>
-			uses $his arms for balance, since $his cute butt can stay out of the way on its own and doesn't need to be spread by hand.
-		<</if>>
-		<<if $activeSlave.belly >= 10000>> You spread your legs as you shift into a more comfortable position, stealthily showing mercy since $he can't possibly keep $his <<if $activeSlave.bellyPreg >= 3000>>full-term belly<<else>>_belly belly<</if>> off you otherwise.<</if>> $He bobs up and down, getting you off without ever touching you<<if $PC.dick != 0>>, other than the contact between your penis and the inside of $his body, of course<</if>>.
-		<<if $activeSlave.energy > 80>>
-			$He has such a powerful sex drive that even this sterile intercourse brings $him to orgasm.
-		<<elseif (!App.Utils.hasNonassignmentSex($activeSlave))>>
-			$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 $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 $him off for breaking in on your work">>
-	<<replace "#result">>
-		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>>
-			monstrous bottom.
-		<<elseif $activeSlave.butt > 2>>
-			womanly butt.
-		<<else>>
-			cute little rear end.
-		<</if>>
-		$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 under<<s>>tand. 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>>
-
 <<case "arcade sadist">>
 
 <<link "Ask $him about $his fantasy">>
diff --git a/src/uncategorized/costsBudget.js b/src/uncategorized/costsBudget.js
index 3224707be519c0ed375fafc89c5e471212833b88..99e0a69c50b07255a3680793125387601e4a5a67 100644
--- a/src/uncategorized/costsBudget.js
+++ b/src/uncategorized/costsBudget.js
@@ -82,7 +82,7 @@ App.UI.Budget.Cost = function() {
 
 	// CONCUBINE
 	generateRowGroup("Master Suite", "MASTERSUITE");
-	generateRowCategory("Master Suite Maintenance", "masterSuite");
+	generateRowCategory("Master Suite Operation", "masterSuite");
 	generateRowCategory("Master Suite Concubine", "slaveAssignmentConcubine");
 	generateRowCategory("Master Suite Fucktoys", "slaveAssignmentMastersuite");
 
@@ -93,12 +93,12 @@ App.UI.Budget.Cost = function() {
 
 	// ARCADE
 	generateRowGroup(V.arcadeNameCaps, "ARCADE");
-	generateRowCategory("Arcade Maintenance", "arcade");
+	generateRowCategory("Arcade Operation", "arcade");
 	generateRowCategory("Arcade Fuckdolls", "slaveAssignmentArcade");
 
 	// BROTHEL
 	generateRowGroup(V.brothelNameCaps, "BROTHEL");
-	generateRowCategory("Brothel Maintenance", "brothel");
+	generateRowCategory("Brothel Operation", "brothel");
 	generateRowCategory("Brothel Madam", "slaveAssignmentMadam");
 	generateRowCategory("Brothel MadamVign", "slaveAssignmentMadamVign");
 	generateRowCategory("Brothel Whore", "slaveAssignmentBrothel");
@@ -107,13 +107,13 @@ App.UI.Budget.Cost = function() {
 
 	// CELLBLOCK
 	generateRowGroup(V.cellblockNameCaps, "CELLBLOCK");
-	generateRowCategory("Cellblock Maintenance", "cellblock");
+	generateRowCategory("Cellblock Operation", "cellblock");
 	generateRowCategory("Cellblock Warden", "slaveAssignmentWarden");
 	generateRowCategory("Cellblock Slaves", "slaveAssignmentCellblock");
 
 	// CLUB
 	generateRowGroup(V.clubNameCaps, "CLUB");
-	generateRowCategory("Club Maintenance", "club");
+	generateRowCategory("Club Operation", "club");
 	generateRowCategory("Club DJ", "slaveAssignmentDj");
 	generateRowCategory("Club DJVign", "slaveAssignmentDjVign");
 	generateRowCategory("Club Public", "slaveAssignmentClub");
@@ -122,63 +122,63 @@ App.UI.Budget.Cost = function() {
 
 	// CLINIC
 	generateRowGroup(V.clinicNameCaps, "CLINIC");
-	generateRowCategory("Clinic Maintenance", "clinic");
+	generateRowCategory("Clinic Operation", "clinic");
 	generateRowCategory("Clinic Nurse", "slaveAssignmentNurse");
 	generateRowCategory("Clinic Slaves", "slaveAssignmentClinic");
 
 	// DAIRY
 	generateRowGroup(V.dairyNameCaps, "DAIRY");
-	generateRowCategory("Dairy Maintenance", "dairy");
+	generateRowCategory("Dairy Operation", "dairy");
 	generateRowCategory("Dairy Milkmaid", "slaveAssignmentMilkmaid");
 	generateRowCategory("Dairy Cows", "slaveAssignmentDairy");
 	generateRowCategory("Dairy Cows", "slaveAssignmentDairyVign");
 
 	// FARMYARD
 	generateRowGroup(V.farmyardNameCaps, "FARMYARD");
-	generateRowCategory("Farmyard Maintenance", "farmyard");
+	generateRowCategory("Farmyard Operation", "farmyard");
 	generateRowCategory("Farmyard Farmer", "slaveAssignmentFarmer");
 	generateRowCategory("Farmyard Farmhands", "slaveAssignmentFarmyard");
 	generateRowCategory("Farmyard FarmhandsVign", "slaveAssignmentFarmyardVign");
 
 	// INCUBATOR
 	generateRowGroup(V.incubatorNameCaps, "INCUBATOR");
-	generateRowCategory("Incubator Maintenance", "incubator");
+	generateRowCategory("Incubator Operation", "incubator");
 	generateRowCategory("Incubator Babies", "incubatorSlaves");
 
 	// NURSERY
 	generateRowGroup(V.nurseryNameCaps, "NURSERY");
-	generateRowCategory("Nursery Maintenance", "nursery");
+	generateRowCategory("Nursery Operation", "nursery");
 	generateRowCategory("Nursery Matron", "slaveAssignmentMatron");
 	generateRowCategory("Nursery Nannies", "slaveAssignmentNursery");
 	generateRowCategory("Nursery NanniesVign", "slaveAssignmentNurseryVign");
 
 	// PIT
 	generateRowGroup(V.pitNameCaps, "PIT");
-	generateRowCategory("Pit Maintenance", "pit");
+	generateRowCategory("Pit Operation", "pit");
 
 	// PROSTHETIC LAB
 	generateRowGroup("Prosthetic Lab", "PROSTHETICLAB");
-	generateRowCategory("Prosthetic Lab Maintenance", "lab");
+	generateRowCategory("Prosthetic Lab Operation", "lab");
 	generateRowCategory("Prostethic Lab Research", "labResearch");
 	generateRowCategory("Prostethic Lab Scientists", "labScientists");
 	generateRowCategory("Prostethic Lab Menials", "labMenials");
 
 	// SCHOOLROOM
 	generateRowGroup(V.schoolroomNameCaps, "SCHOOLROOM");
-	generateRowCategory("Schoolroom Maintenance", "school");
+	generateRowCategory("Schoolroom Operation", "school");
 	generateRowCategory("Schoolroom Teacher", "slaveAssignmentTeacher");
 	generateRowCategory("Schoolroom Students", "slaveAssignmentSchool");
 
 	// SERVANTS' QUARTERS
 	generateRowGroup(V.servantsQuartersNameCaps, "SERVANTSQUARTERS");
-	generateRowCategory("Servants' Quarters Maintenance", "servantsQuarters");
+	generateRowCategory("Servants' Quarters Operation", "servantsQuarters");
 	generateRowCategory("Servants' Quarters Steward", "slaveAssignmentSteward");
 	generateRowCategory("Servants' Quarters Servants", "slaveAssignmentQuarter");
 	generateRowCategory("Servants' Quarters ServantsVign", "slaveAssignmentQuarterVign");
 
 	// SPA
 	generateRowGroup(V.spaNameCaps, "SPA");
-	generateRowCategory("Spa Maintenance", "spa");
+	generateRowCategory("Spa Operation", "spa");
 	generateRowCategory("Spa Attendant", "slaveAssignmentAttendant");
 	generateRowCategory("Spa Slaves", "slaveAssignmentSpa");
 
diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw
index f971c456965480b4182a2adfa960e35b175656df..5b365daa246306f026575687ddd11c9cb3f83d64 100644
--- a/src/uncategorized/costsReport.tw
+++ b/src/uncategorized/costsReport.tw
@@ -7,7 +7,7 @@
 	<<capture $i>>
 		<br style="clear:both"><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>>
 		[[$slaves[$i].slaveName|Slave Interact][$activeSlave = $slaves[$i]]] will $slaves[$i].assignment.
-		<<SlaveExpenses $slaves[$i]>>
+		<<includeDOM SlaveExpenses (V.slaves[V.i])>>
 	<</capture>>
 <</for>>
 
diff --git a/src/uncategorized/costsReportSlaves.tw b/src/uncategorized/costsReportSlaves.tw
index 3399fecd92dfe8a6509c01412263bd4e8a05718d..ae0467edc474f629deb9c74255662f840c8890c3 100644
--- a/src/uncategorized/costsReportSlaves.tw
+++ b/src/uncategorized/costsReportSlaves.tw
@@ -8,6 +8,6 @@
 	<<capture $i>>
 	<br style="clear:both"><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>>
 	[[$slaves[$i].slaveName|Slave Interact][$activeSlave = $slaves[$i]]] will $slaves[$i].assignment.
-	<<SlaveExpenses $slaves[$i]>>
+	<<includeDOM SlaveExpenses (V.slaves[V.i])>>
 	<</capture>>
 <</for>>
diff --git a/src/uncategorized/costsWidgets.tw b/src/uncategorized/costsWidgets.tw
deleted file mode 100644
index 5b69bd2fa6c132cb49c48e662134f34ac6c0190a..0000000000000000000000000000000000000000
--- a/src/uncategorized/costsWidgets.tw
+++ /dev/null
@@ -1,145 +0,0 @@
-:: Cost widgets [nobr widget]
-
-<<widget "SlaveExpenses">>
-	<<set _individualCosts = 0>>
-	<<setLocalPronouns $args[0]>>
-
-	/* Generate the lines of the report */
-	<<for _line range getSlaveCostArray($args[0])>>
-		<div class="indent">
-			<<= _line.text>>: <<=cashFormatColor(_line.value)>>
-		</div>
-	<</for>>
-
-	/* Total expenses */
-	<<set _individualCosts = Math.trunc(getSlaveCost($args[0]))>>
-	<div class="double-indent">
-		__Predicted expense__: @@.red;<<print cashFormat(Math.trunc(_individualCosts))>>@@
-	</div>
-
-	/* Income from last week vs expense gives net, assistant gated */
-	<<if $assistant.power > 0>>
-		<<if $args[0].lastWeeksCashIncome > 0>>
-			<div class="indent">
-				Income: <<print cashFormatColor($args[0].lastWeeksCashIncome)>>
-			</div>
-			<<set _total = (Math.trunc($args[0].lastWeeksCashIncome - _individualCosts))>>
-			<div class="double-indent">
-				__Total__: <<print cashFormatColor(Math.trunc(_total))>>
-			</div>
-		<</if>>
-	<</if>>
-	<<SlaveExpensesExtra $args[0]>>
-<</widget>>
-
-<<widget "SlaveExpensesExtra">>
-	<<setLocalPronouns $args[0]>>
-	/* Background and original cost */
-	<<if $args[0].origin != 0>>
-		<div class="indent">
-			$args[0].origin
-		</div>
-	<</if>>
-	<div class="indent">
-		<<if $args[0].slaveCost < 0>>
-			You bought $him for: @@.red;<<print cashFormat($args[0].slaveCost)>>.@@
-			<<set _Cost = $args[0].slaveCost>>
-		<<elseif $args[0].slaveCost == 0>>
-			You spent nothing to acquire $him.
-			<<set _Cost = $args[0].slaveCost>>
-		<<else>>
-			You have no record of how much <<if $args[0].origin != 0>>this<<else>>$he originally<</if>> cost.
-			<<set _Cost = 0>>
-		<</if>>
-	</div>
-
-	/* Lifetime totals, assistant gated */
-	<<if $assistant.power > 0>>
-		<<set _weeksOwned = $week - $args[0].weekAcquired>>
-		/* Lifetime expense */
-		<div class="indent">
-			<<if $args[0].lifetimeCashExpenses < 0>>
-				In $his <<if _weeksOwned > 0>>_weeksOwned <<if _weeksOwned == 1>>week<<else>>weeks<</if>><<else>>time<</if>> with you, $he has cost @@.red;<<print cashFormat($args[0].lifetimeCashExpenses)>>.@@
-				<<set _Expense = $args[0].lifetimeCashExpenses>>
-			<<else>>
-				You have no record of $him costing you any ¤.
-				<<set _Expense = 0>>
-			<</if>>
-		</div>
-
-		/* Lifetime income */
-		<div class="indent">
-			<<if $args[0].lifetimeCashIncome > 0>>
-				In $his <<if _weeksOwned > 0>>_weeksOwned <<if _weeksOwned == 1>>week<<else>>weeks<</if>><<else>>time<</if>> with you, $he has earned @@.yellowgreen;<<print cashFormat($args[0].lifetimeCashIncome)>>.@@
-				<<set _Income = $args[0].lifetimeCashIncome>>
-			<<else>>
-				You have no record of $him making you any ¤.
-				<<set _Income = 0>>
-			<</if>>
-		</div>
-
-		/* Lifetime total */
-		<div class="indent">
-			Overall,
-			<<if (_Income + _Cost + _Expense) > 0>>
-				you have made @@.yellowgreen;<<print cashFormat(_Income + _Cost + _Expense)>>@@ net from $his labors.
-			<<elseif (_Income + _Cost + _Expense) == 0>>
-				$he is even in cost and income.
-			<<else>>
-				$he has cost you @@.red;<<print cashFormat(_Income + _Cost + _Expense)>>.@@
-			<</if>>
-		</div>
-
-		/* Reputation: */
-		<div>
-			<<if ($args[0].lifetimeRepIncome != 0 || $args[0].lifetimeRepExpenses != 0)>>
-				<<set _repTotal = ($args[0].lifetimeRepIncome + $args[0].lifetimeRepExpenses)>>
-				<<if ($cheatMode == 1 || $debugMode == 1)>>
-					<<if $args[0].lifetimeRepIncome != 0>>
-						<div class="indent">
-							This week $he has
-							<<if $args[0].lastWeeksRepIncome == 0>>
-								had no positive effect on your reputation, but
-							<<else>>
-								improved your reputation by @@.green;<<print num($args[0].lastWeeksRepIncome)>>@@ and
-							<</if>>
-							over $his entire time with you, $he gained @@.green;<<print num($args[0].lifetimeRepIncome)>>.@@
-						</div>
-					<</if>>
-					<<if $args[0].lifetimeRepExpenses != 0>>
-						<div class="indent">
-							This week $he has
-							<<if $args[0].lastWeeksRepExpenses == 0>>
-								had no negative effect on your reputation, but
-							<<else>>
-								lowered your reputation by @@.red;<<print num($args[0].lastWeeksRepExpenses)>>@@ and
-							<</if>>
-							over $his entire time with you, $he cost @@.red;<<print num($args[0].lifetimeRepExpenses)>>.@@
-						</div>
-					<</if>>
-					<div class="indent">
-						Overall then, $he has changed your reputation by
-						<<if _repTotal > 0>>
-							@@.green;<<print num(_repTotal)>>@@
-						<<elseif _repTotal < 0>>
-							@@.red;<<print num(_repTotal)>>@@
-						<<else>>
-							<<print num(_repTotal)>>
-						<</if>>
-					</div>
-				<<else>> /* lowercasedonkey: TODO: I don't like how vague my placeholder is. Probably need to set up some kind of sliding scale to describe how much rep (roughly) she has made or lost. Need to get a sense of common ranges. */
-					<div class="indent">
-						Overall, $he has
-						<<if _repTotal == 0>>
-							had no impact on your reputation.
-						<<elseif _repTotal > 0>>
-							@@.green;increased@@ your reputation.
-						<<elseif _repTotal < 0>>
-							@@.red;decreased@@ your reputation.
-						<</if>>
-					</div>
-				<</if>>
-			<</if>>
-		</div>
-	<</if>>
-<</widget>>
diff --git a/src/uncategorized/pBioreactorPerfected.tw b/src/uncategorized/pBioreactorPerfected.tw
index 6400df20ac5ace1511c5831d8294429a6fb33718..68a0cc811044ded79c58461d98a6dc3d886ee756 100644
--- a/src/uncategorized/pBioreactorPerfected.tw
+++ b/src/uncategorized/pBioreactorPerfected.tw
@@ -238,6 +238,6 @@ You stop and consider the cow, from $his titanic breasts to $his <<if ($activeSl
 	<div class="indent">
 		$His current task is to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>.
 	</div>
-	<<SlaveExpenses $activeSlave>>
+	<<includeDOM slaveExpenses(V.activeSlave)>>
 </div>
 <</if>> /* closes validity check */
diff --git a/src/uncategorized/pMercenaryRomeo.tw b/src/uncategorized/pMercenaryRomeo.tw
index e44f9645d50b45dcfa4fc73f8adf1528ecce805f..f0e7363898e764ce86bd6cf5f00c083ef57a6d13 100644
--- a/src/uncategorized/pMercenaryRomeo.tw
+++ b/src/uncategorized/pMercenaryRomeo.tw
@@ -132,7 +132,7 @@ proffered by an attentive slave _girlU, he seems almost bashful.
 		<div class="indent">
 			$His current task is to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>.
 		</div>
-		<<SlaveExpensesExtra $activeSlave>>
+		<<includeDOM slaveImpactLongTerm(V.activeSlave)>>
 	</div>
 
 <</if>>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index 563471bbca377f6db3916ebfc2a8ae2fa6393ff7..17f1785363d4cb98d9102f8b3a395fde3980e2a5 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -4834,9 +4834,8 @@
 								<<set $slaves[$i].trust -= 4>>
 								<<set _studVaginal = 1>>
 							<<else>>
-								$slaves[$i].slaveName finds _Stud.slaveName is in a similar situation as $he is, so the two of them try to make it as @@.mediumaquamarine;mutuably enjoyable as possible,@@ despite the awkwardness involved, while trying their best to overlook that _Stud.slaveName is being forced to @@.lime;impregnate $him.@@
+								$slaves[$i].slaveName finds _Stud.slaveName is in a similar situation as $he is, so $he tries to make it as @@.mediumaquamarine;mutuably enjoyable as possible,@@ despite the awkwardness involved, while trying $his best to overlook that _Stud.slaveName is being forced to @@.lime;impregnate $him.@@
 								<<set $slaves[$i].trust += 4>>
-								<<set _Stud.trust += 4>>
 								<<set $slaves[$i].need = 0>>
 							<</if>>
 						<<elseif ($slaves[$i].devotion <= 20)>>
@@ -4844,9 +4843,8 @@
 								$slaves[$i].slaveName, though fearfully obedient, is not happy with being bred, so _Stud.slaveName is forced to @@.mediumorchid;rape the poor $girl@@ pregnant, regularly squirting cum into $his <<if $slaves[$i].mpreg == 1>>ass<</if>>pussy until @@.lime;conception@@ is confirmed.
 								<<set $slaves[$i].devotion -= 4>>
 							<<else>>
-								_Stud.slaveName doesn't want to do this and shows mercy to the pitiable $slaves[$i].slaveName, @@.mediumorchid;reinforcing their dislike of you.@@ _He2 still has to @@.lime;force $him to bear _his2 child,@@ however.
-								<<set $slaves[$i].devotion -= 4>>
-								<<set _Stud.devotion -= 4>>
+								$slaves[$i].slaveName finds that _Stud.slaveName is less than enthusiastic about fucking $him, @@.mediumorchid;making the resulting rape extra unpleasant@@ when _he2 @@.lime;forces a baby into $him.@@
+								<<set $slaves[$i].devotion -= 6>>
 							<</if>>
 						<<elseif ($slaves[$i].devotion <= 75)>>
 							<<if ($slaves[$i].fetish == "pregnancy") && ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
@@ -4915,9 +4913,8 @@
 								<<set $slaves[$i].devotion -= 4>>
 								<<set _rapeAddsFlaw = 1>>
 							<<else>>
-								$slaves[$i].slaveName finds _Stud.slaveName is in a similar situation as $he is, so the two of them try to make it as @@.mediumaquamarine;mutuably enjoyable as possible@@ while trying their best to overlook that _Stud.slaveName is being forced to @@.lime;impregnate $him.@@
+								$slaves[$i].slaveName finds _Stud.slaveName is in a similar situation as $he is, so $he tries to make it as @@.mediumaquamarine;mutuably enjoyable as possible,@@ despite the awkwardness involved, while trying $his best to overlook that _Stud.slaveName is being forced to @@.lime;impregnate $him.@@
 								<<set $slaves[$i].trust += 4>>
-								<<set _Stud.trust += 4>>
 								<<set $slaves[$i].need = 0>>
 							<</if>>
 						<<elseif ($slaves[$i].devotion <= 20)>>
@@ -4926,9 +4923,8 @@
 								<<set $slaves[$i].devotion -= 4>>
 								<<set _rapeAddsFlaw = 1>>
 							<<else>>
-								_Stud.slaveName doesn't want to do this and shows mercy to the pitiable $slaves[$i].slaveName, @@.mediumorchid;reinforcing their dislike of you.@@ _He2 still has to @@.lime;force $him to bear _his2 child,@@ however.
-								<<set $slaves[$i].devotion -= 4>>
-								<<set _Stud.devotion -= 4>>
+								$slaves[$i].slaveName finds that _Stud.slaveName is less than enthusiastic about fucking $him, @@.mediumorchid;making the resulting rape extra unpleasant@@ when _he2 @@.lime;forces a baby into $him.@@
+								<<set $slaves[$i].devotion -= 6>>
 							<</if>>
 						<<elseif ($slaves[$i].devotion <= 75)>>
 							<<if ($slaves[$i].fetish == "pregnancy") && ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
@@ -5000,9 +4996,8 @@
 								<<set _studPenetrative = 1>>
 								<<set _studTakesV = 1>>
 							<<else>>
-								$slaves[$i].slaveName finds _Stud.slaveName is in a similar situation as $he is, so the two of them try to make it as @@.mediumaquamarine;mutuably enjoyable as possible@@ while trying their best to overlook that _Stud.slaveName is being forced to @@.lime;impregnate $him.@@
+								$slaves[$i].slaveName finds _Stud.slaveName is in a similar situation as $he is, so $he tries to make it as @@.mediumaquamarine;mutuably enjoyable as possible,@@ despite the awkwardness involved, while trying $his best to overlook that _Stud.slaveName is being forced to @@.lime;impregnate $him.@@
 								<<set $slaves[$i].trust += 4>>
-								<<set _Stud.trust += 4>>
 								<<set $slaves[$i].need = 0>>
 								<<set _studPenetrative = 1>>
 							<</if>>
@@ -5011,9 +5006,8 @@
 								$slaves[$i].slaveName, though fearfully obedient, is not happy with being bred, so _Stud.slaveName is forced to @@.mediumorchid;rape the poor $girl@@ pregnant, regularly squirting cum into $his <<if $slaves[$i].mpreg == 1>>ass<</if>>pussy until @@.lime;conception@@ is confirmed.
 								<<set $slaves[$i].devotion -= 4>>
 							<<else>>
-								_Stud.slaveName doesn't want to do this and shows mercy to the pitiable $slaves[$i].slaveName, @@.mediumorchid;reinforcing their dislike of you.@@ _He2 still has to @@.lime;force $him to bear _his2 child,@@ however.
-								<<set $slaves[$i].devotion -= 4>>
-								<<set _Stud.devotion -= 4>>
+								$slaves[$i].slaveName finds that _Stud.slaveName is less than enthusiastic about fucking $him, @@.mediumorchid;making the resulting rape extra unpleasant@@ when _he2 @@.lime;forces a baby into $him.@@
+								<<set $slaves[$i].devotion -= 6>>
 							<</if>>
 						<<elseif ($slaves[$i].devotion <= 75)>>
 							<<if ($slaves[$i].fetish == "pregnancy") && ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
diff --git a/src/uncategorized/seExpiration.tw b/src/uncategorized/seExpiration.tw
index 6a5d5cc47662078b2e137cf10c2d2618190034ab..df473743b1d393701a3decff38957bc84caf4085 100644
--- a/src/uncategorized/seExpiration.tw
+++ b/src/uncategorized/seExpiration.tw
@@ -202,5 +202,5 @@ at the moment of $his scheduled emancipation, $he seems willing to consider a sh
 	<div class="indent">
 		$His most recent task was to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>.
 	</div>
-	<<SlaveExpensesExtra $activeSlave>>
+	<<includeDOM slaveImpactLongTerm(V.activeSlave)>>
 </div>
\ No newline at end of file
diff --git a/src/uncategorized/seRetirement.tw b/src/uncategorized/seRetirement.tw
index 560bf85bcb33e1af1f5307509444a958e7b0726c..c38103479688aa2a09fe03b2a6431168674a2252 100644
--- a/src/uncategorized/seRetirement.tw
+++ b/src/uncategorized/seRetirement.tw
@@ -388,7 +388,7 @@
 	<div class="indent">
 		$His most recent task was to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>.
 	</div>
-	<<SlaveExpensesExtra $activeSlave>>
+	<<includeDOM slaveImpactLongTerm(V.activeSlave)>>
 </div>
 
 <<if $retired == 0>> /* retiring during the end week */
diff --git a/src/uncategorized/sellSlave.tw b/src/uncategorized/sellSlave.tw
index 4f3cf2cec05a3151f1d9ffef912f17d8df843cc7..0007e6b30a74a330ead71c95a2d5f4ee14e0c042 100644
--- a/src/uncategorized/sellSlave.tw
+++ b/src/uncategorized/sellSlave.tw
@@ -728,7 +728,7 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu
 
 <br><br>
 __Financial Records__
-<<SlaveExpenses $activeSlave>>
+<<includeDOM slaveExpenses(V.activeSlave)>>
 
 <</if>> /* CLOSES APPRAISAL */
 <</if>> /* closes breeding mark */
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 23f69235becfe32ed3c72112c6c6c0302c1b521a..b1e4f5796a89830351634b5ffd4e35321cfaa205 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -259,125 +259,8 @@
 
 <div id="Rules" class="tabcontent">
 	<div class="content">
-		<p>
-			<<if $seePreg != 0>>
-				<<if $universalRulesImpregnation == "HG">>
-					<<if getSlave($AS).HGExclude == 0>>
-						Will be bred by the Head Girl when fertile. <<link "Exempt $him" "Slave Interact">><<set getSlave($AS).HGExclude = 1>><</link>>
-					<<else>>
-						Will not be bred by the Head Girl when fertile. <<link "Include $him" "Slave Interact">><<set getSlave($AS).HGExclude = 0>><</link>>
-					<</if>>
-				<<elseif $universalRulesImpregnation == "Stud">>
-					<<if getSlave($AS).StudExclude == 0>>
-						Will be bred by your Stud when fertile. <<link "Exempt $him" "Slave Interact">><<set getSlave($AS).StudExclude = 1>><</link>>
-					<<else>>
-						Will not be bred by your Stud when fertile. <<link "Include $him" "Slave Interact">><<set getSlave($AS).StudExclude = 0>><</link>>
-					<</if>>
-				<</if>>
-			<</if>>
-		</p>
-
-		<p>
-			<<if getSlave($AS).useRulesAssistant == 0>>
-				<span class="gray">
-					''Not subject'' to the Rules Assistant.
-				</span>
-				<<link "Include $him" "Slave Interact">>
-					<<set getSlave($AS).useRulesAssistant = 1>>
-				<</link>>
-			<<else>>
-				__Rules Assistant:__ [[Rules Assistant Options|Rules Assistant]]
-
-				<<if (def getSlave($AS).currentRules) && (getSlave($AS).currentRules.length > 0)>>
-					<ul style="margin:0">
-						<<= $defaultRules.filter(x => ruleApplied(getSlave($AS), x)).map(x => `<li>Rule "${x.name}" applied</li>`).join(" ") >>
-					</ul>
-				<<else>>
-					|
-				<</if>>
-				<span style="font-style:italic">
-					<<link "Apply rules">>
-						<<run DefaultRules(getSlave($AS))>>
-						<<goto "Slave Interact">>
-					<</link>>
-				</span>
-				|
-				<<link "Exempt $him" "Slave Interact">>
-					<<set getSlave($AS).useRulesAssistant = 0>>
-				<</link>>
-			<</if>>
-		</p>
-		<<if getSlave($AS).fuckdoll > 0>>
-			//Rules have little meaning for living sex toys//
-		<<else>>
-			<<run penthouseCensus()>>
-
-			Living standard: <span id="livingRules" style="font-weight:bold"><<= getSlave($AS).rules.living>></span>.
-			<<if setup.facilityCareers.includes(getSlave($AS).assignment)>>
-				//$His living conditions are managed by $his assignment.//
-			<<elseif (getSlave($AS).assignment == "be your Head Girl") && ($HGSuite == 1)>>
-				//$He has $his own little luxurious room in the penthouse with everything $he needs to be a proper Head Girl.//
-			<<elseif (getSlave($AS).assignment == "guard you") && ($dojo > 1)>>
-				//$He has a comfortable room in the armory to call $his own.//
-			<<else>>
-				<<link "Spare">><<set getSlave($AS).rules.living = "spare">><<replace "#livingRules">><<= getSlave($AS).rules.living>><</replace>><</link>> |
-				<<link "Normal">><<set getSlave($AS).rules.living = "normal">><<replace "#livingRules">><<= getSlave($AS).rules.living>><</replace>><</link>> |
-				<<if $roomsPopulation <= $rooms-0.5>><<link "Luxurious">><<set getSlave($AS).rules.living = "luxurious">><<replace "#livingRules">><<= getSlave($AS).rules.living>><</replace>><</link>><<else>>//No luxurious rooms available//<</if>>
-			<</if>>
-
-			<<if $cheatMode>>
-			<<if ["be a servant", "get milked", "please you", "serve in the club", "serve the public", "whore", "work as a farmhand", "work in the brothel", "work in the dairy", "work a glory hole"].includes($activeSlave.assignment)>>
-				<br>Sleep rules: <span id="restRules" style="font-weight:bold"><<= getSlave($AS).rules.rest>></span>.
-				<<link "None">><<set getSlave($AS).rules.rest = "none">><<replace "#restRules">><<= getSlave($AS).rules.rest>><</replace>><</link>> |
-				<<link "Cruel">><<set getSlave($AS).rules.rest = "cruel">><<replace "#restRules">><<= getSlave($AS).rules.rest>><</replace>><</link>> |
-				<<link "Restrictive">><<set getSlave($AS).rules.rest = "restrictive">><<replace "#restRules">><<= getSlave($AS).rules.rest>><</replace>><</link>> |
-				<<link "Permissive">><<set getSlave($AS).rules.rest = "permissive">><<replace "#restRules">><<= getSlave($AS).rules.rest>><</replace>><</link>> |
-				<<link "Mandatory">><<set getSlave($AS).rules.rest = "mandatory">><<replace "#restRules">><<= getSlave($AS).rules.rest>><</replace>><</link>>
-			<</if>>
-			<</if>>
-
-			<br>Typical punishment: <span id="standardPunishment" style="font-weight:bold"><<= getSlave($AS).rules.punishment>></span>.
-			<<link "Confinement">><<set getSlave($AS).rules.punishment = "confinement">><<replace "#standardPunishment">><<= getSlave($AS).rules.punishment>><</replace>><</link>> |
-			<<link "Whipping">><<set getSlave($AS).rules.punishment = "whipping">><<replace "#standardPunishment">><<= getSlave($AS).rules.punishment>><</replace>><</link>> |
-			<<link "Chastity">><<set getSlave($AS).rules.punishment = "chastity">><<replace "#standardPunishment">><<= getSlave($AS).rules.punishment>><</replace>><</link>> |
-			<<link "Situational">><<set getSlave($AS).rules.punishment = "situational">><<replace "#standardPunishment">><<= getSlave($AS).rules.punishment>><</replace>><</link>>
-			<br>Typical reward: <span id="standardReward" style="font-weight:bold"><<= getSlave($AS).rules.reward>></span>.
-			<<link "Relaxation">><<set getSlave($AS).rules.reward = "relaxation">><<replace "#standardReward">><<= getSlave($AS).rules.reward>><</replace>><</link>> |
-			<<link "Drugs">><<set getSlave($AS).rules.reward = "drugs">><<replace "#standardReward">><<= getSlave($AS).rules.reward>><</replace>><</link>> |
-			<<link "Orgasm">><<set getSlave($AS).rules.reward = "orgasm">><<replace "#standardReward">><<= getSlave($AS).rules.reward>><</replace>><</link>> |
-			<<link "Situational">><<set getSlave($AS).rules.reward = "situational">><<replace "#standardReward">><<= getSlave($AS).rules.reward>><</replace>><</link>>
-
-
-			<<if getSlave($AS).lactation != 2>>
-				<br>Lactation maintenance: <span id="lactationRules" style="font-weight:bold"><<= getSlave($AS).rules.lactation>></span>.
-				<<link "Left alone">><<set getSlave($AS).rules.lactation = "none">><<replace "#lactationRules">><<= getSlave($AS).rules.lactation>><</replace>><</link>> |
-				<<if getSlave($AS).lactation == 0>>
-					<<link "Induce lactation">><<set getSlave($AS).rules.lactation = "induce">><<replace "#lactationRules">><<= getSlave($AS).rules.lactation>><</replace>><</link>>
-				<<else>>
-					<<link "Maintain lactation">><<set getSlave($AS).rules.lactation = "maintain">><<replace "#lactationRules">><<= getSlave($AS).rules.lactation>><</replace>><</link>>
-				<</if>>
-			<</if>>
-
-			<span id="orgasm"></span>
-			<script>App.UI.SlaveInteract.orgasm(getSlave(V.activeSlave.ID))</script>
-
-			<<if getSlave($AS).voice != 0>>
-				Speech rules: <span id="speechRules" style="font-weight:bold"><<= getSlave($AS).rules.speech>></span>.
-				<<link "Restrictive">><<set getSlave($AS).rules.speech = "restrictive">><<replace "#speechRules">><<= getSlave($AS).rules.speech>><</replace>><</link>> |
-				<<link "Permissive">><<set getSlave($AS).rules.speech = "permissive">><<replace "#speechRules">><<= getSlave($AS).rules.speech>><</replace>><</link>>
-				<<if getSlave($AS).accent > 0 && getSlave($AS).accent < 4>>| <<link "Accent elimination">><<set getSlave($AS).rules.speech = "accent elimination">><<replace "#speechRules">><<= getSlave($AS).rules.speech>><</replace>><</link>>
-				<<elseif getSlave($AS).accent > 3>>| <<link "Language lessons">><<set getSlave($AS).rules.speech = "language lessons">><<replace "#speechRules">><<= getSlave($AS).rules.speech>><</replace>><</link>>
-				<</if>>
-			<</if>>
-
-			<br>
-			Relationship rules: <span id="relationshipRules" style="font-weight:bold"><<= getSlave($AS).rules.relationship>></span>.
-			<<link "Restrictive">><<set getSlave($AS).rules.relationship = "restrictive">><<replace "#relationshipRules">><<= getSlave($AS).rules.relationship>><</replace>><</link>> |
-			<<link "Just friends">><<set getSlave($AS).rules.relationship = "just friends">><<replace "#relationshipRules">><<= getSlave($AS).rules.relationship>><</replace>><</link>> |
-			<<link "Permissive">><<set getSlave($AS).rules.relationship = "permissive">><<replace "#relationshipRules">><<= getSlave($AS).rules.relationship>><</replace>><</link>>
-		<</if>>
-		<span id="smartSettings"></span>
-		<script>App.UI.SlaveInteract.smartSettings(getSlave(V.activeSlave.ID))</script>
+		<span id="rules"></span>
+		<script>App.UI.SlaveInteract.rules(getSlave(V.activeSlave.ID))</script>
 	</div>
 </div>
 
@@ -441,7 +324,7 @@
 
 		<h3>Financial</h3>
 		<p>
-			<<SlaveExpenses $activeSlave>>
+			<<includeDOM slaveExpenses(V.activeSlave)>>
 		</p>
 
 		<p>