diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index a62362f403edfc5689de3c5af60d49d0b26f9cce..8b89eddc9cbc477d849803c59a97e13f9ae2dc62 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -2,10 +2,19 @@
 
 0.10.7.0/1
 
+2/20/18
+
+	362
+	-added .pregWeek to the advanced cheat edit slave
+	-added slow gestation feedback to PregnancyDescription
+	-added labor suppressant feedback to PregnancyDescription
+	-added speed gestation feedback to PregnancyDescription.
+	BellyDescription may need additions as well for the trio.
+
 2/19/18
 
 	361
-	-revised nicknames to favor nationality based ones bfore others
+	-revised fertility goddess nicknames to favor nationality based ones before others
 
 	360
 	-added fertility goddess nickname type (needs more nicknames)
diff --git a/src/SecExp/rebellionReport.tw b/src/SecExp/rebellionReport.tw
index 8fc720bbfb172d4b4cf04660521ca6a666b01f2d..6cf4a24dcef7fc59a2c8112c1ed0b90a5c01ff88 100644
--- a/src/SecExp/rebellionReport.tw
+++ b/src/SecExp/rebellionReport.tw
@@ -83,7 +83,7 @@
 <hr>
 
 <<if $slaveRebellion == 1>>
-	Today, the _day of _month _year, our arcology was inflamed by the fires of rebellion. <<print commaNum(Math.trunc($attackTroops))>> rebels from all over the structure dared rise up against their owners and conquer their freedom through blood. Our defense force, <<print commaNum($troopCount)>> strong, fought with them street by street
+	Today, the _day of _month _year, our arcology was inflamed by the fires of rebellion. <<print commaNum(Math.trunc($attackTroops))>> rebels from all over the structure dared rise up against their owners and conquer their freedom through blood. Our defense force, <<print commaNum(Math.trunc($troopCount))>> strong, fought with them street by street
 	<<if $enemyLosses != $attackTroops>>
 		inflicting <<print commaNum(Math.trunc($enemyLosses))>> casualties, while sustaining <<if $losses > 1>> <<print commaNum(Math.trunc($losses))>> casualties <<else>> a casualty<</if>> themselves.
 	<<else>>
diff --git a/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw b/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw
index 4c046021e01fe0486d6be010fb50cb5fdd12b16f..2cc4866ed34f0522fb4f756429cd4a1ae6f0b934 100644
--- a/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw
+++ b/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw
@@ -66,6 +66,7 @@
 <<set $tempSlave.vaginaLube = Number($tempSlave.vaginaLube) || 0>>
 <<set $tempSlave.pubertyAgeXX = Number($tempSlave.pubertyAgeXX) || 13>>
 <<set $tempSlave.preg = Number($tempSlave.preg) || 0>>
+<<set $tempSlave.pregWeek = Number($tempSlave.pregWeek) || 0>>
 <<set $tempSlave.pregType = Number($tempSlave.pregType) || 0>>
 <<set $tempSlave.pregSource = Number($tempSlave.pregSource) || 0>>
 <<if $tempSlave.preg < 0>>
diff --git a/src/cheats/mod_editSlaveCheatNew.tw b/src/cheats/mod_editSlaveCheatNew.tw
index 63f281af6f6692f33ea312e2b6b985e22c089d58..76105b5f5248b929736e897466927be4f17202a9 100644
--- a/src/cheats/mod_editSlaveCheatNew.tw
+++ b/src/cheats/mod_editSlaveCheatNew.tw
@@ -1819,6 +1819,10 @@
 	@@.yellow;Sterile@@.
 	<</if>>
 	<<textbox "$tempSlave.preg" $tempSlave.preg>>
+	
+	<br>
+	''Pregnancy Week (Literal number of weeks pregnant):''
+	<<textbox "$tempSlave.pregWeek" $tempSlave.pregWeek>>
 
 	<br>
 	''Number of babies (0: none, 1 - 5):''
diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw
index cc646203e62256de7978442fb562b6a776b3adcf..c6644a15160af15a4ac204c339a4cbc825b8f92b 100644
--- a/src/events/intro/introSummary.tw
+++ b/src/events/intro/introSummary.tw
@@ -465,7 +465,7 @@ __''Player Character''__
 	<<link "Add a surname">>
 		<<set $PC.surname = 1>>
 		<<goto "Intro Summary">>
-	<</link>> //Surnames cannot be changed during the game outisde of special circumstances//
+	<</link>> //Surnames cannot be changed during the game outside of special circumstances.//
 	<</if>>
 
 	<<if $PC.surname != 0>>
@@ -474,7 +474,6 @@ __''Player Character''__
 		<<goto "Intro Summary">>
 	<</link>>
 	<</if>>
