diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js
index fdb0f727dcd3be8600968f816c7d2192183abd92..ed9f9d2b7131f6198fdfbee32a959a1fa87517c3 100644
--- a/js/003-data/gameVariableData.js
+++ b/js/003-data/gameVariableData.js
@@ -445,6 +445,7 @@ App.Data.resetOnNGPlus = {
 	farmyardBreeding: 0,
 	farmyardRestraints: 0,
 	farmyardShows: 0,
+	farmyardPregSetting: 0,
 	DJignoresFlaws: 0,
 	DJnoSex: 0,
 	slaveFightingBG: 0,
diff --git a/src/js/birth/birth.js b/src/js/birth/birth.js
index 63eb0cb65b4709ef31db3299666b51ec40b83e60..114d63657d00e5408cd31dc6c861a617f6e8dd65 100644
--- a/src/js/birth/birth.js
+++ b/src/js/birth/birth.js
@@ -309,14 +309,14 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 			}
 			if (slave.fetish === "pregnancy") {
 				r.push(`${He}'s a little disappointed ${he} didn't get to give birth, but can't wait to get pregnant again.`);
-			} else if ((slave.devotion > 50)) {
+			} else if (slave.devotion > 50) {
 				r.push(`${He} is`);
 				r.push(App.UI.DOM.makeElement("span", `pleased by this stark development,`, "hotpink"));
 				r.push(`since ${he} is so attentive to your will. ${He} also expects ${he}'ll be able to fuck better now.`);
 				slave.devotion += 4;
-			} else if ((slave.devotion > 20)) {
+			} else if (slave.devotion > 20) {
 				r.push(`${He} is broken enough to accept your control of ${his} pregnancies.`);
-			} else if ((slave.devotion >= -20)) {
+			} else if (slave.devotion >= -20) {
 				r.push(`${He} would have preferred to give birth when ${he} was ready and is`);
 				r.push(App.UI.DOM.makeElement("span", `sensibly fearful`, "gold"));
 				r.push(`of your total power over ${his} body.`);
@@ -856,7 +856,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 				r.push(App.UI.DOM.makeElement("span", `stretched out ${his} anus.`, "lime"));
 				//no need for description now
 				*/
-				if ((V.dairyPregSetting > 1) && (slave.anus < 4)) {
+				if (V.dairyPregSetting > 1 && slave.anus < 4) {
 					slave.anus += 1;
 				} else if (slave.anus < 3) {
 					slave.anus += 1;
@@ -867,7 +867,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 				r.push(App.UI.DOM.makeElement("span", `stretched out ${his} vagina.`, "lime"));
 				//no need for description now
 				*/
-				if ((V.dairyPregSetting > 1) && (slave.vagina < 4)) {
+				if (V.dairyPregSetting > 1 && slave.vagina < 4) {
 					slave.vagina += 1;
 				} else if (slave.vagina < 3) {
 					slave.vagina += 1;
@@ -894,7 +894,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 					if (slave.devotion < oldDevotion) {
 						if (slave.devotion > 50) {
 							r.push(`Though ${he} is unhappy with the results, ${he} consoles ${himself} with the knowledge that you cared enough to do it personally.`);
-						} else if ((slave.devotion >= -20)) {
+						} else if (slave.devotion >= -20) {
 							r.push(`${He} is`);
 							r.push(App.UI.DOM.makeElement("span", `even more afraid`, "gold"));
 							r.push(`of you afterward than ${he} would otherwise be. You must seem a cruel and near-omnipotent power to ${him}.`);
@@ -914,7 +914,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 							r.push(`of your skill.`);
 							slave.devotion += 4;
 							slave.trust += 4;
-						} else if ((slave.devotion >= -20)) {
+						} else if (slave.devotion >= -20) {
 							r.push(`${He} is quite struck by how you performed the surgery personally. ${He} admires your refusal to be one of the idle rich, and`);
 							r.push(App.UI.DOM.makeElement("span", `likes you more.`, "hotpink"));
 							slave.devotion += 5;
@@ -1507,14 +1507,14 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 				r.push(
 					App.UI.DOM.makeElement("span", `${cashFormat(numBeingBorn * (babyCost))}.`, "yellowgreen")
 				);
-				cashX((numBeingBorn * (babyCost)), "babyTransfer");
+				cashX(numBeingBorn * (babyCost), "babyTransfer");
 			} else if (slave.pregSource === -9 && V.DefaultBirthDestination === "the market") {
 				babyCost = random(1000, 2500);
 				r.push(`${His} ${(numBeingBorn > 1) ? `babies were` : `baby was`} purchased by the Futanari Sisters for`);
 				r.push(
 					App.UI.DOM.makeElement("span", `${cashFormat(numBeingBorn * (babyCost))}.`, "yellowgreen")
 				);
-				cashX((numBeingBorn * (babyCost)), "babyTransfer");
+				cashX(numBeingBorn * (babyCost), "babyTransfer");
 			} else if (V.DefaultBirthDestination === "individually decided fates") {
 				r.push(`Unless you provide otherwise, the ${children} will be remanded to one of ${V.arcologies[0].name}'s slave orphanages.`);
 				V.slaveOrphanageTotal += numBeingBorn; // Player may choose nothing.  Assume that now, and reverse it later if needed.
@@ -1937,7 +1937,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 					slave.devotion -= 30;
 				}
 			}
-			cashX((numBeingBorn * (50 + babyCost)), "babyTransfer");
+			cashX(numBeingBorn * (50 + babyCost), "babyTransfer");
 			App.Events.addNode(el, r);
 			return el;
 		}
@@ -2093,7 +2093,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 						r.push(App.UI.DOM.makeElement("span", `curious`, "hotpink"));
 						r.push(`about the details of the implant, and eagerly awaits to see the end result.`);
 						slave.devotion += 4;
-					} else if ((slave.devotion >= -20)) {
+					} else if (slave.devotion >= -20) {
 						r.push(`${He} leaves the surgery with ${his} belly still very gravid, and as such, knows you put something into ${his} womb replacing ${his} prior natural pregnancy. ${He} understands the realities of ${his} life as a slave, but ${he} is still surprised at what now resides in ${his} womb. ${He} is`);
 						r.push(App.UI.DOM.makeElement("span", `sensibly fearful`, "gold"));
 						r.push(`of your total power over ${his} body.`);
@@ -2316,11 +2316,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 							if (random(1, 20) > suddenBirth) {
 								r.push(`${He} is helped back to ${his} bed and stripped before slipping into it. Instinctively, ${he} begins to push out ${firstText} baby. ${His} child is promptly taken and ${he} rests awhile before returning to sharing ${his} gravid body with the public.`);
 							} else {
-								if ((birthScene > 80) && canDoVaginal(slave)) {
+								if (birthScene > 80 && canDoVaginal(slave)) {
 									r.push(`While riding a citizen's dick, ${slave.slaveName}'s water breaks on him. Showing no signs of stopping, he shoves ${his} bulk off of him. Instinctively, ${he} begins to push out ${firstText} baby, indifferent to who may be watching ${his} naked crotch. ${He} draws ${his} child to ${his} breast before seeking out the next citizen's cock.`);
-								} else if ((birthScene > 60) && canDoAnal(slave)) {
+								} else if (birthScene > 60 && canDoAnal(slave)) {
 									r.push(`While taking a citizen's dick in ${his} ass, ${slave.slaveName}'s water breaks. ${He} shows no signs of slowing down, so he allows ${him} to reposition and continue. Instinctively, ${he} begins to push out ${firstText} baby, indifferent to who may be watching ${his} naked crotch. He came strongly thanks to ${him} and gives ${him} a slap on the ass as ${he} struggles to reach ${his} child around ${his} still very gravid middle. Once ${he} has brought ${his} child to ${his} breast, ${he} seeks out the next citizen's cock.`);
-								} else if ((birthScene > 40)) {
+								} else if (birthScene > 40) {
 									r.push(`While licking a citizen's cunt, ${slave.slaveName}'s water breaks. ${He} shows no signs of slowing down, so she allows ${him} to reposition and continue.`);
 									r.push(clothingBirth());
 									r.push(`The citizen splashes across ${his} face as ${he} struggles to reach ${firstText} baby around ${his} still very gravid middle. Once ${he} has brought ${his} child to ${his} breast, ${he} seeks out the next citizen's cunt.`);
@@ -2334,7 +2334,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 							if (random(1, 20) > suddenBirth) {
 								r.push(`${He} is helped back to ${his} bed and stripped before slipping into it. ${He} makes ${himself} comfortable and begins working on birthing ${firstText} baby${UH}. ${His} child is promptly taken and ${he} rests awhile before returning to sharing ${his} gravid body with the public.`);
 							} else {
-								if ((birthScene > 80) && canDoVaginal(slave)) {
+								if (birthScene > 80 && canDoVaginal(slave)) {
 									r.push(`While riding a citizen's dick, ${slave.slaveName}'s water breaks on him. ${He} desperately tries to disengage but he grabs ${his} hips and slams ${him} back down. He thoroughly enjoys ${his} contracting cunt before pushing ${him} off and standing over ${him}, jacking off. Quickly ${he} spreads ${his} legs apart and begins pushing out ${firstText} baby${UH}. ${He} can't hide what's happening between ${his} legs,`);
 									if (slave.fetish === "humiliation") {
 										r.push(`but that only makes it more exciting.`);
@@ -2343,7 +2343,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 									}
 									r.push(`He cums over ${his} heaving, still very gravid body and moves on leaving ${him} to recover and collect ${his} child to be sent off.`);
 									humiliation = 1;
-								} else if ((birthScene > 60) && canDoAnal(slave)) {
+								} else if (birthScene > 60 && canDoAnal(slave)) {
 									r.push(`While taking a citizen's dick in ${his} ass, ${slave.slaveName}'s water breaks. ${He} desperately tries to disengage but he grabs ${his} hips and slams into ${him} hard. Quickly ${he} spreads ${his} legs apart and begins pushing out ${firstText} baby${UH}. ${He} can't hide what's happening between ${his} legs,`);
 									if (slave.fetish === "humiliation") {
 										r.push(`but that only makes it more exciting.`);
@@ -2352,7 +2352,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 									}
 									r.push(`He came strongly thanks to ${him} and gives ${him} a slap on the ass as ${he} collapses onto ${his} still very gravid belly and slips to ${his} side. ${He} quickly gathers ${his} child to be sent off.`);
 									humiliation = 1;
-								} else if ((birthScene > 40)) {
+								} else if (birthScene > 40) {
 									r.push(`While licking a citizen's cunt, ${slave.slaveName}'s water breaks. ${He} desperately tries to disengage but she grabs ${his} head and slams ${him} back into her crotch.`);
 									humiliation = 1;
 									r.push(clothingBirth());
@@ -2370,11 +2370,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 							if (random(1, 20) > suddenBirth) {
 								r.push(`${He} returns to ${his} bed and strips before slipping into it. Instinctively, ${he} begins to push out ${firstText} baby. ${His} child is promptly taken and ${he} rests awhile before returning to sharing ${his} gravid body with the public.`);
 							} else {
-								if ((birthScene > 80) && canDoVaginal(slave)) {
+								if (birthScene > 80 && canDoVaginal(slave)) {
 									r.push(`While riding a citizen's dick, ${slave.slaveName}'s water breaks on him. Showing no signs of stopping, he shoves ${his} bulk off of him. Instinctively, ${he} begins to push out ${firstText} baby, indifferent to who may be watching ${his} naked crotch. ${He} draws ${his} child to ${his} breast before seeking out the next citizen's cock.`);
-								} else if ((birthScene > 60) && canDoAnal(slave)) {
+								} else if (birthScene > 60 && canDoAnal(slave)) {
 									r.push(`While taking a citizen's dick in ${his} ass, ${slave.slaveName}'s water breaks. ${He} shows no signs of slowing down, so he allows ${him} to reposition and continue. Instinctively, ${he} begins to push out ${firstText} baby, indifferent to who may be watching ${his} naked crotch. He came strongly thanks to ${him} and gives ${him} a slap on the ass as ${he} struggles to reach ${his} child around ${his} still very gravid middle. Once ${he} has brought ${his} child to ${his} breast, ${he} seeks out the next citizen's cock.`);
-								} else if ((birthScene > 40)) {
+								} else if (birthScene > 40) {
 									r.push(`While licking a citizen's cunt, ${slave.slaveName}'s water breaks. ${He} shows no signs of slowing down, so she allows ${him} to reposition and continue.`);
 									r.push(clothingBirth());
 									r.push(`The citizen splashes across ${his} face as ${he} struggles to reach ${firstText} baby around ${his} still very gravid middle. Once ${he} has brought ${his} child to ${his} breast, ${he} seeks out the next citizen's cunt.`);
@@ -2388,7 +2388,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 							if (random(1, 20) > suddenBirth) {
 								r.push(`${He} returns to ${his} bed and strips before slipping into it. ${He} makes ${himself} comfortable and begins working on birthing ${firstText} baby${UH}. ${His} child is promptly taken and ${he} rests awhile before returning to sharing ${his} gravid body with the public.`);
 							} else {
-								if ((birthScene > 80) && canDoVaginal(slave)) {
+								if (birthScene > 80 && canDoVaginal(slave)) {
 									r.push(`While riding a citizen's dick, ${slave.slaveName}'s water breaks on him. ${He} desperately tries to disengage but he grabs ${his} hips and slams ${him} back down. He thoroughly enjoys ${his} contracting cunt before pushing ${him} off and standing over ${him}, jacking off. Quickly ${he} spreads ${his} legs apart and begins pushing out ${firstText} baby${UH}. ${He} can't hide what's happening between ${his} legs,`);
 									if (slave.fetish === "humiliation") {
 										r.push(`but that only makes it more exciting.`);
@@ -2397,7 +2397,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 									}
 									r.push(`He cums over ${his} heaving, still very gravid body and moves on, leaving ${him} to recover and collect ${his} child to be sent off.`);
 									humiliation = 1;
-								} else if ((birthScene > 60) && canDoAnal(slave)) {
+								} else if (birthScene > 60 && canDoAnal(slave)) {
 									r.push(`While taking a citizen's dick in ${his} ass, ${slave.slaveName}'s water breaks. ${He} desperately tries to disengage but he grabs ${his} hips and slams into ${him} hard. Quickly ${he} spreads ${his} legs apart and begins pushing out ${firstText} baby${UH}. ${He} can't hide what's happening between ${his} legs,`);
 									if (slave.fetish === "humiliation") {
 										r.push(`but that only makes it more exciting.`);
@@ -2406,7 +2406,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 									}
 									r.push(`He came strongly thanks to ${him} and gives ${him} a slap on the ass as ${he} collapses onto ${his} still very gravid belly and slips to ${his} side. ${He} quickly gathers ${his} child to be sent off.`);
 									humiliation = 1;
-								} else if ((birthScene > 40)) {
+								} else if (birthScene > 40) {
 									r.push(`While licking a citizen's cunt, ${slave.slaveName}'s water breaks. ${He} desperately tries to disengage but ${he} grabs ${his} head and slams ${him} back into her crotch.`);
 									humiliation = 1;
 									r.push(clothingBirth());
@@ -3186,11 +3186,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 							if (random(1, 20) > suddenBirth) {
 								r.push(`${He} is helped to a private room in the back of the brothel by a group of eager patrons. Instinctively, ${he} begins to push out ${firstText} baby, indifferent to ${his} audience. ${His} child is promptly taken and, following a cleaning and fresh change of clothes, the audience is allowed to have their way with ${his} still very gravid body.`);
 							} else {
-								if ((birthScene > 80) && canDoVaginal(slave)) {
+								if (birthScene > 80 && canDoVaginal(slave)) {
 									r.push(`While riding a customer's dick, ${slave.slaveName}'s water breaks on him. Showing no signs of stopping, he shoves ${his} bulk off of him. Instinctively, ${he} begins to push out ${firstText} baby, indifferent to who may be watching ${his} naked crotch. ${He} draws ${his} child to ${his} breast before seeking out the next customer's cock.`);
-								} else if ((birthScene > 60) && canDoAnal(slave)) {
+								} else if (birthScene > 60 && canDoAnal(slave)) {
 									r.push(`While taking a customer's dick in ${his} ass, ${slave.slaveName}'s water breaks. ${He} shows no signs of slowing down, so he allows ${him} to reposition and continue. Instinctively, ${he} begins to push out ${firstText} baby, indifferent to who may be watching ${his} naked crotch. He came strongly thanks to ${him} and gives ${him} a slap on the ass as ${he} struggles to reach ${his} child around ${his} still very gravid middle. Once ${he} has brought ${his} child to ${his} breast, ${he} seeks out the next customer's cock.`);
-								} else if ((birthScene > 40)) {
+								} else if (birthScene > 40) {
 									r.push(`While licking a customer's cunt, ${slave.slaveName}'s water breaks. ${He} shows no signs of slowing down, so she allows ${him} to reposition and continue.`);
 									r.push(clothingBirth());
 									r.push(`The customer splashes across ${his} face as ${he} struggles to reach ${firstText} child around ${his} still very gravid middle. Once ${he} has brought ${his} child to ${his} breast, ${he} seeks out the next customer's cunt.`);
@@ -3217,7 +3217,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 									r.push(`until one of the patrons grabs ${him} by the swollen waist and pulls ${him} onto his lap. ${He} cries out as his dick slips over ${his} exposed crotch, but can do nothing to stop ${firstText} baby from being born. ${He} hates that the first thing ${his} child will touch is an erect cock; a bitter reminder${(slave.geneticQuirks.uterineHypersensitivity === 2) ? `, which even powerful orgasm can't erase,` : ``} of what its future will likely hold. ${His} fully born child is promptly taken and ${his} clients descend upon ${his} vulnerable, still very gravid, body.`);
 								}
 							} else {
-								if ((birthScene > 80) && canDoVaginal(slave)) {
+								if (birthScene > 80 && canDoVaginal(slave)) {
 									r.push(`While riding a customer's dick, ${slave.slaveName}'s water breaks on him. ${He} desperately tries to disengage but he grabs ${his} hips and slams ${him} back down. He thoroughly enjoys ${his} contracting cunt before pushing ${him} off and standing over ${him}, jacking off. Quickly ${he} spreads ${his} legs apart and begins pushing out ${firstText} baby${UH}. ${He} can't hide what's happening between ${his} legs,`);
 									if (slave.fetish === "humiliation") {
 										r.push(`but that only makes it more exciting.`);
@@ -3226,7 +3226,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 									}
 									r.push(`He cums over ${his} heaving, still very gravid body and moves on leaving ${him} to recover and collect ${his} child to be sent off.`);
 									humiliation = 1;
-								} else if ((birthScene > 60) && canDoAnal(slave)) {
+								} else if (birthScene > 60 && canDoAnal(slave)) {
 									r.push(`While taking a customer's dick in ${his} ass, ${slave.slaveName}'s water breaks. ${He} desperately tries to disengage but he grabs ${his} hips and slams into ${him} hard. Quickly ${he} spreads ${his} legs apart and begins pushing out ${firstText} baby${UH}. ${He} can't hide what's happening between ${his} legs,`);
 									if (slave.fetish === "humiliation") {
 										r.push(`but that only makes it more exciting.`);
@@ -3235,7 +3235,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 									}
 									r.push(`He came strongly thanks to ${him} and gives ${him} a slap on the ass as ${he} collapses onto ${his} still very gravid belly and slips to ${his} side. ${He} quickly gathers ${his} child to be sent off.`);
 									humiliation = 1;
-								} else if ((birthScene > 40)) {
+								} else if (birthScene > 40) {
 									r.push(`While licking a customer's cunt, ${slave.slaveName}'s water breaks. ${He} desperately tries to disengage but she grabs ${his} head and slams ${him} back into ${his} crotch.`);
 									humiliation = 1;
 									r.push(clothingBirth());
@@ -3253,11 +3253,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 							if (random(1, 20) > suddenBirth) {
 								r.push(`${He} heads to a private room in the back of the brothel filled with eager patrons. Instinctively, ${he} begins to push out ${firstText} baby, indifferent to ${his} audience. ${His} child is promptly taken and, following a cleaning and fresh change of clothes, the audience is allowed to have their way with ${his} still very gravid body.`);
 							} else {
-								if ((birthScene > 80) && canDoVaginal(slave)) {
+								if (birthScene > 80 && canDoVaginal(slave)) {
 									r.push(`While riding a customer's dick, ${slave.slaveName}'s water breaks on him. Showing no signs of stopping, he shoves ${his} bulk off of him. Instinctively, ${he} begins to push out ${firstText} baby, indifferent to who may be watching ${his} naked crotch. ${He} draws ${his} child to ${his} breast before seeking out the next customer's cock.`);
-								} else if ((birthScene > 60) && canDoAnal(slave)) {
+								} else if (birthScene > 60 && canDoAnal(slave)) {
 									r.push(`While taking a customer's dick in ${his} ass, ${slave.slaveName}'s water breaks. ${He} shows no signs of slowing down, so he allows ${him} to reposition and continue. Instinctively, ${he} begins to push out ${firstText} baby, indifferent to who may be watching ${his} naked crotch. He came strongly thanks to ${him} and gives ${him} a slap on the ass as ${he} struggles to reach ${his} child around ${his} still very gravid middle. Once ${he} has brought ${his} child to ${his} breast, ${he} seeks out the next customer's cock.`);
-								} else if ((birthScene > 40)) {
+								} else if (birthScene > 40) {
 									r.push(`While licking a customer's cunt, ${slave.slaveName}'s water breaks. ${He} shows no signs of slowing down, so she allows ${him} to reposition and continue.`);
 									r.push(clothingBirth());
 									r.push(`The customer splashes across ${his} face as ${he} struggles to reach ${his} child around ${his} still very gravid middle. Once ${he} has brought ${his} child to ${his} breast, ${he} seeks out the next customer's cunt.`);
@@ -3284,7 +3284,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 									r.push(`until one of the patrons grabs ${him} by the swollen waist and pulls ${him} onto his lap. ${He} cries out as his dick slips over ${his} exposed crotch, but can do nothing to stop ${firstText} baby from being born. ${He} hates that the first thing ${his} child will touch is an erect cock; a bitter reminder${(slave.geneticQuirks.uterineHypersensitivity === 2) ? `, which even ${his} powerful orgasm can't erase,` : ``} of what its future will likely hold. ${His} fully born child is promptly taken and ${his} clients descend upon ${his} vulnerable, still very gravid, body.`);
 								}
 							} else {
-								if ((birthScene > 80) && canDoVaginal(slave)) {
+								if (birthScene > 80 && canDoVaginal(slave)) {
 									r.push(`While riding a customer's dick, ${slave.slaveName}'s water breaks on him. ${He} desperately tries to disengage but he grabs ${his} hips and slams ${him} back down. He thoroughly enjoys ${his} contracting cunt before pushing ${him} off and standing over ${him}, jacking off. Quickly ${he} spreads ${his} legs apart and begins pushing out ${firstText} baby${UH}. ${He} can't hide what's happening between ${his} legs,`);
 									if (slave.fetish === "humiliation") {
 										r.push(`but that only makes it more exciting.`);
@@ -3293,7 +3293,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 									}
 									r.push(`He cums over ${his} heaving, still very gravid body and moves on leaving ${him} to recover and collect ${his} child to be sent off.`);
 									humiliation = 1;
-								} else if ((birthScene > 60) && canDoAnal(slave)) {
+								} else if (birthScene > 60 && canDoAnal(slave)) {
 									r.push(`While taking a customer's dick in ${his} ass, ${slave.slaveName}'s water breaks. ${He} desperately tries to disengage but he grabs ${his} hips and slams into ${him} hard. Quickly ${he} spreads ${his} legs apart and begins pushing out ${firstText} baby${UH}. ${He} can't hide what's happening between ${his} legs,`);
 									if (slave.fetish === "humiliation") {
 										r.push(`but that only makes it more exciting.`);
@@ -3302,7 +3302,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 									}
 									r.push(`He came strongly thanks to ${him} and gives ${him} a slap on the ass as ${he} collapses onto ${his} still very gravid belly and slips to ${his} side. ${He} quickly gathers ${his} child to be sent off.`);
 									humiliation = 1;
-								} else if ((birthScene > 40)) {
+								} else if (birthScene > 40) {
 									r.push(`While licking a customer's cunt, ${slave.slaveName}'s water breaks. ${He} desperately tries to disengage but she grabs ${his} head and slams ${him} back into her crotch.`);
 									humiliation = 1;
 									r.push(clothingBirth());
@@ -3414,7 +3414,6 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 					if (slave.pregSource === V.HeadGirlID) {
 						if (random(1, 20) > suddenBirth) {
 							r.push(`${S.HeadGirl.slaveName} makes sure that the mother of ${his2} child is happy and comfortable for the upcoming birth, even if they won't be spending much time with their offspring. ${he2} carefully undresses ${slave.slaveName}, all the while whispering sweet nothings in ${his} ear. ${He} begins to push out ${firstText} baby${UH}, and ${his} child is carefully collected by their father. Once they are out of the way, ${S.HeadGirl.slaveName} moves in to fondle ${slave.slaveName}'s tired, still very gravid body.`);
-						} else {
 						}
 					} else {
 						if (!canWalk(slave)) {
@@ -4096,11 +4095,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 						if (slave.fetish === "mindbroken") {
 							if (pbw > 80) {
 								r.push(`While taking a citizen's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood out on him. Showing no signs of stopping, he struggles to shoves ${his} bulk off of him. Instinctively ${he} begins to push out ${his} baby, indifferent to who may be watching ${his} naked crotch. ${He} is handed ${his} child, which ${he} clutches to ${his} breast before beckoning for the next citizen's cock.`);
-							} else if ((pbw > 60)) {
+							} else if (pbw > 60) {
 								r.push(`While sucking a citizen's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} shows no signs of slowing down, so he allows ${him} to continue.`);
 								r.push(clothingBirth());
 								r.push(`He cums down ${his} throat before placing ${his} child on ${his} breast, as ${he} starts beckoning for the next citizen's cock.`);
-							} else if ((pbw > 40)) {
+							} else if (pbw > 40) {
 								r.push(`While licking a citizen's cunt, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} shows no signs of slowing down, so ${he} allows ${him} to continue.`);
 								r.push(clothingBirth());
 								r.push(`The citizen splashes across ${his} face before placing ${his} child on ${his} breast, as ${he} begins beckoning for the next citizen's cunt.`);
@@ -4117,12 +4116,12 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 								}
 								r.push(`He comes over ${his} exhausted body and moves on leaving ${him} to recover and await ${his} child to be sent off.`);
 								humiliation = 1;
-							} else if ((pbw > 60)) {
+							} else if (pbw > 60) {
 								r.push(`While sucking a citizen's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood. Since ${he} is incapable of moving ${himself}, ${he} carries on sucking.`);
 								humiliation = 1;
 								r.push(clothingBirth());
 								r.push(`He cums down ${his} throat before letting ${him} collapse onto ${his} bloated form. When ${he} recovers, ${he} gathers ${his} child to be sent off.`);
-							} else if ((pbw > 40)) {
+							} else if (pbw > 40) {
 								r.push(`While licking a citizen's cunt, ${slave.slaveName}'s body begins to birth another of ${his} brood. Since ${he} is incapable of moving ${himself}, ${he} carries on licking.`);
 								humiliation = 1;
 								r.push(clothingBirth());
@@ -4142,11 +4141,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 						if (slave.fetish === "mindbroken") {
 							if (pbw > 80) {
 								r.push(`While taking a citizen's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood out on him. Showing no signs of stopping, he struggles to shoves ${his} bulk off of him. Instinctively ${he} begins to push out ${his} baby, indifferent to who may be watching ${his} naked crotch. ${He} is handed ${his} child, which ${he} clutches to ${his} breast before seeking out the next citizen's cock.`);
-							} else if ((pbw > 60)) {
+							} else if (pbw > 60) {
 								r.push(`While sucking a citizen's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} shows no signs of slowing down, so he allows ${him} to reposition and continue.`);
 								r.push(clothingBirth());
 								r.push(`He cums down ${his} throat before placing ${his} child on ${his} breast, as ${he} begins seeking out the next citizen's cock.`);
-							} else if ((pbw > 40)) {
+							} else if (pbw > 40) {
 								r.push(`While licking a citizen's cunt, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} shows no signs of slowing down, so ${he} allows ${him} to reposition and continue.`);
 								r.push(clothingBirth());
 								r.push(`The citizen splashes across ${his} face before placing ${his} child on ${his} breast, as ${he} begins seeking out the next citizen's cunt.`);
@@ -4163,12 +4162,12 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 								}
 								r.push(`He comes over ${his} exhausted body and moves on leaving ${him} to recover and collect ${his} child to be sent off.`);
 								humiliation = 1;
-							} else if ((pbw > 60)) {
+							} else if (pbw > 60) {
 								r.push(`While sucking a citizen's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} desperately tries to disengage but he grabs ${his} head and slams ${him} back into his crotch.`);
 								humiliation = 1;
 								r.push(clothingBirth());
 								r.push(`He cums down ${his} throat before letting ${him} collapse onto ${his} bloated form. When ${he} recovers, ${he} gathers ${his} child to be sent off.`);
-							} else if ((pbw > 40)) {
+							} else if (pbw > 40) {
 								r.push(`While licking a citizen's cunt, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} desperately tries to disengage but she grabs ${his} head and slams ${him} back into her crotch.`);
 								humiliation = 1;
 								r.push(clothingBirth());
@@ -4567,11 +4566,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 						if (slave.fetish === "mindbroken") {
 							if (pbw > 80) {
 								r.push(`While taking a customer's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood out on him. Showing no signs of stopping, he struggles to shoves ${his} bulk off of him. Instinctively ${he} begins to push out ${his} baby, indifferent to who may be watching ${his} naked crotch. ${He} is handed ${his} child, which ${he} clutches to ${his} breast before beckoning for the next customer's cock.`);
-							} else if ((pbw > 60)) {
+							} else if (pbw > 60) {
 								r.push(`While sucking a customer's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} shows no signs of slowing down, so he allows ${him} to continue.`);
 								r.push(clothingBirth());
 								r.push(`He cums down ${his} throat before placing ${his} child on ${his} breast, as ${he} beckoning for the next customer's cock.`);
-							} else if ((pbw > 40)) {
+							} else if (pbw > 40) {
 								r.push(`While licking a customer's cunt, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} shows no signs of slowing down, so she allows ${him} to continue.`);
 								r.push(clothingBirth());
 								r.push(`The customer splashes across ${his} face before placing ${his} child on ${his} breast, as ${he} begins beckoning for the next customer's cunt.`);
@@ -4588,12 +4587,12 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 								}
 								r.push(`He comes over ${his} exhausted body and moves on leaving ${him} to recover and await ${his} child to be sent off.`);
 								humiliation = 1;
-							} else if ((pbw > 60)) {
+							} else if (pbw > 60) {
 								r.push(`While sucking a customer's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood. Since ${he} is incapable of moving ${himself}, ${he} carries on sucking.`);
 								humiliation = 1;
 								r.push(clothingBirth());
 								r.push(`He cums down ${his} throat before letting ${him} collapse onto ${his} bloated form. When ${he} recovers, ${he} gathers ${his} child to be sent off.`);
-							} else if ((pbw > 40)) {
+							} else if (pbw > 40) {
 								r.push(`While licking a customer's cunt, ${slave.slaveName}'s body begins to birth another of ${his} brood. Since ${he} is incapable of moving ${himself}, ${he} carries on licking.`);
 								humiliation = 1;
 								r.push(clothingBirth());
@@ -4613,11 +4612,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 						if (slave.fetish === "mindbroken") {
 							if (pbw > 80) {
 								r.push(`While taking a customer's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood out on him. Showing no signs of stopping, he struggles to shoves ${his} bulk off of him. Instinctively ${he} begins to push out ${his} baby, indifferent to who may be watching ${his} naked crotch. ${He} is handed ${his} child, which ${he} clutches to ${his} breast before seeking out the next citizen's cock.`);
-							} else if ((pbw > 60)) {
+							} else if (pbw > 60) {
 								r.push(`While sucking a customer's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} shows no signs of slowing down, so he allows ${him} to reposition and continue.`);
 								r.push(clothingBirth());
 								r.push(`He cums down ${his} throat before placing ${his} child on ${his} breast, as ${he} begins seeking out the next citizen's cock.`);
-							} else if ((pbw > 40)) {
+							} else if (pbw > 40) {
 								r.push(`While licking a customer's cunt, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} shows no signs of slowing down, so she allows ${him} to reposition and continue.`);
 								r.push(clothingBirth());
 								r.push(`The customer splashes across ${his} face before placing ${his} child on ${his} breast, as ${he} begins seeking out the next customer's cunt.`);
@@ -4634,12 +4633,12 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {})
 								}
 								r.push(`He comes over ${his} exhausted body and moves on leaving ${him} to recover and collect ${his} child to be sent off.`);
 								humiliation = 1;
-							} else if ((pbw > 60)) {
+							} else if (pbw > 60) {
 								r.push(`While sucking a customer's dick, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} desperately tries to disengage but he grabs ${his} head and slams ${him} back into his crotch.`);
 								humiliation = 1;
 								r.push(clothingBirth());
 								r.push(`He cums down ${his} throat before letting ${him} collapse onto ${his} bloated form. When ${he} recovers, ${he} gathers ${his} child to be sent off.`);
-							} else if ((pbw > 40)) {
+							} else if (pbw > 40) {
 								r.push(`While licking a customer's cunt, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} desperately tries to disengage but she grabs ${his} head and slams ${him} back into ${his} crotch.`);
 								humiliation = 1;
 								r.push(clothingBirth());