diff --git a/devNotes/AnatomyOfAFreeCitiesEvent.txt b/devNotes/AnatomyOfAFreeCitiesEvent.txt
index 0726e8066d9ba01c1a9699874c42b5b8a4b9345c..94f7ad994bfe187b118a7dd3953e6bf0e5ba4e86 100644
--- a/devNotes/AnatomyOfAFreeCitiesEvent.txt
+++ b/devNotes/AnatomyOfAFreeCitiesEvent.txt
@@ -95,50 +95,53 @@ Try to keep surprise buttsex to a minimum.
 For example this cut up version of "paternalist encounter" from REFS (l:106-139).
 
 	<span id="result">
-	<<link "Alert your drones and keep walking">>
-
-	<</link>>
-	<<if $cash >= 2000>>
-	<br><<link "Take the poor slave girl into your custody">>
-
-	<br><<link "Publicly confront the citizen">>
-
+		<<link "Alert your drones and keep walking">>
+		<</link>>
+		<<if $cash >= 2000>>
+			<br><<link "Take the poor slave $girl into your custody">>
+			<</link>>
+		<</if>>
+		<br><<link "Publicly confront the citizen">>
+		<</link>>
+	</span>
 	So here you can either, A) "Alert your drones and keep walking", B) if $cash is above 2000 you can take acquire the slave or C) "Publicly confront the citizen".
 
 Choice effect
 A choice doesn't need to have a specific effect. If your event has an immediate effect, remember to take that into account when you decide on the choice's effects.
 
 	<span id="result">
-	<<link "Alert your drones and keep walking">>
-	<<replace "#result">>
-	You inform $assistantName that you have a slave beater in need of detainment by your security drones, then continue on your way confident in your knowledge that the citizen will soon be in custody.
-	<</replace>>
-	<</link>>
-	<<if $cash >= 2000>>
-		<br><<link "Take the poor slave girl into your custody">>
-		<<replace "#result">>
-		Confronting the citizen is simplicity in itself; he would not dare defy you under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his degradationist behaviors. As such, you are able to take civil ownership over the poor slave girl and take her into your care with only minimal compensation to the citizen. As you stride away from her former owner with the girl in your arms, she leans over to plant a chaste kiss of thanks on your cheek.
-		<<set $cash -= 2000>>
-		<<set $activeSlaveOneTimeMaxAge = 22>>
-		<<set $activeSlave = GenerateNewSlave()>>
-		<<set $activeSlave.origin = "She was taken into your custody from an abusive owner.">>
-		<<set $activeSlave.devotion = random(-25,0)>>
-		<<set $activeSlave.trust = random(-25,0)>>
-		<<set $activeSlave.boobs = random(300,450)>>
-		<<set $activeSlave.hips = random(-2,-1)>>
-		<<set $activeSlave.butt = random(0,2)>>
-		<<set $activeSlave.health = random(10,20)>>
-		<<include "New Slave Intro">>
-		<<set $nextLink = "AS Dump", $returnTo = "RIE Eligibility Check">>
-		<</replace>>
-		<</link>> // Taking custody of the girl will cost ¤2000. //
-	<</if>>
-	<br><<link "Publicly confront the citizen">>
-	<<replace "#result">>
-	Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to shirk the law. To make it clear his next offense will be his last, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approves of your rebuke of the citizen@@.
-	<<set $rep += 500>>
-	<</replace>>
-	<</link>>
+		<<link "Alert your drones and keep walking">>
+			<<replace "#result">>
+				You inform $assistantName that you have a slave beater in need of detainment by your security drones, then continue on your way confident in your knowledge that the citizen will soon be in custody.
+			<</replace>>
+		<</link>>
+		<<if $cash >= 2000>>
+			<br><<link "Take the poor slave $girl into your custody">>
+				<<set $activeSlave.clothes = "no clothing">>
+				<<replace "#artFrame">>
+					/* 000-250-006 */
+					<<if $seeImages == 1>>
+						<<if $imageChoice == 1>>
+							<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+						<<else>>
+							<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+						<</if>>
+					<</if>>
+					/* 000-250-006 */
+				<</replace>>
+				<<replace "#result">>
+					Confronting the citizen is simplicity in itself; he would not dare defy you under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his degradationist behaviors. As such, you are able to take civil ownership over the poor slave $girl and take $him into your care with only minimal compensation to the citizen. As you stride away from $his former owner with the $girl in your arms, $he leans over to plant a chaste kiss of thanks on your cheek.
+					<<run cashX(-2000, "slaveTransfer", $activeSlave)>>
+					<<include "New Slave Intro">>
+				<</replace>>
+			<</link>> // Taking custody of the $girl will cost <<print cashFormat(2000)>>. //
+		<</if>>
+		<br><<link "Publicly confront the citizen">>
+			<<replace "#result">>
+				Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to shirk the law. To make it clear his next offense will be his last, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approve of your rebuke of the citizen.@@
+				<<run repX(2500, "event")>>
+			<</replace>>
+		<</link>>
 	</span>
 
 	So here the results of the choices are, A) nothing, B) reduce cash by 2000 but acquire the slave C) chastise the citizen for plus 500 rep.
diff --git a/src/uncategorized/REFS.tw b/src/uncategorized/REFS.tw
index 691aaf76893f91110b5179b159adbc38adc976da..806dbd9f317ce96c44a3255d6afb23f8a9a1130e 100644
--- a/src/uncategorized/REFS.tw
+++ b/src/uncategorized/REFS.tw
@@ -289,75 +289,75 @@
 <<case "paternalist encounter">>
 
 	<span id="result">
-	<<link "Alert your drones and keep walking">>
-		<<replace "#result">>
-		You inform $assistantName that you have a slave beater in need of detainment by your security drones, then continue on your way confident in your knowledge that the citizen will soon be in custody.
-		<</replace>>
-	<</link>>
-	<<if $cash >= 2000>>
-	<br><<link "Take the poor slave $girl into your custody">>
-		<<set $activeSlave.clothes = "no clothing">>
-		<<replace "#artFrame">>
-			/* 000-250-006 */
-			<<if $seeImages == 1>>
-				<<if $imageChoice == 1>>
-					<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
-				<<else>>
-					<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
-				<</if>>
-			<</if>>
-			/* 000-250-006 */
-		<</replace>>
-		<<replace "#result">>
-		Confronting the citizen is simplicity in itself; he would not dare defy you under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his degradationist behaviors. As such, you are able to take civil ownership over the poor slave $girl and take $him into your care with only minimal compensation to the citizen. As you stride away from $his former owner with the $girl in your arms, $he leans over to plant a chaste kiss of thanks on your cheek.
-		<<run cashX(-2000, "slaveTransfer", $activeSlave)>>
-		<<include "New Slave Intro">>
-		<</replace>>
-	<</link>> // Taking custody of the $girl will cost <<print cashFormat(2000)>>. //
-	<</if>>
-	<br><<link "Publicly confront the citizen">>
-		<<replace "#result">>
-		Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to shirk the law. To make it clear his next offense will be his last, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approve of your rebuke of the citizen.@@
-		<<run repX(2500, "event")>>
-		<</replace>>
-	<</link>>
+		<<link "Alert your drones and keep walking">>
+			<<replace "#result">>
+				You inform $assistantName that you have a slave beater in need of detainment by your security drones, then continue on your way confident in your knowledge that the citizen will soon be in custody.
+			<</replace>>
+		<</link>>
+		<<if $cash >= 2000>>
+			<br><<link "Take the poor slave $girl into your custody">>
+				<<set $activeSlave.clothes = "no clothing">>
+				<<replace "#artFrame">>
+					/* 000-250-006 */
+					<<if $seeImages == 1>>
+						<<if $imageChoice == 1>>
+							<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+						<<else>>
+							<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+						<</if>>
+					<</if>>
+					/* 000-250-006 */
+				<</replace>>
+				<<replace "#result">>
+					Confronting the citizen is simplicity in itself; he would not dare defy you under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his degradationist behaviors. As such, you are able to take civil ownership over the poor slave $girl and take $him into your care with only minimal compensation to the citizen. As you stride away from $his former owner with the $girl in your arms, $he leans over to plant a chaste kiss of thanks on your cheek.
+					<<run cashX(-2000, "slaveTransfer", $activeSlave)>>
+					<<include "New Slave Intro">>
+				<</replace>>
+			<</link>> // Taking custody of the $girl will cost <<print cashFormat(2000)>>. //
+		<</if>>
+		<br><<link "Publicly confront the citizen">>
+			<<replace "#result">>
+				Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to shirk the law. To make it clear his next offense will be his last, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approve of your rebuke of the citizen.@@
+				<<run repX(2500, "event")>>
+			<</replace>>
+		<</link>>
 	</span>
 
 <<case "degradationist encounter">>
 
 	<span id="result">
-	<<link "Alert your drones and keep walking">>
-		<<replace "#result">>
-		You inform $assistantName that you have a slave lover in need of harassment by your security drones, then continue on your way. You did not instruct your drones to attack the obscene pair, as the scrutiny and public shame of a drone escort around the arcology are a more fitting punishment for a citizen and will perhaps encourage him to think twice before treating his slave as an equal.
-		<</replace>>
-	<</link>>
-	<<if $cash >= 2000>>
-	<br><<link "Take the pampered slave $girl into your custody">>
-		<<set $activeSlave.clothes = "no clothing">>
-		<<replace "#artFrame">>
-			/* 000-250-006 */
-			<<if $seeImages == 1>>
-				<<if $imageChoice == 1>>
-					<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
-				<<else>>
-					<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
-				<</if>>
-			<</if>>
-			/* 000-250-006 */
-		<</replace>>
-		<<replace "#result">>
-		Confronting the citizen is simplicity in itself; he would not dare defy you directly under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his disturbing actions. As such, you are able to take civil ownership over the slave $girl and claim $him for yourself with only token compensation to the citizen. As you stride away from $his former owner with the $girl in your arms, $he clings to you with obvious naïveté for how you will treat $him. It's time $he learnt how slaves are treated in $arcologies[0].name.
-		<<run cashX(-2000, "slaveTransfer", $activeSlave)>>
-		<<include "New Slave Intro">>
-		<</replace>>
-	<</link>> // Taking custody of the $girl will cost <<print cashFormat(2000)>>. //
-	<</if>>
-	<br><<link "Publicly confront the citizen">>
-		<<replace "#result">>
-		Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to parade a slave around the arcology as if $he were his wife. To make it clear that you will not be so forgiving of his next transgression, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approve of your rebuke of the citizen.@@
-		<<run repX(2500, "event")>>
-		<</replace>>
-	<</link>>
+		<<link "Alert your drones and keep walking">>
+			<<replace "#result">>
+				You inform $assistantName that you have a slave lover in need of harassment by your security drones, then continue on your way. You did not instruct your drones to attack the obscene pair, as the scrutiny and public shame of a drone escort around the arcology are a more fitting punishment for a citizen and will perhaps encourage him to think twice before treating his slave as an equal.
+			<</replace>>
+		<</link>>
+		<<if $cash >= 2000>>
+			<br><<link "Take the pampered slave $girl into your custody">>
+				<<set $activeSlave.clothes = "no clothing">>
+				<<replace "#artFrame">>
+					/* 000-250-006 */
+					<<if $seeImages == 1>>
+						<<if $imageChoice == 1>>
+							<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+						<<else>>
+							<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+						<</if>>
+					<</if>>
+					/* 000-250-006 */
+				<</replace>>
+				<<replace "#result">>
+					Confronting the citizen is simplicity in itself; he would not dare defy you directly under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his disturbing actions. As such, you are able to take civil ownership over the slave $girl and claim $him for yourself with only token compensation to the citizen. As you stride away from $his former owner with the $girl in your arms, $he clings to you with obvious naïveté for how you will treat $him. It's time $he learnt how slaves are treated in $arcologies[0].name.
+					<<run cashX(-2000, "slaveTransfer", $activeSlave)>>
+					<<include "New Slave Intro">>
+				<</replace>>
+			<</link>> // Taking custody of the $girl will cost <<print cashFormat(2000)>>. //
+		<</if>>
+		<br><<link "Publicly confront the citizen">>
+			<<replace "#result">>
+				Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to parade a slave around the arcology as if $he were his wife. To make it clear that you will not be so forgiving of his next transgression, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approve of your rebuke of the citizen.@@
+				<<run repX(2500, "event")>>
+			<</replace>>
+		<</link>>
 	</span>
 
 <<case "physical idealist encounter">>
diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw
index a023a753f4517d88fbf2cf64fdb612cfa8ee55ea..55953fff035b44e45d3aef78d94fda25b5543f60 100644
--- a/src/uncategorized/nextWeek.tw
+++ b/src/uncategorized/nextWeek.tw
@@ -25,6 +25,9 @@
 		<</if>>
 	<</if>>
 <</if>>
+<<if $PC.preg <= 0>>
+	<<set $PC.pregType = 0, $PC.pregSource = 0, $PC.labor = 0, $PC.pregWeek = 0>>
+<</if>>
 <<if $menstruation == 1>>
 <<elseif $PC.geneticQuirks.superfetation == 2 && $PC.womb.length > 0>>
 	<<if $PC.fertPeak == 0>>
@@ -131,6 +134,9 @@
 			<</if>>
 		<</if>>
 	<</if>>
+	<<if $slaves[_i].preg <= 0>>
+		<<set $slaves[_i].pregType = 0, $slaves[_i].pregSource = 0, $slaves[_i].labor = 0, $slaves[_i].induce = 0>>
+	<</if>>
 	<<if $slaves[_i].indenture > 0>>
 		<<set $slaves[_i].indenture -= 1>>
 	<</if>>
@@ -174,19 +180,31 @@
 		<<set $slaves[_i].rivalryTarget = 0, $slaves[_i].rivalry = 0>>
 	<</if>>
 	<<if $slaves[_i].vagina < 0>>
-		<<set $slaves[_i].vaginalAccessory = "none", $slaves[_i].chastityVagina = 0, $slaves[_i].vaginaPiercing = 0>>
+		<<set $slaves[_i].vaginalAccessory = "none", $slaves[_i].chastityVagina = 0, $slaves[_i].vaginaPiercing = 0, $slaves[_i].labia = 0>>
+	<</if>>
+	<<if $slaves[_i].clit < 0>>
+		<<set $slaves[_i].clitPiercing = 0, $slaves[_i].clitSetting = "none">>
 	<</if>>
 	<<if $slaves[_i].dick == 0>>
-		<<set $slaves[_i].dickAccessory = "none", $slaves[_i].chastityPenis = 0, $slaves[_i].dickTat = 0, $slaves[_i].dickPiercing = 0>>
+		<<set $slaves[_i].dickAccessory = "none", $slaves[_i].chastityPenis = 0, $slaves[_i].dickTat = 0, $slaves[_i].dickPiercing = 0, $slaves[_i].foreskin = 0>>
 	<</if>>
 	<<if $slaves[_i].amp == 1>>
 		<<set $activeSlave.missingArms = 3, $activeSlave.missingLegs = 3>>
 	<</if>>
 	<<if $slaves[_i].missingArms == 3>>
 		<<set $slaves[_i].armsTat = 0, $slaves[_i].nails = 0>>
+		<<if (["hands", "left hand", "left lower arm", "left upper arm", "left wrist", "lower arms", "right hand", "right lower arm", "right upper arm", "right wrist", "upper arms", "wrists"]includes($slaves[_i].brandLocation))>>
+			<<set $slaves[_i].brand = 0>>
+			<<set $slaves[_i].brandLocation = 0>>
+		<</if>>
 	<</if>>
 	<<if $slaves[_i].missingLegs == 3>>
 		<<set $slaves[_i].heels = 0, $slaves[_i].shoes = "none", $slaves[_i].legsAccessory = "none", $slaves[_i].legsTat = 0>>
+		<<set $slaves[_i].heels = 0, $slaves[_i].shoes = "none", $slaves[_i].legsAccessory = "none", $slaves[_i].legsTat = 0,  $slaves[_i].heightImplant = 0>>
+		<<if (["ankles", "calves", "feet", "left ankle", "left calf", "left foot", "left thigh", "right ankle", "right calf", "right foot", "right thigh", "thighs"]includes($slaves[_i].brandLocation))>>
+			<<set $slaves[_i].brand = 0>>
+			<<set $slaves[_i].brandLocation = 0>>
+		<</if>>
 	<</if>>
 	/% Fix some possible floating point rounding errors, and bring precision to one decimal place. %/
 	<<run SlaveStatClamp($slaves[_i])>>
diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw
index 2aaf999bf9b582959680c8cec211e62a1c064bf5..9c47bcfb7b5ffb7e36243cbea51098d350726620 100644
--- a/src/uncategorized/reRecruit.tw
+++ b/src/uncategorized/reRecruit.tw
@@ -2070,7 +2070,7 @@ A<<if $activeSlave.physicalAge > 50>>n old $woman<<elseif $activeSlave.physicalA
 
 <<case "tg addict">>
 
-One of your tenants asks for an interview. He's an effeminate young man; it seems he's a surgical addict. He has heard that you have a remote surgical unit, and offers to pay well over a fair price to rent its use. Intrigued, you investigate, and find that he has been banned from the regular hospitals for unpaid bills. You could easily reprogram the surgery to ignore his input and instead gender reassign him into a saleable young woman, driving him into enslaveable debt at the same time. '$He'll' be slim, inexperienced, and very unhappy.
+One of your tenants asks for an interview. He's an effeminate young man; it seems he's a surgical addict. He has heard that you have a remote surgical unit, and offers to pay well over a fair price to rent its use. Intrigued, you investigate, and find that he has been banned from the regular hospitals for unpaid bills. You could easily reprogram the surgery to ignore his input and instead gender reassign him into a saleable young woman, driving him into enslaveable debt at the same time. 'She'll' be slim, inexperienced, and very unhappy.
 <br><br>
 //You could agree and then reprogram the remote surgery for transformation into a female once he's unconscious. Alternatively, you could transform him and then sell $him.//
 
@@ -2217,7 +2217,7 @@ After the fighting died down, they found a $woman inside the compound, harshly u
 
 A report about a successful operation by your mercenaries waits at your desk when you come in the office this morning. Turns out they tracked a brutal gang that was waylaying travelers near the Free City and stormed their hideout last night. All of the criminals were killed in the process, preventing proper punishments or more... creative uses for them. From the videos of the raid and the fanatic way the men fought to the last man, it seems that this was unavoidable, so you send a quick note of approval to their commander.
 <br><br>