-	.
 
 	<br>
 	You are <<textbox "$PC.actualAge" $PC.actualAge "Intro Summary">> years old which is 
diff --git a/src/uncategorized/slaveAssignmentsReport.tw b/src/uncategorized/slaveAssignmentsReport.tw
index d247417e87ab0142e207f7e992804946e5abe608..90761e505c7866270c6c54b62cfb5a7c6eefec02 100644
--- a/src/uncategorized/slaveAssignmentsReport.tw
+++ b/src/uncategorized/slaveAssignmentsReport.tw
@@ -318,8 +318,8 @@
 <</if>>
 /* preg speed control changes*/
 <<if $slaves[$i].preg > 0>>
-	<<if $slaves[$i].pregWeek <= 0 || $slaves[$i].pregWeek > $slaves[$i].preg>> /* at .preg = 1, .pregWeek should be 1 also */
-		<<set $slaves[$i].pregWeek = $slaves[$i].preg>>
+	<<if $slaves[$i].pregWeek <= 0>> /* at .preg = 1, .pregWeek should be 1 also */
+		<<set $slaves[$i].pregWeek = 1>>
 	<<else>>
 		<<set $slaves[$i].pregWeek++>>
 	<</if>>
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index 98b14b42d9933b49da201a460a596a37df5ba852..ee4e530b1de15b404eeb1c27fdbfb1b559b18b59 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -8019,23 +8019,126 @@ $pronounCap has
 	//WIP//
 <<elseif $activeSlave.bellyPreg >= 750000>>
 	$pronounCap is @@.red;on the brink of bursting!@@ $possessiveCap belly is painfully stretched and $possessive womb packed to capacity; the slightest provocation could cause $object to rupture.
+	<<if $activeSlave.preg >= 55>>
+		$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+	<<elseif $activeSlave.preg >= 50>>
+		$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+	<<elseif $activeSlave.preg >= 43>>
+		$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+	<</if>>
 <<elseif $activeSlave.bellyImplant >= 750000>>
 	$pronounCap looks @@.red;ready to pop!@@ $pronounCap stomach is painfully stretched by $possessive straining <<print $activeSlave.bellyImplant>>cc belly implant. It is well past it's recommended capacity and at risk of rupturing.
 <<elseif $activeSlave.bellyPreg >= 600000>>
-	$pronounCap is @@.pink;dangerously pregnant,@@ $possessive overburdened womb is filled with $activeSlave.pregType babies.
+	$pronounCap is @@.pink;dangerously pregnant,@@ $possessive overburdened womb is filled with
+	<<if $activeSlave.preg >= 55>>
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+	<<elseif $activeSlave.preg >= 50>>
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+	<<elseif $activeSlave.preg >= 43>>
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+	<<else>>
+		$activeSlave.pregType babies.
+	<</if>>
 <<elseif $activeSlave.bellyImplant >= 600000>>
 	$pronounCap looks @@.pink;dangerously pregnant.@@ $pronounCap stomach is massively stretched by $possessive absurdly overfilled <<print $activeSlave.bellyImplant>>cc belly implant.
 <<elseif $activeSlave.bellyPreg >= 450000>>
-	$pronounCap is @@.pink;grotesquely pregnant,@@ $possessive womb is packed with $activeSlave.pregType babies.
+	$pronounCap is @@.pink;grotesquely pregnant,@@ $possessive womb is packed with 
+	<<if $activeSlave.preg >= 55>>
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+	<<elseif $activeSlave.preg >= 50>>
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+	<<elseif $activeSlave.preg >= 43>>
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+	<<else>>
+		$activeSlave.pregType babies.
+	<</if>>
 <<elseif $activeSlave.bellyImplant >= 450000>>
 	$pronounCap looks @@.pink;absurdly pregnant.@@ $pronounCap stomach is massively stretched by $possessive overfilled <<print $activeSlave.bellyImplant>>cc belly implant.
 <<elseif $activeSlave.bellyPreg >= 300000>>
-	$pronounCap is @@.pink;absurdly pregnant@@ with $activeSlave.pregType children.
+	$pronounCap is @@.pink;absurdly pregnant@@ with 
+	<<if $activeSlave.preg >= 55>>
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+	<<elseif $activeSlave.preg >= 50>>
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+	<<elseif $activeSlave.preg >= 43>>
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+	<<else>>
+		$activeSlave.pregType children.
+	<</if>>
 <<elseif $activeSlave.bellyImplant >= 300000>>
 	$pronounCap looks @@.pink;absurdly pregnant.@@ $pronounCap overburdened middle is filled by $possessive <<print $activeSlave.bellyImplant>>cc belly implant.
 <<elseif $activeSlave.bellyPreg >= 120000>>
 	$pronounCap is
