diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 4e914d2e7505f63cc00cbf013b0d3029e66fc97b..a7249ed1955748d69a706f70a1776f913bdab4b8 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -2,6 +2,18 @@
 
 0.10.7.1-0.6.x
 
+8/21/2018
+
+	9
+	-fixes
+
+	8
+	-slightly adjusted pregnancy breast growth rates
+	-larynx implant for cybermod voice control
+	-expanded vocal surgery to allow deepening
+	-porn feed control added to the RA
+	-fixes
+
 8/20/2018
 
 	7
diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 8f9e4cc7272ed70ae5d23282f4f212f4be1b8972..e3690074e84ad9f2777c6e0a959a7d32d72693c3 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -1,3 +1,5 @@
+config.history.maxStates = 1; /* If you remove this, I will fucking yell at you. Stop. Doing. It. */
+
 /*:: StoryJS [script]*/
 
 /*config.history.tracking = false;*/
@@ -2697,6 +2699,7 @@ window.emptyDefaultRule = function emptyDefaultRule() {
 			aphrodisiacs: "no default setting",
 			autoSurgery: 0,
 			autoBrand: 0,
+			pornFeed: "no default setting",
 			pornFameSpending: "no default setting",
 			dietGrowthSupport: 0,
 			eyewear: "no default setting",
@@ -11927,6 +11930,7 @@ window.DefaultRules = (function() {
 		ProcessPiercings(slave, rule);
 		ProcessSmartPiercings(slave, rule);
 		ProcessTattoos(slave, rule);
+		ProcessPornFeedEnabled(slave, rule);
 		ProcessPorn(slave, rule);
 		ProcessLabel(slave, rule);
 		return r;
@@ -14113,6 +14117,18 @@ window.DefaultRules = (function() {
 		}
 	}
 
+	function ProcessPornFeedEnabled(slave, rule) {
+		if (rule.pornFeed === undefined || rule.pornFeed === "no default setting") {
+			return;
+		}
+		if (rule.pornFeed === slave.pornFeed) {
+			return;
+		}
+		slave.pornFeed = rule.pornFeed;
+		let yesno = slave.pornFeed ? "are now" : "are no longer";
+		r += `<br>Highlights of ${slave.slaveName}'s sex life ${yesno} being released.`;
+	}
+
 	function ProcessPorn(slave, rule) {
 		if ((rule.pornFameSpending !== undefined) && (rule.pornFameSpending !== "no default setting")) {
 			if ((slave.pornPrestige < 3)) {
@@ -15099,8 +15115,10 @@ window.rulesAssistantOptions = (function() {
 			this.appendChild(new SmartEnergyList());
 			this.appendChild(new SpeechList());
 			this.appendChild(new RelationshipList());
-			if (V.studio === 1)
+			if (V.studio === 1) {
+				this.appendChild(new PornBroadcastStatus());
 				this.appendChild(new PornList());
+			}
 		}
 	}
 	
@@ -16072,6 +16090,19 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
+	class PornBroadcastStatus extends List {
+		constructor() {
+			const pairs = [
+				["No default setting", "no default setting"],
+				["Disabled", 0],
+				["Enabled", 1]
+			];
+			super("Porn Broadcasting Status", pairs);
+			this.setValue(current_rule.set.pornFeed);
+			this.onchange = (value) => current_rule.set.pornFeed = value;
+		}
+	}
+
 	class PornList extends List {
 		constructor() {
 			const pairs = [
diff --git a/src/events/gameover.tw b/src/events/gameover.tw
index 37bee288a05452c741c4d91ea1f9f33db59478f8..30ed2fd55bb32f7a6054052c09d324150d6e288d 100644
--- a/src/events/gameover.tw
+++ b/src/events/gameover.tw
@@ -79,7 +79,7 @@
 
 <<elseif $gameover == "Idiot Ball 2 The Dumbassening" || $gameover == "Idiot Ball 3 Totally Not Idiot Ball 2 Again">>
 	<<set $ui = "start">>
-	As you leave your penthouse to conduct your daily rounds, you promptly get <<if $arcologyUpgrade.drones == 1>>tased by the nearest drone<<else>>tackled hard against the wall<</if>>. When you awake, it hits you like a truck; you idiotically enslaved your $PC.origRace ass by decreeing all <<if $gameover == "Idiot Ball 2 The Dumbassening">>non-<<print $arcologies[0].FSSupremacistRace>><<else>><<print $arcologies[0].FSSubjugationistRace>><</if>>s slaves, and since you are now a slave, lack the authority to revert the policy. The story of your remaining years may be worth telling, as is your legendary blunder, but it must be told elsewhere.
+	As you leave your penthouse to conduct your daily rounds, you promptly get <<if $arcologyUpgrade.drones == 1>>tased by the nearest drone<<else>>tackled hard against the wall<</if>>. When you awake, it hits you like a truck; you idiotically enslaved your $PC.origRace ass by decreeing all <<if $gameover == "Idiot Ball 2 The Dumbassening">>non-<<print $arcologies[0].FSSupremacistRace>><<else>><<print $arcologies[0].FSSubjugationistRace>><</if>><<if $PC.origRace != "mixed race">>s<<else>> individuals<</if>> slaves, and since you are now a slave, lack the authority to revert the policy. The story of your remaining years may be worth telling, as is your legendary blunder, but it must be told elsewhere.
 
 	<br><br>
 	''GAME OVER''	
diff --git a/src/events/intro/economyIntro.tw b/src/events/intro/economyIntro.tw
index 10680c78024a7e8f84c5d350815037d0de9c6470..b086eefb637c490bea2d95a6471afb83db31b6ab 100644
--- a/src/events/intro/economyIntro.tw
+++ b/src/events/intro/economyIntro.tw
@@ -1,6 +1,6 @@
 :: Economy Intro [nobr]
 
-<<if $PC.career == "arcology owner">>
+<<if $PC.career == "arcology owner" || $saveImported == 1>>
 	<<goto "Takeover Target">>
 <<else>>
     It is the year 2037, and the past 21 years have not been kind. The world is starting to fall apart. The climate is deteriorating, resources are being exhausted, and there are more people to feed every year. Technology is advancing, but not fast enough to save everyone. @@.orange;Exactly how bad is the situation?@@
diff --git a/src/interaction/cyberConfig.tw b/src/interaction/cyberConfig.tw
index 2a46ae934969a6eea108d987bbe5c57255e1a33e..54de4363e56a677f3d86cbb3d60583c72829d52e 100644
--- a/src/interaction/cyberConfig.tw
+++ b/src/interaction/cyberConfig.tw
@@ -188,13 +188,13 @@
 	<</if>>
 <<case 6>>
 	<<set $temp = 0, $nextButton = "Continue", $nextLink = "cyberConfig">>
-	<<if $activeSlave.hears == 0>>
+	<<if $activeSlave.voice == 0>>
 		$He tries testing out $his new voice, only to discover $he's been made mute.
-	<<elseif $activeSlave.hears == 1>>
+	<<elseif $activeSlave.voice == 1>>
 		$He tests out the <<if canHear($activeSlave)>>sound<<else>>feeling<</if>> of $his new, deep voice.
-	<<elseif $activeSlave.hears == 2>>
+	<<elseif $activeSlave.voice == 2>>
 		$He tests out the <<if canHear($activeSlave)>>sound<<else>>feeling<</if>> of $his new, normal voice.
-	<<elseif $activeSlave.hears == 3>>
+	<<elseif $activeSlave.voice == 3>>
 		$He tests out the <<if canHear($activeSlave)>>sound<<else>>feeling<</if>> of $his new, high voice.
 	<</if>>
 <</switch>>
\ No newline at end of file
diff --git a/src/js/DefaultRules.tw b/src/js/DefaultRules.tw
index 83d7b73cf320d4305dd9cc2cc3f6e05a29fbd343..8139705db10695c55ca3a6fe75eaa8eb8dbb49ee 100644
--- a/src/js/DefaultRules.tw
+++ b/src/js/DefaultRules.tw
@@ -53,6 +53,7 @@ window.DefaultRules = (function() {
 		ProcessPiercings(slave, rule);
 		ProcessSmartPiercings(slave, rule);
 		ProcessTattoos(slave, rule);
+		ProcessPornFeedEnabled(slave, rule);
 		ProcessPorn(slave, rule);
 		ProcessLabel(slave, rule);
 		return r;
@@ -2239,6 +2240,18 @@ window.DefaultRules = (function() {
 		}
 	}
 
+	function ProcessPornFeedEnabled(slave, rule) {
+		if (rule.pornFeed === undefined || rule.pornFeed === "no default setting") {
+			return;
+		}
+		if (rule.pornFeed === slave.pornFeed) {
+			return;
+		}
+		slave.pornFeed = rule.pornFeed;
+		let yesno = slave.pornFeed ? "are now" : "are no longer";
+		r += `<br>Highlights of ${slave.slaveName}'s sex life ${yesno} being released.`;
+	}
+
 	function ProcessPorn(slave, rule) {
 		if ((rule.pornFameSpending !== undefined) && (rule.pornFameSpending !== "no default setting")) {
 			if ((slave.pornPrestige < 3)) {
diff --git a/src/js/rulesAssistant.tw b/src/js/rulesAssistant.tw
index 2eed0d516a78edff756a14740f450080c2b695ff..7fefeb20aed57d5c05982c4871831d69930c8564 100644
--- a/src/js/rulesAssistant.tw
+++ b/src/js/rulesAssistant.tw
@@ -258,6 +258,7 @@ window.emptyDefaultRule = function emptyDefaultRule() {
 			aphrodisiacs: "no default setting",
 			autoSurgery: 0,
 			autoBrand: 0,
+			pornFeed: "no default setting",
 			pornFameSpending: "no default setting",
 			dietGrowthSupport: 0,
 			eyewear: "no default setting",
diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw
index 9fba2f9b63c313250bd0880630b86fcb447f70d5..3cd821a4733db110d59f4fbceef761a92a86a20b 100644
--- a/src/js/rulesAssistantOptions.tw
+++ b/src/js/rulesAssistantOptions.tw
@@ -958,8 +958,10 @@ window.rulesAssistantOptions = (function() {
 			this.appendChild(new SmartEnergyList());
 			this.appendChild(new SpeechList());
 			this.appendChild(new RelationshipList());
-			if (V.studio === 1)
+			if (V.studio === 1) {
+				this.appendChild(new PornBroadcastStatus());
 				this.appendChild(new PornList());
+			}
 		}
 	}
 	
@@ -1931,6 +1933,19 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
+        class PornBroadcastStatus extends List {
+		constructor() {
+			const pairs = [
+				["No default setting", "no default setting"],
+				["Disabled", 0],
+				["Enabled", 1]
+			];
+			super("Porn Broadcasting Status", pairs);
+			this.setValue(current_rule.set.pornFeed);
+			this.onchange = (value) => current_rule.set.pornFeed = value;
+		}
+	}
+
 	class PornList extends List {
 		constructor() {
 			const pairs = [
diff --git a/src/pregmod/beastFucked.tw b/src/pregmod/beastFucked.tw
index 5928329842d09c5776e9f5513c77bdbd7b9d69f8..15a064a1b4132d958730bc5f5ac4c1d6ccde5279 100644
--- a/src/pregmod/beastFucked.tw
+++ b/src/pregmod/beastFucked.tw
@@ -119,7 +119,7 @@
     You <<if ($activeSlave.clothes != "no clothing")>>take off $his $activeSlave.clothes and <</if>>place $him on the ground with a cushion under $his hips, $his ass in the air,
 <</if>>
 
-before calling in the _animal.species. The _animal.species slowly saunters up to the <<if ($activeSlave.devotion <= 20)>>bound <</if>>slave and takes it position <<if canWalk($activeSlave)>>behind <<else>>above <</if>>$him. You can see its _animal.dickSize penis slowly come to attention as its animalistic brain realizes that it's standing <<if canWalk($activeSlave)>>behind <<else>>above <</if>>a warm hole that needs to be filled with seed.
+before calling in the _animal.species. The _animal.species slowly saunters up to the <<if ($activeSlave.devotion <= 20)>>bound <</if>>slave and takes its position <<if canWalk($activeSlave)>>behind <<else>>above <</if>>$him. You can see its _animal.dickSize penis slowly come to attention as its animalistic brain realizes that it's standing <<if canWalk($activeSlave)>>behind <<else>>above <</if>>a warm hole that needs to be filled with seed.
 
 <<if (_animal.species == "dog")>>
     <<if canWalk($activeSlave)>>
@@ -357,15 +357,15 @@ before calling in the _animal.species. The _animal.species slowly saunters up to
 
 <<if canWalk($activeSlave)>>
     <<if ($activeSlave.vagina == 3)>>
-        _animal.speciesCap cum drips out of $his fucked-out hole.
+        capFirstChar(_animal.species) cum drips out of $his fucked-out hole.
     <<elseif ($activeSlave.vagina == 2)>>
-        _animal.speciesCap cum drips out of $his stretched vagina.
+        capFirstChar(_animal.species) cum drips out of $his stretched vagina.
     <<elseif ($activeSlave.vagina == 1)>>
         $His still-tight vagina keeps the _animal.species's load inside $him.
     <<elseif ($activeSlave.vagina < 0)>>
-        _animal.speciesCap cum drips out of $his girly ass.
+        capFirstChar(_animal.species) cum drips out of $his girly ass.
     <<else>>
-        _animal.speciesCap cum slides right out of $his gaping hole.
+        capFirstChar(_animal.species) cum slides right out of $his gaping hole.
     <</if>>
 
 	$He uses <<if $activeSlave.vagina > 0>>a quick douche to clean $his <<if $activeSlave.vagina < 2>>tight<<elseif $activeSlave.vagina > 3>>loose<</if>> pussy<<else>>an enema to clean $his <<if $activeSlave.anus < 2>>tight<<elseif $activeSlave.anus < 3>>used<<else>>gaping<</if>> butthole<</if>>,
diff --git a/src/pregmod/criminalMarkets.tw b/src/pregmod/criminalMarkets.tw
index ad3e4d01def93ffa2c0b6b678fe40cc84608e3e9..32f1c8c31fffc1c66a13e9b7c10898302edf966e 100644
--- a/src/pregmod/criminalMarkets.tw
+++ b/src/pregmod/criminalMarkets.tw
@@ -46,9 +46,8 @@ You board the transport to
 <br><br>
 
 <<slaveCost $activeSlave>>
-<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += $slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1)>><</if>>
+<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>>
 
-<<set $slaveCost = 500*Math.trunc($slaveCost/500)>>
 It will cost <<print cashFormat($slaveCost)>> to enslave her.
 
 <<if $cash >= $slaveCost>>
diff --git a/src/pregmod/farmyard.tw b/src/pregmod/farmyard.tw
new file mode 100644
index 0000000000000000000000000000000000000000..2e4d2c285e0ae163782dadcf0a932a7310094825
--- /dev/null
+++ b/src/pregmod/farmyard.tw
@@ -0,0 +1,30 @@
+:: Farmyard [nobr]
+
+<<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Farmyard">>
+
+<<if $farmyardName != "the Farmyard">>
+	<<set $farmyardNameCaps = $farmyardName.replace("the ", "The ")>>
+<</if>>
+
+The $farmyardName is not dissimilar to a warehouse in its basic size and form, but most warehouses don't contain the huge, dense, banks of crop-growing machinery this one does. Here, fruits and vegetables of all shapes and sizes are grown; from exotic, succulent Old World fruits to the average, everyday, vegetables. This is where the majority of the food in $arcologies[0].name comes from, making this one of the more critical facilities in your arcology.
+
+<br>
+<<if ($farmyardUpgrade == 0)>>
+	[[Upgrade the farmyard|Farmyard][$cash -= Math.trunc(25000*$upgradeMultiplierArcology)]]
+	//Costs <<print cashFormat(Math.trunc(25000*$upgradeMultiplierArcology))>>//
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;//Temporary description, will be changed.//
+	<br>
+	<</if>>
+<</if>>
+
+<br><br>
+
+<<link "Decommission $farmyardName and return this sector to manufacturing">>
+	<<set $farmyard = 0>>
+	<<for _i = 0; _i < $sectors.length; _i++>>
+		<<if $sectors[_i].type == "Farmyard">><<set $sectors[_i].type = "Manufacturing">><<break>><</if>>
+	<</for>>
+	<<goto "Main">>
+<</link>>
+
+<br><br>Rename $farmyardName: <<textbox "$farmyardName" $farmyardName "Farmyard">> //Use a noun or similar short phrase//
diff --git a/src/pregmod/killSlave.tw b/src/pregmod/killSlave.tw
new file mode 100644
index 0000000000000000000000000000000000000000..fea8822d65a6e3f1b7e395d3fd985397662229ce
--- /dev/null
+++ b/src/pregmod/killSlave.tw
@@ -0,0 +1,94 @@
+:: KillSlave [nobr]
+
+<<set $killChoice = -1>>
+
+<<set _qualifiedFS = []>>
+<<set _qualifiedFS.push("RND")>>
+
+<<if $arcologies[0].FSRomanRevivalist != "unset">>
+	<<set _qualifiedFS.push("roman revivalist")>>
+<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+	<<set _qualifiedFS.push("aztec revivalist")>>
+<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+	<<set _qualifiedFS.push("egyptian revivalist")>>
+<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+	<<set _qualifiedFS.push("edo revivalist")>>
+<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+	<<set _qualifiedFS.push("arabian revivalist")>>
+<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+	<<set _qualifiedFS.push("chinese revivalist")>>
+<</if>>
+
+<<set _weapon = _qualifiedFS>>
+
+<<switch _weapon>>
+<<case "roman revivalist">>
+	<<set _weapon = "gladius">>
+<<case "aztec revivalist">>
+	<<set _weapon = "macuahuitl">>
+<<case "egyptian revivalist">>
+	<<set _weapon = "kopesh">>
+<<case "edo revivalist">>
+	<<set _weapon = "katana">>
+<<case "arabian revivalist">>
+	<<set _weapon = "scimitar">>
+<<case "chinese revivalist">>
+	<<set _weapon = "jian">>
+<<default>>
+	<<set _weapon = "handgun">>
+<</switch>>
+
+<<if canWalk($activeSlave)>>
+    You call $activeSlave.slaveName into your office. 
+<<else>>
+    You have $activeSlave.slaveName brought into your office.
+<</if>>
+    
+    $He looks at you 
+<<if $activeSlave.fetish != "mindbroken">>with 
+    <<if $activeSlave.devotion > 50>>
+        adoration
+    <<elseif ($activeSlave.devotion) > 20 && ($activeSlave.devotion <= 50)>>
+        a calm acceptance
+    <<elseif ($activeSlave.devotion > -20) && ($activeSlave.devotion <= 20)>>
+        apprehension
+    <<elseif $activeSlave.devotion <= -20>>
+        hatred
+    <</if>>
+<<else>>
+    blankly
+<</if>>
+/*TODO: Add checks for trust*/
+ and waits for you to continue. You tell $him that you've gotten tired of having $him around and that you have decided it is time you got rid of $him. 
+
+<<if $activeSlave.fetish != "mindbroken">> $His expression changes to one of <</if>>
+<<if $activeSlave.fetish != "mindbroken">> 
+    <<if $activeSlave.devotion > 50>>
+        abject sorrow
+    <<elseif ($activeSlave.devotion) > 20 && ($activeSlave.devotion <= 50)>>
+        sadness
+    <<else>>
+        relief
+    <</if>>
+until
+<<else>>
+    $He just nods dumbly and continues to watch you with a vacant expression, even as
+    
+<</if>>
+
+ you reach behind your desk and pull out your trusty _weapon,
+ 
+
+<<if $activeSlave.fetish != "mindbroken">>
+    at which point abject fear fills $his face. $He immediately drops to $his knees and begins openly begging for
+you to have mercy.
+<<else>>
+    to which $he still doesn't respond.
+<</if>>
+
+<br>
+<br><<link "Kill $him" "FKilled">><<set $killChoice = 0>><</link>>
+<br><<link "Have mercy on $him" "FKilled">><<set $killChoice = 1>><</link>>
+<<if ($activeSlave.assignment != "guard you") && ($pit > 0)>>
+    <br><<link "Let $him win $his life in combat" "FKilled">><<set $killChoice = 2>><</link>>
+<</if>>
\ No newline at end of file
diff --git a/src/pregmod/killedSlave.tw b/src/pregmod/killedSlave.tw
new file mode 100644
index 0000000000000000000000000000000000000000..1a1d0f952a228112daa2cc31173e33a524684d46
--- /dev/null
+++ b/src/pregmod/killedSlave.tw
@@ -0,0 +1,82 @@
+:: KilledSlave [nobr]
+
+<<if $killChoice == 0>>
+
+<<set _qualifiedFS = []>>
+<<set _qualifiedFS.push("RND")>>
+
+<<if $arcologies[0].FSRomanRevivalist != "unset">>
+	<<set _qualifiedFS.push("roman revivalist")>>
+<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+	<<set _qualifiedFS.push("aztec revivalist")>>
+<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+	<<set _qualifiedFS.push("egyptian revivalist")>>
+<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+	<<set _qualifiedFS.push("edo revivalist")>>
+<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+	<<set _qualifiedFS.push("arabian revivalist")>>
+<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+	<<set _qualifiedFS.push("chinese revivalist")>>
+<</if>>
+
+You simply smile at $him and tell $him not to worry as you continue 
+
+<<switch _qualifiedFS>>
+<<case "roman revivalist">>
+    sharpening your gladius. 
+<<case "aztec revivalist">>
+    sharpening your macuahuitl. 
+<<case "egyptian revivalist">>
+    sharpening your kopesh. 
+<<case "edo revivalist">>
+    sharpening your katana. 
+<<case "arabian revivalist">>
+    sharpening your scimitar. 
+<<case "chinese revivalist">>
+    sharpening your jian. 
+<<default>>
+	threading on a silencer. 
+<</switch>>
+
+$activeSlave.slaveName gives an audible sigh of relief and begins to thank you profusely, though $his thanks are cut short as 
+
+<<switch _qualifiedFS>>
+<<case "roman revivalist">>
+    the sound of a sword tearing through flesh 
+<<case "aztec revivalist">>
+    the sound of a sword tearing through flesh 
+<<case "egyptian revivalist">>
+    the sound of a sword tearing through flesh 
+<<case "edo revivalist">>
+    the sound of a sword tearing through flesh 
+<<case "arabian revivalist">>
+    the sound of a sword tearing through flesh 
+<<case "chinese revivalist">>
+    the sound of a sword tearing through flesh 
+<<default>>
+    a silenced gunshot 
+<</switch>>
+
+rings through the room. You have another servant clean up the mess as you continue with what you were previously doing.
+
+    <<include "Remove activeSlave">>
+
+    /*[if slave had family, they lose major devotion and trust, potentially become
+    mindbroken]*/
+
+<<elseif $killChoice == 1>>
+    You make a show of considering sparing $his life, then, with a heavy sigh, unbuckle your pants and sit down at your desk. You beckon to $him, and $he just about trips over $himself as $he hastily makes $his way over to you. $His blowjob isn't the best you've ever had, $him sobbing as much as $he was, though $his enthusiasm more than makes up for it. After you finish deep in $his throat, $he sits back and wipes away $his tears, sniffling and thanking you again for giving $him another chance.
+    <<if $activeSlave.devotion <= 30>><<set $activeSlave.devotion = 30>><<else>><<set $activeSlave.devotion += 20>><</if>>
+    <<set $activeSlave.trust = -100>>
+
+<<elseif $killChoice == 2>>
+    You tell $him that you'll let $bodyguard.slaveName decide $his fate. You tell $him that if $he wants to live, $he'll have to beat $him in hand-to-hand combat in the $pitName. 
+    <<if $activeSlave.combatSkill == 0>>
+        The fear on $his face is palpable, though $he nods slowly and agrees, not seeing another choice. 
+    <<else>>
+        $He nods $his head and straightens up, as though preparing $himself for the fight for $his life.
+    <</if>>
+
+    /*TODO: Connect this to the Pit, have a end-of-week event between the Bodyguard and the slave*/
+    
+<</if>>
\ No newline at end of file
diff --git a/src/societies/aztec/slaveSacrifice.tw b/src/societies/aztec/slaveSacrifice.tw
index d6b7c6d1b2525ea7045ab61c4efb035cae13da6d..d9b816daf3b93dfe247ad4b55abf34a1a39aa1ae 100644
--- a/src/societies/aztec/slaveSacrifice.tw
+++ b/src/societies/aztec/slaveSacrifice.tw
@@ -7,42 +7,41 @@
 <<set _activeSlaveRepSacrifice = repGainSacrifice()>>
 
 <<if $sacrificeType == "penance">>
-	/*
-	You inform $activeSlave.name $he's been chosen to take part as a sacrifice to Xochiquetzal, the goddess of carnal love, excess and sexual release.
+	You inform $activeSlave.slaveName that $he's been chosen to take part in a ritual sacrifice to Xochiquetzal, the goddess of carnal love, excess, and sexual release.
 	<<if ($activeSlave.devotion > 50)>>
 		<<if !canTalk($activeSlave)>>
 			$He looks excited at the prospect of suffering for the goddess.
 		<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish != "none")>>
-			$He looks excited. "<<master>>! I'm honored to be cho<<s>>en! Thank you <<s>>o much!"
+			$He looks excited. "<<Master>>! I'm honored to be cho<<s>>en! Thank you <<s>>o much!"
 			<<if ($activeSlave.fetish == "masochist")>>
 				$He shudders with excitement. "I mean, I know my pain will help to feed the godde<<ss>> and I'm willing to <<s>>uffer plenty to plea<<s>>e her, but i<<s>> it really a <<s>>acrifi<<c>>e if I'm enjoying it?"
 			<<elseif ($activeSlave.fetish == "cumslut")>>
-				$He hesitates, looking concerned. "Oh God<<s>>, the <<s>>e<<x>> clean<<s>>ing will be awful but I'm willing to <<s>>acrifice all that pain for the godde<<ss>>."
+				$He hesitates, looking concerned. "Oh God<<s>>, the <<s>>e<<x>> clean<<s>>ing will be awful, but I'm willing to <<s>>acrifice all that pain for the godde<<ss>>."
 			<<elseif ($activeSlave.fetish == "humiliation")>>
 				$He shudders with excitement. "I heard everyone can <<s>>ee me a<<s>> I <<s>>uffer. I hope the public penan<<c>>e will plea<<s>>e the godde<<ss>>."
 			<<elseif ($activeSlave.fetish == "buttslut")>>
 				$He looks sadly at the floor. "Oh God<<s>>, that mean<<s>> no butt <<s>>e<<x>> for me. I hope Xochiquetzal be plea<<s>>ed by all that <<s>>acrifice."
 			<</if>>
 		<<else>>
-			$He looks determined. "<<master>>, I'll do my best. No other <<s>>lave will be cleaner for the godde<<ss>> than I.
+			$He looks determined. "<<Master>>, I'll do my best. No other <<s>>lave will be cleaner for the godde<<ss>> than I.
 		<</if>>
 	<<elseif ($activeSlave.devotion > 20) || (($activeSlave.devotion >= -20) && ($activeSlave.trust < -20) && ($activeSlave.trust >= -50))>>
 		<<if !canTalk($activeSlave)>>
 			$He looks cautious at the prospect of suffering for the goddess.
 		<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish != "none")>>
-			$He looks cautiously excited. "<<master>>,
+			$He looks cautiously excited. "<<Master>>,
 			<<if ($activeSlave.fetish == "submissive")>>
 				I'll follow your every word to be a good <<s>>acrifi<<c>>e for the godde<<ss>>. I won't even blink if I'm not in<<s>>tructed to.
 			<<elseif ($activeSlave.fetish == "masochist")>>
 				<<s>>acrifi<<c>>e will be hard, right? Lot<<s>> of pain the whole week..." $he trails off.
 			<<elseif ($activeSlave.fetish == "cumslut")>>
-				oh God<<s>>, it'<<s>> going to be <<s>>o hard not being able to cum the whole week!" An expression of sadness spreads across $his face. "But I'm willing to do it for the godde<<ss>>."
+				it'<<s>> going to be <<s>>o hard to not be able to drink cum the whole week!" An expression of sadness spreads across $his face. "But I'm willing to do it for the godde<<ss>>."
 			<<elseif ($activeSlave.fetish == "humiliation")>>
 				it'<<s>> a public <<s>>acrifi<<c>>e, right? I hope they all <<s>>ee how much one mu<<s>>t <<s>>uffer to plea<<s>>e the godde<<ss>>."
 			<<elseif ($activeSlave.fetish == "buttslut")>>
-				my poor a<<ss>>, <<s>>o neglected. I hope Xochiquetzal be plea<<s>>ed with <<s>>uch a hard <<s>>acrifi<<c>>e." $He rubs $his butt in preparation.
+				my poor a<<ss>>, <<s>>o neglected. I hope Xochiquetzal will be plea<<s>>ed with <<s>>uch a hard <<s>>acrifi<<c>>e." $He rubs $his butt in anticipation.
 			<<else>>
-				I will do my be<<s>>t to be a good <<s>>acrifi<<c>>e." $He tries to be brave. Then, half to $himself, $he adds in a small voice, "I can do this."
+				I will do my be<<s>>t to be a good <<s>>acrifi<<c>>e," $he says, trying to put on a brave front. Then, half to $himself, $he adds in a small voice, "I can do thi<<s>>."
 			<</if>>
 		<<elseif $activeSlave.sexualFlaw != "none">>
 			"Ye<<s>>, <<Master>>," $he <<say>>s obediently. $He hesitates, looking concerned.
@@ -64,7 +63,7 @@
 		<<if !canTalk($activeSlave)>>
 			$He looks afraid at the prospect of suffering for the goddess.
 		<<elseif $activeSlave.sexualFlaw != "none">>
-			$He seems afraid of what's to come and $his answer is barely more than a whispering to $himself, "Ye<<s>> <<master>>..." But finally $he gasps out. "God<<s>>, I'm going to <<s>>-<<s>>uffer <<s>>o much."
+			$He seems afraid of what's to come and $his answer is barely more than a whisper, almost to $himself, "Ye<<s>> <<Master>>..." Finally $he gasps out, "God<<s>>, I'm going to <<s>>-<<s>>uffer <<s>>o much."
 			<<if ($activeSlave.sexualFlaw == "hates oral") || ($activeSlave.sexualFlaw == "hates anal") || ($activeSlave.sexualFlaw == "hates penetration")>>
 				$He visibly considers disobedience but the prospect of not having <<if ($activeSlave.sexualFlaw == "hates oral")>>a dick down $his throat<<elseif ($activeSlave.sexualFlaw == "hates anal")>>$his butt filled<<elseif ($activeSlave.sexualFlaw == "hates penetration")>>any hole filled with dick<</if>> for a hole week seems enough to go through any ordeal you order $him to do. Trembling, $he answers, "Ye<<s>> <<Master>>, I'll obey."
 			<<elseif ($activeSlave.sexualFlaw == "shamefast")>>
@@ -73,27 +72,27 @@
 				 A big smile appears on $his face. "I'm going to be clean<<s>>ed. I'll be cleaned for the godde<<ss>>..."
 			<</if>>
 		<<else>>
-			$He does $his best to control $himself and avoid punishment. "<<Master>>, I will do it. I'll do the peniten<<c>>e for the godde<<ss>>." $He holds $himself together until you dismiss $him; as $he turns to leave, the tears come fast, and $he almost runs into the doorframe on $his way out<<if canSee($activeSlave)>>, blinded with weeping<</if>>."
+			$He does $his best to control $himself and avoid punishment. "<<Master>>, I will do it. I'll do the peniten<<c>>e for the godde<<ss>>." $He holds $himself together until you dismiss $him; as $he turns to leave, the tears come fast, and $he almost runs into the doorframe on $his way out<<if canSee($activeSlave)>>, blinded with weeping<</if>>.
 		<</if>>
 	<<else>>
 		<<if canWalk($activeSlave)>>
 			$He manages to run halfway to your desk before $he's <<if $Bodyguard != 0>>clotheslined by $Bodyguard.slaveName<<elseif $HeadGirl != 0>> restrained by $HeadGirl.slaveName<<else>>restrained by another, more obedient slave<</if>>. $He kicks and struggles as $he's removed from your office. By the end of the week, it won't matter; $he'll be so hungry and horny that resistance will be the last thing on $his mind.
 		<<elseif !canTalk($activeSlave)>>
-			A long line of slurs and names are screamed at you, none of them particularly pleasant. Your <<if $HeadGirl != 0>>Head Girl $HeadGirl.slaveName <<else>>another, more obedient slave<</if>> removes $him as $he continues $his rant, spitting an resisting as much as $he can without limbs. By the end of the week, it won't matter; $he'll be so hungry and horny that resistance will be the last thing on $his mind.
+			A long line of slurs and names are screamed at you, none of them particularly pleasant. Your <<if $HeadGirl != 0>>Head Girl $HeadGirl.slaveName <<else>>another, more obedient slave<</if>> removes $him as $he continues $his rant, spitting and resisting as much as $he can without limbs. By the end of the week, it won't matter; $he'll be so hungry and horny that resistance will be the last thing on $his mind.
 		<<else>>
-			$He proceeds to drop into a massive tantrum for the lack of better ways to express $himself. <<if $HeadGirl != 0>>$HeadGirl.slaveName<<else>>Another, more obedient slave<</if>> removes $him as $he continues struggling, spiting and resisting as much as $he can. By the end of the week, it won't matter; $he'll be so hungry and horny that resistance will be the last thing on $his mind.
+			$He proceeds to drop into a massive tantrum for the lack of better ways to express $himself. <<if $HeadGirl != 0>>$HeadGirl.slaveName<<else>>Another, more obedient slave<</if>> removes $him as $he continues struggling, spitting and resisting as much as $he can. By the end of the week, it won't matter; $he'll be so hungry and horny that resistance will be the last thing on $his mind.
 		<</if>>
 	<</if>>
 	
 	<br>
-	As tradition dictates, the purification of $his body will be used as penitence to the goddess in an attempt to pay for the favors bestowed upon your arcology. First, one of your slaves is appointed to represent you as $his owner who willingly gives the slave as sacrifice, and is put in charge of the slave's health while $he goes through the penance process. $activeSlave.slaveName is thoroughly bathed, $his whole body covered in blue paint, and $his mouth in black, as payment for being a prostitute. $He's taken to spend the night at the sexual servitude of another slave who will be sacrificed to Tezcatlipoca, god of the night sky. $He's <<if ($activeSlave.devotion > 20)>>fucked all night long <<else>>raped over and over again throughout the night <</if>>; $his holes dedicated to the sexual satisfaction of the slave who soon will face a much darker fate than $him to please the gods.
+	As tradition dictates, the purification of $his body will be used as penance to the goddess in an attempt to pay for the favors bestowed upon your arcology. First, one of your slaves is appointed to represent you as $his owner, who willingly gives the slave as sacrifice, and is put in charge of the slave's health while $he goes through the penance process. $activeSlave.slaveName is thoroughly bathed and $his whole body covered in blue paint, while $his mouth is covered in black paint, as payment for being a prostitute. /*Might need a clause here for other jobs besides "whore"*/ $He's taken to spend the night at the sexual servitude of another slave who will be sacrificed to Tezcatlipoca, god of the night sky. $He's <<if ($activeSlave.devotion > 20)>>fucked all night long <<else>>raped over and over again throughout the night <</if>>; $his holes dedicated to the sexual satisfaction of the slave who soon will face a much darker fate than $him to please the gods.
 	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
 		<<set _randomVag = random(0,2)>>
 		<<set _randomAnal = random(0,1)>>
 		<<set _randomOral = random(2,6)>>
 		<<set $activeSlave.vaginalCount += _randomVag, $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>>
 		<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
-			$His sacrifice to the gods ended up including @@.lime;both $his virginities.@@
+			$His sacrifice to the gods naturally meant giving up @@.lime;both of $his virginities.@@
 			<<set $activeSlave.vagina = 1, $activeSlave.anus = 1>>
 		<</if>>
 		<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
@@ -131,7 +130,7 @@
 	<</if>>
 
 	<br>
-	$He's prepared for $his public penance. First, $he is left to sweat for several hours on the temazcal to remove any impurity of the previous night before being bathed and painted once again. $He's specially dressed for the occasion,
+	$He's prepared for $his public penance. First, $he is left to sweat for several hours on the temazcal to remove any impurity of the previous night before being bathed and painted once again. $He's specially dressed for the occasion - 
 	<<if ($activeSlave.sexualFlaw == "shamefast") || ($activeSlave.sexualFlaw == "repressed")>>
 		a short red loincloth and a chastity belt designed to prevent any forbidden self-stimulation cover as little of $his lower body as possible. The setup is adorned with long, red, silky fringes that move as $he walks. $His chest is bare except for a pair of golden pasties over $his nipples joined by three blue chains on cascade.
 	<<else>> 
@@ -163,20 +162,21 @@
 	<<else>>
 		pushed
 	<</if>>
-	into a golden cage, just big enough for $his to fit. Once inside, a huge dose of aphrodisiacs are injected to $him and the door locked. During $his week long penance, $he will be kept on a strict regimen of aphrodisiacs to keep $him aroused but unable to cum without direct stimulation, a special spiced tea diet to avoid dehydration and a constant vigil with only a few hours of sleep every night.
+	into a golden cage, just big enough for $him to fit. Once inside, a huge dose of aphrodisiacs are injected into $him and the door is locked. During $his week long penance, $he will be kept on a strict regimen of aphrodisiacs to keep $him aroused but unable to cum, a special spiced tea diet to avoid dehydration, and a constant vigil, with only a few hours of sleep every night.
 
 	<br>
 	<<if ($activeSlave.devotion > 50)>>
 		As the week starts, $he is proud to fulfill $his duty. $He fights the urge to touch $himself, drinking only when $he needs to, and does $his best to keep $himself pure for the goddess.
+
 		<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish != "none")>>
 			<<if ($activeSlave.fetish == "submissive")>>
-				$He makes sure to be ready to take any instruction and it is clear that $he enjoys it. As the week progresses, the signs of sexual frustration become more evident on $his body, however $he seems to enjoy the struggle to resist the urges since $he is under strict orders to not touch $himself. Every time the slave in charge of feeding $him or renewing $his aphrodisiacs orders $him to come closer, $his body shudders with lust fueled pleasure. $He moans lewdly whenever $he's ordered to wake up or to sleep. By the end of the week, $he fights to remain standing, almost delusional from lust and starvation, as $he was told to remain on $his feet; much to $his chagrin, exhaustion often bring $him to $his knees.
+				$He makes sure to be ready to take any instruction, and it's clear that $he enjoys it. As the week progresses, the signs of $his sexual frustration become more evident. However, $he seems to enjoy the struggle of resisting the urges, since $he is under strict orders not to touch $himself. Every time the slave in charge of feeding $him or renewing $his aphrodisiacs orders $him to come closer, $his body shudders with lust-fueled pleasure. $He moans lewdly whenever $he's ordered to wake up or to sleep. By the end of the week, $he fights to remain standing, almost delusional from lust and starvation. $He was told to remain on $his feet, but, much to $his chagrin, exhaustion often brings $him to $his knees.
 			<<elseif ($activeSlave.fetish == "masochist")>>
-				$He seems to enjoy the pain $his sacrifice submits $him to. As the week progresses, it is fairly common to see $him moaning and showing other signs of pleasure that seem to be unrelated to the huge amount of aphrodisiacs in $his system. Before long, $he starts to faint more often as $he refuses to even drink the tea to keep hydrated and avoids any sleep whatsoever. The specially designated slave appointed to $his care needs to force $him to drink every few hours to avoid dying of dehydration. $He seems to enjoy the extra abuse and even fights to retain as little liquid inside $him as possible. By the end of the week, $he needs to be constantly reanimated to carry out $his penance; a process that $he also seems to enjoy. 
+				$He seems to enjoy the pain $his sacrifice gives $him. As the week progresses, it is fairly common to see $him moaning and showing other signs of pleasure that seem to be unrelated to the huge amount of aphrodisiacs in $his system. Before long, $he starts to faint more often as $he refuses to even drink the tea to keep $him hydrated and avoids any sleep whatsoever. The specially designated slave appointed to $his care needs to force $him to drink every few hours to avoid dying of dehydration. $He seems to enjoy the extra abuse and even fights to retain as little liquid inside $him as possible. By the end of the week, $he needs to be constantly reanimated to carry out $his penance; a process that $he also seems to enjoy. 
 			<<elseif ($activeSlave.fetish == "cumslut")>>
-				$He can be seen frequently crying and desperately fighting the excruciating need to touch $himself. As a result of the aphrodisiacs on $his body, the paint on the inner thighs is constantly wet and steadily drips onto the cage floor. As week progresses, $his whining and tears increase and $his body convulses harder and harder with lust. The loincloth $he's wearing is constantly wet, as are $his legs. It is common to see $him begging strength from the goddess only to burst into tears when no relief comes to $him and crying $himself to sleep at night only to be awoken a few hours later. As a result of all $his crying and lubrication, $he needs to be hydrated more often. By the end of the week, $his body refuses to lose more liquid, a fact that doesn't stop $him from sobbing, immobile in $his dried arousal on the floor of the cage, interrupted only by the spasms of $his lust raked body and the slave posted to procure $him more tea to prevent $him from succumbing to dehydration.
+				$He can be seen frequently crying and desperately fighting the excruciating need to touch $himself. As a result of the aphrodisiacs, the paint on $his inner thighs is constantly wet and steadily drips onto the cage floor. As the week progresses, $his whining increase and $his body convulses harder and harder with lust. The loincloth $he's wearing is constantly wet, as are $his legs. It is common to see $him begging strength from the goddess only to burst into tears when no relief comes to $him and crying $himself to sleep at night only to be awoken a few hours later. As a result of all $his crying and lubrication, $he needs to be hydrated more often. By the end of the week, $his body refuses to lose more liquid, a fact that doesn't stop $him from sobbing, immobile in $his dried arousal on the floor of the cage, interrupted only by the spasms of $his lust raked body and the slave posted to procure $him more tea to prevent $him from succumbing to dehydration.
 			<<elseif ($activeSlave.fetish == "humiliation")>>
-				$He seems to enjoy all the attention $he receives as $he tries to fight the impulse to touch $himself. $He takes special care to show how degrading the whole process can be. Is common to see $him enjoying every reapplication of aphrodisiacs and when $he needs to be awoken. Often, $he refuses to drink the tea, hoping the time comes that $he will be forced to drink it. As the week progresses and the signs of discomfort become more obvious, $he rejoices in the attempts of the slave on duty to force $him to drink $his tea and the way $he's awakened after just a few hours of sleep. $His body shows clear signs of food, sleep and sexual depravation that increases as the days go by; $he shows no shame with displaying $his lack of inner strength. By the end of the week, $he can't stand up and remains on the floor of the cage, enjoying the soak in $his own sexual fluids and saving what little strength $he has left to make $his waterings thoroughly humiliating.
+				$He seems to enjoy all the attention $he receives as $he tries to fight the impulse to touch $himself. $He takes special care to show how degrading the whole process can be. It is common to see $him enjoying every reapplication of aphrodisiacs and when $he needs to be awoken. Often, $he refuses to drink the tea, hoping the time comes that $he will be forced to drink it. As the week progresses and the signs of discomfort become more obvious, $he rejoices in the attempts of the slave on duty to force $him to drink $his tea and the way $he's awakened after just a few hours of sleep. $His body shows clear signs of food, sleep and sexual depravation that increases as the days go by; $he shows no shame with displaying $his lack of inner strength. By the end of the week, $he can't stand up and remains on the floor of the cage, enjoying the soak in $his own sexual fluids and saving what little strength $he has left to make $his waterings thoroughly humiliating.
 			<<elseif ($activeSlave.fetish == "buttslut")>>
 				$He tries to keep $his butt away from the bars of the cage to avoid any possible stimulation of it. As the week progresses, it is common to see $him trying to remain immobile as $his body shakes and twitches with lust; the constant stimulation of the soft fabric over $his butt, every shift of $his weight and even the caress of the air threatening to drive $him into a frenzy. The lack of food, sexual release and sleep wears $his will down as $he's often ordered back to $his feet since $he insists on sitting down with the hope that $his butt numbs. By the end of the week, $he remains on the floor of the cage, sitting on $his side, as immobile as $he can, interrupted only by the occasional twitch and the need to drink or roll over.
 			<<elseif ($activeSlave.fetish == "boobs")>>
@@ -187,46 +187,50 @@
 		<<else>>
 			$He tries to fulfill $his sacrifice as best $he can by trying to keep $himself pure for the goddess. $He submits to every instruction to the best of $his ability. $He can be seen constantly fighting the urge to touch $himself, shaking and moaning at the overwhelming lust caused by the aphrodisiacs. $He drinks only when told, and kindly refuses it when $he thinks $he can hold longer without it. As the week progresses, $his body shakes and twitches more often as $he struggles to stave off the compounding effects of the aphrodisiacs. $He tries to minimize any extra stimulation from the soft fabric or the necklace on $his chest by staying still, but sometimes $he bursts into tears when $his strength wavers. The only interactions $he faces are the reminders to stay hydrated hydrated, the application of more aphrodisiacs and $his sleep deprivation. By the end of the week, $he can hardly stand and often remains on the floor of the cage, soaked in $his own desperation.
 		<</if>>
+
 	<<elseif ($activeSlave.devotion > 20) || (($activeSlave.devotion >= -20) && ($activeSlave.trust < -20) && ($activeSlave.trust >= -50))>>
-		As week starts, $he tries to fulfill $his duty. $He fights the urge to touch $himself, drinks just when $he needs to, and tries to keep $himself pure for the goddess.
+		As week starts, $he tries to fulfill $his duty. $He fights the urge to touch $himself, drinks only when $he needs to, and tries to keep $himself pure for the goddess.
+
 		<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish != "none")>>
 			<<if ($activeSlave.fetish == "submissive")>>
-				$He makes sure is ready to take any order $he might be given and it is evident that $he enjoys every time $he is ordered to do something. As the week progresses $he finds $himself close to the limits of $his submission. As much as $he tries to keep $his hands to $himself, $his sexual frustration finally wins the battle as $he desperately tries to masturbate. Only for $him to discover how effective the chastity belt really is. $He cries in frustration and shame for being unable to fulfill $his orders. The signs of sexual frustration are more evident on $his body as time goes by and it is common to see $his repeating "<<Master>> told me no touching yourself is allowed" over and over again as $he shifts $his weight from foot to foot. The only thing that seems to shut $him up is when $he is ordered to come closer to drink, renew $his dose of aphrodisiacs or when ordered to be prepared to sleep. As soon as $he hears the order, $his body twitches and a soft moan can be heard. By the end of the week $he fights to remain standing up almost delusional as $he was told to remain on $his feet but the signs of exhaustion often bring $him to $his knees. Sometimes $he tries to touch $himself down there only to burst into tears when $he is unable to do so. 
+				$He makes sure is ready to take any order $he might be given, and it's evident that $he enjoys it every time $he is ordered to do something. As the week progresses $he finds $himself close to the limits of $his submission. As much as $he tries to keep $his hands to $himself, $his sexual frustration finally wins the battle, and $he desperately tries to masturbate, only for $him to discover how effective the chastity belt really is. $He cries in frustration and shame for being unable to fulfill $his orders. The signs of sexual frustration are more evident on $his body as time goes by and it is common to see $him repeating "<<Master>> told me no touching yourself is allowed" over and over again as $he shifts $his weight from foot to foot. The only thing that seems to shut $him up is when $he is ordered to come closer to drink, renew $his dose of aphrodisiacs or when ordered to be prepared to sleep. As soon as $he hears the order, $his body twitches and a soft moan can be heard. By the end of the week $he fights to remain standing up almost delusional as $he was told to remain on $his feet but the signs of exhaustion often bring $him to $his knees. Sometimes $he tries to touch $himself down there only to burst into tears when $he is unable to do so. 
 			<<elseif ($activeSlave.fetish == "masochist")>>
-				$He seems to enjoy the pain $his sacrifice submits $him to. Through the week is fairly common to see $his moaning and showing other signs of pleasure that seem to be fairly unrelated to the huge amounts of aphrodisiacs that run through $him. Every time the shot it is injected to $his body $he pants and thrust enjoying the pain of $his swollen <<if $activeSlave.dick != 0>>dick<<else>>pussy lips<</if>> throbbing inside $his chastity belt. As the week progresses $he starts to faint frequently as $he refuses to even drink the tea that keeps $him hydrated and avoid death in addition to sleep whatsoever instead choosing to focus on the pain of being constantly aroused. As a precaution, alternative methods to keep $him hydrated are put in place to avoid the pleasure of being forced to drink every few hours as $he was caught several times trying to cum from it. By the end of the week $he needs to be constantly reanimated to fulfill $his vigil, moaning as $he comes to conscience as the exhaustion and pain on $his body washes over to $him.
-			<<elseif ($activeSlave.fetish == "cumslut")>>
-				At first, $he seems resigned to not cum at all during $his penance. Soon $his resolution seems to vanish and $he can be seen constantly crying, trying to fight the excruciating need to touch $himself yet failing by trying to masturbate through the chastity belt. As a result of the aphrodisiacs in $his body the paint on the inner part of $his legs seems constantly wet and dripping into the cage which $he seems to enjoy. As $his whining and tears increases so does the spasms a direct result of $his need to cum. The loincloth $he is wearing has to be constantly changed and $his legs constantly cleaned when it becomes apparent they are wet to avoid any evidence of pleasure. $He tries to make it more difficult as now it is the only thing $he has to fantasize on cumming. At the end of the week is often common to see $him beg to be touched by anyone who is close enough to hear $him and bursts into tears when $he is blatantly ignored. As a result of all this crying, the lack of food and sleep $he needs to be hydrated more often also the dose of aphrodisiacs is changed to be less potent but be injected more often to avoid the danger that $he might cum from it. $His body refuses to lose anymore more liquids, a fact that doesn't stop $him from sobbing and begging to be touched as soon as $he finds the strength to it while $he remains almost immobile on the bottom of the cage, interrupted by the spasms of $his body as a result of being constantly aroused for a week.
+				$He seems to enjoy the pain $his sacrifice submits $him to. Through the week is fairly common to see $his moaning and showing other signs of pleasure that seem to be fairly unrelated to the huge amounts of aphrodisiacs that run through $him. Every time the shot it is injected to $his body $he pants and thrusts, enjoying the pain of $his swollen <<if $activeSlave.dick != 0>>dick<<else>>pussy lips<</if>> throbbing inside $his chastity belt. As the week progresses, $he starts to frequently faint, as $he refuses to even drink the tea that keeps $him hydrated or sleep whatsoever, instead choosing to focus on the pain of being constantly aroused. As a precaution, alternative methods to keep $him hydrated are put in place to avoid the pleasure of being forced to drink every few hours as $he was caught several times trying to cum from it. By the end of the week $he needs to be constantly reanimated to fulfill $his vigil, moaning as $he comes to conscience as the exhaustion and pain on $his body washes over to $him.
+			<<elseif ($activeSlave.fetish == "cumslut")>> /*Will need to be completely rewritten*/
+				At first, $he seems resigned to not cum at all during $his penance. Soon $his resolution seems to vanish and $he can be seen constantly crying, trying to fight the excruciating need to touch $himself yet failing by trying to masturbate through the chastity belt. As a result of the aphrodisiacs in $his body the paint on the inner part of $his legs seems constantly wet and dripping into the cage which $he seems to enjoy. As $his whining and tears increases so do the spasms, a direct result of $his need to cum. The loincloth $he is wearing has to be constantly changed and $his legs constantly cleaned when it becomes apparent they are wet to avoid any evidence of pleasure. $He tries to make it more difficult as now it is the only thing $he has to fantasize on cumming. At the end of the week is often common to see $him beg to be touched by anyone who is close enough to hear $him and bursts into tears when $he is blatantly ignored. As a result of all this crying, the lack of food and sleep $he needs to be hydrated more often also the dose of aphrodisiacs is changed to be less potent but be injected more often to avoid the danger that $he might cum from it. $His body refuses to lose anymore more liquids, a fact that doesn't stop $him from sobbing and begging to be touched as soon as $he finds the strength to it while $he remains almost immobile on the bottom of the cage, interrupted by the spasms of $his body as a result of being constantly aroused for a week.
 			<<elseif ($activeSlave.fetish == "humiliation")>>
-				$He seems to enjoy all the attention $he receives every time $he tries to fight the impulse to touch $himself as $his body shows clear signs of arousal and takes special care in showing how degrading the whole process could be. It is often common to see $him enjoying every time the dose of aphrodisiacs needs to be injected again or when $he needs to be awaken. Often, $he refuses to drink the tea is provided hoping that when the moment comes $he will be forced to drink it preferably in a very humiliating way. As week progresses and $his need to cum increases $he focus on the humiliation $he can get every time the aphrodisiacs get the best of $him and tries to find release and fails as the citizens passing by throw insults and disgusted looks on $his direction for failing in trying to please the goddess. As a result, $he is immobilized and blindfolded in an attempt to reduce external stimulation. By the end of the week $he cannot stand up and remains on the bottom of the cage, saving $his strength to procure making the procedures as humiliating as possible with the little strength $he has saved.
+				$He seems to enjoy all the attention $he receives every time $he tries to fight the impulse to touch $himself as $his body shows clear signs of arousal and takes special care in showing just how degrading the whole process can be. It's common to see $him enjoying every time the dose of aphrodisiacs needs to be injected again or when $he needs to be awaken. Often, $he refuses to drink the tea provided, hoping that when the moment comes $he will be forced to drink it - preferably in a very humiliating way. As the week progresses and $his need to cum increases $he focuses on the humiliation $he gets every time the aphrodisiacs get the best of $him and tries to find release and fails as the citizens passing by throw insults and disgusted looks on $his direction for failing in trying to please the goddess. As a result, $he is immobilized and blindfolded in an attempt to reduce external stimulation. By the end of the week $he cannot stand up and remains on the bottom of the cage, saving $his strength to procure making the procedures as humiliating as possible with the little strength $he has saved.
 			<<elseif ($activeSlave.fetish == "buttslut")>>
-				At first, is common to see $him trying to resist the heavy dose of aphrodisiacs in $his body as $he cannot find a way to release. As week progresses $he is constantly crying and whining as $he is unable find a way to stimulate $his ass when the aphrodisiacs become too much for $him. As the week progresses and $his strength lingers $he tries to find ways to increase stimulation on $his ass. $He tries to keep $his butt as close as possible from the cage's bars, rubbing on them to increase any stimulation on $his buttocks or focus on the feel of the sort fabric that covers $him as it moves when $he readjust $himself. $He seems particularly angry every time $his attempts are put to an end just to burst into tears ashamed of $his actions. By the end of the week $he remains immobile on the center of $his cage and the fabric readjusted to procure as little extra stimulation as possible. $He insists on sitting down and rubbing $his behind against the floor and is forced to stand up. By the end of the week the lack of food, sexual release and sleep seems to be wearing $his will off as $he takes longer being able to stand up every time and $he remains on the bottom of the cage forced to lay on $his chest as immobile as $he can, interrupted only by the occasional twitch and the need to drink.
+				At first, is common to see $him trying to resist the heavy dose of aphrodisiacs in $his body as $he cannot find a way to release. As the week progresses, $he is constantly crying and whining as $he is unable find a way to stimulate $his ass when the aphrodisiacs become too much for $him. As the week progresses and $his strength lingers $he tries to find ways to increase stimulation on $his ass. $He tries to keep $his butt as close as possible to the cage's bars, rubbing on them to increase any stimulation on $his buttocks or focus on the feel of the sort fabric that covers $him as it moves when $he readjust $himself. $He seems particularly angry every time $his attempts are put to an end just to burst into tears ashamed of $his actions. By the end of the week $he remains immobile on the center of $his cage and the fabric readjusted to procure as little extra stimulation as possible. $He insists on sitting down and rubbing $his behind against the floor and is forced to stand up. By the end of the week the lack of food, sexual release and sleep seems to be wearing $his will off as $he takes longer being able to stand up every time and $he remains on the bottom of the cage forced to lay on $his chest as immobile as $he can, interrupted only by the occasional twitch and the need to drink.
 			<<elseif ($activeSlave.fetish == "boobs")>>
-				At first, $he tries to distract $himself from the constant stimulation the necklace over $his chest seems to be producing. $He can be seen constantly fighting the urge to touch $his breasts every time the aphrodisiacs are injected into to $his body. As the week progresses $his resolutions seem to vanish and needs to be stopped from touching $his breast in several occasions or is constantly caught and forcefully stopped trying to moving $his chest to make the necklace rub $his breasts. Later on, the necklace is replaced for a breastplate equally colorful and adorned but extremely tight making $his breast flatter and unable to move. $He soon realizes not only that $he can no longer stimulate $his breast with it on but that now $his breasts are completely hidden from view. As a result, $he can be seen constantly crying and trying to rip the breastplate apart with no avail. $He is constantly awake during the times $he is supposed to be sleeping as $he tries to touch $his breast but can't seem to find them hidden under the breastplate. At the end of the week $he remains on the bottom of $his cage unable to move as the lack of food, sleep and sexual release takes a toll on $his body, the breastplate is without feathers or other delicate adornments but still in a perfect position.
+				At first, $he tries to distract $himself from the constant stimulation the necklace over $his chest seems to be producing. $He can be seen constantly fighting the urge to touch $his breasts every time the aphrodisiacs are injected into to $his body. As the week progresses $his resolutions seem to vanish and $he needs to be stopped from touching $his breast on several occasions or is constantly caught and forcefully stopped trying to moving $his chest to make the necklace rub $his breasts. Later on, the necklace is replaced by a breastplate equally colorful and adorned but extremely tight making $his breast flatter and unable to move. $He soon realizes not only that $he can no longer stimulate $his breast with it on but that now $his breasts are completely hidden from view. As a result, $he can be seen constantly crying and trying to rip the breastplate apart to no avail. $He is constantly awake during the times $he is supposed to be sleeping as $he tries to touch $his breast but can't seem to find them hidden under the breastplate. At the end of the week $he remains on the bottom of $his cage unable to move as the lack of food, sleep and sexual release takes a toll on $his body, the breastplate is without feathers or other delicate adornments but still in a perfect position.
 			<<else>>
-				At first, $he tries to fulfill $his sacrifice the best $he can by trying to maintain $himself pure for the goddess. $He submits to every instruction and tries to hold off as much as $his body allows $him, drinking as little as $he can and sleeping only when $he is told. Soon the aphrodisiacs make $his resolutions useless as $he tries to touch $himself to find release. It doesn't take $him long to prove how efficient the chastity belt is. $He cries and tries as much as $he can but $he is unable to experience any kind of pleasure. As time goes by $he seems to shift $his efforts from fighting to removing the chastity belt from $himself with no avail. $His body twitches and shakes frequently as the aphrodisiacs hit $him harder every time $his dose is renewed. Later on, $he tries to please any part of $his body which $he is able to touch and needs to be restrained. Hunger and sleep deprivation take a toll on $his body also $he tries to drink as much as possible to fool the hunger $he feels. The tea is rationed to be given only when required and $his sleep is carefully monitored. By the end of the week $he remains on the bottom of $his cage trying to save what little energy $he has left, only to be interrupted as $his body spasms brought about by the aphrodisiacs in $his body followed by a soft moan.
+				At first, $he tries to fulfill $his sacrifice the best $he can by trying to maintain $himself pure for the goddess. $He submits to every instruction and tries to hold off as much as $his body allows $him, drinking as little as $he can and sleeping only when $he is told. Soon the aphrodisiacs make $his resolutions useless as $he tries to touch $himself to find release. It doesn't take $him long to discover how efficient the chastity belt is. $He cries and tries as much as $he can but $he is unable to experience any kind of pleasure. As time goes by $he seems to shift $his efforts from fighting to removing the chastity belt from $himself with no avail. $His body twitches and shakes frequently as the aphrodisiacs hit $him harder every time $his dose is renewed. Later on, $he tries to please any part of $his body which $he is able to touch and needs to be restrained. Hunger and sleep deprivation take a toll on $his body also $he tries to drink as much as possible to fool the hunger $he feels. The tea is rationed to be given only when required and $his sleep is carefully monitored. By the end of the week $he remains on the bottom of $his cage trying to save what little energy $he has left, only to be interrupted as $his body spasms brought about by the aphrodisiacs in $his body followed by a soft moan.
 			<</if>>
+
 		<<elseif $activeSlave.sexualFlaw != "none">>
 			<<if ($activeSlave.sexualFlaw == "hates oral")>> 
-				$He focuses on fulfilling $his duty to keeping $himself pure for the goddess while fighting the urge to touch $himself now that $he thinks the worst part of $his penance is over as $he no longer is going to be raped in the mouth just like $he was last night. Soon $he discovers that is far the truth when $his first dose of the tea doesn't come in a tea cup. As a means of keeping $his penance in accordance to the suffering the goddess demands the tea will be administered through a similar device used in dairies. A feeding phallus is quickly installed into a side of the cage. If $he wants to avoid dehydration $he will have to suck it off and only after $he does it right is the tea provided. When $he realizes what is in store for $him $he starts to cry. $He tries to drink only when it is strictly necessary however as the week progresses $he starts to faint more frequently as $his body receives only the minimum amount of liquids necessary. As a result, $he is restrained and the feeding phalli is pressed into $his mouth and down $his throat to facefuck $him. $He gags and struggles, tears running down $his face as $he tries to figure out how to breathe while being facefucked. Only after $he manages to control $himself is the transparent reservoir of tea injected. $He swallows desperately. As per your instructions $his feedings are synched with $his dose of aphrodisiacs which confuses $him to no end and adds to $his penance. This procedure occurs several times a day. By the end of the week $he can hardly stand up as the lack of food and sleep keeps $him weak. $He remains on the bottom of the cage only interrupted by $his feedings and the body spasms $he suffers as a result of the constant arousal.
+				$He focuses on fulfilling $his duty to keeping $himself pure for the goddess while fighting the urge to touch $himself. $He seems to think the worst part of $his penance is over as $he is no longer going to be raped in the mouth like $he was last night. Soon $he discovers that is far the truth when $his first dose of the tea doesn't come in a tea cup. As a means of keeping $his penance in accordance to the suffering the goddess demands the tea will be administered through a similar device used in dairies. A feeding phallus is quickly installed into a side of the cage. If $he wants to avoid dehydration $he will have to suck it off and only after $he does it right is the tea provided. When $he realizes what is in store for $him, $he begins to cry. $He tries to drink only when strictly necessary. However, as the week progresses, $he starts to faint more frequently as $his body receives only the minimum amount of liquids necessary. As a result, $he is restrained and the feeding phalli is pressed into $his mouth and down $his throat to facefuck $him. $He gags and struggles, tears running down $his face as $he tries to figure out how to breathe while being facefucked. Only after $he manages to control $himself is the transparent reservoir of tea injected. $He swallows desperately. As per your instructions $his feedings are synched with $his dose of aphrodisiacs which confuses $him to no end and adds to $his penance. This procedure occurs several times a day. By the end of the week $he can hardly stand up as the lack of food and sleep keeps $him weak. $He remains on the bottom of the cage only interrupted by $his feedings and the body spasms $he suffers as a result of the constant arousal.
 			<<elseif ($activeSlave.sexualFlaw == "shamefast")>> 
-				At first, $he tries to fulfill $his duty to keeping $himself pure to the goddess, distracting $himself by trying to cover however $he can $his almost naked body. As a way to keep $his penance according to the suffering the goddess demands a big screen was set next to $his cage. After a few hours, the screen turns on and a live image of $him on the cage appears. The screen then shifts to a low shot of $his tight dripping wet product of $his arousal, showing different stats related to it. After a few minutes, the screens changes to previously recorded footage of $his naked body glistening while laying comfortably on the temazcal. After a minute, shifts again to a close shot of $his ass being carefully painted with blue, the camera following the movement of the brush as it moves over $his ass cheek and shifts again to a very close shot of $him being fucked the night before. The video changes over and over again showing scenes of previously recorded footage of $his preparation for $his penance, every one carefully picked to give a good look of $his body or revealing live shots of $his body picked to show where $his sexual arousal is more evident. The first time $he sees them $he burst into tears, begging the screens to be turned off just to see $his image begging and crying a few hours later. As the week goes new clips are added showing the best scenes the camera was able to capture while on the cage. Due to $his resistance to show $his body for the cameras and the citizens passing by $he is immobilized to be kept standing, $his body conveniently positioned to get the best shots. $He tries to ignore the whole situation trying to focus on resisting the signs of $his hunger, exhaustion and arousal $he constantly feels. By the end of the week as $he remains sitting immobilize on a stool to procure a good shot a small screen is set in front of $him, the image divided in two, one half showing what the big screen projects and the other the audience and $his reactions. 
+				At first, $he tries to fulfill $his duty to keeping $himself pure to the goddess, distracting $himself by trying to cover however $he can $his almost naked body. As a way to keep $his penance according to the suffering the goddess demands a big screen set next to $his cage. After a few hours, the screen turns on and a live image of $him on the cage appears. The screen then shifts to a low shot of $his tight dripping wet product of $his arousal, showing different stats related to it. After a few minutes, the screens changes to previously recorded footage of $his naked body glistening while laying comfortably on the temazcal. After a minute, it shifts again to a close shot of $his ass being carefully painted with blue, the camera following the movement of the brush as it moves over $his ass cheek and shifts again to a very close shot of $him being fucked the night before. The video changes over and over again showing scenes of previously recorded footage of $his preparation for $his penance, every one carefully picked to give a good look of $his body or revealing live shots of $his body picked to show where $his sexual arousal is more evident. The first time $he sees them $he burst into tears, begging the screens to be turned off just to see $his image begging and crying a few hours later. As the week goes new clips are added showing the best scenes the camera was able to capture while on the cage. Due to $his resistance to show $his body for the cameras and the citizens passing by $he is immobilized to be kept standing, $his body conveniently positioned to get the best shots. $He tries to ignore the whole situation trying to focus on resisting the signs of $his hunger, exhaustion and arousal $he constantly feels. By the end of the week as $he remains sitting immobilize on a stool to procure a good shot a small screen is set in front of $him, the image divided in two, one half showing what the big screen projects and the other the audience and $his reactions.
 			<<elseif ($activeSlave.sexualFlaw == "repressed")>>
-				Although $he thinks $his clothes are degrading, $he seems happy to fulfill $his duty keeping $himself pure to the goddess and fighting the urge to touch $himself. At first, $he seems confident $he can manage the heavy dose of aphrodisiacs that run through $his body and tries to give no indication of the constant arousal $he suffers. An occasional shake or moan escapes $his lips for what $he seems to be deeply ashamed. As the week goes by and $his resistance reduces $his body betrays $him every time more often. $He shakes, moans and shivers with the littlest provocation, which horrify $him to no end. Little does $he know that $his dose of aphrodisiacs has being increasing every time $he is injected and are more effective now that the lack of sleep takes a toll on $his body. $He hates $himself for being unable to control the shameful things $his body demands and burst into tears when $his pelvis thrusts the minute the fringes are moved by the wind and caresses $his body or the necklace rubs on $his nipples. By the end of the week $he cannot handle it and tries to touch $himself when $he thinks no one is watching $him only to be caught right after. The shame is so big $he breaks out on tears. $He remains $his time left on penance in the bottom of the cage sobbing as $his body keeps as much of the energy it can only interrupted by the moans $he can no longer control and the shivers to run through $his body when the aphrodisiacs overwhelmed $him. 
+				Although $he thinks $his clothes are degrading, $he seems happy to fulfill $his duty keeping $himself pure to the goddess and fighting the urge to touch $himself. At first, $he seems confident $he can manage the heavy dose of aphrodisiacs that run through $his body and tries to give no indication of the constant arousal $he suffers. An occasional shake or moan escapes $his lips for what $he seems to be deeply ashamed. As the week goes by and $his resistance reduces $his body betrays $him every time more often. $He shakes, moans and shivers with the littlest provocation, which horrify $him to no end. Little does $he know that $his dose of aphrodisiacs is being increased every time $he is injected and that they are more effective now that the lack of sleep takes a toll on $his body. $He hates $himself for being unable to control the shameful things $his body demands and burst into tears when $his pelvis thrusts the minute the fringes are moved by the wind and caresses $his body or the necklace rubs on $his nipples. By the end of the week $he cannot handle it and tries to touch $himself when $he thinks no one is watching $him only to be caught right after. The shame is so big $he breaks out on tears. $He spends the rest of $his time left in penance on the bottom of the cage sobbing as $his body keeps as much of the energy it can only interrupted by the moans $he can no longer control and the shivers to run through $his body when the aphrodisiacs overwhelmed $him. 
 			<<elseif ($activeSlave.sexualFlaw == "attention whore")>> 
-				$He seems to enjoy all the attention $he receives every time $he tries to fight the impulse to touch $himself as $his body shows clear signs of arousal and takes special care in showing $his body to the audience. $He rejoices with the reactions of the citizens as they gasp and point while $he shakes and moans. The first time the tea is offered to $him $he refuses it hoping to get a reaction of $his crowd. As a way to keep $his penance according to the suffering the goddess demands after the first night is over $he is informed that due to $his good behavior $he has been granted the chance to finish $his penance in private. $He cries and begs to be left where $he is. $He is blindfolded and taken to a minuscule room nearby while cries and begs. Once inside $he is left to $himself, $his only contact with another person is the slave appointed to $his care who enters to administer the aphrodisiacs when required, when $his ration of tea is left on the room or when $he falls sleep and is required to be awake. Little does $he know the room is filled with hidden cameras which are connected to a big screen installed where $his cage was as the penance must be public. As the week goes by $he is left to deal with the hunger, the lack of sleep and the constant need to release. By the end of the week $he cannot stand up and remains on the bottom of the room, saving $his strength and sobbing. 
+				$He seems to enjoy all the attention $he receives every time $he tries to fight the impulse to touch $himself as $his body shows clear signs of arousal and takes special care in showing $his body to the audience. $He rejoices with the reactions of the citizens as they gasp and point while $he shakes and moans. The first time the tea is offered to $him $he refuses it hoping to get a reaction of $his crowd. As a way to keep $his penance according to the suffering the goddess demands after the first night is over $he is informed that due to $his good behavior $he has been granted the chance to finish $his penance in private. $He cries and begs to be left where $he is. $He is blindfolded and taken to a minuscule room nearby while cries and begs. Once inside $he is left to $himself, $his only contact with another person is the slave appointed to $his care who enters to administer the aphrodisiacs when required, when $his ration of tea is left on the room or when $he falls sleep and is required to be awake. Little does $he know the room is filled with hidden cameras which are connected to a big screen installed where $his cage was as the penance must be public. As the week goes by $he is left to deal with the hunger, the lack of sleep and the constant need to release. By the end of the week $he cannot stand up and remains on the bottom of the room, saving $his strength and sobbing.
 			<<elseif ($activeSlave.sexualFlaw == "self hating")>>
 				As week starts $he tries to fulfill $his duty, fighting the urge to touch $himself and drinking just when $he needs to, hoping that by following the rules the penance of such unworthy slave will be enough to please the goddess. As the week progresses $his resolution reduces. $He soon discovers how efficient a chastity belt could be when, once completely overpowered by $his need of release $he tries to touch $himself, fearing the wrath of the goddess for $his lack of strength. $His body shakes and twitches every time more often as the aphrodisiacs run through $his body, blaming $himself for not being able to keep control. $His pelvis thrusts every time the airs provides extra stimulation product the sexual frustration and tries to stop it by banging $his head against the cage. $He soon needs to be immobilized to avoid damage. As $he lays on the cage $he blames $himself for $his inability to fulfill $his task. The lack of food has a toll on $him too, as $he often refuses to drink thinking the dehydration is well deserved. As a result of this, it is forced to drink several times a day which seems to infuriate $him. By the end of the week $he can hardly stand up as the lack of food and sleep keeps $him weak. $He remains on the bottom of the cage being fed by another slave when it is clear $he that needs more liquid in $his body and $his hours of sleep are over.
 			<<else>>
 				At first, $he tries to fulfill $his sacrifice the best $he can, trying to maintain $himself pure for the goddess. $He submits to every instruction trying to hold as much as $his body allows $him, drinking as little as $he can and sleeping only when $he is told. Soon the aphrodisiacs make $his resolutions dilute as $he tries to touch $himself to find release. It does not take $him long to prove how efficient $his chastity belt is. $He cries and tries as much as $he can but $he is unable to cause any kind of pleasure. As time goes by $he seems to shift $his efforts on fighting to remove the chastity belt from $himself with no avail. $His body twitches and shakes every time more often as the aphrodisiacs hit $him harder every time $his dose is renewed. Later on, $he tries to please any part of $his body which is free to touch and needs to be restrained. Hunger and depravation of sleep take a toll on $his body too and tries to drink as much as possible to fool the hunger $he feels. The tea is rationed to be given only when need it and the sleep carefully monitored. By the end of the week $he remains on the bottom of $his cage trying to the little energy $he has, only interrupted by the body spasms caused by the aphrodisiacs in $his body followed by a soft moan.
 			<</if>>
 		<<else>>
-			At first, $he tries to fulfill $his sacrifice the best $he can, trying to maintain $himself pure for the goddess. $He submits to every instruction trying to hold as much as $his body allows $him, drinking as little as $he can and sleeping only when $he is told. Soon the aphrodisiacs make $his resolutions dilute as $he tries to touch $himself to find release. It does not take $him long to prove how efficient $his chastity belt is. $He cries and tries as much as $he can but $he is unable to cause any kind of pleasure. As time goes by $he seems to shift $his efforts on fighting to remove the chastity belt from $him with no avail. $His body twitches and shakes every time more often as the aphrodisiacs hit $him harder every time $his dose is renewed. Later on, $he tries to please any part of $his body which is free to touch and needs to be restrained. Hunger and depravation of sleep take a toll on $his body too and tries to drink as much as possible to fool the hunger $he feels. The tea is rationed to be given only when need it and the sleep carefully monitored. By the end of the week $he remains on the bottom of $his cage trying to the little energy $he has, only interrupted by the body spasms caused by the aphrodisiacs in $his body followed by a soft moan.
+			At first, $he tries to fulfill $his sacrifice the best $he can, trying to keep $himself pure for the goddess. $He submits to every instruction trying to hold as much as $his body allows $him, drinking as little as $he can and sleeping only when $he is told. Soon the aphrodisiacs make $his resolutions dilute as $he tries to touch $himself to find release. It does not take $him long to prove just how effective $his chastity belt is. $He cries and tries as much as $he can but $he is unable to cause any kind of pleasure. As time goes by $he seems to shift $his efforts on fighting to remove the chastity belt to no avail. $His body twitches and shakes more and more often as the aphrodisiacs hit $him harder each time $his dose is renewed. Later on, $he tries to please any part of $his body that he is able to, and so needs to be restrained. Hunger and sleep depravation take a toll on $his body, and $he tries to drink as much as possible to fool the hunger. The tea is rationed to be given only when need it and the sleep carefully monitored. By the end of the week $he remains on the bottom of $his cage trying to conserve the little energy $he has, interrupted only by the  spasms caused by the aphrodisiacs in $his body, followed by a soft moan.
 		<</if>>
+
 	<<elseif ($activeSlave.trust < -20)>> 
 		<<if ($activeSlave.sexualFlaw == "hates oral")>> 
-			$He focuses on $his need of release right away, now that $he thinks the worst part of $his penance is over as $he no longer is going to be raped in the mouth just like $he was last night. Soon discovers that is far from true when time for $his first dose of the tea does not exactly come in a tea cup. As a mean to keep $his penance accorded to the suffering the goddess demands the tea will be administered through a similar device used on dairies. A feeding phallus is quickly installed on a side of the cage. If $he wants to avoid dehydration $he will have to suck it off and only after $he does it right $he will have access to the tea. When $he realizes what is in order for $him $he starts to cry and refuses to drink at all. As the week progresses $he starts to faint every time more often as $he vehemently refuses to work for $his drink. $He starts to faint every time more often as $his body receives only the minimum amount of liquids. As a result, $he is restrained and the feeding phallus is pressed into $his mouth and down $his throat. Once situated, it begins to facefuck $him. $He gags and struggles, tears running down $his face as $he tries to scream while this is going on. After several minutes, $he stops panicking and finally starts to inhale and exhale regularly. Only after this the transparent reservoir of tea is injected. $He chucks on it but swallows desperately. As per your instructions $his feedings are synched with $his dose of aphrodisiacs which confuses $him to no end and adds to $his penance. The procedure goes on during the rest of the week several times a day. By the end of the week $he can hardly stand up as the lack of food and sleep keeps $him weak. $He remains on the bottom of the cage only interrupted by $his feedings and the body spasms $he suffers as a result of the constant arousal.
+			$He immediately focuses on $his need of release, since $he thinks the worst part of $his penance is over as $his mouth is no longer going to be raped like it was last night. Soon $he discovers that this is far from the truth when it is time for $his first dose of the tea. As a means to keep $his penance according to the suffering the goddess demands, the tea it to be administered through a similar device as is used in dairies. A feeding phallus is installed on a side of the cage, and if $he wants to avoid dehydration, $he will have to suck it off. When $he realizes what lies in store for $him $he begins to cry and refuses to drink at all. As the week progresses $he begins to faint more and more often as $he vehemently refuses to work for $his drink. As a result, $he is restrained and the feeding phallus is shoved into $his mouth and down $his throat. $He gags and struggles, tears running down $his face as $he tries and fails to scream. After several minutes, $he stops panicking and finally starts to inhale and exhale regularly. Only after this the transparent reservoir of tea is injected. $He chokes on it but swallows desperately. As per your instructions $his feedings are synched with $his dose of aphrodisiacs which confuses $him to no end and adds to $his penance. The procedure goes on during the rest of the week several times a day. By the end of the week $he can hardly stand up as the lack of food and sleep keeps $him weak. $He remains on the bottom of the cage, only interrupted by $his feedings and the spasms $he suffers as a result of the constant arousal.
 		<<elseif ($activeSlave.sexualFlaw == "shamefast")>> 
-			At first, $he tries to relieve $himself while $he tries to hide $his body. As a way to keep $his penance according to the suffering the goddess demands a big screen was set next to $his cage. After a few hours, the screen turns on and a live image of $him on the cage appears. The screen then shifts to a low shot of $his tight pussy dripping the wet product of $his arousal, showing different stats related to it. After a few minutes, the screens changes to previously recorded footage of $his naked body glistening while laying comfortably on the temazcal. After a minute, it shifts again to a close up shot of $his ass being carefully painted with blue, the camera following the movement of the brush as it moves over $his ass cheek then shifts again to a very close shot of $him being fucked the night before. The video changes over and over again showing scenes of previously recorded footage preparation for $his penance, every one carefully picked to give a good view of $his body or revealing live shots of $his body picked to show where $his sexual arousal is more evident. The first time $he sees them $he burst into tears. As the week goes new clips are added showing the best scenes of $him that the camera was able to capture while the aphrodisiacs forced $him to masturbate without success. Due $his resistance to show $his body for the cameras and the citizens passing by, $he is immobilized into standing, $his body conveniently positioned to get the best shots. $He tries to ignore the whole situation by trying to focus on ignoring the screen. As a result, a small screen is set in front of $him, the image divided in two, one half showing the big screen's projection and the other reactions of all parties. By the end of the week $he remains sitting immobilized on a stool to produce a good shivering shot.
+			At first, $he tries to relieve $himself while $he tries to hide $his body. As a way to keep $his penance according to the suffering the goddess demands a big screen is set next to $his cage. After a few hours, the screen turns on and a live image of $him on the cage appears. The screen then shifts to a low shot of $his tight pussy dripping with the wet product of $his arousal, showing different stats related to it. After a few minutes, the screens changes to previously recorded footage of $his naked body glistening while laying comfortably on the temazcal. After a minute, it shifts again to a close up shot of $his ass being carefully painted with blue, the camera following the movement of the brush as it moves over $his ass cheek then shifts again to a very close shot of $him being fucked the night before. The video changes over and over again showing scenes of previously recorded footage preparation for $his penance, every one carefully picked to give a good view of $his body or revealing live shots of $his body picked to show where $his sexual arousal is more evident. The first time $he sees them $he burst into tears. As the week goes new clips are added showing the best scenes of $him that the camera was able to capture while the aphrodisiacs forced $him to masturbate without success. Due $his resistance to show $his body for the cameras and the citizens passing by, $he is immobilized into standing, $his body conveniently positioned to get the best shots. $He tries to ignore the whole situation by trying to focus on ignoring the screen. As a result, a small screen is set in front of $him, the image divided in two, one half showing the big screen's projection and the other reactions of all parties. By the end of the week $he remains sitting immobilized on a stool to produce a good shivering shot.
 		<<elseif ($activeSlave.sexualFlaw == "repressed")>> 
 			Although $he thinks $his clothes are degrading, $he seems content to fulfill $his duty to keeping $himself pure to the goddess and fights the urge to touch $himself. At first, $he manages to control the heavy dose of aphrodisiacs that run through $his body and tries to give no indication of the constant arousal $he suffers. An occasional shake or moan escapes $his lips for which $he seems to be deeply ashamed. As the week goes by and $his resistance reduces $his body does betray $him most of the time. $He shakes, moans and shivers at the littlest provocation, which horrifies $him to no end. Little does $he know that $his dosage of aphrodisiacs has being increased every time $he is injected and are more effective now that the lack of sleep takes a toll on $his body. $He hates $himself for being unable to control the shameful things $his body demands and bursts into tears when $his pelvis thrusts the minute the fringes are moved by the wind and caresses $his body or the necklace rubs on $his nipples. By the end of the week $he cannot handle it and tries to touch $himself when the arousal becomes too much, which is often. $He seems ashamed of $his actions and often $he breaks out in tears as $he tries to masturbate. $He remains $his time left on penance in the bottom of the cage sobbing as $his body keeps as much of the energy it can only interrupted by the moans $he can no longer control and the shivers to run through $his body when the aphrodisiacs overwhelmed $him. 
 		<<elseif ($activeSlave.sexualFlaw == "attention whore")>> 
@@ -238,7 +242,7 @@
 		<</if>>
 	<</if>>
 
-	Once the penance time is over $he is carried out of the cage due to being so weak that $he cannot longer support $his own weight. After a short ceremony, $he is taken back to the penthouse to rest.
+	Once the time for penance is over, $he is carried out of the cage, as $he is too weak to support $his own weight. After a short ceremony, $he is taken back to the penthouse to rest.
 		<<if $activeSlave.inducedNCS == 1>>
 	<<elseif $activeSlave.lactation > 1>>
 		$His breasts are grotesquely bloated, super sensitive and leaking milk from a week of neglected hyper-lactation.
@@ -248,7 +252,7 @@
 		<<set $activeSlave.boobs += 200>>
 	<</if>>
 	<<set $activeSlave.health -= 20>>
-		The penance put $his body through great stress @@.red;which impacted $his health@@.
+		The penance put $his body through great stress @@.red;which impacted $his health.@@
 	<<set $currentRule.addict = 5>>
 	<<set $activeSlave.clothes = "no clothing">>
 
@@ -274,7 +278,7 @@
 					<<set $activeSlave.fetishStrength -= 2>>
 			<</if>>
 		<<else>>
-			<<set $activeSlave.devotion += 1, $activeSlave.trust += 1>>
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
 			$He now understands the importance of $his role as a pennant slave, $his commitment to you and the goddess makes $him @@.gold;trust@@ and @@.hotpink;love@@ you more.
 		<</if>>
 
@@ -286,16 +290,16 @@
 
 			<<if ($activeSlave.fetish == "submissive")>>
 					<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
-						The constant submission $he was subjected under your orders made $him @@.gold;trust@@ and @@.hotpink;love@@ you more.
+						The constant submission $he was subjected under your orders made $him @@.gold;trust@@ and @@.hotpink;love you more.@@
 					<<set $activeSlave.fetishStrength += 6>>
 			<<elseif ($activeSlave.fetish == "masochist")>>
 					<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
-						The constant abuse $he was subjected under your orders made $him @@.gold;trust@@ and @@.hotpink;love@@ you more.
+						The constant abuse $he was subjected under your orders made $him @@.gold;trust@@ and @@.hotpink;love you more.@@
 			<<elseif ($activeSlave.fetish == "cumslut")>>
 					<<set $activeSlave.fetishStrength -= 2>>
 			<<elseif ($activeSlave.fetish == "humiliation")>>
 					<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
-						The constant humiliation $he was subjected under your orders made $him @@.gold;trust@@ and @@.hotpink;love@@ you more.
+						The constant humiliation $he was subjected under your orders made $him @@.gold;trust@@ and @@.hotpink;love you more.@@
 					<<set $activeSlave.fetishStrength += 6>>
 			<<elseif ($activeSlave.fetish == "buttslut")>>
 					<<set $activeSlave.fetishStrength -= 2>>
@@ -320,14 +324,14 @@
 			<<set $activeSlave.fetishStrength -= 4>>
 		<<elseif ($activeSlave.sexualFlaw == "self hating")>>
 			<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
-				The constant depravation of food, sleep and sexual release made $him hate $himself more. As a result $he @.mediumorchid;trusts you less@@ and @@.hotpink;hates you more@@.
+				The constant depravation of food, sleep and sexual release made $him hate $himself more. As a result $he @@.mediumorchid;trusts you less@@ and @@.hotpink;hates you more@@.
 			<<set $activeSlave.fetishStrength += 7>>
 		<<elseif ($activeSlave.sexualFlaw == "repressed")>>
 			<<set $activeSlave.fetishStrength -= 2>>
-				The constant shame $he was subjected in such a public way made $him @.mediumorchid;trust you less@@ and @@.hotpink;hate you more@@.
+				The constant shame $he was subjected in such a public way made $him @@.mediumorchid;trust you less@@ and @@.hotpink;hate you more@@.
 		<<else>>
 			<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
-			The lack of food, sleep and the constant arousal with the chastity belt made $him @.mediumorchid;trust you less@@ and @@.hotpink;hate you more@@.
+			The lack of food, sleep and the constant arousal with the chastity belt made $him @@.mediumorchid;trust you less@@ and @@.hotpink;hate you more.@@
 		<</if>>
 
 	<<elseif ($activeSlave.trust < -20)>>
@@ -347,25 +351,25 @@
 			<<set $activeSlave.fetishStrength -= 5>>
 	<<elseif ($activeSlave.sexualFlaw == "repressed")>>
 			<<set $activeSlave.devotion -= 7, $activeSlave.trust -= 7>>
-				The constant shame $he was subjected in such a public way makes $him @.mediumorchid;trust you less@@ and @@.hotpink;hate you more@@.
+				The constant shame $he was subjected in such a public way makes $him @@.mediumorchid;trust you less@@ and @@.hotpink;hate you more@@.
 	<<elseif ($activeSlave.sexualFlaw == "attention whore")>>
 			<<set $activeSlave.devotion -= 7, $activeSlave.trust -= 7>>
-				$He @.mediumorchid;trust you less@@ and @@.hotpink;hate you more@@ for spoiling $his chance for attention and depriving $him of $his audience.
+				$He @@.mediumorchid;trust you less@@ and @@.hotpink;hate you more@@ for spoiling $his chance for attention and depriving $him of $his audience.
 		<<set $activeSlave.fetishStrength += 2>>
 	<<elseif ($activeSlave.sexualFlaw == "self hating")>>
 		<<set $activeSlave.devotion -= 7, $activeSlave.trust -= 7>>
-			The constant depravation of food, sleep and sexual release made $him hate $himself more. As a result $he @.mediumorchid;trust you less@@ and @@.hotpink;hate you more@@.
+			The constant depravation of food, sleep and sexual release made $him hate $himself more. As a result $he @@.mediumorchid;trust you less@@ and @@.hotpink;hate you more@@.
 		<<set $activeSlave.fetishStrength += 5>>
 	<<else>>
 	<<set $activeSlave.devotion -= 3, $activeSlave.trust -= 3>>
-		The lack of food, sleep and the constant arousal with the chastity belt made $him @.mediumorchid;trust you less@@ and @@.hotpink;hate you more@@.
+		The lack of food, sleep and the constant arousal with the chastity belt made $him @@.gold;trust you less@@ and @@.mediumorchid;hate you more@@.
 
 	<</if>>
 	<<if $arcologies[0].FSAztecRevivalist !== "unset" && $arcologies[0].FSAztecRevivalist < 100>>
 		<<set $arcologies[0].FSAztecRevivalist += 1>>
 	<</if>>
 	<<set $slavesSacrificedThisWeek = ($slavesSacrificedThisWeek || 0) + 1>>
-	*/
+	
 <<elseif $sacrificeType == "life">>
 	$He dies screaming as $his still beating heart is ripped out of $his body. <<if _activeSlaveRepSacrifice <= 0>>Nobody cares.<<elseif _activeSlaveRepSacrifice < 10>>The few spectators are suitably impressed.<<elseif _activeSlaveRepSacrifice < 100>>The small crowd appreciates your devotion to the Aztec culture.<<else>>The crowd cheers to the bloody spectacle.<</if>><<if $slaves.length > 0>> On the other hand, your remaining <<if $slaves.length == 1>>slave is<<else>>slaves are<</if>> suitably @@.gold;horrified@@.<</if>>
 	<<set $rep = Math.min(20000, $rep + _activeSlaveRepSacrifice)>>
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index 161a540b303e93907f45a8200801704321e5bfc4..262a0b11b7e260573ab54035497422e612ef79da 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -1910,6 +1910,34 @@ Setting missing global variables:
 	<<set $Role = "">>
 <</if>>
 
+/* Cybermod*/
+<<if ndef $cyberMod>>
+	<<set $cyberMod = 0>>
+<<elseif $cyberMod == 1>>
+	<<if ndef $stockpile>>
+		<<set $stockpile = {
+		basicPLimbInterface: 0,
+		advPLimbInterface: 0,
+		basicPLimb: 0,
+		advSexPLimb: 0,
+		advGracePLimb: 0,
+		advCombatPLimb: 0,
+		cyberneticPLimb: 0,
+		ocularImplant: 0,
+		cochlearImplant: 0,
+		electrolarynx: 0,
+		erectileImplant: 0
+		} >>
+	<<else>>
+		<<if ndef $stockpile.cochlearImplant>>
+			<<set $stockpile.cochlearImplant = 0>>
+		<</if>>
+		<<if ndef $stockpile.electrolarynx>>
+			<<set $stockpile.electrolarynx = 0>>
+		<</if>>
+	<</if>>
+<</if>>
+
 <<if ndef $trinkets>>
 	<<set $trinkets = []>>
 
diff --git a/src/uncategorized/peConcubineInterview.tw b/src/uncategorized/peConcubineInterview.tw
index 3b8dced857135d892a996d2fbb7c9c9cb1999862..b090e0c522e04e54915de0c80e1677b77c84e450 100644
--- a/src/uncategorized/peConcubineInterview.tw
+++ b/src/uncategorized/peConcubineInterview.tw
@@ -225,7 +225,7 @@ You receive an official communication from a popular talk show ehosted in one of
 		She's rather blunt in her responses, answering with a little too much detail; not that the audience minds.
 	<</if>>
 	The host, taken off guard, laughs in surprise and says he envies you that. He asks a follow up question that hints at her sexual preferences without coming straight out and asking how she likes it.
-	<<if $activeSlave.intelligenceImplant + $activeSlave.entertainSkill >= 100>>
+	<<if $activeSlave.intelligence + $activeSlave.intelligenceImplant + Math.floor($activeSlave.entertainSkill/50) >= 3 && $activeSlave.tankBaby == 0>>
 		She has enough knowledge of the old world to be able to answer without going too far, and @@.green;subtly alludes@@ to how much she enjoys
 		<<if ($activeSlave.fetish == "submissive")>>
 			submitting to you in bed.
@@ -262,7 +262,7 @@ You receive an official communication from a popular talk show ehosted in one of
 		<</if>>
 		<<set $rep += 100>>
 	<<else>>
-		Her answer betrays how much she's forgotten about the old world: she mildly shocks the studio audience by describing
+		Her answer betrays how <<if $activeSlave.tankBaby > 0>>little she knows<</if>>much she's forgotten<</if>> about the old world: she mildly shocks the studio audience by describing
 		<<if ($activeSlave.fetish == "submissive")>>
 			how good it feels when you hold her down and fuck her
 		<<elseif ($activeSlave.fetish == "cumslut")>>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index 061e11605e58427e758decfc126f61502d62cec3..ba13882e91dc2afaab19e4b6c0d150adfc4732e9 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -4120,8 +4120,10 @@
 				<<set _boobTarget = 5000>>
 			<<elseif $slaves[$i].pregType >= 10>>
 				<<set _boobTarget = 2000>>
-			<<else>>
+			<<elseif $slaves[$i].pregType >= 2>>
 				<<set _boobTarget = 1000>>
+			<<else>>
+				<<set _boobTarget = 800>>
 			<</if>>
 		<<elseif $slaves[$i].physicalAge >= 13>>
 			<<if $slaves[$i].pregType >= 50>>
@@ -4130,8 +4132,10 @@
 				<<set _boobTarget = 3200>>
 			<<elseif $slaves[$i].pregType >= 10>>
 				<<set _boobTarget = 1800>>
+			<<elseif $slaves[$i].pregType >= 2>>
+				<<set _boobTarget = 1000>>
 			<<else>>
-				<<set _boobTarget = 800>>
+				<<set _boobTarget = 700>>
 			<</if>>
 		<<elseif $slaves[$i].physicalAge >= 8>>
 			<<if $slaves[$i].pregType >= 50>>
@@ -4140,6 +4144,8 @@
 				<<set _boobTarget = 1400>>
 			<<elseif $slaves[$i].pregType >= 10>>
 				<<set _boobTarget = 1000>>
+			<<elseif $slaves[$i].pregType >= 2>>
+				<<set _boobTarget = 800>>
 			<<else>>
 				<<set _boobTarget = 600>>
 			<</if>>
@@ -4163,7 +4169,7 @@
 				<<if (random(1,100) > 60)>>
 					<<if (($slaves[$i].boobs - $slaves[$i].boobsImplant) < _boobTarget)>>
 						$His breasts @@.lime;greatly swell@@ to meet the upcoming demand.
-						<<set $slaves[$i].boobs += 200>>
+						<<set $slaves[$i].boobs += 100>>
 						<<if $slaves[$i].boobShape != "saggy" && $slaves[$i].preg > 32 && ($slaves[$i].breastMesh != 1) && ($slaves[$i].drugs != "sag-B-gone")>>
 							$His immensely engorged @@.orange;breasts become saggy@@ in the last stages of $his pregnancy as $his body undergoes changes in anticipation of the forthcoming birth.
 							<<set $slaves[$i].boobShape = "saggy">>
@@ -4181,7 +4187,7 @@
 			<<elseif ($slaves[$i].pregType >= 10)>>
 				<<if random(1,100) > 80 && (($slaves[$i].boobs - $slaves[$i].boobsImplant) < _boobTarget)>>
 					$His breasts @@.lime;swell@@ in preparation for $his growing brood.
-					<<set $slaves[$i].boobs += 100>>
+					<<set $slaves[$i].boobs += 50>>
 					<<if $slaves[$i].boobShape != "saggy" && ($slaves[$i].breastMesh != 1) && ($slaves[$i].drugs != "sag-B-gone")>>
 						<<if $slaves[$i].preg > random(32,82)>>
 							$His swollen @@.orange;breasts become saggy@@ in the last stages of $his pregnancy as $his body undergoes changes in anticipation of the forthcoming birth.
@@ -4192,7 +4198,7 @@
 			<<elseif ($slaves[$i].boobs - $slaves[$i].boobsImplant) < _boobTarget>>
 				<<if random(1,100) > 80>>
 					Pregnancy @@.lime;causes $his breasts to swell somewhat.@@
-					<<set $slaves[$i].boobs += 50>>
+					<<set $slaves[$i].boobs += 25>>
 					<<if $slaves[$i].boobShape != "saggy" && $slaves[$i].preg > random(32,100) && ($slaves[$i].breastMesh != 1) && ($slaves[$i].drugs != "sag-B-gone")>>
 						$His @@.orange;breasts become saggy@@ in the last stages of $his pregnancy as $his body undergoes changes in anticipation of the forthcoming birth.
 						<<set $slaves[$i].boobShape = "saggy">>
diff --git a/src/uncategorized/seNicaeaPreperation.tw b/src/uncategorized/seNicaeaPreperation.tw
index 64469f771574de0a394e88954e89a913870493ee..fcf445365b31346b8fbc8994efebd18bd3afdc14 100644
--- a/src/uncategorized/seNicaeaPreperation.tw
+++ b/src/uncategorized/seNicaeaPreperation.tw
@@ -62,7 +62,7 @@ Finally, you could use money to influence the Council. Everyone who's likely to
 	The Council doesn't need the distraction of a lot of less important people enjoying themselves loudly nearby, so you decide not to broaden the event.
 	<</replace>>
 <</link>>
-<br><<link "Leverage reputation into power">>
+<br><<link "Host a festival to coincide with their arrival">>
 	<<replace "#result3">>
 	Good works will spread the joy of a Chattel Religionist revival, and make you even more influential with the Council. You plan a public festival as part of the event.
 	<<set $cash -= 50000, $nicaeaInfluence += 1>>
diff --git a/src/uncategorized/shops.tw b/src/uncategorized/shops.tw
index ee6ee08fd7cc5a67b265a425551f9309971e7a4d..6baa2160a7973b18b641fe5d77983c0c59886cd3 100644
--- a/src/uncategorized/shops.tw
+++ b/src/uncategorized/shops.tw
@@ -50,7 +50,7 @@ This is a section of the promenade
 	<span id="result"><<link "Leg day">><<replace "#result">>It's all very positive, and the one unspoken rule is not to disparage others, but there's definitely competition. So when you step forward and get a complimentary day pass from one of the bubbly, permed slavegirl receptionists, you have an audience. What kind of definition you've got in your quads is going to be a subject of conversation today, but you've got confidence. You lift, and receive respectful complements and bro-fists. Then you take your turn spotting others, an honor your citizens greatly appreciate.<</replace>><</link>></span>
 <<case "Chattel Religionist">>
 	dedicated to Chattel Religionism. The stores offer all the items useful to a slaveowner who holds the new faith: proper slave restraints and penitent slave garments, of course, but also fine oils and incense, candles, tapers, and other devotional necessities. There are also correctional convents for the assistance of citizens with wayward slaves.
-	<span id="result"><<link "Visit the convents">><<replace "#result">>As a leader of the new faith, your visitation rights on these convents are unquestioned, and their owners are indeed eager to have you look around and offer your revered advice. The average citizen with only a slave or two often needs help keeping girls within the faith. The convents are severe houses of correction, and the sounds of prayer and penitence are omnipresent. In one nave, a slave prostrates herself before a religious icon, praying in a loud, desperate tone while <<if $seeDicks < 100>>a futanari in nun's attire<<else>>a man in monk's attire<</if>> fucks her mercilessly from behind.<</replace>><</link>></span>
+	<span id="result"><<link "Visit the convents">><<replace "#result">>As a leader of the new faith, your visitation rights on these convents are unquestioned, and their owners are indeed eager to have you look around and offer your revered advice. The average citizen with only a slave or two often needs help keeping girls within the faith. The convents are severe houses of correction, and the sounds of prayer and penitence are omnipresent. In one nave, a slave prostrates herself before a religious icon, praying in a loud, desperate tone while <<if $seeDicks == 0>>a woman in nun's attire holding a ribbed vibrating dildo<<elseif $seeDicks < 100>>futanari in nun's attire<<else>>a man in monk's attire<</if>> fucks her mercilessly from behind.<</replace>><</link>></span>
 <<case "Roman Revivalist">>
 	dedicated to Roman Revivalism. Since the forums are out on the arcology's plazas, there are fewer stores here. There are eateries, from which the sharp smell of //garum// is distinctly identifiable, but most of the space is occupied by hypocaust baths, which are free to enter but include various concession stands run by slaves.
 	<span id="result"><<link "Clean yourself">><<replace "#result">>A good Roman trip to the baths serves to cleanse, but it's a social experience, too. After being oiled down by a skilled slave, you work out in the proper nude, and then have the oil and any dirt scraped off your skin with by another slave. Then you make your way across the heated floor through a set of baths of varying temperatures, ending in a large and egalitarian space where many naked citizens of the new Rome are sharing the news of the day. You're welcomed with surprise, but also with comradeship, and made to feel welcome.<</replace>><</link>></span>
@@ -106,156 +106,156 @@ This is a section of the promenade
 	<<if $FSPromenade.Subjugationist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Subjugationist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.Subjugationist = 1, $sectors[$AS].type = "Subjugationist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSSupremacist != "unset">>
 	<<if $FSPromenade.Supremacist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Supremacist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.Supremacist = 1, $sectors[$AS].type = "Supremacist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSGenderRadicalist != "unset">>
 	<<if $FSPromenade.GenderRadicalist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Gender Radicalist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.GenderRadicalist = 1, $sectors[$AS].type = "Gender Radicalist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
 	<<if $FSPromenade.GenderFundamentalist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Gender Fundamentalist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.GenderFundamentalist = 1, $sectors[$AS].type = "Gender Fundamentalist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSPaternalist != "unset">>
 	<<if $FSPromenade.Paternalist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Paternalist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.Paternalist = 1, $sectors[$AS].type = "Paternalist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSDegradationist != "unset">>
 	<<if $FSPromenade.Degradationist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Degradationist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.Degradationist = 1, $sectors[$AS].type = "Degradationist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSBodyPurist != "unset">>
 	<<if $FSPromenade.BodyPurist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Body Purist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.BodyPurist = 1, $sectors[$AS].type = "Body Purist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSTransformationFetishist != "unset">>
 	<<if $FSPromenade.TransformationFetishist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Transformation Fetishist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.TransformationFetishist = 1, $sectors[$AS].type = "Transformation Fetishist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSYouthPreferentialist != "unset">>
 	<<if $FSPromenade.YouthPreferentialist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Youth Preferentialist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.YouthPreferentialist = 1, $sectors[$AS].type = "Youth Preferentialist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
 	<<if $FSPromenade.MaturityPreferentialist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Maturity Preferentialist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.MaturityPreferentialist = 1, $sectors[$AS].type = "Maturity Preferentialist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSSlimnessEnthusiast != "unset">>
 	<<if $FSPromenade.SlimnessEnthusiast == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Slimness Enthusiast establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.SlimnessEnthusiast = 1, $sectors[$AS].type = "Slimness Enthusiast"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSAssetExpansionist != "unset">>
 	<<if $FSPromenade.AssetExpansionist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Asset Expansionist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.AssetExpansionist = 1, $sectors[$AS].type = "Asset Expansionist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSPastoralist != "unset">>
 	<<if $FSPromenade.Pastoralist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Pastoralist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.Pastoralist = 1, $sectors[$AS].type = "Pastoralist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSPhysicalIdealist != "unset">>
 	<<if $FSPromenade.PhysicalIdealist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Physical Idealist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.PhysicalIdealist = 1, $sectors[$AS].type = "Physical Idealist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
 	<<if $FSPromenade.Hedonism == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Hedonistic establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.Hedonism = 1, $sectors[$AS].type = "Hedonism"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSRepopulationFocus != "unset">>
 	<<if $FSPromenade.Repopulationist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Repopulationist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.Repopulationist = 1, $sectors[$AS].type = "Repopulationist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSRestart != "unset">>
 	<<if $FSPromenade.Eugenics == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Eugenics establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.Eugenics = 1, $sectors[$AS].type = "Eugenics"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSChattelReligionist != "unset">>
 	<<if $FSPromenade.ChattelReligionist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Chattel Religionist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.ChattelReligionist = 1, $sectors[$AS].type = "Chattel Religionist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSRomanRevivalist != "unset">>
 	<<if $FSPromenade.RomanRevivalist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Roman Revivalist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.RomanRevivalist = 1, $sectors[$AS].type = "Roman Revivalist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSAztecRevivalist != "unset">>
 	<<if $FSPromenade.AztecRevivalist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Aztec Revivalist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.AztecRevivalist = 1, $sectors[$AS].type = "Aztec Revivalist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
 	<<if $FSPromenade.EgyptianRevivalist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Egyptian Revivalist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.EgyptianRevivalist = 1, $sectors[$AS].type = "Egyptian Revivalist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSEdoRevivalist != "unset">>
 	<<if $FSPromenade.EdoRevivalist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Edo Revivalist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.EdoRevivalist = 1, $sectors[$AS].type = "Edo Revivalist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSArabianRevivalist != "unset">>
 	<<if $FSPromenade.ArabianRevivalist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Arabian Revivalist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.ArabianRevivalist = 1, $sectors[$AS].type = "Arabian Revivalist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<elseif $arcologies[0].FSChineseRevivalist != "unset">>
 	<<if $FSPromenade.ChineseRevivalist == 0>>
 		<br>
 		[[Upgrade this sector to appeal to Chinese Revivalist establishments|Main][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $FSPromenade.ChineseRevivalist = 1, $sectors[$AS].type = "Chinese Revivalist"]]
-		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//	
+		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <</if>>
 <<if $sectors[$AS].type != "Shops">>