-After the fighting died down, your men found a $woman inside the compound, harshly used and seemingly the center of many gangbangs there. A scan of $his biometric data revealed that $he is in fact a slave that ran away about two months ago — into a much worse situation after being caught by the gang, as it turns out. Countless dicks have stretched $his pussy and ass wide,<<if $activeSlave.physicalAge >= $activeSlave.pubertyAge>> $he is pregnant with some dead criminal bastard's offspring,<</if>> and they've decorated $him with numerous piercings. As you notify the owner that her property has been retrieved, the woman is distraught at the state of her merchandise, grumbling that a once quite valuable $girl is now worth almost nothing. Seems she's unwilling to invest her time and money in caring for the slave. With a sigh, the slave-mistress whips out her smart-phone and starts to set up a selling offer in one of the popular slave trading apps.
+After the fighting died down, they found a $woman inside the compound, harshly used and seemingly the center of many gangbangs there. A scan of $his biometric data revealed that $he is in fact a slave that ran away about two months ago — into a much worse situation after being caught by the gang, as it turns out. Countless dicks have stretched $his pussy and ass wide,<<if $activeSlave.physicalAge >= $activeSlave.pubertyAge>> $he is pregnant with some dead criminal bastard's offspring,<</if>> and they've decorated $him with numerous piercings. As you notify the owner that her property has been retrieved, the woman is distraught at the state of her merchandise, grumbling that a once quite valuable $girl is now worth almost nothing. Seems she's unwilling to invest her time and money in caring for the slave. With a sigh, the slave-mistress whips out her smart-phone and starts to set up a selling offer in one of the popular slave trading apps.
 <br><br>
 //The young $woman has been used and abused quite a bit, making $him deathly terrified about what might happen to $him next. $He has partially resigned to be nothing but a fuckhole. You can get $him cheap from the owner, it'll be just <<print cashFormat(1000)>>.//
 
diff --git a/src/uncategorized/repBudget.tw b/src/uncategorized/repBudget.tw
index 368a0bf11ce8a6a1aa2087ec039d25ed380b3a6f..cfb41e6cdd3d3275b078c971780ab51008f8c24e 100644
--- a/src/uncategorized/repBudget.tw
+++ b/src/uncategorized/repBudget.tw
@@ -112,7 +112,7 @@ for (var i = 0; i < State.variables.lastWeeksRepIncome.length; i++){
 
 	<<print budgetLine("vignette", "Vignettes")>>
 
-	<<print budgetLine("fuckdolls", "Free fuckdolls")>>
+	<<print budgetLine("fuckdolls", "Free Fuckdolls")>>
 
 	<tr>
 		<h2>Policies</h2>
diff --git a/src/uncategorized/saChoosesOwnJob.tw b/src/uncategorized/saChoosesOwnJob.tw
index 0e95126bc68e48a2e7b804044dfba7643c3d40e3..8e55124f71d425ccf9e211c83ab83454515040f2 100644
--- a/src/uncategorized/saChoosesOwnJob.tw
+++ b/src/uncategorized/saChoosesOwnJob.tw
@@ -307,7 +307,7 @@
 							<<set $slaves[$i].choosesOwnAssignmentText += " heads to $clubName to show off $his growing middle and lavish in the public's attention.">>
 							<<= assignJob($slaves[$i], "serve in the club")>>
 						<<else>>
-							<<set $slaves[$i].choosesOwnAssignmentText += " heads to the streets to contribute to the number of visibly pregnant woman around.">>
+							<<set $slaves[$i].choosesOwnAssignmentText += " heads to the streets to contribute to the number of visibly pregnant women around.">>
 							<<= assignJob($slaves[$i], "serve the public")>>
 						<</if>>
 					<</if>>
@@ -371,10 +371,10 @@
 			<</if>>
 		<<elseif ($slaves[$i].energy > 95)>>
 			<<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>>
-				<<set $slaves[$i].choosesOwnAssignmentText += " decides to help those of your girls who mind taking dick all day by working in $brothelName.">>
+				<<set $slaves[$i].choosesOwnAssignmentText += " decides to help those of your slaves who mind taking dick all day by working in $brothelName.">>
 				<<= assignJob($slaves[$i], "work in the brothel")>>
 			<<else>>
-				<<set $slaves[$i].choosesOwnAssignmentText += " decides to help those of your girls who mind taking dick all day by working as a whore.">>
+				<<set $slaves[$i].choosesOwnAssignmentText += " decides to help those of your slaves who mind taking dick all day by working as a whore.">>
 				<<= assignJob($slaves[$i], "whore")>>
 			<</if>>
 
diff --git a/src/uncategorized/saDiet.tw b/src/uncategorized/saDiet.tw
index 223f906189133c1c1fd8917e2ef9cfbabec31185..bf6762f2ba4de24e5aff407062f16515bd6f8aed 100644
--- a/src/uncategorized/saDiet.tw
+++ b/src/uncategorized/saDiet.tw
@@ -7,9 +7,9 @@
 <<if $slaves[$i].fuckdoll == 0>>
 
 <<if $feeder == 1>>
-<<if $slaves[$i].diet != "healthy">>
-	The upgraded kitchen closely monitors $his diet.
-<</if>>
+	<<if $slaves[$i].diet != "healthy">>
+		The upgraded kitchen closely monitors $his diet.
+	<</if>>
 <</if>>
 
 <<switch $slaves[$i].diet>>
@@ -327,66 +327,66 @@
 		$He is no longer capable of pumping iron. $His special diet @@.yellow;has ended.@@
 		<<set $slaves[$i].diet = "healthy">>
 	<<else>>
-	<<if $slaves[$i].muscles > 90>>
-		$His heavy workouts focus on lifting. $He has plateaued at a state of @@.lime;goddess-like musculature.@@
-		<<set $slaves[$i].muscles = 100>>
-		<<set $slaves[$i].diet = "healthy">>
-	<<elseif ($slaves[$i].drugs == "steroids")>>
-		$His heavy workouts focus on lifting, and since $he's on so much gear, $he @@.lime;gains muscle rapidly.@@
-		<<set $slaves[$i].muscles += 8>>
-	<<elseif ($slaves[$i].balls > 0) && $slaves[$i].ballType != "sterile" && ($slaves[$i].hormoneBalance >= 100)>>
-		$His heavy workouts focus on lifting, but with natural testosterone and artificial female hormones clashing in $his system, $he only @@.lime;slowly gains muscle.@@
-		<<set $slaves[$i].muscles += 3>>
-	<<elseif ($slaves[$i].balls > 0) && $slaves[$i].ballType != "sterile" && ($slaves[$i].hormoneBalance <= -100)>>
-		$His heavy workouts focus on lifting, and with natural testosterone and artificial male hormones in $his system, $he @@.lime;gains muscle rapidly.@@
-		<<set $slaves[$i].muscles += 8>>
-	<<elseif ($slaves[$i].balls > 0) && $slaves[$i].ballType != "sterile">>
-		$His heavy workouts focus on lifting, and with natural testosterone in $his system, $he @@.lime;gains muscle.@@
-		<<set $slaves[$i].muscles += 5>>
-	<<elseif ($slaves[$i].balls > 0)>>
-		$His heavy workouts focus on lifting, but with $his useless balls making little testosterone for $his system, $he only @@.lime;slowly gains muscle.@@
-		<<set $slaves[$i].muscles += 2>>
-	<<elseif ($slaves[$i].hormoneBalance <= -100)>>
-		$His heavy workouts focus on lifting, and with artificial testosterone in $his system, $he @@.lime;gains muscle.@@
-		<<set $slaves[$i].muscles += 5>>
-	<<elseif ($slaves[$i].hormoneBalance >= 100)>>
-		$His heavy workouts focus on lifting, but with lots of female hormones in $his system, $he barely @@.lime;gains muscle.@@
-		<<set $slaves[$i].muscles += 2>>
-	<<else>>
-		$His heavy workouts focus on lifting, and $he @@.lime;slowly gains muscle.@@
-		<<set $slaves[$i].muscles += 3>>
-	<</if>>
-	<<if ($slaves[$i].behavioralQuirk == "fitness")>>
-		$He attacks lifting with real enthusiasm, further increasing $his mass.
-		<<set $slaves[$i].muscles += 2>>
-	<</if>>
-	<<if ((($slaves[$i].geneMods.NCS == 0) && (random(1,100) > 90)) || (($slaves[$i].geneMods.NCS == 1) && (random(1,100) > 45)))>>
-		<<if ((($slaves[$i].geneMods.NCS == 0) && ($slaves[$i].boobs-$slaves[$i].boobsImplant-$slaves[$i].boobsMilk >= 200)) || (($slaves[$i].geneMods.NCS == 1) && ($slaves[$i].boobs > 100)))>>
-			<<if ($slaves[$i].geneMods.NCS == 0)>>
-				@@.orange;$His breasts get a little smaller.@@
-				<<set $slaves[$i].boobs -= 50>>
-			<<else>>
-				@@.orange;$His breasts get smaller.@@
-				<<set $slaves[$i].boobs -= 100>>
-			<</if>>
-		<<elseif ($slaves[$i].butt > 1 && ($slaves[$i].geneticQuirks.rearLipedema != 2 || ($slaves[$i].butt > 10 && random(1,100) > 80)))>>
-			<<if (($slaves[$i].geneMods.NCS == 0) || ($slaves[$i].butt == 1))>>
-				@@.orange;$His butt gets a little smaller.@@
-				<<set $slaves[$i].butt -= 1>>
-			<<else>>
-				@@.orange;$His butt gets smaller.@@
-				<<set $slaves[$i].butt -= 2>>
+		<<if $slaves[$i].muscles > 90>>
+			$His heavy workouts focus on lifting. $He has plateaued at a state of @@.lime;goddess-like musculature.@@
+			<<set $slaves[$i].muscles = 100>>
+			<<set $slaves[$i].diet = "healthy">>
+		<<elseif ($slaves[$i].drugs == "steroids")>>
+			$His heavy workouts focus on lifting, and since $he's on so much gear, $he @@.lime;gains muscle rapidly.@@
+			<<set $slaves[$i].muscles += 8>>
+		<<elseif ($slaves[$i].balls > 0) && $slaves[$i].ballType != "sterile" && ($slaves[$i].hormoneBalance >= 100)>>
+			$His heavy workouts focus on lifting, but with natural testosterone and artificial female hormones clashing in $his system, $he only @@.lime;slowly gains muscle.@@
+			<<set $slaves[$i].muscles += 3>>
+		<<elseif ($slaves[$i].balls > 0) && $slaves[$i].ballType != "sterile" && ($slaves[$i].hormoneBalance <= -100)>>
+			$His heavy workouts focus on lifting, and with natural testosterone and artificial male hormones in $his system, $he @@.lime;gains muscle rapidly.@@
+			<<set $slaves[$i].muscles += 8>>
+		<<elseif ($slaves[$i].balls > 0) && $slaves[$i].ballType != "sterile">>
+			$His heavy workouts focus on lifting, and with natural testosterone in $his system, $he @@.lime;gains muscle.@@
+			<<set $slaves[$i].muscles += 5>>
+		<<elseif ($slaves[$i].balls > 0)>>
+			$His heavy workouts focus on lifting, but with $his useless balls making little testosterone for $his system, $he only @@.lime;slowly gains muscle.@@
+			<<set $slaves[$i].muscles += 2>>
+		<<elseif ($slaves[$i].hormoneBalance <= -100)>>
+			$His heavy workouts focus on lifting, and with artificial testosterone in $his system, $he @@.lime;gains muscle.@@
+			<<set $slaves[$i].muscles += 5>>
+		<<elseif ($slaves[$i].hormoneBalance >= 100)>>
+			$His heavy workouts focus on lifting, but with lots of female hormones in $his system, $he barely @@.lime;gains muscle.@@
+			<<set $slaves[$i].muscles += 2>>
+		<<else>>
+			$His heavy workouts focus on lifting, and $he @@.lime;slowly gains muscle.@@
+			<<set $slaves[$i].muscles += 3>>
+		<</if>>
+		<<if ($slaves[$i].behavioralQuirk == "fitness")>>
+			$He attacks lifting with real enthusiasm, further increasing $his mass.
+			<<set $slaves[$i].muscles += 2>>
+		<</if>>
+		<<if ((($slaves[$i].geneMods.NCS == 0) && (random(1,100) > 90)) || (($slaves[$i].geneMods.NCS == 1) && (random(1,100) > 45)))>>
+			<<if ((($slaves[$i].geneMods.NCS == 0) && ($slaves[$i].boobs-$slaves[$i].boobsImplant-$slaves[$i].boobsMilk >= 200)) || (($slaves[$i].geneMods.NCS == 1) && ($slaves[$i].boobs > 100)))>>
+				<<if ($slaves[$i].geneMods.NCS == 0)>>
+					@@.orange;$His breasts get a little smaller.@@
+					<<set $slaves[$i].boobs -= 50>>
+				<<else>>
+					@@.orange;$His breasts get smaller.@@
+					<<set $slaves[$i].boobs -= 100>>
+				<</if>>
+			<<elseif ($slaves[$i].butt > 1 && ($slaves[$i].geneticQuirks.rearLipedema != 2 || ($slaves[$i].butt > 10 && random(1,100) > 80)))>>
+				<<if (($slaves[$i].geneMods.NCS == 0) || ($slaves[$i].butt == 1))>>
+					@@.orange;$His butt gets a little smaller.@@
+					<<set $slaves[$i].butt -= 1>>
+				<<else>>
+					@@.orange;$His butt gets smaller.@@
+					<<set $slaves[$i].butt -= 2>>
+				<</if>>
 			<</if>>
 		<</if>>
-	<</if>>
-	<<if random(1,100) > 80>>
-		$His workout successes have @@.green;improved $his health.@@
-		<<set $slaves[$i].health += 10>>
-	<</if>>
-	<<if $slaves[$i].weight > 10>>
-		$His workouts have also @@.orange;burned off some excess fat.@@
-		<<set $slaves[$i].weight -= 2>>
-	<</if>>
+		<<if random(1,100) > 80>>
+			$His workout successes have @@.green;improved $his health.@@
+			<<set $slaves[$i].health += 10>>
+		<</if>>
+		<<if $slaves[$i].weight > 10>>
+			$His workouts have also @@.orange;burned off some excess fat.@@
+			<<set $slaves[$i].weight -= 2>>
+		<</if>>
 	<</if>>
 <<case "slimming">> /* Muscle Loss */
 	<<if !canWalk($slaves[$i])>>
@@ -1011,7 +1011,7 @@
 		<<set $slaves[$i].diet = "healthy">>
 	<</if>>
 <<case "muscle building">> /* Muscle Gain */
-	Fuckdolls suits can force their inhabitants to lift weights until they drop.
+	Fuckdoll suits can force their inhabitants to lift weights until they drop.
 	<<if $slaves[$i].muscles > 90>>
 		$He has plateaued at a state of @@.lime;perfect musculature.@@
 		<<set $slaves[$i].muscles = 100>>
@@ -1021,13 +1021,13 @@
 		<<set $slaves[$i].muscles += 9>>
 	<</if>>
 	<<if random(1,100) > 90>>
-	<<if ($slaves[$i].boobs-$slaves[$i].boobsImplant-$slaves[$i].boobsMilk >= 200*_gigantomastiaMod && _gigantomastiaMod != 3)>>
-		@@.orange;$His breasts get a little smaller.@@
-		<<set $slaves[$i].boobs -= 50>>
-	<<elseif ($slaves[$i].butt > 1) && ($slaves[$i].geneticQuirks.rearLipedema != 2 || ($slaves[$i].butt > 10 && random(1,100) > 80))>>
-		@@.orange;$His butt gets a little smaller.@@
-		<<set $slaves[$i].butt -= 1>>
-	<</if>>
+		<<if ($slaves[$i].boobs-$slaves[$i].boobsImplant-$slaves[$i].boobsMilk >= 200*_gigantomastiaMod && _gigantomastiaMod != 3)>>
+			@@.orange;$His breasts get a little smaller.@@
+			<<set $slaves[$i].boobs -= 50>>
+		<<elseif ($slaves[$i].butt > 1) && ($slaves[$i].geneticQuirks.rearLipedema != 2 || ($slaves[$i].butt > 10 && random(1,100) > 80))>>
+			@@.orange;$His butt gets a little smaller.@@
+			<<set $slaves[$i].butt -= 1>>
+		<</if>>
 	<</if>>
 	<<if $slaves[$i].weight > 10>>
 		$His workouts have also @@.orange;burned off some excess fat.@@
@@ -1045,13 +1045,13 @@
 		<<set $slaves[$i].muscles -= 9>>
 	<</if>>
 	<<if random(1,100) > 90>>
-	<<if ($slaves[$i].boobs-$slaves[$i].boobsImplant-$slaves[$i].boobsMilk >= 200*_gigantomastiaMod && _gigantomastiaMod != 3)>>
-		@@.orange;$His breasts get a little smaller.@@
-		<<set $slaves[$i].boobs -= 50>>
-	<<elseif ($slaves[$i].butt > 1) && ($slaves[$i].geneticQuirks.rearLipedema != 2 || ($slaves[$i].butt > 10 && random(1,100) > 80))>>
-		@@.orange;$His butt gets a little smaller.@@
-		<<set $slaves[$i].butt -= 1>>
-	<</if>>
+		<<if ($slaves[$i].boobs-$slaves[$i].boobsImplant-$slaves[$i].boobsMilk >= 200*_gigantomastiaMod && _gigantomastiaMod != 3)>>
+			@@.orange;$His breasts get a little smaller.@@
+			<<set $slaves[$i].boobs -= 50>>
+		<<elseif ($slaves[$i].butt > 1) && ($slaves[$i].geneticQuirks.rearLipedema != 2 || ($slaves[$i].butt > 10 && random(1,100) > 80))>>
+			@@.orange;$His butt gets a little smaller.@@
+			<<set $slaves[$i].butt -= 1>>
+		<</if>>
 	<</if>>
 	<<if $slaves[$i].weight > 10>>
 		$His workouts have also @@.orange;burned off some excess fat.@@
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index cb32efeecc109dd8192885797f809305b95bdc73..d77055e609fb251d3ca259855d0039ba2353a01e 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -853,7 +853,7 @@
 							<</if>>
 						<<elseif ($slaves[$i].behavioralFlaw == "liberated")>>
 							<<if ($slaves[$i].fetish == "masochist")>>
-								$His pre-enslavement belief that $he deserves rights and respect fades in light of how much $he likes being beaten and abused. @@.green;$He is no longer a modern, liberated girl,@@ and accepts $his place as a sex slave as natural.
+								$His pre-enslavement belief that $he deserves rights and respect fades in light of how much $he likes being beaten and abused. @@.green;$He is no longer a modern, liberated $girl,@@ and accepts $his place as a sex slave as natural.
 								<<set $slaves[$i].behavioralFlaw = "none">>
 							<</if>>
 						<</if>>
@@ -941,13 +941,13 @@
 							<</if>>
 						<<elseif ($slaves[$i].sexualFlaw == "repressed")>>
 							<<if ($slaves[$i].fetish == "buttslut")>>
-								$He grew up being taught that good girls do not take cock up their good girl anuses, but $he's just now decided $he prefers being a bad girl and has @@.green;softened $his repression into arousal at the perversion@@ of dicks up $his behind.
+								$He grew up being taught that good <<= $girl>>s do not take cock up their good $girl anuses, but $he's just now decided $he prefers being a bad $girl and has @@.green;softened $his repression into arousal at the perversion@@ of dicks up $his behind.
 								<<run SoftenSexualFlaw($slaves[$i])>>
 							<<elseif ($slaves[$i].fetish == "cumslut")>>
-								$He grew up being taught that good girls do not put their good girl mouths on boys' private parts, but $he's just now decided $he prefers being a bad girl and has @@.green;softened $his repression into arousal at the perverted@@ idea of dicks down $his throat.
+								$He grew up being taught that good <<= $girl>>s do not put their good $girl mouths on others' private parts, but $he's just now decided $he prefers being a bad $girl and has @@.green;softened $his repression into arousal at the perverted@@ idea of dicks down $his throat.
 								<<run SoftenSexualFlaw($slaves[$i])>>
 							<<elseif ($slaves[$i].energy > 95)>>
-								$He grew up being taught that good girls do not happily fuck anything that moves, but $he's just now decided $he prefers being a bad girl and has @@.green;softened $his repression into arousal at the perversion@@ of reveling in sexual addiction.
+								$He grew up being taught that good <<= $girl>>s do not happily fuck anything that moves, but $he's just now decided $he prefers being a bad $girl and has @@.green;softened $his repression into arousal at the perversion@@ of reveling in sexual addiction.
 								<<run SoftenSexualFlaw($slaves[$i])>>
 							<</if>>
 						<</if>>
@@ -1021,13 +1021,13 @@
 							<</if>>
 						<<elseif ($slaves[$i].sexualFlaw == "repressed")>>
 							<<if ($slaves[$i].fetish == "buttslut")>>
-								$He grew up being taught that good girls do not take cock up their good girl anuses, but @@.green;$he's just now decided $he prefers being a bad girl.@@
+								$He grew up being taught that good <<= $girl>>s do not take cock up their good $girl anuses, but @@.green;$he's just now decided $he prefers being a bad $girl.@@
 								<<set $slaves[$i].sexualFlaw = "none">>
 							<<elseif ($slaves[$i].fetish == "cumslut")>>
-								$He grew up being taught that good girls do not put their good girl mouths on boys' private parts, but @@.green;$he's just now decided $he prefers being a bad girl.@@
+								$He grew up being taught that good <<= $girl>>s do not put their good $girl mouths on others' private parts, but @@.green;$he's just now decided $he prefers being a bad $girl.@@
 								<<set $slaves[$i].sexualFlaw = "none">>
 							<<elseif ($slaves[$i].energy > 95)>>
-								$He grew up being taught that good girls do not happily fuck anything that moves, but @@.green;$he's just now decided $he prefers being a bad girl.@@
+								$He grew up being taught that good <<= $girl>>s do not happily fuck anything that moves, but @@.green;$he's just now decided $he prefers being a bad $girl.@@
 								<<set $slaves[$i].sexualFlaw = "none">>
 							<</if>>
 						<</if>>
@@ -5284,16 +5284,16 @@
 
 	<<if $arcologies[0].FSGenderRadicalist != "unset">>
 		<<if ($slaves[$i].balls > 0) && ($slaves[$i].dick > 0) && ($slaves[$i].hormoneBalance >= 100)>>
-			Society @@.green;approves@@ of your heavy hormonal feminization of $slaves[$i].slaveName; this advances public interest in girls with soft little dicks.
+			Society @@.green;approves@@ of your heavy hormonal feminization of $slaves[$i].slaveName; this advances public interest in <<= $girl>>s with soft little dicks.
 			<<= FSChangePorn("GenderRadicalist", 1)>>
 		<<elseif ($slaves[$i].balls > 0) && ($slaves[$i].pubertyXY == 0) && ($slaves[$i].physicalAge >= $potencyAge)>>
-			Society @@.green;approves@@ of you keeping $slaves[$i].slaveName from going through puberty; this advances public interest in girls with soft little dicks.
+			Society @@.green;approves@@ of you keeping $slaves[$i].slaveName from going through puberty; this advances public interest in <<= $girl>>s with soft little dicks.
 			<<= FSChangePorn("GenderRadicalist", 2)>>
 		<<elseif ($slaves[$i].dick > 0) && ($slaves[$i].balls == 0)>>
-			Society @@.green;approves@@ of your keeping a gelded slave; this advances public interest in girls with soft dickclits.
+			Society @@.green;approves@@ of your keeping a gelded slave; this advances public interest in <<= $girl>>s with soft dickclits.
 			<<= FSChangePorn("GenderRadicalist", 1)>>
 		<<elseif ($slaves[$i].dick > 0) && ($slaves[$i].anus > 0) && ($slaves[$i].devotion > 20) && ($slaves[$i].trust >= -20)>>
-			Society @@.green;approves@@ of your keeping a contented dickgirl bottom; this advances public interest in girls who get hard when assfucked.
+			Society @@.green;approves@@ of your keeping a contented dickgirl bottom; this advances public interest in <<= $girl>>s who get hard when assfucked.
 			<<= FSChangePorn("GenderRadicalist", 1)>>
 		<</if>>
 	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
diff --git a/src/uncategorized/saPleaseYou.tw b/src/uncategorized/saPleaseYou.tw
index baa00fa17a05cb2fd56e343b50dc10e103255b72..46c57507018a0ed83f8fd9946091102f7c477552 100644
--- a/src/uncategorized/saPleaseYou.tw
+++ b/src/uncategorized/saPleaseYou.tw
@@ -2,6 +2,7 @@
 
 serves you this week.
 
+<<setPlayerPronouns>>
 <<set _trainingEfficiency = 5+Math.trunc($slaves[$i].devotion/30)+(($slaves[$i].intelligence+$slaves[$i].intelligenceImplant)/32)>>
 <<set _oralUse = 0, _analUse = 0, _vaginalUse = 0, _mammaryUse = 0, _penetrativeUse = 0>>
 <<set _fetishChangeChance = fetishChangeChance($slaves[$i])>>
@@ -122,7 +123,7 @@ serves you this week.
 						<<set $slaves[$i].devotion += 2>>
 					<<elseif _fetishChangeChance > random(0,100)>>
 						<<set $slaves[$i].fetish = "submissive", $slaves[$i].fetishKnown = 1, $slaves[$i].fetishStrength = 10>>
-						$He frequently climaxes with your <<if $PC.title == 1>>strong<<else>>soft<</if>> hands holding $him and your cock spreading heat through $his core, teaching $him that @@.lightcoral;a girl's role is to please a man.@@
+						$He frequently climaxes with your <<if $PC.title == 1>>strong<<else>>soft<</if>> hands holding $him and your cock spreading heat through $his core, teaching $him that @@.lightcoral;a $girl's role is to please a _womanP.@@
 					<</if>>
 				<</if>>
 				<<if canImpreg($slaves[$i], $PC)>>
@@ -131,7 +132,7 @@ serves you this week.
 			<</if>>
 			<<set $slaves[$i].counter.vaginal += _vaginalUse, $vaginalTotal += _vaginalUse>>
 		<<else>>
-			You keep $him with you all week, using it as your personal sex toy
+			You keep $him with you all week, using $him as your personal sex toy
 			<<if ($fuckSlaves <= $PC.sexualEnergy/2)>>
 				<<set _vaginalUse = random(21,40)>>
 				several times a day.
@@ -651,7 +652,7 @@ serves you this week.
 			<<if ($slaves[$i].trust < -20)>>
 				cautiously fucking you in the missionary position. It takes a gentle touch to let $him know it safe to get hard, but after that $he knows what to do.
 			<<elseif ($slaves[$i].devotion < -20)>>
-				aggressively fucking your pussy with little regard for you or your child.
+				aggressively fucking your pussy with little regard for you or your child<<if $PC.pregType > 1>>ren<</if>>.
 			<<elseif ($slaves[$i].devotion <= 20)>>
 				obediently fucking you in the missionary position while putting up with your attempts to breast feed $him.
 			<<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetish == "dom")>>