-	<<if $activeSlave.pregType > 9>>
+	<<if $activeSlave.preg >= 55>>
+		@@.pink;obscenely pregnant@@ with
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+	<<elseif $activeSlave.preg >= 50>>
+		@@.pink;obscenely pregnant@@ with
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+	<<elseif $activeSlave.preg >= 43>>
+		@@.pink;obscenely pregnant@@ with
+		<<if $activeSlave.pregType == 1>>
+			a single overgrown baby.
+		<<else>>
+			$activeSlave.pregType overgrown babies.
+		<</if>>
+		$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+	<<elseif $activeSlave.pregType > 9>>
 		@@.pink;obscenely pregnant@@ with
 		<<if $activeSlave.pregType >= 50>>
 			an absurd number of children.
@@ -8057,7 +8160,31 @@ $pronounCap has
 <<elseif $activeSlave.bellyPreg >= 15000>>
 	$pronounCap is
 	<<if $activeSlave.bellyPreg >= 105000>>
-		<<if $activeSlave.pregType > 8>>
+		<<if $activeSlave.preg >= 55>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 50>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 43>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.pregType > 8>>
 			@@.pink;massively pregnant@@ with
 			<<if $activeSlave.pregType >= 50>>
 				an absurd number of children.
@@ -8077,7 +8204,31 @@ $pronounCap has
 			<</if>>
 		<</if>>
 	<<elseif $activeSlave.bellyPreg >= 90000>>
-		<<if $activeSlave.pregType > 7>>
+		<<if $activeSlave.preg >= 55>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 50>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 43>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.pregType > 7>>
 			@@.pink;massively pregnant@@ with
 			<<if $activeSlave.pregType >= 50>>
 				an absurd number of children.
@@ -8099,7 +8250,31 @@ $pronounCap has
 			<</if>>
 		<</if>>
 	<<elseif $activeSlave.bellyPreg >= 75000>>
-		<<if $activeSlave.pregType > 6>>
+		<<if $activeSlave.preg >= 55>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 50>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 43>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.pregType > 6>>
 			@@.pink;massively pregnant@@ with
 			<<if $activeSlave.pregType >= 50>>
 				an absurd number of children.
@@ -8123,7 +8298,31 @@ $pronounCap has
 			<</if>>
 		<</if>>
 	<<elseif $activeSlave.bellyPreg >= 60000>>
-		<<if $activeSlave.pregType > 5>>
+		<<if $activeSlave.preg >= 55>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 50>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 43>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.pregType > 5>>
 			@@.pink;massively pregnant@@ with
 			<<if $activeSlave.pregType >= 50>>
 				an absurd number of children.
@@ -8149,7 +8348,31 @@ $pronounCap has
 			<</if>>
 		<</if>>
 	<<elseif $activeSlave.bellyPreg >= 45000>>
-		<<if $activeSlave.pregType > 4>>
+		<<if $activeSlave.preg >= 55>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 50>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 43>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.pregType > 4>>
 			@@.pink;massively pregnant@@ with
 			<<if $activeSlave.pregType >= 50>>
 				an absurd number of children.
@@ -8177,7 +8400,31 @@ $pronounCap has
 			<</if>>
 		<</if>>
 	<<elseif $activeSlave.bellyPreg >= 30000>>
-		<<if $activeSlave.pregType > 3>>
+		<<if $activeSlave.preg >= 55>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 50>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 43>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.pregType > 3>>
 			@@.pink;massively pregnant@@ with
 			<<if $activeSlave.pregType >= 50>>
 				an absurd number of children.
@@ -8207,7 +8454,31 @@ $pronounCap has
 			<</if>>
 		<</if>>
 	<<else>>
-		<<if $activeSlave.pregType > 2>>
+		<<if $activeSlave.preg >= 55>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is horrifically overdue; $pronoun should have given birth a staggering <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 50>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is extremely overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.preg >= 43>>
+			@@.pink;massively pregnant@@ with
+			<<if $activeSlave.pregType == 1>>
+				a single overgrown baby.
+			<<else>>
+				$activeSlave.pregType overgrown babies.
+			<</if>>
+			$pronounCap is very overdue; $pronoun should have given birth <<print ($activeSlave.preg-40)>> weeks ago.
+		<<elseif $activeSlave.pregType > 2>>
 			@@.pink;massively pregnant@@ with
 			<<if $activeSlave.pregType >= 50>>
 				an absurd number of children.
@@ -8366,6 +8637,71 @@ $pronounCap has
 <<elseif $activeSlave.preg > 0 && $activeSlave.pregKnown == 0>>
 	$possessiveCap period is late.
 <</if>>
