diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 4e914d2e7505f63cc00cbf013b0d3029e66fc97b..46d233b8734cc51ad992443749e7d5830d193b57 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -2,6 +2,15 @@
 
 0.10.7.1-0.6.x
 
+8/21/2018
+
+	8
+	-slightly adjusted pregnancy breast growth rates
+	-laranx impland 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 51919dcc5aeb5018bb40b8bcab7ec68fde3c92c2..c5b101a4aa919d9240adae0008197043b0d27cfe 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",
@@ -11926,6 +11929,7 @@ window.DefaultRules = (function() {
 		ProcessPiercings(slave, rule);
 		ProcessSmartPiercings(slave, rule);
 		ProcessTattoos(slave, rule);
+		ProcessPornFeedEnabled(slave, rule);
 		ProcessPorn(slave, rule);
 		ProcessLabel(slave, rule);
 		return r;
@@ -14112,6 +14116,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)) {
@@ -15098,8 +15114,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());
+			}
 		}
 	}
 	
@@ -16071,6 +16089,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/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 cae427c5d7fba99a9f1ba03e294ffdf57d4ffac6..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 === 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>
+	<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>