@@ -1309,13 +1310,13 @@ Keeping $him as nothing but your personal
 	<</if>>
 	<<if $slaves[$i].fetish != "mindbroken">>
 		<<if $slaves[$i].fetish == "pregnancy" && ($PC.preg >= 20 || ($PC.preg >= 16 && $PC.career == "escort"))>>
-			$slaves[$i].slaveName @@.hotpink;enjoys being so close $his gravid <<= WrittenMaster($slaves[$i])>>.@@
+			$slaves[$i].slaveName @@.hotpink;enjoys being so close to $his gravid <<= WrittenMaster($slaves[$i])>>.@@
 			<<set $slaves[$i].devotion += 1>>
 			<<if $slaves[$i].fetishKnown == 0>>
-				$He enjoys being tasked with servicing a pregnant woman far more than a normal slave would; @@.lightcoral;$he's harboring a pregnancy fetish!@@
+				$He enjoys being tasked with servicing a pregnant _womanP far more than a normal slave would; @@.lightcoral;$he's harboring a pregnancy fetish!@@
 				<<set $slaves[$i].fetishKnown = 1>>
 			<<elseif $slaves[$i].fetishStrength < 95>>
-				Being tasked with servicing a lusty pregnant woman @@.lightcoral;strengthens $his pregnancy fetish.@@
+				Being tasked with servicing a lusty pregnant _womanP @@.lightcoral;strengthens $his pregnancy fetish.@@
 				<<set $slaves[$i].fetishStrength += 4>>
 			<</if>>
 		<<elseif _fetishChangeChance > random(0,100) && ($PC.preg >= 20 || ($PC.preg >= 16 && $PC.career == "escort"))>>
diff --git a/src/uncategorized/saRules.tw b/src/uncategorized/saRules.tw
index 164d59b7ba4fd0084380afe2922336c6dc356833..7303ae70332f23eda4ed4db00b48e3fff0fb6be6 100644
--- a/src/uncategorized/saRules.tw
+++ b/src/uncategorized/saRules.tw
@@ -380,7 +380,7 @@
 						<<if $BrothiIDs.length > 2 || $Madam != 0>>
 							Under the rules, $he finds $himself constantly molested by other slaves, and lives $his life constantly @@.gold;afraid.@@
 						<<else>>
-							Under the rules, $he is free game for other slaves to molest, and lives $his life constantly @@.gold;afraid@@ of the day you assign more girls to $brothelName.
+							Under the rules, $he is free game for other slaves to molest, and lives $his life constantly @@.gold;afraid@@ of the day you assign more whores to $brothelName.
 						<</if>>
 						<<set $slaves[$i].trust -= 2>>
 					<<else>>
@@ -395,22 +395,22 @@
 						<<if $BrothiIDs.length > 2>>
 							Under the rules, $he's allowed to demand that other slaves get $him off, and $he @@.hotpink;adores@@ you for providing plentiful outlets for $his nymphomania.
 						<<else>>
-							Under the rules, $he's allowed to demand that other slaves get $him off, and $he @@.hotpink;eagerly awaits@@ the day you assign more girls to $brothelName to get $him off.
+							Under the rules, $he's allowed to demand that other slaves get $him off, and $he @@.hotpink;eagerly awaits@@ the day you assign more whores to $brothelName to get $him off.
 						<</if>>
 						<<set $slaves[$i].devotion += 1>>
 					<<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
 						<<if ($slaves[$i].fetish == "sadist")>>
 							<<if $BrothiIDs.length > 2>>
-								Under the rules, $he's allowed to sexually abuse other slaves, and $he @@.hotpink;adores@@ you for providing a whole whorehouse of girls for $him to rape.
+								Under the rules, $he's allowed to sexually abuse other slaves, and $he @@.hotpink;adores@@ you for providing a whole brothel of whores for $him to rape.
 							<<else>>
-								Under the rules, $he's allowed to sexually abuse other slaves, and $he @@.hotpink;eagerly awaits@@ the day you assign more girls to $brothelName for $him to rape.
+								Under the rules, $he's allowed to sexually abuse other slaves, and $he @@.hotpink;eagerly awaits@@ the day you assign more whores to $brothelName for $him to rape.
 							<</if>>
 							<<set $slaves[$i].devotion += 1>>
 						<<elseif ($slaves[$i].fetish == "dom")>>
 							<<if $BrothiIDs.length > 2>>
-								Under the rules, $he's allowed to force other slaves to have sex with $him, and $he @@.hotpink;adores@@ you for providing a whole whorehouse of girls for $him to dominate.
+								Under the rules, $he's allowed to force other slaves to have sex with $him, and $he @@.hotpink;adores@@ you for providing a whole brothel of whores for $him to dominate.
 							<<else>>
-								Under the rules, $he's allowed to force other slaves to have sex with $him, and $he @@.hotpink;eagerly awaits@@ the day you assign more girls to $brothelName for $him to dominate.
+								Under the rules, $he's allowed to force other slaves to have sex with $him, and $he @@.hotpink;eagerly awaits@@ the day you assign more whores to $brothelName for $him to dominate.
 							<</if>>
 							<<set $slaves[$i].devotion += 1>>
 						<</if>>
@@ -845,7 +845,7 @@
 						<<if $ClubiIDs.length > 2 || $DJ != 0>>
 							Under the rules, $he finds $himself constantly molested by other slaves, and lives $his life constantly @@.gold;afraid.@@
 						<<else>>
-							Under the rules, $he is free game for other slaves to molest, and lives $his life constantly @@.gold;afraid@@ of the day you assign more girls to $clubName.
+							Under the rules, $he is free game for other slaves to molest, and lives $his life constantly @@.gold;afraid@@ of the day you assign more sluts to $clubName.
 						<</if>>
 						<<set $slaves[$i].trust -= 2>>
 					<<else>>
@@ -860,22 +860,22 @@
 						<<if $ClubiIDs.length > 2>>
 							Under the rules, $he's allowed to demand that other slaves get $him off, and $he @@.hotpink;adores@@ you for providing plentiful outlets for $his nymphomania.
 						<<else>>
-							Under the rules, $he's allowed to demand that other slaves get $him off, and $he @@.hotpink;eagerly awaits@@ the day you assign more girls to $clubName to get $him off.
+							Under the rules, $he's allowed to demand that other slaves get $him off, and $he @@.hotpink;eagerly awaits@@ the day you assign more sluts to $clubName to get $him off.
 						<</if>>
 						<<set $slaves[$i].devotion += 1>>
 					<<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
 						<<if ($slaves[$i].fetish == "sadist")>>
 							<<if $ClubiIDs.length > 2>>
-								Under the rules, $he's allowed to sexually abuse other slaves, and $he @@.hotpink;adores@@ you for providing a whole club of girls for $him to rape.
+								Under the rules, $he's allowed to sexually abuse other slaves, and $he @@.hotpink;adores@@ you for providing a whole club of sluts for $him to rape.
 							<<else>>
-								Under the rules, $he's allowed to sexually abuse other slaves, and $he @@.hotpink;eagerly awaits@@ the day you assign more girls to $clubName for $him to rape.
+								Under the rules, $he's allowed to sexually abuse other slaves, and $he @@.hotpink;eagerly awaits@@ the day you assign more sluts to $clubName for $him to rape.
 							<</if>>
 							<<set $slaves[$i].devotion += 1>>
 						<<elseif ($slaves[$i].fetish == "dom")>>
 							<<if $ClubiIDs.length > 2>>
-								Under the rules, $he's allowed to force other slaves to have sex with $him, and $he @@.hotpink;adores@@ you for providing a whole club of girls for $him to dominate.
+								Under the rules, $he's allowed to force other slaves to have sex with $him, and $he @@.hotpink;adores@@ you for providing a whole club of sluts for $him to dominate.
 							<<else>>
-								Under the rules, $he's allowed to force other slaves to have sex with $him, and $he @@.hotpink;eagerly awaits@@ the day you assign more girls to $clubName for $him to dominate.
+								Under the rules, $he's allowed to force other slaves to have sex with $him, and $he @@.hotpink;eagerly awaits@@ the day you assign more sluts to $clubName for $him to dominate.
 							<</if>>
 							<<set $slaves[$i].devotion += 1>>
 						<</if>>
@@ -3009,7 +3009,7 @@
 						<<if $SchlRiIDs.length > 2 || $Schoolteacher != 0>>
 							Under the rules, $he finds $himself constantly molested by other slaves, and lives $his life constantly @@.gold;afraid.@@
 						<<else>>
-							Under the rules, $he is free game for other slaves to molest, and lives $his life constantly @@.gold;afraid@@ of the day more girls enroll in $schoolroomName.
+							Under the rules, $he is free game for other slaves to molest, and lives $his life constantly @@.gold;afraid@@ of the day more students enroll in $schoolroomName.
 						<</if>>
 						<<set $slaves[$i].trust -= 2>>
 					<<else>>
@@ -3024,7 +3024,7 @@
 						<<if $SchlRiIDs.length > 2>>
 							Under the rules, $he's allowed to demand that other slaves get $him off, and $he @@.hotpink;adores@@ you for providing plentiful outlets for $his nymphomania.
 						<<else>>
-							Under the rules, $he's allowed to demand that other slaves get $him off, and $he @@.hotpink;eagerly awaits@@ the day more girls enroll in $schoolroomName to get $him off.
+							Under the rules, $he's allowed to demand that other slaves get $him off, and $he @@.hotpink;eagerly awaits@@ the day more students enroll in $schoolroomName to get $him off.
 						<</if>>
 						<<set $slaves[$i].devotion += 1>>
 					<<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
@@ -3032,14 +3032,14 @@
 							<<if $SchlRiIDs.length > 2>>
 								Under the rules, $he's allowed to sexually abuse other slaves, and $he @@.hotpink;adores@@ you for providing a whole class of girls for $him to rape.
 							<<else>>
-								Under the rules, $he's allowed to sexually abuse other slaves, and $he @@.hotpink;eagerly awaits@@ the day more girls enroll in $schoolroomName for $him to rape.
+								Under the rules, $he's allowed to sexually abuse other slaves, and $he @@.hotpink;eagerly awaits@@ the day more students enroll in $schoolroomName for $him to rape.
 							<</if>>
 							<<set $slaves[$i].devotion += 1>>
 						<<elseif ($slaves[$i].fetish == "dom")>>
 							<<if $SchlRiIDs.length > 2>>
 								Under the rules, $he's allowed to force other slaves to have sex with $him, and $he @@.hotpink;adores@@ you for providing a whole class of girls for $him to dominate.
 							<<else>>