+<<if $activeSlave.preg+5 <= $activeSlave.pregWeek && $activeSlave.preg <= 42 && $activeSlave.bellyPreg >= 100>>
+	Despite being pregnant for $activeSlave.pregWeek weeks,
+	<<if $activeSlave.preg > 35 && $activeSlave.preg+10 <= $activeSlave.pregWeek>>
+		$possessive pregnancy is finally nearing its end.
+	<<elseif $activeSlave.preg+40 <= $activeSlave.pregWeek>>
+		<<if $activeSlave.preg == $activeSlave.pregWeek/2>>
+			$pronoun could shockingly pass for a girl half as far along.
+		<<elseif $activeSlave.preg == $activeSlave.pregWeek/4>>
+			$pronoun could shockingly pass for a girl only a quarter as far along.
+		<<else>>
+			$pronoun shockingly only looks like a girl on her $activeSlave.preg week of pregnancy.
+		<</if>>
+	<<elseif $activeSlave.preg+20 <= $activeSlave.pregWeek>>
+		<<if $activeSlave.preg == $activeSlave.pregWeek/2>>
+			$pronoun could surprisingly pass for a girl half as far along.
+		<<elseif $activeSlave.preg == $activeSlave.pregWeek/4>>
+			$pronoun could surprisingly pass for a girl only a quarter as far along.
+		<<else>>
+			$pronoun surprisingly only looks like a girl on her $activeSlave.preg week of pregnancy.
+		<</if>>
+	<<elseif $activeSlave.preg+10 <= $activeSlave.pregWeek>>
+		<<if $activeSlave.preg == $activeSlave.pregWeek/2>>
+			$pronoun could pass for a girl half as far along.
+		<<elseif $activeSlave.preg == $activeSlave.pregWeek/4>>
+			$pronoun could pass for a girl only a quarter as far along.
+		<<else>>
+			$pronoun only looks like a woman on her $activeSlave.preg week of pregnancy.
+		<</if>>
+	<<else>>
+		$possessive pregnancy is smaller than anticipated.
+	<</if>>
+<<elseif $activeSlave.preg > $activeSlave.pregWeek && $activeSlave.preg <= 42 && $activeSlave.bellyPreg >= 100>>
+	<<if $activeSlave.preg > 35 && $activeSlave.preg >= $activeSlave.pregWeek+10>>
+		Even though $pronoun is a mere $activeSlave.pregWeek weeks along, $possessive pregnancy is at its end.
+	<<elseif $activeSlave.preg >= $activeSlave.pregWeek+15>>
+		Despite being pregnant for only $activeSlave.pregWeek weeks, 
+		<<if $activeSlave.preg == $activeSlave.pregWeek*2>>
+			$pronoun could shockingly pass for a girl twice as far along.
+		<<elseif $activeSlave.preg == $activeSlave.pregWeek*4>>
+			$pronoun could shockingly pass for a girl nearly four times as far along.
+		<<else>>
+			$pronoun shockingly looks like a girl on her $activeSlave.preg week of pregnancy.
+		<</if>>
+	<<elseif $activeSlave.preg >= $activeSlave.pregWeek+10>>
+		Despite being pregnant for only $activeSlave.pregWeek weeks, 
+		<<if $activeSlave.preg == $activeSlave.pregWeek*2>>
+			$pronoun could surprisingly pass for a girl twice as far along.
+		<<elseif $activeSlave.preg == $activeSlave.pregWeek*4>>
+			$pronoun could surprisingly pass for a girl nearly four times as far along.
+		<<else>>
+			$pronoun surprisingly looks like a girl on her $activeSlave.preg week of pregnancy.
+		<</if>>
+	<<elseif $activeSlave.preg >= $activeSlave.pregWeek+5>>
+		Despite being pregnant for only $activeSlave.pregWeek weeks, 
+		<<if $activeSlave.preg == $activeSlave.pregWeek*2>>
+			$pronoun could pass for a girl twice as far along.
+		<<elseif $activeSlave.preg == $activeSlave.pregWeek*4>>
+			$pronoun could pass for a girl nearly four times as far along.
+		<<else>>
+			$pronoun looks like a woman on her $activeSlave.preg week of pregnancy.
+		<</if>>
+	<<else>>
+		Despite being pregnant for only $activeSlave.pregWeek weeks, $possessive pregnancy is larger than anticipated.
+	<</if>>
+<</if>>
 <<if $activeSlave.pregKnown == 1 && $saleDescription == 0>>
 	<<if $activeSlave.preg > 5>>
 		<<if $activeSlave.pregSource == -1>>