diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js
index 380f413d05c185193bdff48ead7e85a945c74784..9a5b1260e3bd2fe29a28f7cfd414f18d2f9846c7 100644
--- a/js/003-data/gameVariableData.js
+++ b/js/003-data/gameVariableData.js
@@ -687,6 +687,9 @@ App.Data.resetOnNGPlus = {
 	incubatorMusclesSetting: 0,
 	incubatorGrowthStimsSetting: 0,
 	incubatorReproductionSetting: 0,
+	incubatorPregAdaptationSetting: 0,
+	incubatorPregAdaptationPower: 0,
+
 	incubatorName: "the Incubator",
 	incubatorNameCaps: "The Incubator",
 	reservedChildren: 0,
@@ -1360,10 +1363,11 @@ App.Data.resetOnNGPlus = {
 	prosthetics: {},
 
 	merchantFSWares: ["AssetExpansionistResearch", "GenderRadicalistResearch", "HedonisticDecadenceResearch", "SlaveProfessionalismResearch", "SlimnessEnthusiastResearch", "TransformationFetishistResearch", "YouthPreferentialistResearch"],
-	merchantIllegalWares: ["asexualReproduction", "childhoodFertilityInducedNCS", "PGHack", "RapidCellGrowthFormula", "sympatheticOvaries", "UterineRestraintMesh"], /* "AnimalOrgans" for future use */
+	merchantIllegalWares: ["asexualReproduction", "childhoodFertilityInducedNCS", "PGHack", "RapidCellGrowthFormula", "sympatheticOvaries", "UterineRestraintMesh", "BlackmarketPregAdaptation"], /* "AnimalOrgans" for future use */
 	RapidCellGrowthFormula: 0,
 	UterineRestraintMesh: 0,
 	PGHack: 0,
+	BlackmarketPregAdaptation: 0,
 
 	diversePronouns: 0,
 
diff --git a/src/data/backwardsCompatibility/backwardsCompatibility.js b/src/data/backwardsCompatibility/backwardsCompatibility.js
index acf42d2833dcbc1b4c3f812553d01d4e318929c5..e200a64b69296b5ef5d92fa38b96626a4e151751 100644
--- a/src/data/backwardsCompatibility/backwardsCompatibility.js
+++ b/src/data/backwardsCompatibility/backwardsCompatibility.js
@@ -284,6 +284,7 @@ App.Update.globalVariables = function(node) {
 			V.merchantIllegalWares.push("PGHack");
 			V.merchantIllegalWares.push("sympatheticOvaries");
 			V.merchantIllegalWares.push("asexualReproduction");
+			V.merchantIllegalWares.push("BlackmarketPregAdaptation");
 		}
 		if (typeof V.arcologies[0].childhoodFertilityInducedNCSResearch === "undefined") {
 			V.arcologies[0].childhoodFertilityInducedNCSResearch = 0;
diff --git a/src/interaction/slaveInteract.js b/src/interaction/slaveInteract.js
index fdb852f7b371e3522d368c5028130a98fb53fbbb..3fe0d35db82fd4bb217fd0ea46e000ce89d05365 100644
--- a/src/interaction/slaveInteract.js
+++ b/src/interaction/slaveInteract.js
@@ -953,6 +953,18 @@ App.UI.SlaveInteract.fertility = function(slave) {
 	let fertilityblock = document.createElement('span');
 	let link = document.createElement('div');
 	link.className = "choices";
+	if (V.pregnancyMonitoringUpgrade === 1) {
+		fertilityblock.append(document.createElement('br'));
+		let fullscantext = document.createElement('span');
+		fullscantext.textContent = "Full scan of abdomen and reproductive organs";
+		fullscantext.style.textDecoration = "underline";
+		let spacetext = document.createElement('span');
+		spacetext.textContent = ": ";
+		fertilityblock.append(fullscantext);
+		fertilityblock.append(spacetext);
+		fertilityblock.append(App.UI.DOM.passageLink("Do it", "Analyze Pregnancy"));
+		fertilityblock.append(document.createElement('br'));
+	}
 	if (slave.ovaries === 1 || slave.mpreg === 1 || slave.preg > 0) {
 		let note = document.createTextNode(``);
 		note.className = "note";
@@ -986,7 +998,7 @@ App.UI.SlaveInteract.fertility = function(slave) {
 				fertilityblock.append(link);
 			}
 		} else if (slave.preg >= -1) {
-			fertilityblock.append("Contraception: ");
+			fertilityblock.append("Contraception and fertility: ");
 			let fertility = document.createElement('span');
 			// fertility.id = "fertility";
 			fertility.style.fontWeight = "bold";
@@ -999,14 +1011,11 @@ App.UI.SlaveInteract.fertility = function(slave) {
 			} else if (slave.preg < 4) {
 				fertility.textContent = "may be pregnant";
 			} else {
-				fertility.textContent = `${slave.preg} weeks pregnant`;
+				fertility.textContent = `${Math.trunc(slave.preg * 1000) / 1000} weeks pregnant`; // * and /  needed to avoid seeing something like 20.1000000008 in some cases.
 			}
 			fertility.textContent += ". ";
 			fertilityblock.appendChild(fertility);
-			if (slave.preg > 0 && V.pregnancyMonitoringUpgrade === 1) {
-				fertilityblock.append(App.UI.DOM.passageLink("Inspect pregnancy", "Analyze Pregnancy"));
-				fertilityblock.append(separator);
-			}
+			
 			if (slave.preg === 0) {
 				link.appendChild(App.UI.DOM.link(
 					`Use contraceptives`,
diff --git a/src/js/economyJS.js b/src/js/economyJS.js
index d90e4bf6b6772baf9779f2700982cabe384725a9..e077c2844bdc931c3fcf67334cdf3b396abe05b0 100644
--- a/src/js/economyJS.js
+++ b/src/js/economyJS.js
@@ -566,6 +566,9 @@ window.calculateCosts = (function() {
 		let costs = 0;
 		if (V.incubator > 0) {
 			costs += ((V.incubatorWeightSetting + V.incubatorMusclesSetting + V.incubatorReproductionSetting + V.incubatorGrowthStimsSetting) * 500);
+			if (V.incubatorUpgradePregAdaptation == 1) {
+				costs += 5000 * V.incubator;
+			}
 		}
 		return costs;
 	}
diff --git a/src/pregmod/analyzePregnancy.tw b/src/pregmod/analyzePregnancy.tw
index 7163f3878b50b107ead20f64628eae294b224fe9..4fd8f5689cfe1975bb788057d3ccb1aac0a385b1 100644
--- a/src/pregmod/analyzePregnancy.tw
+++ b/src/pregmod/analyzePregnancy.tw
@@ -10,10 +10,6 @@
 
 <<set _WL = getSlave($activeSlave.ID).womb.length, _incubatorReservations = WombReserveCount(getSlave($activeSlave.ID), "incubator"), _nurseryReservations = WombReserveCount(getSlave($activeSlave.ID), "nursery")>>
 
-<<if _WL == 0>>
-	<<goto "Slave Interact">>
-<<else>>
-
 	<p class="scene-intro">
 		<<= getSlave($activeSlave.ID).slaveName>> is <<if getSlave($activeSlave.ID).devotion < 20>>restrained<<else>>comfortably reclined<</if>> with $his stomach prepped for examination. $He shudders slightly at the cold touch of the sensor against $his skin.
 	</p>
@@ -30,269 +26,324 @@
 					Estimated pregnancy adaptation rating: <<print num(Math.round(getSlave($activeSlave.ID).pregAdaptation))>>
 				</div>
 				<div>
-					Estimated safe womb volume: <<= num(_safecc)>> cc
+					Estimated safe abdomen volume: <<= num(_safecc)>> cc
 				</div>
 			<</if>>
 			<div>
 				Current fetal count: <<= getSlave($activeSlave.ID).womb.length>>
 			</div>
 			<div>
-				Estimated womb volume: <<if _safecc < _cc && $geneticMappingUpgrade > 0>>@@.red;<<= num(_cc)>>@@<<else>><<= num(_cc)>><</if>> cc
+				Estimated abdomen volume: <<if _safecc < _cc && $geneticMappingUpgrade > 0>>@@.red;<<= num(_cc)>>@@<<else>><<= num(_cc)>><</if>> cc
 			</div>
 		</div>
 	</p>
 
-	<p>
-		<h2>Furthest developed pregnancy</h2>
-		<div class="indent">
-			Fetal development week: <<= getSlave($activeSlave.ID).preg>>
-		</div>
-	</p>
+	<<if getSlave($activeSlave.ID).womb.length > 0>>
+		<p>
+			<h2>Furthest developed pregnancy</h2>
+			<div class="indent">
+				Fetal development week: <<= Math.trunc(getSlave($activeSlave.ID).preg * 1000) / 1000>>
+			</div>
+		</p>
 
-	<p>
-	<<if $incubator + $nursery > 0>>
-		<div>
-			<<if $incubator > 0>>
-				<<if _incubatorReservations > 0>>
-					<<link "Remove all of $his children from $incubatorName" "Analyze Pregnancy">>
-						<<run WombChangeReserveType(getSlave($activeSlave.ID), "incubator", "")>>
-						<<set $reservedChildren -= _incubatorReservations>>
-					<</link>> |
-				<</if>>
-				<<if _incubatorReservations < _WL && ($reservedChildren + _WL - _incubatorReservations <= $freeTanks)>>
-					<<link "Keep all of $his children in $incubatorName" "Analyze Pregnancy">>
-						<<run WombChangeReserveType(getSlave($activeSlave.ID), "nursery", "incubator")>>
-						<<run WombChangeReserveType(getSlave($activeSlave.ID), "", "incubator")>>
-						<<set $reservedChildrenNursery -= _nurseryReservations>>
-						<<set $reservedChildren += _WL - _incubatorReservations>>
-					<</link>>
-				<<elseif _incubatorReservations < _WL>>
-					There is not enough free space in $incubatorName for the rest of $his children.
+		<p>
+		<<if $incubator + $nursery > 0>>
+			<div>
+				<<if $incubator > 0>>
+					<<if _incubatorReservations > 0>>
+						<<link "Remove all of $his children from $incubatorName" "Analyze Pregnancy">>
+							<<run WombChangeReserveType(getSlave($activeSlave.ID), "incubator", "")>>
+							<<set $reservedChildren -= _incubatorReservations>>
+						<</link>> |
+					<</if>>
+					<<if _incubatorReservations < _WL && ($reservedChildren + _WL - _incubatorReservations <= $freeTanks)>>
+						<<link "Keep all of $his children in $incubatorName" "Analyze Pregnancy">>
+							<<run WombChangeReserveType(getSlave($activeSlave.ID), "nursery", "incubator")>>
+							<<run WombChangeReserveType(getSlave($activeSlave.ID), "", "incubator")>>
+							<<set $reservedChildrenNursery -= _nurseryReservations>>
+							<<set $reservedChildren += _WL - _incubatorReservations>>
+						<</link>>
+					<<elseif _incubatorReservations < _WL>>
+						There is not enough free space in $incubatorName for the rest of $his children.
+					<</if>>
 				<</if>>
-			<</if>>
-		</div>
+			</div>
 
-		<div>
-			<<if $nursery > 0>>
-				<<if _nurseryReservations > 0>>
-					<<link "Remove all of $his children from $nurseryName" "Analyze Pregnancy">>
-						<<run WombChangeReserveType(getSlave($activeSlave.ID), "nursery", "")>>
-						<<set $reservedChildrenNursery -= _nurseryReservations>>
-					<</link>> |
-				<</if>>
-				<<if _nurseryReservations < _WL && ($reservedChildrenNursery + _WL - _nurseryReservations <= $freeCribs)>>
-					<<link "Keep all of $his children in $nurseryName" "Analyze Pregnancy">>
-						<<run WombChangeReserveType(getSlave($activeSlave.ID), "incubator", "nursery")>>
-						<<run WombChangeReserveType(getSlave($activeSlave.ID), "", "nursery")>>
-						<<set $reservedChildren -= _incubatorReservations>>
-						<<set $reservedChildrenNursery += _WL - _nurseryReservations>>
-					<</link>>
-				<<elseif _nurseryReservations < _WL>>
-					There is not enough free space in $nurseryName for the rest of $his children.
+			<div>
+				<<if $nursery > 0>>
+					<<if _nurseryReservations > 0>>
+						<<link "Remove all of $his children from $nurseryName" "Analyze Pregnancy">>
+							<<run WombChangeReserveType(getSlave($activeSlave.ID), "nursery", "")>>
+							<<set $reservedChildrenNursery -= _nurseryReservations>>
+						<</link>> |
+					<</if>>
+					<<if _nurseryReservations < _WL && ($reservedChildrenNursery + _WL - _nurseryReservations <= $freeCribs)>>
+						<<link "Keep all of $his children in $nurseryName" "Analyze Pregnancy">>
+							<<run WombChangeReserveType(getSlave($activeSlave.ID), "incubator", "nursery")>>
+							<<run WombChangeReserveType(getSlave($activeSlave.ID), "", "nursery")>>
+							<<set $reservedChildren -= _incubatorReservations>>
+							<<set $reservedChildrenNursery += _WL - _nurseryReservations>>
+						<</link>>
+					<<elseif _nurseryReservations < _WL>>
+						There is not enough free space in $nurseryName for the rest of $his children.
+					<</if>>
 				<</if>>
-			<</if>>
-		</div>
-	<</if>>
-	</p>
+			</div>
+		<</if>>
+		</p>
 
-	<p>
-		<h2>Deep scan</h2>
-		<<for _ap = 0; _ap < _WL; _ap++>>
-			<hr style="margin:0">
-			<p>
-				<<capture _ap>>
-					<<if getSlave($activeSlave.ID).womb[_ap].age >=2 >>
-						<div class="indent">
-							Ova: <<= getSlave($activeSlave.ID).womb[_ap].genetics.name>>
-						</div>
-						<div class="indent">
-							Age: <<= getSlave($activeSlave.ID).womb[_ap].age>>
-						</div>
-						<<if $geneticMappingUpgrade >= 1>>
+		<p>
+			<h2>Deep scan</h2>
+			<<for _ap = 0; _ap < _WL; _ap++>>
+				<hr style="margin:0">
+				<p>
+					<<capture _ap>>
+						<<if getSlave($activeSlave.ID).womb[_ap].age >=2 >>
 							<div class="indent">
-								Gender: <<= getSlave($activeSlave.ID).womb[_ap].genetics.gender>>
+								Ova: <<= getSlave($activeSlave.ID).womb[_ap].genetics.name>>
 							</div>
 							<div class="indent">
-								Father ID: <<= getSlave($activeSlave.ID).womb[_ap].genetics.father>>
+								Age: <<= Math.trunc(getSlave($activeSlave.ID).womb[_ap].age * 1000) / 1000>>
 							</div>
-							<div class="indent">
-								Father Name:
-								<<if ndef getSlave($activeSlave.ID).womb[_ap].genetics.fatherName>>
-									name not registered
-								<<else>>
-									<<= getSlave($activeSlave.ID).womb[_ap].genetics.fatherName>>
+							<<if $geneticMappingUpgrade >= 1>>
+								<div class="indent">
+									Gender: <<= getSlave($activeSlave.ID).womb[_ap].genetics.gender>>
+								</div>
+								<div class="indent">
+									Father ID: <<= getSlave($activeSlave.ID).womb[_ap].genetics.father>>
+								</div>
+								<div class="indent">
+									Father Name:
+									<<if ndef getSlave($activeSlave.ID).womb[_ap].genetics.fatherName>>
+										name not registered
+									<<else>>
+										<<= getSlave($activeSlave.ID).womb[_ap].genetics.fatherName>>
+									<</if>>
+								</div>
+								<div class="indent">
+									Mother ID: <<= getSlave($activeSlave.ID).womb[_ap].genetics.mother>>
+								</div>
+								<div class="indent">
+									Mother Name:
+									<<if ndef getSlave($activeSlave.ID).womb[_ap].genetics.motherName>>
+										name not registered
+									<<else>>
+										<<= getSlave($activeSlave.ID).womb[_ap].genetics.motherName>>
+									<</if>>
+								</div>
+								<div class="indent">
+									Nationality: <<= getSlave($activeSlave.ID).womb[_ap].genetics.nationality>>
+								</div>
+								<div class="indent">
+									Race: <<= capFirstChar(getSlave($activeSlave.ID).womb[_ap].genetics.race)>>
+								</div>
+								<div class="indent">
+									Skin tone: <<= capFirstChar(getSlave($activeSlave.ID).womb[_ap].genetics.skin)>>
+								</div>
+								<div class="indent">
+									Intelligence index: <<= getSlave($activeSlave.ID).womb[_ap].genetics.intelligence>> out of 100
+								</div>
+								<div class="indent">
+									Face index: <<= getSlave($activeSlave.ID).womb[_ap].genetics.face>> out of 100
+								</div>
+								<div class="indent">
+									Eye Color: <<= capFirstChar(getSlave($activeSlave.ID).womb[_ap].genetics.eyeColor)>>
+								</div>
+								<div class="indent">
+									Hair Color: <<= capFirstChar(getSlave($activeSlave.ID).womb[_ap].genetics.hColor)>>
+								</div>
+								<div class="indent">
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.underArmHStyle == "hairless" && getSlave($activeSlave.ID).womb[_ap].genetics.pubicHStyle == "hairless">>
+										Body hair: None
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.underArmHStyle == "hairless">>
+										Body hair: Lacks underarm hair
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.pubicHStyle == "hairless">>
+										Body hair: Lacks pubic hair
+									<</if>>
+								</div>
+								<<if getSlave($activeSlave.ID).womb[_ap].genetics.markings == "freckles" || getSlave($activeSlave.ID).womb[_ap].genetics.markings == "heavily freckled">>
+									<div class="indent">
+										Markings: <<= capFirstChar(getSlave($activeSlave.ID).womb[_ap].genetics.markings)>>
+									</div>
 								<</if>>
-							</div>
-							<div class="indent">
-								Mother ID: <<= getSlave($activeSlave.ID).womb[_ap].genetics.mother>>
-							</div>
-							<div class="indent">
-								Mother Name:
-								<<if ndef getSlave($activeSlave.ID).womb[_ap].genetics.motherName>>
-									name not registered
-								<<else>>
-									<<= getSlave($activeSlave.ID).womb[_ap].genetics.motherName>>
+								<div class="indent">
+									Detected abnormalities:
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.albinism == 2>>
+										@@.green;alb@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.albinism == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;alb@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.gigantism == 2>>
+										@@.red;gnt@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.gigantism == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;gnt@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.dwarfism == 2>>
+										@@.red;dwrf@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.dwarfism == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;dwrf@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.heterochromia == 2>>
+										@@.green;hetchrom@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.heterochromia == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;hetchrom@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.androgyny == 2>>
+										@@.red;andr@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.androgyny == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;andr@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.pFace == 2>>
+										@@.green;pfce@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.pFace == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;pfce@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.uFace == 2>>
+										@@.red;ufce@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.uFace == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;ufce@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.fertility == 2>>
+										@@.green;fert@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.fertility == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;fert@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.hyperFertility == 2>>
+										@@.green;hfert@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.hyperFertility == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;hfert@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.superfetation == 2>>
+										@@.green;supfet@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.superfetation == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;supfet@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.macromastia >= 2>>
+										@@.red;mmast@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.macromastia == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;mast@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.gigantomastia >= 2>>
+										@@.red;gmast@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.gigantomastia == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;gmast@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wellHung == 2>>
+										@@.green;bigd@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wellHung == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;bigd@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.rearLipedema == 2>>
+										@@.red;lipe@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.rearLipedema == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;lipe@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wGain == 2>>
+										@@.red;lepti+@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wGain == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;lepti+@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wLoss == 2>>
+										@@.red;lepti-@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wLoss == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;lepti-@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.mGain == 2>>
+										@@.red;myot+@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.mGain == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;myot+@@
+									<</if>>
+									<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.mLoss == 2>>
+										@@.red;myot-@@
+									<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.mLoss == 1 && $geneticMappingUpgrade >= 2>>
+										@@.yellow;myot-@@
+									<</if>>
+								</div>
+							<<else>>
+								<<if getSlave($activeSlave.ID).womb[_ap].age > 13>>
+									<div class="indent">
+										Gender: <<= getSlave($activeSlave.ID).womb[_ap].genetics.gender>>
+									</div>
 								<</if>>
-							</div>
-							<div class="indent">
-								Nationality: <<= getSlave($activeSlave.ID).womb[_ap].genetics.nationality>>
-							</div>
-							<div class="indent">
-								Race: <<= capFirstChar(getSlave($activeSlave.ID).womb[_ap].genetics.race)>>
-							</div>
-							<div class="indent">
-								Skin tone: <<= capFirstChar(getSlave($activeSlave.ID).womb[_ap].genetics.skin)>>
-							</div>
-							<div class="indent">
-								Intelligence index: <<= getSlave($activeSlave.ID).womb[_ap].genetics.intelligence>> out of 100
-							</div>
-							<div class="indent">
-								Face index: <<= getSlave($activeSlave.ID).womb[_ap].genetics.face>> out of 100
-							</div>
-							<div class="indent">
-								Eye Color: <<= capFirstChar(getSlave($activeSlave.ID).womb[_ap].genetics.eyeColor)>>
-							</div>
-							<div class="indent">
-								Hair Color: <<= capFirstChar(getSlave($activeSlave.ID).womb[_ap].genetics.hColor)>>
-							</div>
-							<div class="indent">
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.underArmHStyle == "hairless" && getSlave($activeSlave.ID).womb[_ap].genetics.pubicHStyle == "hairless">>
-									Body hair: None
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.underArmHStyle == "hairless">>
-									Body hair: Lacks underarm hair
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.pubicHStyle == "hairless">>
-									Body hair: Lacks pubic hair
+								<<if getSlave($activeSlave.ID).womb[_ap].age > 5>>
+									<div class="indent">
+										Father ID: <<= getSlave($activeSlave.ID).womb[_ap].genetics.father>>
+									</div>
+									<div class="indent">
+										Father Name: <<= getSlave($activeSlave.ID).womb[_ap].genetics.fatherName>>
+									</div>
+									<div class="indent">
+										Mother ID: <<= getSlave($activeSlave.ID).womb[_ap].genetics.mother>>
+									</div>
+									<div class="indent">
+										Mother Name: <<= getSlave($activeSlave.ID).womb[_ap].genetics.motherName>>
+									</div>
 								<</if>>
-							</div>
-							<<if getSlave($activeSlave.ID).womb[_ap].genetics.markings == "freckles" || getSlave($activeSlave.ID).womb[_ap].genetics.markings == "heavily freckled">>
+							<</if>>
+							<<if $incubator > 0 || $nursery > 0>>
 								<div class="indent">
-									Markings: <<= capFirstChar(getSlave($activeSlave.ID).womb[_ap].genetics.markings)>>
+									Reserved: <<= getSlave($activeSlave.ID).womb[_ap].reserve>>
 								</div>
 							<</if>>
+
 							<div class="indent">
-								Detected abnormalities:
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.albinism == 2>>
-									@@.green;alb@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.albinism == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;alb@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.gigantism == 2>>
-									@@.red;gnt@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.gigantism == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;gnt@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.dwarfism == 2>>
-									@@.red;dwrf@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.dwarfism == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;dwrf@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.heterochromia == 2>>
-									@@.green;hetchrom@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.heterochromia == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;hetchrom@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.androgyny == 2>>
-									@@.red;andr@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.androgyny == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;andr@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.pFace == 2>>
-									@@.green;pfce@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.pFace == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;pfce@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.uFace == 2>>
-									@@.red;ufce@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.uFace == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;ufce@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.fertility == 2>>
-									@@.green;fert@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.fertility == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;fert@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.hyperFertility == 2>>
-									@@.green;hfert@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.hyperFertility == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;hfert@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.superfetation == 2>>
-									@@.green;supfet@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.superfetation == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;supfet@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.macromastia >= 2>>
-									@@.red;mmast@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.macromastia == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;mast@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.gigantomastia >= 2>>
-									@@.red;gmast@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.gigantomastia == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;gmast@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wellHung == 2>>
-									@@.green;bigd@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wellHung == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;bigd@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.rearLipedema == 2>>
-									@@.red;lipe@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.rearLipedema == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;lipe@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wGain == 2>>
-									@@.red;lepti+@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wGain == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;lepti+@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wLoss == 2>>
-									@@.red;lepti-@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.wLoss == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;lepti-@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.mGain == 2>>
-									@@.red;myot+@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.mGain == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;myot+@@
-								<</if>>
-								<<if getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.mLoss == 2>>
-									@@.red;myot-@@
-								<<elseif getSlave($activeSlave.ID).womb[_ap].genetics.geneticQuirks.mLoss == 1 && $geneticMappingUpgrade >= 2>>
-									@@.yellow;myot-@@
-								<</if>>
+								Rename: <<textbox "_tempName" _tempName >> [[Apply | Analyze Pregnancy][getSlave($activeSlave.ID).womb[_ap].genetics.name = _tempName]]
 							</div>
-						<<else>>
-							<<if getSlave($activeSlave.ID).womb[_ap].age > 13>>
+							<<if getSlave($activeSlave.ID).womb[_ap].age < 4 && ($arcologies[0].FSRestart == "unset" || $eugenicsFullControl == 1 || getSlave($activeSlave.ID).breedingMark == 0 || $propOutcome == 0 || (getSlave($activeSlave.ID).womb[_ap].fatherID != -1 && getSlave($activeSlave.ID).womb[_ap].fatherID != -6))>>
 								<div class="indent">
-									Gender: <<= getSlave($activeSlave.ID).womb[_ap].genetics.gender>>
+									<<link "Terminate ovum" "Analyze Pregnancy">><<run WombRemoveFetus(getSlave($activeSlave.ID), _ap)>><<if getSlave($activeSlave.ID).preg == 0>><<set getSlave($activeSlave.ID).pregWeek = -1>><</if>><</link>>
+									<<if $surgeryUpgrade == 1>>
+										| [[Transplant ovum|Ova Transplant Workaround][$donatrix = getSlave($activeSlave.ID), $wombIndex = _ap, $nextLink = "Analyze Pregnancy"]]
+									<</if>>
 								</div>
 							<</if>>
-							<<if getSlave($activeSlave.ID).womb[_ap].age > 5>>
-								<div class="indent">
-									Father ID: <<= getSlave($activeSlave.ID).womb[_ap].genetics.father>>
-								</div>
+							<<if $incubator > 0>>
 								<div class="indent">
-									Father Name: <<= getSlave($activeSlave.ID).womb[_ap].genetics.fatherName>>
-								</div>
-								<div class="indent">
-									Mother ID: <<= getSlave($activeSlave.ID).womb[_ap].genetics.mother>>
+									<<if getSlave($activeSlave.ID).womb[_ap].reserve === "incubator">>
+										<<link "Don't keep this child in $incubatorName" "Analyze Pregnancy">>
+											<<set getSlave($activeSlave.ID).womb[_ap].reserve = "">>
+											<<set $reservedChildren-->>
+										<</link>>
+									<<elseif $freeTanks - $reservedChildren > 0>>
+										<<link "Keep this child in $incubatorName" "Analyze Pregnancy">>
+											<<if getSlave($activeSlave.ID).womb[_ap].reserve === "nursery">>
+												<<set $reservedChildrenNursery-->>
+											<</if>>
+											<<set getSlave($activeSlave.ID).womb[_ap].reserve = "incubator">>
+											<<set $reservedChildren++>>
+										<</link>>
+									<<else>>
+										There is not enough free space to keep this child in $incubatorName.
+									<</if>>
 								</div>
+							<</if>>
+							<<if $nursery > 0>>
 								<div class="indent">
-									Mother Name: <<= getSlave($activeSlave.ID).womb[_ap].genetics.motherName>>
+									<<if getSlave($activeSlave.ID).womb[_ap].reserve === "nursery">>
+										<<link "Don't keep this child in $nurseryName" "Analyze Pregnancy">>
+											<<set getSlave($activeSlave.ID).womb[_ap].reserve = "">>
+											<<set $reservedChildrenNursery-->>
+										<</link>>
+									<<elseif $freeCribs - $reservedChildrenNursery > 0>>
+										<<link "Keep this child in $nurseryName" "Analyze Pregnancy">>
+											<<if getSlave($activeSlave.ID).womb[_ap].reserve === "incubator">>
+												<<set $reservedChildren-->>
+											<</if>>
+											<<set getSlave($activeSlave.ID).womb[_ap].reserve = "nursery">>
+											<<set $reservedChildrenNursery++>>
+										<</link>>
+									<<else>>
+										There is not enough free space to keep this child in $nurseryName.
+									<</if>>
 								</div>
 							<</if>>
-						<</if>>
-						<<if $incubator > 0 || $nursery > 0>>
+						<<else>>
 							<div class="indent">
-								Reserved: <<= getSlave($activeSlave.ID).womb[_ap].reserve>>
+								Unidentified ova found, no detailed data available.
+							</div>
+							<div class="indent">
+								Age: too early for scan.
 							</div>
-						<</if>>
-
-						<div class="indent">
-							Rename: <<textbox "_tempName" _tempName >> [[Apply | Analyze Pregnancy][getSlave($activeSlave.ID).womb[_ap].genetics.name = _tempName]]
-						</div>
-						<<if getSlave($activeSlave.ID).womb[_ap].age < 4 && ($arcologies[0].FSRestart == "unset" || $eugenicsFullControl == 1 || getSlave($activeSlave.ID).breedingMark == 0 || $propOutcome == 0 || (getSlave($activeSlave.ID).womb[_ap].fatherID != -1 && getSlave($activeSlave.ID).womb[_ap].fatherID != -6))>>
 							<div class="indent">
 								<<link "Terminate ovum" "Analyze Pregnancy">><<run WombRemoveFetus(getSlave($activeSlave.ID), _ap)>><<if getSlave($activeSlave.ID).preg == 0>><<set getSlave($activeSlave.ID).pregWeek = -1>><</if>><</link>>
 								<<if $surgeryUpgrade == 1>>
@@ -300,62 +351,13 @@
 								<</if>>
 							</div>
 						<</if>>
-						<<if $incubator > 0>>
-							<div class="indent">
-								<<if getSlave($activeSlave.ID).womb[_ap].reserve === "incubator">>
-									<<link "Don't keep this child in $incubatorName" "Analyze Pregnancy">>
-										<<set getSlave($activeSlave.ID).womb[_ap].reserve = "">>
-										<<set $reservedChildren-->>
-									<</link>>
-								<<elseif $freeTanks - $reservedChildren > 0>>
-									<<link "Keep this child in $incubatorName" "Analyze Pregnancy">>
-										<<if getSlave($activeSlave.ID).womb[_ap].reserve === "nursery">>
-											<<set $reservedChildrenNursery-->>
-										<</if>>
-										<<set getSlave($activeSlave.ID).womb[_ap].reserve = "incubator">>
-										<<set $reservedChildren++>>
-									<</link>>
-								<<else>>
-									There is not enough free space to keep this child in $incubatorName.
-								<</if>>
-							</div>
-						<</if>>
-						<<if $nursery > 0>>
-							<div class="indent">
-								<<if getSlave($activeSlave.ID).womb[_ap].reserve === "nursery">>
-									<<link "Don't keep this child in $nurseryName" "Analyze Pregnancy">>
-										<<set getSlave($activeSlave.ID).womb[_ap].reserve = "">>
-										<<set $reservedChildrenNursery-->>
-									<</link>>
-								<<elseif $freeCribs - $reservedChildrenNursery > 0>>
-									<<link "Keep this child in $nurseryName" "Analyze Pregnancy">>
-										<<if getSlave($activeSlave.ID).womb[_ap].reserve === "incubator">>
-											<<set $reservedChildren-->>
-										<</if>>
-										<<set getSlave($activeSlave.ID).womb[_ap].reserve = "nursery">>
-										<<set $reservedChildrenNursery++>>
-									<</link>>
-								<<else>>
-									There is not enough free space to keep this child in $nurseryName.
-								<</if>>
-							</div>
-						<</if>>
-					<<else>>
-						<div class="indent">
-							Unidentified ova found, no detailed data available.
-						</div>
-						<div class="indent">
-							Age: too early for scan.
-						</div>
-						<div class="indent">
-							<<link "Terminate ovum" "Analyze Pregnancy">><<run WombRemoveFetus(getSlave($activeSlave.ID), _ap)>><<if getSlave($activeSlave.ID).preg == 0>><<set getSlave($activeSlave.ID).pregWeek = -1>><</if>><</link>>
-							<<if $surgeryUpgrade == 1>>
-								| [[Transplant ovum|Ova Transplant Workaround][$donatrix = getSlave($activeSlave.ID), $wombIndex = _ap, $nextLink = "Analyze Pregnancy"]]
-							<</if>>
-						</div>
-					<</if>>
-				<</capture>>
-			</p>
-		<</for>>
-	</p>
-<</if>>
+					<</capture>>
+				</p>
+			<</for>>
+		</p>
+	<<elseif getSlave($activeSlave.ID).pregWeek < 0>> /*special states*/
+		POSTRARTUM, Subject is infertile.
+	<<elseif getSlave($activeSlave.ID).preg == -1>> /*special states*/
+		Subject is infertile.
+	<</if>>
+
diff --git a/src/pregmod/incubator.tw b/src/pregmod/incubator.tw
index 77f95d94cde00852e05714ec418a9cb6579a236b..3a6ca95068f28d1f558e0386ea8e7d6d7e340ccd 100644
--- a/src/pregmod/incubator.tw
+++ b/src/pregmod/incubator.tw
@@ -284,28 +284,28 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 	The incubation tanks are basic; children grow at the rate of 12 weeks to 1 year. [[Upgrade the incubators with growth accelerating drugs|Incubator][cashX(forceNeg(Math.trunc(30000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeSpeed = 6]] //Costs <<print cashFormat(Math.trunc(30000*$upgradeMultiplierArcology))>> and will increase upkeep costs//
 <</if>>
 
-<br>
+<p>
 <<if $incubatorUpgradeWeight == 1>>
 	Advanced caloric monitoring systems have been installed in the tanks to monitor and maintain a developing child's weight.
 <<else>>
 	There are no systems in place to control a growing child's weight; they will likely come out emaciated from the rapid growth. [[Upgrade the growth tanks with weight monitoring systems|Incubator][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeWeight = 1]] //Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>> and will increase upkeep costs//
 <</if>>
-
-<br>
+</p>
+<p>
 <<if $incubatorUpgradeMuscles == 1>>
 	Advanced monitoring and steroid injection systems have been installed in the tanks to monitor and maintain a developing child's musculature.
 <<else>>
 	There are no systems in place to control a growing child's musculature; they will likely come out frail and weak from the rapid growth. [[Upgrade the growth tanks with muscle monitoring systems|Incubator][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeMuscles = 1]] //Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>> and will increase upkeep costs//
 <</if>>
-
-<br>
+</p>
+<p>
 <<if $incubatorUpgradeReproduction == 1>>
 	Advanced monitoring and hormone injection systems have been installed in the tanks to influence a developing child's reproductive organs.
 <<else>>
 	There are no systems in place to control a growing child's reproductive capability. [[Upgrade the growth tanks with hormone monitoring systems|Incubator][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeReproduction = 1]] //Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>> and will increase upkeep costs//
 <</if>>
-
-<br>
+</p>
+<p>
 <<if $incubatorUpgradeOrgans == 1>>
 	Surgical tools have been added to the tank to be able to extract tissue samples from the occupant.
 <<elseif $organFarmUpgrade >= 1>>
@@ -313,8 +313,9 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 <<else>>
 	The tanks lack the ability to extract tissue samples and the dispensary lacks the ability to make use of them to fabricate organs.
 <</if>>
+</p>
 
-<br>
+<p>
 <<if $incubatorUpgradeGrowthStims == 1>>
 	Advanced monitoring and stimulant injection systems have been installed in the tanks to monitor and maintain a developing child's height.
 <<elseif $growthStim == 1>>
@@ -322,8 +323,19 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 <<else>>
 	There are no systems in place to control a growing child's height and you lack the capability to fabricate growth stimulants.
 <</if>>
-
-<br>
+</p>
+<<if $minimumSlaveAge <= 6 && $incubatorUpgradeReproduction == 1 && $incubatorUpgradeOrgans == 1 && $ImplantProductionUpgrade == 1 && $bellyImplants == 1 && ($arcologies[0].FSRepopulationFocus >=60 || $BlackmarketPregAdaptation == 1)  >> /*This option should be available ONLY after many other conditions meet, and this only initial conditions*/
+	<p>
+	<<if $incubatorUpgradePregAdaptation == 1>>
+		Incubator upgraded with special set of manipulators, probes and nozzles together with specific programs to take advantage of accelerated growth in subject bodies, and take measures to heighten their adaptation to reproductive life ahead. This will include injections of specific serums and mechanical manipulation inside their reproductive organs.
+	<<else>>
+		The highly controlled environment inside incubator together with a process of greatly accelerated growth is prefect opportunity to stretch boundaries of the natural ability of the subject to sustain pregnancy. This will include injections of specific serums and mechanical manipulation inside their reproductive organs by incubator through special set of manipulators, probes and nozzles supervised with specific monitoring program. Highly expensive.
+		[[Manufacture and install this subsystem|Incubator][cashX(forceNeg(Math.trunc(2000000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradePregAdaptation = 1]] //Costs <<print cashFormat(Math.trunc(2000000*$upgradeMultiplierArcology))>> and will increase upkeep costs//
+		
+	<</if>>
+	</p>
+<</if>>
+<p>
 <<if $incubatorImprintSetting == "terror">>
 	The imprinting system is currently focused on making them devoted but fearful of you. The imprinting cycle is locked upon incubation start.
 	[[Switch the system to focus on attachment|Incubator][$incubatorImprintSetting = "trust"]] //Only affects new infants//
@@ -331,6 +343,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 	The imprinting system is currently focused on making them devoted and trusting of you. The imprinting cycle is locked upon incubation start.
 	[[Switch the system to focus on dependence|Incubator][$incubatorImprintSetting = "terror"]] //Only affects new infants//
 <</if>>
+</p>
 
 
 <<if $incubatorSlaves > 0>>
@@ -426,6 +439,29 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 					as it appears $his womb is sterile.
 				<</if>>
 			<</if>>
+			<<if ($incubatorPregAdaptationSetting == 1 && $tanks[$i].genes == "XX") || ($incubatorPregAdaptationSetting == 2 && $tanks[$i].genes == "XY") ||$incubatorPregAdaptationSetting == 3 >>
+				There are probes and tubes inserted inside $his reproductive organs, as the Incubator works on them.
+				<<set _safecc = ($tanks[$i].pregAdaptation - 5) * 2000>>
+				<<if _safecc > 300000>> /* Some bigger size descriptions may be unreachable by normal game mechanic, they are here just in case.*/
+					$His bloated form looks more like am overinflated beachball made of the overstretched skin of $his belly, with $his relative tiny body attached to its side. $He is completely dominated by it now. The process gone too far, so $his body can't maintain its form with the belly as part of abdominal cavity. Now $his skin and tissues have stretched enough for $his belly to bloat outside of any body boundaries and looked more attached to $his body then as a part of it. 
+				<<elseif _safecc > 150000>>
+					$His body looks almost spherical, grotesquely inflated with the stimulator sacks inserted into $his internals. Incubator constantly maintain high level of pressure inside $him forcing displacement of organs and stretching skin and tissues. Even $his chest forced to become half part of the top of $his belly, displaced forward from the pressure inside.
+				<<elseif _safecc > 75000>>
+					$His belly has become so huge, that can be easily compared with belly of a woman ready to birth quintuplets. It's pulsing from the pressure applied inside by the incubator probes.
+				<<elseif _safecc > 45000>>
+					$His belly in the current state would look normal on a woman who was ready to birth triplets. On $his still growing form it's something completely out of the ordinary.
+				<<elseif _safecc > 30000>>
+					$His belly looks like it contains full sized twins, ready to be birthed.
+				<<elseif _safecc > 15000>>
+					$His belly has reached the size of full term pregnancy.
+				<<elseif _safecc > 10000>>
+					$His belly has inflated to the size of late term pregnancy, and the skin has become shiny.
+				<<elseif _safecc > 5000>>
+					$His belly looks like mid term pregnancy; it's possible to see some pulsing from the expanding and contracting of incubator probes. 
+				<<elseif _safecc > 1500>>
+					$His belly slightly bulges and rhythmically expands and contracts with the cycles of stimulation, as the incubator inflates and deflates its probes inside $his body cavities. With the correct serums applied this should allow it to stretch the skin and tissues of the belly and adapt $his body to a pregnant state with displaced internal organs caused by the growth of the womb.
+				<</if>>
+			<</if>>		
 		<<if $tanks[$i].growTime <= 0>>
 			<<set $readySlaves = 1>>
 			<br>$He is ready to be released from $his tank.
@@ -478,6 +514,10 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 			<<elseif $incubatorReproductionSetting == 0>>
 				Reproduction management systems are offline; $he will undergo normal puberty.
 			<</if>>
+			<<if ($incubatorPregAdaptationSetting == 1 && $tanks[$i].genes == "XX") || ($incubatorPregAdaptationSetting == 2 && $tanks[$i].genes == "XY") ||$incubatorPregAdaptationSetting == 3 >> /* Should be visible only after incubatorUpgradeReproduction is installed and activated*/
+				<br>
+				$His reproductive organs are getting <<if $tanks[$i].incubatorPregAdaptationPower == 1>>an advanced<<elseif $tanks[$i].incubatorPregAdaptationPower == 2>>an intensive<<elseif $tanks[$i].incubatorPregAdaptationPower == 3>>an extreme<<else>>a standard<</if>> course of mechanical and hormonal therapy to become adapted for future use.
+			<</if>>
 		<</if>>
 		<br>Rename $him: <<textbox "_tempName" _tempName >> [[Apply |Incubator][$tanks[$i].slaveName = _tempName]] // Given name only //
 		<<if $cheatMode == 1>>
@@ -644,6 +684,40 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu
 	<<elseif $incubatorReproductionSetting == 0>>
 		Reproduction management systems are offline; children will undergo normal puberty. [[Activate|Incubator][$incubatorReproductionSetting = 1]]
 	<</if>>
+	<<if $incubatorUpgradePregAdaptation == 1>> /* Should be visible only after incubatorUpgradeReproduction is installed */
+		<br>
+		<<if $incubatorPregAdaptationSetting == 3>>
+		Pregnancy adaptation system online: All.
+			[[Females|Incubator][$incubatorPregAdaptationSetting = 1]] | [[Males|Incubator][$incubatorPregAdaptationSetting = 2]] | [[Disable|Incubator][$incubatorPregAdaptationSetting = 0]]
+		<<elseif $incubatorPregAdaptationSetting == 2>>
+		Pregnancy adaptation system online: Males only.
+			[[All|Incubator][$incubatorPregAdaptationSetting = 3]] | [[Females|Incubator][$incubatorPregAdaptationSetting = 1]] | [[Disable|Incubator][$incubatorPregAdaptationSetting = 0]]
+		<<elseif $incubatorPregAdaptationSetting == 1>>
+			Pregnancy adaptation system online: Females only.
+			[[All|Incubator][$incubatorPregAdaptationSetting = 3]] | [[Males|Incubator][$incubatorPregAdaptationSetting = 2]] | [[Disable|Incubator][$incubatorPregAdaptationSetting = 0]]
+		<<else>>
+			Pregnancy adaptation system offline.
+			[[All|Incubator][$incubatorPregAdaptationSetting = 3]] | [[Females|Incubator][$incubatorPregAdaptationSetting = 1]] | [[Males|Incubator][$incubatorPregAdaptationSetting = 2]]
+		<</if>>
+	<</if>>
+	<<if $incubatorUpgradePregAdaptation == 1 && $incubatorPregAdaptationSetting > 0>> /* Should be visible only after incubatorUpgradeReproduction is installed and turned on*/
+		<br>
+		<<if $incubatorPregAdaptationPower == 1>>
+			Pregnancy adaptation programmed to advanced procedures. Up to the triplets pregnancy should be safe for the subjects.
+			[[Standart|Incubator][$incubatorPregAdaptationPower = 0]] | [[Intensive|Incubator][$incubatorPregAdaptationPower = 2]] | [[Extreme|Incubator][$incubatorPregAdaptationPower = 3]]
+		<<elseif $incubatorPregAdaptationPower == 2>>
+			Pregnancy adaptation programmed to intensive procedures. Up to the octuplets pregnancy should be possible for the subjects. Warning! Side effects may occur to the health and mental condition.
+			[[Standart|Incubator][$incubatorPregAdaptationPower = 0]] | [[Advanced|Incubator][$incubatorPregAdaptationPower = 1]] | [[Extreme|Incubator][$incubatorPregAdaptationPower = 3]]
+		<<elseif $incubatorPregAdaptationPower == 3>>
+			Pregnancy adaptation programmed to extreme procedures. Outcome final perfomance for subjects may vary with genetic and other individal conditions. WARNING! Extreme side effects may occur to the health and mental condition!
+			[[Standart|Incubator][$incubatorPregAdaptationPower = 0]] | [[Advanced|Incubator][$incubatorPregAdaptationPower = 1]] | [[Intensive|Incubator][$incubatorPregAdaptationPower = 2]]
+		<<else>>
+			Pregnancy adaptation programmed to standard procedures. Normal singleton pregnancy should be safe for the subjects.
+			[[Advanced|Incubator][$incubatorPregAdaptationPower = 1]] | [[Intensive|Incubator][$incubatorPregAdaptationPower = 2]] | [[Extreme|Incubator][$incubatorPregAdaptationPower = 3]]
+		<</if>>
+		<br>
+		//Due to the high complexity and risk of procedure setting will not be changed to tanks in use.//
+	<</if>>
 <</if>>
 <br>
 <<if $incubatorUpgradeGrowthStims == 1>>
diff --git a/src/pregmod/incubatorReport.tw b/src/pregmod/incubatorReport.tw
index 139af2d188c91906d79b2845426c54507488e143..07e52dbf1767cca193b0996885f392a36b2b21db 100644
--- a/src/pregmod/incubatorReport.tw
+++ b/src/pregmod/incubatorReport.tw
@@ -747,6 +747,48 @@
 		<<set $tanks[_inc].energy = 0, $tanks[_inc].need = 0>>
 	<</if>>
 
+	<<if ($incubatorPregAdaptationSetting == 1 && $tanks[_inc].genes == "XX") || ($incubatorPregAdaptationSetting == 2 && $tanks[_inc].genes == "XY") ||$incubatorPregAdaptationSetting == 3 >>
+		<br>The incubator is working on $his abdomen and reproductive organs, to help adapt $him for future pregnancy.
+		<<set _weekAdapt = isNaN($tanks[_inc].incubatorPregAdaptationInWeek) ? ($tanks[_inc].incubatorPregAdaptationInWeek = (15000 / 2000 - $tanks[_inc].pregAdaptation) / $tanks[_inc].growTime) * $incubatorUpgradeSpeed : $tanks[_inc].incubatorPregAdaptationInWeek * $incubatorUpgradeSpeed>>
+		<<set _weekAdapt *= 1 + ($incubatorReproductionSetting / 5); _weekAdapt *= 1 + ($tanks[_inc].hormoneBalance / 1500)>> 
+		/*And now we done*/
+		<<set $tanks[_inc].pregAdaptation += _weekAdapt>> 
+		/* here goes side effect from intense and extreme settings: */
+		<<set _sideEffect = (random(0, 100) <= ($tanks[_inc].incubatorPregAdaptationPower - 1) * ($incubatorUpgradeSpeed / 2 + 1))>>
+		<<if _sideEffect>>
+			<<set _eff = random (1, 9)>>
+			<<switch _eff>>
+			<<case 1>>
+				<<set $tanks[_inc].geneticQuirks.wGain = 2>>
+				$His @@.orange;weight@@ balance has been affected.
+			<<case 2>>
+				<<set $tanks[_inc].geneticQuirks.wLoss = 2>>
+				$His @@.orange;weight@@ balance has been affected.
+			<<case 3>>
+				<<set $tanks[_inc].preg = -2>>
+				It detected @@.red;serious damage@@ to $his reproductive ability as a result.
+			<<case 4>>
+				<<set $tanks[_inc].geneMods.rapidCellGrowth = 2>>
+				It detected @@.orange;genetically triggered hormonal imbalance@@. The ability of $his tissues to recover from stretching is almost completely lost.
+			<<case 5>>
+				<<set $tanks[_inc].health.shortDamage += 10>>
+				It detected @@.red;short term health damage@@.
+			<<case 6>>
+				<<set $tanks[_inc].health.longDamage += 10>>
+				It detected @@.red;long term health damage@@.
+			<<case 7>>
+				<<set $tanks[_inc].health.health -= 15>>
+				It reported about @@.red;direct health damage@@.
+			<<case 8>>
+				<<set $tanks[_inc].lactation = 1>>
+				It has @@.orange;triggered a hormonal disorder@@, and $his breast glands begin to produce milk.
+			<<case 9>>
+				<<set $tanks[_inc].bellySag = 100; $tanks[_inc].bellySagPreg = 100>>
+				It activated @@.red;emergency protocols@@ caused by overpressure to $his abdominal tissues and skin. $His belly has lost muscle tone and has begun to sag.
+			<</switch>>
+		<</if>>
+	<</if>>
+
 	<<set $tanks[_inc].weight = Math.clamp($tanks[_inc].weight, -100, 200)>>
 	<<set $tanks[_inc].muscles = Math.clamp($tanks[_inc].muscles, -100, 100)>>
 	<<set $tanks[_inc].dick = Math.clamp($tanks[_inc].dick, 0, 10)>>
diff --git a/src/pregmod/incubatorWorkaround.tw b/src/pregmod/incubatorWorkaround.tw
index f280996d6d83e698cec53eedc2c70d1911198b86..ec8ade7be3a57b3e0022a2ce59f07167307d2ee7 100644
--- a/src/pregmod/incubatorWorkaround.tw
+++ b/src/pregmod/incubatorWorkaround.tw
@@ -2,6 +2,17 @@
 
 <<if $tanks.length < $incubator>>
 	<<set $activeChild.growTime = Math.trunc($targetAge*52)>>
+	<<set $activeChild.incubatorPregAdaptationPower = $incubatorPregAdaptationPower>>
+	<<if $incubatorPregAdaptationPower == 1>>
+		<<set _fullAdapt = 45000 / 2000>>
+	<<elseif $incubatorPregAdaptationPower == 2>>
+		<<set _fullAdapt = 100000 / 2000>>
+	<<elseif $incubatorPregAdaptationPower == 3>>
+		<<set _fullAdapt = 150000 / 2000>>
+	<<else>>
+		<<set _fullAdapt = 15000 / 2000>>
+	<</if>>
+	<<set $activeChild.incubatorPregAdaptationInWeek = (_fullAdapt - $activeChild.pregAdaptation) / $activeChild.growTime>>
 	<<set $tanks.push($activeChild)>>
 	<<set $incubatorSlaves++>>
 <</if>>
\ No newline at end of file
diff --git a/src/pregmod/theBlackMarket.tw b/src/pregmod/theBlackMarket.tw
index 8b886f07e1d616ac4cbd78b46c7e1fc5abed58f5..6d50039951dc272689df759dba830abfdc019c9e 100644
--- a/src/pregmod/theBlackMarket.tw
+++ b/src/pregmod/theBlackMarket.tw
@@ -248,7 +248,7 @@ He gestures to a door in the back of the stall. "The good shit's back there<<if
 							<<else>>
 								You cannot afford the asking price of @@.red;<<print cashFormat(20000)>>@@ for a supportive uterine mesh.
 							<</if>>
-							"This is an interesting one... It's designed to prevent any sort of rupturing of the uterus, but, while that idea is great and all, it does jack shit to prevent leaks from elsewhere in the organ. The guy funding the research company was pissed when his slave bloated up like a cum-filled balloon and dropped dead, destroyed most of the development lab. Fortunately, he failed to ruin the best part of it — these blueprints. Now, you're probably wondering what good is something like this, but I've done business with a number of industrial slave farms, and they swear upon its ability to force a girl to carry far more children than physically possible; well, up until their wombs crushed their organs, that is. I supposed it'd work with anything solid, really, if you enjoy sticking things up into slave girls."
+							<br>"This is an interesting one... It's designed to prevent any sort of rupturing of the uterus, but, while that idea is great and all, it does jack shit to prevent leaks from elsewhere in the organ. The guy funding the research company was pissed when his slave bloated up like a cum-filled balloon and dropped dead, destroyed most of the development lab. Fortunately, he failed to ruin the best part of it — these blueprints. Now, you're probably wondering what good is something like this, but I've done business with a number of industrial slave farms, and they swear upon its ability to force a girl to carry far more children than physically possible; well, up until their wombs crushed their organs, that is. I supposed it'd work with anything solid, really, if you enjoy sticking things up into slave girls."
 						<<else>>
 							The autosurgery lacks the finesse needed to implant something of this complexity, so designs for a supportive uterine mesh are unusable until it is upgraded.
 						<</if>>
@@ -276,7 +276,7 @@ He gestures to a door in the back of the stall. "The good shit's back there<<if
 							<<else>>
 								You cannot afford the asking price of @@.red;<<print cashFormat(20000)>>@@ for the broodmother implant firmware data.
 							<</if>>
-							"I might have something for you, if you're interested. Some time ago a hacker manage to crack the firmware of the publicly available broodmother implant and found how to manipulate it through the radio channel normally used for monitoring. His goal was to take revenge on an arcology owner whose beloved concubine had this implant, but this plan failed as he couldn't hide his hacking attempt; to send something to the implant you need to be very close to it. In fact, you need a special actuator inserted up to the cervix, which just so happens to be included in this deal. It is very much advised to use it from within a surgical suite, in case of complications, such as the sudden activation of the birthing process. But anyway, the hack, if applied appropriately, can interfere with the original logic of the implant, forcing it to release more than one ovum every week. Originally, the hacker made it about a dozen, but after we tweaked his initial code, now it will be just two or three ova. You will get all the required data and schematics for the autosurgery upgrade, but you will need to make and install it on your own."
+							<br>"I might have something for you, if you're interested. Some time ago a hacker manage to crack the firmware of the publicly available broodmother implant and found how to manipulate it through the radio channel normally used for monitoring. His goal was to take revenge on an arcology owner whose beloved concubine had this implant, but this plan failed as he couldn't hide his hacking attempt; to send something to the implant you need to be very close to it. In fact, you need a special actuator inserted up to the cervix, which just so happens to be included in this deal. It is very much advised to use it from within a surgical suite, in case of complications, such as the sudden activation of the birthing process. But anyway, the hack, if applied appropriately, can interfere with the original logic of the implant, forcing it to release more than one ovum every week. Originally, the hacker made it about a dozen, but after we tweaked his initial code, now it will be just two or three ova. You will get all the required data and schematics for the autosurgery upgrade, but you will need to make and install it on your own."
 						<<else>>
 							The autosurgery lacks the needed actuators, so applying the broodmother implant hack complex is impossible.
 						<</if>>
@@ -293,6 +293,37 @@ He gestures to a door in the back of the stall. "The good shit's back there<<if
 			<</if>>
 		<</if>>
 
+		<<if $thisWeeksIllegalWares[_bim] == "BlackmarketPregAdaptation">>
+			<br>
+			<<if $BlackmarketPregAdaptation == 0 && $minimumSlaveAge <= 6>>
+				<<if $seePreg == 1>>
+					<<if $incubatorUpgradeReproduction == 1 && $incubatorUpgradeOrgans == 1 && $ImplantProductionUpgrade == 1 && $bellyImplants == 1>>
+						<<if $surgeryUpgrade == 1>>
+							<<if $cash >= 120000>>
+								[[Purchase documents regarding the incubator pregnancy adaptation subsystem|The Black Market][cashX(-120000, "capEx"), $BlackmarketPregAdaptation = 1, _dump = $merchantIllegalWares.delete("BlackmarketPregAdaptation")]] //@@.yellowgreen;<<print cashFormat(120000)>>.@@//
+							<<else>>
+								You cannot afford the asking price of @@.red;<<print cashFormat(120000)>>@@ for the incubator pregnancy adaptation subsystem documentation.
+							<</if>>
+							<br>"I'm not sure about this... but you still might be interested. I'll just tell you a story. Some time ago there was a man with very pregnant girl in tow. Not so unusual in these days, but what made it really exclusive was the girl's age. She couldn't have been any older then six! And looked ready to birth full sized triplets, no less. And even at such size she did not look stressed by it at all. The man said that he invented a subsystem for those modern incubators that prepare the occupant's body in a special way, and this girl is test subject. I do not understand much about this technical stuff, but the documentation seems legit enough. If you like, I can sell it to you; no guarantees though."
+						<<else>>
+							The autosurgery lacks the needed actuators, so constructing even more complex incubator pregnancy adaptation subsystem is impossible.
+						<</if>>
+					<<else>>
+						You lack the facilities needed to produce something this complex, so production of incubator pregnancy adaptation subsystem is out of your reach.
+					<</if>>
+				<<else>>
+					You have no interest in research that involves pregnancy.
+					<<run $merchantIllegalWares.delete("BlackmarketPregAdaptation")>>
+				<</if>>
+			<<elseif $BlackmarketPregAdaptation == 0 && $minimumSlaveAge > 6>>
+				You have no interest in such a distasteful offer.
+				<<run $merchantIllegalWares.delete("BlackmarketPregAdaptation")>>
+			<<else>>
+				You already possess the incubator pregnancy adaptation subsystem.
+				<<run $merchantIllegalWares.delete("BlackmarketPregAdaptation")>>
+			<</if>>
+		<</if>>
+
 		<<if $thisWeeksIllegalWares[_bim] == "RapidCellGrowthFormula">>
 			<br>
 			<<if $geneticMappingUpgrade == 0>>
@@ -306,7 +337,7 @@ He gestures to a door in the back of the stall. "The good shit's back there<<if
 					<<else>>
 						You cannot afford the asking price of @@.red;<<print cashFormat(70000)>>@@ for elasticity increasing injections.
 					<</if>>
-					"These injections will loosen up any skin, muscle, organ or whatever living flesh you inject them into. I'm not entirely sure how they work, something about increased cell growth or something. Probably not the safest thing to use, what with it pretty much being cancer in a vial. From what I've gathered, they were originally being developed to use with fillable breast implants. Some rich investor got his rocks off from BE and decided to make his dream a reality. Worked great too, save for the fact that the breasts didn't shrink down when the implant was emptied. Yep, she was left with a big ol' pair of floppy tits after being stretched so much. My take is, if you want to get big, fast, this is the drug for you, but only if you don't care about ever going back."
+					<br>"These injections will loosen up any skin, muscle, organ or whatever living flesh you inject them into. I'm not entirely sure how they work, something about increased cell growth or something. Probably not the safest thing to use, what with it pretty much being cancer in a vial. From what I've gathered, they were originally being developed to use with fillable breast implants. Some rich investor got his rocks off from BE and decided to make his dream a reality. Worked great too, save for the fact that the breasts didn't shrink down when the implant was emptied. Yep, she was left with a big ol' pair of floppy tits after being stretched so much. My take is, if you want to get big, fast, this is the drug for you, but only if you don't care about ever going back."
 				<<else>>
 					You already possess formulas for elasticity increasing injections.
 					<<run $merchantIllegalWares.delete("RapidCellGrowthFormula")>>
@@ -324,7 +355,7 @@ He gestures to a door in the back of the stall. "The good shit's back there<<if
 						<<else>>
 							You cannot afford the asking price of @@.red;<<print cashFormat(50000)>>@@ for implants that synchronize ova release.
 						<</if>>
-						"This pair of implants attaches directly to a girl's ovaries and uses signals to communicate with each other. When one releases an egg, the other is spurred to do the same — in other words, guaranteed twins, always. Now, you're probably wondering why I have this for sale and not one of the big names; well what do you think happens when you mix fertility drugs, or hell just a girl prone to twins, and something that effectively doubles egg counts? That's right: she gets really, really pregnant, like, dangerously so. Kind of boring compared to some of the other stuff I get in, to be honest. Though I sometimes wonder what would happen if you got multiple slaves with these implanted and kept them close to each other... Would one ovulating trigger every other implant to do the same?"
+						<br>"This pair of implants attaches directly to a girl's ovaries and uses signals to communicate with each other. When one releases an egg, the other is spurred to do the same — in other words, guaranteed twins, always. Now, you're probably wondering why I have this for sale and not one of the big names; well what do you think happens when you mix fertility drugs, or hell just a girl prone to twins, and something that effectively doubles egg counts? That's right: she gets really, really pregnant, like, dangerously so. Kind of boring compared to some of the other stuff I get in, to be honest. Though I sometimes wonder what would happen if you got multiple slaves with these implanted and kept them close to each other... Would one ovulating trigger every other implant to do the same?"
 					<<else>>
 						You lack the facilities needed to produce implants of this complexity, so schematics for implants that synchronize ova release are currently unobtainable.
 					<</if>>
@@ -348,7 +379,7 @@ He gestures to a door in the back of the stall. "The good shit's back there<<if
 						<<else>>
 							You cannot afford the asking price of @@.red;<<print cashFormat(80000)>>@@ for asexually reproducing ovaries.
 						<</if>>
-						"Ever wanted kids but were too lazy to even try? Then this is the modification for you! Just replace your slave's existing ovaries with these bad girls and she'll never be without child again! Sure there might be a little bit of inbreeding going on, given that she'd be both the mother and father and all that, and sure she might uncontrollably orgasm herself into a coma from trying to fertilize her own eggs, but think of all the time you'd save from not fucking her! Now, why it was designed that way I couldn't tell you, but from what I hear it's quite the show to watch a girl squirming in constant orgasm as she impregnates herself."
+						<br>"Ever wanted kids but were too lazy to even try? Then this is the modification for you! Just replace your slave's existing ovaries with these bad girls and she'll never be without child again! Sure there might be a little bit of inbreeding going on, given that she'd be both the mother and father and all that, and sure she might uncontrollably orgasm herself into a coma from trying to fertilize her own eggs, but think of all the time you'd save from not fucking her! Now, why it was designed that way I couldn't tell you, but from what I hear it's quite the show to watch a girl squirming in constant orgasm as she impregnates herself."
 					<<else>>
 						You lack the facilities needed to grow organs, so methods of asexual reproduction are currently unobtainable.
 					<</if>>
@@ -405,7 +436,7 @@ He gestures to a door in the back of the stall. "The good shit's back there<<if
 							You cannot afford the asking price of @@.red;<<print cashFormat(25000)>>@@ for animal anal wombs and ovaries.
 						<</if>>
 						/ TODO: flesh this out some more /
-						"Got something real special this week. These are schematics for implanting non-human organs into humans. My supplier told me they came from some military experiments or something — maybe they were trying to make some kind of super soldier. Not my business, though."
+						<br>"Got something real special this week. These are schematics for implanting non-human organs into humans. My supplier told me they came from some military experiments or something — maybe they were trying to make some kind of super soldier. Not my business, though."
 					<<else>>
 						You lack the facilities required to grow organs.
 					<</if>>
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 51c223377b3932cb723ca252f0523a0be0c430c7..2ab1de0a76e52ca09c3ee531a1281df7bd10f674 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -171,7 +171,7 @@
 				<div>
 					[[Remote surgery|Remote Surgery][$activeSlave = $slaves[_i], $degradation = 0]]
 					<span class="note">
-						Surgically modify your slave with state of the art plastic surgery and more.  Alter $his senses, skelletal structure, organs, and even more.
+						Surgically modify your slave with state of the art plastic surgery and more.  Alter $his senses, skeletal structure, organs, and even more.
 					</span>
 				</div>
 				<<if $prostheticsUpgrade > 0>>