-								Under the rules, $he's allowed to force other slaves to have sex with $him, and $he @@.hotpink;eagerly awaits@@ the day more girls enroll in $schoolroomName for $him to dominate.
+								Under the rules, $he's allowed to force other slaves to have sex with $him, and $he @@.hotpink;eagerly awaits@@ the day more students enroll in $schoolroomName for $him to dominate.
 							<</if>>
 							<<set $slaves[$i].devotion += 1>>
 						<</if>>
@@ -3631,7 +3631,7 @@
 					<<if $cellblock != 0>>
 						@@.gold;spends $his day (and night) cleaning the cells in $cellblockName@@<<if $Wardeness != 0>>, where $he can experience $Wardeness.slaveName's tender mercies<</if>>.
 					<<else>>
-						spends $his day @@.gold;shut up in a dirty bathroom@@ until its spotless.
+						spends $his day @@.gold;shut up in a dirty bathroom@@ until it's spotless.
 					<</if>>
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
diff --git a/src/utility/saRulesWidgets.tw b/src/utility/saRulesWidgets.tw
index 65c209c7242e54397fe6f9d7ed8fa387c9b55b04..d18f188b6b53e09f09152e19b909d5d688baa895 100644
--- a/src/utility/saRulesWidgets.tw
+++ b/src/utility/saRulesWidgets.tw
@@ -40,929 +40,930 @@ and
 
 <<widget "saRulesPlayerFetishPlay">>
 
-					<<if ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
-						<<switch $slaves[$i].fetish>>
-						<<case "submissive">>
-							hold $him down and fuck $him
-						<<case "cumslut">>
-							<<if $PC.dick == 1>>
-								cum in $his mouth
-							<<else>>
-								use your strap-on on $his mouth
-							<</if>>
-						<<case "humiliation">>
-							use $him in public
-						<<case "buttslut">>
-							fuck $his butt
-						<<case "boobs">>
-							fondle $his breasts
-							<<if $slaves[$i].lactation > 0>>
-								<<set $slaves[$i].lactationDuration = 2>>
-								<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
-							<</if>>
-						<<case "sadist">>
-							let $him help you abuse other slaves
-						<<case "masochist">>
-							hurt $him
-						<<case "dom">>
-							let $him help you use other slaves
-						<<case "pregnancy">>
-							<<if isFertile($slaves[$i]) && $PC.dick == 1>>
-								put a baby in $him
-							<<elseif $slaves[$i].bellyPreg >= 1500 || $slaves[$i].bellyImplant >= 1500>>
-								enjoy $his fecund curves
-							<<else>>
-								breed $him
-							<</if>>
-						<<default>>
-							fuck $him
-						<</switch>>
-					<<else>>
-						fuck $him
-					<</if>>
+<<if ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
+	<<switch $slaves[$i].fetish>>
+	<<case "submissive">>
+		hold $him down and fuck $him
+	<<case "cumslut">>
+		<<if $PC.dick == 1>>
+			cum in $his mouth
+		<<else>>
+			use your strap-on on $his mouth
+		<</if>>
+	<<case "humiliation">>
+		use $him in public
+	<<case "buttslut">>
+		fuck $his butt
+	<<case "boobs">>
+		fondle $his breasts
+		<<if $slaves[$i].lactation > 0>>
+			<<set $slaves[$i].lactationDuration = 2>>
+			<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
+		<</if>>
+	<<case "sadist">>
+		let $him help you abuse other slaves
+	<<case "masochist">>
+		hurt $him
+	<<case "dom">>
+	let $him help you use other slaves
+	<<case "pregnancy">>
+		<<if isFertile($slaves[$i]) && $PC.dick == 1>>
+			put a baby in $him
+		<<elseif $slaves[$i].bellyPreg >= 1500 || $slaves[$i].bellyImplant >= 1500>>
+			enjoy $his fecund curves
+		<<else>>
+			breed $him
+		<</if>>
+	<<default>>
+		fuck $him
+	<</switch>>
+<<else>>
+	fuck $him
+<</if>>
 
 <</widget>>
 
 <<widget "saRulesPlayerEnergy">>
 
-						<<if $freeSexualEnergy > 0>>
-							<<if $freeSexualEnergy == 3>>
-								You have surplus sexual energy to burn, even when $he doesn't ask, and $he
-								<<if $slaves[$i].devotion < -20>>
-									@@.hotpink;hates $himself@@ for how often $he gets off on you relieving your needs with $his body.
-								<<elseif $slaves[$i].devotion <= 50 || $slaves[$i].trust <= 20>>
-									@@.hotpink;gets used to being a sex slave@@ every time $he climaxes as you use $him.
-								<<else>>
-									@@.hotpink;eagerly looks forward@@ to each climax $he shares with you.
-								<</if>>
-								<<set $slaves[$i].devotion += 2, $slaves[$i].need = 0>>
-								<<= SimpleSexAct($slaves[$i], 10)>>
-							<<elseif $freeSexualEnergy == 2>>
-								You have surplus sexual energy to fuck $him whenever <<if $slaves[$i].relationship == -3>> you notice $his need<<else>>$he forces $himself to ask<</if>>, and $he is @@.hotpink;sexually dependent@@ on you.
-								<<set $slaves[$i].devotion += 1, $slaves[$i].need -= 40>>
-								<<= SimpleSexAct($slaves[$i], 5)>>
-							<<elseif $slaves[$i].relationship == -3>>
-								You have little surplus sexual energy, but you make sure to keep your wife's needs in mind<<if $slaves[$i].devotion < -20>>, even if $he doesn't want it<</if>>.
-								<<set $slaves[$i].need -= 40>>
-								<<= SimpleSexAct($slaves[$i], 5)>>
-							<<else>>
-								You have little surplus sexual energy, and occasionally, $he asks in vain.
-								<<set $slaves[$i].need -= 20>>
-								<<= SimpleSexAct($slaves[$i], 2)>>
-							<</if>>
-						<<else>>
-							You have no surplus sexual energy, and $he asks in vain, @@.gold;reducing $his trust@@ in you.
-							<<set $slaves[$i].trust -= 1>>
-						<</if>>
+<<if $freeSexualEnergy > 0>>
+	<<if $freeSexualEnergy == 3>>
+		You have surplus sexual energy to burn, even when $he doesn't ask, and $he
+		<<if $slaves[$i].devotion < -20>>
+			@@.hotpink;hates $himself@@ for how often $he gets off on you relieving your needs with $his body.
+		<<elseif $slaves[$i].devotion <= 50 || $slaves[$i].trust <= 20>>
+			@@.hotpink;gets used to being a sex slave@@ every time $he climaxes as you use $him.
+		<<else>>
+			@@.hotpink;eagerly looks forward@@ to each climax $he shares with you.
+		<</if>>
+		<<set $slaves[$i].devotion += 2, $slaves[$i].need = 0>>
+		<<= SimpleSexAct($slaves[$i], 10)>>
+	<<elseif $freeSexualEnergy == 2>>
+		You have surplus sexual energy to fuck $him whenever <<if $slaves[$i].relationship == -3>> you notice $his need<<else>>$he forces $himself to ask<</if>>, and $he is @@.hotpink;sexually dependent@@ on you.
+		<<set $slaves[$i].devotion += 1, $slaves[$i].need -= 40>>
+		<<= SimpleSexAct($slaves[$i], 5)>>
+	<<elseif $slaves[$i].relationship == -3>>
+		You have little surplus sexual energy, but you make sure to keep your wife's needs in mind<<if $slaves[$i].devotion < -20>>, even if $he doesn't want it<</if>>.
+		<<set $slaves[$i].need -= 40>>
+		<<= SimpleSexAct($slaves[$i], 5)>>
+	<<else>>
+		You have little surplus sexual energy, and occasionally, $he asks in vain.
+		<<set $slaves[$i].need -= 20>>
+		<<= SimpleSexAct($slaves[$i], 2)>>
+	<</if>>
+<<else>>
+	You have no surplus sexual energy, and $he asks in vain, @@.gold;reducing $his trust@@ in you.
+	<<set $slaves[$i].trust -= 1>>
+<</if>>
 
 <</widget>>
 
 <<widget "saRulesPlayerDiscoversFetish">>
 
-					<<if $slaves[$i].fetishKnown == 0>>
-						<<if $freeSexualEnergy > 0>>
-							<<if $freeSexualEnergy > random(0,5)>>
-								<<set $slaves[$i].fetishKnown = 1>>
-								You discover that $he really likes it when you
-								<<switch $slaves[$i].fetish>>
-								<<case "submissive">>
-									hold $him down and fuck $him; @@.lightcoral;$he's a submissive!@@
-								<<case "cumslut">>
-									<<if $PC.dick == 1>>
-										cum in $his mouth; @@.lightcoral;$he's a cumslut!@@
-									<<else>>
-										use your strap-on in $his mouth; @@.lightcoral;$he's a cumslut!@@
-									<</if>>
-								<<case "humiliation">>
-									use $him in public; @@.lightcoral;$he's a humiliation fetishist!@@
-								<<case "buttslut">>
-									<<if canDoAnal($slaves[$i])>>fuck $his butt<<else>>tease $his anus<</if>>; @@.lightcoral;$he's an anal slut!@@
-								<<case "boobs">>
-									fondle $his breasts; @@.lightcoral;$he's a boob fetishist!@@
-								<<case "sadist">>
-									let $him help you abuse other slaves; @@.lightcoral;$he's a sadist!@@
-								<<case "masochist">>
-									hurt $him; @@.lightcoral;$he's a masochist!@@
-								<<case "dom">>
-									let $him help you use other slaves; @@.lightcoral;$he's dominant!@@
-								<<case "pregnancy">>
-									<<if $PC.dick == 1>>
-										<<if $slaves[$i].mpreg == 0>>
-											come <<if canDoVaginal($slaves[$i])>>inside<<else>>on<</if>> $him; @@.lightcoral;$he's a pregnancy fetishist!@@
-										<<else>>
-											come <<if canDoAnal($slaves[$i])>>inside<<else>>on<</if>> $him; @@.lightcoral;$he's a pregnancy fetishist!@@
-										<</if>>
-									<<else>>
-										talk dirty and call $him a mother; @@.lightcoral;$he's a pregnancy fetishist!@@
-									<</if>>
-								<<default>>
-									fuck $him; @@.lightcoral;$he's got a normal sexuality.@@
-								<</switch>>
-							<</if>>
-						<</if>>
-					<</if>> /* closes fetish discovery */
+<<if $slaves[$i].fetishKnown == 0>>
+	<<if $freeSexualEnergy > 0>>
+		<<if $freeSexualEnergy > random(0,5)>>
+			<<set $slaves[$i].fetishKnown = 1>>
+			You discover that $he really likes it when you
+			<<switch $slaves[$i].fetish>>
+			<<case "submissive">>
+				hold $him down and fuck $him; @@.lightcoral;$he's a submissive!@@
+			<<case "cumslut">>
+				<<if $PC.dick == 1>>
+					cum in $his mouth; @@.lightcoral;$he's a cumslut!@@
+				<<else>>
+					use your strap-on in $his mouth; @@.lightcoral;$he's a cumslut!@@
+				<</if>>
+			<<case "humiliation">>
+				use $him in public; @@.lightcoral;$he's a humiliation fetishist!@@
+			<<case "buttslut">>
+				<<if canDoAnal($slaves[$i])>>fuck $his butt<<else>>tease $his anus<</if>>; @@.lightcoral;$he's an anal slut!@@
+			<<case "boobs">>
+				fondle $his breasts; @@.lightcoral;$he's a boob fetishist!@@
+			<<case "sadist">>
+				let $him help you abuse other slaves; @@.lightcoral;$he's a sadist!@@
+			<<case "masochist">>
+				hurt $him; @@.lightcoral;$he's a masochist!@@
+			<<case "dom">>
+				let $him help you use other slaves; @@.lightcoral;$he's dominant!@@
+			<<case "pregnancy">>
+				<<if $PC.dick == 1>>
+					<<if $slaves[$i].mpreg == 0>>
+						come <<if canDoVaginal($slaves[$i])>>inside<<else>>on<</if>> $him; @@.lightcoral;$he's a pregnancy fetishist!@@
+					<<else>>
+						come <<if canDoAnal($slaves[$i])>>inside<<else>>on<</if>> $him; @@.lightcoral;$he's a pregnancy fetishist!@@
+					<</if>>
+				<<else>>
+					talk dirty and call $him a mother; @@.lightcoral;$he's a pregnancy fetishist!@@
+				<</if>>
+			<<default>>
+				fuck $him; @@.lightcoral;$he's got a normal sexuality.@@
+			<</switch>>
+		<</if>>
+	<</if>>
+<</if>> /* closes fetish discovery */
 
 <</widget>>
 
 <<widget "saRulesPlayerDrugEffects">>
 
-					<<if $slaves[$i].balls > 0>>
-						<<if ($slaves[$i].drugs == "testicle enhancement" || $slaves[$i].drugs == "intensive testicle enhancement")>>
-							<<if ($slaves[$i].devotion > 20) || ($slaves[$i].trust < -20)>>
-								<<if $slaves[$i].hormoneBalance >= 100>>
-									$He can't seem to get enough cum out of $his terribly swollen balls in one orgasm to relieve the pressure:
-									<<if $slaves[$i].dick>>
-										$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
-									<<else>>
-										$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
-									<</if>>
-									This forces $him to come to you for release many times a day, and $he @@.mediumaquamarine;is desperately reliant@@
-									<<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i]) && $freeSexualEnergy > 0>>
-										on your <<if $PC.dick == 0>>strap-on<<else>>penis<</if>> inside $his ass as a source of relief.
-									<<else>>
-										on you for relief.
-									<</if>>
-									<<set $slaves[$i].trust += 2>>
-								<<else>>
-									$His terribly swollen balls force $him to come to you for release several times a day, and $he @@.mediumaquamarine;learns to rely@@
-									<<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i]) && $freeSexualEnergy > 0>>
-										on your <<if $PC.dick == 0>>strap-on<<else>>penis<</if>> inside $his ass as a source of relief.
-									<<else>>
-										on you for relief.
-									<</if>>
-									<<set $slaves[$i].trust += 1>>
-								<</if>>
-							<<else>>
-								$He refuses to come to you for help with $his terribly swollen balls, no matter how backed up $he becomes. The intense blue-balling only @@.mediumorchid;makes $him dislike you more.@@
-								<<set $slaves[$i].devotion -= 1>>
-							<</if>>
-						<<elseif $slaves[$i].drugs == "hyper testicle enhancement">>
-							<<if ($slaves[$i].devotion > 20) || ($slaves[$i].trust < -20)>>
-								<<if $slaves[$i].hormoneBalance >= 100>>
-									$He can't seem to get enough cum out of $his grotesquely swollen balls in one orgasm to get relieve the pressure:
-									<<if $slaves[$i].dick>>
-										$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
-									<<else>>
-										$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
-									<</if>>
-									This forces $him to come to you for release many times a day, and $he @@.mediumaquamarine;is desperately reliant@@
-									<<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i]) && $freeSexualEnergy > 0>>
-										on your <<if $PC.dick == 0>>strap-on<<else>>penis<</if>> inside $his ass as a source of relief.
-									<<else>>
-										on you for relief.
-									<</if>>
-									<<set $slaves[$i].trust += 2>>
-								<<else>>
-									$His grotesquely swollen balls force $him to come to you for release dozens of times a day, and $he @@.mediumaquamarine;is desperately reliant@@
-									<<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i]) && $freeSexualEnergy > 0>>
-										on your <<if $PC.dick == 0>>strap-on<<else>>penis<</if>> inside $his ass as a source of relief.
-									<<else>>
-										on you for relief.
-									<</if>>
-									<<set $slaves[$i].trust += 1>>
-								<</if>>
-							<<else>>
-								$He refuses to come to you for help with $his grotesquely swollen balls, no matter how backed up and sore $he becomes. The intense blue-balling only @@.mediumorchid;makes $him hate you more.@@
-								<<set $slaves[$i].devotion -= 3>>
-							<</if>>
-						<</if>>
-					<</if>> /* close overactive balls block */
-					<<if $slaves[$i].drugs == "super fertility drugs" && canImpreg($slaves[$i], $PC)>>
-						<<if ($slaves[$i].devotion > 20) || ($slaves[$i].trust < -20)>>
-							$His reproductive system is in overdrive leading $him to come to you for insemination several times a day; $he @@.mediumaquamarine;desperately hopes@@ for the day your seed takes root in $his womb.
-							<<set $slaves[$i].trust += 1>>
-						<</if>>
-					<</if>>
+<<if $slaves[$i].balls > 0>>
+	<<if ($slaves[$i].drugs == "testicle enhancement" || $slaves[$i].drugs == "intensive testicle enhancement")>>
+		<<if ($slaves[$i].devotion > 20) || ($slaves[$i].trust < -20)>>
+			<<if $slaves[$i].hormoneBalance >= 100>>
+				$He can't seem to get enough cum out of $his terribly swollen balls in one orgasm to relieve the pressure:
+				<<if $slaves[$i].dick>>
+					$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
+				<<else>>
+					$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
+				<</if>>
+				This forces $him to come to you for release many times a day, and $he @@.mediumaquamarine;is desperately reliant@@
+				<<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i]) && $freeSexualEnergy > 0>>
+					on your <<if $PC.dick == 0>>strap-on<<else>>penis<</if>> inside $his ass as a source of relief.
+				<<else>>
+					on you for relief.
+				<</if>>
+				<<set $slaves[$i].trust += 2>>
+			<<else>>
+				$His terribly swollen balls force $him to come to you for release several times a day, and $he @@.mediumaquamarine;learns to rely@@
+				<<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i]) && $freeSexualEnergy > 0>>
+					on your <<if $PC.dick == 0>>strap-on<<else>>penis<</if>> inside $his ass as a source of relief.
+				<<else>>
+					on you for relief.
+				<</if>>
+				<<set $slaves[$i].trust += 1>>
+			<</if>>
+		<<else>>
+			$He refuses to come to you for help with $his terribly swollen balls, no matter how backed up $he becomes. The intense blue-balling only @@.mediumorchid;makes $him dislike you more.@@
+			<<set $slaves[$i].devotion -= 1>>
+		<</if>>
+	<<elseif $slaves[$i].drugs == "hyper testicle enhancement">>
+		<<if ($slaves[$i].devotion > 20) || ($slaves[$i].trust < -20)>>
+			<<if $slaves[$i].hormoneBalance >= 100>>
+				$He can't seem to get enough cum out of $his grotesquely swollen balls in one orgasm to get relieve the pressure:
+				<<if $slaves[$i].dick>>
+					$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
+				<<else>>
+					$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
+				<</if>>
+				This forces $him to come to you for release many times a day, and $he @@.mediumaquamarine;is desperately reliant@@
+				<<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i]) && $freeSexualEnergy > 0>>
+					on your <<if $PC.dick == 0>>strap-on<<else>>penis<</if>> inside $his ass as a source of relief.
+				<<else>>
+					on you for relief.
+				<</if>>
+				<<set $slaves[$i].trust += 2>>
+			<<else>>
+				$His grotesquely swollen balls force $him to come to you for release dozens of times a day, and $he @@.mediumaquamarine;is desperately reliant@@
+				<<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i]) && $freeSexualEnergy > 0>>
+					on your <<if $PC.dick == 0>>strap-on<<else>>penis<</if>> inside $his ass as a source of relief.
+				<<else>>
+					on you for relief.
+				<</if>>
+				<<set $slaves[$i].trust += 1>>
+			<</if>>
+		<<else>>
+			$He refuses to come to you for help with $his grotesquely swollen balls, no matter how backed up and sore $he becomes. The intense blue-balling only @@.mediumorchid;makes $him hate you more.@@
+			<<set $slaves[$i].devotion -= 3>>
+		<</if>>
+	<</if>>
+<</if>> /* close overactive balls block */
+<<if $slaves[$i].drugs == "super fertility drugs" && canImpreg($slaves[$i], $PC)>>
+	<<if ($slaves[$i].devotion > 20) || ($slaves[$i].trust < -20)>>
+		$His reproductive system is in overdrive leading $him to come to you for insemination several times a day; $he @@.mediumaquamarine;desperately hopes@@ for the day your seed takes root in $his womb.
+		<<set $slaves[$i].trust += 1>>
+	<</if>>
+<</if>>
 
 <</widget>>
 
 <<widget "saRulesMasturbationFetishPlay">>
-						<<if ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
-							<<if ($slaves[$i].fetish == "submissive")>>
-								frequently pretends to be getting held down and dominated.
-							<<elseif ($slaves[$i].fetish == "cumslut")>>
-								<<if $slaves[$i].dick > 5>>
-									enjoys giving $himself head.
-								<<elseif $slaves[$i].dick > 0>>
-									enjoys licking up $his own cum.
-								<<else>>
-									always has a dildo in $his mouth.
-								<</if>>
-							<<elseif ($slaves[$i].fetish == "humiliation")>>
-								usually does it out in the open for all to see.
-							<<elseif ($slaves[$i].fetish == "buttslut")>>
-								<<if ($slaves[$i].anus > 0)>>
-									usually pounds $his ass with the largest dildo $he can find.
-								<<else>>
-									enjoys fiddling with $his virgin asshole.
-								<</if>>
-							<<elseif ($slaves[$i].fetish == "boobs")>>
-								pays extra attention to $his breasts and nipples.
-								<<if $slaves[$i].lactation > 0>>
-									<<set $slaves[$i].lactationDuration = 2>>
-									<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
-								<<else>>
-									<<= induceLactation($slaves[$i])>>
-								<</if>>
-							<<elseif ($slaves[$i].fetish == "sadist")>>
-								frequently poses threats at $himself.
-							<<elseif ($slaves[$i].fetish == "masochist")>>
-								frequently pretends to be getting held down and forcibly raped.
-							<<elseif ($slaves[$i].fetish == "dom")>>
-								usually pretends to dominate $himself.
-							<<elseif ($slaves[$i].fetish == "pregnancy")>>
-								<<if $slaves[$i].belly > 1500>>
-									<<set _belly = bellyAdjective($activeSlave)>>
-									always rubs and teases $his _belly belly while doing so.
-								<<elseif isItemAccessible("a small empathy belly")>>
-									frequently straps on a fake belly to enhance $his fun.
-								<<else>>
-									frequently pretends to be
-									<<if $activeSlave.balls > 0>>
-										getting a girl pregnant.
-									<<else>>
-										getting knocked up.
-									<</if>>
-								<</if>>
-							<<elseif ($slaves[$i].energy > 95)>>
-								strives to achieve as many orgasms as $he can in one session.
-							<<else>>
-								quickly gets off and moves on.
-							<</if>>
-						<<elseif ($slaves[$i].energy > 95)>>
-							strives to achieve as many orgasms as $he can in one session.
-						<<else>>
-							quickly gets off and moves on.
-						<</if>> /* closes ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60) */
+
+<<if ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
+	<<if ($slaves[$i].fetish == "submissive")>>
+		frequently pretends to be getting held down and dominated.
+	<<elseif ($slaves[$i].fetish == "cumslut")>>
+		<<if $slaves[$i].dick > 5>>
+			enjoys giving $himself head.
+		<<elseif $slaves[$i].dick > 0>>
+			enjoys licking up $his own cum.
+		<<else>>
+			always has a dildo in $his mouth.
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "humiliation")>>
+		usually does it out in the open for all to see.
+	<<elseif ($slaves[$i].fetish == "buttslut")>>
+		<<if ($slaves[$i].anus > 0)>>
+			usually pounds $his ass with the largest dildo $he can find.
+		<<else>>
+			enjoys fiddling with $his virgin asshole.
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "boobs")>>
+		pays extra attention to $his breasts and nipples.
+		<<if $slaves[$i].lactation > 0>>
+			<<set $slaves[$i].lactationDuration = 2>>
+			<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
+		<<else>>
+			<<= induceLactation($slaves[$i])>>
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "sadist")>>
+		frequently poses threats at $himself.
+	<<elseif ($slaves[$i].fetish == "masochist")>>
+		frequently pretends to be getting held down and forcibly raped.
+	<<elseif ($slaves[$i].fetish == "dom")>>
+		usually pretends to dominate $himself.
+	<<elseif ($slaves[$i].fetish == "pregnancy")>>
+		<<if $slaves[$i].belly > 1500>>
+			<<set _belly = bellyAdjective($activeSlave)>>
+			always rubs and teases $his _belly belly while doing so.
+		<<elseif isItemAccessible("a small empathy belly")>>
+			frequently straps on a fake belly to enhance $his fun.
+		<<else>>
+			frequently pretends to be
+			<<if $activeSlave.balls > 0>>
+				getting a girl pregnant.
+			<<else>>
+				getting knocked up.
+			<</if>>
+		<</if>>
+	<<elseif ($slaves[$i].energy > 95)>>
+		strives to achieve as many orgasms as $he can in one session.
+	<<else>>
+		quickly gets off and moves on.
+	<</if>>
+<<elseif ($slaves[$i].energy > 95)>>
+	strives to achieve as many orgasms as $he can in one session.
+<<else>>
+	quickly gets off and moves on.
+<</if>> /* closes ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60) */
 
 <</widget>>
 
 <<widget "saRulesMasturbationDiscoversFetish">>
 
-						<<if ($slaves[$i].fetishKnown == 0) && (random(1,20) == 1)>>
-							<<set $slaves[$i].fetishKnown = 1>>
-							However, you start to notice a trend in $his fantasies,
-							<<if ($slaves[$i].fetish == "submissive")>>
-								$he likes to tie $himself up and boss $himself around; @@.lightcoral;$he's a submissive!@@
-							<<elseif ($slaves[$i].fetish == "cumslut")>>
-								<<if $slaves[$i].dick > 0>>
-									$he often eats $his own cum when $he's finished; @@.lightcoral;$he's a cumslut!@@
-								<<else>>
-									$he likes to have something, anything, in $his mouth while $he masturbates; @@.lightcoral;$he's a cumslut!@@
-								<</if>>
-							<<elseif ($slaves[$i].fetish == "humiliation")>>
-								$he tends to masturbate in places where others can walk in on $him; @@.lightcoral;$he's a humiliation fetishist!@@
-							<<elseif ($slaves[$i].fetish == "buttslut")>>
-								$he always pays special attention to $his butthole; @@.lightcoral;$he's an anal slut!@@
-							<<elseif ($slaves[$i].fetish == "boobs")>>
-								$he always has a hand to $his nipples; @@.lightcoral;$he's a boob fetishist!@@
-								<<if $slaves[$i].lactation > 0>>
-									<<set $slaves[$i].lactationDuration = 2>>
-									<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
-								<<else>>
-									<<= induceLactation($slaves[$i])>>
-								<</if>>
-							<<elseif ($slaves[$i].fetish == "sadist")>>
-								$he tends to threaten $his toys; @@.lightcoral;$he's a sadist!@@
-							<<elseif ($slaves[$i].fetish == "masochist")>>
-								$he often to abuses $himself; @@.lightcoral;$he's a masochist!@@
-							<<elseif ($slaves[$i].fetish == "dom")>>
-								$he sometimes bosses $his toys around; @@.lightcoral;$he's dominant!@@
-							<<elseif ($slaves[$i].fetish == "pregnancy")>>
-								$he frequently pretends to either get pregnant, be pregnant, or get someone else pregnant; @@.lightcoral;$he's a pregnancy fetishist!@@
-							<<elseif ($slaves[$i].energy > 95)>>
-								$he's always horny; @@.lightcoral;$he's a nympho!@@
-							<<else>>
-								@@.lightcoral;they are incredibly mundane.@@
-							<</if>>
-						<</if>>
+<<if ($slaves[$i].fetishKnown == 0) && (random(1,20) == 1)>>
+	<<set $slaves[$i].fetishKnown = 1>>
+	However, you start to notice a trend in $his fantasies,
+	<<if ($slaves[$i].fetish == "submissive")>>
+		$he likes to tie $himself up and boss $himself around; @@.lightcoral;$he's a submissive!@@
+	<<elseif ($slaves[$i].fetish == "cumslut")>>
+		<<if $slaves[$i].dick > 0>>
+			$he often eats $his own cum when $he's finished; @@.lightcoral;$he's a cumslut!@@
+		<<else>>
+			$he likes to have something, anything, in $his mouth while $he masturbates; @@.lightcoral;$he's a cumslut!@@
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "humiliation")>>
+		$he tends to masturbate in places where others can walk in on $him; @@.lightcoral;$he's a humiliation fetishist!@@
+	<<elseif ($slaves[$i].fetish == "buttslut")>>
+		$he always pays special attention to $his butthole; @@.lightcoral;$he's an anal slut!@@
+	<<elseif ($slaves[$i].fetish == "boobs")>>
+		$he always has a hand to $his nipples; @@.lightcoral;$he's a boob fetishist!@@
+		<<if $slaves[$i].lactation > 0>>
+			<<set $slaves[$i].lactationDuration = 2>>
+			<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
+		<<else>>
+			<<= induceLactation($slaves[$i])>>
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "sadist")>>
+		$he tends to threaten $his toys; @@.lightcoral;$he's a sadist!@@
+	<<elseif ($slaves[$i].fetish == "masochist")>>
+		$he often to abuses $himself; @@.lightcoral;$he's a masochist!@@
+	<<elseif ($slaves[$i].fetish == "dom")>>
+		$he sometimes bosses $his toys around; @@.lightcoral;$he's dominant!@@
+	<<elseif ($slaves[$i].fetish == "pregnancy")>>
+		$he frequently pretends to either get pregnant, be pregnant, or get someone else pregnant; @@.lightcoral;$he's a pregnancy fetishist!@@
+	<<elseif ($slaves[$i].energy > 95)>>
+		$he's always horny; @@.lightcoral;$he's a nympho!@@
+	<<else>>
+		@@.lightcoral;they are incredibly mundane.@@
+	<</if>>
+<</if>>
 
 <</widget>>
 
 <<widget "saRulesMasturbationDrugEffects">>
 
-					<<if $slaves[$i].balls > 0>>
-						<<if $slaves[$i].drugs == "testicle enhancement" || $slaves[$i].drugs == "intensive testicle enhancement">>
-							<<if $slaves[$i].hormoneBalance >= 100>>
-								$He can't seem to get enough cum out of $his terribly swollen balls in one orgasm to get relieve the pressure:
-								<<if $slaves[$i].dick>>
-										$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
-									<<else>>
-										$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
-									<</if>>
-								$He masturbates as often as $he can, but @@.mediumorchid;can't find relief.@@
-								<<set $slaves[$i].devotion-->>
-							<<else>>
-								$His terribly swollen balls force $him to masturbate several times a day, cultivating a need for sex that @@.mediumorchid;$he can't fulfill.@@
-								<<set $slaves[$i].devotion -= 1>>
-							<</if>>
-						<<elseif $slaves[$i].drugs == "hyper testicle enhancement">>
-							<<if $slaves[$i].hormoneBalance >= 100>>
-								$He can't seem to get enough cum out of $his grotesquely swollen balls in one orgasm to get relieve the pressure:
-								<<if $slaves[$i].dick>>
-										$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
-									<<else>>
-										$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
-									<</if>>
-								$He masturbates non-stop, but @@.mediumorchid;can't find relief.@@
-								<<set $slaves[$i].devotion -= 3>>
-							<<else>>
-								$His grotesquely swollen balls force $him to masturbate constantly, cultivating a need for sex that @@.mediumorchid;$he can't fulfill.@@
-								<<set $slaves[$i].devotion -= 1>>
-							<</if>>
-							<<if $slaves[$i].energy > 40>>
-								The constant orgasms steadily lose their impact, @@.red;weakening $his sex drive.@@
-								<<set $slaves[$i].energy -= 2>>
-							<</if>>
-						<</if>>
-					<</if>>
-					<<if $slaves[$i].drugs == "super fertility drugs" && canGetPregnant($slaves[$i])>>
-						$His reproductive system is in overdrive,
-						<<if $slaves[$i].dick > 9>>
-							leaving $him @@.mediumorchid;desperately fucking $himself@@ in an effort to get pregnant since @@.gold;you won't <<if $PC.dick == 1>>give $him<<else>>let $him find<</if>> the dick $he needs.@@
-							<<if canImpreg($slaves[$i], $slaves[$i])>>
-								<<= knockMeUp($slaves[$i], 5, 2, $slaves[$i].ID, 1)>>
-							<</if>>
-							<<if $slaves[$i].mpreg == 1 && $slaves[$i].anus == 0>>
-								@@.lime;$He is so baby crazed $he takes $his own anal virginity.@@
-								<<set $slaves[$i].anus++>>
-							<<elseif $slaves[$i].vagina == 0>>
-								@@.lime;$He is so baby crazed $he takes $his own virginity.@@
-								<<set $slaves[$i].vagina++>>
-							<</if>>
-							<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 2>>
-						<<elseif ($slaves[$i].devotion >= -20)>>
-							leaving $him @@.mediumorchid;completely unfulfilled@@ since @@.gold;you won't <<if $PC.dick == 1>>give $him<<else>>let $him find<</if>> the dick $he needs.@@
-							<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 2>>
-						<<else>>
-							leaving $him desperate for a thorough seeding @@.mediumorchid;that you've forbidden $him from having.@@
-							<<set $slaves[$i].devotion -= 3>>
-						<</if>>
-					<</if>>
-					<<if $slaves[$i].energy > 60>>
-						$His chronic masturbation @@.red;steadily dulls@@ $his sexual pleasure.
-						<<set $slaves[$i].energy-->>
-					<</if>>
+<<if $slaves[$i].balls > 0>>
+	<<if $slaves[$i].drugs == "testicle enhancement" || $slaves[$i].drugs == "intensive testicle enhancement">>
+		<<if $slaves[$i].hormoneBalance >= 100>>
+			$He can't seem to get enough cum out of $his terribly swollen balls in one orgasm to get relieve the pressure:
+			<<if $slaves[$i].dick>>
+				$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
+			<<else>>
+				$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
+			<</if>>
+			$He masturbates as often as $he can, but @@.mediumorchid;can't find relief.@@
+			<<set $slaves[$i].devotion-->>
+		<<else>>
+			$His terribly swollen balls force $him to masturbate several times a day, cultivating a need for sex that @@.mediumorchid;$he can't fulfill.@@
+			<<set $slaves[$i].devotion -= 1>>
+		<</if>>
+	<<elseif $slaves[$i].drugs == "hyper testicle enhancement">>
+		<<if $slaves[$i].hormoneBalance >= 100>>
+			$He can't seem to get enough cum out of $his grotesquely swollen balls in one orgasm to get relieve the pressure:
+			<<if $slaves[$i].dick>>
+				$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
+			<<else>>
+				$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
+			<</if>>
+			$He masturbates non-stop, but @@.mediumorchid;can't find relief.@@
+			<<set $slaves[$i].devotion -= 3>>
+		<<else>>
+			$His grotesquely swollen balls force $him to masturbate constantly, cultivating a need for sex that @@.mediumorchid;$he can't fulfill.@@
+			<<set $slaves[$i].devotion -= 1>>
+		<</if>>
+		<<if $slaves[$i].energy > 40>>
+			The constant orgasms steadily lose their impact, @@.red;weakening $his sex drive.@@
+			<<set $slaves[$i].energy -= 2>>
+		<</if>>
+	<</if>>
+<</if>>
+<<if $slaves[$i].drugs == "super fertility drugs" && canGetPregnant($slaves[$i])>>
+	$His reproductive system is in overdrive,
+	<<if $slaves[$i].dick > 9>>
+		leaving $him @@.mediumorchid;desperately fucking $himself@@ in an effort to get pregnant since @@.gold;you won't <<if $PC.dick == 1>>give $him<<else>>let $him find<</if>> the dick $he needs.@@
+		<<if canImpreg($slaves[$i], $slaves[$i])>>
+			<<= knockMeUp($slaves[$i], 5, 2, $slaves[$i].ID, 1)>>
+		<</if>>
+		<<if $slaves[$i].mpreg == 1 && $slaves[$i].anus == 0>>
+			@@.lime;$He is so baby crazed $he takes $his own anal virginity.@@
+			<<set $slaves[$i].anus++>>
+		<<elseif $slaves[$i].vagina == 0>>
+			@@.lime;$He is so baby crazed $he takes $his own virginity.@@
+			<<set $slaves[$i].vagina++>>
+		<</if>>
+		<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 2>>
+	<<elseif ($slaves[$i].devotion >= -20)>>
+		leaving $him @@.mediumorchid;completely unfulfilled@@ since @@.gold;you won't <<if $PC.dick == 1>>give $him<<else>>let $him find<</if>> the dick $he needs.@@
+		<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 2>>
+	<<else>>
+		leaving $him desperate for a thorough seeding @@.mediumorchid;that you've forbidden $him from having.@@
+		<<set $slaves[$i].devotion -= 3>>
+	<</if>>
+<</if>>
+<<if $slaves[$i].energy > 60>>
+	$His chronic masturbation @@.red;steadily dulls@@ $his sexual pleasure.
+	<<set $slaves[$i].energy-->>
+<</if>>
 
 <</widget>>
 
 <<widget "saRulesRapeFetish">>
 
-							<<if ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
-								<<if ($slaves[$i].fetish == "submissive")>>
-									plead that other slaves fuck $him.
-									<<if $averageDick > 4>>
-										<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
-											<<if ($slaves[$i].anus*40)-($averageDick*5) < random(1,100)>>
-												@@.lime;$His asshole is loosened@@ during sex with other slaves, since most of the cocks $he enticed a dominating buttfuck from are very large.
-												<<set $slaves[$i].anus++>>
-												<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
-											<</if>>
-										<</if>>
-											<<if $averageDick > 5>>
-											<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
-												<<if ($slaves[$i].vagina*40)-($averageDick*5) < random(1,100)>>
-													Since most of the slaves $he enticed a pounding from are extremely hung, @@.lime;$his cunt gets stretched out.@@
-													<<set $slaves[$i].vagina++>>
-													<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
-												<</if>>
-											<</if>>
-										<</if>>
-									<</if>>
-									<<run SimpleSlaveFucking($slaves[$i], 7)>>
-								<<elseif ($slaves[$i].fetish == "cumslut")>>
-									suck or be sucked by any slave $he fancies.
-									<<set _fuckCount = random(5,15)>>
-									<<set $slaves[$i].counter.oral += _fuckCount, $oralTotal += _fuckCount>>
-								<<elseif ($slaves[$i].fetish == "humiliation")>>
-									demand that other slaves let $him fuck them in public.
-									<<if $slaves[$i].assignmentVisible>>
-									<<if !$slaves[$i].rivalry>>
-										<<SlaveSort $RapeableIDs>>
-										<<for _dI = 0; _dI < $RapeableIDs.length; _dI++>>
-											<<set _j = $slaveIndices[$RapeableIDs[_dI]]>>
-											<<if !$slaves[_j].rivalry>>
-											<<if $slaves[_j].assignmentVisible || $slaves[_j].assignment == $slaves[$i].assignment>>
-											<<if $slaves[_j].devotion <= 20>>
-											<<if $slaves[_j].trust < -20>>
-												Craving a rush, $he repeatedly forces a reluctant <<= SlaveFullName($slaves[_j])>> to have sex with $him in public. $slaves[_j].slaveName resents this, and $slaves[$i].slaveName's ongoing sexual abuse @@.lightsalmon;starts a rivalry@@ between them.
-												<<set $slaves[$i].rivalry = 1, $slaves[_j].rivalry = 1, $slaves[$i].rivalryTarget = $slaves[_j].ID, $slaves[_j].rivalryTarget = $slaves[$i].ID>>
-												<<run SimpleSlaveFucking($slaves[_j], 4)>>
-												<<if canPenetrate($slaves[_j])>>
-													<<set _fuckCount = random(1,3)>>
-													<<set $slaves[_j].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-												<</if>>
-												<<break>>
-											<</if>>
-											<</if>>
-											<</if>>
-											<</if>>
-										<</for>>
-									<</if>>
-									<</if>>
-									<<run SimpleSlaveFucking($slaves[$i], 4)>>
-									<<if canPenetrate($slaves[$i])>>
+<<if ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
+	<<if ($slaves[$i].fetish == "submissive")>>
+		plead that other slaves fuck $him.
+		<<if $averageDick > 4>>
+			<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
+				<<if ($slaves[$i].anus*40)-($averageDick*5) < random(1,100)>>
+					@@.lime;$His asshole is loosened@@ during sex with other slaves, since most of the cocks $he enticed a dominating buttfuck from are very large.
+					<<set $slaves[$i].anus++>>
+					<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
+				<</if>>
+			<</if>>
+			<<if $averageDick > 5>>
+				<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
+					<<if ($slaves[$i].vagina*40)-($averageDick*5) < random(1,100)>>
+						Since most of the slaves $he enticed a pounding from are extremely hung, @@.lime;$his cunt gets stretched out.@@
+						<<set $slaves[$i].vagina++>>
+						<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
+					<</if>>
+				<</if>>
+			<</if>>
+		<</if>>
+		<<run SimpleSlaveFucking($slaves[$i], 7)>>
+	<<elseif ($slaves[$i].fetish == "cumslut")>>
+		suck or be sucked by any slave $he fancies.
+		<<set _fuckCount = random(5,15)>>
+		<<set $slaves[$i].counter.oral += _fuckCount, $oralTotal += _fuckCount>>
+	<<elseif ($slaves[$i].fetish == "humiliation")>>
+		demand that other slaves let $him fuck them in public.
+		<<if $slaves[$i].assignmentVisible>>
+			<<if !$slaves[$i].rivalry>>
+				<<SlaveSort $RapeableIDs>>
+				<<for _dI = 0; _dI < $RapeableIDs.length; _dI++>>
+					<<set _j = $slaveIndices[$RapeableIDs[_dI]]>>
+					<<if !$slaves[_j].rivalry>>
+						<<if $slaves[_j].assignmentVisible || $slaves[_j].assignment == $slaves[$i].assignment>>
+							<<if $slaves[_j].devotion <= 20>>
+								<<if $slaves[_j].trust < -20>>
+									Craving a rush, $he repeatedly forces a reluctant <<= SlaveFullName($slaves[_j])>> to have sex with $him in public. $slaves[_j].slaveName resents this, and $slaves[$i].slaveName's ongoing sexual abuse @@.lightsalmon;starts a rivalry@@ between them.
+									<<set $slaves[$i].rivalry = 1, $slaves[_j].rivalry = 1, $slaves[$i].rivalryTarget = $slaves[_j].ID, $slaves[_j].rivalryTarget = $slaves[$i].ID>>
+									<<run SimpleSlaveFucking($slaves[_j], 4)>>
+									<<if canPenetrate($slaves[_j])>>
 										<<set _fuckCount = random(1,3)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+										<<set $slaves[_j].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
 									<</if>>
-								<<elseif ($slaves[$i].fetish == "buttslut") && canDoAnal($slaves[$i])>>
-									demand that other slaves penetrate $his anus.
-									<<if $averageDick > 4>>
-										<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
-											<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
-												Since most of the slaves $he demands anal sex from are extremely hung, @@.lime;$his asshole gets stretched out.@@
-												<<set $slaves[$i].anus += 1>>
-											<</if>>
-										<</if>>
-									<</if>>
-									<<set _fuckCount = random(5,12)>>
-									<<set $slaves[$i].counter.anal += _fuckCount, $analTotal += _fuckCount>>
-								<<elseif ($slaves[$i].fetish == "boobs")>>
-									demand that other slaves massage $his breasts.
-									<<if $slaves[$i].lactation > 0>>
-										<<set $slaves[$i].lactationDuration = 2>>
-										<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
+									<<break>>
+								<</if>>
+							<</if>>
+						<</if>>
+					<</if>>
+				<</for>>
+			<</if>>
+		<</if>>
+		<<run SimpleSlaveFucking($slaves[$i], 4)>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(1,3)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "buttslut") && canDoAnal($slaves[$i])>>
+		demand that other slaves penetrate $his anus.
+		<<if $averageDick > 4>>
+			<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
+				<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
+					Since most of the slaves $he demands anal sex from are extremely hung, @@.lime;$his asshole gets stretched out.@@
+					<<set $slaves[$i].anus += 1>>
+				<</if>>
+			<</if>>
+		<</if>>
+		<<set _fuckCount = random(5,12)>>
+		<<set $slaves[$i].counter.anal += _fuckCount, $analTotal += _fuckCount>>
+	<<elseif ($slaves[$i].fetish == "boobs")>>
+		demand that other slaves massage $his breasts.
+		<<if $slaves[$i].lactation > 0>>
+			<<set $slaves[$i].lactationDuration = 2>>
+			<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
+		<<else>>
+			<<= induceLactation($slaves[$i])>>
+		<</if>>
+		<<set _fuckCount = random(10,25)>>
+		<<set $slaves[$i].counter.mammary += _fuckCount, $mammaryTotal += _fuckCount>>
+	<<elseif ($slaves[$i].fetish == "sadist")>>
+		force the most reluctant slaves to let $him fuck them.
+		<<if $slaves[$i].assignmentVisible>>
+			<<if !$slaves[$i].rivalry>>
+				<<SlaveSort $RapeableIDs>>
+				<<for _dI = 0; _dI < $RapeableIDs.length; _dI++>>
+					<<set _j = $slaveIndices[$RapeableIDs[_dI]]>>
+					<<setLocalPronouns $slaves[_j] 2>>
+					<<if !$slaves[_j].rivalry>>
+						<<if $slaves[_j].assignmentVisible || $slaves[_j].assignment == $slaves[$i].assignment>>
+							<<if $slaves[_j].devotion <= 50>>
+								<<if $slaves[_j].sexualFlaw != "none">>
+									$He focuses on <<= SlaveFullName($slaves[_j])>>, who has a sexual flaw $slaves[$i].slaveName can exploit. $He sadistically
+									<<if $slaves[_j].sexualFlaw == "hates oral">>
+										rapes the poor slave's face<<if !canAchieveErection($slaves[$i])>> with $his fingers<</if>>. $slaves[_j].slaveName hates oral
+									<<elseif $slaves[_j].sexualFlaw == "hates penetration" && canDoVaginal($slaves[_j])>>
+										rapes the poor slave's pussy<<if !canAchieveErection($slaves[$i])>> with $his fingers<</if>>. $slaves[_j].slaveName hates penetration
+									<<elseif ($slaves[_j].sexualFlaw == "hates anal" || $slaves[_j].sexualFlaw == "hates penetration") && canDoAnal($slaves[_j])>>
+										rapes the poor slave's ass<<if !canAchieveErection($slaves[$i])>> with $his fingers<</if>>. $slaves[_j].slaveName hates anal
+									<<elseif $slaves[_j].sexualFlaw == "shamefast">>
+										rapes the poor slave in public. $slaves[_j].slaveName is terribly shamefast
+									<<elseif $slaves[_j].sexualFlaw == "idealistic">>
+										rapes the poor slave every time $he catches _him2 being romantic. $slaves[_j].slaveName is still idealistic
 									<<else>>
-										<<= induceLactation($slaves[$i])>>
-									<</if>>
-									<<set _fuckCount = random(10,25)>>
-									<<set $slaves[$i].counter.mammary += _fuckCount, $mammaryTotal += _fuckCount>>
-								<<elseif ($slaves[$i].fetish == "sadist")>>
-									force the most reluctant slaves to let $him fuck them.
-									<<if $slaves[$i].assignmentVisible>>
-									<<if !$slaves[$i].rivalry>>
-										<<SlaveSort $RapeableIDs>>
-										<<for _dI = 0; _dI < $RapeableIDs.length; _dI++>>
-											<<set _j = $slaveIndices[$RapeableIDs[_dI]]>>
-											<<setLocalPronouns $slaves[_j] 2>>
-											<<if !$slaves[_j].rivalry>>
-											<<if $slaves[_j].assignmentVisible || $slaves[_j].assignment == $slaves[$i].assignment>>
-											<<if $slaves[_j].devotion <= 50>>
-											<<if $slaves[_j].sexualFlaw != "none">>
-												$He focuses on <<= SlaveFullName($slaves[_j])>>, who has a sexual flaw $slaves[$i].slaveName can exploit. $He sadistically
-												<<if $slaves[_j].sexualFlaw == "hates oral">>
-													rapes the poor slave's face<<if !canAchieveErection($slaves[$i])>> with $his fingers<</if>>. $slaves[_j].slaveName hates oral
-												<<elseif $slaves[_j].sexualFlaw == "hates penetration" && canDoVaginal($slaves[_j])>>
-													rapes the poor slave's pussy<<if !canAchieveErection($slaves[$i])>> with $his fingers<</if>>. $slaves[_j].slaveName hates penetration
-												<<elseif ($slaves[_j].sexualFlaw == "hates anal" || $slaves[_j].sexualFlaw == "hates penetration") && canDoAnal($slaves[_j])>>
-													rapes the poor slave's ass<<if !canAchieveErection($slaves[$i])>> with $his fingers<</if>>. $slaves[_j].slaveName hates anal
-												<<elseif $slaves[_j].sexualFlaw == "shamefast">>
-													rapes the poor slave in public. $slaves[_j].slaveName is terribly shamefast
-												<<elseif $slaves[_j].sexualFlaw == "idealistic">>
-													rapes the poor slave every time $he catches _him2 being romantic. $slaves[_j].slaveName is still idealistic
-												<<else>>
-													rapes the poor slave every chance $he gets,
-												<</if>>
-												and the sexual abuse @@.lightsalmon;starts a rivalry@@ between them.
-												<<set $slaves[$i].rivalry = 1, $slaves[_j].rivalry = 1, $slaves[$i].rivalryTarget = $slaves[_j].ID, $slaves[_j].rivalryTarget = $slaves[$i].ID>>
-												<<break>>
-												<<run SimpleSlaveFucking($slaves[_j], 4)>>
-												<<if canPenetrate($slaves[_j])>>
-													<<set _fuckCount = random(1,3)>>
-													<<set $slaves[_j].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-												<</if>>
-											<</if>>
-											<</if>>
-											<</if>>
-											<</if>>
-										<</for>>
-									<</if>>
+										rapes the poor slave every chance $he gets,
 									<</if>>
-									<<run SimpleSlaveFucking($slaves[$i], 4)>>
-									<<if canPenetrate($slaves[$i])>>
+									and the sexual abuse @@.lightsalmon;starts a rivalry@@ between them.
+									<<set $slaves[$i].rivalry = 1, $slaves[_j].rivalry = 1, $slaves[$i].rivalryTarget = $slaves[_j].ID, $slaves[_j].rivalryTarget = $slaves[$i].ID>>
+									<<break>>
+									<<run SimpleSlaveFucking($slaves[_j], 4)>>
+									<<if canPenetrate($slaves[_j])>>
 										<<set _fuckCount = random(1,3)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-									<</if>>
-								<<elseif ($slaves[$i].fetish == "masochist")>>
-									demand that other slaves hurt $him.
-									<<if $averageDick > 4>>
-										<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
-											<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
-												@@.lime;$His asshole is loosened@@ during sex with hung slaves, since $he often relies on painal to address $his needs.
-												<<set $slaves[$i].anus += 1>>
-												<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
-											<</if>>
-										<</if>>
-										<<if $averageDick > 5>>
-											<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
-												<<if ($slaves[$i].vagina*30)-($averageDick*5) < random(1,100)>>
-													Since $he usually demands that hung slaves fuck $him hard enough to make $his pussy hurt, @@.lime;$his cunt gets stretched out.@@
-													<<set $slaves[$i].vagina += 1>>
-													<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
-												<</if>>
-											<</if>>
-										<</if>>
-									<</if>>
-									<<run SimpleSlaveFucking($slaves[$i], 12)>>
-								<<elseif ($slaves[$i].fetish == "dom")>>
-									force other slaves to submit to $him.
-									<<if $slaves[$i].assignmentVisible>>
-									<<if !$slaves[$i].rivalry>>
-										<<SlaveSort $RapeableIDs>>
-										<<for _dI = 0; _dI < $RapeableIDs.length; _dI++>>
-											<<set _j = $slaveIndices[$RapeableIDs[_dI]]>>
-											<<if !$slaves[_j].rivalry>>
-											<<if $slaves[_j].assignmentVisible || $slaves[_j].assignment == $slaves[$i].assignment>>
-											<<if $slaves[_j].devotion <= 20>>
-											<<if $slaves[_j].trust < -20>>
-												$He repeatedly rapes a reluctant <<= SlaveFullName($slaves[_j])>>; $he can't seem to keep $his hands off the poor slave, who can't avoid $him. Not surprisingly, $slaves[_j].slaveName resents this, and $slaves[$i].slaveName's ongoing sexual abuse @@.lightsalmon;starts a rivalry@@ between them.
-												<<set $slaves[$i].rivalry = 1, $slaves[_j].rivalry = 1, $slaves[$i].rivalryTarget = $slaves[_j].ID, $slaves[_j].rivalryTarget = $slaves[$i].ID>>
-												<<break>>
-												<<run SimpleSlaveFucking($slaves[_j], 4)>>
-											<</if>>
-											<</if>>
-											<</if>>
-											<</if>>
-										<</for>>
-									<</if>>
-									<</if>>
-									<<run SimpleSlaveFucking($slaves[$i], 7)>>
-									<<if canPenetrate($slaves[$i])>>
-										<<set _fuckCount = random(6,9)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-									<</if>>
-								<<elseif ($slaves[$i].fetish == "pregnancy")>>
-									demand that other slaves indulge $his pregnancy fetish.
-									<<if $averageDick > 5>>
-										<<if $slaves[$i].mpreg == 0>>
-											<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
-											<<if ($slaves[$i].vagina*40)-($averageDick*5) < random(1,100)>>
-												Since $he constantly demands to be fucked deeply to get $his womb filled with cum, @@.lime;$his cunt gets stretched out.@@
-												<<set $slaves[$i].vagina += 1>>
-												<<set _fuckCount = random(7,14)>>
-												<<set $slaves[$i].counter.vaginal += _fuckCount, $vaginalTotal += _fuckCount>>
-											<</if>>
-											<</if>>
-										<<else>>
-											<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
-											<<if ($slaves[$i].anus*40)-($averageDick*5) < random(1,100)>>
-												Since $he constantly demands to be fucked deeply to get $his womb filled with cum, @@.lime;$his ass gets stretched out.@@
-												<<set $slaves[$i].anus += 1>>
-												<<set _fuckCount = random(7,14)>>
-												<<set $slaves[$i].counter.anal += _fuckCount, $analTotal += _fuckCount>>
-											<</if>>
-											<</if>>
-										<</if>>
-									<</if>>
-									<<if canPenetrate($slaves[$i])>>
-										<<set _fuckCount = random(6,9)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-									<</if>>
-								<<elseif ($slaves[$i].energy > 95)>>
-									demand that your other slaves satisfy $his formidable appetites.
-									<<if $averageDick > 4>>
-										<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
-											<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
-												@@.lime;$His asshole is loosened@@ during sex with well endowed slaves, since $he's so addicted to sex all $his holes see heavy traffic.
-												<<set $slaves[$i].anus += 1>>
-												<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
-											<</if>>
-										<</if>>
-										<<if $averageDick > 5>>
-											<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
-												<<if ($slaves[$i].vagina*30)-($averageDick*5) < random(1,100)>>
-													$He indulges in non-stop sex with your well endowed slaves, so much so that @@.lime;$his cunt gets stretched out.@@
-													<<set $slaves[$i].vagina += 1>>
-													<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
-												<</if>>
-											<</if>>
-										<</if>>
-									<</if>>
-									<<run SimpleSlaveFucking($slaves[$i], 7)>>
-									<<if canPenetrate($slaves[$i])>>
-										<<set _fuckCount = random(3,6)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-									<</if>>
-								<<else>>
-									demand that other slaves have sex with $him.
-									<<run SimpleSlaveFucking($slaves[$i], 7)>>
-									<<if canPenetrate($slaves[$i])>>
-										<<set _fuckCount = random(3,6)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+										<<set $slaves[_j].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
 									<</if>>
 								<</if>>
-							<<else>>
-								demand that other slaves have sex with $him.
-								<<run SimpleSlaveFucking($slaves[$i], 7)>>
-								<<if canPenetrate($slaves[$i])>>
-									<<set _fuckCount = random(3,6)>>
-									<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+							<</if>>
+						<</if>>
+					<</if>>
+				<</for>>
+			<</if>>
+		<</if>>
+		<<run SimpleSlaveFucking($slaves[$i], 4)>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(1,3)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "masochist")>>
+		demand that other slaves hurt $him.
+		<<if $averageDick > 4>>
+			<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
+				<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
+					@@.lime;$His asshole is loosened@@ during sex with hung slaves, since $he often relies on painal to address $his needs.
+					<<set $slaves[$i].anus += 1>>
+					<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
+				<</if>>
+			<</if>>
+			<<if $averageDick > 5>>
+				<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
+					<<if ($slaves[$i].vagina*30)-($averageDick*5) < random(1,100)>>
+						Since $he usually demands that hung slaves fuck $him hard enough to make $his pussy hurt, @@.lime;$his cunt gets stretched out.@@
+						<<set $slaves[$i].vagina += 1>>
+						<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
+					<</if>>
+				<</if>>
+			<</if>>
+		<</if>>
+		<<run SimpleSlaveFucking($slaves[$i], 12)>>
+	<<elseif ($slaves[$i].fetish == "dom")>>
+		force other slaves to submit to $him.
+		<<if $slaves[$i].assignmentVisible>>
+			<<if !$slaves[$i].rivalry>>
+				<<SlaveSort $RapeableIDs>>
+				<<for _dI = 0; _dI < $RapeableIDs.length; _dI++>>
+					<<set _j = $slaveIndices[$RapeableIDs[_dI]]>>
+					<<if !$slaves[_j].rivalry>>
+						<<if $slaves[_j].assignmentVisible || $slaves[_j].assignment == $slaves[$i].assignment>>
+							<<if $slaves[_j].devotion <= 20>>
+								<<if $slaves[_j].trust < -20>>
+									$He repeatedly rapes a reluctant <<= SlaveFullName($slaves[_j])>>; $he can't seem to keep $his hands off the poor slave, who can't avoid $him. Not surprisingly, $slaves[_j].slaveName resents this, and $slaves[$i].slaveName's ongoing sexual abuse @@.lightsalmon;starts a rivalry@@ between them.
+									<<set $slaves[$i].rivalry = 1, $slaves[_j].rivalry = 1, $slaves[$i].rivalryTarget = $slaves[_j].ID, $slaves[_j].rivalryTarget = $slaves[$i].ID>>
+									<<break>>
+									<<run SimpleSlaveFucking($slaves[_j], 4)>>
 								<</if>>
-							<</if>> /* closes ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60) */
+							<</if>>
+						<</if>>
+					<</if>>
+				<</for>>
+			<</if>>
+		<</if>>
+		<<run SimpleSlaveFucking($slaves[$i], 7)>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(6,9)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "pregnancy")>>
+		demand that other slaves indulge $his pregnancy fetish.
+		<<if $averageDick > 5>>
+			<<if $slaves[$i].mpreg == 0>>
+				<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
+					<<if ($slaves[$i].vagina*40)-($averageDick*5) < random(1,100)>>
+						Since $he constantly demands to be fucked deeply to get $his womb filled with cum, @@.lime;$his cunt gets stretched out.@@
+						<<set $slaves[$i].vagina += 1>>
+						<<set _fuckCount = random(7,14)>>
+						<<set $slaves[$i].counter.vaginal += _fuckCount, $vaginalTotal += _fuckCount>>
+					<</if>>
+				<</if>>
+			<<else>>
+				<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
+					<<if ($slaves[$i].anus*40)-($averageDick*5) < random(1,100)>>
+						Since $he constantly demands to be fucked deeply to get $his womb filled with cum, @@.lime;$his ass gets stretched out.@@
+						<<set $slaves[$i].anus += 1>>
+						<<set _fuckCount = random(7,14)>>
+						<<set $slaves[$i].counter.anal += _fuckCount, $analTotal += _fuckCount>>
+					<</if>>
+				<</if>>
+			<</if>>
+		<</if>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(6,9)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<<elseif ($slaves[$i].energy > 95)>>
+		demand that your other slaves satisfy $his formidable appetites.
+		<<if $averageDick > 4>>
+			<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
+				<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
+					@@.lime;$His asshole is loosened@@ during sex with well endowed slaves, since $he's so addicted to sex all $his holes see heavy traffic.
+					<<set $slaves[$i].anus += 1>>
+					<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
+				<</if>>
+			<</if>>
+			<<if $averageDick > 5>>
+				<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
+					<<if ($slaves[$i].vagina*30)-($averageDick*5) < random(1,100)>>
+						$He indulges in non-stop sex with your well endowed slaves, so much so that @@.lime;$his cunt gets stretched out.@@
+						<<set $slaves[$i].vagina += 1>>
+						<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
+					<</if>>
+				<</if>>
+			<</if>>
+		<</if>>
+		<<run SimpleSlaveFucking($slaves[$i], 7)>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(3,6)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<<else>>
+		demand that other slaves have sex with $him.
+		<<run SimpleSlaveFucking($slaves[$i], 7)>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(3,6)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<</if>>
+<<else>>
+	demand that other slaves have sex with $him.
+	<<run SimpleSlaveFucking($slaves[$i], 7)>>
+	<<if canPenetrate($slaves[$i])>>
+		<<set _fuckCount = random(3,6)>>
+		<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+	<</if>>
+<</if>> /* closes ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60) */
 
 <</widget>>
 
 <<widget "saRulesConsentFetish">>
 
-							<<if ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
-								<<if ($slaves[$i].fetish == "submissive")>>
-									usually pairing off with a more dominant slave.
-									<<if $averageDick > 4>>
-										<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
-											<<if ($slaves[$i].anus*40)-($averageDick*5) < random(1,100)>>
-												@@.lime;$His asshole is loosened@@ during sex with other slaves, since most of the cocks $he lets dominate $his backdoor are very large.
-												<<set $slaves[$i].anus += 1>>
-												<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
-											<</if>>
-										<</if>>
-										<<if $averageDick > 5>>
-											<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
-												<<if ($slaves[$i].vagina*40)-($averageDick*5) < random(1,100)>>
-													Since most of the slaves $he takes a pounding from are extremely hung, @@.lime;$his cunt gets stretched out.@@
-													<<set $slaves[$i].vagina += 1>>
-													<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
-												<</if>>
-											<</if>>
-										<</if>>
-									<</if>>
-									<<run SimpleSlaveFucking($slaves[$i], 7)>>
-								<<elseif ($slaves[$i].fetish == "cumslut")>>
-									and is popular for $his willingness to give oral.
-									<<set _fuckCount = random(5,15)>>
-									<<set $slaves[$i].counter.oral += _fuckCount, $oralTotal += _fuckCount>>
-								<<elseif ($slaves[$i].fetish == "humiliation")>>
-									usually asking them to fuck out in the open.
-									<<run SimpleSlaveFucking($slaves[$i], 7)>>
-									<<if canPenetrate($slaves[$i])>>
-										<<set _fuckCount = random(1,3)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-									<</if>>
-								<<elseif ($slaves[$i].fetish == "buttslut")>>
-									looking after anyone who will
-									<<if ($slaves[$i].anus > 0)>>
-										<<if canDoAnal($slaves[$i])>>
-											penetrate
-											<<set _fuckCount = random(5,12)>>
-											<<set $slaves[$i].counter.anal += _fuckCount, $analTotal += _fuckCount>>
-										<<else>>
-											tease
-										<</if>>
-										$his ass
-									<<else>>
-										tease $his virgin anus
-									<</if>>
-									in return.
-									<<if $averageDick > 4>>
-										<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
-											<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
-												Since most of the slaves $he enjoys anal sex with are extremely hung, @@.lime;$his asshole gets stretched out.@@
-												<<set $slaves[$i].anus += 1>>
-											<</if>>
-										<</if>>
-									<</if>>
-								<<elseif ($slaves[$i].fetish == "boobs")>>
-									seeing to anyone who will show $his breasts some love.
-									<<if $slaves[$i].lactation > 0>>
-										<<set $slaves[$i].lactationDuration = 2>>
-										<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
-									<<else>>
-										<<= induceLactation($slaves[$i])>>
-									<</if>>
-									<<set _fuckCount = random(10,25)>>
-									<<set $slaves[$i].counter.mammary += _fuckCount, $mammaryTotal += _fuckCount>>
-								<<elseif ($slaves[$i].fetish == "sadist")>>
-									usually pairing off with a masochistic slave willing to accept $his abuse.
-									<<run SimpleSlaveFucking($slaves[$i], 7)>>
-									<<if canPenetrate($slaves[$i])>>
-										<<set _fuckCount = random(1,3)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-									<</if>>
-								<<elseif ($slaves[$i].fetish == "masochist")>>
-									usually pairing off with an abusive slave.
-									<<if $averageDick > 4>>
-										<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
-											<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
-												@@.lime;$His asshole is loosened,@@ since $he begs hung slaves to fuck $his butt until $he cries.
-												<<set $slaves[$i].anus += 1>>
-												<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
-											<</if>>
-										<</if>>
-										<<if $averageDick > 5>>
-											<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
-												<<if ($slaves[$i].vagina*30)-($averageDick*5) < random(1,100)>>
-													Since $he eagerly begs hung slaves to fuck $him until $he cries, @@.lime;$his cunt gets stretched out.@@
-													<<set $slaves[$i].vagina += 1>>
-													<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
-												<</if>>
-											<</if>>
-										<</if>>
-									<</if>>
-									<<run SimpleSlaveFucking($slaves[$i], 6)>>
-								<<elseif ($slaves[$i].fetish == "dom")>>
-									usually pairing off with a submissive bitch.
-									<<run SimpleSlaveFucking($slaves[$i], 6)>>
-									<<if canPenetrate($slaves[$i])>>
-										<<set _fuckCount = random(1,3)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-									<</if>>
-								<<elseif ($slaves[$i].fetish == "pregnancy")>>
-									doing $his best to pair off with any pregnant slaves.
-									<<if $slaves[$i].mpreg == 0>>
-										<<if $averageDick > 5>>
-											<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
-											<<if ($slaves[$i].vagina*40)-($averageDick*5) < random(1,100)>>
-												$He also takes cock whenever $he can, begging to be fucked deeply to get $his womb filled with cum, so @@.lime;$his cunt gets stretched out.@@
-												<<set $slaves[$i].vagina += 1>>
-												<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
-											<</if>>
-											<</if>>
-										<</if>>
-									<<else>>
-										<<if $averageDick > 5>>
-											<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
-											<<if ($slaves[$i].anus*40)-($averageDick*5) < random(1,100)>>
-												$He also takes cock whenever $he can, begging to be fucked deeply to get $his womb filled with cum, so @@.lime;$his ass gets stretched out.@@
-												<<set $slaves[$i].anus += 1>>
-												<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
-											<</if>>
-											<</if>>
-										<</if>>
-									<</if>>
-									<<run SimpleSlaveFucking($slaves[$i], 7)>>
-									<<if canPenetrate($slaves[$i])>>
-										<<set _fuckCount = random(6,9)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-									<</if>>
-								<<elseif ($slaves[$i].energy > 95)>>
-									and has to give out a lot of favors to get enough attention for $himself.
-									<<if $averageDick > 4>>
-										<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
-											<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
-												@@.lime;$His asshole is loosened@@ during sex with well endowed slaves, since $he's so addicted to sex all $his holes see heavy traffic.
-												<<set $slaves[$i].anus += 1>>
-												<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
-											<</if>>
-										<</if>>
-										<<if $averageDick > 5>>
-											<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
-												<<if ($slaves[$i].vagina*30)-($averageDick*5) < random(1,100)>>
-													$He indulges in non-stop sex with your well endowed slaves, so much so that @@.lime;$his cunt gets stretched out.@@
-													<<set $slaves[$i].vagina += 1>>
-													<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
-												<</if>>
-											<</if>>
-										<</if>>
-									<</if>>
-									<<run SimpleSlaveFucking($slaves[$i], 7)>>
-									<<if canPenetrate($slaves[$i])>>
-										<<set _fuckCount = random(3,6)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-									<</if>>
-								<<else>>
-									doing $his best to get off and move on.
-									<<run SimpleSlaveFucking($slaves[$i], 7)>>
-									<<if canPenetrate($slaves[$i])>>
-										<<set _fuckCount = random(3,6)>>
-										<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-									<</if>>
-								<</if>>
-							<<else>>
-								doing $his best to get off and move on.
-								<<run SimpleSlaveFucking($slaves[$i], 7)>>
-								<<if canPenetrate($slaves[$i])>>
-									<<set _fuckCount = random(3,6)>>
-									<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
-								<</if>>
-							<</if>> /* closes ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60) */
+<<if ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>>
+	<<if ($slaves[$i].fetish == "submissive")>>
+		usually pairing off with a more dominant slave.
+		<<if $averageDick > 4>>
+			<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
+				<<if ($slaves[$i].anus*40)-($averageDick*5) < random(1,100)>>
+					@@.lime;$His asshole is loosened@@ during sex with other slaves, since most of the cocks $he lets dominate $his backdoor are very large.
+					<<set $slaves[$i].anus += 1>>
+					<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
+				<</if>>
+			<</if>>
+			<<if $averageDick > 5>>
+				<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
+					<<if ($slaves[$i].vagina*40)-($averageDick*5) < random(1,100)>>
+						Since most of the slaves $he takes a pounding from are extremely hung, @@.lime;$his cunt gets stretched out.@@
+						<<set $slaves[$i].vagina += 1>>
+						<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
+					<</if>>
+				<</if>>
+			<</if>>
+		<</if>>
+		<<run SimpleSlaveFucking($slaves[$i], 7)>>
+	<<elseif ($slaves[$i].fetish == "cumslut")>>
+		and is popular for $his willingness to give oral.
+		<<set _fuckCount = random(5,15)>>
+		<<set $slaves[$i].counter.oral += _fuckCount, $oralTotal += _fuckCount>>
+	<<elseif ($slaves[$i].fetish == "humiliation")>>
+		usually asking them to fuck out in the open.
+		<<run SimpleSlaveFucking($slaves[$i], 7)>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(1,3)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "buttslut")>>
+		looking after anyone who will
+		<<if ($slaves[$i].anus > 0)>>
+			<<if canDoAnal($slaves[$i])>>
+				penetrate
+				<<set _fuckCount = random(5,12)>>
+				<<set $slaves[$i].counter.anal += _fuckCount, $analTotal += _fuckCount>>
+			<<else>>
+				tease
+			<</if>>
+			$his ass
+		<<else>>
+			tease $his virgin anus
+		<</if>>
+		in return.
+		<<if $averageDick > 4>>
+			<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
+				<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
+					Since most of the slaves $he enjoys anal sex with are extremely hung, @@.lime;$his asshole gets stretched out.@@
+					<<set $slaves[$i].anus += 1>>
+				<</if>>
+			<</if>>
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "boobs")>>
+		seeing to anyone who will show $his breasts some love.
+		<<if $slaves[$i].lactation > 0>>
+			<<set $slaves[$i].lactationDuration = 2>>
+			<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
+		<<else>>
+			<<= induceLactation($slaves[$i])>>
+		<</if>>
+		<<set _fuckCount = random(10,25)>>
+		<<set $slaves[$i].counter.mammary += _fuckCount, $mammaryTotal += _fuckCount>>
+	<<elseif ($slaves[$i].fetish == "sadist")>>
+		usually pairing off with a masochistic slave willing to accept $his abuse.
+		<<run SimpleSlaveFucking($slaves[$i], 7)>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(1,3)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "masochist")>>
+		usually pairing off with an abusive slave.
+		<<if $averageDick > 4>>
+			<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
+				<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
+					@@.lime;$His asshole is loosened,@@ since $he begs hung slaves to fuck $his butt until $he cries.
+					<<set $slaves[$i].anus += 1>>
+					<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
+				<</if>>
+			<</if>>
+			<<if $averageDick > 5>>
+				<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
+					<<if ($slaves[$i].vagina*30)-($averageDick*5) < random(1,100)>>
+						Since $he eagerly begs hung slaves to fuck $him until $he cries, @@.lime;$his cunt gets stretched out.@@
+						<<set $slaves[$i].vagina += 1>>
+						<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
+					<</if>>
+				<</if>>
+			<</if>>
+		<</if>>
+		<<run SimpleSlaveFucking($slaves[$i], 6)>>
+	<<elseif ($slaves[$i].fetish == "dom")>>
+		usually pairing off with a submissive bitch.
+		<<run SimpleSlaveFucking($slaves[$i], 6)>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(1,3)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<<elseif ($slaves[$i].fetish == "pregnancy")>>
+		doing $his best to pair off with any pregnant slaves.
+		<<if $slaves[$i].mpreg == 0>>
+			<<if $averageDick > 5>>
+				<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
+					<<if ($slaves[$i].vagina*40)-($averageDick*5) < random(1,100)>>
+						$He also takes cock whenever $he can, begging to be fucked deeply to get $his womb filled with cum, so @@.lime;$his cunt gets stretched out.@@
+						<<set $slaves[$i].vagina += 1>>
+						<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
+					<</if>>
+				<</if>>
+			<</if>>
+		<<else>>
+			<<if $averageDick > 5>>
+				<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
+					<<if ($slaves[$i].anus*40)-($averageDick*5) < random(1,100)>>
+						$He also takes cock whenever $he can, begging to be fucked deeply to get $his womb filled with cum, so @@.lime;$his ass gets stretched out.@@
+						<<set $slaves[$i].anus += 1>>
+						<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
+					<</if>>
+				<</if>>
+			<</if>>
+		<</if>>
+		<<run SimpleSlaveFucking($slaves[$i], 7)>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(6,9)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<<elseif ($slaves[$i].energy > 95)>>
+		and has to give out a lot of favors to get enough attention for $himself.
+		<<if $averageDick > 4>>
+			<<if $slaves[$i].anus > 0 && $slaves[$i].anus < 3 && canDoAnal($slaves[$i])>>
+				<<if ($slaves[$i].anus*30)-($averageDick*5) < random(1,100)>>
+					@@.lime;$His asshole is loosened@@ during sex with well endowed slaves, since $he's so addicted to sex all $his holes see heavy traffic.
+					<<set $slaves[$i].anus += 1>>
+					<<set $slaves[$i].counter.anal += 3, $analTotal += 3>>
+				<</if>>
+			<</if>>
+			<<if $averageDick > 5>>
+				<<if $slaves[$i].vagina > 0 && $slaves[$i].vagina < 3 && canDoVaginal($slaves[$i])>>
+					<<if ($slaves[$i].vagina*30)-($averageDick*5) < random(1,100)>>
+						$He indulges in non-stop sex with your well endowed slaves, so much so that @@.lime;$his cunt gets stretched out.@@
+						<<set $slaves[$i].vagina += 1>>
+						<<set $slaves[$i].counter.vaginal += 3, $vaginalTotal += 3>>
+					<</if>>
+				<</if>>
+			<</if>>
+		<</if>>
+		<<run SimpleSlaveFucking($slaves[$i], 7)>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(3,6)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<<else>>
+		doing $his best to get off and move on.
+		<<run SimpleSlaveFucking($slaves[$i], 7)>>
+		<<if canPenetrate($slaves[$i])>>
+			<<set _fuckCount = random(3,6)>>
+			<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+		<</if>>
+	<</if>>
+<<else>>
+	doing $his best to get off and move on.
+	<<run SimpleSlaveFucking($slaves[$i], 7)>>
+	<<if canPenetrate($slaves[$i])>>
+		<<set _fuckCount = random(3,6)>>
+		<<set $slaves[$i].counter.penetrative += _fuckCount, $penetrativeTotal += _fuckCount>>
+	<</if>>
+<</if>> /* closes ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60) */
 
 <</widget>>
 
 <<widget "saRulesConsentDiscoversFetish">>
 
-							<<if ($slaves[$i].fetishKnown == 0)>>
-								<<if (random(1,2) == 1)>>
-									<<set $slaves[$i].fetishKnown = 1>>
-									However, one of $his partners
-									<<if ($slaves[$i].fetish == "submissive")>>
-										holds $him down, and $he loves it; @@.lightcoral;$he's a submissive!@@
-									<<elseif ($slaves[$i].fetish == "cumslut")>>
-										finally has to push $him away to get $him to stop sucking; @@.lightcoral;$he's a cumslut!@@
-									<<elseif ($slaves[$i].fetish == "humiliation")>>
-										fucks $him in public, and $he loves it; @@.lightcoral;$he's a humiliation fetishist!@@
-									<<elseif ($slaves[$i].fetish == "buttslut")>>
-										<<if ($slaves[$i].anus > 0)>>
-											<<if canDoAnal($slaves[$i])>>fucks $his butt<<else>>teases $his anus<</if>>, and $he loves it;
-										<<else>>
-										teases $his virgin anus, and $he loves it;
-										<</if>>
-										@@.lightcoral;$he's an anal slut!@@
-									<<elseif ($slaves[$i].fetish == "boobs")>>
-										fondles $his breasts, and $he loves it; @@.lightcoral;$he's a boob fetishist!@@
-										<<if $slaves[$i].lactation > 0>>
-											<<set $slaves[$i].lactationDuration = 2>>
-											<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
-										<<else>>
-											<<= induceLactation($slaves[$i])>>
-										<</if>>
-									<<elseif ($slaves[$i].fetish == "sadist")>>
-										asks $slaves[$i].slaveName to hit $him, which $slaves[$i].slaveName enjoys doing; @@.lightcoral;$he's a sadist!@@
-									<<elseif ($slaves[$i].fetish == "masochist")>>
-										hits $slaves[$i].slaveName while fucking $him, which only makes $him hornier; @@.lightcoral;$he's a masochist!@@
-									<<elseif ($slaves[$i].fetish == "dom")>>
-										asks $slaves[$i].slaveName to make them $slaves[$i].slaveName's bitch, which $slaves[$i].slaveName manages like a natural; @@.lightcoral;$he's dominant!@@
-									<<elseif ($slaves[$i].fetish == "pregnancy")>>
-										pretends to get $him pregnant, which $he really enjoys; @@.lightcoral;$he's a pregnancy fetishist!@@
-									<<elseif ($slaves[$i].energy > 95)>>
-										discovers that $he cannot be satisfied; @@.lightcoral;$he's a nympho!@@
-									<<else>>
-										discovers that $he isn't terribly exciting; @@.lightcoral;$he's got a normal sexuality.@@
-									<</if>>
-								<</if>>
-							<</if>>
+<<if ($slaves[$i].fetishKnown == 0)>>
+	<<if (random(1,2) == 1)>>
+		<<set $slaves[$i].fetishKnown = 1>>
+		However, one of $his partners
+		<<if ($slaves[$i].fetish == "submissive")>>
+			holds $him down, and $he loves it; @@.lightcoral;$he's a submissive!@@
+		<<elseif ($slaves[$i].fetish == "cumslut")>>
+			finally has to push $him away to get $him to stop sucking; @@.lightcoral;$he's a cumslut!@@
+		<<elseif ($slaves[$i].fetish == "humiliation")>>
+			fucks $him in public, and $he loves it; @@.lightcoral;$he's a humiliation fetishist!@@
+		<<elseif ($slaves[$i].fetish == "buttslut")>>
+			<<if ($slaves[$i].anus > 0)>>
+				<<if canDoAnal($slaves[$i])>>fucks $his butt<<else>>teases $his anus<</if>>, and $he loves it;
+			<<else>>
+				teases $his virgin anus, and $he loves it;
+			<</if>>
+			@@.lightcoral;$he's an anal slut!@@
+		<<elseif ($slaves[$i].fetish == "boobs")>>
+			fondles $his breasts, and $he loves it; @@.lightcoral;$he's a boob fetishist!@@
+			<<if $slaves[$i].lactation > 0>>
+				<<set $slaves[$i].lactationDuration = 2>>
+				<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
+			<<else>>
+				<<= induceLactation($slaves[$i])>>
+			<</if>>
+		<<elseif ($slaves[$i].fetish == "sadist")>>
+			asks $slaves[$i].slaveName to hit $him, which $slaves[$i].slaveName enjoys doing; @@.lightcoral;$he's a sadist!@@
+		<<elseif ($slaves[$i].fetish == "masochist")>>
+			hits $slaves[$i].slaveName while fucking $him, which only makes $him hornier; @@.lightcoral;$he's a masochist!@@
+		<<elseif ($slaves[$i].fetish == "dom")>>
+			asks $slaves[$i].slaveName to make them $slaves[$i].slaveName's bitch, which $slaves[$i].slaveName manages like a natural; @@.lightcoral;$he's dominant!@@
+		<<elseif ($slaves[$i].fetish == "pregnancy")>>
+			pretends to get $him pregnant, which $he really enjoys; @@.lightcoral;$he's a pregnancy fetishist!@@
+		<<elseif ($slaves[$i].energy > 95)>>
+			discovers that $he cannot be satisfied; @@.lightcoral;$he's a nympho!@@
+		<<else>>
+			discovers that $he isn't terribly exciting; @@.lightcoral;$he's got a normal sexuality.@@
+		<</if>>
+	<</if>>
+<</if>>
 
 <</widget>>
 
 <<widget "saRulesRapeDiscoversFetish">>
 
-							<<if ($slaves[$i].fetishKnown == 0)>>
-								<<if (random(1,2) == 1)>>
-								<<set $slaves[$i].fetishKnown = 1>>
-								You discover that $he really likes it when the other slaves
-								<<if ($slaves[$i].fetish == "submissive")>>
-									hold $him down and fuck $him; @@.lightcoral;$he's a submissive!@@
-								<<elseif ($slaves[$i].fetish == "cumslut")>>
-									cum in $his mouth; @@.lightcoral;$he's a cumslut!@@
-								<<elseif ($slaves[$i].fetish == "humiliation")>>
-									use $him in public; @@.lightcoral;$he's a humiliation fetishist!@@
-								<<elseif ($slaves[$i].fetish == "buttslut")>>
-									<<if ($slaves[$i].anus > 0)>>
-										<<if canDoAnal($slaves[$i])>>fuck $his butt<<else>>tease $his anus<</if>>;
-									<<else>>
-										tease $his virgin anus;
-									<</if>>
-									@@.lightcoral;$he's an anal slut!@@
-								<<elseif ($slaves[$i].fetish == "boobs")>>
-									fondle $his breasts; @@.lightcoral;$he's a boob fetishist!@@
-									<<if $slaves[$i].lactation > 0>>
-										<<set $slaves[$i].lactationDuration = 2>>
-										<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
-									<<else>>
-										<<= induceLactation($slaves[$i])>>
-									<</if>>
-								<<elseif ($slaves[$i].fetish == "sadist")>>
-									let $him abuse them; @@.lightcoral;$he's a sadist!@@
-								<<elseif ($slaves[$i].fetish == "masochist")>>
-									hurt $him; @@.lightcoral;$he's a masochist!@@
-								<<elseif ($slaves[$i].fetish == "dom")>>
-									let $him dominate them; @@.lightcoral;$he's dominant!@@
-								<<elseif ($slaves[$i].fetish == "pregnancy")>>
-									<<if $slaves[$i].mpreg == 0>>
-										come <<if canDoVaginal($slaves[$i])>>inside<<else>>on<</if>> $him; @@.lightcoral;$he's a pregnancy fetishist!@@
-									<<else>>
-										come <<if canDoAnal($slaves[$i])>>inside<<else>>on<</if>> $him; @@.lightcoral;$he's a pregnancy fetishist!@@
-									<</if>>
-								<<else>>
-									fuck $him; @@.lightcoral;$he's got a normal sexuality.@@
-								<</if>>
-								<</if>>
-							<</if>>
+<<if ($slaves[$i].fetishKnown == 0)>>
+	<<if (random(1,2) == 1)>>
+		<<set $slaves[$i].fetishKnown = 1>>
+		You discover that $he really likes it when the other slaves
+		<<if ($slaves[$i].fetish == "submissive")>>
+			hold $him down and fuck $him; @@.lightcoral;$he's a submissive!@@
+		<<elseif ($slaves[$i].fetish == "cumslut")>>
+			cum in $his mouth; @@.lightcoral;$he's a cumslut!@@
+		<<elseif ($slaves[$i].fetish == "humiliation")>>
+			use $him in public; @@.lightcoral;$he's a humiliation fetishist!@@
+		<<elseif ($slaves[$i].fetish == "buttslut")>>
+			<<if ($slaves[$i].anus > 0)>>
+				<<if canDoAnal($slaves[$i])>>fuck $his butt<<else>>tease $his anus<</if>>;
+			<<else>>
+				tease $his virgin anus;
+			<</if>>
+			@@.lightcoral;$he's an anal slut!@@
+		<<elseif ($slaves[$i].fetish == "boobs")>>
+			fondle $his breasts; @@.lightcoral;$he's a boob fetishist!@@
+			<<if $slaves[$i].lactation > 0>>
+				<<set $slaves[$i].lactationDuration = 2>>
+				<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
+			<<else>>
+				<<= induceLactation($slaves[$i])>>
+			<</if>>
+		<<elseif ($slaves[$i].fetish == "sadist")>>
+			let $him abuse them; @@.lightcoral;$he's a sadist!@@
+		<<elseif ($slaves[$i].fetish == "masochist")>>
+			hurt $him; @@.lightcoral;$he's a masochist!@@
+		<<elseif ($slaves[$i].fetish == "dom")>>
+			let $him dominate them; @@.lightcoral;$he's dominant!@@
+		<<elseif ($slaves[$i].fetish == "pregnancy")>>
+			<<if $slaves[$i].mpreg == 0>>
+				come <<if canDoVaginal($slaves[$i])>>inside<<else>>on<</if>> $him; @@.lightcoral;$he's a pregnancy fetishist!@@
+			<<else>>
+				come <<if canDoAnal($slaves[$i])>>inside<<else>>on<</if>> $him; @@.lightcoral;$he's a pregnancy fetishist!@@
+			<</if>>
+		<<else>>
+			fuck $him; @@.lightcoral;$he's got a normal sexuality.@@
+		<</if>>
+	<</if>>
+<</if>>
 
 <</widget>>
 
 <<widget "saRulesPermissiveDrugEffects">>
 
-					<<if $slaves[$i].balls > 0>>
-						<<if $slaves[$i].drugs == "testicle enhancement" || $slaves[$i].drugs == "intensive testicle enhancement">>
-							<<if ($slaves[$i].devotion > 20) || ($slaves[$i].trust < -20)>>
-								<<if $slaves[$i].hormoneBalance >= 100>>
-									$He can't seem to get enough cum out of $his terribly swollen balls in one orgasm to relieve the pressure:
-									<<if $slaves[$i].dick>>
-										$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
-									<<else>>
-										$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
-									<</if>>
-									$He is very reliant on your other slaves to help $him, which @@.mediumaquamarine;habituates $him@@ to slave sex.
-								<<else>>
-									$His terribly swollen balls force $him to rely on other slaves for release several times a day, and jetting cum into and onto them @@.mediumaquamarine;habituates $him@@ to slave sex.
-								<</if>>
-								<<set $slaves[$i].trust += 1>>
-							<<else>>
-								$He can't seem to get enough cum out of $his terribly swollen balls to relieve the pressure and is either unwilling or unable to get help with it, something $he @@.mediumorchid;blames you for.@@
-								<<set $slaves[$i].devotion -= 1>>
-							<</if>>
-						<<elseif $slaves[$i].drugs == "hyper testicle enhancement">>
-							<<if ($slaves[$i].devotion > 20) || ($slaves[$i].trust < -20) || !canPenetrate($slaves[$i])>>
-								<<if $slaves[$i].hormoneBalance >= 100>>
-									$He can't seem to get enough cum out of $his grotesquely swollen balls in one orgasm to get relieve the pressure:
-									<<if $slaves[$i].dick>>
-										$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
-									<<else>>
-										$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
-									<</if>>
-									$He is completely dependent on your other slaves to help $him, which @@.mediumaquamarine;habituates $him@@ to slave sex.
-								<<else>>
-									$His grotesquely swollen balls force $him to rely on other slaves for release throughout times a day, and swelling them with cum @@.mediumaquamarine;habituates $him@@ to slave sex, though you have to take precautions so $he doesn't knock up your entire stock.
-								<</if>>
-								<<set $slaves[$i].trust += 1>>
-							<<else>>
-								$He can't seem to get enough cum out of $his grotesquely swollen balls to relieve the pressure and is either unwilling or unable to get help with it, something $he @@.mediumorchid;blames you for.@@
-								<<set $slaves[$i].devotion -= 1>>
-							<</if>>
-						<</if>>
-					<</if>>
-					<<if $slaves[$i].drugs == "super fertility drugs" && canGetPregnant($slaves[$i])>>
-							$His reproductive system is in overdrive leading $him to seek out any dicked slaves $he can find several times a day. $He @@.mediumaquamarine;desperately longs@@ for the day $his efforts fill $his womb with child.
-							<<set $slaves[$i].trust += 1>>
-					<</if>>
+<<if $slaves[$i].balls > 0>>
+	<<if $slaves[$i].drugs == "testicle enhancement" || $slaves[$i].drugs == "intensive testicle enhancement">>
+		<<if ($slaves[$i].devotion > 20) || ($slaves[$i].trust < -20)>>
+			<<if $slaves[$i].hormoneBalance >= 100>>
+				$He can't seem to get enough cum out of $his terribly swollen balls in one orgasm to relieve the pressure:
+				<<if $slaves[$i].dick>>
+					$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
+				<<else>>
+					$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
+				<</if>>
+				$He is very reliant on your other slaves to help $him, which @@.mediumaquamarine;habituates $him@@ to slave sex.
+			<<else>>
+				$His terribly swollen balls force $him to rely on other slaves for release several times a day, and jetting cum into and onto them @@.mediumaquamarine;habituates $him@@ to slave sex.
+			<</if>>
+			<<set $slaves[$i].trust += 1>>
+		<<else>>
+			$He can't seem to get enough cum out of $his terribly swollen balls to relieve the pressure and is either unwilling or unable to get help with it, something $he @@.mediumorchid;blames you for.@@
+			<<set $slaves[$i].devotion -= 1>>
+		<</if>>
+	<<elseif $slaves[$i].drugs == "hyper testicle enhancement">>
+		<<if ($slaves[$i].devotion > 20) || ($slaves[$i].trust < -20) || !canPenetrate($slaves[$i])>>
+			<<if $slaves[$i].hormoneBalance >= 100>>
+				$He can't seem to get enough cum out of $his grotesquely swollen balls in one orgasm to get relieve the pressure:
+				<<if $slaves[$i].dick>>
+					$his poor soft dick produces slow, anemic ejaculations, no matter how backed up $he is.
+				<<else>>
+					$his cumhole produces slow, anemic ejaculations, no matter how backed up $he is.
+				<</if>>
+				$He is completely dependent on your other slaves to help $him, which @@.mediumaquamarine;habituates $him@@ to slave sex.
+			<<else>>
+				$His grotesquely swollen balls force $him to rely on other slaves for release throughout times a day, and swelling them with cum @@.mediumaquamarine;habituates $him@@ to slave sex, though you have to take precautions so $he doesn't knock up your entire stock.
+			<</if>>
+			<<set $slaves[$i].trust += 1>>
+		<<else>>
+			$He can't seem to get enough cum out of $his grotesquely swollen balls to relieve the pressure and is either unwilling or unable to get help with it, something $he @@.mediumorchid;blames you for.@@
+			<<set $slaves[$i].devotion -= 1>>
+		<</if>>
+	<</if>>
+<</if>>
+<<if $slaves[$i].drugs == "super fertility drugs" && canGetPregnant($slaves[$i])>>
+	$His reproductive system is in overdrive leading $him to seek out any dicked slaves $he can find several times a day. $He @@.mediumaquamarine;desperately longs@@ for the day $his efforts fill $his womb with child.
+	<<set $slaves[$i].trust += 1>>
+<</if>>
 
 <</widget>>