diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index 86b2e42b16241c3f45deb09e7c5b3b82c90eee5e..04cec1fbe8068334498bd0005c3948e2fb489c0f 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -2,6 +2,33 @@ 0.10.7.1-0.1.x +4/05/2018 + + 27 + -fixed a bad $i in nextWeek + -added a basic overpower roll for slave vs player + + 26 + -added anon's aphrodisiac demonstration to FCTV + -fuckdoll conversion now unsets inflation + +4/04/2018 + + 25 + -added the black market pt 1 (FS research buying) + -various fixes and typo corrections + -most, if not all, of the old sugarcube operators + +4/03/2018 + + 24 + -various fixes including issues pertaining to incubator reservations not clearing after birth + -tweaked maturity pref age effects to hopefully be less overwhelming + + 23 + -lots more new nicknames + -various text and bug fixes + 4/02/2018 22 diff --git a/devNotes/twine JS b/devNotes/twine JS index f6809f4a75fe3c3c68eec941defeda745f0dd98a..40505b37f1965c4ffed0445562e0b9c602e10eb0 100644 --- a/devNotes/twine JS +++ b/devNotes/twine JS @@ -975,6 +975,28 @@ window.nippleColor = function(slave) { } } +/* +window.overpowerCheck = function(slave, PC) { + var strength; + + if(State.variables.arcologies[0].FSPhysicalIdealist != "unset") { + if(PC.title == 1) { + strength = 130; + } else { + strength = 100; + } + } else if(PC.title == 1) { + strength = 50; + } else { + strength = 30; + } + strength += (185-slave.height); + strength -= (PC.belly/1000); + + return strength; +} +*/ + window.jsAlert = function(obj) { alert(obj); @@ -1392,6 +1414,15 @@ window.setPregType = function(actor) { } } +window.getIncubatorReserved = function(slaves) { + var count = 0; + slaves.forEach(function(s){ + if (s.reservedChildren > 0) + count += s.reservedChildren; + }); + return count; +} + /*:: RA Selector JS [script]*/ window.growAdvSelector = function(slave, rule) { @@ -7352,7 +7383,7 @@ window.todaysOutfit = function(slave) { wardrobeAssignment.push({text: "and decides to call it casual friday and wear nothing but cutoffs and a t-shirt. Not like the cows will mind.", clothes: "cutoffs and a t-shirt"}); wardrobeAssignment.push({text: "and opts to don a cheerleader outfit to help cheer the cows on.", clothes: "a cheerleader outfit"}); wardrobeAssignment.push({text: "and dresses up as a succubus since she'll be drawing plenty of fluids.", clothes: "a succubus outfit"}); - wardrobeAssignment.push({text: "and slips into some spats and a tanktop since she feels a workout coming on.", clothes: "spats and a tank top"}); + wardrobeAssignment.push({text: "and slips into some spats and a tank top since she feels a workout coming on.", clothes: "spats and a tank top"}); if(isItemAccessible("Western clothing")) { wardrobeAssignment.push({text: "and wears an appropriate cowgirl outift. Her bare ass walking past is sure to amuse her charges.", clothes: "Western clothing"}); } @@ -7483,7 +7514,7 @@ window.todaysOutfit = function(slave) { wardrobeAssignment.push({text: "and chooses a pair of crotchless chaps so your other slaves don't have to waste time undressing her.", clothes: "Western clothing"}); } if(slave.fetish == "submissive") { - wardrobeAssignment.push({text: "and chooses to slip on a pair of spats and a tanktop in the hopes that she gets to be a violated schoolgirl.", clothes: "spats and a tank top"}); + wardrobeAssignment.push({text: "and chooses to slip on a pair of spats and a tank top in the hopes that she gets to be a violated schoolgirl.", clothes: "spats and a tank top"}); wardrobeAssignment.push({text: "and chooses to slip on a schoolgirl outfit in the hope that she gets held down and raped.", clothes: "a schoolgirl outfit"}); wardrobeAssignment.push({text: "and chooses to wear the sluttiest outfit available to make it clear what she wants done to her.", clothes: "a slutty outfit"}); } diff --git a/src/SecExp/attackHandler.tw b/src/SecExp/attackHandler.tw index face384da5a8ba22da4fc1f79fe65047bfa739c2..dfe6b3fbca85389bca20a3143c16c5617ee70db8 100644 --- a/src/SecExp/attackHandler.tw +++ b/src/SecExp/attackHandler.tw @@ -1224,11 +1224,11 @@ __Enemy__: <<if $showBattleStatistics == 1 && $majorBattle == 1 && $majorBattleGameOver == 1 && $battleResult == -3>> <br><br> <<link "Proceed">> - <<set $gameover to "major battle defeat">> + <<set $gameover = "major battle defeat">> <<goto "Gameover">> <</link>> <<elseif $majorBattle == 1 && $majorBattleGameOver == 1 && $battleResult == -3>> - <<set $gameover to "major battle defeat">> + <<set $gameover = "major battle defeat">> <<goto "Gameover">> <<elseif $showBattleStatistics == 1>> <br><br> diff --git a/src/SecExp/attackReport.tw b/src/SecExp/attackReport.tw index cc562291a2b42fc262fe8918b1d5bc3749487877..dc775344fe7f531b9cd14942a8b991066290bd95 100644 --- a/src/SecExp/attackReport.tw +++ b/src/SecExp/attackReport.tw @@ -558,7 +558,7 @@ <<set $authority -= 60 * _majorBattleMod>> <</if>> <br> - The enemy did not have the strength to raid the arcology for long, still @@.red;the arcology sustained some damage damage@@, which will cost a moderate amount of cash to fix. Some citizens and slaves found themselves on the wrong end of a gun and met their demise. + The enemy did not have the strength to raid the arcology for long, still @@.red;the arcology sustained some damage@@, which will cost a moderate amount of cash to fix. Some citizens and slaves found themselves on the wrong end of a gun and met their demise. Some business sustained heavy damage, slightly impacting the arcology's prosperity. <<set $cash -= 3000 * _majorBattleMod, $PC.engineering += .1>> <<if $week <= 30>> diff --git a/src/SecExp/rebellionHandler.tw b/src/SecExp/rebellionHandler.tw index 2ba68cb9104774bec8c3689ad1aa6813bf8ce0f1..878cb8eb1ee8da4cefed21af7b2c389a65e08857 100644 --- a/src/SecExp/rebellionHandler.tw +++ b/src/SecExp/rebellionHandler.tw @@ -406,11 +406,11 @@ __Rebels__: <<if $showBattleStatistics == 1 && $rebellionGameOver == 1 && $battleResult == -3>> <br><br> <<link "Proceed">> - <<set $gameover to "Rebellion defeat">> + <<set $gameover = "Rebellion defeat">> <<goto "Gameover">> <</link>> <<elseif $rebellionGameOver == 1 && $battleResult == -3>> - <<set $gameover to "Rebellion defeat">> + <<set $gameover = "Rebellion defeat">> <<goto "Gameover">> <<elseif $showBattleStatistics == 1>> <br><br> diff --git a/src/art/artWidgets.tw b/src/art/artWidgets.tw index 2499316887aa9e12460356a9e21104af983b289d..a395ce34ec3c25787902a189c532707c5a631ead 100644 --- a/src/art/artWidgets.tw +++ b/src/art/artWidgets.tw @@ -71,7 +71,7 @@ $args[2]: icon UI Display for vector art, 1 for on. <<if ndef $seeVectorArtHighlights>> <<set $seeVectorArtHighlights = 1>> <</if>> -<<set _artSlave to $args[0] >> +<<set _artSlave = $args[0] >> <<silently>> /* prepare HTML colour codes for slave display */ /* note: latex clothing is mostly emulated by rubber colour for skin (and shoes) */ @@ -254,13 +254,13 @@ vector art added later is drawn over previously added art <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/feet.svg'" + " style='"+ _skinFilter + "'>">> <</if>> -<<if $args[0].shoes == "extreme heels" or $args[0].shoes == "boots">> +<<if $args[0].shoes == "extreme heels" || $args[0].shoes == "boots">> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _shoesType = _shoesType + " latex">> <</if>> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/>">> <</if>> -<<if $args[0].shoes == "heels" or $args[0].shoes == "flats">> +<<if $args[0].shoes == "heels" || $args[0].shoes == "flats">> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _shoesType = _shoesType + " latex">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/>">> @@ -356,7 +356,7 @@ vector art added later is drawn over previously added art <</if>> /% Glasses %/ -<<if $args[0].eyewear == "corrective glasses" or $args[0].eyewear == "glasses" or $args[0].eyewear == "blurring glasses">> +<<if $args[0].eyewear == "corrective glasses" || $args[0].eyewear == "glasses" || $args[0].eyewear == "blurring glasses">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/glasses.svg'" + "/>">> <</if>> diff --git a/src/art/vector/Boob.tw b/src/art/vector/Boob.tw index 69dc6cb431789a576516aab56d973dee593905c0..03643142664fce461520582df2c380dbb638fb04 100644 --- a/src/art/vector/Boob.tw +++ b/src/art/vector/Boob.tw @@ -1,7 +1,7 @@ :: Art_Vector_Boob_ [nobr] /* BEWARE: _art_have_boobs and _art_scale_factor interfere with Art_Vector_Penis_ */ -<<set _art_have_boobs to true>> +<<set _art_have_boobs = true>> /* BEWARE: _art_boob_transform is also read by Art_Vector_Boob_Addons_ */ diff --git a/src/art/vector/Head.tw b/src/art/vector/Head.tw index d14312f7a7ea383b274ebaebe67bc9f9d4094d92..d9eaa575ec295464c241a432f82d91aafff22b72 100644 --- a/src/art/vector/Head.tw +++ b/src/art/vector/Head.tw @@ -23,7 +23,7 @@ <<if _artSlave.collar == "massive dildo gag">> <<include Art_Vector_Massive_Dildo_Gag>> <</if>> -<<if _artSlave.eyewear == "corrective glasses" or _artSlave.eyewear == "glasses" or _artSlave.eyewear == "blurring glasses">> +<<if _artSlave.eyewear == "corrective glasses" || _artSlave.eyewear == "glasses" || _artSlave.eyewear == "blurring glasses">> <<include Art_Vector_Glasses>> <</if>> diff --git a/src/art/vector/Penis.tw b/src/art/vector/Penis.tw index 27647606ef74cf58589682b5c0ed963245e94052..9593524f54939d86fc4e16b62e492eceb4858031 100644 --- a/src/art/vector/Penis.tw +++ b/src/art/vector/Penis.tw @@ -11,7 +11,7 @@ <<unset _penisSize = 9>> <<include Art_Vector_Bulge_Outfit_9>> <<elseif _artSlave.dick >= 9>> - <<unset _penisSize = 8> + <<unset _penisSize = 8>> <<include Art_Vector_Bulge_Outfit_8>> <<elseif _artSlave.dick >= 8>> <<unset _penisSize = 7>> diff --git a/src/art/vector/Pubic_Hair.tw b/src/art/vector/Pubic_Hair.tw index 8fd4a397e8ea92bc91d5048302cac33185558a12..c6b046d953f5c851c6a3a9acf7f838b7b7840282 100644 --- a/src/art/vector/Pubic_Hair.tw +++ b/src/art/vector/Pubic_Hair.tw @@ -5,9 +5,9 @@ <<if $showBodyMods == 1>> <<if _artSlave.vaginaTat == "rude words">> <<if _artSlave.dick != 0>> - <<set _art_pussy_tattoo_text to "Useless" >> + <<set _art_pussy_tattoo_text = "Useless" >> <<else>> - <<set _art_pussy_tattoo_text to "Fucktoy" >> + <<set _art_pussy_tattoo_text = "Fucktoy" >> <</if>> <<include Art_Vector_Pussy_Tattoo>> <</if>> diff --git a/src/art/vector/Set_Colour_Hair.tw b/src/art/vector/Set_Colour_Hair.tw index f4e4e91023df3eab441f6cf476625ff3a0018b46..d3eb0a1a1a4a3ecbb69a2ad6c78c35cfb10b0a0d 100644 --- a/src/art/vector/Set_Colour_Hair.tw +++ b/src/art/vector/Set_Colour_Hair.tw @@ -7,53 +7,53 @@ courtesy of Nov-X */ <<switch _artSlave.hColor>> <<case "auburn">> - <<set _hairColour to "#7e543e">> + <<set _hairColour = "#7e543e">> <<case "black">> - <<set _hairColour to "#3F4040">> + <<set _hairColour = "#3F4040">> <<case "blonde">> - <<set _hairColour to "#F4F1A3">> + <<set _hairColour = "#F4F1A3">> <<case "blue">> - <<set _hairColour to "#4685C5">> + <<set _hairColour = "#4685C5">> <<case "brown">> - <<set _hairColour to "#8D4F21">> + <<set _hairColour = "#8D4F21">> <<case "burgundy">> - <<set _hairColour to "#5f3946">> + <<set _hairColour = "#5f3946">> <<case "chestnut">> - <<set _hairColour to "#663622">> + <<set _hairColour = "#663622">> <<case "chocolate">> - <<set _hairColour to "#6e4937">> + <<set _hairColour = "#6e4937">> <<case "copper">> - <<set _hairColour to "#a16145">> + <<set _hairColour = "#a16145">> <<case "dark brown">> - <<set _hairColour to "#463325">> + <<set _hairColour = "#463325">> <<case "ginger">> - <<set _hairColour to "#da822d">> + <<set _hairColour = "#da822d">> <<case "golden">> - <<set _hairColour to "#ffdf31">> + <<set _hairColour = "#ffdf31">> <<case "green">> - <<set _hairColour to "#5FBA46">> + <<set _hairColour = "#5FBA46">> <<case "grey">> - <<set _hairColour to "#9e9fa4">> + <<set _hairColour = "#9e9fa4">> <<case "hazel">> - <<set _hairColour to "#8d6f1f">> + <<set _hairColour = "#8d6f1f">> <<case "pink">> - <<set _hairColour to "#D18CBC">> + <<set _hairColour = "#D18CBC">> <<case "platinum blonde">> - <<set _hairColour to "#fcf3c1">> + <<set _hairColour = "#fcf3c1">> <<case "red">> - <<set _hairColour to "#BB2027">> + <<set _hairColour = "#BB2027">> <<case "silver">> - <<set _hairColour to "#cdc9c6">> + <<set _hairColour = "#cdc9c6">> <<case "strawberry-blonde">> - <<set _hairColour to "#e5a88c">> + <<set _hairColour = "#e5a88c">> <<case "blazing red">> - <<set _hairColour to "#E00E2B">> + <<set _hairColour = "#E00E2B">> <<case "neon green">> - <<set _hairColour to "#25d12b">> + <<set _hairColour = "#25d12b">> <<case "neon blue">> - <<set _hairColour to "#2284C3">> + <<set _hairColour = "#2284C3">> <<case "neon pink">> - <<set _hairColour to "#cc26aa">> + <<set _hairColour = "#cc26aa">> <<default>> /* everything else: assume it already is HTML compliant color name or value */ <<set _hairColour to extractHairColor(_artSlave.hColor) >> diff --git a/src/art/vector/Set_Colour_Shoe.tw b/src/art/vector/Set_Colour_Shoe.tw index 851daf8408cf40467453048cc5050f12d6540900..ab98193fbaa1b054082bb5f27b65251a6fbf66b9 100644 --- a/src/art/vector/Set_Colour_Shoe.tw +++ b/src/art/vector/Set_Colour_Shoe.tw @@ -5,30 +5,30 @@ /* BEWARE: _shoeColour is read by Wardrobe Use */ /* note: only heels use this shadow */ -<<set _shoeShadowColour to "#616a6b">> +<<set _shoeShadowColour = "#616a6b">> <<switch _artSlave.shoes>> <<case "heels" "extreme heels">> - <<set _shoeColour to "#707b7c">> + <<set _shoeColour = "#707b7c">> <<case "boots">> - <<set _shoeColour to "#707b7c">> + <<set _shoeColour = "#707b7c">> <<case "flats">> - <<set _shoeColour to "#707b7c">> + <<set _shoeColour = "#707b7c">> <<case "pumps">> - <<set _shoeColour to "#707b7c">> + <<set _shoeColour = "#707b7c">> <<default>> /* use colour for "heels" by default */ - <<set _shoeColour to "#707b7c">> + <<set _shoeColour = "#707b7c">> <</switch>> <<if def _artSlave.shoeColor>> <<set _shoeColour = _artSlave.shoeColor >> /* shoe colour selected by user */ - <<set _shoeShadowColour to _shoeColour+";opacity: 0.5">> /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */ + <<set _shoeShadowColour = _shoeColour+";opacity: 0.5">> /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */ <</if>> /* override colour in case of full body latex outfit */ <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" >> - <<set _shoeColour to _skinColour>> - <<set _shoeShadowColour to _shoeColour+";opacity: 0.5">> /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */ + <<set _shoeColour = _skinColour>> + <<set _shoeShadowColour = _shoeColour+";opacity: 0.5">> /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */ <</if>> diff --git a/src/art/vector/Set_Colour_Skin.tw b/src/art/vector/Set_Colour_Skin.tw index 596ff7a7b3d6924d308f96a3449f88b0bf1de4cd..20161a4789450a1cd8e1a8628dfb6adfe432c0cc 100644 --- a/src/art/vector/Set_Colour_Skin.tw +++ b/src/art/vector/Set_Colour_Skin.tw @@ -2,8 +2,8 @@ /* BEWARE: _outfitBaseColour is set by Art_Vector_Set_Colour_Outfit_ */ -<<set _areolaStyle to "fill:#d76b93;" >> /* this is the default and can be customized later */ -<<set _labiaStyle to _areolaStyle >> /* this is the default and can be customized later */ +<<set _areolaStyle = "fill:#d76b93;" >> /* this is the default and can be customized later */ +<<set _labiaStyle = _areolaStyle >> /* this is the default and can be customized later */ /* todo: introduce one "flesh" CSS class */ <<unset _headSkinStyle>> @@ -14,204 +14,204 @@ <<switch _artSlave.skin>> <<case "light" "white" "fair" "lightened" >> - <<set _skinColour to "#F6E0E8">> - <<set _areolaStyle to "fill:#FBA8C4;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#F6E0E8">> + <<set _areolaStyle = "fill:#FBA8C4;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<case "extremely pale">> - <<set _skinColour to "#f4eaf0">> - <<set _areolaStyle to "fill:#FCCADB;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#f4eaf0">> + <<set _areolaStyle = "fill:#FCCADB;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<case "pale">> - <<set _skinColour to "#f9ebf0">> - <<set _areolaStyle to "fill:#FBB9CF;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#f9ebf0">> + <<set _areolaStyle = "fill:#FBB9CF;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<case "tanned" "natural">> - <<set _skinColour to "#F4C7A5">> - <<set _areolaStyle to "fill:#F977A3;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#F4C7A5">> + <<set _areolaStyle = "fill:#F977A3;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<case "olive">> - <<set _skinColour to "#a07c48">> - <<set _areolaStyle to "fill:#C69691;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#a07c48">> + <<set _areolaStyle = "fill:#C69691;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<case "light brown" "dark">> - <<set _skinColour to "#C97631">> - <<set _areolaStyle to "fill:#A2744E;" >> - <<set _labiaStyle to "fill:#763818;" >> + <<set _skinColour = "#C97631">> + <<set _areolaStyle = "fill:#A2744E;" >> + <<set _labiaStyle = "fill:#763818;" >> <<case "brown" >> - <<set _skinColour to "#763818">> - <<set _areolaStyle to "fill:#4C240F;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#763818">> + <<set _areolaStyle = "fill:#4C240F;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<case "black">> - <<set _skinColour to "#3f3b3a">> - <<set _areolaStyle to "fill:#524E4D;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#3f3b3a">> + <<set _areolaStyle = "fill:#524E4D;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<case "camouflage patterned">> - <<set _skinColour to "#78875a">> - <<set _areolaStyle to "fill:#939F7A;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#78875a">> + <<set _areolaStyle = "fill:#939F7A;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<case "red dyed" "dyed red">> - <<set _skinColour to "#bc4949">> - <<set _areolaStyle to "fill:#C96D6D;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#bc4949">> + <<set _areolaStyle = "fill:#C96D6D;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<case "green dyed" "dyed green">> - <<set _skinColour to "#A6C373">> - <<set _areolaStyle to "fill:#B7CF8F;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#A6C373">> + <<set _areolaStyle = "fill:#B7CF8F;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<case "blue dyed" "dyed blue">> - <<set _skinColour to "#5b8eb7">> - <<set _areolaStyle to "fill:#7BA4C5;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#5b8eb7">> + <<set _areolaStyle = "fill:#7BA4C5;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<case "tiger striped">> - <<set _skinColour to "#e2d75d">> - <<set _areolaStyle to "fill:#E7DF7D;" >> - <<set _labiaStyle to "fill:#F977A3;" >> + <<set _skinColour = "#e2d75d">> + <<set _areolaStyle = "fill:#E7DF7D;" >> + <<set _labiaStyle = "fill:#F977A3;" >> <<default>> - <<set _skinColour to _artSlave.skin>> + <<set _skinColour = _artSlave.skin>> <</switch>> /* BEGIN SKIN COLOUR OVERRIDES FOR LATEX CLOTHING EMULATION */ <<if _artSlave.fuckdoll != 0>> /* slave is a fuckdoll - display all skin as if it was black rubber */ - <<set _skinColour to _outfitBaseColour>> - <<set _areolaStyle to "fill:rgba(0,0,0,0.3);">> - <<set _labiaStyle to _areolaStyle >> + <<set _skinColour = _outfitBaseColour>> + <<set _areolaStyle = "fill:rgba(0,0,0,0.3);">> + <<set _labiaStyle = _areolaStyle >> <</if>> /* slave wears restrictive latex - display most skin as if it was rubber */ <<if _artSlave.clothes == "restrictive latex">> /* nice latex does not cover any privates. */ - <<set _boobSkinStyle to "fill:"+_skinColour+";">> - <<set _penisSkinStyle to "fill:"+_skinColour+";">> - <<set _scrotumSkinStyle to "fill:"+_skinColour+";">> + <<set _boobSkinStyle = "fill:"+_skinColour+";">> + <<set _penisSkinStyle = "fill:"+_skinColour+";">> + <<set _scrotumSkinStyle = "fill:"+_skinColour+";">> /* rest of body is covered in latex */ - <<set _skinColour to _outfitBaseColour>> + <<set _skinColour = _outfitBaseColour>> <</if>> <<if _artSlave.clothes == "a latex catsuit">> /* nice latex does not cover head. */ - <<set _headSkinStyle to "fill:"+_skinColour+";">> + <<set _headSkinStyle = "fill:"+_skinColour+";">> /* rest of body is covered in latex */ - <<set _skinColour to _outfitBaseColour>> + <<set _skinColour = _outfitBaseColour>> /* catsuit covers areolae and crotch, too */ - <<set _areolaStyle to "fill:rgba(51,53,51,0.3);">> /* areolae are represented by a darker area */ + <<set _areolaStyle = "fill:rgba(51,53,51,0.3);">> /* areolae are represented by a darker area */ /* todo: gain control over piercings to do the same with them ^^ */ - <<set _labiaStyle to _areolaStyle >> + <<set _labiaStyle = _areolaStyle >> <</if>> <<if _artSlave.clothes == "a comfortable bodysuit">> /* nice bodysuit does not cover head. */ - <<set _headSkinStyle to "fill:"+_skinColour+";">> + <<set _headSkinStyle = "fill:"+_skinColour+";">> /* rest of body is covered in bodysuit */ - <<set _skinColour to _outfitBaseColour>> + <<set _skinColour = _outfitBaseColour>> /* bodysuit covers areolae and crotch, too */ -<<set _areolaStyle to "fill:rgba(175,67,107,0.3);">> +<<set _areolaStyle = "fill:rgba(175,67,107,0.3);">> /* todo: gain control over piercings to do the same with them ^^ */ - <<set _labiaStyle to _areolaStyle >> + <<set _labiaStyle = _areolaStyle >> <</if>> /* outfit dick coloring to match outfit rgba in svg */ <<if _artSlave.clothes == "a cheerleader outfit">> - <<set _scrotumSkinStyle to "fill:rgba(250,186,0,1);">> + <<set _scrotumSkinStyle = "fill:rgba(250,186,0,1);">> <</if>> <<if _artSlave.clothes == "clubslut netting">> - <<set _scrotumSkinStyle to "fill:rgba(51,51,51,1);">> + <<set _scrotumSkinStyle = "fill:rgba(51,51,51,1);">> <</if>> <<if _artSlave.clothes == "cutoffs and a t-shirt">> - <<set _scrotumSkinStyle to "fill:rgba(81,124,211,1);">> + <<set _scrotumSkinStyle = "fill:rgba(81,124,211,1);">> <</if>> <<if _artSlave.clothes == "a halter top dress">> - <<set _scrotumSkinStyle to "fill:rgba(94,51,124,1);">> + <<set _scrotumSkinStyle = "fill:rgba(94,51,124,1);">> <</if>> <<if _artSlave.clothes == "a hijab and abaya">> - <<set _scrotumSkinStyle to "fill:rgba(51,51,51,1);">> + <<set _scrotumSkinStyle = "fill:rgba(51,51,51,1);">> <</if>> <<if _artSlave.clothes == "a nice maid outfit">> - <<set _scrotumSkinStyle to "fill:rgba(225,225,225,1);">> + <<set _scrotumSkinStyle = "fill:rgba(225,225,225,1);">> <</if>> <<if _artSlave.clothes == "a slutty maid outfit">> - <<set _scrotumSkinStyle to "fill:rgba(225,225,225,1);">> + <<set _scrotumSkinStyle = "fill:rgba(225,225,225,1);">> <</if>> <<if _artSlave.clothes == "a leotard">> - <<set _scrotumSkinStyle to "fill:rgba(120,15,55,1);">> + <<set _scrotumSkinStyle = "fill:rgba(120,15,55,1);">> <</if>> <<if _artSlave.clothes == "a military uniform">> - <<set _scrotumSkinStyle to "fill:rgba(34,42,18,1);">> + <<set _scrotumSkinStyle = "fill:rgba(34,42,18,1);">> <</if>> <<if _artSlave.clothes == "a mini dress">> - <<set _scrotumSkinStyle to "fill:rgba(39,174,96,1);">> + <<set _scrotumSkinStyle = "fill:rgba(39,174,96,1);">> <</if>> <<if _artSlave.clothes == "a nice nurse outfit">> - <<set _scrotumSkinStyle to "fill:rgba(0,128,128,1);">> + <<set _scrotumSkinStyle = "fill:rgba(0,128,128,1);">> <</if>> <<if _artSlave.clothes == "a slutty nurse outfit">> - <<set _scrotumSkinStyle to "fill:rgba(200,200,200,1);">> + <<set _scrotumSkinStyle = "fill:rgba(200,200,200,1);">> <</if>> <<if _artSlave.clothes == "a scalemail bikini">> - <<set _scrotumSkinStyle to "fill:rgba(133,146,158,1);">> + <<set _scrotumSkinStyle = "fill:rgba(133,146,158,1);">> <</if>> <<if _artSlave.clothes == "a schoolgirl outfit">> - <<set _scrotumSkinStyle to "fill:rgba(28,31,36,1);">> + <<set _scrotumSkinStyle = "fill:rgba(28,31,36,1);">> <</if>> <<if _artSlave.clothes == "a ball gown">> - <<set _scrotumSkinStyle to "fill:rgba(128,0,0,1);">> + <<set _scrotumSkinStyle = "fill:rgba(128,0,0,1);">> <</if>> <<if _artSlave.clothes == "battledress">> - <<set _scrotumSkinStyle to "fill:rgba(34,42,18,1);">> + <<set _scrotumSkinStyle = "fill:rgba(34,42,18,1);">> <</if>> <<if _artSlave.clothes == "a slave gown">> - <<set _scrotumSkinStyle to "fill:rgba(200,200,200,1);">> + <<set _scrotumSkinStyle = "fill:rgba(200,200,200,1);">> <</if>> <<if _artSlave.clothes == "a slutty outfit">> - <<set _scrotumSkinStyle to "fill:rgba(63,126,181,1);">> + <<set _scrotumSkinStyle = "fill:rgba(63,126,181,1);">> <</if>> <<if _artSlave.clothes == "spats and a tank top">> - <<set _scrotumSkinStyle to "fill:rgba(51,51,51,1);">> + <<set _scrotumSkinStyle = "fill:rgba(51,51,51,1);">> <</if>> <<if _artSlave.clothes == "a succubus outfit">> - <<set _scrotumSkinStyle to "fill:rgba(128,0,0,1);">> + <<set _scrotumSkinStyle = "fill:rgba(128,0,0,1);">> <</if>> <<if _artSlave.clothes == "nice business attire">> - <<set _scrotumSkinStyle to "fill:rgba(51,51,51,1);">> + <<set _scrotumSkinStyle = "fill:rgba(51,51,51,1);">> <</if>> <<if _artSlave.clothes == "slutty business attire">> - <<set _scrotumSkinStyle to "fill:rgba(51,51,51,1);">> + <<set _scrotumSkinStyle = "fill:rgba(51,51,51,1);">> <</if>> <<if _artSlave.clothes == "attractive lingerie for a pregnant woman">> - <<set _scrotumSkinStyle to "fill:rgba(153,153,153,1);">> + <<set _scrotumSkinStyle = "fill:rgba(153,153,153,1);">> <</if>> <<if _artSlave.clothes == "a bunny outfit">> - <<set _scrotumSkinStyle to "fill:rgba(51,51,51,1);">> + <<set _scrotumSkinStyle = "fill:rgba(51,51,51,1);">> <</if>> <<if _artSlave.clothes == "conservative clothing">> - <<set _scrotumSkinStyle to "fill:rgba(51,51,51,1);">> + <<set _scrotumSkinStyle = "fill:rgba(51,51,51,1);">> <</if>> <<if _artSlave.clothes == "harem gauze">> - <<set _scrotumSkinStyle to "fill:rgba(0,168,131,1);">> + <<set _scrotumSkinStyle = "fill:rgba(0,168,131,1);">> <</if>> <<if _artSlave.clothes == "a huipil">> - <<set _scrotumSkinStyle to "fill:rgba(200,200,200,1);">> + <<set _scrotumSkinStyle = "fill:rgba(200,200,200,1);">> <</if>> <<if _artSlave.clothes == "a kimono">> - <<set _scrotumSkinStyle to "fill:rgba(0,91,150,1);">> + <<set _scrotumSkinStyle = "fill:rgba(0,91,150,1);">> <</if>> <<if _artSlave.clothes == "a maternity dress">> - <<set _scrotumSkinStyle to "fill:rgba(48,54,72,1);">> + <<set _scrotumSkinStyle = "fill:rgba(48,54,72,1);">> <</if>> <<if _artSlave.clothes == "a slutty qipao">> - <<set _scrotumSkinStyle to "fill:rgba(204,177,68,1);">> + <<set _scrotumSkinStyle = "fill:rgba(204,177,68,1);">> <</if>> <<if _artSlave.clothes == "stretch pants and a crop-top">> - <<set _scrotumSkinStyle to "fill:rgba(51,51,51,1);">> + <<set _scrotumSkinStyle = "fill:rgba(51,51,51,1);">> <</if>> <<if _artSlave.clothes == "a toga">> - <<set _scrotumSkinStyle to "fill:rgba(200,200,200,1);">> + <<set _scrotumSkinStyle = "fill:rgba(200,200,200,1);">> <</if>> <<if _artSlave.clothes == "a penitent nuns habit">> - <<set _scrotumSkinStyle to "fill:rgba(114,93,73,1);">> + <<set _scrotumSkinStyle = "fill:rgba(114,93,73,1);">> <</if>> <<if _artSlave.clothes == "a chattel habit">> - <<set _scrotumSkinStyle to "fill:rgba(200,200,200,1);">> + <<set _scrotumSkinStyle = "fill:rgba(200,200,200,1);">> <</if>> /* END SKIN COLOUR OVERRIDES FOR LATEX CLOTHING EMULATION */ diff --git a/src/art/vector_revamp/Vector_Revamped_Control_.tw b/src/art/vector_revamp/Vector_Revamped_Control_.tw index 1131ad3494f27a37c52e9a5a6e594c5966a53c9c..146a618bf164ad8e933b1edb8e9c7d8b60b806f1 100644 --- a/src/art/vector_revamp/Vector_Revamped_Control_.tw +++ b/src/art/vector_revamp/Vector_Revamped_Control_.tw @@ -4,7 +4,7 @@ <<set $seeVectorArtHighlights = 1>> <</if>> -<<set _artSlave to $args[0] >> +<<set _artSlave = $args[0] >> <<if _art_display_id > 0 >> <<set _art_display_id += 1>> @@ -15,10 +15,10 @@ /*Using JS from vectorRevampedArtControl.tw*/ -<<set _revampedVectorArtControl to getVectorArtRevampedControl(_art_display_class, _artSlave, $seeVectorArtHighlights, $showBodyMods)>> +<<set _revampedVectorArtControl = getVectorArtRevampedControl(_art_display_class, _artSlave, $seeVectorArtHighlights, $showBodyMods)>> <<print "<style>" + _revampedVectorArtControl.StylesCss + "</style>" >> -<<set _revampedArtLayers to _revampedVectorArtControl.Layers>> +<<set _revampedArtLayers = _revampedVectorArtControl.Layers>> <<set _art_transform = _revampedVectorArtControl.artTransform>> <<set _boob_right_art_transform = _revampedVectorArtControl.boobRightArtTransform>> <<set _boob_left_art_transform = _revampedVectorArtControl.boobLeftArtTransform>> @@ -26,7 +26,7 @@ <<set _boob_outfit_art_transform = _revampedVectorArtControl.boobOutfitArtTransform>> <<set _art_pussy_tattoo_text = _revampedVectorArtControl.pubicTattooText >> -<<for _i to 0; _i lt _revampedArtLayers.length; _i++>> +<<for _i = 0; _i < _revampedArtLayers.length; _i++>> <<include _revampedArtLayers[_i]>> <</for>> diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw index 3b522a6d77a537e87c3f2a1111a0a8b8ab10f121..9ee0e6673ab041754bf1f08c4421a63ca5de9f33 100644 --- a/src/events/intro/introSummary.tw +++ b/src/events/intro/introSummary.tw @@ -558,13 +558,13 @@ __''Player Character''__ <<switch $PC.markings>> <<case "freckles">> - <<set $PCCreationFreckels = "has light freckling">> + <<set _PCCreationFreckels = "has light freckling">> <<case "heavily freckled">> - <<set $PCCreationFreckels = "has heavy freckling">> + <<set _PCCreationFreckels = "has heavy freckling">> <<default>> - <<set $PCCreationFreckels = "is clear of blemishes">> + <<set _PCCreationFreckels = "is clear of blemishes">> <</switch>> - <br>Your body ''$PCCreationFreckels''. + <br>Your body ''_PCCreationFreckels''. [[None|Intro Summary][$PC.markings = "none"]] | [[Light|Intro Summary][$PC.markings = "freckles"]] | [[Heavy|Intro Summary][$PC.markings = "heavily freckled"]] @@ -587,30 +587,30 @@ __''Player Character''__ <<switch $PC.career>> <<case "capitalist">> - <<set $PCCreationCareer = "a business leader">> + <<set _PCCreationCareer = "a business leader">> <<case "mercenary">> - <<set $PCCreationCareer = "a mercenary">> + <<set _PCCreationCareer = "a mercenary">> <<case "slaver">> - <<set $PCCreationCareer = "a slaver">> + <<set _PCCreationCareer = "a slaver">> <<case "engineer">> - <<set $PCCreationCareer = "an engineer">> + <<set _PCCreationCareer = "an engineer">> <<case "medicine">> - <<set $PCCreationCareer = "a doctor">> + <<set _PCCreationCareer = "a doctor">> <<case "celebrity">> - <<set $PCCreationCareer = "a minor celebrity">> + <<set _PCCreationCareer = "a minor celebrity">> <<case "escort">> - <<set $PCCreationCareer = "an escort">> + <<set _PCCreationCareer = "an escort">> <<case "servant">> - <<set $PCCreationCareer = "a servant">> + <<set _PCCreationCareer = "a servant">> <<case "gang">> - <<set $PCCreationCareer = "a gang leader">> + <<set _PCCreationCareer = "a gang leader">> <<case "BlackHat">> - <<set $PCCreationCareer = "an incursion specialist">> + <<set _PCCreationCareer = "an incursion specialist">> <<default>> - <<set $PCCreationCareer = "a member of the idle wealthy">> + <<set _PCCreationCareer = "a member of the idle wealthy">> <</switch>> <br> - Before you came to the free cities, you were ''$PCCreationCareer'' and it is rumoured that you acquired your arcology through ''$PC.rumor''. + Before you came to the free cities, you were ''_PCCreationCareer'' and it is rumoured that you acquired your arcology through ''$PC.rumor''. <br>__Past career:__ <<if $PC.career != "arcology owner">> @@ -675,7 +675,7 @@ __''Player Character''__ influence you to be ''caring and motherly''. Sex scene alterations; slaves will trust you more, but may try to take advantage of your mercy. [[Change to no change|Intro Summary][$PC.pregMood = 0]] | [[Change to aggressive|Intro Summary][$PC.pregMood = 2]] <<elseif $PC.pregMood == 0>> - do not effect you. Vanilla setting. + do not affect you. Vanilla setting. [[Change to motherly|Intro Summary][$PC.pregMood = 1]] | [[Change to aggressive|Intro Summary][$PC.pregMood = 2]] <<else>> influence you to be ''aggressive and domineering''. Sex scene alterations; slaves will fear you more, but will become more submissive to you. @@ -686,28 +686,28 @@ __''Player Character''__ <br> <<switch $PC.boobsBonus>> <<case -1>> - <<set $PCCreationBoobSize = "unoticable C cups">> + <<set _PCCreationBoobSize = "unnoticeable C cups">> <<case -0.5>> - <<set $PCCreationBoobSize = "unremarkable D cups">> + <<set _PCCreationBoobSize = "unremarkable D cups">> <<case 1>> - <<set $PCCreationBoobSize = "noticeable F cups">> + <<set _PCCreationBoobSize = "noticeable F cups">> <<case 2>> - <<set $PCCreationBoobSize = "huge G cups">> + <<set _PCCreationBoobSize = "huge G cups">> <<case 3>> - <<set $PCCreationBoobSize = "masive H cups">> + <<set _PCCreationBoobSize = "massive H cups">> <<default>> - <<set $PCCreationBoobSize = "average DD cups">> + <<set _PCCreationBoobSize = "average DD cups">> <</switch>> <<if $PC.boobsImplant>> - <<set $PCCreationBreast = "fake">> + <<set _PCCreationBreast = "fake">> <<else>> - <<set $PCCreationBreast = "all natural">> + <<set _PCCreationBreast = "all natural">> <</if>> <<if $PC.boobs > 0>> - Your breasts are ''$PCCreationBoobSize'' - and ''$PCCreationBreast''. + Your breasts are ''_PCCreationBoobSize'' + and ''_PCCreationBreast''. <<if $PC.boobsBonus == 0>> [[Go bigger|Intro Summary][$PC.boobsBonus = 2, $PC.boobsImplant = 0]] | [[Get implants|Intro Summary][$PC.boobsBonus = 2, $PC.boobsImplant = 1]] | [[Go smaller|Intro Summary][$PC.boobsBonus = -1, $PC.boobsImplant = 0]] <<elseif $PC.boobsBonus == 2>> @@ -976,10 +976,10 @@ __''Mods''__ <<if $cyberMod == 1>> Cybernetics mod is ''enabled.'' -[[Disable|Intro Summary][$cyberMod to 0]] +[[Disable|Intro Summary][$cyberMod = 0]] <<else>> Cybernetics mod is ''disabled.'' -[[Enable|Intro Summary][$cyberMod to 1]] +[[Enable|Intro Summary][$cyberMod = 1]] <</if>> <br> // This mod alters how prosthetics system works and adds some content.// diff --git a/src/events/intro/pcExperienceIntro.tw b/src/events/intro/pcExperienceIntro.tw index 77ba483b6a47b381837dd29c29241d92c6f3ceaf..1d2993b5b62a6fbb22c3ad936173c1bbe107470d 100644 --- a/src/events/intro/pcExperienceIntro.tw +++ b/src/events/intro/pcExperienceIntro.tw @@ -65,14 +65,14 @@ You know how to @@.yellowgreen;lower your upkeep@@, but @@.red;not conduct business@@. Your starting slaves will have free @@.mediumaquamarine;trust@@ and @@.hotpink;devotion@@.// <br>[[Gang Leader|PC Rumor Intro][$PC.career = "gang"]] - <br> //As am ex-gang leader, you know how to haggle slaves. + <br> //As an ex-gang leader, you know how to haggle slaves. <<if $showSecExp == 1>> In addition asserting your authority @@.green;will be easier@@ and @@.yellowgreen;security HQ upgrades will be cheaper@@. <</if>> However you will @@.red;find reputation quite hard@@ to maintain. Your starting slaves will be @@.green;fitter@@ and posses a free level of @@.cyan;combat skill@@ .// <br>[[Incursion Specialist|PC Rumor Intro][$PC.career = "BlackHat"]] - <br> //As am ex-hacker for hire, you know how to gain access computer systems and other devices. @@.green;Certain upgrades may be cheaper@@ , and you may find alternative approaches to problems. + <br> //As an ex-hacker for hire, you know how to gain access computer systems and other devices. @@.green;Certain upgrades may be cheaper@@ , and you may find alternative approaches to problems. <<if $showSecExp == 1>> However you will @@.red;find authority quite hard@@ to maintain. <</if>> diff --git a/src/facilities/brothel/brothelAssignmentScene.tw b/src/facilities/brothel/brothelAssignmentScene.tw index da7754cdc6e0c428e478e677eabd34fdcd626bfe..eeb678277bf2688da3259d8f4d904854d9c7c4a4 100644 --- a/src/facilities/brothel/brothelAssignmentScene.tw +++ b/src/facilities/brothel/brothelAssignmentScene.tw @@ -1,6 +1,6 @@ :: Brothel Assignment Scene [nobr] -<<set $nextButton to "Continue", $nextLink to $returnTo>> +<<set $nextButton = "Continue", $nextLink = $returnTo>> <<Enunciate $activeSlave>> You could direct $assistantName to relay your orders to $activeSlave.slaveName, but you've decided to avoid relying too much on machine assistance. So, she is merely directed to report to your office. The diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw index 1a0ad015dff05c6b4ab6a95ae3964a8224c1d5d5..ad453f08b9033dd1ed01816578c03a6fdaf45cd5 100644 --- a/src/gui/Encyclopedia/encyclopedia.tw +++ b/src/gui/Encyclopedia/encyclopedia.tw @@ -2679,7 +2679,7 @@ Explore the options and enjoy the benefits of having a complete private military <br> Can be developed to radically affect goods seen in the slave market. <br> Provides demand for lactating slaves from [[the corporation|Encyclopedia][$encyclopedia = "The Corporation"]]. <br> Provides demand for young slaves from the corporation. -<br> Is mutually exclusive with [[Eugenics|Encyclopedia][$encyclopedia to "Eugenics Focus"]]. +<br> Is mutually exclusive with [[Eugenics|Encyclopedia][$encyclopedia = "Eugenics Focus"]]. <<case "Eugenics Focus">> ''Eugenics'' is a future society model. It: @@ -2689,7 +2689,7 @@ Explore the options and enjoy the benefits of having a complete private military <br> Provides demand for gelded slaves from [[the corporation|Encyclopedia][$encyclopedia = "The Corporation"]]. <br> Provides demand for skilled slaves from the corporation. <br> Provides demand for smart slaves from the corporation. -<br> Is mutually exclusive with [[Repopulation Focus|Encyclopedia][$encyclopedia to "Repopulationism"]]. +<br> Is mutually exclusive with [[Repopulation Focus|Encyclopedia][$encyclopedia = "Repopulationism"]]. <br>It is made up of four to five social classes: Slaves, low class citizens, chosen slaves, elite citizens, and the Societal Elite; a group of individuals with vast connections and wealth attracted by the promises of a society built around them. Low class citizens are encouraged to face testing and join the ranks of the elite, though the cost of failing the test is sterilization; a detail that is not revealed until after the test is complete. <<case "Hedonistic Decadence">> @@ -2795,10 +2795,10 @@ An additional prostate implant designed to hyperstimulate one's prostate and sto <<case "FCTV">> Free Cities TV, or ''FCTV'' as it is more commonly called, is a very popular streaming video service. A venture started not long after the first Free Cities were founded, it took advantage of the new lack of regulatory oversight to create and host content that had long been banned in the old world. Under the guidance of 8HGG Inc., FCTV has developed into a popular mixed-mode service, with a variety of live streaming channels as well as a large selection of readystream content ranging from hyper porn to contemporary broadcast series shows. <br><br>The successful service is largely supported by a combination of subscription and advertising revenue, and to a smaller extent on-demand content payments. Though still targeted at free citizens--or their slaves in the case of for-slave content--FCTV has become very popular in the old world. A combination of the service's eroticism, extreme content, and high production value has given it extraordinary popularity. Savvy execs at 8HGG and arcology owners alike have realized the benefits of exposing the old world populations to FCTV content, and a carefully-curated selection of content is kept available to old-worlders thanks to revenue from advertisements supporting immigration and voluntary enslavement. The content selection has a glamorized and often romanticized view of slavery, and typically displays common citizens and slaves alike living in opulence beyond the realm of posibility for most old-worlders. -<br><br>FCTV has always worked closely with the Free Cities, developing a large network of sponsors and partnerships for content protection. This has increased the breadth of content and popularity of FCTV, while allowing the ruling class to encourage content supporting their vision of the future. While you can access non-citizen FCTV content from just about anywhere, an arcology needs its own [[receiver|Encyclopedia][$encyclopedia to "FCTVReceiver"]] to access citizen-only content. This measure of content protection does add extra expense, but nearly eliminating the risk of old-worlders seeing uncurated content is viewed as being worth the expense by most arcology owners. +<br><br>FCTV has always worked closely with the Free Cities, developing a large network of sponsors and partnerships for content protection. This has increased the breadth of content and popularity of FCTV, while allowing the ruling class to encourage content supporting their vision of the future. While you can access non-citizen FCTV content from just about anywhere, an arcology needs its own [[receiver|Encyclopedia][$encyclopedia = "FCTVReceiver"]] to access citizen-only content. This measure of content protection does add extra expense, but nearly eliminating the risk of old-worlders seeing uncurated content is viewed as being worth the expense by most arcology owners. <<case "FCTVReceiver">> -While nearly indistinguishable from a standard satellite antenna, the satellite dish used to receive FCTV-Citizen content is special because of the unique FCTV Receiver. Utilizing the latest in matched-pair quantum encryption, it is the only device capable of decrypting and encrypting your arcology-specific FCTV content communication. Simple additions to your arcology's existing fiberoptics extend the [[FCTV|Encyclopedia][$encyclopedia to "FCTV"]] network to your citizens. In exchange for bearing the cost of the encrypted network, arcology owners get a certain level of control over available content for cultural purposes, and also discounted rates for local advertisement. +While nearly indistinguishable from a standard satellite antenna, the satellite dish used to receive FCTV-Citizen content is special because of the unique FCTV Receiver. Utilizing the latest in matched-pair quantum encryption, it is the only device capable of decrypting and encrypting your arcology-specific FCTV content communication. Simple additions to your arcology's existing fiberoptics extend the [[FCTV|Encyclopedia][$encyclopedia = "FCTV"]] network to your citizens. In exchange for bearing the cost of the encrypted network, arcology owners get a certain level of control over available content for cultural purposes, and also discounted rates for local advertisement. <br><br>Some owners choose to have their citizens subsidize the installation: having them pay for fiber to their residence, or possibly even charging for a portion of the receiver. FCTV service experts warn that forcing citizens to bear too much of the cost usually results in angry citizens and many citizens who refuse to pay for access to the service. They suggest that it is in the best interests of FCTV and arcology owners alike to have greater service penetration, as low penetration results in less revenue for 8HGG inc. and less advertising and cultural benefits for owners. <<case "Repopulationist Breeding School">> @@ -2819,6 +2819,9 @@ When it comes to slave breeding, the natural chance of conception is just too lo <br> **Our guarantee does not cover slave owners who underestimate their slaves' potency and wind up pregnant. +<<case "The Black Market">> + //Place holder// + <<case "Security Expansion">> <<include "encyclopediaSecExpMain">> diff --git a/src/init/setupVars.tw b/src/init/setupVars.tw index 100604e003cc95a96a3801d43d1d106769870e5a..617acfcf01ec942cf06f533e96bc253a4aeb8028 100644 --- a/src/init/setupVars.tw +++ b/src/init/setupVars.tw @@ -195,7 +195,7 @@ "Laotian": {asian: 9, "mixed race": 1}, "Latvian": {white: 49, "mixed race": 1}, "Liberian": {black: 9, "mixed race": 1}, - "a Liechtensteiner": {white: 10, "middle eastern": 3, "mixed race": 1}, + "a Liechtensteiner": {white: 10, "middle eastern": 3, "mixed race": 1}, "Luxembourgian": {white: 6, "southern european": 2, "mixed race": 1}, "Macedonian": {white: 9, "mixed race": 1}, "Malagasy": {black: 4, "indo-aryan": 4, "mixed race": 1}, @@ -271,17 +271,17 @@ <<set setup.veryYoungCareers = ["a babysitter", "a beggar", "a beggar", "a cheerleader", "a child actress", "a child prostitute", "a child prostitute", "a child soldier", "a child soldier", "a club recruiter", "a cum dump", "a dropout", "a dropout", "a farmer's daughter", "a girl scout", "a girl scout", "a handmaiden", "a juvenile delinquent", "a juvenile delinquent", "a meat toilet", "a military brat", "a model-UN star", "a model", "a pageant star", "a paper girl", "a part-time farm laborer", "a pick-pocket", "a refugee", "a refugee", "a refugee", "a shrine maiden", "a street thug", "a street urchin", "a street urchin", "a street urchin", "a student council president", "a student from a boarding school", "a student from a private school", "a student from a public school", "a student from a public school", "a student from a public school", "a student from a public school", "a student from a public school", "a sweatshop worker", "a sweatshop worker", "a sweatshop worker", "a sweatshop worker", "an orphan", "an orphan", "an orphan", "an orphan", "an orphan", "being homeschooled by her parents", "captain of the kendo club", "from a lower class family", "from a lower class family", "from a lower class family", "from a middle class family", "from a middle class family", "from an upper class family", "homeless", "homeless", "homeless"]>> /* pregmod */ -<<set setup.youngCareers = ["an artist", "a babysitter", "a ballerina", "a barista", "a bartender", "a beggar", "a camgirl", "a camp counselor", "a camwhore", "a cashier", "a cheerleader", "a cocktail waitress", "a cook", "a courier", "a criminal", "a cum dump", "a factory worker", "a farm laborer", "a farm laborer", "a farmer's daughter", "a gang member", "a gang member", "a handmaiden", "a housesitter", "a housewife", "a lifeguard", "a magician's assistant", "a maid", "a meat toilet", "a medical student", "a model", "a nurse", "a paramedic", "a party girl", "a political activist", "a prisoner", "a prostitute", "a racing driver", "a reality show star", "a refugee", "a ride attendant", "a saleswoman", "a secretary", "a security guard", "a service worker", "a shrine maiden", "a soldier", "a street performer", "a stripper", "a student", "a student", "a student", "a teaching assistant", "a truck driver", "a video game streamer", "a waitress", "a yoga instructor", "an air hostess", "an apprentice", "an arcade attendant", "an aspiring pop star", "an assassin", "an escort", "an exotic dancer", "an intern", "an office worker", "homeless", "unemployed", "unemployed", "unemployed", "unemployed", "unemployed"]>> +<<set setup.youngCareers = ["a babysitter", "a ballerina", "a barista", "a bartender", "a beggar", "a camgirl", "a camp counselor", "a camwhore", "a cashier", "a cheerleader", "a cocktail waitress", "a cook", "a courier", "a criminal", "a cum dump", "a factory worker", "a farm laborer", "a farm laborer", "a farmer's daughter", "a gang member", "a gang member", "a handmaiden", "a housesitter", "a housewife", "a lifeguard", "a magician's assistant", "a maid", "a meat toilet", "a medical student", "a model", "a nurse", "a paramedic", "a party girl", "a political activist", "a prisoner", "a prostitute", "a racing driver", "a reality show star", "a refugee", "a ride attendant", "a saleswoman", "a secretary", "a security guard", "a service worker", "a shrine maiden", "a soldier", "a street performer", "a stripper", "a student", "a student", "a student", "a teaching assistant", "a truck driver", "a video game streamer", "a waitress", "a yoga instructor", "an air hostess", "an apprentice", "an arcade attendant", "an artist", "an aspiring pop star", "an assassin", "an escort", "an exotic dancer", "an intern", "an office worker", "homeless", "unemployed", "unemployed", "unemployed", "unemployed", "unemployed"]>> -<<set setup.educatedCareers = ["an artist", "a ballerina", "a banker", "a business owner", "a chemist", "a child actress", "a classical dancer", "a classical musician", "a coach", "a college scout", "a coroner", "a corporate executive", "a counselor", "a criminal", "a cult leader", "a dean", "a dentist", "a director", "a dispatch officer", "a doctor", "a historian", "a journalist", "a journalist", "a judge", "a lawyer", "a librarian", "a lobbyist", "a madam", "a manager", "a mechanic", "a mediator", "a medical student", "a mercenary", "a military officer", "a military recruiter", "a nun", "a painter", "a paramedic", "a pharmacist", "a photographer", "a pilot", "a poet", "a police detective", "a police negotiator", "a political activist", "a politician", "a principal", "a prison warden", "a private detective", "a private instructor", "a procuress", "a producer", "a professional bartender", "a professor", "a programmer", "a prostitute", "a psychologist", "a refugee", "a scholar", "a scientist", "a sculptor", "a secretary", "a serial divorcee", "a shut-in", "a surgeon", "a teacher", "a teaching assistant", "a therapist", "a transporter", "a veterinarian", "a wedding planner", "a writer", "a zookeeper", "an actress", "an animator", "an air hostess", "an archaeologist", "an assassin", "an astronaut", "an economist", "an editor", "an engineer", "an escort", "an estate agent", "an investor", "an MS pilot", "an office worker", "unemployed"]>> +<<set setup.educatedCareers = ["a ballerina", "a banker", "a business owner", "a chemist", "a child actress", "a classical dancer", "a classical musician", "a coach", "a college scout", "a coroner", "a corporate executive", "a counselor", "a criminal", "a cult leader", "a dean", "a dentist", "a director", "a dispatch officer", "a doctor", "a historian", "a journalist", "a journalist", "a judge", "a lawyer", "a librarian", "a lobbyist", "a madam", "a manager", "a mechanic", "a mediator", "a medical student", "a mercenary", "a military officer", "a military recruiter", "a nun", "a painter", "a paramedic", "a pharmacist", "a photographer", "a pilot", "a poet", "a police detective", "a police negotiator", "a political activist", "a politician", "a principal", "a prison warden", "a private detective", "a private instructor", "a procuress", "a producer", "a professional bartender", "a professor", "a programmer", "a prostitute", "a psychologist", "a refugee", "a scholar", "a scientist", "a sculptor", "a secretary", "a serial divorcee", "a shut-in", "a surgeon", "a teacher", "a teaching assistant", "a therapist", "a transporter", "a veterinarian", "a wedding planner", "a writer", "a zookeeper", "an actress", "an air hostess", "an animator", "an archaeologist", "an artist", "an assassin", "an astronaut", "an economist", "an editor", "an engineer", "an escort", "an estate agent", "an investor", "an MS pilot", "an office worker", "unemployed"]>> -<<set setup.uneducatedCareers = ["an artist", "a baker", "a barber", "a barista", "a bartender", "a beekeeper", "a beggar", "a bodyguard", "a bouncer", "a bounty hunter", "a brewer", "a bus driver", "a butcher", "a butler", "a camgirl", "a camp counselor", "a camwhore", "a candlestick maker", "a caregiver", "a carpenter", "a cashier", "a charity worker", "a chauffeur", "a cheerleader", "a chiropractor", "a clown", "a cocktail waitress", "a con artist", "a construction worker", "a cook", "a criminal", "a croupier", "a cum dump", "a dairy worker", "a dancer", "a delivery woman", "a factory worker", "a farm laborer", "a farmer's daughter", "a farmer", "a firefighter", "a fisherwoman", "a florist", "a fortune teller", "a gang leader", "a gang member", "a gardener", "a groomer", "a handmaiden", "a hotel manager", "a house DJ", "a housewife", "a hunter", "a janitor", "a landlady", "a launderer", "a law enforcement officer", "a lifeguard", "a local news anchor", "a lumberjack", "a magician's assistant", "a maid", "a mail carrier", "a masseuse", "a masseuse", "a meat toilet", "a medic", "a medic", "a medium", "a messenger", "a milkmaid", "a mime", "a missionary", "a mistress", "a model", "a mortician", "a musician", "a nurse", "a paramedic", "a park ranger", "a party girl", "a peddler", "a pimp", "a pirate", "a plumber", "a political activist", "a prison guard", "a prisoner", "a procuress", "a prostitute", "a racing driver", "a radio show host", "a rancher", "a refugee", "a revolutionary", "a ride attendant", "a roadie", "a rodeo star", "a sailor", "a saleswoman", "a secretary", "a security guard", "a service worker", "a shepherd", "a shrine maiden", "a soldier", "a stage magician", "a street performer", "a stripper", "a student", "a stuntwoman", "a switchboard operator", "a talent scout", "a taxi driver", "a teacher", "a trophy wife", "a truck driver", "a waitress", "a weathergirl", "a whaler", "a zookeeper", "an acrobat", "an actress", "an arcade attendant", "an aspiring pop star", "an athlete", "an electrician", "an enforcer", "an enforcer", "an escort", "an exotic dancer", "an exterminator", "an innkeeper", "an office worker", "homeless", "in a militia", "unemployed", "unemployed", "unemployed", "unemployed", "unemployed"]>> +<<set setup.uneducatedCareers = ["a baker", "a barber", "a barista", "a bartender", "a beekeeper", "a beggar", "a bodyguard", "a bouncer", "a bounty hunter", "a brewer", "a bus driver", "a butcher", "a butler", "a camgirl", "a camp counselor", "a camwhore", "a candlestick maker", "a caregiver", "a carpenter", "a cashier", "a charity worker", "a chauffeur", "a cheerleader", "a chiropractor", "a clown", "a cocktail waitress", "a con artist", "a construction worker", "a cook", "a criminal", "a croupier", "a cum dump", "a dairy worker", "a dancer", "a delivery woman", "a factory worker", "a farm laborer", "a farmer's daughter", "a farmer", "a firefighter", "a fisherwoman", "a florist", "a fortune teller", "a gang leader", "a gang member", "a gardener", "a groomer", "a handmaiden", "a hotel manager", "a house DJ", "a housewife", "a hunter", "a janitor", "a landlady", "a launderer", "a law enforcement officer", "a lifeguard", "a local news anchor", "a lumberjack", "a magician's assistant", "a maid", "a mail carrier", "a masseuse", "a masseuse", "a meat toilet", "a medic", "a medic", "a medium", "a messenger", "a milkmaid", "a mime", "a missionary", "a mistress", "a model", "a mortician", "a musician", "a nurse", "a paramedic", "a park ranger", "a party girl", "a peddler", "a pimp", "a pirate", "a plumber", "a political activist", "a prison guard", "a prisoner", "a procuress", "a prostitute", "a racing driver", "a radio show host", "a rancher", "a refugee", "a revolutionary", "a ride attendant", "a roadie", "a rodeo star", "a sailor", "a saleswoman", "a secretary", "a security guard", "a service worker", "a shepherd", "a shrine maiden", "a soldier", "a stage magician", "a street performer", "a stripper", "a student", "a stuntwoman", "a switchboard operator", "a talent scout", "a taxi driver", "a teacher", "a trophy wife", "a truck driver", "a waitress", "a weathergirl", "a whaler", "a zookeeper", "an acrobat", "an actress", "an arcade attendant", "an artist", "an aspiring pop star", "an athlete", "an electrician", "an enforcer", "an enforcer", "an escort", "an exotic dancer", "an exterminator", "an innkeeper", "an office worker", "homeless", "in a militia", "unemployed", "unemployed", "unemployed", "unemployed", "unemployed"]>> <<set setup.gratefulCareers = ["a beggar", "a peddler", "a pick-pocket", "a prisoner", "a refugee", "a shut-in", "a street urchin", "a student from a boarding school", "a sweatshop worker", "an orphan", "from a lower class family", "homeless", "unemployed"]>> <<set setup.menialCareers = ["a babysitter", "a bus driver", "a butler", "a cashier", "a chauffeur", "a construction worker", "a cook", "a courier", "a delivery woman", "a dropout", "a factory worker", "a farm laborer", "a fisherwoman", "a handmaiden", "a housesitter", "a housewife", "a maid", "a mail carrier", "a mechanic", "a messenger", "a nun", "a paper girl", "a part-time farm laborer", "a pilot", "a producer", "a programmer", "a ride attendant", "a roadie", "a service worker", "a student from a private school", "a student from a public school", "a student", "a taxi driver", "a truck driver", "an apprentice", "an arcade attendant", "an athlete", "an engineer", "an intern", "being homeschooled by her parents", "from a middle class family", "from an upper class family"]>> -<<set setup.entertainmentCareers = ["an artist", "a camgirl", "a camwhore", "a cheerleader", "a child actress", "a cocktail waitress", "a journalist", "a local news anchor", "a magician's assistant", "a party girl", "a racing driver", "a rodeo star", "a stage magician", "a street performer", "a stuntwoman", "a video game streamer", "a waitress", "a weathergirl", "a writer", "an actress"]>> +<<set setup.entertainmentCareers = ["a camgirl", "a camwhore", "a cheerleader", "a child actress", "a cocktail waitress", "a journalist", "a local news anchor", "a magician's assistant", "a party girl", "a racing driver", "a rodeo star", "a stage magician", "a street performer", "a stuntwoman", "a video game streamer", "a waitress", "a weathergirl", "a writer", "an actress", "an artist"]>> <<set setup.whoreCareers = ["a child prostitute", "a criminal", "a cum dump", "a Futanari Sister", "a juvenile delinquent", "a meat toilet", "a mistress", "a model", "a pageant star", "a pirate", "a porn star", "a prostitute", "a reality show star", "a saleswoman", "a serial divorcee", "a stripper", "a trophy wife", "an escort", "an exotic dancer"]>> @@ -337,7 +337,7 @@ <<set setup.whiteAmericanSlaveNames = ["Aaliyah", "Abagail", "Abba", "Abbie", "Abby", "Abiah", "Abigail", "Achsah", "Ada", "Adaline", "Adalyn", "Addie", "Addison", "Adelaide", "Adele", "Adelia", "Adelina", "Adeline", "Adina", "Adriana", "Adrianna", "Agnes", "Ahuva", "Aileen", "Aisha", "Alaina", "Alana", "Aleksandra", "Alessandra", "Alessia", "Alex", "Alexa", "Alexandra", "Alexandria", "Alexia", "Alexis", "Alice", "Alicia", "Alida", "Alina", "Alisa", "Aliza", "Allison", "Alma", "Almeda", "Almina", "Almira", "Alvira", "Alyssa", "Amalia", "Amanda", "Amara", "Amata", "Amber", "Amelia", "Amelie", "America", "Amina", "Amira", "Amy", "Ana", "Anastasia", "Andrea", "Angela", "Angelica", "Angelina", "Angeline", "Angie", "Anisa", "Anita", "Ann", "Anna", "Annabel", "Annabelle", "Annah", "Anne", "Annette", "Annie", "Annis", "Antonia", "April", "Arabella", "Araminta", "Arena", "Aria", "Ariana", "Arianna", "Ariel", "Ariela", "Ariella", "Arielle", "Arlene", "Arminda", "Arvilla", "Asenath", "Ashley", "Atara", "Athena", "Aubrey", "Audrey", "Augusta", "Aurelia", "Aurilla", "Aurora", "Austin", "Autumn", "Ava", "Avery", "Avigail", "Avital", "Aviva", "Aya", "Ayala", "Ayla", "Aziza", "Baila", "Bailey", "Barbara", "Barbary", "Barbery", "Barbi", "Barbie", "Basya", "Bathsheba", "Batsheva", "Batya", "Beatrice", "Beatrix", "Becca", "Belinda", "Bell", "Bella", "Belle", "Bernice", "Bertha", "Bessie", "Beth", "Bethany", "Bethena", "Bethia", "Betsey", "Betsy", "Bette", "Betty", "Beulah", "Beverly", "Bianca", "Biddy", "Billie", "Bitsy", "Blair", "Blake", "Blanche", "Bleba", "Blima", "Blimy", "Bonnibel", "Bonnie", "Boone", "Bracha", "Brandi", "Brandy", "Breanna", "Bree", "Breindy", "Brenda", "Briana", "Brianna", "Bridges", "Bridget", "Brielle", "Britney", "Brittany", "Brittney", "Brooke", "Brooklyn", "Brucha", "Bruchy", "Bryanne", "Brynn", "Buffy", "Bunny", "Caitlin", "Calista", "Callie", "Cameron", "Camila", "Camilla", "Camille", "Candice", "Carla", "Carly", "Carol", "Carole", "Carolina", "Caroline", "Carolyn", "Carrie", "Casey", "Cassandra", "Cassidy", "Cath", "Catharine", "Catherine", "Cathern", "Cathy", "Cecelia", "Cecila", "Cecilia", "Celestia", "Celia", "Celinda", "Celine", "Chana", "Chanie", "Chany", "Charity", "Charlie", "Charlott", "Charlotte", "Chava", "Chavy", "Chaya", "Chel", "Chelsea", "Cherry", "Cheryl", "Cheyenne", "Chiara", "Chloe", "Christian", "Christiana", "Christina", "Christine", "Christy", "Cindy Lou", "Cindy", "Claire", "Clara", "Clarinda", "Clarisa", "Clarissa", "Claudia", "Clementine", "Clover", "Colette", "Colleen", "Columbia", "Comfort", "Connie", "Cora", "Coraline", "Cordelia", "Cornelia", "Courtney", "Crimson", "Crystal", "Cyntha", "Cynthia", "Dahlia", "Daisy", "Dalia", "Dana", "Daniela", "Daniella", "Danielle", "Daphne", "Darcus", "Daria", "Darla", "Darleen", "Darlene", "Dawn", "Deanie", "Debbie", "Deborah", "Debra", "Dee", "Delia", "Delila", "Delilah", "Della", "Delores", "Delphine", "Denise", "Desire", "Destiny", "Devora", "Devorah", "Diana", "Diane", "Dianne", "Diantha", "Dicey", "Dicy", "Dina", "Dinah", "Dixie", "Dolly", "Dolores", "Donna", "Dora", "Dorcas", "Doreen", "Doris", "Dorothea", "Dorothy", "Drew", "Drusilla", "Dusty", "Dylan", "Easter", "Eda", "Eden", "Edie", "Edith", "Edna", "Edney", "Effa", "Effie", "Eileen", "Elaine", "Eleanor", "Electa", "Elena", "Eleni", "Elenor", "Eliana", "Elira", "Elisa", "Elisabeth", "Elise", "Elisheva", "Eliz", "Eliza", "Elizabeth", "Ella", "Elle", "Ellen", "Ellender", "Elliana", "Ellie", "Ellin", "Elmira", "Eloise", "Elsa", "Elsie", "Elvira", "Elyse", "Elza", "Emaline", "Emely", "Emerson", "Emilia", "Emiline", "Emily", "Emley", "Emma", "Emmeline", "Eneatha", "Erica", "Erika", "Erin", "Esme", "Estelle", "Ester", "Esther", "Esty", "Ethel", "Etta", "Etty", "Eudora", "Eugenia", "Eugenie", "Eunice", "Euphemia", "Eva", "Evaline", "Evangeline", "Eve", "Evelina", "Eveline", "Evelyn", "Everly", "Evie", "Experience", "Faiga", "Faigy", "Faith", "Fannie", "Fanny", "Farah", "Farmer", "Fatima", "Felicity", "Fidelia", "Finley", "Fiona", "Flora", "Florence", "Florida", "Fradel", "Frady", "Fraidy", "France", "Frances", "Francesca", "Frelove", "Freya", "Frimet", "Gabriela", "Gabriella", "Gabrielle", "Gage", "Gaige", "Gail", "Gemima", "Gemma", "Genevieve", "Georgia", "Georgianna", "Geraldine", "Gertrude", "Gia", "Giada", "Gianna", "Gina", "Ginger", "Giovanna", "Giselle", "Gittel", "Gitty", "Giulia", "Giuliana", "Gladis", "Gladys", "Glenda", "Gloria", "Golda", "Goldie", "Goldy", "Grace", "Gracie", "Grenda", "Greta", "Gwen", "Hadassa", "Hadassah", "Hadley", "Hailey", "Haley", "Hana", "Hanna", "Hannah", "Hariett", "Harlow", "Harper", "Harriet", "Harriette", "Harriot", "Hattie", "Hazel", "Heather", "Heidi", "Helen", "Helena", "Hellen", "Henchy", "Henny", "Henrietta", "Hepsey", "Hester", "Hetta", "Hilda", "Hinda", "Hindy", "Holly", "Honora", "Huldah", "Ida", "Idy", "Ilana", "Indiana", "Ines", "Irene", "Iris", "Isabel", "Isabella", "Isabelle", "Isadore", "Isla", "Issabella", "Ivy", "Izabella", "Jacqueline", "Jada", "Jade", "Jamie", "Jana", "Jane", "Janet", "Janette", "Janice", "Janie", "Janine", "Jasmina", "Jasmine", "Jean", "Jeann", "Jeanne", "Jemima", "Jenna", "Jennett", "Jennie", "Jennifer", "Jenny", "Jerusha", "Jesse", "Jessica", "Jessie", "Jill", "Jo", "Joan", "Joana", "Joann", "Joanna", "Joanne", "Jocelyn", "Jodie", "Jolie", "Jones", "Jordan", "Jordyn", "Josephine", "Joy", "Joyce", "Juana", "Juanita", "Juda", "Judith", "Judy", "Julia", "Julian", "Juliana", "Julianna", "Julie", "Juliet", "Juliette", "June", "Juniper", "Kaila", "Kaitlyn", "Karen", "Karol", "Karoline", "Kat", "Kate", "Katelyn", "Katerina", "Katherine", "Kathleen", "Kathryn", "Kathy", "Katie", "Kay", "Kaya", "Kayla", "Kaylee", "Keira", "Kelly", "Kelsey", "Kennedy", "Keziah", "Khloe", "Kim", "Kimberly", "Kira", "Kitty", "Kristen", "Kristin", "Kristina", "Krystal", "Kylie", "Laila", "Lamiza", "Lana", "Laney", "Lara", "Latoya", "Latrina", "Laura", "Lauren", "Laurie", "Lavina", "Lavinia", "Layan", "Layla", "Lea", "Leah", "Lee", "Leila", "Lena", "Leona", "Leora", "Leslie", "Levina", "Leyla", "Lia", "Liana", "Liba", "Libby", "Lila", "Lilah", "Lilian", "Liliana", "Lillian", "Lillie", "Lilly", "Lily", "Lina", "Linda", "Lindsay", "Lindsey", "Lisa", "Liv", "Livia", "Lizzie", "Lois", "Loisa", "Lola", "London", "Loretta", "Lori", "Lorinda", "Lorna", "Lorraine", "Lottie", "Louisa", "Louise", "Louisiana", "Louiza", "Louvina", "Lovina", "Luanne", "Lucetta", "Lucia", "Luciana", "Lucille", "Lucina", "Lucinda", "Lucretia", "Lucy", "Lula", "Lulu", "Luna", "Lura", "Lurleen", "Lydia", "Lyla", "Lynch", "Lynette", "Lynn", "Mabel", "Mackenzie", "Madeleine", "Madeline", "Madelyn", "Madison", "Madora", "Mae", "Maeve", "Magdalena", "Magdaline", "Maggie", "Mahala", "Mahaley", "Maisie", "Makayla", "Malak", "Malinda", "Malissa", "Malka", "Malky", "Malvina", "Mamie", "Manda", "Mandy", "Manerva", "Marceline", "Marcia", "Marcy", "Marey", "Margaret", "Margarett", "Margaretta", "Margarette", "Margaux", "Marge", "Margot", "Margret", "Marguerite", "Maria", "Mariah", "Mariam", "Marian", "Maribeth", "Marie", "Marielle", "Marietta", "Marilla", "Marilyn", "Marina", "Marion", "Mariska", "Marissa", "Marjorie", "Marlene", "Martha", "Mary Alice", "Mary Anne", "Mary Jane", "Mary Lou", "Mary", "Maryam", "Matilda", "Mattie", "Maud", "Maude", "Mavis", "Maxine", "May", "Maya", "Medora", "Megan", "Meghan", "Megyn", "Mehitable", "Melanie", "Melinda", "Melissa", "Melvina", "Mena", "Menucha", "Mercy", "Mia", "Michaela", "Michal", "Michele", "Michelle", "Mikayla", "Mila", "Milana", "Mildred", "Milena", "Miley", "Milla", "Miller", "Milly", "Mina", "Mindy", "Minerva", "Minnie", "Mira", "Miranda", "Mirel", "Miri", "Miriam", "Missouri", "Misty", "Mollie", "Molly", "Monica", "Morgan", "Moriah", "Muffy", "Mushka", "Myra", "Myrtle", "Nadia", "Nancy", "Nannie", "Naoma", "Naomi", "Narcissa", "Natalia", "Natalie", "Natasha", "Nazz", "Nechama", "Nellie", "Nettie", "Nevaeh", "Nicole", "Nicolette", "Nicollette", "Nikki", "Nina", "Noa", "Noelle", "Noor", "Nora", "Norah", "Norma", "Octavia", "Olive", "Olivia", "Onza", "Opal", "Orpha", "Orvilla", "Pacifica", "Paige", "Pamela", "Pamelia", "Parker", "Parnethia", "Parthena", "Parthenia", "Pat", "Patience", "Patricia", "Patsey", "Patsy", "Paula", "Pauline", "Pearl", "Peg", "Peggy Sue", "Peggy", "Penelope", "Percilla", "Perel", "Perl", "Permelia", "Perry", "Persis", "Pessy", "Peyton", "Pheba", "Phebe", "Pheby", "Pheobe", "Philena", "Philinda", "Phoebe", "Phyllis", "Pinky", "Piper", "Polina", "Polley", "Polly", "Poppy", "Portia", "Priscilla", "Prudence", "Quinn", "Rachael", "Rachal", "Rachel", "Raina", "Raizel", "Raizy", "Raquel", "Rayleen", "Reagan", "Rebeca", "Rebecca", "Reem", "Reese", "Regina", "Reizy", "Rena", "Renee", "Rhoda", "Rhody", "Rhonda", "Rifka", "Rifky", "Riley", "Rita", "Rivka", "Rivky", "Roberta", "Robin", "Rochel", "Roda", "Roiza", "Roizy", "Romy", "Rosa", "Rosanna", "Rose of Sharon", "Rose", "Roseanne", "Rosella", "Rosemary", "Rosetta", "Rosie", "Rosina", "Rowan", "Roxanne", "Roxy", "Ruby", "Ruchel", "Ruchy", "Ruth", "Rutha", "Ryan", "Sabina", "Sabra", "Sabrina", "Sadie", "Sage", "Salina", "Sallie", "Sally", "Salma", "Sam", "Samantha", "Samira", "Sandra", "Sandy", "Sara", "Sarah", "Sarepta", "Sarrah", "Sasha", "Savannah", "Scarlett", "Selina", "Selma", "Serena", "Shaina", "Shaindel", "Shaindy", "Shannon", "Sharon", "Shayna", "Sheila", "Shelby", "Sherri", "Sherry", "Shevy", "Shifra", "Shira", "Shirley", "Shoshana", "Sidra", "Siena", "Sienna", "Sierra", "Sigourney", "Silver", "Sima", "Simi", "Simone", "Skylar", "Skyler", "Sloane", "Sofia", "Sonia", "Sophia", "Sophiah", "Sophie", "Sophronia", "Spencer", "Stacey", "Stacy", "Stella", "Stephanie", "Sue", "Summer", "Suri", "Sury", "Susan", "Susanah", "Susanna", "Susannah", "Susie", "Suzanne", "Swoop", "Sydney", "Sylvia", "Sylvie", "Syntha", "Tabitha", "Talia", "Tamar", "Tamara", "Tammy", "Tanya", "Tara", "Taylor", "Telitha", "Temperance", "Tennessee", "Teresa", "Teri", "Terri", "Terry", "Tess", "Tessa", "Thadine", "Thankful", "Thea", "Thelma", "Theresa", "Thursey", "Tiana", "Tiffani", "Tiffany", "Tina", "Tippins", "Toby", "Tomi", "Tonya", "Tova", "Tracey", "Tracy", "Trany", "Trinity", "Tryphena", "Tzipora", "Tziporah", "Tzippy", "Tzivia", "Unice", "Unity", "Ursula", "Valentina", "Valerie", "Vanessa", "Velma", "Vera", "Veronica", "Veronika", "Vicki", "Vickie", "Victoria", "Viola", "Violet", "Violeta", "Virginia", "Vivian", "Vivienne", "Wanda", "Wealthy", "Wendy", "Whitney", "Wilhelmina", "Willa", "Willie", "Wilma", "Winona", "Yachet", "Yael", "Yara", "Yasmin", "Yasmina", "Yasmine", "Yehudis", "Yides", "Yitta", "Yitty", "Yocheved", "Zelda", "Zilpha", "Zissy", "Zoe", "Zoey"]>> -<<set setup.whiteAmericanSlaveSurnames = ["Aaron", "Abbott", "Abel", "Abell", "Abernathy", "Abney", "Abraham", "Abrams", "Acker", "Ackerman", "Ackley", "Acosta", "Adair", "Adam", "Adams", "Adamson", "Adcock", "Addison", "Adkins", "Adler", "Agee", "Agnew", "Aguilar", "Ahern", "Ahrens", "Aiello", "Aiken", "Ainsworth", "Akers", "Akin", "Akins", "Albanese", "Albers", "Albert", "Albertson", "Albrecht", "Albright", "Alcorn", "Alderman", "Aldrich", "Aldridge", "Alexander", "Alford", "Allan", "Allard", "Allen", "Alley", "Allison", "Allman", "Allred", "Almeida", "Almodovar", "Altman", "Alvarez", "Alves", "Amaral", "Amato", "Amber", "Ambrose", "Ames", "Ammons", "Amos", "Amundson", "Anders", "Andersen", "Anderson", "Andrade", "Andrew", "Andrews", "Andrus", "Angel", "Angell", "Angelo", "Anglin", "Anthony", "Appel", "Apple", "Applegate", "Archer", "Archibald", "Ard", "Armstrong", "Arndt", "Arnett", "Arnold", "Arrington", "Arsenault", "Arthur", "Asay", "Asbury", "Ash", "Ashby", "Ashcraft", "Asher", "Ashley", "Ashton", "Ashworth", "Askew", "Atchison", "Atchley", "Atherton", "Atkins", "Atkinson", "Atwell", "Atwood", "Augustine", "Ault", "Austin", "Autry", "Avery", "Ayers", "Ayres", "Babb", "Babcock", "Bach", "Bachman", "Back", "Backus", "Bacon", "Bader", "Badger", "Baer", "Baggett", "Bagley", "Bagwell", "Bahr", "Bailey", "Bain", "Bair", "Baird", "Baker", "Baldwin", "Bale", "Bales", "Ball", "Ballard", "Ballew", "Ballinger", "Bandy", "Bane", "Banks", "Bannon", "Barbee", "Barber", "Barbour", "Barclay", "Bare", "Barfield", "Barger", "Barker", "Barkley", "Barlow", "Barnard", "Barnes", "Barnett", "Barnette", "Barney", "Barnhart", "Barnhill", "Baron", "Barone", "Barr", "Barrett", "Barron", "Barrow", "Barrows", "Barry", "Barrymore", "Bartels", "Barth", "Bartholomew", "Bartlett", "Bartley", "Barton", "Basham", "Basile", "Bass", "Bassett", "Batchelor", "Bateman", "Bates", "Batson", "Battaglia", "Batten", "Bauer", "Baugh", "Baughman", "Baum", "Bauman", "Baumann", "Baumgartner", "Baxley", "Baxter", "Bayer", "Bays", "Beach", "Beal", "Beall", "Beals", "Beam", "Bean", "Bear", "Beard", "Bearden", "Beardsley", "Beasley", "Beattie", "Beatty", "Beaty", "Beauchamp", "Beaudoin", "Beaulieu", "Beaver", "Beavers", "Bechtel", "Beck", "Becker", "Beckett", "Beckham", "Beckman", "Beckstead", "Beckwith", "Beebe", "Beeler", "Beers", "Beeson", "Begley", "Behrens", "Belanger", "Belcher", "Bell", "Bellamy", "Belt", "Bender", "Benedict", "Benes", "Benjamin", "Benner", "Bennett", "Bennion", "Benoit", "Benson", "Bentley", "Benton", "Berg", "Berger", "Bergeron", "Bergman", "Bergstrom", "Berkowitz", "Berlin", "Berman", "Bernard", "Berndt", "Bernhardt", "Bernier", "Bernstein", "Berry", "Berryman", "Bertram", "Bertrand", "Best", "Bettencourt", "Betts", "Betz", "Beverly", "Beyer", "Bianchi", "Bianco", "Bice", "Bickel", "Bickford", "Biddle", "Biden", "Bigelow", "Biggs", "Billings", "Billingsley", "Bills", "Binder", "Bingham", "Binkley", "Birch", "Bird", "Bischoff", "Bishop", "Bittner", "Bivens", "Black", "Blackburn", "Blackman", "Blackmon", "Blackwell", "Blackwood", "Blair", "Blake", "Blakely", "Blalock", "Blanchard", "Blanchette", "Bland", "Blank", "Blankenship", "Blanton", "Blaylock", "Bledsoe", "Blevins", "Bliss", "Block", "Blodgett", "Bloom", "Blount", "Blue", "Blum", "Blythe", "Bock", "Boehm", "Boettcher", "Bogart", "Boggs", "Bohannon", "Bohn", "Boland", "Bolen", "Boles", "Bolhuis", "Bolin", "Boling", "Bollinger", "Bolt", "Bolton", "Bond", "Bonds", "Bone", "Bonner", "Bontrager", "Booher", "Booker", "Boone", "Booth", "Boothe", "Bordelon", "Borden", "Borders", "Boren", "Borges", "Born", "Boss", "Bostic", "Boston", "Boswell", "Bouchard", "Boucher", "Boudreau", "Boudreaux", "Bounds", "Bourgeois", "Bourne", "Bourque", "Bowden", "Bowen", "Bower", "Bowers", "Bowles", "Bowlin", "Bowling", "Bowman", "Bowser", "Box", "Boyce", "Boyd", "Boyer", "Boykin", "Boylan", "Boyle", "Boyles", "Bracken", "Brackett", "Bradbury", "Braden", "Bradford", "Bradley", "Bradshaw", "Brady", "Bragg", "Bramble", "Branch", "Brand", "Brandenburg", "Brandon", "Brandt", "Branham", "Brannan", "Brannon", "Branson", "Brant", "Brantley", "Braswell", "Bratcher", "Bratton", "Braun", "Bray", "Breaux", "Breeden", "Breedlove", "Breen", "Breitbart", "Bremer", "Brennan", "Brenner", "Brewer", "Brewster", "Bricker", "Bridges", "Briggs", "Bright", "Brill", "Brink", "Brinkley", "Brinkman", "Brinson", "Briscoe", "Bristow", "Britt", "Brittain", "Britton", "Brock", "Brockman", "Broderick", "Brody", "Brogan", "Bronson", "Brooks", "Broome", "Brophy", "Brothers", "Broughton", "Broussard", "Brower", "Brown", "Browne", "Brownell", "Browning", "Brownlee", "Broyles", "Brubaker", "Bruce", "Brumfield", "Brumley", "Bruner", "Brunner", "Bruno", "Bruns", "Brunson", "Brush", "Bryan", "Bryant", "Bryson", "Buchanan", "Bucher", "Buchholz", "Buck", "Buckingham", "Buckley", "Buckner", "Budd", "Buehler", "Buell", "Buffington", "Bull", "Bullard", "Bullock", "Bunch", "Bundy", "Bunker", "Bunn", "Bunting", "Burc", "Burch", "Burchett", "Burchfield", "Burden", "Burdette", "Burdick", "Burge", "Burger", "Burgess", "Burk", "Burke", "Burkett", "Burkhardt", "Burkhart", "Burkholder", "Burks", "Burleson", "Burnett", "Burnette", "Burnham", "Burns", "Burnside", "Burr", "Burrell", "Burris", "Burroughs", "Burrow", "Burrows", "Burt", "Burton", "Busby", "Busch", "Bush", "Buss", "Butcher", "Butler", "Butterfield", "Button", "Butts", "Buxton", "Byers", "Byler", "Bynum", "Byrd", "Byrne", "Byrnes", "Cable", "Cabral", "Cady", "Cagle", "Cahill", "Cain", "Calabrese", "Caldwell", "Calhoun", "Calkins", "Call", "Callahan", "Callaway", "Calloway", "Calvert", "Cameron", "Camp", "Campbell", "Canfield", "Cannon", "Cantrell", "Cantwell", "Capps", "Caputo", "Carbone", "Card", "Carden", "Cardwell", "Carey", "Carl", "Carlin", "Carlisle", "Carlson", "Carlton", "Carman", "Carmichael", "Carnahan", "Carnes", "Carney", "Caron", "Carpenter", "Carr", "Carrier", "Carroll", "Carson", "Carter", "Cartwright", "Caruso", "Carvalho", "Carver", "Cary", "Case", "Casey", "Cash", "Cason", "Casper", "Cass", "Cassell", "Cassidy", "Casteel", "Castillo", "Castle", "Castleberry", "Casto", "Castro", "Caswell", "Catalano", "Cates", "Cathey", "Caudill", "Caudle", "Caulfield", "Causey", "Cavanaugh", "Cave", "Cecil", "Chadwick", "Chaffin", "Chamberlain", "Chamberlin", "Chambers", "Champagne", "Champion", "Chance", "Chandler", "Chaney", "Chapin", "Chapman", "Chappell", "Charles", "Charlton", "Chase", "Chastain", "Chavez", "Cheatham", "Cheek", "Cheney", "Cherry", "Chester", "Childers", "Childress", "Childs", "Chisholm", "Chitwood", "Choate", "Chrisman", "Christ", "Christensen", "Christenson", "Christian", "Christiansen", "Christianson", "Christie", "Christman", "Christopher", "Christy", "Church", "Churchill", "Claire", "Clancy", "Clapp", "Clark", "Clarke", "Clarkson", "Clary", "Clausen", "Clawson", "Clay", "Clayton", "Cleary", "Clegg", "Clem", "Clemens", "Clement", "Clements", "Clemons", "Cleveland", "Clevenger", "Clifford", "Clifton", "Cline", "Clinton", "Clooney", "Close", "Cloud", "Clough", "Clouse", "Cloutier", "Coates", "Coats", "Cobb", "Coble", "Coburn", "Cochran", "Cochrane", "Cockrell", "Cody", "Coe", "Coffey", "Coffin", "Coffman", "Coggins", "Cohen", "Cohn", "Coker", "Colbert", "Colburn", "Colby", "Cole", "Coleman", "Coles", "Coley", "Collett", "Colley", "Collier", "Collins", "Colmes", "Colson", "Colvin", "Colwell", "Combs", "Comer", "Compton", "Comstock", "Conaway", "Condon", "Cone", "Conger", "Conklin", "Conley", "Conlon", "Conn", "Connell", "Connelly", "Conner", "Connolly", "Connor", "Connors", "Conover", "Conrad", "Conroy", "Conte", "Conti", "Conway", "Cook", "Cooke", "Cooley", "Coolidge", "Coombs", "Coon", "Cooney", "Coons", "Cooper", "Cope", "Copeland", "Copley", "Coppola", "Corbett", "Corbin", "Corcoran", "Cordell", "Corder", "Corduroy", "Corey", "Corley", "Cormier", "Corn", "Cornelius", "Cornell", "Cornett", "Cornwell", "Correia", "Correll", "Corrigan", "Corwin", "Cosgrove", "Costa", "Costello", "Cote", "Cotter", "Cotton", "Cottrell", "Couch", "Coughlin", "Coulter", "Counts", "Courtney", "Cousins", "Couture", "Covert", "Covey", "Covington", "Cowan", "Cowart", "Cox", "Coy", "Coyle", "Coyne", "Crabtree", "Craddock", "Craft", "Craig", "Crain", "Cramer", "Crandall", "Crane", "Cranford", "Craven", "Crawford", "Crawley", "Creamer", "Creech", "Creel", "Creighton", "Crenshaw", "Crest", "Crews", "Crider", "Crisp", "Crist", "Criswell", "Crites", "Crocker", "Crockett", "Croft", "Cromer", "Cronin", "Crook", "Crooks", "Crosby", "Cross", "Crouch", "Crouse", "Crow", "Crowder", "Crowe", "Crowell", "Crowley", "Cruise", "Crum", "Crumb", "Crump", "Cruse", "Cruz", "Crystal", "Culbertson", "Cullen", "Culp", "Culpepper", "Culver", "Cummings", "Cummins", "Cunningham", "Cupp", "Curley", "Curran", "Currie", "Currier", "Curry", "Curtin", "Curtis", "Cushing", "Cushman", "Custer", "Cutler", "Cyr", "Dagostino", "Dahl", "Daigle", "Dailey", "Daily", "Dale", "Daley", "Dalrymple", "Dalton", "Daly", "Damato", "Damico", "Damron", "Dangelo", "Daniel", "Daniels", "Danielson", "Danner", "Darby", "Dark", "Darling", "Darnell", "Darr", "Dasilva", "Daugherty", "Davenport", "Davey", "David", "Davidson", "Davies", "Davis", "Davison", "Dawkins", "Dawson", "Day", "Dayton", "De Santa", "Deal", "Dean", "Deangelis", "Deaton", "Deboer", "Decker", "Dees", "Dehart", "Delaney", "Delany", "Delgado", "Dell", "Dellinger", "Deloach", "Delong", "Deluca", "DeLuca", "Demarco", "Demers", "DeMille", "Dempsey", "Denham", "Denison", "Denney", "Denning", "Dennis", "Dennison", "Denny", "Dent", "Denton", "Derosa", "Derr", "Derrick", "Desantis", "Desimone", "Desmond", "Destefano", "Deutsch", "Devine", "Devito", "Devlin", "Devore", "Devries", "Dewey", "Dewitt", "DeWitt", "Dexter", "Deyoung", "Dial", "Diamond", "Dias", "Diaz", "Dick", "Dickens", "Dickerson", "Dickey", "Dickinson", "Dickson", "Diehl", "Dietrich", "Dietz", "Dill", "Dillard", "Dillon", "Dinkley", "Dion", "Dionne", "Dix", "Dixon", "Doan", "Doane", "Dobbins", "Dobbs", "Dobson", "Dockery", "Dodd", "Dodds", "Dodge", "Dodson", "Doe", "Doherty", "Dolan", "Doll", "Dombrowski", "Donahue", "Donald", "Donaldson", "Donley", "Donnelly", "Donohue", "Donovan", "Dooley", "Doolittle", "Doran", "Dorman", "Dorn", "Dorsey", "Doss", "Dotson", "Doty", "Doucette", "Dougherty", "Doughty", "Douglas", "Douglass", "Dove", "Dover", "Dow", "Dowd", "Dowdy", "Dowell", "Dowling", "Downey", "Downing", "Downs", "Doyle", "Dozier", "Drake", "Draper", "Drew", "Dreyer", "Driggers", "Driscoll", "Driver", "Drummond", "Drury", "Dube", "Dubois", "Dubose", "Duckworth", "Duda", "Dudley", "Duff", "Duffy", "Dugan", "Duggan", "Dugger", "Dukakis", "Duke", "Dukes", "Dumas", "Dunaway", "Dunbar", "Duncan", "Dunham", "Dunlap", "Dunn", "Dunne", "Dunning", "Dupont", "Dupre", "Dupree", "Dupuis", "Duran", "Durand", "Durant", "Durbin", "Durham", "Durkin", "Dutton", "Duval", "Duvall", "Dvorak", "Dwyer", "Dye", "Dyer", "Dykes", "Dykstra", "Dyson", "Eads", "Eagle", "Earl", "Earle", "Earley", "Early", "Earnest", "Easley", "Eason", "East", "Easter", "Eastman", "Easton", "Eaton", "Eaves", "Ebert", "Eby", "Echols", "Eck", "Eckert", "Eddy", "Eden", "Edgar", "Edge", "Edmonds", "Edmondson", "Edwards", "Egan", "Egbert", "Eggers", "Eggleston", "Egielski", "Ehlers", "Eisenberg", "Eisenhower", "Elam", "Elder", "Eldridge", "Elias", "Elkins", "Eller", "Ellington", "Elliot", "Elliott", "Ellis", "Ellison", "Ellsworth", "Elmore", "Elrod", "Ely", "Embry", "Emerson", "Emery", "Emmons", "Engel", "England", "Engle", "English", "Engstrom", "Ennis", "Enos", "Enright", "Epperson", "Epps", "Epstein", "Erb", "Erdman", "Erickson", "Ernst", "Ervin", "Erwin", "Esposito", "Estep", "Estes", "Etheridge", "Ethridge", "Eubanks", "Evans", "Evenson", "Everett", "Everhart", "Evers", "Everson", "Ewing", "Ezell", "Faber", "Fabian", "Fagan", "Fahey", "Fain", "Fair", "Fairbanks", "Fairchild", "Faircloth", "Falcone", "Falk", "Fallon", "Fanning", "Farber", "Farkas", "Farley", "Farmer", "Farnsworth", "Farr", "Farrar", "Farrell", "Farrington", "Farris", "Farrow", "Faulk", "Faulkner", "Faust", "Fay", "Fazio", "Fee", "Feeney", "Feldman", "Feldsted", "Felix", "Feller", "Fellows", "Felton", "Felts", "Fennell", "Fenton", "Ferguson", "Fernandes", "Fernandez", "Ferrante", "Ferrara", "Ferrari", "Ferraro", "Ferreira", "Ferrell", "Ferris", "Ferry", "Fiedler", "Field", "Fields", "Fike", "Finch", "Fincher", "Findley", "Fine", "Fink", "Finley", "Finn", "Finnegan", "Finney", "Fiore", "Fischer", "Fish", "Fisher", "Fishman", "Fisk", "Fitch", "Fitzgerald", "FitzGerald", "Fitzpatrick", "Fitzsimmons", "Flaherty", "Flanagan", "Flanders", "Flanigan", "Flannery", "Fleck", "Fleming", "Fletcher", "Flick", "Flint", "Flood", "Flora", "Flores", "Flowers", "Floyd", "Fluke", "Flynn", "Fogarty", "Fogle", "Foley", "Folsom", "Foltz", "Fontaine", "Fontana", "Fontenot", "Foote", "Forbes", "Forbush", "Ford", "Foreman", "Forman", "Forrest", "Forrester", "Forster", "Forsyth", "Forsythe", "Forte", "Fortier", "Fortin", "Fortner", "Fortune", "Foss", "Foster", "Fountain", "Fournier", "Foust", "Fowler", "Fox", "Foy", "Fraley", "Frame", "France", "Francis", "Francisco", "Franco", "Frank", "Franke", "Frankel", "Franklin", "Franks", "Frantz", "Franz", "Fraser", "Frazer", "Frazier", "Frederick", "Fredericks", "Fredrickson", "Free", "Freed", "Freedman", "Freeland", "Freeman", "Freitas", "French", "Freund", "Frey", "Frick", "Fried", "Friedman", "Friedrich", "Friend", "Fries", "Friesen", "Fritz", "Frost", "Fry", "Frye", "Fryer", "Fuchs", "Fugate", "Fuller", "Fullerton", "Fulmer", "Fulton", "Fultz", "Funk", "Fuqua", "Furlong", "Furman", "Furr", "Fusco", "Gabel", "Gable", "Gabriel", "Gaddis", "Gaffney", "Gage", "Gagne", "Gagnon", "Gaines", "Gaither", "Galbraith", "Gale", "Gall", "Gallagher", "Gallant", "Gallo", "Galloway", "Galvin", "Gamble", "Gandy", "Gann", "Gannon", "Gant", "Garber", "Garcia", "Gardiner", "Gardner", "Garfield", "Garland", "Garman", "Garner", "Garrett", "Garrison", "Garrity", "Garvey", "Garvin", "Gary", "Garza", "Gaskins", "Gass", "Gaston", "Gates", "Gatlin", "Gauthier", "Gavin", "Gay", "Gearhart", "Geary", "Gee", "Geer", "Geiger", "Geller", "Gentile", "Gentry", "George", "Gerard", "Gerber", "Gerlach", "German", "Getz", "Geyer", "Gibbons", "Gibbs", "Gibson", "Giddings", "Giese", "Gifford", "Gilbert", "Gilbertson", "Gilchrist", "Giles", "Gill", "Gillen", "Gillespie", "Gillette", "Gilley", "Gilliam", "Gilliland", "Gillis", "Gilman", "Gilmore", "Gilson", "Gingerich", "Gingrich", "Ginn", "Giordano", "Gipson", "Girard", "Givens", "Glaser", "Glasgow", "Glass", "Gleason", "Glenn", "Glick", "Glover", "Glynn", "Goad", "Goble", "Goddard", "Godfrey", "Godwin", "Goebel", "Goetz", "Goff", "Goforth", "Goins", "Gold", "Goldberg", "Golden", "Goldman", "Goldsmith", "Goldstein", "Gomes", "Gomez", "Gonzales", "Gonzalez", "Gooch", "Good", "Goode", "Goodin", "Goodman", "Goodrich", "Goodson", "Goodwin", "Gordon", "Gore", "Gorham", "Gorman", "Gorrell", "Gorski", "Gosnell", "Goss", "Gossett", "Gottlieb", "Gough", "Gould", "Gower", "Graber", "Grabowski", "Grace", "Grady", "Graf", "Graff", "Graham", "Granger", "Grant", "Grantham", "Grasso", "Graves", "Gray", "Grayson", "Graziano", "Greathouse", "Greco", "Green", "Greenberg", "Greene", "Greenfield", "Greenlee", "Greenwald", "Greenwell", "Greenwood", "Greer", "Gregg", "Gregory", "Greiner", "Grenier", "Gresham", "Grey", "Grider", "Griffin", "Griffis", "Griffith", "Griffiths", "Griggs", "Grigsby", "Grim", "Grimes", "Grimm", "Grisham", "Grissom", "Griswold", "Groff", "Grogan", "Grooms", "Gross", "Grossman", "Groth", "Grove", "Grover", "Groves", "Grubb", "Grubbs", "Gruber", "Guarino", "Gubler", "Guenther", "Guerra", "Guest", "Guffey", "Guidry", "Guillory", "Guinn", "Gulley", "Gunderson", "Gunn", "Gunter", "Gunther", "Gurley", "Gustafson", "Guthrie", "Gutierrez", "Guy", "Haag", "Haas", "Haase", "Hacker", "Hackett", "Hackney", "Haddad", "Haddock", "Hadley", "Hagan", "Hagen", "Hager", "Haggard", "Haggerty", "Hahn", "Haight", "Haines", "Hair", "Hale", "Hales", "Haley", "Hall", "Haller", "Hallman", "Halsey", "Halstead", "Halverson", "Halvorson", "Ham", "Hamblin", "Hamby", "Hamel", "Hamilton", "Hamlin", "Hamm", "Hammer", "Hammett", "Hammock", "Hammond", "Hammonds", "Hammons", "Hampden", "Hampton", "Hamrick", "Hancock", "Hand", "Handley", "Handy", "Hanes", "Haney", "Hankins", "Hanks", "Hanley", "Hanlon", "Hanna", "Hannah", "Hannity", "Hannon", "Hansen", "Hanson", "Harbin", "Harden", "Harder", "Hardesty", "Hardin", "Harding", "Hardman", "Hardward", "Hardwick", "Hardy", "Hare", "Hargis", "Hargrove", "Harkins", "Harlan", "Harless", "Harley", "Harlow", "Harman", "Harmon", "Harms", "Harp", "Harper", "Harrell", "Harrelson", "Harrington", "Harris", "Harrison", "Hart", "Harter", "Hartley", "Hartman", "Hartmann", "Hartnett", "Hartvigsen", "Hartzell", "Harvey", "Harwell", "Harwood", "Haskell", "Haskins", "Hass", "Hastings", "Hatch", "Hatcher", "Hatfield", "Hathaway", "Hatton", "Hauck", "Haugen", "Hauser", "Havens", "Hawes", "Hawk", "Hawkins", "Hawks", "Hawley", "Hawthorne", "Hay", "Hayden", "Hayes", "Haynes", "Hays", "Hayward", "Haywood", "Hazen", "Head", "Headley", "Healey", "Healy", "Heard", "Hearn", "Heath", "Heaton", "Hebert", "Hecht", "Heck", "Heckman", "Hedges", "Hedrick", "Heffernan", "Heffner", "Heflin", "Hefner", "Heil", "Heilman", "Heim", "Hein", "Heinrich", "Heinz", "Heiser", "Held", "Heller", "Helm", "Helms", "Helton", "Hembree", "Hemphill", "Henderson", "Hendrick", "Hendricks", "Hendrickson", "Hendrix", "Henke", "Henkes", "Henley", "Hennessey", "Hennessy", "Henning", "Henry", "Hensley", "Henson", "Herbert", "Herbst", "Herman", "Hermann", "Hernandez", "Herndon", "Herr", "Herrera", "Herrick", "Herrin", "Herring", "Herrington", "Herrmann", "Herron", "Hershberger", "Herzog", "Hess", "Hester", "Hetrick", "Hewitt", "Hiatt", "Hibbard", "Hickey", "Hickman", "Hicks", "Higdon", "Higginbotham", "Higgins", "Higgs", "High", "Hightower", "Hildebrand", "Hildreth", "Hill", "Hiller", "Hilliard", "Hillman", "Hills", "Hilton", "Himes", "Hinckley", "Hinds", "Hines", "Hinkle", "Hinson", "Hinton", "Hintz", "Hirsch", "Hitchcock", "Hitchens", "Hite", "Hitt", "Hoag", "Hobbs", "Hobson", "Hoch", "Hodge", "Hodges", "Hodgson", "Hofer", "Hoff", "Hoffman", "Hoffmann", "Hofmann", "Hogan", "Hogg", "Hogue", "Hoke", "Holbrook", "Holcomb", "Holcombe", "Holden", "Holder", "Holland", "Holley", "Holliday", "Hollingsworth", "Hollis", "Holloway", "Holly", "Holm", "Holman", "Holmes", "Holt", "Holton", "Holtz", "Homan", "Honeycutt", "Hood", "Hook", "Hooker", "Hooks", "Hooper", "Hoover", "Hope", "Hopkins", "Hoppe", "Hopper", "Hopson", "Horan", "Horn", "Horne", "Horner", "Horning", "Hornsby", "Horowitz", "Horst", "Horton", "Horvath", "Hoskins", "Hostetler", "Houck", "Hough", "Houghton", "Houle", "House", "Houser", "Houston", "Howard", "Howe", "Howell", "Howes", "Howland", "Hoy", "Hoyle", "Hoyt", "Hubbard", "Huber", "Hubert", "Huddleston", "Hudgins", "Hudson", "Huebner", "Huey", "Huff", "Huffman", "Huggins", "Hughes", "Hull", "Hulse", "Hulsey", "Hume", "Hummel", "Humphrey", "Humphreys", "Humphries", "Hundley", "Hunt", "Hunter", "Huntington", "Huntley", "Hurd", "Hurley", "Hurst", "Hurt", "Huskey", "Huss", "Hussey", "Hussie", "Huston", "Hutchens", "Hutcheson", "Hutchings", "Hutchins", "Hutchinson", "Hutchison", "Hutson", "Hutto", "Hutton", "Hyatt", "Hyde", "Hyland", "Hyman", "Hymas", "Hynes", "Ingalls", "Ingersoll", "Ingle", "Ingram", "Inman", "Irby", "Ireland", "Irish", "Irvin", "Irvine", "Irving", "Irwin", "Isaac", "Isaacs", "Isaacson", "Isbell", "Isley", "Israel", "Iverson", "Ives", "Ivey", "Ivy", "Izatt", "Jablonski", "Jack", "Jackman", "Jackson", "Jacob", "Jacobs", "Jacobsen", "Jacobson", "Jacoby", "Jacques", "Jaeger", "James", "Jameson", "Jamieson", "Jamison", "Janes", "Jankowski", "Jansen", "Janssen", "Jarrell", "Jarrett", "Jarvis", "Jasper", "Jay", "Jeffers", "Jefferson", "Jeffery", "Jeffrey", "Jeffries", "Jenkins", "Jenks", "Jennings", "Jensen", "Jenson", "Jernigan", "Jerome", "Jessup", "Jester", "Jett", "Jewell", "Jewett", "Jimenez", "Jobe", "Jobs", "Johansen", "John", "Johns", "Johnsen", "Johnson", "Johnston", "Johnstone", "Joiner", "Jolley", "Jolly", "Jonas", "Jones", "Joosten", "Jordan", "Jorgensen", "Jorgenson", "Joseph", "Joslin", "Joy", "Joyce", "Joyner", "Judd", "Judge", "Judy", "Julian", "Jung", "Justice", "Justus", "Kahn", "Kaiser", "Kaminski", "Kane", "Kaplan", "Karamazov", "Karr", "Kasper", "Katz", "Kauffman", "Kaufman", "Kaufmann", "Kay", "Kaye", "Keane", "Kearney", "Kearns", "Keating", "Keaton", "Keck", "Keefe", "Keefer", "Keegan", "Keel", "Keeler", "Keeling", "Keen", "Keenan", "Keene", "Keener", "Keeney", "Keeton", "Kehoe", "Keim", "Keiser", "Keith", "Kelleher", "Keller", "Kelley", "Kellogg", "Kelly", "Kelsey", "Kelso", "Kemp", "Kemper", "Kempf", "Kendall", "Kendrick", "Kennedy", "Kenney", "Kenny", "Kensington", "Kent", "Kenyon", "Kern", "Kerns", "Kerr", "Kersey", "Kessler", "Kester", "Ketchum", "Key", "Keyes", "Keys", "Keyser", "Kidd", "Kidder", "Kidwell", "Kiefer", "Kieffer", "Kilgore", "Killian", "Kilpatrick", "Kimball", "Kimble", "Kimmel", "Kincaid", "Kinder", "King", "Kingsley", "Kinney", "Kinsey", "Kirby", "Kirchner", "Kirk", "Kirkland", "Kirkpatrick", "Kirsch", "Kiser", "Kish", "Kitchen", "Kitchens", "Klein", "Kline", "Kling", "Klinger", "Knapp", "Knight", "Knoll", "Knott", "Knotts", "Knowles", "Knowlton", "Knox", "Knudsen", "Knudson", "Knutson", "Koch", "Koehler", "Koehn", "Koenig", "Koester", "Kohl", "Kohler", "Kohn", "Kolb", "Koonce", "Koontz", "Kopp", "Koss", "Koster", "Kovach", "Kovacs", "Kowalski", "Kozak", "Kozlowski", "Kraemer", "Kraft", "Kramer", "Kraus", "Krause", "Krauss", "Krebs", "Kremer", "Kress", "Krieger", "Kroll", "Krueger", "Krug", "Kruger", "Krugman", "Kruse", "Kuehn", "Kuhn", "Kuhns", "Kunkel", "Kuntz", "Kunz", "Kurtz", "Kushner", "Kuykendall", "Kwiatkowski", "Kyle", "Lacey", "Lackey", "Lacroix", "Lacy", "Ladd", "Ladner", "Lafferty", "Lafleur", "Lahren", "Laird", "Lake", "Lalonde", "Lamar", "Lamb", "Lambert", "Lancaster", "Lance", "Land", "Landers", "Landis", "Landon", "Landrum", "Landry", "Lane", "Laney", "Lang", "Langdon", "Lange", "Langer", "Langford", "Langley", "Langlois", "Langston", "Lanham", "Lanier", "Lankford", "Lanning", "Lantz", "Laplante", "Lapointe", "Laporte", "Lapp", "Large", "Larkin", "Larose", "Larsen", "Larson", "Larue", "Lash", "Lassiter", "Latham", "Lathrop", "Latimer", "Lauer", "Laughlin", "Lauritzen", "Lavigne", "Lavoie", "Law", "Lawler", "Lawless", "Lawrence", "Laws", "Lawson", "Lawton", "Lay", "Layman", "Layne", "Layton", "Lea", "Leach", "Leahy", "Lear", "Leary", "Leavitt", "Leblanc", "Leclair", "Ledbetter", "Ledford", "Lee", "Leger", "Legg", "Leggett", "Lehman", "Lehmann", "Lehr", "Leigh", "Leighton", "Lemaster", "Lemay", "Lemieux", "Lemke", "Lemon", "Lemons", "Lennon", "Lentz", "Lenz", "Leo", "Leon", "Leonard", "Leone", "Lerner", "Leroy", "Leslie", "Lester", "Levesque", "Levin", "Levine", "Levy", "Lewandowski", "Lewinsky", "Lewis", "Lexington", "Libby", "Lieberman", "Light", "Liles", "Lilley", "Lilly", "Lima", "Lincoln", "Lind", "Lindberg", "Linder", "Lindgren", "Lindley", "Lindner", "Lindquist", "Lindsay", "Lindsey", "Lindstrom", "Link", "Linn", "Linton", "Linville", "Lipscomb", "Lister", "Little", "Littlefield", "Littleton", "Lively", "Livingston", "Lloyd", "Locke", "Lockhart", "Locklear", "Lockwood", "Loftus", "Logan", "Logsdon", "Logue", "Lohr", "Lombardi", "Lombardo", "London", "Long", "Longo", "Loomis", "Looney", "Loper", "Lopes", "Lopez", "Lord", "Lorenz", "Lott", "Love", "Lovejoy", "Lovelace", "Loveless", "Lovell", "Lovett", "Low", "Lowe", "Lowell", "Lowery", "Lowman", "Lowry", "Loy", "Loyd", "Lucas", "Luce", "Ludwig", "Luke", "Luna", "Lund", "Lundberg", "Lundgren", "Lundquist", "Lundy", "Lunsford", "Lusk", "Luther", "Luthor", "Luttrell", "Lutz", "Lyle", "Lyles", "Lyman", "Lynch", "Lynn", "Lyon", "Lyons", "Lytle", "Maas", "Mabe", "Mabry", "MacDonald", "Mace", "Machado", "Mack", "MacKay", "MacKenzie", "Mackey", "MacLean", "MacLeod", "MacReady", "Madden", "Maddow", "Maddox", "Madison", "Madsen", "Magee", "Maggard", "Magnuson", "Maguire", "Mahaffey", "Mahan", "Maher", "Mahon", "Mahoney", "Maier", "Main", "Major", "Majors", "Maki", "Malcolm", "Mallory", "Malloy", "Malone", "Maloney", "Mancini", "Mancuso", "Mandel", "Maness", "Mangum", "Manley", "Mann", "Manning", "Mansfield", "Manson", "Manuel", "Maples", "March", "Marchese", "Marcum", "Marcus", "Marek", "Marino", "Marion", "Mark", "Markham", "Markley", "Marks", "Marler", "Marlow", "Marquardt", "Marquis", "Marr", "Marsh", "Marshall", "Martel", "Martell", "Martens", "Martin", "Martindale", "Martinez", "Martini", "Martino", "Martins", "Martinson", "Martz", "Marvin", "Marx", "Mashburn", "Mason", "Massey", "Massie", "Mast", "Masters", "Masterson", "Matheny", "Mather", "Mathers", "Matheson", "Mathews", "Mathias", "Mathis", "Matlock", "Matson", "Matteson", "Matthews", "Mattingly", "Mattox", "Mattson", "Mauldin", "Maurer", "Mauro", "Maxey", "Maxson", "Maxwell", "May", "Mayberry", "Mayer", "Mayes", "Mayfair", "Mayfield", "Mayhew", "Maynard", "Mayo", "Mays", "Mazur", "Mazza", "McAdams", "McAfee", "McAlister", "McAllister", "McArthur", "McBee", "McBride", "McCabe", "McCaffrey", "McCain", "McCall", "McCallister", "McCallum", "McCann", "McCarter", "McCarthy", "McCartney", "McCarty", "McCauley", "McClain", "McClanahan", "McClellan", "McClelland", "McClendon", "McClintock", "McCloskey", "McCloud", "McClung", "McClure", "McCluskey", "McCollum", "McCombs", "McConnell", "McCool", "McCord", "McCorkle", "McCormack", "McCormick", "McCoy", "McCracken", "McCrary", "McCray", "McCreary", "McCree", "McCue", "McCulloch", "McCullough", "McCune", "McCurdy", "McCurry", "McCutcheon", "McDaniel", "McDermott", "McDevitt", "McDonald", "McDonnell", "McDonough", "McDowell", "McElroy", "McEwen", "McFadden", "McFall", "McFarland", "McGarry", "McGee", "McGhee", "McGill", "McGinley", "McGinnis", "McGovern", "McGowan", "McGrath", "McGraw", "McGregor", "McGrew", "McGuire", "McHale", "McHenry", "McHugh", "McIntire", "McIntosh", "McIntyre", "McKay", "McKee", "McKeever", "McKelvey", "McKenna", "McKenzie", "McKeon", "McKeown", "McKinley", "McKinney", "McKinnon", "McKnight", "McLain", "McLaughlin", "McLean", "McLemore", "McLeod", "McMahan", "McMahon", "McManus", "McMaster", "McMichael", "McMillan", "McMillen", "McMullen", "McMurray", "McNabb", "McNair", "McNally", "McNamara", "McNeal", "McNeely", "McNeil", "McNeill", "McNulty", "McNutt", "McPherson", "McQueen", "McRae", "McReynolds", "McVay", "McVey", "McWhorter", "McWilliams", "Mead", "Meade", "Meador", "Meadows", "Means", "Mears", "Mecham", "Medeiros", "Medici", "Medina", "Medley", "Medlin", "Meehan", "Meek", "Meeker", "Meeks", "Meier", "Meister", "Mello", "Melton", "Melvin", "Menard", "Mendenhall", "Mendez", "Mendoza", "Mercer", "Merchant", "Mercier", "Meredith", "Merkel", "Merrell", "Merrick", "Merrill", "Merriman", "Merritt", "Mertz", "Messer", "Messick", "Messina", "Metcalf", "Metz", "Metzger", "Metzler", "Meyer", "Meyers", "Michael", "Michaels", "Michalski", "Michaud", "Michel", "Michels", "Mickelson", "Middleton", "Milam", "Milburn", "Miles", "Millard", "Miller", "Milligan", "Mills", "Milner", "Milton", "Mims", "Miner", "Minnick", "Minor", "Minter", "Minton", "Miranda", "Mitchell", "Mixon", "Mize", "Mobley", "Mock", "Moe", "Moeller", "Moen", "Moffett", "Moffitt", "Mohler", "Mohr", "Moll", "Molloy", "Molnar", "Monaco", "Monaghan", "Monahan", "Monk", "Monroe", "Monson", "Montague", "Montgomery", "Montrose", "Moody", "Moon", "Mooney", "Moore", "Morales", "Moran", "Moreau", "Morehead", "Moreland", "Morelli", "Moreno", "Morey", "Morgan", "Moriarty", "Morin", "Moritz", "Morley", "Morrell", "Morrill", "Morris", "Morrison", "Morrissey", "Morrow", "Morse", "Mortensen", "Morton", "Moseley", "Moser", "Moses", "Mosher", "Mosier", "Mosley", "Moss", "Mott", "Moulton", "Mount", "Mowery", "Moyer", "Mueller", "Muir", "Mulcahy", "Mulder", "Mull", "Mullen", "Muller", "Mulligan", "Mullin", "Mullins", "Mullis", "Mundy", "Munn", "Munoz", "Munro", "Munroe", "Munsen", "Munson", "Murdock", "Murphy", "Murray", "Murrell", "Muse", "Musick", "Musselman", "Musser", "Myer", "Myers", "Myrick", "Nadeau", "Naegle", "Nagel", "Nagle", "Nagy", "Nall", "Nance", "Napier", "Napolitano", "Nash", "Naylor", "Neal", "Needham", "Neel", "Neeley", "Neely", "Neff", "Neil", "Neill", "Neilson", "Nelsen", "Nelson", "Nemeth", "Nesbitt", "Ness", "Nettles", "Neuman", "Neumann", "Neville", "New", "Newberry", "Newby", "Newcomb", "Newell", "Newkirk", "Newland", "Newman", "Newsom", "Newsome", "Newton", "Nicholas", "Nichols", "Nicholson", "Nickel", "Nickerson", "Nielsen", "Nielson", "Niles", "Nix", "Nixon", "Noble", "Nobles", "Noe", "Noel", "Nolan", "Noland", "Nolen", "Noll", "Nolte", "Noonan", "Norman", "Norris", "North", "Norton", "Norwood", "Novak", "Novotny", "Nowak", "Noyes", "Nugent", "Null", "Nunes", "Nunley", "Nunn", "Nutt", "Nutter", "Nye", "O'Brien", "O'Bryant", "O'Connell", "O'Connor", "O'Dell", "O'Donnell", "O'Grady", "O'Hara", "O'Keefe", "O'Leary", "O'Malley", "O'Neal", "O'Neil", "O'Neill", "O'Reilly", "O'Rourke", "O'Shea", "O'Sullivan", "O'Toole", "Oakes", "Oakley", "Oaks", "Oates", "Odom", "Ogden", "Ogilvie", "Ogle", "Oglesby", "Oldham", "Oliveira", "Oliver", "Olmstead", "Olsen", "Olson", "Oneal", "Oneil", "Oneill", "Oreilly", "Orlando", "Orourke", "Orr", "Orth", "Ortiz", "Orwell", "Osborn", "Osborne", "Osburn", "Osmond", "Ostrander", "Ostrowski", "Oswald", "Ott", "Otto", "Ouellette", "Overstreet", "Overton", "Owen", "Owens", "Pace", "Pacheco", "Pack", "Packard", "Packer", "Padgett", "Pagano", "Page", "Paige", "Paine", "Painter", "Palermo", "Palin", "Palm", "Palmer", "Palmieri", "Palomino", "Palumbo", "Pape", "Pappas", "Paquette", "Parent", "Parham", "Paris", "Parish", "Parisi", "Park", "Parker", "Parkinson", "Parks", "Parnell", "Parr", "Parris", "Parrish", "Parrott", "Parry", "Parsley", "Parson", "Parsons", "Partin", "Parton", "Partridge", "Pate", "Patrick", "Patten", "Patterson", "Patton", "Paul", "Pauley", "Paulsen", "Paulson", "Paxton", "Payne", "Payton", "Peace", "Peacock", "Peak", "Pearce", "Pearl", "Pearson", "Pease", "Peck", "Pedersen", "Pederson", "Peebles", "Peek", "Pellegrino", "Pelletier", "Pelosi", "Pemberton", "Pence", "Penderghast", "Pendergrass", "Pendleton", "Penn", "Pennington", "Penny", "Penrod", "Peoples", "Pepper", "Perdue", "Pereira", "Perez", "Perkins", "Perrin", "Perry", "Person", "Peter", "Peterman", "Peters", "Petersen", "Peterson", "Petrie", "Pettit", "Petty", "Peyton", "Pfaff", "Pfeifer", "Pfeiffer", "Phelan", "Phelps", "Phillips", "Phipps", "Piazza", "Picard", "Pickard", "Pickens", "Pickering", "Pickett", "Pieper", "Pierce", "Pierson", "Pike", "Pilkey", "Pines", "Pinkerton", "Pinto", "Piper", "Pippin", "Pitman", "Pitt", "Pittman", "Pitts", "Place", "Plank", "Plante", "Platt", "Plummer", "Plunkett", "Poe", "Pogue", "Pohler", "Poindexter", "Poirier", "Poland", "Poling", "Polk", "Pollack", "Pollard", "Pollock", "Pomeroy", "Pond", "Ponder", "Pool", "Poole", "Poore", "Pope", "Popp", "Porter", "Posey", "Post", "Poston", "Potter", "Potts", "Poulin", "Powell", "Power", "Powers", "Prater", "Prather", "Pratt", "Prenderghast", "Prentice", "Prescott", "Presley", "Pressley", "Preston", "Prewitt", "Price", "Priebus", "Priest", "Prince", "Pringle", "Pritchard", "Pritchett", "Proctor", "Proffitt", "Prosser", "Provost", "Pruett", "Pruitt", "Pryor", "Pucino", "Puckett", "Pugh", "Pullen", "Pulliam", "Pulsipher", "Purcell", "Purdy", "Purvis", "Putman", "Putnam", "Pyle", "Pyles", "Qualls", "Queen", "Quick", "Quigley", "Quinlan", "Quinn", "Rader", "Radford", "Radtke", "Rafferty", "Ragan", "Ragland", "Ragsdale", "Raines", "Rainey", "Rains", "Rainwater", "Raley", "Ralph", "Ralston", "Ramey", "Ramirez", "Ramos", "Ramsay", "Ramsey", "Rand", "Randall", "Randazzo", "Randolph", "Raney", "Rankin", "Ransom", "Rapp", "Rash", "Rasmussen", "Ratcliff", "Rathbun", "Ratliff", "Rau", "Rauch", "Rausch", "Rawlings", "Rawls", "Rawson", "Ray", "Rayburn", "Raymond", "Raynor", "Rea", "Read", "Reagan", "Reardon", "Reaves", "Rector", "Redd", "Redden", "Redding", "Redfield", "Redman", "Redmon", "Redmond", "Reece", "Reed", "Reeder", "Reedy", "Rees", "Reese", "Reeves", "Regan", "Register", "Reich", "Reichert", "Reid", "Reilly", "Reimer", "Reinhardt", "Reinhart", "Reinke", "Reis", "Reiss", "Reiter", "Reitz", "Renfro", "Renner", "Reno", "Reuter", "Reyes", "Reynolds", "Rhea", "Rhoades", "Rhoads", "Rhodes", "Ricci", "Rice", "Rich", "Richard", "Richards", "Richardson", "Richey", "Richman", "Richmond", "Richter", "Rickard", "Ricker", "Ricketts", "Ricks", "Riddle", "Ridenour", "Rider", "Ridge", "Ridgeway", "Ridley", "Riedel", "Riedell", "Ries", "Rife", "Rigby", "Riggins", "Riggs", "Rigsby", "Riley", "Rinaldi", "Rinehart", "Ring", "Riordan", "Ripley", "Ritchey", "Ritchie", "Ritter", "Ritz", "Rivera", "Rivers", "Rizzo", "Roach", "Roark", "Robb", "Robbins", "Roberson", "Robert", "Roberts", "Robertson", "Robinette", "Robins", "Robinson", "Robison", "Robson", "Roby", "Rocco", "Rocha", "Roche", "Rock", "Rockwell", "Roderick", "Rodgers", "Rodrigues", "Rodriguez", "Roe", "Roeder", "Rogers", "Rohde", "Rohr", "Rohrer", "Roland", "Roller", "Rollins", "Roman", "Romano", "Romeo", "Romero", "Romine", "Romney", "Rood", "Rooney", "Roosevelt", "Root", "Roper", "Rosa", "Rose", "Rosen", "Rosenbaum", "Rosenberg", "Rosenberger", "Rosenthal", "Ross", "Rossi", "Roth", "Rouse", "Roush", "Rousseau", "Rowan", "Rowe", "Rowell", "Rowland", "Rowley", "Roy", "Royal", "Royer", "Rubin", "Rubino", "Ruble", "Ruby", "Rucker", "Rudd", "Rudolph", "Rudy", "Ruff", "Ruggiero", "Ruiz", "Runyan", "Runyon", "Rupert", "Rupp", "Rush", "Rushing", "Russ", "Russell", "Russo", "Rust", "Ruth", "Rutherford", "Rutkowski", "Rutledge", "Rutter", "Ryan", "Ryder", "Sabo", "Sacco", "Sachs", "Sadler", "Sadowski", "Sage", "Sager", "Salazar", "Salerno", "Salisbury", "Salmon", "Salter", "Salyer", "Sammons", "Sample", "Samples", "Sampson", "Sams", "Samson", "Samuels", "Samuelson", "Sanborn", "Sanchez", "Sandberg", "Sander", "Sanders", "Sanderson", "Sandlin", "Sands", "Sanford", "Santoro", "Santos", "Sapp", "Sargent", "Sarver", "Sasse", "Sasser", "Satterfield", "Sauer", "Saunders", "Savage", "Sawyer", "Saxton", "Sayers", "Saylor", "Sayre", "Scanlon", "Scarborough", "Scarbrough", "Scarvo", "Schaefer", "Schaeffer", "Schafer", "Schaffer", "Schatz", "Schell", "Schenk", "Scherer", "Schiller", "Schilling", "Schindler", "Schlegel", "Schlosser", "Schmid", "Schmidt", "Schmitt", "Schmitz", "Schneider", "Schnell", "Schoen", "Schofield", "Scholl", "Schoonover", "Schott", "Schrader", "Schramm", "Schreiber", "Schreiner", "Schrock", "Schroeder", "Schubert", "Schuler", "Schulman", "Schulte", "Schultz", "Schulz", "Schulze", "Schumacher", "Schumann", "Schuster", "Schwab", "Schwartz", "Schwarz", "Schweitzer", "Scoggins", "Scott", "Scroggins", "Scruggs", "Scully", "Seal", "Seals", "Seaman", "Searcy", "Sears", "Seaton", "Seay", "Sebastian", "See", "Seeley", "Segal", "Seibert", "Seidel", "Seifert", "Seiler", "Seitz", "Selby", "Self", "Sell", "Sellers", "Sells", "Sessions", "Settle", "Severson", "Seward", "Sewell", "Sexton", "Seymour", "Shackelford", "Shafer", "Shaffer", "Shanahan", "Shane", "Shank", "Shanks", "Shannon", "Shapiro", "Sharkey", "Sharp", "Sharpe", "Shaughnessy", "Shaver", "Shaw", "Shay", "Shea", "Shearer", "Sheehan", "Sheets", "Sheffield", "Shelby", "Sheldon", "Shell", "Shelley", "Shelton", "Shepard", "Shepherd", "Sheppard", "Sheridan", "Sherman", "Sherrill", "Sherry", "Sherwood", "Shields", "Shifflett", "Shinn", "Shipley", "Shipman", "Shipp", "Shirk", "Shirley", "Shively", "Shockley", "Shoemaker", "Shook", "Shore", "Shores", "Short", "Showalter", "Shrader", "Shreve", "Shuler", "Shull", "Shultz", "Shumaker", "Shuman", "Shumate", "Shumway", "Sibley", "Sides", "Siebert", "Siegel", "Sigler", "Sikes", "Siler", "Silva", "Silver", "Silverman", "Silvers", "Silverstein", "Simmons", "Simms", "Simon", "Simone", "Simons", "Simonson", "Simpkins", "Simpson", "Sims", "Sinclair", "Singer", "Singletary", "Singleton", "Sipes", "Sisco", "Sisk", "Sisson", "Sizemore", "Skaggs", "Skelton", "Skidmore", "Skinner", "Skipper", "Slack", "Slade", "Slagle", "Slater", "Slattery", "Slaughter", "Sloan", "Slocum", "Slone", "Small", "Smalley", "Smallwood", "Smart", "Smiley", "Smith", "Smithson", "Smoot", "Smyth", "Snead", "Sneed", "Snell", "Snider", "Snodgrass", "Snook", "Snow", "Snowden", "Snyder", "Soares", "Solomon", "Somers", "Sommer", "Sommers", "Soper", "Sorensen", "Sorenson", "Sorrell", "Soto", "Sousa", "South", "Southard", "Southerland", "Southern", "Souza", "Sowell", "Sowers", "Spacey", "Spain", "Spalding", "Spangler", "Sparkman", "Sparks", "Spaulding", "Spear", "Spears", "Speck", "Speer", "Spence", "Spencer", "Spendlove", "Sperry", "Spicer", "Spiegel", "Spires", "Spitzer", "Spivey", "Spooner", "Spradlin", "Sprague", "Spring", "Springer", "Sprouse", "Spurgeon", "Spurlock", "Squires", "St. Clair", "St. James", "St. John", "St. Pierre", "Stacey", "Stack", "Stacy", "Stafford", "Staggs", "Stahl", "Staley", "Stallings", "Stamper", "Stanfield", "Stanford", "Stanley", "Stantis", "Stanton", "Staples", "Stapleton", "Stark", "Starkey", "Starks", "Starling", "Starnes", "Starr", "Staton", "Stauffer", "Steadman", "Stearns", "Stebbins", "Steed", "Steele", "Steen", "Steffen", "Stegall", "Stein", "Steinberg", "Steiner", "Steinmetz", "Stephan", "Stephen", "Stephens", "Stephenson", "Stepp", "Sterling", "Stern", "Stevens", "Stevenson", "Steward", "Stewart", "Stidham", "Stiles", "Still", "Stillwell", "Stine", "Stinnett", "Stinson", "Stock", "Stocker", "Stockton", "Stockwell", "Stoddard", "Stokes", "Stoll", "Stoltzfus", "Stone", "Stoner", "Storey", "Storm", "Story", "Stout", "Stovall", "Stover", "Stowe", "Strain", "Straits", "Strand", "Strange", "Stratton", "Straub", "Strauss", "Street", "Streeter", "Strickland", "Strider", "Stringer", "Strode", "Strom", "Strong", "Stroud", "Stroup", "Strunk", "Stuart", "Stubblefield", "Stubbs", "Stuckey", "Stull", "Stump", "Stumpf", "Sturgeon", "Sturgill", "Sturm", "Stutzman", "Sugar", "Suggs", "Sullivan", "Summers", "Sumner", "Sutherland", "Sutter", "Sutton", "Swafford", "Swain", "Swan", "Swank", "Swann", "Swanson", "Swartz", "Swearingen", "Sweat", "Sweeney", "Sweet", "Swenson", "Swift", "Swisher", "Switzer", "Swope", "Sykes", "Sylvester", "Szabo", "Szymanski", "Taber", "Tabor", "Tackett", "Taft", "Taggart", "Talbert", "Talbot", "Talbott", "Talley", "Tallman", "Tanner", "Tarr", "Tate", "Tatum", "Taylor", "Teague", "Teal", "Teel", "Temple", "Templeton", "Tennant", "Tenney", "Terrell", "Terry", "Testa", "Thacker", "Tharp", "Thatcher", "Thayer", "Theis", "Thibodeau", "Thibodeaux", "Thiel", "Thomas", "Thomason", "Thompson", "Thomsen", "Thomson", "Thorn", "Thornburg", "Thorne", "Thornton", "Thorpe", "Thorson", "Thrasher", "Thurman", "Thurston", "Tibbetts", "Tice", "Tidwell", "Tierney", "Tillerson", "Tilley", "Tillman", "Tilton", "Timberlake", "Timm", "Timmerman", "Timmons", "Tinsley", "Tipton", "Titus", "Tobias", "Tobin", "Todd", "Tolbert", "Toler", "Tomlin", "Tomlinson", "Tompkins", "Toney", "Toomey", "Torres", "Toth", "Towne", "Townley", "Townsend", "Tracey", "Tracy", "Trahan", "Trainor", "Trammell", "Trapp", "Travers", "Travis", "Traylor", "Treadway", "Tremblay", "Trent", "Trimble", "Triplett", "Tripp", "Trombley", "Trotter", "Trout", "Troutman", "Trowbridge", "Troy", "Troyer", "True", "Truitt", "Truman", "Trump", "Tubbs", "Tuck", "Tucker", "Tully", "Turk", "Turley", "Turnbull", "Turner", "Turney", "Turpin", "Tuttle", "Tyler", "Tyree", "Tyson", "Ulmer", "Ulrich", "Underhill", "Underwood", "Unger", "Unruh", "Upchurch", "Upton", "Urban", "Vaccaro", "Vail", "Valdez", "Valenti", "Valentine", "Valentino", "Van Damme", "Van de Kamp", "Van Dyke", "Van Horn", "Van", "Vance", "Vandenberg", "Vandervelde", "Vandyke", "Vanhorn", "Vanmeter", "Vann", "Vanover", "Vanwinkle", "Vargas", "Vargo", "Varner", "Varney", "Vasquez", "Vaughan", "Vaughn", "Vaught", "Venable", "Vendome", "Ventura", "Vernon", "Vest", "Vetter", "Vick", "Vickers", "Vickery", "Vieira", "Vincent", "Vines", "Vinson", "Vitale", "Vogel", "Vogt", "Voigt", "Volk", "Vollmer", "Volpe", "Voorhees", "Voss", "Waddell", "Wade", "Wadsworth", "Waggoner", "Wagner", "Wagoner", "Wahl", "Waite", "Wakefield", "Walden", "Waldron", "Waldrop", "Walker", "Wall", "Wallace", "Wallen", "Waller", "Wallin", "Walling", "Wallis", "Walls", "Walsh", "Walter", "Walters", "Walton", "Waltz", "Walz", "Wampler", "Ward", "Warden", "Ware", "Warner", "Warren", "Warrington", "Washburn", "Washington", "Wasserman", "Wasson", "Waterman", "Waters", "Watkins", "Watson", "Watt", "Watters", "Watts", "Waugh", "Way", "Wayne", "Weatherford", "Weathers", "Weaver", "Webb", "Webber", "Weber", "Webster", "Weed", "Weeks", "Weems", "Wegner", "Weidner", "Weigel", "Weil", "Weiland", "Weiler", "Weimer", "Weinberg", "Weiner", "Weinstein", "Weir", "Weis", "Weiss", "Welborn", "Welch", "Weldon", "Welker", "Weller", "Wellman", "Wells", "Welsh", "Wendt", "Wenger", "Wentworth", "Wentz", "Wenzel", "Werner", "Wertz", "Wesley", "Wessel", "West", "Westbrook", "Westfall", "Westmoreland", "Weston", "Westphal", "Wetzel", "Whalen", "Whaley", "Wharton", "Whatley", "Wheat", "Wheatley", "Wheaton", "Wheeler", "Whelan", "Whipple", "Whitaker", "Whitcomb", "White", "Whited", "Whitehead", "Whiteman", "Whiteside", "Whitfield", "Whiting", "Whitley", "Whitlock", "Whitlow", "Whitman", "Whitmire", "Whitmore", "Whitney", "Whitson", "Whitt", "Whittaker", "Whitten", "Whittington", "Whittle", "Whitworth", "Wick", "Wicker", "Wickham", "Wicks", "Wiese", "Wiggins", "Wilbanks", "Wilbur", "Wilburn", "Wilcox", "Wild", "Wilde", "Wilder", "Wiles", "Wiley", "Wilhelm", "Wilhite", "Wilke", "Wilkerson", "Wilkes", "Wilkie", "Wilkins", "Wilkinson", "Will", "Willard", "Willem", "Willett", "Willey", "Williams", "Williamson", "Williford", "Willingham", "Willis", "Willoughby", "Wills", "Willson", "Wilson", "Wilt", "Wimmer", "Winchester", "Windham", "Windsor", "Wing", "Wingate", "Winkler", "Winn", "Winslow", "Winstead", "Winston", "Winter", "Winters", "Winthrop", "Wirth", "Wise", "Wiseman", "Wisniewski", "Withers", "Withrow", "Witmer", "Witt", "Witte", "Wojcik", "Wolf", "Wolfe", "Wolff", "Wolford", "Womack", "Wood", "Woodall", "Woodard", "Woodcock", "Woodruff", "Woods", "Woodson", "Woodward", "Woodworth", "Woody", "Wooldridge", "Woolley", "Woolsey", "Wooten", "Worden", "Workman", "Worley", "Worrell", "Worth", "Worthington", "Wozniak", "Wray", "Wren", "Wright", "Wyant", "Wyatt", "Wylie", "Wyman", "Wynn", "Wynne", "Xavier", "Yager", "Yancey", "Yarbrough", "Yard", "Yates", "Yeager", "Yocum", "Yoder", "Yorgensen", "York", "Yost", "Young", "Youngblood", "Younger", "Yount", "Zabriskie", "Zaret", "Zeigler", "Zeller", "Ziegler", "Zielinski", "Zimmer", "Zimmerman", "Zimmermann", "Zink", "Zollinger", "Zook"]>> +<<set setup.whiteAmericanSlaveSurnames = ["Aaron", "Abbott", "Abel", "Abell", "Abernathy", "Abney", "Abraham", "Abrams", "Acker", "Ackerman", "Ackley", "Acosta", "Adair", "Adam", "Adams", "Adamson", "Adcock", "Addison", "Adkins", "Adler", "Agee", "Agnew", "Aguilar", "Ahern", "Ahrens", "Aiello", "Aiken", "Ainsworth", "Akers", "Akin", "Akins", "Albanese", "Albers", "Albert", "Albertson", "Albrecht", "Albright", "Alcorn", "Alderman", "Aldrich", "Aldridge", "Alexander", "Alford", "Allan", "Allard", "Allen", "Alley", "Allison", "Allman", "Allred", "Almeida", "Almodovar", "Altman", "Alvarez", "Alves", "Amaral", "Amato", "Amber", "Ambrose", "Ames", "Ammons", "Amos", "Amundson", "Anders", "Andersen", "Anderson", "Andrade", "Andrew", "Andrews", "Andrus", "Angel", "Angell", "Angelo", "Anglin", "Anthony", "Appel", "Apple", "Applegate", "Archer", "Archibald", "Ard", "Armstrong", "Arndt", "Arnett", "Arnold", "Arrington", "Arsenault", "Arthur", "Asay", "Asbury", "Ash", "Ashby", "Ashcraft", "Asher", "Ashley", "Ashton", "Ashworth", "Askew", "Atchison", "Atchley", "Atherton", "Atkins", "Atkinson", "Atwell", "Atwood", "Augustine", "Ault", "Austin", "Autry", "Avery", "Ayers", "Ayres", "Babb", "Babcock", "Bach", "Bachman", "Back", "Backus", "Bacon", "Bader", "Badger", "Baer", "Baggett", "Bagley", "Bagwell", "Bahr", "Bailey", "Bain", "Bair", "Baird", "Baker", "Baldwin", "Bale", "Bales", "Ball", "Ballard", "Ballew", "Ballinger", "Bandy", "Bane", "Banks", "Bannon", "Barbee", "Barber", "Barbour", "Barclay", "Bare", "Barfield", "Barger", "Barker", "Barkley", "Barlow", "Barnard", "Barnes", "Barnett", "Barnette", "Barney", "Barnhart", "Barnhill", "Baron", "Barone", "Barr", "Barrett", "Barron", "Barrow", "Barrows", "Barry", "Barrymore", "Bartels", "Barth", "Bartholomew", "Bartlett", "Bartley", "Barton", "Basham", "Basile", "Bass", "Bassett", "Batchelor", "Bateman", "Bates", "Batson", "Battaglia", "Batten", "Bauer", "Baugh", "Baughman", "Baum", "Bauman", "Baumann", "Baumgartner", "Baxley", "Baxter", "Bayer", "Bays", "Beach", "Beal", "Beall", "Beals", "Beam", "Bean", "Bear", "Beard", "Bearden", "Beardsley", "Beasley", "Beattie", "Beatty", "Beaty", "Beauchamp", "Beaudoin", "Beaulieu", "Beaver", "Beavers", "Bechtel", "Beck", "Becker", "Beckett", "Beckham", "Beckman", "Beckstead", "Beckwith", "Beebe", "Beeler", "Beers", "Beeson", "Begley", "Behrens", "Belanger", "Belcher", "Bell", "Bellamy", "Belt", "Bender", "Benedict", "Benes", "Benjamin", "Benner", "Bennett", "Bennion", "Benoit", "Benson", "Bentley", "Benton", "Berg", "Berger", "Bergeron", "Bergman", "Bergstrom", "Berkowitz", "Berlin", "Berman", "Bernard", "Berndt", "Bernhardt", "Bernier", "Bernstein", "Berry", "Berryman", "Bertram", "Bertrand", "Best", "Bettencourt", "Betts", "Betz", "Beverly", "Beyer", "Bianchi", "Bianco", "Bice", "Bickel", "Bickford", "Biddle", "Biden", "Bigelow", "Biggs", "Billings", "Billingsley", "Bills", "Binder", "Bingham", "Binkley", "Birch", "Bird", "Bischoff", "Bishop", "Bittner", "Bivens", "Black", "Blackburn", "Blackman", "Blackmon", "Blackwell", "Blackwood", "Blair", "Blake", "Blakely", "Blalock", "Blanchard", "Blanchette", "Bland", "Blank", "Blankenship", "Blanton", "Blaylock", "Bledsoe", "Blevins", "Bliss", "Block", "Blodgett", "Bloom", "Blount", "Blue", "Blum", "Blythe", "Bock", "Boehm", "Boettcher", "Bogart", "Boggs", "Bohannon", "Bohn", "Boland", "Bolen", "Boles", "Bolhuis", "Bolin", "Boling", "Bollinger", "Bolt", "Bolton", "Bond", "Bonds", "Bone", "Bonner", "Bontrager", "Booher", "Booker", "Boone", "Booth", "Boothe", "Bordelon", "Borden", "Borders", "Boren", "Borges", "Born", "Boss", "Bostic", "Boston", "Boswell", "Bouchard", "Boucher", "Boudreau", "Boudreaux", "Bounds", "Bourgeois", "Bourne", "Bourque", "Bowden", "Bowen", "Bower", "Bowers", "Bowles", "Bowlin", "Bowling", "Bowman", "Bowser", "Box", "Boyce", "Boyd", "Boyer", "Boykin", "Boylan", "Boyle", "Boyles", "Bracken", "Brackett", "Bradbury", "Braden", "Bradford", "Bradley", "Bradshaw", "Brady", "Bragg", "Bramble", "Branch", "Brand", "Brandenburg", "Brandon", "Brandt", "Branham", "Brannan", "Brannon", "Branson", "Brant", "Brantley", "Braswell", "Bratcher", "Bratton", "Braun", "Bray", "Breaux", "Breeden", "Breedlove", "Breen", "Breitbart", "Bremer", "Brennan", "Brenner", "Brewer", "Brewster", "Bricker", "Bridges", "Briggs", "Bright", "Brill", "Brink", "Brinkley", "Brinkman", "Brinson", "Briscoe", "Bristow", "Britt", "Brittain", "Britton", "Brock", "Brockman", "Broderick", "Brody", "Brogan", "Bronson", "Brooks", "Broome", "Brophy", "Brothers", "Broughton", "Broussard", "Brower", "Brown", "Browne", "Brownell", "Browning", "Brownlee", "Broyles", "Brubaker", "Bruce", "Brumfield", "Brumley", "Bruner", "Brunner", "Bruno", "Bruns", "Brunson", "Brush", "Bryan", "Bryant", "Bryson", "Buchanan", "Bucher", "Buchholz", "Buck", "Buckingham", "Buckley", "Buckner", "Budd", "Buehler", "Buell", "Buffington", "Bull", "Bullard", "Bullock", "Bunch", "Bundy", "Bunker", "Bunn", "Bunting", "Burc", "Burch", "Burchett", "Burchfield", "Burden", "Burdette", "Burdick", "Burge", "Burger", "Burgess", "Burk", "Burke", "Burkett", "Burkhardt", "Burkhart", "Burkholder", "Burks", "Burleson", "Burnett", "Burnette", "Burnham", "Burns", "Burnside", "Burr", "Burrell", "Burris", "Burroughs", "Burrow", "Burrows", "Burt", "Burton", "Busby", "Busch", "Bush", "Buss", "Butcher", "Butler", "Butterfield", "Button", "Butts", "Buxton", "Byers", "Byler", "Bynum", "Byrd", "Byrne", "Byrnes", "Cable", "Cabral", "Cady", "Cagle", "Cahill", "Cain", "Calabrese", "Caldwell", "Calhoun", "Calkins", "Call", "Callahan", "Callaway", "Calloway", "Calvert", "Cameron", "Camp", "Campbell", "Canfield", "Cannon", "Cantrell", "Cantwell", "Capps", "Caputo", "Carbone", "Card", "Carden", "Cardwell", "Carey", "Carl", "Carlin", "Carlisle", "Carlson", "Carlton", "Carman", "Carmichael", "Carnahan", "Carnes", "Carney", "Caron", "Carpenter", "Carr", "Carrier", "Carroll", "Carson", "Carter", "Cartwright", "Caruso", "Carvalho", "Carver", "Cary", "Case", "Casey", "Cash", "Cason", "Casper", "Cass", "Cassell", "Cassidy", "Casteel", "Castillo", "Castle", "Castleberry", "Casto", "Castro", "Caswell", "Catalano", "Cates", "Cathey", "Caudill", "Caudle", "Caulfield", "Causey", "Cavanaugh", "Cave", "Cecil", "Chadwick", "Chaffin", "Chamberlain", "Chamberlin", "Chambers", "Champagne", "Champion", "Chance", "Chandler", "Chaney", "Chapin", "Chapman", "Chappell", "Charles", "Charlton", "Chase", "Chastain", "Chavez", "Cheatham", "Cheek", "Cheney", "Cherry", "Chester", "Childers", "Childress", "Childs", "Chisholm", "Chitwood", "Choate", "Chrisman", "Christ", "Christensen", "Christenson", "Christian", "Christiansen", "Christianson", "Christie", "Christman", "Christopher", "Christy", "Church", "Churchill", "Claire", "Clancy", "Clapp", "Clark", "Clarke", "Clarkson", "Clary", "Clausen", "Clawson", "Clay", "Clayton", "Cleary", "Clegg", "Clem", "Clemens", "Clement", "Clements", "Clemons", "Cleveland", "Clevenger", "Clifford", "Clifton", "Cline", "Clinton", "Clooney", "Close", "Cloud", "Clough", "Clouse", "Cloutier", "Coates", "Coats", "Cobb", "Coble", "Coburn", "Cochran", "Cochrane", "Cockrell", "Cody", "Coe", "Coffey", "Coffin", "Coffman", "Coggins", "Cohen", "Cohn", "Coker", "Colbert", "Colburn", "Colby", "Cole", "Coleman", "Coles", "Coley", "Collett", "Colley", "Collier", "Collins", "Colmes", "Colson", "Colvin", "Colwell", "Combs", "Comer", "Compton", "Comstock", "Conaway", "Condon", "Cone", "Conger", "Conklin", "Conley", "Conlon", "Conn", "Connell", "Connelly", "Conner", "Connolly", "Connor", "Connors", "Conover", "Conrad", "Conroy", "Conte", "Conti", "Conway", "Cook", "Cooke", "Cooley", "Coolidge", "Coombs", "Coon", "Cooney", "Coons", "Cooper", "Cope", "Copeland", "Copley", "Coppola", "Corbett", "Corbin", "Corcoran", "Cordell", "Corder", "Corduroy", "Corey", "Corley", "Cormier", "Corn", "Cornelius", "Cornell", "Cornett", "Cornwell", "Correia", "Correll", "Corrigan", "Corwin", "Cosgrove", "Costa", "Costello", "Cote", "Cotter", "Cotton", "Cottrell", "Couch", "Coughlin", "Coulter", "Counts", "Courtney", "Cousins", "Couture", "Covert", "Covey", "Covington", "Cowan", "Cowart", "Cox", "Coy", "Coyle", "Coyne", "Crabtree", "Craddock", "Craft", "Craig", "Crain", "Cramer", "Crandall", "Crane", "Cranford", "Craven", "Crawford", "Crawley", "Creamer", "Creech", "Creel", "Creighton", "Crenshaw", "Crest", "Crews", "Crider", "Crisp", "Crist", "Criswell", "Crites", "Crocker", "Crockett", "Croft", "Cromer", "Cronin", "Crook", "Crooks", "Crosby", "Cross", "Crouch", "Crouse", "Crow", "Crowder", "Crowe", "Crowell", "Crowley", "Cruise", "Crum", "Crumb", "Crump", "Cruse", "Cruz", "Crystal", "Culbertson", "Cullen", "Culp", "Culpepper", "Culver", "Cummings", "Cummins", "Cunningham", "Cupp", "Curley", "Curran", "Currie", "Currier", "Curry", "Curtin", "Curtis", "Cushing", "Cushman", "Custer", "Cutler", "Cyr", "Dagostino", "Dahl", "Daigle", "Dailey", "Daily", "Dale", "Daley", "Dalrymple", "Dalton", "Daly", "Damato", "Damico", "Damron", "Dangelo", "Daniel", "Daniels", "Danielson", "Danner", "Darby", "Dark", "Darling", "Darnell", "Darr", "Dasilva", "Daugherty", "Davenport", "Davey", "David", "Davidson", "Davies", "Davis", "Davison", "Dawkins", "Dawson", "Day", "Dayton", "De Santa", "Deal", "Dean", "Deangelis", "Deaton", "Deboer", "Decker", "Dees", "Dehart", "Delaney", "Delany", "Delgado", "Dell", "Dellinger", "Deloach", "Delong", "Deluca", "DeLuca", "Demarco", "Demers", "DeMille", "Dempsey", "Denham", "Denison", "Denney", "Denning", "Dennis", "Dennison", "Denny", "Dent", "Denton", "Derosa", "Derr", "Derrick", "Desantis", "Desimone", "Desmond", "Destefano", "Deutsch", "Devine", "Devito", "Devlin", "Devore", "Devries", "Dewey", "Dewitt", "DeWitt", "Dexter", "Deyoung", "Dial", "Diamond", "Dias", "Diaz", "Dick", "Dickens", "Dickerson", "Dickey", "Dickinson", "Dickson", "Diehl", "Dietrich", "Dietz", "Dill", "Dillard", "Dillon", "Dinkley", "Dion", "Dionne", "Dix", "Dixon", "Doan", "Doane", "Dobbins", "Dobbs", "Dobson", "Dockery", "Dodd", "Dodds", "Dodge", "Dodson", "Doe", "Doherty", "Dolan", "Doll", "Dombrowski", "Donahue", "Donald", "Donaldson", "Donley", "Donnelly", "Donohue", "Donovan", "Dooley", "Doolittle", "Doran", "Dorman", "Dorn", "Dorsey", "Doss", "Dotson", "Doty", "Doucette", "Dougherty", "Doughty", "Douglas", "Douglass", "Dove", "Dover", "Dow", "Dowd", "Dowdy", "Dowell", "Dowling", "Downey", "Downing", "Downs", "Doyle", "Dozier", "Drake", "Draper", "Drew", "Dreyer", "Driggers", "Driscoll", "Driver", "Drummond", "Drury", "Dube", "Dubois", "Dubose", "Duckworth", "Duda", "Dudley", "Duff", "Duffy", "Dugan", "Duggan", "Dugger", "Dukakis", "Duke", "Dukes", "Dumas", "Dunaway", "Dunbar", "Duncan", "Dunham", "Dunlap", "Dunn", "Dunne", "Dunning", "Dupont", "Dupre", "Dupree", "Dupuis", "Duran", "Durand", "Durant", "Durbin", "Durham", "Durkin", "Dutton", "Duval", "Duvall", "Dvorak", "Dwyer", "Dye", "Dyer", "Dykes", "Dykstra", "Dyson", "Eads", "Eagle", "Earl", "Earle", "Earley", "Early", "Earnest", "Easley", "Eason", "East", "Easter", "Eastman", "Easton", "Eaton", "Eaves", "Ebert", "Eby", "Echols", "Eck", "Eckert", "Eddy", "Eden", "Edgar", "Edge", "Edmonds", "Edmondson", "Edwards", "Egan", "Egbert", "Eggers", "Eggleston", "Egielski", "Ehlers", "Eisenberg", "Eisenhower", "Elam", "Elder", "Eldridge", "Elias", "Elkins", "Eller", "Ellington", "Elliot", "Elliott", "Ellis", "Ellison", "Ellsworth", "Elmore", "Elrod", "Ely", "Embry", "Emerson", "Emery", "Emmons", "Engel", "England", "Engle", "English", "Engstrom", "Ennis", "Enos", "Enright", "Epperson", "Epps", "Epstein", "Erb", "Erdman", "Erickson", "Ernst", "Ervin", "Erwin", "Esposito", "Estep", "Estes", "Etheridge", "Ethridge", "Eubanks", "Evans", "Evenson", "Everett", "Everhart", "Evers", "Everson", "Ewing", "Ezell", "Faber", "Fabian", "Fagan", "Fahey", "Fain", "Fair", "Fairbanks", "Fairchild", "Faircloth", "Falcone", "Falk", "Fallon", "Fanning", "Farber", "Farkas", "Farley", "Farmer", "Farnsworth", "Farr", "Farrar", "Farrell", "Farrington", "Farris", "Farrow", "Faulk", "Faulkner", "Faust", "Fay", "Fazio", "Fee", "Feeney", "Feldman", "Feldsted", "Felix", "Feller", "Fellows", "Felton", "Felts", "Fennell", "Fenton", "Ferguson", "Fernandes", "Fernandez", "Ferrante", "Ferrara", "Ferrari", "Ferraro", "Ferreira", "Ferrell", "Ferris", "Ferry", "Fiedler", "Field", "Fields", "Fike", "Finch", "Fincher", "Findley", "Fine", "Fink", "Finley", "Finn", "Finnegan", "Finney", "Fiore", "Fischer", "Fish", "Fisher", "Fishman", "Fisk", "Fitch", "Fitzgerald", "FitzGerald", "Fitzpatrick", "Fitzsimmons", "Flaherty", "Flanagan", "Flanders", "Flanigan", "Flannery", "Fleck", "Fleming", "Fletcher", "Flick", "Flint", "Flood", "Flora", "Flores", "Flowers", "Floyd", "Fluke", "Flynn", "Fogarty", "Fogle", "Foley", "Folsom", "Foltz", "Fontaine", "Fontana", "Fontenot", "Foote", "Forbes", "Forbush", "Ford", "Foreman", "Forman", "Forrest", "Forrester", "Forster", "Forsyth", "Forsythe", "Forte", "Fortier", "Fortin", "Fortner", "Fortune", "Foss", "Foster", "Fountain", "Fournier", "Foust", "Fowler", "Fox", "Foy", "Fraley", "Frame", "France", "Francis", "Francisco", "Franco", "Frank", "Franke", "Frankel", "Franklin", "Franks", "Frantz", "Franz", "Fraser", "Frazer", "Frazier", "Frederick", "Fredericks", "Fredrickson", "Free", "Freed", "Freedman", "Freeland", "Freeman", "Freitas", "French", "Freund", "Frey", "Frick", "Fried", "Friedman", "Friedrich", "Friend", "Fries", "Friesen", "Fritz", "Frost", "Fry", "Frye", "Fryer", "Fuchs", "Fugate", "Fuller", "Fullerton", "Fulmer", "Fulton", "Fultz", "Funk", "Fuqua", "Furlong", "Furman", "Furr", "Fusco", "Gabel", "Gable", "Gabriel", "Gaddis", "Gaffney", "Gage", "Gagne", "Gagnon", "Gaines", "Gaither", "Galbraith", "Gale", "Gall", "Gallagher", "Gallant", "Gallo", "Galloway", "Galvin", "Gamble", "Gandy", "Gann", "Gannon", "Gant", "Garber", "Garcia", "Gardiner", "Gardner", "Garfield", "Garland", "Garman", "Garner", "Garrett", "Garrison", "Garrity", "Garvey", "Garvin", "Gary", "Garza", "Gaskins", "Gass", "Gaston", "Gates", "Gatlin", "Gauthier", "Gavin", "Gay", "Gearhart", "Geary", "Gee", "Geer", "Geiger", "Geller", "Gentile", "Gentry", "George", "Gerard", "Gerber", "Gerlach", "German", "Getz", "Geyer", "Gibbons", "Gibbs", "Gibson", "Giddings", "Giese", "Gifford", "Gilbert", "Gilbertson", "Gilchrist", "Giles", "Gill", "Gillen", "Gillespie", "Gillette", "Gilley", "Gilliam", "Gilliland", "Gillis", "Gilman", "Gilmore", "Gilson", "Gingerich", "Gingrich", "Ginn", "Giordano", "Gipson", "Girard", "Givens", "Glaser", "Glasgow", "Glass", "Gleason", "Glenn", "Glick", "Glover", "Glynn", "Goad", "Goble", "Goddard", "Godfrey", "Godwin", "Goebel", "Goetz", "Goff", "Goforth", "Goins", "Gold", "Goldberg", "Golden", "Goldman", "Goldsmith", "Goldstein", "Gomes", "Gomez", "Gonzales", "Gonzalez", "Gooch", "Good", "Goode", "Goodin", "Goodman", "Goodrich", "Goodson", "Goodwin", "Gordon", "Gore", "Gorham", "Gorman", "Gorrell", "Gorski", "Gosnell", "Goss", "Gossett", "Gottlieb", "Gough", "Gould", "Gower", "Graber", "Grabowski", "Grace", "Grady", "Graf", "Graff", "Graham", "Granger", "Grant", "Grantham", "Grasso", "Graves", "Gray", "Grayson", "Graziano", "Greathouse", "Greco", "Green", "Greenberg", "Greene", "Greenfield", "Greenlee", "Greenwald", "Greenwell", "Greenwood", "Greer", "Gregg", "Gregory", "Greiner", "Grenier", "Gresham", "Grey", "Grider", "Griffin", "Griffis", "Griffith", "Griffiths", "Griggs", "Grigsby", "Grim", "Grimes", "Grimm", "Grisham", "Grissom", "Griswold", "Groff", "Grogan", "Grooms", "Gross", "Grossman", "Groth", "Grove", "Grover", "Groves", "Grubb", "Grubbs", "Gruber", "Guarino", "Gubler", "Guenther", "Guerra", "Guest", "Guffey", "Guidry", "Guillory", "Guinn", "Gulley", "Gunderson", "Gunn", "Gunter", "Gunther", "Gurley", "Gustafson", "Guthrie", "Gutierrez", "Guy", "Haag", "Haas", "Haase", "Hacker", "Hackett", "Hackney", "Haddad", "Haddock", "Hadley", "Hagan", "Hagen", "Hager", "Haggard", "Haggerty", "Hahn", "Haight", "Haines", "Hair", "Hale", "Hales", "Haley", "Hall", "Haller", "Hallman", "Halsey", "Halstead", "Halverson", "Halvorson", "Ham", "Hamblin", "Hamby", "Hamel", "Hamilton", "Hamlin", "Hamm", "Hammer", "Hammett", "Hammock", "Hammond", "Hammonds", "Hammons", "Hampden", "Hampton", "Hamrick", "Hancock", "Hand", "Handley", "Handy", "Hanes", "Haney", "Hankins", "Hanks", "Hanley", "Hanlon", "Hanna", "Hannah", "Hannity", "Hannon", "Hansen", "Hanson", "Harbin", "Harden", "Harder", "Hardesty", "Hardin", "Harding", "Hardman", "Hardward", "Hardwick", "Hardy", "Hare", "Hargis", "Hargrove", "Harkins", "Harlan", "Harless", "Harley", "Harlow", "Harman", "Harmon", "Harms", "Harp", "Harper", "Harrell", "Harrelson", "Harrington", "Harris", "Harrison", "Hart", "Harter", "Hartley", "Hartman", "Hartmann", "Hartnett", "Hartvigsen", "Hartzell", "Harvey", "Harwell", "Harwood", "Haskell", "Haskins", "Hass", "Hastings", "Hatch", "Hatcher", "Hatfield", "Hathaway", "Hatton", "Hauck", "Haugen", "Hauser", "Havens", "Hawes", "Hawk", "Hawkins", "Hawks", "Hawley", "Hawthorne", "Hay", "Hayden", "Hayes", "Haynes", "Hays", "Hayward", "Haywood", "Hazen", "Head", "Headley", "Healey", "Healy", "Heard", "Hearn", "Heath", "Heaton", "Hebert", "Hecht", "Heck", "Heckman", "Hedges", "Hedrick", "Heffernan", "Heffner", "Heflin", "Hefner", "Heil", "Heilman", "Heim", "Hein", "Heinrich", "Heinz", "Heiser", "Held", "Heller", "Helm", "Helms", "Helton", "Hembree", "Hemphill", "Henderson", "Hendrick", "Hendricks", "Hendrickson", "Hendrix", "Henke", "Henkes", "Henley", "Hennessey", "Hennessy", "Henning", "Henry", "Hensley", "Henson", "Herbert", "Herbst", "Herman", "Hermann", "Hernandez", "Herndon", "Herr", "Herrera", "Herrick", "Herrin", "Herring", "Herrington", "Herrmann", "Herron", "Hershberger", "Herzog", "Hess", "Hester", "Hetrick", "Hewitt", "Hiatt", "Hibbard", "Hickey", "Hickman", "Hicks", "Higdon", "Higginbotham", "Higgins", "Higgs", "High", "Hightower", "Hildebrand", "Hildreth", "Hill", "Hiller", "Hilliard", "Hillman", "Hills", "Hilton", "Himes", "Hinckley", "Hinds", "Hines", "Hinkle", "Hinson", "Hinton", "Hintz", "Hirsch", "Hitchcock", "Hitchens", "Hite", "Hitt", "Hoag", "Hobbs", "Hobson", "Hoch", "Hodge", "Hodges", "Hodgson", "Hofer", "Hoff", "Hoffman", "Hoffmann", "Hofmann", "Hogan", "Hogg", "Hogue", "Hoke", "Holbrook", "Holcomb", "Holcombe", "Holden", "Holder", "Holland", "Holley", "Holliday", "Hollingsworth", "Hollis", "Holloway", "Holly", "Holm", "Holman", "Holmes", "Holt", "Holton", "Holtz", "Homan", "Honeycutt", "Hood", "Hook", "Hooker", "Hooks", "Hooper", "Hoover", "Hope", "Hopkins", "Hoppe", "Hopper", "Hopson", "Horan", "Horn", "Horne", "Horner", "Horning", "Hornsby", "Horowitz", "Horst", "Horton", "Horvath", "Hoskins", "Hostetler", "Houck", "Hough", "Houghton", "Houle", "House", "Houser", "Houston", "Howard", "Howe", "Howell", "Howes", "Howland", "Hoy", "Hoyle", "Hoyt", "Hubbard", "Huber", "Hubert", "Huddleston", "Hudgins", "Hudson", "Huebner", "Huey", "Huff", "Huffman", "Huggins", "Hughes", "Hull", "Hulse", "Hulsey", "Hume", "Hummel", "Humphrey", "Humphreys", "Humphries", "Hundley", "Hunt", "Hunter", "Huntington", "Huntley", "Hurd", "Hurley", "Hurst", "Hurt", "Huskey", "Huss", "Hussey", "Hussie", "Huston", "Hutchens", "Hutcheson", "Hutchings", "Hutchins", "Hutchinson", "Hutchison", "Hutson", "Hutto", "Hutton", "Hyatt", "Hyde", "Hyland", "Hyman", "Hymas", "Hynes", "Ingalls", "Ingersoll", "Ingle", "Ingram", "Inman", "Irby", "Ireland", "Irish", "Irvin", "Irvine", "Irving", "Irwin", "Isaac", "Isaacs", "Isaacson", "Isbell", "Isley", "Israel", "Iverson", "Ives", "Ivey", "Ivy", "Izatt", "Jablonski", "Jack", "Jackman", "Jackson", "Jacob", "Jacobs", "Jacobsen", "Jacobson", "Jacoby", "Jacques", "Jaeger", "James", "Jameson", "Jamieson", "Jamison", "Janes", "Jankowski", "Jansen", "Janssen", "Jarrell", "Jarrett", "Jarvis", "Jasper", "Jay", "Jeffers", "Jefferson", "Jeffery", "Jeffrey", "Jeffries", "Jenkins", "Jenks", "Jennings", "Jensen", "Jenson", "Jernigan", "Jerome", "Jessup", "Jester", "Jett", "Jewell", "Jewett", "Jimenez", "Jobe", "Jobs", "Johansen", "John", "Johns", "Johnsen", "Johnson", "Johnston", "Johnstone", "Joiner", "Jolley", "Jolly", "Jonas", "Jones", "Joosten", "Jordan", "Jorgensen", "Jorgenson", "Joseph", "Joslin", "Joy", "Joyce", "Joyner", "Judd", "Judge", "Judy", "Julian", "Jung", "Justice", "Justus", "Kahn", "Kaiser", "Kaminski", "Kane", "Kaplan", "Karamazov", "Karr", "Kasper", "Katz", "Kauffman", "Kaufman", "Kaufmann", "Kay", "Kaye", "Keane", "Kearney", "Kearns", "Keating", "Keaton", "Keck", "Keefe", "Keefer", "Keegan", "Keel", "Keeler", "Keeling", "Keen", "Keenan", "Keene", "Keener", "Keeney", "Keeton", "Kehoe", "Keim", "Keiser", "Keith", "Kelleher", "Keller", "Kelley", "Kellogg", "Kelly", "Kelsey", "Kelso", "Kemp", "Kemper", "Kempf", "Kendall", "Kendrick", "Kennedy", "Kenney", "Kenny", "Kensington", "Kent", "Kenyon", "Kern", "Kerns", "Kerr", "Kersey", "Kessler", "Kester", "Ketchum", "Key", "Keyes", "Keys", "Keyser", "Kidd", "Kidder", "Kidwell", "Kiefer", "Kieffer", "Kilgore", "Killian", "Kilpatrick", "Kimball", "Kimble", "Kimmel", "Kincaid", "Kinder", "King", "Kingsley", "Kinney", "Kinsey", "Kirby", "Kirchner", "Kirk", "Kirkland", "Kirkpatrick", "Kirsch", "Kiser", "Kish", "Kitchen", "Kitchens", "Klein", "Kline", "Kling", "Klinger", "Knapp", "Knight", "Knoll", "Knott", "Knotts", "Knowles", "Knowlton", "Knox", "Knudsen", "Knudson", "Knutson", "Koch", "Koehler", "Koehn", "Koenig", "Koester", "Kohl", "Kohler", "Kohn", "Kolb", "Koonce", "Koontz", "Kopp", "Koss", "Koster", "Kovach", "Kovacs", "Kowalski", "Kozak", "Kozlowski", "Kraemer", "Kraft", "Kramer", "Kraus", "Krause", "Krauss", "Krebs", "Kremer", "Kress", "Krieger", "Kroll", "Krueger", "Krug", "Kruger", "Krugman", "Kruse", "Kuehn", "Kuhn", "Kuhns", "Kunkel", "Kuntz", "Kunz", "Kurtz", "Kushner", "Kuykendall", "Kwiatkowski", "Kyle", "Lacey", "Lackey", "Lacroix", "Lacy", "Ladd", "Ladner", "Lafferty", "Lafleur", "Lahren", "Laird", "Lake", "Lalonde", "Lamar", "Lamb", "Lambert", "Lancaster", "Lance", "Land", "Landers", "Landis", "Landon", "Landrum", "Landry", "Lane", "Laney", "Lang", "Langdon", "Lange", "Langer", "Langford", "Langley", "Langlois", "Langston", "Lanham", "Lanier", "Lankford", "Lanning", "Lantz", "Laplante", "Lapointe", "Laporte", "Lapp", "Large", "Larkin", "Larose", "Larsen", "Larson", "Larue", "Lash", "Lassiter", "Latham", "Lathrop", "Latimer", "Lauer", "Laughlin", "Lauritzen", "Lavigne", "Lavoie", "Law", "Lawler", "Lawless", "Lawrence", "Laws", "Lawson", "Lawton", "Lay", "Layman", "Layne", "Layton", "Lea", "Leach", "Leahy", "Lear", "Leary", "Leavitt", "Leblanc", "Leclair", "Ledbetter", "Ledford", "Lee", "Leger", "Legg", "Leggett", "Lehman", "Lehmann", "Lehr", "Leigh", "Leighton", "Lemaster", "Lemay", "Lemieux", "Lemke", "Lemon", "Lemons", "Lennon", "Lentz", "Lenz", "Leo", "Leon", "Leonard", "Leone", "Lerner", "Leroy", "Leslie", "Lester", "Levesque", "Levin", "Levine", "Levy", "Lewandowski", "Lewinsky", "Lewis", "Lexington", "Libby", "Lieberman", "Light", "Liles", "Lilley", "Lilly", "Lima", "Lincoln", "Lind", "Lindberg", "Linder", "Lindgren", "Lindley", "Lindner", "Lindquist", "Lindsay", "Lindsey", "Lindstrom", "Link", "Linn", "Linton", "Linville", "Lipscomb", "Lister", "Little", "Littlefield", "Littleton", "Lively", "Livingston", "Lloyd", "Locke", "Lockhart", "Locklear", "Lockwood", "Loftus", "Logan", "Logsdon", "Logue", "Lohr", "Lombardi", "Lombardo", "London", "Long", "Longo", "Loomis", "Looney", "Loper", "Lopes", "Lopez", "Lord", "Lorenz", "Lott", "Love", "Lovejoy", "Lovelace", "Loveless", "Lovell", "Lovett", "Low", "Lowe", "Lowell", "Lowery", "Lowman", "Lowry", "Loy", "Loyd", "Lucas", "Luce", "Ludwig", "Luke", "Luna", "Lund", "Lundberg", "Lundgren", "Lundquist", "Lundy", "Lunsford", "Lusk", "Luther", "Luthor", "Luttrell", "Lutz", "Lyle", "Lyles", "Lyman", "Lynch", "Lynn", "Lyon", "Lyons", "Lytle", "Maas", "Mabe", "Mabry", "MacDonald", "Mace", "Machado", "Mack", "MacKay", "MacKenzie", "Mackey", "MacLean", "MacLeod", "MacReady", "Madden", "Maddow", "Maddox", "Madison", "Madsen", "Magee", "Maggard", "Magnuson", "Maguire", "Mahaffey", "Mahan", "Maher", "Mahon", "Mahoney", "Maier", "Main", "Major", "Majors", "Maki", "Malcolm", "Mallory", "Malloy", "Malone", "Maloney", "Mancini", "Mancuso", "Mandel", "Maness", "Mangum", "Manley", "Mann", "Manning", "Mansfield", "Manson", "Manuel", "Maples", "March", "Marchese", "Marcum", "Marcus", "Marek", "Marino", "Marion", "Mark", "Markham", "Markley", "Marks", "Marler", "Marlow", "Marquardt", "Marquis", "Marr", "Marsh", "Marshall", "Martel", "Martell", "Martens", "Martin", "Martindale", "Martinez", "Martini", "Martino", "Martins", "Martinson", "Martz", "Marvin", "Marx", "Mashburn", "Mason", "Massey", "Massie", "Mast", "Masters", "Masterson", "Matheny", "Mather", "Mathers", "Matheson", "Mathews", "Mathias", "Mathis", "Matlock", "Matson", "Matteson", "Matthews", "Mattingly", "Mattox", "Mattson", "Mauldin", "Maurer", "Mauro", "Maxey", "Maxson", "Maxwell", "May", "Mayberry", "Mayer", "Mayes", "Mayfair", "Mayfield", "Mayhew", "Maynard", "Mayo", "Mays", "Mazur", "Mazza", "McAdams", "McAfee", "McAlister", "McAllister", "McArthur", "McBee", "McBride", "McCabe", "McCaffrey", "McCain", "McCall", "McCallister", "McCallum", "McCann", "McCarter", "McCarthy", "McCartney", "McCarty", "McCauley", "McClain", "McClanahan", "McClellan", "McClelland", "McClendon", "McClintock", "McCloskey", "McCloud", "McClung", "McClure", "McCluskey", "McCollum", "McCombs", "McConnell", "McCool", "McCord", "McCorkle", "McCormack", "McCormick", "McCoy", "McCracken", "McCrary", "McCray", "McCreary", "McCree", "McCue", "McCulloch", "McCullough", "McCune", "McCurdy", "McCurry", "McCutcheon", "McDaniel", "McDermott", "McDevitt", "McDonald", "McDonnell", "McDonough", "McDowell", "McElroy", "McEwen", "McFadden", "McFall", "McFarland", "McGarry", "McGee", "McGhee", "McGill", "McGinley", "McGinnis", "McGovern", "McGowan", "McGrath", "McGraw", "McGregor", "McGrew", "McGuire", "McHale", "McHenry", "McHugh", "McIntire", "McIntosh", "McIntyre", "McKay", "McKee", "McKeever", "McKelvey", "McKenna", "McKenzie", "McKeon", "McKeown", "McKinley", "McKinney", "McKinnon", "McKnight", "McLain", "McLaughlin", "McLean", "McLemore", "McLeod", "McMahan", "McMahon", "McManus", "McMaster", "McMichael", "McMillan", "McMillen", "McMullen", "McMurray", "McNabb", "McNair", "McNally", "McNamara", "McNeal", "McNeely", "McNeil", "McNeill", "McNulty", "McNutt", "McPherson", "McQueen", "McRae", "McReynolds", "McVay", "McVey", "McWhorter", "McWilliams", "Mead", "Meade", "Meador", "Meadows", "Means", "Mears", "Mecham", "Medeiros", "Medici", "Medina", "Medley", "Medlin", "Meehan", "Meek", "Meeker", "Meeks", "Meier", "Meister", "Mello", "Melton", "Melvin", "Menard", "Mendenhall", "Mendez", "Mendoza", "Mercer", "Merchant", "Mercier", "Meredith", "Merkel", "Merrell", "Merrick", "Merrill", "Merriman", "Merritt", "Mertz", "Messer", "Messick", "Messina", "Metcalf", "Metz", "Metzger", "Metzler", "Meyer", "Meyers", "Michael", "Michaels", "Michalski", "Michaud", "Michel", "Michels", "Mickelson", "Middleton", "Milam", "Milburn", "Miles", "Millard", "Miller", "Milligan", "Mills", "Milner", "Milton", "Mims", "Miner", "Minnick", "Minor", "Minter", "Minton", "Miranda", "Mitchell", "Mixon", "Mize", "Mobley", "Mock", "Moe", "Moeller", "Moen", "Moffett", "Moffitt", "Mohler", "Mohr", "Moll", "Molloy", "Molnar", "Monaco", "Monaghan", "Monahan", "Monk", "Monroe", "Monson", "Montague", "Montgomery", "Montrose", "Moody", "Moon", "Mooney", "Moore", "Morales", "Moran", "Moreau", "Morehead", "Moreland", "Morelli", "Moreno", "Morey", "Morgan", "Moriarty", "Morin", "Moritz", "Morley", "Morrell", "Morrill", "Morris", "Morrison", "Morrissey", "Morrow", "Morse", "Mortensen", "Morton", "Moseley", "Moser", "Moses", "Mosher", "Mosier", "Mosley", "Moss", "Mott", "Moulton", "Mount", "Mowery", "Moyer", "Mueller", "Muir", "Mulcahy", "Mulder", "Mull", "Mullen", "Muller", "Mulligan", "Mullin", "Mullins", "Mullis", "Mundy", "Munn", "Munoz", "Munro", "Munroe", "Munsen", "Munson", "Murdock", "Murphy", "Murray", "Murrell", "Muse", "Musick", "Musselman", "Musser", "Myer", "Myers", "Myrick", "Nadeau", "Naegle", "Nagel", "Nagle", "Nagy", "Nall", "Nance", "Napier", "Napolitano", "Nash", "Naylor", "Neal", "Needham", "Neel", "Neeley", "Neely", "Neff", "Neil", "Neill", "Neilson", "Nelsen", "Nelson", "Nemeth", "Nesbitt", "Ness", "Nettles", "Neuman", "Neumann", "Neville", "New", "Newberry", "Newby", "Newcomb", "Newell", "Newkirk", "Newland", "Newman", "Newsom", "Newsome", "Newton", "Nicholas", "Nichols", "Nicholson", "Nickel", "Nickerson", "Nielsen", "Nielson", "Niles", "Nix", "Nixon", "Noble", "Nobles", "Noe", "Noel", "Nolan", "Noland", "Nolen", "Noll", "Nolte", "Noonan", "Norman", "Norris", "North", "Norton", "Norwood", "Novak", "Novotny", "Nowak", "Noyes", "Nugent", "Null", "Nunes", "Nunley", "Nunn", "Nutt", "Nutter", "Nye", "O'Brien", "O'Bryant", "O'Connell", "O'Connor", "O'Dell", "O'Donnell", "O'Grady", "O'Hara", "O'Keefe", "O'Leary", "O'Malley", "O'Neal", "O'Neil", "O'Neill", "O'Reilly", "O'Rourke", "O'Shea", "O'Sullivan", "O'Toole", "Oakes", "Oakley", "Oaks", "Oates", "Odell", "Odom", "Ogden", "Ogilvie", "Ogle", "Oglesby", "Oldham", "Oliveira", "Oliver", "Olmstead", "Olsen", "Olson", "Oneal", "Oneil", "Oneill", "Oreilly", "Orlando", "Orourke", "Orr", "Orth", "Ortiz", "Orwell", "Osborn", "Osborne", "Osburn", "Osmond", "Ostrander", "Ostrowski", "Oswald", "Ott", "Otto", "Ouellette", "Overstreet", "Overton", "Owen", "Owens", "Pace", "Pacheco", "Pack", "Packard", "Packer", "Padgett", "Pagano", "Page", "Paige", "Paine", "Painter", "Palermo", "Palin", "Palm", "Palmer", "Palmieri", "Palomino", "Palumbo", "Pape", "Pappas", "Paquette", "Parent", "Parham", "Paris", "Parish", "Parisi", "Park", "Parker", "Parkinson", "Parks", "Parnell", "Parr", "Parris", "Parrish", "Parrott", "Parry", "Parsley", "Parson", "Parsons", "Partin", "Parton", "Partridge", "Pate", "Patrick", "Patten", "Patterson", "Patton", "Paul", "Pauley", "Paulsen", "Paulson", "Paxton", "Payne", "Payton", "Peace", "Peacock", "Peak", "Pearce", "Pearl", "Pearson", "Pease", "Peck", "Pedersen", "Pederson", "Peebles", "Peek", "Pellegrino", "Pelletier", "Pelosi", "Pemberton", "Pence", "Penderghast", "Pendergrass", "Pendleton", "Penn", "Pennington", "Penny", "Penrod", "Peoples", "Pepper", "Perdue", "Pereira", "Perez", "Perkins", "Perrin", "Perry", "Person", "Peter", "Peterman", "Peters", "Petersen", "Peterson", "Petrie", "Pettit", "Petty", "Peyton", "Pfaff", "Pfeifer", "Pfeiffer", "Phelan", "Phelps", "Phillips", "Phipps", "Piazza", "Picard", "Pickard", "Pickens", "Pickering", "Pickett", "Pieper", "Pierce", "Pierson", "Pike", "Pilkey", "Pines", "Pinkerton", "Pinto", "Piper", "Pippin", "Pitman", "Pitt", "Pittman", "Pitts", "Place", "Plank", "Plante", "Platt", "Plummer", "Plunkett", "Poe", "Pogue", "Pohler", "Poindexter", "Poirier", "Poland", "Poling", "Polk", "Pollack", "Pollard", "Pollock", "Pomeroy", "Pond", "Ponder", "Pool", "Poole", "Poore", "Pope", "Popp", "Porter", "Posey", "Post", "Poston", "Potter", "Potts", "Poulin", "Powell", "Power", "Powers", "Prater", "Prather", "Pratt", "Prenderghast", "Prentice", "Prescott", "Presley", "Pressley", "Preston", "Prewitt", "Price", "Priebus", "Priest", "Prince", "Pringle", "Pritchard", "Pritchett", "Proctor", "Proffitt", "Prosser", "Provost", "Pruett", "Pruitt", "Pryor", "Pucino", "Puckett", "Pugh", "Pullen", "Pulliam", "Pulsipher", "Purcell", "Purdy", "Purvis", "Putman", "Putnam", "Pyle", "Pyles", "Qualls", "Queen", "Quick", "Quigley", "Quinlan", "Quinn", "Rader", "Radford", "Radtke", "Rafferty", "Ragan", "Ragland", "Ragsdale", "Raines", "Rainey", "Rains", "Rainwater", "Raley", "Ralph", "Ralston", "Ramey", "Ramirez", "Ramos", "Ramsay", "Ramsey", "Rand", "Randall", "Randazzo", "Randolph", "Raney", "Rankin", "Ransom", "Rapp", "Rash", "Rasmussen", "Ratcliff", "Rathbun", "Ratliff", "Rau", "Rauch", "Rausch", "Rawlings", "Rawls", "Rawson", "Ray", "Rayburn", "Raymond", "Raynor", "Rea", "Read", "Reagan", "Reardon", "Reaves", "Rector", "Redd", "Redden", "Redding", "Redfield", "Redman", "Redmon", "Redmond", "Reece", "Reed", "Reeder", "Reedy", "Rees", "Reese", "Reeves", "Regan", "Register", "Reich", "Reichert", "Reid", "Reilly", "Reimer", "Reinhardt", "Reinhart", "Reinke", "Reis", "Reiss", "Reiter", "Reitz", "Renfro", "Renner", "Reno", "Reuter", "Reyes", "Reynolds", "Rhea", "Rhoades", "Rhoads", "Rhodes", "Ricci", "Rice", "Rich", "Richard", "Richards", "Richardson", "Richey", "Richman", "Richmond", "Richter", "Rickard", "Ricker", "Ricketts", "Ricks", "Riddle", "Ridenour", "Rider", "Ridge", "Ridgeway", "Ridley", "Riedel", "Riedell", "Ries", "Rife", "Rigby", "Riggins", "Riggs", "Rigsby", "Riley", "Rinaldi", "Rinehart", "Ring", "Riordan", "Ripley", "Ritchey", "Ritchie", "Ritter", "Ritz", "Rivera", "Rivers", "Rizzo", "Roach", "Roark", "Robb", "Robbins", "Roberson", "Robert", "Roberts", "Robertson", "Robinette", "Robins", "Robinson", "Robison", "Robson", "Roby", "Rocco", "Rocha", "Roche", "Rock", "Rockwell", "Roderick", "Rodgers", "Rodrigues", "Rodriguez", "Roe", "Roeder", "Rogers", "Rohde", "Rohr", "Rohrer", "Roland", "Roller", "Rollins", "Roman", "Romano", "Romeo", "Romero", "Romine", "Romney", "Rood", "Rooney", "Roosevelt", "Root", "Roper", "Rosa", "Rose", "Rosen", "Rosenbaum", "Rosenberg", "Rosenberger", "Rosenthal", "Ross", "Rossi", "Roth", "Rouse", "Roush", "Rousseau", "Rowan", "Rowe", "Rowell", "Rowland", "Rowley", "Roy", "Royal", "Royer", "Rubin", "Rubino", "Ruble", "Ruby", "Rucker", "Rudd", "Rudolph", "Rudy", "Ruff", "Ruggiero", "Ruiz", "Runyan", "Runyon", "Rupert", "Rupp", "Rush", "Rushing", "Russ", "Russell", "Russo", "Rust", "Ruth", "Rutherford", "Rutkowski", "Rutledge", "Rutter", "Ryan", "Ryder", "Sabo", "Sacco", "Sachs", "Sadler", "Sadowski", "Sage", "Sager", "Salazar", "Salerno", "Salisbury", "Salmon", "Salter", "Salyer", "Sammons", "Sample", "Samples", "Sampson", "Sams", "Samson", "Samuels", "Samuelson", "Sanborn", "Sanchez", "Sandberg", "Sander", "Sanders", "Sanderson", "Sandlin", "Sands", "Sanford", "Santoro", "Santos", "Sapp", "Sargent", "Sarver", "Sasse", "Sasser", "Satterfield", "Sauer", "Saunders", "Savage", "Sawyer", "Saxton", "Sayers", "Saylor", "Sayre", "Scanlon", "Scarborough", "Scarbrough", "Scarvo", "Schaefer", "Schaeffer", "Schafer", "Schaffer", "Schatz", "Schell", "Schenk", "Scherer", "Schiller", "Schilling", "Schindler", "Schlegel", "Schlosser", "Schmid", "Schmidt", "Schmitt", "Schmitz", "Schneider", "Schnell", "Schoen", "Schofield", "Scholl", "Schoonover", "Schott", "Schrader", "Schramm", "Schreiber", "Schreiner", "Schrock", "Schroeder", "Schubert", "Schuler", "Schulman", "Schulte", "Schultz", "Schulz", "Schulze", "Schumacher", "Schumann", "Schuster", "Schwab", "Schwartz", "Schwarz", "Schweitzer", "Scoggins", "Scott", "Scroggins", "Scruggs", "Scully", "Seal", "Seals", "Seaman", "Searcy", "Sears", "Seaton", "Seay", "Sebastian", "See", "Seeley", "Segal", "Seibert", "Seidel", "Seifert", "Seiler", "Seitz", "Selby", "Self", "Sell", "Sellers", "Sells", "Sessions", "Settle", "Severson", "Seward", "Sewell", "Sexton", "Seymour", "Shackelford", "Shafer", "Shaffer", "Shanahan", "Shane", "Shank", "Shanks", "Shannon", "Shapiro", "Sharkey", "Sharp", "Sharpe", "Shaughnessy", "Shaver", "Shaw", "Shay", "Shea", "Shearer", "Sheehan", "Sheets", "Sheffield", "Shelby", "Sheldon", "Shell", "Shelley", "Shelton", "Shepard", "Shepherd", "Sheppard", "Sheridan", "Sherman", "Sherrill", "Sherry", "Sherwood", "Shields", "Shifflett", "Shinn", "Shipley", "Shipman", "Shipp", "Shirk", "Shirley", "Shively", "Shockley", "Shoemaker", "Shook", "Shore", "Shores", "Short", "Showalter", "Shrader", "Shreve", "Shuler", "Shull", "Shultz", "Shumaker", "Shuman", "Shumate", "Shumway", "Sibley", "Sides", "Siebert", "Siegel", "Sigler", "Sikes", "Siler", "Silva", "Silver", "Silverman", "Silvers", "Silverstein", "Simmons", "Simms", "Simon", "Simone", "Simons", "Simonson", "Simpkins", "Simpson", "Sims", "Sinclair", "Singer", "Singletary", "Singleton", "Sipes", "Sisco", "Sisk", "Sisson", "Sizemore", "Skaggs", "Skelton", "Skidmore", "Skinner", "Skipper", "Slack", "Slade", "Slagle", "Slater", "Slattery", "Slaughter", "Sloan", "Slocum", "Slone", "Small", "Smalley", "Smallwood", "Smart", "Smiley", "Smith", "Smithson", "Smoot", "Smyth", "Snead", "Sneed", "Snell", "Snider", "Snodgrass", "Snook", "Snow", "Snowden", "Snyder", "Soares", "Solomon", "Somers", "Sommer", "Sommers", "Soper", "Sorensen", "Sorenson", "Sorrell", "Soto", "Sousa", "South", "Southard", "Southerland", "Southern", "Souza", "Sowell", "Sowers", "Spacey", "Spain", "Spalding", "Spangler", "Sparkman", "Sparks", "Spaulding", "Spear", "Spears", "Speck", "Speer", "Spence", "Spencer", "Spendlove", "Sperry", "Spicer", "Spiegel", "Spires", "Spitzer", "Spivey", "Spooner", "Spradlin", "Sprague", "Spring", "Springer", "Sprouse", "Spurgeon", "Spurlock", "Squires", "St. Clair", "St. James", "St. John", "St. Pierre", "Stacey", "Stack", "Stacy", "Stafford", "Staggs", "Stahl", "Staley", "Stallings", "Stamper", "Stanfield", "Stanford", "Stanley", "Stantis", "Stanton", "Staples", "Stapleton", "Stark", "Starkey", "Starks", "Starling", "Starnes", "Starr", "Staton", "Stauffer", "Steadman", "Stearns", "Stebbins", "Steed", "Steele", "Steen", "Steffen", "Stegall", "Stein", "Steinberg", "Steiner", "Steinmetz", "Stephan", "Stephen", "Stephens", "Stephenson", "Stepp", "Sterling", "Stern", "Stevens", "Stevenson", "Steward", "Stewart", "Stidham", "Stiles", "Still", "Stillwell", "Stine", "Stinnett", "Stinson", "Stock", "Stocker", "Stockton", "Stockwell", "Stoddard", "Stokes", "Stoll", "Stoltzfus", "Stone", "Stoner", "Storey", "Storm", "Story", "Stout", "Stovall", "Stover", "Stowe", "Strain", "Straits", "Strand", "Strange", "Stratton", "Straub", "Strauss", "Street", "Streeter", "Strickland", "Strider", "Stringer", "Strode", "Strom", "Strong", "Stroud", "Stroup", "Strunk", "Stuart", "Stubblefield", "Stubbs", "Stuckey", "Stull", "Stump", "Stumpf", "Sturgeon", "Sturgill", "Sturm", "Stutzman", "Sugar", "Suggs", "Sullivan", "Summers", "Sumner", "Sutherland", "Sutter", "Sutton", "Swafford", "Swain", "Swan", "Swank", "Swann", "Swanson", "Swartz", "Swearingen", "Sweat", "Sweeney", "Sweet", "Swenson", "Swift", "Swisher", "Switzer", "Swope", "Sykes", "Sylvester", "Szabo", "Szymanski", "Taber", "Tabor", "Tackett", "Taft", "Taggart", "Talbert", "Talbot", "Talbott", "Talley", "Tallman", "Tanner", "Tarr", "Tate", "Tatum", "Taylor", "Teague", "Teal", "Teel", "Temple", "Templeton", "Tennant", "Tenney", "Terrell", "Terry", "Testa", "Thacker", "Tharp", "Thatcher", "Thayer", "Theis", "Thibodeau", "Thibodeaux", "Thiel", "Thomas", "Thomason", "Thompson", "Thomsen", "Thomson", "Thorn", "Thornburg", "Thorne", "Thornton", "Thorpe", "Thorson", "Thrasher", "Thurman", "Thurston", "Tibbetts", "Tice", "Tidwell", "Tierney", "Tillerson", "Tilley", "Tillman", "Tilton", "Timberlake", "Timm", "Timmerman", "Timmons", "Tinsley", "Tipton", "Titus", "Tobias", "Tobin", "Todd", "Tolbert", "Toler", "Tomlin", "Tomlinson", "Tompkins", "Toney", "Toomey", "Torres", "Toth", "Towne", "Townley", "Townsend", "Tracey", "Tracy", "Trahan", "Trainor", "Trammell", "Trapp", "Travers", "Travis", "Traylor", "Treadway", "Tremblay", "Trent", "Trimble", "Triplett", "Tripp", "Trombley", "Trotter", "Trout", "Troutman", "Trowbridge", "Troy", "Troyer", "True", "Truitt", "Truman", "Trump", "Tubbs", "Tuck", "Tucker", "Tully", "Turk", "Turley", "Turnbull", "Turner", "Turney", "Turpin", "Tuttle", "Tyler", "Tyree", "Tyson", "Ulmer", "Ulrich", "Underhill", "Underwood", "Unger", "Unruh", "Upchurch", "Upton", "Urban", "Vaccaro", "Vail", "Valdez", "Valenti", "Valentine", "Valentino", "Van Damme", "Van de Kamp", "Van Dyke", "Van Horn", "Van", "Vance", "Vandenberg", "Vandervelde", "Vandyke", "Vanhorn", "Vanmeter", "Vann", "Vanover", "Vanwinkle", "Vargas", "Vargo", "Varner", "Varney", "Vasquez", "Vaughan", "Vaughn", "Vaught", "Venable", "Vendome", "Ventura", "Vernon", "Vest", "Vetter", "Vick", "Vickers", "Vickery", "Vieira", "Vincent", "Vines", "Vinson", "Vitale", "Vogel", "Vogt", "Voigt", "Volk", "Vollmer", "Volpe", "Voorhees", "Voss", "Waddell", "Wade", "Wadsworth", "Waggoner", "Wagner", "Wagoner", "Wahl", "Waite", "Wakefield", "Walden", "Waldron", "Waldrop", "Walker", "Wall", "Wallace", "Wallen", "Waller", "Wallin", "Walling", "Wallis", "Walls", "Walsh", "Walter", "Walters", "Walton", "Waltz", "Walz", "Wampler", "Ward", "Warden", "Ware", "Warner", "Warren", "Warrington", "Washburn", "Washington", "Wasserman", "Wasson", "Waterman", "Waters", "Watkins", "Watson", "Watt", "Watters", "Watts", "Waugh", "Way", "Wayne", "Weatherford", "Weathers", "Weaver", "Webb", "Webber", "Weber", "Webster", "Weed", "Weeks", "Weems", "Wegner", "Weidner", "Weigel", "Weil", "Weiland", "Weiler", "Weimer", "Weinberg", "Weiner", "Weinstein", "Weir", "Weis", "Weiss", "Welborn", "Welch", "Weldon", "Welker", "Weller", "Wellman", "Wells", "Welsh", "Wendt", "Wenger", "Wentworth", "Wentz", "Wenzel", "Werner", "Wertz", "Wesley", "Wessel", "West", "Westbrook", "Westfall", "Westmoreland", "Weston", "Westphal", "Wetzel", "Whalen", "Whaley", "Wharton", "Whatley", "Wheat", "Wheatley", "Wheaton", "Wheeler", "Whelan", "Whipple", "Whitaker", "Whitcomb", "White", "Whited", "Whitehead", "Whiteman", "Whiteside", "Whitfield", "Whiting", "Whitley", "Whitlock", "Whitlow", "Whitman", "Whitmire", "Whitmore", "Whitney", "Whitson", "Whitt", "Whittaker", "Whitten", "Whittington", "Whittle", "Whitworth", "Wick", "Wicker", "Wickham", "Wicks", "Wiese", "Wiggins", "Wilbanks", "Wilbur", "Wilburn", "Wilcox", "Wild", "Wilde", "Wilder", "Wiles", "Wiley", "Wilhelm", "Wilhite", "Wilke", "Wilkerson", "Wilkes", "Wilkie", "Wilkins", "Wilkinson", "Will", "Willard", "Willem", "Willett", "Willey", "Williams", "Williamson", "Williford", "Willingham", "Willis", "Willoughby", "Wills", "Willson", "Wilson", "Wilt", "Wimmer", "Winchester", "Windham", "Windsor", "Wing", "Wingate", "Winkler", "Winn", "Winslow", "Winstead", "Winston", "Winter", "Winters", "Winthrop", "Wirth", "Wise", "Wiseman", "Wisniewski", "Withers", "Withrow", "Witmer", "Witt", "Witte", "Wojcik", "Wolf", "Wolfe", "Wolff", "Wolford", "Womack", "Wood", "Woodall", "Woodard", "Woodcock", "Woodruff", "Woods", "Woodson", "Woodward", "Woodworth", "Woody", "Wooldridge", "Woolley", "Woolsey", "Wooten", "Worden", "Workman", "Worley", "Worrell", "Worth", "Worthington", "Wozniak", "Wray", "Wren", "Wright", "Wyant", "Wyatt", "Wylie", "Wyman", "Wynn", "Wynne", "Xavier", "Yager", "Yancey", "Yarbrough", "Yard", "Yates", "Yeager", "Yocum", "Yoder", "Yorgensen", "York", "Yost", "Young", "Youngblood", "Younger", "Yount", "Zabriskie", "Zaret", "Zeigler", "Zeller", "Ziegler", "Zielinski", "Zimmer", "Zimmerman", "Zimmermann", "Zink", "Zollinger", "Zook"]>> <<set setup.africanAmericanSlaveNames = ["Aaisha", "Aaliyah", "Abigail", "Abrielle", "Adasha", "Addison", "Adjoua", "Adrianna", "Aicha", "Aireona", "Aisha", "Aissata", "Aissatou", "Aiyana", "Aizza", "Aja", "Ajaysia", "Akeiyla", "Akita", "Alana", "Alani", "Alexa", "Alexandra", "Alexandria", "Alexis", "Alexus", "Alfre", "Algenea", "Alice", "Alicia", "Aliyah", "Almesha", "Alora", "Alyssa", "Alyx", "Amanda", "Amani", "Amara", "Amaya", "Amber", "Amelia", "Amia", "Amina", "Aminata", "Amira", "Amirah", "Amiya", "Amiyah", "Anaya", "Aneisha", "Angel", "Angela", "Angelie", "Angelina", "Angie", "Anita", "Aniya", "Aniyah", "Annabelle", "Anquaneshi", "Antisha", "Applice", "Aranza", "Aretha", "Aria", "Ariana", "Arianna", "Ariel", "Arielle", "Ariessa", "Armetris", "Ashley", "Asia", "Atalaya", "Atasha", "Aubree", "Aubrey", "Aumnee", "Aushanique", "Autherine", "Autumn", "Ava", "Avery", "Avondelee", "Awa", "Aya", "Ayana", "Ayanna", "Ayesha", "Azaline", "Azaria", "Barbarasha", "Bella", "Beneatha", "Berline", "Betty", "Beulah", "Bintou", "Birdia", "Blessing", "Bopha", "Brandi", "Brandy", "Brenda", "Bria", "Brianna", "Brielle", "Brinesha", "Brishella", "Brooke", "Brooklyn", "Bupe", "Cali", "Cambrea", "Camika", "Camille", "Carla", "Carneisha", "Carolshay", "Catherlean", "Ceola", "Chabris", "Chamika", "Chanel", "Chanelle", "Chantal", "Chante", "Chaquasha", "Chardai", "Charlotte", "Charmaine", "Charmee", "Charmesha", "Charmian", "Chatoya", "Chelsea", "Chenita", "Chequettalin", "Chevay", "Cheyenne", "Chihiqua", "Chiniqua", "Chloe", "Christina", "Chukwuma", "Claire", "Clairkita", "Claudette", "Claya", "Clementine", "Cokeeshia", "Condoleeza", "Constance", "Crystal", "Cyana", "Cyniqua", "D'aiyaa", "D'Andra", "D'arci", "D'Tarnika", "Daejanae", "Daeshandra", "Daija", "Dakeirra", "Dakota", "Danielle", "Daraphonee", "Darnetta", "Darrenisha", "Dashawna", "Dashay", "Davera", "De Yanira", "Deandra", "Deborah", "Deeba", "Deequa", "Dega", "Deja", "Dejanelle", "Dejuna", "Delicia", "Delronda", "Demeka", "Denali", "Denisha", "Denkia", "Dequandra", "Desana", "Desha", "Destiny", "Dhola", "Diahann", "Donesha", "Donna", "Doretha", "Dramikha", "Drayzhsha", "Dvonne", "Dylan", "Dysis", "Dywonda", "Ebonique", "Ebony", "Eden", "Egypt", "Eliana", "Elise", "Elizabeth", "Ella", "Emani", "Emily", "Emma", "Erakwanda", "Erin", "Esharia", "Eshita", "Essence", "Esther", "Eulissa", "Eurethra", "Eva", "Exenia", "Faafia", "Faith", "Fanta", "Farrusha", "Fatima", "Fatou", "Fatoumata", "Faulishina", "Felneetra", "Flirtisha", "Fredniqua", "Gabriella", "Gabrielle", "Genesis", "Gianna", "Giselle", "Gloriyae", "Glynitra", "Grace", "Gwendolyn", "Hailey", "Hannah", "Harmony", "Hawa", "Heaven", "Helen", "Hidalia", "Hope", "I'aunia", "I'vaughna", "Ieisha", "Iesha", "Ieshia", "Ijanae", "Ilunga", "Imani", "Indraneela", "Isabella", "Isabelle", "Isis", "Ivory", "Iyeshia", "Jabriona", "Jada", "Jade", "Jakeisha", "Jaleesa", "Jalisa", "Jaliyah", "Jamaica", "Jameeka", "Jamesha", "Jamila", "Jamillah", "Jamiyla", "Janae", "Jane", "Janelle", "Janet", "Janiya", "Janiyah", "Jarica", "Jasmine", "Jatara", "Jatherine", "Javonna", "Jawana", "JaWanda", "Jawarza", "Jayauna", "Jayda", "Jayla", "Jayne", "Jayonna", "Jazmine", "Jazzlynn", "Jelona", "Jelsey", "Jemima", "Jeniece", "Jennifer", "Jesoya", "Jessica", "Jhannaya", "Johnnaisha", "Jon'Nae", "Joneita", "Jonqueesha", "Jonzelle", "JoRaye", "Jordan", "Jordyn", "Journee", "Journey", "Joy", "Joycelyn", "Jubiia", "Julia", "Jyakita", "Jyneeshia", "Jyqueshia", "Jyvondra", "Jyvonne", "Kadiatou", "Kahlita", "Kai", "Kaitlyn", "Kali", "Kalisa", "Kaliyah", "Kamalis", "Kamisha", "Kamiyah", "Kaneesha", "Kanisha", "Karen", "Kay", "Kayla", "Kaylee", "Kaylin", "Kazzandra", "Keesha", "Kefira", "Keisha", "Keishauna", "Keita", "Keitra", "Kelsey", "Kemoshia", "Kendra", "Kenesha", "Kenia", "Kenisha", "Kennedy", "Kenshayla", "Kenya", "Kenyatae", "Kenyatta", "Kenyon", "Keshia", "Keveronique", "Keyala", "Keyanna", "Keyasia", "Keyauna", "Keyera", "Keyna", "Kha'sheena", "Khadijah", "Khena", "Khloe", "Kia", "Kiana", "Kiandre", "Kiante", "Kiara", "Kieantae", "Kierra", "Kimani", "Kimbery", "Kimora", "Kitiara", "Kizzy", "Kmara", "Kourtney", "Kreata", "Kristen", "Kusella", "Kwabena", "Kwanisha", "Kwantazha", "Kwatazia", "Kwina", "Kyaisha", "Kyana", "Kyanua", "Kyesha", "Kyla", "Kylee", "Kylie", "Kynedra", "La Netta", "LaBebe", "Lachelle", "LaChrystal", "Lacretia", "Ladaisha", "Ladasha", "Ladawn", "Ladonna", "LaFefe", "Lafondra", "Lagisolia", "Laila", "Lailah", "Lakeisha", "Lakendra", "Lakenya", "Lakeshia", "Lakia", "Lakisha", "Lakita", "Lakitu", "Lakresha", "Lamesha", "LaMonica", "Lanautica", "Laneisha", "Lanette", "LaQuain", "Laquanda", "Laqueefa", "Laqueena", "Laqueisha", "Laquinta", "Laquisha", "Laquita", "LaRhonda", "Larissa", "Lashauna", "Lashaunia", "Lashaunta", "Lashawna", "LaShawndre", "Lashay", "Lasheree", "Lashonda", "Lashondra", "Lasquweesha", "LaTaijah", "Latanya", "Latara", "Latasha", "Latavia", "LaTeasha", "Lateisha", "Latia", "Latifah", "Latisha", "Latonya", "Latoria", "Latosha", "Latoya", "Latrice", "Latricia", "Lauren", "Lauryn", "LaVena", "Lawanda", "Layla", "LaYvonne", "Le Ethel", "Le'Tania", "Leah", "Leenisha", "Leila", "Leilani", "Leleejah", "Lequita", "Leshicqua", "Leslie", "Letonya", "Ligaya", "Lillian", "Lily", "Lisa", "Llaila", "Logan", "London", "Londyn", "Lonice", "Loren", "Lorraine", "Loverine", "Luevonnia", "Lula", "Luvenia", "Lyric", "Mackenzie", "Madison", "Madisyn", "Mae", "Mahalia", "Mahogany", "Maiami", "Makayla", "Makenzie", "Malaysia", "Malekwa", "Malia", "Maliequa", "Maliyah", "Mandy", "Mariah", "Mariam", "Mariama", "Marie", "Mariha", "Markisha", "Marquashia", "Marquesia", "Marquette", "Marquisha", "Marquita", "Mary", "Maryam", "Matrika", "Mattie", "Mavis", "Maya", "Mckenzie", "Mdalasini", "Meaisha", "Megan", "Melanie", "Melody", "Mercedes", "Mia", "Miata", "Michelle", "Michonne", "Miesha", "Mikalyn", "Mikayla", "Mila", "Milan", "Miracle", "Mishayla", "Moesha", "Moeshia", "Molysha", "Monica", "Monique", "Montanette", "Moraya", "Morgan", "Mya", "Myisha", "Mytalesha", "Nadia", "Nahla", "Naja", "Najwa", "Nakaela", "Nakia", "Nakili", "Nakisha", "Nana", "Naomi", "Nashawna", "Natalia", "Natalie", "Natisha", "Natosha", "Nefertite", "Neice", "Neola", "Nesha", "Neshia", "Nevaeh", "Ngizunzigu", "Nia", "Nicole", "Niesha", "Nikeisha", "Nisha", "Nova", "Nyasia", "Nykeila", "Nyla", "Nylah", "Nytangia", "Oakleigh", "Olivia", "Oluwasegun", "Omarara", "Oneika", "Onyeisha", "Onzilee", "Orienta", "Orlesha", "Oumou", "Oveita", "Paige", "Pamela", "Paniga", "Paris", "Pashiya", "Patricia", "Payton", "Peaches", "Penelope", "Perzavia", "Peyton", "Phalopia", "Phillis", "Phoenix", "Phrstephynie", "Phyllis", "Pia", "Precious", "Presleysia", "Princess", "Qayshanta", "Qiana", "Qiarra", "Quaasia", "Quadezia", "Quan Shay", "Quaniesha", "Quanika", "Quanisha", "Quantaya", "Quashaniqua", "QuaYein", "Quiara", "Quiniah", "Quinstanisha", "Quintasha", "Quyannah", "Qwshanda", "Qyleshia", "Ra Yanda", "Rachel", "Rahnisha", "Rashanda", "Rashann", "Rashauna", "Raven", "Rebecca", "Reeshemah", "Rehema", "Reka", "Rekeisha", "Renée", "Rhoshand", "Rhoshanda", "Rhoshaun", "Ricielle", "Riley", "Roneisha", "Rosa", "Rose", "Roshawna", "Ruby", "Ruqia", "Ruth", "Rysheema", "Sabeqwa", "Sabrielle", "Sade", "Saige", "Saisha", "Salesha", "Salisha", "Saludae", "Samantha", "Samara", "Samisha", "Samiya", "Samiyah", "Sanaa", "Sanai", "Saniya", "Saniyah", "Sanjua", "Sanjukta", "Santana", "Sanura", "Sara", "Sarah", "Sarai", "Sariah", "Sarisa", "Saronda", "Sasha", "Savannah", "Scarlett", "Seneka", "Serenity", "Sh'Quita", "Sha'Vaughn", "Shajuana", "Shakeema", "Shakeisha", "Shakeria", "Shakia", "Shakina", "Shakita", "Shalanda", "Shalaun", "Shalinda", "Shalisa", "Shalona", "Shalonde", "Shameka", "Shamica", "Shamika", "Shamiqua", "Shanautica", "Shanay", "Shanaynay", "Shandy", "Shanethis", "Shania", "Shanice", "Shanika", "Shaniqua", "Shanita", "Shanitra", "Shaniya", "Shaquanda", "Shaquira", "Shaquisha", "Shaquita", "Shaqwasha", "Sharelle", "Sharice", "Sharika", "Sharonda", "Shatesha", "Shauntrice", "Shawa", "Shawanna", "Shay", "Shayla", "Shaynell", "Shebubu", "Shelawn", "Shelinda", "Shemaia", "Shenequa", "Sheneque", "Sherika", "Sherita", "Shianti", "Shiloh", "Shimika", "Shiquan", "Shontia", "Shylonda", "Sigma", "Skye", "Skyla", "Skylah", "Skylar", "Skyler", "Sofia", "Soheila", "Sojourner", "Solare", "Sophia", "Soraya", "Stephanie", "Steveanna", "Stevetta", "Summer", "Susan", "Sybrell", "Sydney", "Sylvania", "Symphony", "Syreeta", "T'keyah", "Tabitha", "Tachine", "Tahani", "Tahara", "Taisha", "TaiWanda", "Takeira", "Takeisha", "Takenya", "Takia", "Takira", "Talia", "Taliena", "Talisa", "Talisha", "Tambry", "Tamesha", "Tameshia", "Tamia", "Tamika", "Tamila", "Tamisha", "Tanaquil", "Taneisha", "Taneka", "Tanequa", "Tanesha", "Tangerine", "Tangia", "Tangie", "Tangier", "Tanielle", "Tanika", "Taniqua", "Tanisha", "Taniya", "Taniyah", "Tanqueray", "Taquanna", "Taraji", "Tarena", "Tareva", "Tasha", "Tashana", "Tashelle", "Taura", "Taushae", "Tavahna", "Tawanna", "Tawatha", "Taylor", "Tazhan", "Teaira", "Teeairia", "Tenayah", "Tenea", "Tenee", "Tenelle", "Teniqua", "Tenisha", "Tennille", "Thandeka", "Tia", "Tiana", "Tianna", "Tiffany", "Tilneshia", "Tinesha", "Tisha", "Tolani", "Tori", "Tosha", "Toya", "Tralena", "Tranashia", "Tranesha", "Trinity", "Tuleda", "Tyeanna", "Tyesha", "Tyisha", "Tykeedra", "Tylishia", "TyQuasia", "Ukiesha", "VaJabra", "Valeshia", "Valetta", "Vanessa", "Vanita", "Varah", "Vatasha", "Victoria", "Violet", "Voneil", "Vonesha", "Vontrice", "Wakeena", "Wakeisha", "Wanya", "Wanzina", "Waynia", "Wenday", "Winter", "Wonder", "Wynter", "Xernona", "Xhosa", "Xjenai", "Xkeona", "Yajaiva", "Yushekia", "Yvetteen", "Yvonne", "Zackulyn", "Zahara", "Zakiyyah", "Zanette", "Zaniyah", "Zanquandria", "Zanta", "Zara", "Zaria", "Zariah", "Zendaya", "Zhonya", "Zoe", "Zoey", "Zoya", "Zuleika", "Zuri", "Zwaanette", "Zykeetria"]>> <<set setup.africanAmericanSlaveSurnames = ["Aaron", "Abbott", "Abdi", "Abdullah", "Abebe", "Abel", "Abercrombie", "Abernathy", "Abner", "Abney", "Abraham", "Abram", "Abrams", "Abron", "Abston", "Ackard", "Acker", "Ackiss", "Acklin", "Acoff", "Acre", "Adair", "Adam", "Adams", "Adamson", "Adderley", "Addison", "Adger", "Adkins", "Adkisson", "Adom", "Africa", "Agee", "Aggrey", "Agnew", "Ahart", "Ahmad", "Ahmed", "Aiken", "Aikens", "Ailstock", "Airall", "Ajayi", "Akers", "Akins", "Albert", "Albright", "Albritton", "Aldridge", "Alex", "Alexander", "Alexandre", "Alexis", "Alford", "Alfred", "Ali", "Allen", "Alleyne", "Allison", "Alman", "Almond", "Alston", "Alvarez", "Alves", "Alvis", "Amaker", "Ambrose", "Ambush", "Amerson", "Ames", "Amey", "Ammons", "Amos", "Ampey", "Ancel", "Ancrum", "Anders", "Anderson", "Andrade", "Andre", "Andrew", "Andrews", "Andrus", "Anfield", "Anglin", "Angus", "Ansley", "Anthony", "Antoine", "Antwine", "Appiah", "Appleberry", "Applewhite", "Appling", "Arceneaux", "Archer", "Archibald", "Archie", "Ard", "Ardoin", "Arline", "Armfield", "Armour", "Armstead", "Armstrong", "Armwood", "Arnett", "Arnold", "Arnwine", "Arrington", "Arthur", "Artis", "Arvie", "Asberry", "Asbury", "Ash", "Ashberry", "Ashby", "Ashe", "Ashford", "Ashley", "Ashton", "Ashworth", "Askew", "Assue", "Atchison", "Atkins", "Atkinson", "Attles", "Atwater", "Aubrey", "August", "Auguste", "Augustin", "Augustine", "Augustus", "Aulden", "Ausby", "Austin", "Autman", "Autry", "Avant", "Avent", "Avery", "Awkard", "Axam", "Axt", "Ayers", "Aytch", "Babb", "Babineaux", "Bacchus", "Bacon", "Bacote", "Badger", "Bagby", "Baggett", "Bagley", "Bah", "Bailey", "Bain", "Baine", "Baines", "Baird", "Baity", "Baker", "Baldwin", "Balkham", "Ball", "Ballard", "Baltimore", "Baltrip", "Bandy", "Bangura", "Bankhead", "Banks", "Bankston", "Banner", "Bannerman", "Bannister", "Baptist", "Baptiste", "Barbee", "Barber", "Barbour", "Barclay", "Barefield", "Barfield", "Barge", "Barham", "Barker", "Barkley", "Barksdale", "Barley", "Barlow", "Barnard", "Barner", "Barnes", "Barnett", "Barnette", "Barney", "Barnhill", "Barnwell", "Barr", "Barrett", "Barringer", "Barrino", "Barron", "Barrow", "Barry", "Bartee", "Barthelemy", "Bartholomew", "Bartlett", "Bartley", "Bartly", "Barton", "Baskerville", "Baskin", "Bass", "Bassett", "Bastien", "Batchelor", "Bateman", "Bates", "Batiste", "Batson", "Batten", "Battiste", "Battle", "Battles", "Batts", "Baugh", "Baxter", "Baylor", "Baynes", "Bazden", "Bazemore", "Bazile", "Bazmore", "Beach", "Beacham", "Beaird", "Beal", "Beale", "Beamon", "Bean", "Beard", "Bearden", "Beasley", "Beason", "Beatty", "Beaty", "Beauchamp", "Beauford", "Beaver", "Beavers", "Beck", "Beckett", "Beckford", "Beckham", "Beckles", "Beckwith", "Becton", "Beddingfield", "Bedenfield", "Bedford", "Bee", "Beeks", "Beene", "Belcher", "Belgrave", "Belin", "Belizaire", "Belk", "Bell", "Bellamy", "Bellard", "Belle", "Bellinger", "Belser", "Belt", "Belton", "Bembry", "Ben", "Benbow", "Bender", "Benefield", "Benford", "Benjamin", "Benn", "Bennet", "Bennett", "Benning", "Benoit", "Benson", "Bent", "Bentley", "Benton", "Berger", "Berkley", "Bernard", "Berry", "Berryman", "Bertrand", "Bess", "Best", "Bester", "Bethea", "Bethel", "Bethley", "Bethune", "Bettis", "Betts", "Beverly", "Bey", "Bias", "Bibb", "Bibbens", "Bibbs", "Bibby", "Bickham", "Biddie", "Biddle", "Bienaime", "Bigelow", "Biggers", "Biggs", "Bilal", "Bill", "Billings", "Billingslea", "Billingsley", "Bills", "Billups", "Bing", "Bingham", "Binion", "Binns", "Birch", "Bird", "Birdow", "Birdsong", "Bishop", "Bivens", "Bivins", "Bizzell", "Black", "Blackburn", "Blackman", "Blackmon", "Blackshear", "Blackshire", "Blackwell", "Blackwomyn", "Blackwood", "Blaine", "Blair", "Blake", "Blakely", "Blakemore", "Blakeney", "Blakes", "Blakey", "Blakley", "Blakney", "Blalock", "Blanc", "Blanchard", "Bland", "Blanding", "Blango", "Blankenship", "Blanks", "Blanton", "Blasingame", "Blassingame", "Blaylock", "Bledsoe", "Blevins", "Blige", "Bligen", "Blizzard", "Block", "Blocker", "Bloodsaw", "Blount", "Blow", "Blue", "Bluford", "Bluitt", "Blunt", "Board", "Boateng", "Boatman", "Boatwright", "Bobb", "Bobbitt", "Bobo", "Boddie", "Bodrick", "Body", "Bogan", "Boggan", "Boggs", "Bohannon", "Bolden", "Bolds", "Boler", "Boles", "Bollin", "Bolling", "Bolton", "Bonaparte", "Bond", "Bonds", "Bone", "Boney", "Bonner", "Booker", "Bookman", "Boon", "Boone", "Boose", "Booth", "Boothe", "Booze", "Boozer", "Borden", "Borders", "Bosley", "Bosman", "Boss", "Bost", "Bostic", "Bostick", "Boston", "Boswell", "Boudreaux", "Bouie", "Bouldin", "Boulware", "Bounds", "Bourgeois", "Bourne", "Boutte", "Bouttie", "Bow", "Bowden", "Bowdry", "Bowe", "Bowen", "Bowens", "Bowers", "Bowie", "Bowles", "Bowling", "Bowman", "Bowmer", "Bowser", "Box", "Boxhey", "Boxley", "Boyce", "Boyd", "Boyer", "Boykin", "Boykins", "Boyland", "Boyle", "Boynton", "Bozeman", "Brabham", "Bracey", "Brackett", "Bracy", "Braddy", "Braden", "Bradford", "Bradley", "Bradshaw", "Brady", "Bragg", "Braggs", "Braithwaite", "Branch", "Brand", "Brandican", "Brandon", "Branham", "Brannon", "Branson", "Brant", "Brantley", "Braswell", "Bratcher", "Brathwaite", "Bratton", "Braveboy", "Braxton", "Bray", "Brayboy", "Braziel", "Brazil", "Breaux", "Breckenridge", "Breedlove", "Breen", "Breland", "Brent", "Brevard", "Brewer", "Brewington", "Brewster", "Brewton", "Brice", "Brickhouse", "Bridgeforth", "Bridgeman", "Bridges", "Bridgewater", "Briggs", "Brigham", "Bright", "Briley", "Brim", "Brinkley", "Brinson", "Brisco", "Briscoe", "Brister", "Bristol", "Bristow", "Britt", "Brittingham", "Britton", "Broaden", "Broadnax", "Broadus", "Broadwater", "Broadway", "Broady", "Brock", "Brockington", "Brockman", "Brodie", "Brogdon", "Bronson", "Brookins", "Brooks", "Broom", "Broome", "Broomfield", "Brothers", "Broughton", "Broussard", "Browder", "Brower", "Brown", "Browne", "Browner", "Browning", "Brownlee", "Broxton", "Bruce", "Brumejum", "Brumfield", "Brundidge", "Bruner", "Bruno", "Brunson", "Bruton", "Brutus", "Bryan", "Bryant", "Bryson", "Buchanan", "Buck", "Buckley", "Buckner", "Buffington", "Bufford", "Buford", "Bugg", "Buggs", "Buie", "Bull", "Bullard", "Bullock", "Bumphus", "Bunch", "Bunday", "Bundy", "Bunn", "Bunting", "Bunton", "Burch", "Burden", "Burdette", "Burge", "Burgess", "Burke", "Burkes", "Burkett", "Burkhalter", "Burks", "Burleson", "Burley", "Burnett", "Burnette", "Burney", "Burnley", "Burns", "Burnside", "Burough", "Burr", "Burrell", "Burris", "Burroughs", "Burrow", "Burrows", "Burrus", "Burse", "Burt", "Burton", "Burts", "Burwell", "Busby", "Bush", "Bushnell", "Bushrod", "Bussey", "Busy", "Butcher", "Butler", "Butts", "Buxton", "Byars", "Byas", "Byers", "Bynes", "Bynoe", "Bynum", "Byrd", "Byrdsong", "Byron", "Cabbagestalk", "Cade", "Cadet", "Caesar", "Caffey", "Cage", "Cager", "Cain", "Caine", "Calder", "Caldwell", "Calhoun", "Calixte", "Callaham", "Callahan", "Callands", "Callaway", "Callender", "Calloway", "Calmese", "Calvert", "Calvin", "Camara", "Cameron", "Camp", "Campbell", "Camper", "Canada", "Canady", "Cane", "Cannady", "Cannon", "Cantrell", "Canty", "Capers", "Caraway", "Card", "Cardwell", "Carey", "Cargill", "Carlisle", "Carlton", "Carmichael", "Carmon", "Carmouche", "Carnes", "Carney", "Carothers", "Carpenter", "Carr", "Carraway", "Carrier", "Carrington", "Carroll", "Carruthers", "Carson", "Carswell", "Carter", "Carthan", "Cartwright", "Carty", "Caruthers", "Carver", "Cary", "Case", "Casey", "Cash", "Cashaw", "Casimir", "Cason", "Cassell", "Cassidy", "Castille", "Castillo", "Castle", "Castleberry", "Caston", "Castro", "Catchings", "Cater", "Cates", "Cathey", "Cato", "Caudle", "Cauley", "Causey", "Cauthen", "Cauther", "Cauthon", "Cave", "Caver", "Ceasar", "Ceaser", "Celestin", "Celestine", "Cephas", "Cephus", "Cesar", "Chadwick", "Chalmers", "Chamberlain", "Chambers", "Chambliss", "Champagne", "Champion", "Chance", "Chandler", "Chaney", "Chaplin", "Chapman", "Chappell", "Chappelle", "Chapple", "Charity", "Charles", "Charleston", "Charlot", "Charlton", "Chase", "Chatman", "Chatmon", "Chavers", "Chavis", "Cheatham", "Cheatom", "Cheek", "Cheeks", "Cheeseboro", "Chenault", "Cherry", "Chery", "Chester", "Chestnut", "Chevalier", "Chevis", "Chew", "Childers", "Childress", "Childs", "Chiles", "Chillis", "Chin", "Chinn", "Chisholm", "Chisley", "Chism", "Chisolm", "Choice", "Christian", "Christie", "Christmas", "Christopher", "Church", "Churchwell", "Churton", "Cisco", "Cistrunk", "Citizen", "Clack", "Claiborne", "Clanton", "Clardy", "Clark", "Clarke", "Clarkson", "Clary", "Claude", "Claves", "Claxton", "Clay", "Clayborn", "Clayborne", "Claybrooks", "Clayton", "Claytor", "Cleaves", "Clegg", "Clement", "Clements", "Clemmons", "Clemons", "Cleveland", "Clifford", "Clifton", "Clincy", "Cline", "Clinkscales", "Clinton", "Cloud", "Clyburn", "Coachman", "Coakley", "Coates", "Coats", "Coaxum", "Cobb", "Cobbin", "Cobbins", "Cobbs", "Coburn", "Cochran", "Cockerham", "Cockran", "Cockrell", "Cody", "Coe", "Cofer", "Coffee", "Coffey", "Cofield", "Cogdell", "Coggins", "Cohen", "Coker", "Colbert", "Cole", "Coleman", "Coles", "Coley", "Colley", "Collier", "Collins", "Colman", "Colon", "Colquitt", "Colson", "Colston", "Colter", "Colvin", "Combess", "Combs", "Comeaux", "Comer", "Compton", "Conaway", "Cone", "Conerly", "Coney", "Conley", "Connell", "Conner", "Connor", "Conrad", "Constant", "Contee", "Conteh", "Conway", "Conwell", "Conyers", "Cook", "Cooke", "Cooks", "Cooksey", "Cooley", "Coombs", "Cooper", "Cooperwood", "Copeland", "Copes", "Coppage", "Copper", "Corbett", "Corbin", "Corbitt", "Core", "Corey", "Corley", "Cormier", "Corn", "Cornelius", "Cornell", "Cornet", "Cornish", "Cosby", "Cosey", "Cosper", "Coston", "Cotanch", "Cotten", "Cottingham", "Cottman", "Cotton", "Cottrell", "Couch", "Coulter", "Council", "Countee", "Counts", "Coursey", "Courtney", "Cousar", "Cousin", "Cousins", "Covington", "Cowan", "Cowans", "Coward", "Cowart", "Cox", "Coy", "Cozart", "Cozens", "Craddock", "Craft", "Craig", "Craighead", "Crain", "Crane", "Cranford", "Crater", "Craven", "Crawford", "Crawley", "Crayton", "Credle", "Creighton", "Crenshaw", "Crew", "Crews", "Cribbs", "Crisp", "Criss", "Criswell", "Crittenden", "Crittendon", "Crocker", "Crockett", "Croft", "Cromartie", "Cromer", "Cromwell", "Crook", "Crooks", "Croom", "Crooms", "Crosby", "Cross", "Crossley", "Crouch", "Crowder", "Crowe", "Crowell", "Crowley", "Crudup", "Cruell", "Crum", "Crumble", "Crumbley", "Crump", "Crumpton", "Cruse", "Crutcher", "Crutchfield", "Cruz", "Cubbins", "Cudjo", "Cudjoe", "Cuff", "Cuffee", "Cuffie", "Culberson", "Culbreath", "Cullins", "Culp", "Culpepper", "Culver", "Cumberbatch", "Cumbo", "Cummings", "Cummins", "Cunningham", "Cureton", "Curle", "Curley", "Currie", "Curry", "Curtis", "Custalow", "Custis", "Cuthbertson", "Cutler", "Cuttillo", "Cuttino", "Cuyler", "Cypress", "Cyrus", "D'Arcy", "Dabney", "Dacosta", "Dade", "Dailey", "Daily", "Dale", "Dales", "Daley", "Dallas", "Dalton", "Daly", "Damon", "Dance", "Dancer", "Dancy", "Dandridge", "Dangerfield", "Daniel", "Daniels", "Danner", "Dansby", "Dantzler", "Danzy", "Darby", "Darden", "Dargan", "Darling", "Darnell", "Darrisaw", "Dash", "Datcher", "Daugherty", "Daughtry", "Davenport", "Daves", "David", "Davidson", "Davie", "Davies", "Davis", "Davison", "Dawes", "Dawkins", "Dawson", "Day", "Daye", "Days", "Deal", "Dean", "Deans", "Dear", "Deas", "Deberry", "DeBerry", "Debnam", "Debose", "Debrix", "Dedeaux", "Dees", "Degrate", "Dejean", "Delaine", "Delaney", "Delbridge", "Delk", "Dell", "Deloach", "Deloatch", "Deloney", "Delva", "DeMarcus", "Demby", "Demery", "DeMilo", "Demps", "Dempsey", "Dendy", "Denham", "Denis", "Denmark", "Dennard", "Dennis", "Dennison", "Dennum", "Denny", "Denson", "Dent", "Denton", "Deramus", "DeRamus", "Derosario", "DeRossett", "Derrick", "Derry", "DeShazer", "DeShazor", "Deshields", "DeShields", "Desir", "Devaughn", "Deveaux", "Devine", "Devore", "Devreaux", "Dew", "Dewalt", "Dewberry", "Dewitt", "Dews", "Dexter", "Deyon", "Dial", "Diallo", "Diamond", "Dias", "Diaz", "Dickens", "Dickerson", "Dickey", "Dickinson", "Dicks", "Dickson", "Diggins", "Diggs", "Dildy", "Dill", "Dillard", "Dillon", "Dilworth", "Dingle", "Dinkins", "Diop", "Dismuke", "Dismun", "Dix", "Dixon", "Dixson", "Doakes", "Dobbins", "Dobbs", "Dobson", "Doby", "Dockery", "Doctor", "Dodd", "Dodson", "Doe", "Dogan", "Doggett", "Dolby", "Dominique", "Donahue", "Donald", "Donaldson", "Donathan", "Donelson", "Dones", "Donnell", "Dooley", "Dorn", "Dorris", "Dorsett", "Dorsey", "Dortch", "Doss", "Dotson", "Doty", "Doucet", "Doughty", "Douglas", "Douglass", "Dove", "Dover", "Dow", "Dowd", "Dowdell", "Dowdy", "Dowe", "Dowell", "Dowling", "Downer", "Downey", "Downing", "Downs", "Doyle", "Dozier", "Drain", "Drake", "Drakeford", "Draper", "Draughn", "Drayton", "Dredden", "Drew", "Driggers", "Dring", "Driver", "Drumgold", "Drummer", "Drummond", "Drury", "Dublin", "Dubois", "Dubose", "Duckett", "Ducksworth", "Duckworth", "Ducre", "Dudley", "Duff", "Duffy", "Dugas", "Dugger", "Duhart", "Duhon", "Duke", "Dukes", "Dula", "Dulaney", "Dumas", "Dunbar", "Duncan", "Dungee", "Dungill", "Dunham", "Dunigan", "Dunkley", "Dunlap", "Dunlop", "Dunmore", "Dunn", "Dunning", "Dunson", "Dunstan", "Dunston", "Duplessis", "Dupont", "Dupree", "Durant", "Durden", "Duren", "Durham", "Durr", "Dutchfield", "Duval", "Duvall", "Dwyer", "Dye", "Dyer", "Dykes", "Dyson", "Eaddy", "Eady", "Eaglin", "Ealey", "Ealy", "Earl", "Earle", "Earley", "Earls", "Early", "Earvin", "Easley", "Eason", "East", "Easter", "Easterling", "Easton", "Eatmon", "Eaton", "Eaves", "Ebanks", "Eberhart", "Ebron", "Echols", "Ector", "Eddings", "Eddington", "Eddins", "Edgar", "Edge", "Edgerson", "Edgerton", "Edison", "Edley", "Edmond", "Edmonds", "Edmondson", "Edmonson", "Edmunds", "Edouard", "Edward", "Edwards", "Eggleston", "Eiland", "Elam", "Elamin", "Elder", "Eldridge", "Eleby", "Eley", "Elias", "Elie", "Elkins", "Ellerbe", "Ellington", "Elliot", "Elliott", "Ellis", "Ellison", "Elmore", "Elston", "Ely", "Emanuel", "Embry", "Emerson", "Emery", "Emmanuel", "Emory", "England", "English", "Engram", "Ennis", "Enoch", "Epperson", "Epps", "Erby", "Erink", "Ervin", "Erving", "Erwin", "Esaw", "Eskridge", "Espree", "Essex", "Estell", "Ester", "Esters", "Estes", "Etheridge", "Ethridge", "Etienne", "Eubanks", "Eugene", "Evans", "Everett", "Everette", "Everson", "Ewell", "Ewing", "Exum", "Ezell", "Facey", "Fagan", "Faggott", "Fails", "Fain", "Fair", "Fairley", "Faison", "Falls", "Fambro", "Fanning", "Fant", "Fantroy", "Farah", "Farley", "Farmer", "Faro", "Farr", "Farrar", "Farrell", "Farrington", "Farris", "Farrow", "Farthing", "Faulcon", "Faulk", "Faulkner", "Fauntleroy", "Faust", "Favors", "Fayson", "Feagin", "Fears", "Feaster", "Featherstone", "Fedd", "Feggins", "Felder", "Felix", "Fells", "Felton", "Fenderson", "Fennell", "Fenner", "Fenton", "Fenwick", "Ferdinand", "Ferebee", "Ferguson", "Fernandes", "Fernandez", "Ferrell", "Few", "Field", "Fielder", "Fielding", "Fields", "Figgs", "Figures", "Fikes", "Filsaime", "Finch", "Fincher", "Findley", "Finister", "Finklea", "Finley", "Finn", "Finney", "Finnie", "Fisher", "Fitch", "Fitchue", "Fitts", "Fitzgerald", "Fitzpatrick", "Flagg", "Flakes", "Flanagan", "Fleming", "Flemings", "Flemming", "Fletcher", "Flickin", "Flint", "Flood", "Flora", "Florence", "Flores", "Flournoy", "Flowers", "Floyd", "Fludd", "Fluellen", "Fluker", "Flynn", "Fobbs", "Fogg", "Foggie", "Fogle", "Foley", "Folks", "Fontaine", "Fontenette", "Fontenot", "Fonville", "Fooks", "Foote", "Footman", "Forbes", "Ford", "Forde", "Fordham", "Foreman", "Forest", "Forman", "Forney", "Fornis", "Forrest", "Forrester", "Fort", "Forte", "Fortenberry", "Fortson", "Fortune", "Foster", "Foston", "Fountain", "Foust", "Fowler", "Fowlkes", "Fox", "Foxworth", "Foxx", "Foy", "Foye", "Fraction", "France", "Francis", "Francisco", "Francois", "Frank", "Franklin", "Franks", "Fraser", "Frasier", "Frazer", "Frazier", "Frederick", "Fredericks", "Fredrick", "Free", "Freeland", "Freelon", "Freeman", "French", "Friday", "Friend", "Frierson", "Frink", "Frisby", "Frison", "Frizzell", "Frost", "Fry", "Fryar", "Frye", "Fryer", "Fryson", "Fudge", "Fulcher", "Fullam", "Fuller", "Fullwood", "Fulmore", "Fulton", "Fultz", "Funches", "Funchess", "Funderburk", "Fuqua", "Furlow", "Futch", "Futrell", "Fuzmore", "Gabriel", "Gadberry", "Gaddis", "Gaddy", "Gadison", "Gadsden", "Gadson", "Gaffney", "Gage", "Gaillard", "Gailliard", "Gainer", "Gaines", "Gainey", "Gaither", "Galbreath", "Gale", "Gales", "Gallimore", "Gallman", "Gallon", "Galloway", "Gamble", "Gambrell", "Gamby", "Gammage", "Gandy", "Gant", "Gantt", "Garcia", "Garden", "Gardener", "Gardiner", "Gardner", "Garland", "Garmon", "Garner", "Garnes", "Garnett", "Garrett", "Garrick", "Garris", "Garrison", "Garth", "Garvin", "Gary", "Gaskin", "Gaskins", "Gaston", "Gates", "Gatewood", "Gathers", "Gatlin", "Gatling", "Gatson", "Gause", "Gauthier", "Gavin", "Gay", "Gayden", "Gaye", "Gayle", "Gayles", "Gaymon", "Gaynor", "Gean", "Geathers", "Gee", "Geiger", "Generette", "Gentry", "George", "Georges", "Gerald", "Germain", "German", "Germany", "Geter", "Gethers", "Ghant", "Ghee", "Gholar", "Gholson", "Gholston", "Ghoston", "Gibbons", "Gibbs", "Gibson", "Giddens", "Giddings", "Gilbert", "Gilchrist", "Giles", "Gilford", "Gilkey", "Gill", "Gillard", "Gillespie", "Gillett", "Gillette", "Gilliam", "Gilliard", "Gillis", "Gills", "Gillum", "Gilmer", "Gilmore", "Gilyard", "Ginn", "Ginyard", "Gipson", "Gist", "Gittens", "Givens", "Gladden", "Gladney", "Glanton", "Glasco", "Glasgow", "Glasper", "Glaspie", "Glass", "Glaze", "Glears", "Gleaton", "Glenn", "Glover", "Godbolt", "Goddard", "Godett", "Godfrey", "Godley", "Godwin", "Goens", "Goff", "Goffney", "Goggins", "Goheen", "Goin", "Goines", "Going", "Goings", "Goins", "Golden", "Golding", "Goldman", "Goldsby", "Goldsmith", "Goldston", "Golson", "Golston", "Gomes", "Gomez", "Gonsolin", "Gonzales", "Gonzalez", "Gooch", "Good", "Goodall", "Goode", "Gooden", "Gooding", "Goodloe", "Goodlow", "Goodman", "Goodrich", "Goodrum", "Goods", "Goodson", "Goodwin", "Goodwyn", "Goolsby", "Goosby", "Gordan", "Gordon", "Gordy", "Gore", "Goree", "Gorham", "Gorman", "Goshay", "Goss", "Gossett", "Goudeau", "Gough", "Gould", "Gourdine", "Govan", "Gowdy", "Gowen", "Gowens", "Gowins", "Grace", "Grady", "Graham", "Granberry", "Grandberry", "Granderson", "Grandison", "Granger", "Grant", "Grantham", "Grantum", "Granville", "Grate", "Gravely", "Graves", "Gray", "Grayer", "Grays", "Grayson", "Greathouse", "Greaves", "Green", "Greenberry", "Greene", "Greenfield", "Greenidge", "Greenleaf", "Greenlee", "Greenwood", "Greer", "Gregg", "Greggs", "Gregory", "Gresham", "Grey", "Grice", "Grier", "Griffen", "Griffey", "Griffie", "Griffin", "Griffith", "Griffiths", "Griggs", "Grigsby", "Grimes", "Grimsley", "Gripper", "Grisby", "Grissett", "Grissom", "Groce", "Grogan", "Groom", "Grooms", "Gross", "Grove", "Grover", "Groves", "Grubbs", "Grundy", "Guenon", "Guerrier", "Guesnon", "Guess", "Guest", "Guice", "Guidry", "Guilford", "Guillaume", "Guillory", "Guinn", "Guinyard", "Gullette", "Gulley", "Gumbs", "Gunn", "Gunter", "Gurley", "Guthrie", "Guy", "Guyton", "Gwinn", "Gwyn", "Gwynn", "Habersham", "Hackett", "Hackney", "Hadley", "Hadnot", "Hagan", "Hagans", "Haggerty", "Haggins", "Hagins", "Hagler", "Hagood", "Haigler", "Haile", "Hailey", "Haines", "Hair", "Hairston", "Haith", "Haithcock", "Hale", "Hales", "Haley", "Haliburton", "Hall", "Halley", "Halliburton", "Hallman", "Halsey", "Ham", "Hambrick", "Hamer", "Hamilton", "Hamlet", "Hamlett", "Hamlin", "Hamm", "Hammett", "Hammock", "Hammond", "Hammonds", "Hammons", "Hampton", "Hancock", "Hand", "Handley", "Handy", "Hanes", "Haney", "Hankerson", "Hankins", "Hanks", "Hanley", "Hanna", "Hannah", "Hannon", "Hanson", "Harbin", "Hardaway", "Hardeman", "Harden", "Hardge", "Hardiman", "Hardin", "Harding", "Hardison", "Hardman", "Hardmon", "Hardnett", "Hardrick", "Hardwell", "Hardwick", "Hardy", "Hare", "Harewood", "Hargett", "Hargrave", "Hargrove", "Hargrow", "Hariston", "Harkless", "Harlan", "Harley", "Harmon", "Harold", "Harp", "Harper", "Harrell", "Harrigan", "Harrington", "Harris", "Harrison", "Harrod", "Harry", "Harshaw", "Hart", "Hartfield", "Hartless", "Hartley", "Hartman", "Hartsfield", "Hartwell", "Harvell", "Harvey", "Harvin", "Harwell", "Hasan", "Hasberry", "Haskins", "Hassan", "Hassell", "Hastings", "Hatch", "Hatcher", "Hatchett", "Hatfield", "Hathaway", "Hatten", "Hatter", "Hatton", "Haugabook", "Haughton", "Hawes", "Hawk", "Hawkins", "Hawley", "Haws", "Hawthorne", "Hay", "Hayden", "Hayes", "Haygood", "Haymer", "Haymon", "Haynes", "Haynesworth", "Haynie", "Hays", "Hayward", "Haywood", "Hazel", "Hazelwood", "Hazzard", "Head", "Headen", "Headley", "Heady", "Heal", "Heard", "Hearn", "Hearns", "Heath", "Hebert", "Hebron", "Heckstall", "Hector", "Hedgepeth", "Helaire", "Helm", "Helms", "Helton", "Hemby", "Hemingway", "Hemphill", "Henderson", "Hendrick", "Hendricks", "Hendrix", "Henley", "Henry", "Hensley", "Henson", "Henton", "Hepburn", "Herbert", "Herd", "Herdon", "Hereford", "Herman", "Hernandez", "Herndon", "Heron", "Herring", "Herrington", "Herron", "Hervey", "Hester", "Hewett", "Hewitt", "Hewlett", "Hewson", "Heyward", "Hibbert", "Hibbler", "Hickerson", "Hickey", "Hickman", "Hickmon", "Hicks", "Hickson", "Higginbotham", "Higgins", "Higgs", "High", "Highsmith", "Hightower", "Hilaire", "Hildreth", "Hill", "Hillard", "Hilliard", "Hillman", "Hills", "Hilson", "Hilton", "Hinds", "Hines", "Hinkle", "Hinnant", "Hinson", "Hinton", "Hitchens", "Hite", "Hiter", "Hoard", "Hobbs", "Hobdy", "Hobson", "Hockaday", "Hodge", "Hodges", "Hodnett", "Hoffman", "Hogan", "Hogans", "Hogg", "Hogue", "Hoke", "Holbert", "Holbrook", "Holcomb", "Holcombe", "Holden", "Holder", "Holiday", "Holifield", "Holland", "Holley", "Holliday", "Hollie", "Holliman", "Hollinger", "Hollingsworth", "Hollins", "Hollis", "Holloman", "Holloway", "Hollowell", "Holly", "Holman", "Holmes", "Holmon", "Holness", "Holsey", "Holsome", "Holston", "Holt", "Holton", "Honesty", "Honore", "Hood", "Hooker", "Hookfin", "Hooks", "Hoomes", "Hooper", "Hoover", "Hope", "Hopkins", "Hopper", "Hopson", "Horace", "Horn", "Horne", "Hornsby", "Horsey", "Horsley", "Horton", "Hosey", "Hoskin", "Hoskins", "Hough", "House", "Houser", "Houston", "Howard", "Howe", "Howell", "Howie", "Howze", "Hoyle", "Hubbard", "Hubert", "Huddleston", "Hudgins", "Hudson", "Huelin", "Huey", "Huff", "Huffman", "Hugee", "Huggins", "Hughes", "Hughey", "Hughley", "Huguley", "Hull", "Humbles", "Humes", "Humphrey", "Humphries", "Hundley", "Hunley", "Hunt", "Hunte", "Hunter", "Huntley", "Hurd", "Hurdle", "Hurley", "Hurst", "Hurt", "Husband", "Hussein", "Huston", "Hutcherson", "Hutchins", "Hutchinson", "Hutchison", "Hutson", "Hutton", "Hyatt", "Hyde", "Hylton", "Hyman", "Hymes", "Hymon", "Hypolite", "Hyppolite", "Ibrahim", "Ingram", "Inman", "Innes", "Inniss", "Innocent", "Irby", "Ireland", "Irons", "Irvin", "Irving", "Irwin", "Isaac", "Isaacs", "Isom", "Israel", "Iverson", "Ivery", "Ivey", "Ivory", "Ivy", "Jack", "Jackman", "Jacks", "Jackson", "Jacob", "Jacobs", "Jacques", "Jalloh", "Jama", "Jamerson", "James", "Jameson", "Jamison", "January", "Jarmon", "Jarrell", "Jarrett", "Jarvis", "Jasmin", "Jason", "Jasper", "Jay", "Jean", "Jeanbaptiste", "Jeancharles", "Jeanfrancois", "Jeanjacques", "Jeanlouis", "Jeanpierre", "Jeanty", "Jefferies", "Jeffers", "Jefferson", "Jeffery", "Jeffrey", "Jeffries", "Jelks", "Jemison", "Jenkins", "Jennings", "Jernigan", "Jerome", "Jerry", "Jessie", "Jessup", "Jester", "Jeter", "Jett", "Jewel", "Jewell", "Jiggetts", "Jiles", "Jimerson", "Jimeson", "Jimmerson", "Joe", "John", "Johnigan", "Johns", "Johnson", "Johnston", "Joiner", "Jointer", "Jolly", "Jolson", "Jonas", "Jone", "Jones", "Jonson", "Joplin", "Jordan", "Jordon", "Joseph", "Josey", "Joshua", "Joubert", "Joy", "Joyce", "Joyner", "Judd", "Judge", "Judkins", "Jules", "Julian", "Julien", "Julius", "Jumper", "June", "Juniel", "Junior", "Junious", "Justice", "Kamara", "Kane", "Kates", "Kay", "Kearney", "Kearse", "Keaton", "Kee", "Keel", "Keeling", "Keels", "Keemer", "Keen", "Keene", "Keeton", "Keith", "Keitt", "Kellam", "Keller", "Kelley", "Kellogg", "Kellum", "Kelly", "Kelsey", "Kemp", "Kendall", "Kendrick", "Kendricks", "Kennard", "Kennebrew", "Kennedy", "Kenner", "Kenney", "Kennon", "Kenny", "Kenon", "Kent", "Kerr", "Kersey", "Kershaw", "Key", "Keyes", "Keys", "Keyton", "Khan", "Kidd", "Kilgore", "Killebrew", "Killings", "Killingsworth", "Kilpatrick", "Kimber", "Kimble", "Kimbrough", "Kinard", "Kincaid", "Kinchen", "Kindle", "Kindred", "King", "Kinlaw", "Kinnard", "Kinney", "Kinsey", "Kirby", "Kirk", "Kirkland", "Kirkpatrick", "Kirksey", "Kirkwood", "Kiser", "Kitchen", "Kitchens", "Kitt", "Kittrell", "Kizer", "Kizzie", "Knight", "Knighten", "Knighton", "Knightsen", "Knott", "Knowles", "Knowlin", "Knox", "Knuckles", "Koger", "Koonce", "Kornegay", "Koroma", "Kuykendall", "Kyle", "Kyles", "Lacey", "Lackey", "Lacour", "LaCour", "Lacy", "Laday", "Ladd", "Ladson", "Lafayette", "Lafleur", "Lafrance", "LaGon", "Lagrone", "Laguerre", "Laing", "Laird", "Lake", "Lakes", "Lamar", "Lamb", "Lambert", "Lamhan", "Lampkin", "Lampkins", "Lampley", "Lancaster", "Lance", "Land", "Landers", "Landrum", "Landry", "Landum", "Lane", "Laney", "Lang", "Langford", "Langley", "Langston", "Lanier", "Lankford", "Lansford", "Lantern", "Lark", "Larkin", "Larkins", "Larry", "Lashley", "Lassai", "Lassiter", "Laster", "Latham", "Lathan", "Lathon", "Latimer", "Latimore", "Latney", "Latson", "Lattimore", "Lauderdale", "Laurent", "Laury", "Lavalais", "Lavender", "Lavergne", "Law", "Lawhorn", "Lawler", "Lawrence", "Laws", "Lawson", "Lawton", "Lay", "Layne", "Layton", "Lea", "Leach", "Leak", "Leake", "Leaks", "Leary", "Leath", "Leathers", "Leatherwood", "Leavel", "Leavell", "Leblanc", "Leday", "Ledbetter", "Ledet", "Lee", "Leeks", "Leffall", "Leflore", "Leftwich", "Leger", "Legette", "Leggett", "Legrand", "Leigh", "Lemelle", "Lemon", "Lemons", "Lenard", "Lennon", "Lenoir", "Lenzy", "Leon", "Leonard", "Lephew", "Leroy", "Lesane", "Leslie", "Lester", "Lesure", "Lett", "Levels", "Leverett", "Leverette", "Levi", "Levine", "Leviner", "Levingston", "Levy", "Lewis", "Liberty", "Liddell", "Liggins", "Lightfoot", "Lightner", "Lighty", "Ligon", "Liles", "Lillard", "Lilly", "Lincoln", "Linder", "Lindo", "Lindsay", "Lindsey", "Linear", "Link", "Linton", "Linzy", "Lipford", "Lipscomb", "Lipsey", "Lish", "Lister", "Little", "Littlejohn", "Littles", "Littleton", "Lively", "Liverpool", "Livingston", "Lloyd", "Lock", "Locke", "Lockett", "Lockhart", "Locklear", "Lockley", "Lockridge", "Lockson", "Lockwood", "Locus", "Loflin", "Loftin", "Lofton", "Logan", "Loggins", "Logwood", "Lomax", "London", "Long", "Longmire", "Longo", "Looney", "Loper", "Lopes", "Lopez", "Lord", "Loston", "Lott", "Louis", "Louissaint", "Love", "Lovejoy", "Lovelace", "Loveless", "Lovell", "Lovely", "Lovett", "Loving", "Lowe", "Lowery", "Lowman", "Lowry", "Loyd", "Lubin", "Lucas", "Lucien", "Lucious", "Lucius", "Luck", "Luckett", "Luckey", "Lucky", "Lugrove", "Luke", "Lumpkin", "Lumpkins", "Lundy", "Lunsford", "Lusk", "Luster", "Luvert", "Lykes", "Lyle", "Lyles", "Lymon", "Lynch", "Lynn", "Lyon", "Lyons", "Lytle", "M'Coy", "Mabrey", "Mabry", "Mack", "Mackey", "Mackie", "Mackins", "Macklin", "Maclin", "Macon", "Madden", "Maddox", "Madison", "Madkins", "Magee", "Magwood", "Mahan", "Mahone", "Mahoney", "Mahorney", "Maiden", "Majette", "Major", "Majors", "Malcolm", "Malcom", "Mallard", "Mallett", "Mallory", "Malloy", "Malone", "Maloney", "Malveaux", "Mance", "Mangrum", "Mangum", "Manigault", "Manigo", "Manley", "Manlove", "Manly", "Mann", "Manning", "Manns", "Mansfield", "Manson", "Manuel", "Maple", "Mapp", "Marable", "Marble", "Marbley", "Marbury", "Marcelin", "March", "Marcus", "Marion", "Mark", "Markham", "Marks", "Marlow", "Marlowe", "Marrow", "Mars", "Marsh", "Marshall", "Martin", "Martinez", "Maryland", "Marzett", "Marzette", "Mash", "Mason", "Massen", "Massenburg", "Massey", "Massiah", "Massie", "Mathews", "Mathieu", "Mathis", "Matlock", "Matthew", "Matthews", "Mattison", "Mattox", "Mauldin", "Maurice", "Maxey", "Maxie", "Maxwell", "May", "Mayberry", "Maye", "Mayers", "Mayes", "Mayfield", "Maynard", "Maynor", "Mayo", "Mays", "Mayweather", "Mazique", "Mazyck", "McAdams", "McAdoo", "McAfee", "McAlister", "McAllister", "McAlster", "McArthur", "McBean", "McBee", "McBeth", "McBride", "McCaa", "McCain", "McCall", "McCalla", "McCallum", "McCampbell", "McCann", "McCants", "McCargo", "McCarter", "McCarthy", "McCarty", "McCary", "McCaskill", "McCaster", "McCauley", "McClain", "McClam", "McClary", "McClean", "McCleary", "McClellan", "McClelland", "McClendon", "McClenton", "McCline", "McClinton", "McCloud", "McClure", "McCollough", "McCollum", "McCombs", "McConico", "McConnell", "McCord", "McCorkle", "McCormick", "McCorvey", "McCovery", "McCowan", "McCoy", "McCrae", "McCraney", "McCrary", "McCray", "McCrea", "McCreary", "McCree", "McCrimmon", "McCuller", "McCullough", "McCullum", "McCurdy", "McCutchen", "McCutcheon", "McDade", "McDaniel", "McDaniels", "McDay", "McDonald", "McDougal", "McDougald", "McDouggle", "McDougle", "McDowell", "McDuffie", "McDuffy", "McEachern", "McEachin", "McElrath", "McElroy", "McElveen", "McEwen", "Mcfadden", "McFadden", "McFarland", "McFarlane", "McFarlin", "McFerrin", "McGary", "McGee", "McGhee", "McGill", "McGinnis", "McGowan", "McGraw", "McGregor", "McGrew", "McGriff", "McGruder", "McGuire", "McHenry", "McIlwain", "McInnis", "McIntosh", "McIntyre", "McIver", "McKay", "McKee", "McKeever", "McKelvey", "McKenney", "McKenzie", "McKessan", "McKever", "McKie", "McKinley", "McKinney", "McKinnie", "McKinnon", "McKinzie", "McKissick", "McKiver", "McKnight", "McKoy", "McLain", "McLaughlin", "McLaurin", "McLean", "McLemore", "McLendon", "McLeod", "McLeroy", "McLin", "McMahon", "McManus", "McMichael", "McMillan", "McMiller", "McMillian", "McMillion", "McMillon", "McMorris", "McMullen", "McMurray", "McNair", "McNary", "McNeal", "McNealy", "McNeely", "McNeil", "McNeill", "McPhail", "McPhatter", "McPherson", "McQueen", "McQuiller", "McRae", "McReynolds", "McSwain", "McWhite", "McWhorter", "McWilliams", "McZeal", "Meade", "Meadows", "Mealing", "Mealy", "Means", "Mebane", "Medina", "Medley", "Medlock", "Meekins", "Meeks", "Meggett", "Meggs", "Melancon", "Melson", "Melton", "Melvin", "Mendez", "Menefee", "Menifee", "Mensah", "Mention", "Mercadel", "Mercer", "Merchant", "Meredith", "Merkerson", "Merrell", "Merrick", "Merrill", "Merritt", "Merriweather", "Metcalf", "Metoyer", "Meyers", "Michael", "Michel", "Mickens", "Mickey", "Mickle", "Mickles", "Middlebrook", "Middlebrooks", "Middleton", "Mike", "Mikell", "Milam", "Milan", "Milburn", "Miles", "Miley", "Milhouse", "Mill", "Millender", "Miller", "Milligan", "Milliner", "Millner", "Mills", "Milner", "Milton", "Mimms", "Mims", "Mincey", "Miner", "Mines", "Ming", "Mingo", "Minniefield", "Minnifield", "Minnis", "Minor", "Minter", "Minton", "Miskell", "Missouri", "Mister", "Mitchel", "Mitchell", "Mitchner", "Mitchum", "Mixon", "Mobley", "Mock", "Moffett", "Moffitt", "Mohamed", "Mohammed", "Moise", "Moment", "Moncrief", "Mondesir", "Mongom", "Monk", "Monoggin", "Monroe", "Montague", "Monteiro", "Montgomery", "Month", "Moody", "Moon", "Mooney", "Moore", "Moorehead", "Moorer", "Mooring", "Moorman", "Morales", "Moran", "Morant", "Mordick", "Morehead", "Moreland", "Morgan", "Morman", "Morning", "Morrell", "Morris", "Morrison", "Morrow", "Morse", "Morton", "Mosby", "Mose", "Moseley", "Mosely", "Moses", "Mosley", "Moss", "Moten", "Motley", "Moton", "Mott", "Motton", "Moultrie", "Moultry", "Mouton", "Mouzon", "Moye", "Moyer", "Mozee", "Mozingo", "Muckelroy", "Muhammad", "Mukes", "Muldrow", "Mullen", "Mullings", "Mullins", "Mumford", "Munday", "Mundy", "Munford", "Mungin", "Mungo", "Munn", "Munroe", "Muns", "Munson", "Murchison", "Murdock", "Murph", "Murphy", "Murray", "Murrell", "Murrow", "Murry", "Muse", "Musgrove", "Myers", "Myles", "Myrick", "Myricks", "Nabors", "Naismith", "Nall", "Nalls", "Nance", "Napier", "Napoleon", "Napper", "Narcisse", "Nash", "Nathan", "Nathaniel", "Nation", "Naylor", "Ndiaye", "Neal", "Nealy", "Ned", "Nedd", "Needham", "Neeley", "Neely", "Neil", "Nellum", "Nelms", "Neloms", "Nelson", "Nero", "Nesbit", "Nesbitt", "Nesmith", "Nettles", "Nevels", "Neville", "Newberry", "Newborn", "Newby", "Newell", "Newkirk", "Newman", "Newsom", "Newsome", "Newson", "Newte", "Newton", "Niccans", "Nicholas", "Nichols", "Nicholson", "Nickens", "Nickerson", "Nicks", "Nickson", "Nicolas", "Niles", "Nix", "Nixon", "Noble", "Nobles", "Noel", "Nolan", "Noland", "Nolen", "Norfleet", "Norman", "Norris", "North", "Northern", "Northington", "Norton", "Norwood", "Nowden", "Nowell", "Nowlin", "Nugent", "Nunley", "Nunn", "Nunnally", "Nurse", "Nutts", "Nwosu", "O'Banner", "O'Brien", "O'Bryant", "O'Connor", "O'Neal", "O'Neil", "Oakley", "Oates", "Oatis", "Oats", "Obama", "Obi", "Oden", "Odom", "Odoms", "Odum", "Odums", "Ogburn", "Oglesby", "Ogletree", "Okafor", "Okeke", "Okey", "Okoro", "Oldham", "Olds", "Oliphant", "Olive", "Oliver", "Olivier", "Ollie", "Ollison", "Omar", "Orange", "Orr", "Ortiz", "Osbey", "Osborn", "Osborne", "Osbourne", "Osby", "Osei", "Osman", "Otey", "Otis", "Otter", "Ousley", "Outland", "Outlaw", "Outley", "Overby", "Overstreet", "Overton", "Owen", "Owens", "Owusu", "Oxendine", "Pace", "Pack", "Packer", "Paden", "Padgett", "Page", "Pagee", "Paige", "Palmer", "Palmore", "Pankey", "Pannell", "Parham", "Paris", "Parish", "Parker", "Parkman", "Parks", "Parnell", "Paro", "Parr", "Parris", "Parrish", "Parrot", "Parrott", "Parson", "Parsons", "Partee", "Partlow", "Pascal", "Paschal", "Paschall", "Pasley", "Pass", "Passmore", "Pate", "Paterson", "Patillo", "Patrick", "Patten", "Patterson", "Patton", "Paul", "Pauling", "Paulk", "Paxton", "Paylor", "Payne", "Payton", "Peace", "Peacock", "Peak", "Peake", "Pearce", "Pearl", "Pearsall", "Pearson", "Peart", "Peavy", "Peay", "Peck", "Peebles", "Peek", "Peele", "Peeler", "Peeples", "Peete", "Pegram", "Pegues", "Peguese", "Pelzer", "Pemberton", "Pendarvis", "Pender", "Pendergass", "Pendergrass", "Pendleton", "Penn", "Pennington", "Penny", "Pennywell", "Penson", "People", "Peoples", "Peppers", "Percy", "Perdue", "Perez", "Perkins", "Pernell", "Perrin", "Perry", "Perryman", "Persaud", "Person", "Pete", "Peterkin", "Peters", "Peterson", "Petit", "Pettaway", "Petties", "Pettiford", "Pettigrew", "Pettis", "Pettiway", "Pettus", "Pettway", "Petty", "Peyton", "Pharr", "Phelps", "Phifer", "Philip", "Philippe", "Philips", "Phillip", "Phillips", "Philon", "Philpot", "Phinazee", "Phinisee", "Phipps", "Phoenix", "Pickens", "Pickett", "Pickney", "Pierce", "Pierre", "Pierrelouis", "Pierson", "Piggee", "Pilgrim", "Pina", "Pinchback", "Pinckney", "Pinder", "Pinkard", "Pinkins", "Pinkney", "Pinkston", "Pinn", "Pinnock", "Pinson", "Piper", "Pipkin", "Pipkins", "Pippens", "Pippins", "Pirtle", "Pitchford", "Pitre", "Pitt", "Pittman", "Pitts", "Platt", "Player", "Pleas", "Pleasant", "Pledger", "Plowden", "Plumly", "Plummer", "Plunkett", "Poe", "Poellnitz", "Pogue", "Poindexter", "Pointer", "Poke", "Poldo", "Polite", "Polk", "Pollard", "Pollock", "Pompey", "Ponder", "Pondexter", "Ponds", "Pool", "Poole", "Pope", "Porch", "Porche", "Porchia", "Poree", "Porter", "Porterfield", "Portions", "Portis", "Portiss", "Posey", "Posley", "Postell", "Poston", "Poteat", "Potter", "Potts", "Pough", "Poullard", "Pouncy", "Pounds", "Powe", "Powell", "Powers", "Poythress", "Pratcher", "Prater", "Prather", "Pratt", "Prayer", "Praylow", "Prejean", "Prescott", "Presha", "President", "Presley", "Press", "Pressley", "Pressman", "Preston", "Prevost", "Prewitt", "Price", "Prichard", "Pride", "Pridgen", "Priest", "Priester", "Primm", "Primus", "Prince", "Pringle", "Prioleau", "Pritchard", "Pritchet", "Pritchett", "Proby", "Proctor", "Profit", "Prophet", "Provost", "Prude", "Pruden", "Pruitt", "Pryce", "Pryor", "Puckett", "Pugh", "Pullen", "Pulley", "Pulliam", "Pullins", "Pullum", "Purcell", "Purdie", "Purifoy", "Purify", "Purnell", "Pursley", "Purvis", "Puryear", "Pye", "Pyles", "Quabner", "Quaid", "Qualls", "Quarles", "Quarterman", "Quashie", "Quattlebaum", "Queen", "Quick", "Quinn", "Rabb", "Rachal", "Radford", "Ragin", "Ragland", "Raglin", "Ragsdale", "Rahman", "Raiford", "Raines", "Rainey", "Rainge", "Rains", "Ralls", "Ralph", "Rambo", "Ramey", "Ramirez", "Ramos", "Ramsay", "Ramseur", "Ramsey", "Rand", "Randall", "Randle", "Randol", "Randolf", "Randolph", "Range", "Ranger", "Rankin", "Rankins", "Rann", "Ransaw", "Ransom", "Ransome", "Ranson", "Raper", "Raphael", "Rasberry", "Rascoe", "Rasheed", "Rashid", "Raspberry", "Ratcliff", "Ratliff", "Ravenell", "Rawlings", "Rawlins", "Rawlinson", "Rawls", "Ray", "Rayford", "Raymond", "Raynor", "Readus", "Reams", "Reaves", "Rector", "Redcross", "Redd", "Redden", "Reddic", "Reddick", "Redding", "Redman", "Redmon", "Redmond", "Reece", "Reed", "Reeder", "Reedy", "Reese", "Reeves", "Regis", "Register", "Reid", "Reliford", "Rembert", "Remy", "Rencher", "Render", "Rene", "Renfro", "Renfroe", "Respress", "Revell", "Revels", "Reyes", "Reynolds", "Rhinehart", "Rhoden", "Rhodes", "Rhone", "Rhymes", "Rice", "Rich", "Richard", "Richards", "Richardson", "Richburg", "Richey", "Richie", "Richmond", "Ricketts", "Rickman", "Ricks", "Riddick", "Riddle", "Rideaux", "Rideout", "Ridgeway", "Ridley", "Riggins", "Riggs", "Rigsby", "Riles", "Riley", "Ring", "Ringgold", "Ringo", "Ritchie", "Ritter", "Rivera", "Rivers", "Roach", "Roane", "Robb", "Robbins", "Roberson", "Robert", "Roberts", "Robertson", "Robins", "Robinson", "Robison", "Roby", "Rochelle", "Rochester", "Rock", "Rockett", "Roddy", "Rodgers", "Rodney", "Rodriguez", "Roe", "Roebuck", "Roger", "Rogers", "Roland", "Rolle", "Rollerson", "Rollins", "Romain", "Roman", "Rome", "Romero", "Rone", "Roney", "Rooks", "Roper", "Roquemore", "Rorex", "Rorie", "Rosario", "Roscoe", "Rose", "Roseboro", "Rosemond", "Rosier", "Ross", "Rosser", "Roulhac", "Rounds", "Roundtree", "Rountree", "Rouse", "Rousseau", "Rowan", "Rowe", "Rowell", "Rowland", "Roy", "Royal", "Royster", "Royston", "Rozar", "Rozier", "Rubin", "Rucker", "Rudd", "Rudolph", "Ruff", "Ruffin", "Ruffins", "Rufus", "Ruiz", "Rumph", "Runnels", "Rush", "Rushing", "Russ", "Russaw", "Russel", "Russell", "Ruth", "Rutherford", "Rutland", "Rutledge", "Ryals", "Ryan", "Ryans", "Sabb", "Sabree", "Saddler", "Sadler", "Saffold", "Safford", "Sain", "Saintil", "Salaam", "Sales", "Salley", "Salmon", "Salomon", "Salter", "Salters", "Sam", "Samanna", "Sample", "Sampson", "Sams", "Samuel", "Samuels", "Sanchez", "Sancho", "Sanderlin", "Sanders", "Sanderson", "Sandifer", "Sands", "Sane", "Sanford", "Sango", "Sangster", "Sankey", "Sanon", "Santee", "Santiago", "Santos", "Sapp", "Sargent", "Satchell", "Satterfield", "Satterwhite", "Saucier", "Sauls", "Saulsberry", "Saunders", "Savage", "Savoy", "Sawyer", "Sawyers", "Saxon", "Saxton", "Sayles", "Scaife", "Scales", "Scarborough", "Scarbrough", "Scarlett", "Scarver", "Schofield", "Scipio", "Scoggins", "Scott", "Scriven", "Scroggins", "Scruggs", "Scullark", "Scurry", "Seabron", "Seabrook", "Seabrooks", "Sealey", "Seals", "Sealy", "Searcy", "Searles", "Sears", "Seaton", "Seawood", "Seawright", "Seay", "Segro", "Seigers", "Selby", "Seldon", "Self", "Sellars", "Sellers", "Sells", "Semien", "Senegal", "Senior", "Sesay", "Session", "Sessions", "Sessoms", "Settle", "Settles", "Sevier", "Seward", "Sewell", "Sewer", "Sexton", "Seymore", "Seymour", "Shabazz", "Shackelford", "Shackleford", "Shade", "Shaffer", "Shakir", "Shands", "Shanklin", "Shanks", "Shannon", "Sharif", "Sharp", "Sharpe", "Sharpton", "Shavers", "Shaw", "Shealey", "Sheard", "Shears", "Sheffield", "Shegog", "Shelby", "Shell", "Shelley", "Shelly", "Shelton", "Shelvin", "Shepard", "Shephard", "Shepherd", "Sheppard", "Sheridan", "Sheriff", "Sherman", "Sherrill", "Sherrod", "Shields", "Shine", "Shipman", "Shipp", "Shirley", "Shivers", "Shockley", "Shoecraft", "Shoemaker", "Sholar", "Short", "Shorter", "Shorts", "Shoto", "Shoulders", "Showers", "Shropshire", "Shufford", "Shuford", "Shuler", "Shumate", "Shumpert", "Sias", "Sibley", "Sidberry", "Sidney", "Sier", "Sigg", "Sigler", "Silas", "Siler", "Sills", "Silva", "Silver", "Simeon", "Simien", "Simmon", "Simmonds", "Simmons", "Simms", "Simon", "Simons", "Simpkins", "Simpson", "Sims", "Sinclair", "Sinegal", "Singh", "Singletary", "Singleton", "Sinkfield", "Sinnamon", "Sinquefield", "Siplin", "Sipp", "Sisco", "Sistrunk", "Sivels", "Skeete", "Skelton", "Skinner", "Skipper", "Slack", "Slade", "Slappy", "Slater", "Slaton", "Slaughter", "Slaxton", "Slay", "Slayton", "Sledge", "Sloan", "Sloat", "Slocum", "Smack", "Small", "Smalley", "Smalls", "Smallwood", "Smart", "Smaw", "Smiley", "Smith", "Smoot", "Smothers", "Snead", "Sneed", "Snell", "Snelling", "Snider", "Snipes", "Snow", "Snowden", "Snyder", "Socia", "Soleleather", "Solomon", "Somana", "Somerville", "Sonnier", "Sorrell", "Sorrells", "Southall", "Southerland", "Southern", "Sowell", "Spain", "Spann", "Sparkman", "Sparks", "Sparrow", "Spates", "Spaulding", "Speaks", "Spear", "Spearman", "Spears", "Speed", "Speers", "Speight", "Speights", "Spell", "Speller", "Spellman", "Spells", "Spelman", "Spence", "Spencer", "Spicer", "Spikes", "Spiller", "Spinks", "Spinner", "Spires", "Spivey", "Spradley", "Spraggins", "Spratley", "Spratt", "Spriddle", "Spriggs", "Springer", "Springfield", "Springs", "Spruce", "Spruill", "Spurlock", "Square", "Squire", "Squires", "Stackhouse", "Stacy", "Stafford", "Staggers", "Staley", "Stalling", "Stallings", "Stallworth", "Stampley", "Stamps", "Stanback", "Stancil", "Standberry", "Standifer", "Stanfield", "Stanford", "Stanley", "Stanton", "Staples", "Stapleton", "Stark", "Starkey", "Starks", "Starling", "Starnes", "Starr", "Staten", "Staton", "Stclair", "Steadman", "Steed", "Steel", "Steele", "Steen", "Stegall", "Stennis", "Stenson", "Stephen", "Stephens", "Stephenson", "Stepney", "Steptoe", "Sterling", "Stern", "Stevens", "Stevenson", "Steverson", "Steward", "Stewart", "Stfleur", "Stigger", "Stiggers", "Stiles", "Still", "Stills", "Stinson", "Stirgus", "Stith", "Stitt", "Stjohn", "Stjulien", "Stlouis", "Stockard", "Stockton", "Stokes", "Stone", "Stoner", "Storey", "Story", "Stoudemire", "Stoudmire", "Stout", "Stovall", "Stover", "Stowe", "Stowers", "Strachan", "Strange", "Stratton", "Straughter", "Streater", "Stredick", "Stredit", "Street", "Streeter", "Stribling", "Strickland", "Stricklen", "Stricklin", "Stringer", "Stringfellow", "Stringfield", "Stroman", "Strong", "Strother", "Stroud", "Strozier", "Stuart", "Stubblefield", "Stubbs", "Stuckey", "Stukes", "Sturdivant", "Sturgis", "Styles", "Suber", "Suggs", "Sullivan", "Sumbry", "Sumler", "Sumlin", "Summers", "Summerville", "Sumner", "Sumpter", "Sumrell", "Sumter", "Sunket", "Surginer", "Surles", "Surratt", "Surrency", "Sutherland", "Sutphin", "Suttles", "Sutton", "Swaby", "Swain", "Swan", "Swanigan", "Swann", "Swanson", "Swayzer", "Sweat", "Sweeney", "Sweet", "Sweetin", "Sweeting", "Swift", "Swindell", "Swinney", "Swinson", "Swint", "Swinton", "Sydnor", "Sykes", "Sylvain", "Sylve", "Sylvester", "Symons", "Tabb", "Tabor", "Taborn", "Tabron", "Tademy", "Taft", "Tait", "Talbert", "Talbot", "Taliaferro", "Talley", "Talton", "Tanksley", "Tankson", "Tann", "Tanner", "Taplin", "Tapp", "Tarpley", "Tarrant", "Tart", "Tarver", "Tasby", "Tate", "Tatum", "Taylor", "Teague", "Teal", "Teamer", "Teasley", "Teel", "Tellis", "Temple", "Tennessee", "Tennyson", "Terrell", "Terry", "Tezeno", "Thacker", "Thames", "Tharpe", "Thaxton", "Theodore", "Theus", "Thibodeaux", "Thigpen", "Thomas", "Thomason", "Thompkins", "Thompson", "Thomson", "Thorn", "Thorne", "Thornhill", "Thornton", "Thorpe", "Thrash", "Thrasher", "Threadgil", "Threadgill", "Threats", "Threatt", "Thrower", "Thurman", "Thurmond", "Thurston", "Tibbs", "Tidwell", "Tiggs", "Tigner", "Tilghman", "Tiller", "Tillery", "Tilley", "Tillis", "Tillman", "Tillmon", "Timber", "Timberlake", "Timmons", "Tims", "Tindal", "Tinker", "Tinsley", "Tipton", "Tisby", "Tisdale", "Titus", "Tobias", "Tobin", "Todd", "Tolbert", "Tolefree", "Toler", "Toles", "Toliver", "Tolliver", "Tolson", "Tomlin", "Tomlinson", "Tompkins", "Toney", "Tookes", "Tooks", "Toombs", "Toomer", "Tootle", "Torain", "Torrence", "Torres", "Totten", "Toulson", "Toure", "Tousant", "Toussaint", "Towner", "Townes", "Towns", "Townsel", "Townsend", "Toyer", "Tracy", "Trahan", "Trammell", "Trapp", "Travers", "Travis", "Trawick", "Traylor", "Treadwell", "Trent", "Tribble", "Trice", "Triggs", "Trimble", "Triplett", "Tripp", "Trotman", "Trotter", "Troupe", "Troutman", "Troy", "Truesdale", "Truitt", "Truss", "Truth", "Tubbs", "Tubman", "Tuck", "Tucker", "Tuggle", "Tukes", "Tull", "Tulloch", "Tunstall", "Turk", "Turman", "Turnage", "Turner", "Turney", "Turnipseed", "Turpin", "Tutson", "Tutt", "Twine", "Twitty", "Twyman", "Tyler", "Tyner", "Tynes", "Tyre", "Tyree", "Tyson", "Tyus", "Uddyback", "Ulmer", "Ulysse", "Underdue", "Underwood", "Upchurch", "Upshaw", "Upshur", "Upton", "Urquhart", "Usher", "Ussery", "Utley", "Utsey", "Uzzell", "Vaden", "Vail", "Valentine", "Vanburen", "Vance", "Vandyke", "Vann", "Varnado", "Varnedore", "Varner", "Vasquez", "Vassall", "Vassell", "Vasser", "Vaughan", "Vaughn", "Vaughns", "Veal", "Veasley", "Vena", "Venable", "Veney", "Venie", "Venson", "Vereen", "Vernon", "Verrett", "Verty", "Vick", "Vickers", "Vickory", "Victor", "Victorian", "Viers", "Vincent", "Vines", "Vinson", "Virgil", "Viser", "Vital", "Waddell", "Waddy", "Wade", "Wadley", "Wafer", "Wagner", "Wainwright", "Waite", "Waiters", "Waites", "Wakefield", "Walcott", "Walden", "Waldon", "Waldron", "Walker", "Walkins", "Wall", "Wallace", "Waller", "Walls", "Walsh", "Walston", "Walter", "Walters", "Walton", "Wanzo", "Warburton", "Ward", "Wardlaw", "Wardlow", "Ware", "Warfield", "Waring", "Warner", "Warr", "Warren", "Warrick", "Wash", "Washington", "Washinton", "Waterman", "Waters", "Watford", "Watkins", "Watley", "Watlington", "Watson", "Watt", "Watters", "Watts", "Waugh", "Way", "Wayne", "Weary", "Weatherly", "Weathers", "Weathersby", "Weatherspoon", "Weaver", "Webb", "Webber", "Weber", "Webster", "Weddington", "Weeden", "Weekes", "Weekley", "Weeks", "Weems", "Weir", "Welch", "Welcome", "Weldon", "Wellington", "Wells", "Welsh", "Wesley", "Wesson", "West", "Westbrook", "Westbrooks", "Westley", "Westmoreland", "Weston", "Westry", "Whack", "Whaley", "Wharton", "Whatley", "Wheat", "Wheatley", "Wheaton", "Wheeler", "Whetstone", "Whidbee", "Whigham", "Whipple", "Whistler", "Whitaker", "White", "Whitehead", "Whitehurst", "Whitelow", "Whiten", "Whiters", "Whiteside", "Whitfield", "Whiting", "Whitley", "Whitlock", "Whitlow", "Whitman", "Whitmore", "Whitney", "Whitsett", "Whitson", "Whitt", "Whittaker", "Whitted", "Whitten", "Whittington", "Whittle", "Wholey", "Whye", "Whyte", "Wicker", "Wicks", "Wideman", "Wigfall", "Wiggins", "Wiggs", "Wilbert", "Wilbon", "Wilborn", "Wilbourn", "Wilburn", "Wilcher", "Wilcox", "Wilder", "Wiles", "Wiley", "Wilford", "Wilhite", "Wilkerson", "Wilkes", "Wilkins", "Wilkinson", "Wilks", "Willard", "William", "Williams", "Williamson", "Willie", "Williford", "Willingham", "Willis", "Willoughby", "Wills", "Willson", "Wilmore", "Wilridge", "Wilson", "Wiltshire", "Wiltz", "Wimberly", "Wimbish", "Wimbley", "Wimbush", "Wimes", "Winborn", "Winbush", "Winchester", "Winder", "Windham", "Windley", "Windom", "Winfield", "Winfrey", "Wingate", "Wingfield", "Wingo", "Winkfield", "Winn", "Winns", "Winslow", "Winstead", "Winston", "Wint", "Winters", "Wisdom", "Wise", "Wiseman", "Witcher", "Withers", "Witherspoon", "Witt", "Wofford", "Wolf", "Wolfe", "Womack", "Womble", "Wong", "Wongus", "Wood", "Woodall", "Woodard", "Woodberry", "Woodbury", "Wooden", "Woodford", "Woodfork", "Woodhouse", "Woodland", "Woodley", "Woodruff", "Woods", "Woodson", "Woodward", "Woody", "Wooley", "Woolfolk", "Woolfork", "Woolridge", "Woosley", "Wooten", "Word", "Wordlaw", "Workman", "Works", "Worley", "Wormley", "Worrell", "Worsham", "Worsley", "Wortham", "Worthen", "Worthington", "Worthy", "Woulard", "Wray", "Wren", "Wrice", "Wright", "Wyatt", "Wyche", "Wylie", "Wynn", "Wynne", "Wynter", "Wysinger", "X", "Yancey", "Yancy", "Yarber", "Yarborough", "Yarbrough", "Yates", "Yearby", "Yearwood", "Yeldell", "Yelder", "Yelverton", "York", "Youmans", "Young", "Youngblood", "Younger", "Yusuf", "Zachary", "Zachery", "Zackery", "Zanders", "Zeigler", "Zeno", "Ziegler", "Zimmerman", "Zinnerman", "Zollicoffer"]>> @@ -346,7 +346,7 @@ <<set setup.asianAmericanSlaveSurnames = ["Abad", "Abadilla", "Abalos", "Abaya", "Abbas", "Abbasi", "Abbott", "Abdul", "Abdullah", "Abe", "Abella", "Abellera", "Abesamis", "Abid", "Abraham", "Abuan", "Abueg", "Acharya", "Acierto", "Acob", "Acoba", "Acosta", "Acuna", "Adachi", "Adam", "Adams", "Adhikari", "Adriano", "Advani", "Advincula", "Afable", "Africa", "Aftab", "Afzal", "Agarwal", "Agbayani", "Agcaoili", "Agena", "Aggarwal", "Agha", "Agpaoa", "Agrawal", "Aguas", "Aguila", "Aguilar", "Aguinaldo", "Aguirre", "Aguon", "Agustin", "Ahamed", "Ahluwalia", "Ahmad", "Ahmed", "Ahn", "Ahsan", "Ahuja", "Ai", "Akagi", "Akamine", "Akana", "Akau", "Akbar", "Akhtar", "Akhter", "Aki", "Akimoto", "Akina", "Akiona", "Akiyama", "Akram", "Akter", "Akther", "Alam", "Alano", "Alarcon", "Alba", "Albano", "Albert", "Alberto", "Alcantara", "Alcaraz", "Aldana", "Alegre", "Alejandro", "Alejo", "Alex", "Alexander", "Alfaro", "Alfonso", "Ali", "Alikhan", "Alipio", "Allen", "Alli", "Allison", "Ally", "Almario", "Almazan", "Almeda", "Almeida", "Almonte", "Alo", "Alonzo", "Alvarado", "Alvarez", "Alvi", "Alviar", "Amador", "Amano", "Amante", "Amar", "Ambrosio", "Amin", "Amir", "Amjad", "An", "Anand", "Ancheta", "Andal", "Andaya", "Andersen", "Anderson", "Ando", "Andrada", "Andrade", "Andres", "Andrews", "Ang", "Angel", "Angeles", "Anjum", "Ann", "Ansari", "Anthony", "Antolin", "Antonio", "Antony", "Anwar", "Anzai", "Ao", "Aoki", "Aoyama", "Apilado", "Apo", "Apostol", "Aquino", "Ara", "Aragon", "Arai", "Arakaki", "Arakawa", "Araki", "Arana", "Aranas", "Aranda", "Araneta", "Arboleda", "Arca", "Arce", "Arceo", "Arciaga", "Arcilla", "Arellano", "Arenas", "Arevalo", "Arguelles", "Arias", "Arif", "Arima", "Arita", "Armstrong", "Arnold", "Arora", "Arreola", "Arriola", "Arroyo", "Arshad", "Arya", "Arzadon", "Asad", "Asada", "Asai", "Asano", "Asato", "Asghar", "Asher", "Ashraf", "Asif", "Asis", "Aslam", "Aspiras", "Asuncion", "Athwal", "Atienza", "Atkinson", "Atluri", "Atwal", "Au", "Augustine", "Aujla", "Aulakh", "Aung", "Aure", "Aurelio", "Austin", "Austria", "Auyeung", "Avila", "Aviles", "Awan", "Ayala", "Aye", "Ayson", "Ayub", "Azad", "Azam", "Azhar", "Aziz", "Azuma", "Baba", "Babar", "Babauta", "Babu", "Baby", "Bacani", "Baccam", "Bacchus", "Bach", "Back", "Baclig", "Bacon", "Badua", "Bae", "Baek", "Bagga", "Baguio", "Bahl", "Bai", "Baig", "Baik", "Bailey", "Bains", "Bajaj", "Bajwa", "Bak", "Baker", "Baksh", "Bakshi", "Bal", "Bala", "Balagot", "Balagtas", "Balaji", "Balakrishnan", "Balan", "Balasubramanian", "Baldonado", "Baldwin", "Bali", "Balingit", "Balk", "Ball", "Ballesteros", "Baltazar", "Baluyot", "Baluyut", "Ban", "Banaag", "Bandyopadhyay", "Banerjee", "Banez", "Bang", "Banh", "Banks", "Bano", "Bansal", "Banzon", "Bao", "Baptista", "Baquiran", "Barba", "Barber", "Barcelona", "Bareng", "Bari", "Barker", "Barnes", "Barnett", "Baron", "Barot", "Barr", "Barrera", "Barrett", "Barretto", "Barrientos", "Barrios", "Barroga", "Barron", "Barry", "Bartlett", "Bartolome", "Barton", "Barua", "Basa", "Basco", "Basdeo", "Bashir", "Basilio", "Basra", "Bass", "Bassi", "Basu", "Batac", "Bates", "Bath", "Batoon", "Batra", "Bauer", "Bautista", "Bawa", "Baxi", "Baxter", "Bayani", "Baylon", "Be", "Beck", "Becker", "Bedi", "Bee", "Beg", "Begum", "Belen", "Bell", "Bello", "Belmonte", "Beltran", "Ben", "Benavente", "Benedicto", "Benitez", "Benito", "Benjamin", "Bennett", "Benson", "Berg", "Berger", "Bermudez", "Bernabe", "Bernal", "Bernard", "Bernardino", "Bernardo", "Berry", "Bhagat", "Bhakta", "Bhalla", "Bhandari", "Bharadwaj", "Bhardwaj", "Bhargava", "Bhasin", "Bhaskar", "Bhat", "Bhatia", "Bhatnagar", "Bhatt", "Bhattacharjee", "Bhattacharya", "Bhattacharyya", "Bhatti", "Bhavsar", "Bhimani", "Bhola", "Bhuiyan", "Bhullar", "Bi", "Bian", "Bibi", "Bien", "Bigornia", "Bin", "Bindra", "Bird", "Bishop", "Biswas", "Black", "Blair", "Blake", "Blanco", "Blas", "Bo", "Bokhari", "Bolosan", "Bond", "Bondoc", "Bong", "Bonifacio", "Bonilla", "Boone", "Booth", "Borja", "Borromeo", "Bose", "Bou", "Bowen", "Bowers", "Bowman", "Boyd", "Boyer", "Bradley", "Brady", "Braganza", "Brahmbhatt", "Brar", "Bravo", "Brennan", "Brewer", "Briggs", "Bright", "Brillantes", "Briones", "Brooks", "Brown", "Bruce", "Bruno", "Bryan", "Bryant", "Bu", "Buan", "Buchanan", "Buck", "Buenafe", "Buenaflor", "Buenaventura", "Buendia", "Bueno", "Buenviaje", "Bugarin", "Bui", "Bukhari", "Bumanglag", "Bun", "Bunag", "Burgess", "Burgos", "Burke", "Burnett", "Burns", "Burton", "Bush", "Bustamante", "Bustos", "Buth", "Butler", "Butt", "Byrd", "Byun", "Cabacungan", "Caballero", "Caballes", "Cabana", "Cabanilla", "Cabebe", "Caberto", "Cabral", "Cabrera", "Cabreros", "Cacal", "Cachero", "Cacho", "Cachola", "Cadiente", "Cadiz", "Cai", "Cain", "Calderon", "Caldwell", "Calica", "Calimlim", "Callahan", "Callejo", "Calma", "Calvo", "Cam", "Camacho", "Camara", "Camba", "Cameron", "Campbell", "Campos", "Canete", "Canlas", "Cannon", "Cano", "Cao", "Caparas", "Capati", "Capili", "Capistrano", "Capulong", "Carandang", "Carbonell", "Cardenas", "Cardona", "Carey", "Cariaga", "Carino", "Carlos", "Carlson", "Carpenter", "Carpio", "Carr", "Carreon", "Carrillo", "Carroll", "Carson", "Carter", "Carvalho", "Case", "Casey", "Casino", "Castaneda", "Castellano", "Castelo", "Castillo", "Castro", "Catacutan", "Catalan", "Catbagan", "Cayabyab", "Cayanan", "Cayetano", "Celestino", "Celis", "Cen", "Cendana", "Centeno", "Cepeda", "Cerezo", "Cervantes", "Cha", "Chacko", "Chadha", "Chae", "Chahal", "Chai", "Chak", "Chakrabarti", "Chakraborty", "Challa", "Cham", "Chambers", "Chan", "Chand", "Chanda", "Chander", "Chandler", "Chandra", "Chandran", "Chandrasekaran", "Chandy", "Chang", "Chann", "Chanthavong", "Chao", "Chap", "Chapman", "Char", "Charania", "Chari", "Charles", "Chase", "Chatterjee", "Chaturvedi", "Chau", "Chaudhari", "Chaudhary", "Chaudhri", "Chaudhry", "Chaudhuri", "Chaudry", "Chauhan", "Chavez", "Chawla", "Chay", "Che", "Chea", "Cheah", "Cheang", "Chee", "Cheema", "Chen", "Cheng", "Cheon", "Cheong", "Cherian", "Chern", "Cheuk", "Cheung", "Chew", "Chey", "Chhabra", "Chhan", "Chhay", "Chheng", "Chhim", "Chhoeun", "Chhor", "Chhum", "Chhun", "Chhuon", "Chi", "Chia", "Chiang", "Chiao", "Chiba", "Chico", "Chiem", "Chien", "Chieng", "Chik", "Chim", "Chin", "Chinen", "Ching", "Chinn", "Chio", "Chiong", "Chiou", "Chiu", "Cho", "Chock", "Choe", "Chohan", "Choi", "Chokshi", "Choksi", "Chon", "Chong", "Choo", "Chopra", "Chou", "Choudhary", "Choudhry", "Choudhury", "Choudry", "Choun", "Choung", "Chow", "Chowdhury", "Choy", "Christensen", "Christian", "Christopher", "Chu", "Chua", "Chuang", "Chuck", "Chue", "Chugh", "Chughtai", "Chui", "Chum", "Chun", "Chung", "Chuong", "Chy", "Cinco", "Clark", "Clarke", "Claudio", "Clayton", "Clemente", "Co", "Cobb", "Cochran", "Cohen", "Cole", "Coleman", "Collado", "Collins", "Coloma", "Concepcion", "Conde", "Cong", "Conner", "Constantino", "Contractor", "Contreras", "Cook", "Cooper", "Cordero", "Cordova", "Cornejo", "Coronado", "Coronel", "Corpus", "Corpuz", "Corrales", "Correa", "Cortes", "Cortez", "Costa", "Costales", "Cox", "Craig", "Crawford", "Crisologo", "Crisostomo", "Cristobal", "Cross", "Cruz", "Cu", "Cua", "Cuaresma", "Cuenca", "Cueto", "Cuevas", "Cui", "Cummings", "Cun", "Cunanan", "Cung", "Cunningham", "Curry", "Curtis", "Custodio", "Dabu", "Dacanay", "Dagdag", "Dai", "Dalal", "Dalisay", "Dam", "Damaso", "Damian", "Dan", "Dana", "Dancel", "Dang", "Danh", "Daniel", "Daniels", "Dao", "Dar", "Darji", "Dark", "Das", "Dasalla", "Dasari", "Dasgupta", "Dash", "Dass", "Date", "Datta", "Datu", "Datuin", "Dau", "Dave", "Davenport", "David", "Davidson", "Davis", "Dawson", "Day", "Dayal", "Dayrit", "De", "Dea", "Dean", "Deasis", "Deb", "Decastro", "Decena", "Decker", "Dedios", "Dee", "Deen", "Degracia", "Deguia", "Deguzman", "Dejesus", "Delacruz", "Delafuente", "Delapaz", "Delapena", "Delara", "Delarosa", "Delatorre", "Delavega", "Delcastillo", "Deleon", "Delfin", "Delgado", "Delima", "Delmundo", "Delosreyes", "Delossantos", "Delrosario", "Deluna", "Demello", "Demesa", "Deng", "Dennis", "Deo", "Deocampo", "Deol", "Deperalta", "Der", "Desai", "Deshmukh", "Deshpande", "Desilva", "Desouza", "Devera", "Devi", "Devilla", "Dewan", "Dey", "Dhaliwal", "Dhami", "Dhanani", "Dhar", "Dharia", "Dhawan", "Dhillon", "Dhingra", "Di", "Dias", "Diaz", "Diec", "Diego", "Diep", "Dieu", "Dillon", "Dimaano", "Dimalanta", "Din", "Ding", "Dinh", "Dionisio", "Divinagracia", "Diwa", "Dixit", "Dixon", "Dizon", "Do", "Doan", "Doctor", "Doe", "Doi", "Domingo", "Dominguez", "Don", "Donato", "Dones", "Dong", "Donovan", "Doo", "Doria", "Dosanjh", "Doshi", "Dou", "Douglas", "Doung", "Doyle", "Drake", "Dsilva", "Dsouza", "Du", "Dua", "Duan", "Duarte", "Dubey", "Duch", "Ducusin", "Duenas", "Duffy", "Duggal", "Dulay", "Duldulao", "Dumlao", "Duncan", "Dung", "Dungca", "Dunn", "Duong", "Duque", "Duran", "Durrani", "Dutt", "Dutta", "Dwivedi", "Dy", "Dyer", "Ea", "Eang", "Eapen", "Ear", "Eaton", "Edralin", "Edwards", "Eguchi", "Ek", "Elahi", "Elias", "Elliott", "Ellis", "Em", "Encarnacion", "Endo", "Eng", "Engineer", "English", "Enomoto", "Enos", "Enriquez", "Erickson", "Escalante", "Escalona", "Escano", "Escobar", "Esguerra", "Espanol", "Espejo", "Esperanza", "Espina", "Espino", "Espinosa", "Espinoza", "Espiritu", "Estacio", "Esteban", "Estrada", "Estrella", "Eto", "Eugenio", "Eun", "Eusebio", "Evangelista", "Evans", "Fabian", "Fabro", "Fajardo", "Fan", "Fang", "Farinas", "Farmer", "Farooq", "Farooqi", "Farooqui", "Farrell", "Fatima", "Faustino", "Fazal", "Fei", "Feliciano", "Felipe", "Felix", "Feng", "Ferguson", "Fermin", "Fernandes", "Fernandez", "Fernando", "Ferreira", "Ferrer", "Fields", "Fiesta", "Fifita", "Figueroa", "Finau", "Fischer", "Fisher", "Fitzgerald", "Fleming", "Fletcher", "Florendo", "Flores", "Floresca", "Flynn", "Fok", "Foley", "Fong", "Fontanilla", "Fonua", "Foo", "Ford", "Foronda", "Fortes", "Foster", "Fowler", "Fox", "Francia", "Francis", "Francisco", "Franco", "Frank", "Franklin", "Frazier", "Freeman", "Freitas", "French", "Frias", "Fronda", "Frost", "Fu", "Fuentes", "Fujihara", "Fujii", "Fujikawa", "Fujimori", "Fujimoto", "Fujimura", "Fujino", "Fujioka", "Fujita", "Fujitani", "Fujiwara", "Fukuda", "Fukuhara", "Fukui", "Fukumoto", "Fukunaga", "Fukushima", "Fulgencio", "Fuller", "Fung", "Furtado", "Furukawa", "Furuta", "Furuya", "Gabriel", "Gaddam", "Gaerlan", "Gajjar", "Gala", "Galang", "Galicia", "Galinato", "Galindo", "Galiza", "Gallagher", "Gallardo", "Gallego", "Gallegos", "Gallo", "Galvan", "Galvez", "Gamboa", "Gan", "Ganapathy", "Gandhi", "Ganesan", "Ganesh", "Gang", "Ganguly", "Gao", "Garces", "Garcia", "Gardner", "Garg", "Garma", "Garner", "Garrett", "Garrido", "Gascon", "Gaspar", "Gatchalian", "Gatdula", "Gates", "Gatmaitan", "Gau", "Gaur", "Gautam", "Gavino", "Gaviola", "Gaw", "Gay", "Ge", "Gee", "Geng", "George", "Geronimo", "Gervacio", "Ghai", "Ghani", "Ghosh", "Ghuman", "Giang", "Gibbs", "Gibson", "Gil", "Gilani", "Gilbert", "Gill", "Gim", "Gin", "Gines", "Ginoza", "Gip", "Giri", "Giron", "Gloria", "Glover", "Go", "Godbole", "Godoy", "Goel", "Goh", "Gohil", "Gokhale", "Gomes", "Gomez", "Gong", "Gonsalves", "Gonzaga", "Gonzales", "Gonzalez", "Goo", "Goodman", "Goodwin", "Goon", "Gopal", "Gopalakrishnan", "Gopalan", "Gordon", "Gore", "Gorospe", "Goswami", "Goto", "Gowda", "Goya", "Goyal", "Grace", "Graham", "Grande", "Grant", "Graves", "Gray", "Green", "Greene", "Gregorio", "Gregory", "Grewal", "Griffin", "Griffith", "Gross", "Grover", "Gu", "Guan", "Guanzon", "Guarin", "Guerra", "Guerrero", "Guevara", "Guevarra", "Guha", "Gui", "Guiang", "Guieb", "Guillen", "Guillermo", "Guinto", "Guintu", "Gujral", "Gul", "Gulati", "Gunawan", "Guo", "Gupta", "Gupte", "Gurung", "Gushiken", "Gutierrez", "Guy", "Guzman", "Ha", "Habib", "Hafeez", "Hagiwara", "Hague", "Hahm", "Hahn", "Hai", "Haider", "Hak", "Hakim", "Hale", "Halili", "Halim", "Hall", "Ham", "Hamada", "Hamamoto", "Hamano", "Hamasaki", "Hameed", "Hamid", "Hamilton", "Hammond", "Hampton", "Han", "Handa", "Hang", "Hanif", "Hanna", "Hanohano", "Hans", "Hansen", "Hanson", "Hao", "Haq", "Haque", "Hara", "Harada", "Haraguchi", "Harding", "Hardy", "Hari", "Hariharan", "Harmon", "Haroon", "Harper", "Harrington", "Harris", "Harrison", "Hart", "Hartman", "Harvey", "Hasan", "Hasegawa", "Hashim", "Hashimoto", "Hashmi", "Hasnain", "Hassan", "Hata", "Hatanaka", "Hattori", "Hau", "Hawkins", "Hay", "Hayakawa", "Hayashi", "Hayashida", "Hayat", "Hayes", "Haynes", "He", "Hee", "Hegde", "Hem", "Hemani", "Henderson", "Hendricks", "Heng", "Henry", "Henson", "Heo", "Her", "Herman", "Hernandez", "Hernando", "Herr", "Herrera", "Hess", "Heu", "Hew", "Hicks", "Hidalgo", "Higa", "Higashi", "Higgins", "Higuchi", "Hilario", "Hill", "Him", "Hin", "Hines", "Hing", "Hinh", "Hino", "Hipolito", "Hira", "Hirabayashi", "Hirai", "Hirakawa", "Hiramoto", "Hirani", "Hirano", "Hiraoka", "Hirata", "Hirayama", "Hironaka", "Hirose", "Hirota", "Hizon", "Ho", "Hoa", "Hoang", "Hodges", "Hoe", "Hoffman", "Hogan", "Hok", "Hokama", "Holland", "Holmes", "Holt", "Hom", "Hon", "Honda", "Hong", "Honma", "Hoo", "Hood", "Hoover", "Hopkins", "Hoque", "Hor", "Hori", "Horie", "Horikawa", "Horita", "Horiuchi", "Horn", "Horng", "Horton", "Hosaka", "Hosein", "Hoshino", "Hossain", "Hotta", "Hou", "Houng", "Houston", "How", "Howard", "Howe", "Howell", "Hoy", "Hsi", "Hsia", "Hsiang", "Hsiao", "Hsieh", "Hsin", "Hsing", "Hsiung", "Hsu", "Hsueh", "Hu", "Hua", "Huang", "Hubbard", "Huda", "Hudson", "Hue", "Huey", "Huff", "Hugh", "Hughes", "Huh", "Hui", "Huie", "Hum", "Hun", "Hundal", "Hung", "Hunt", "Hunter", "Huo", "Huong", "Huot", "Huq", "Hur", "Hurley", "Husain", "Hussain", "Hussaini", "Hussein", "Hutchinson", "Huy", "Huynh", "Hwa", "Hwang", "Hy", "Hyder", "Hyon", "Hyun", "Ibanez", "Ibarra", "Ibay", "Ibrahim", "Ichikawa", "Ide", "Iftikhar", "Igarashi", "Ige", "Iglesias", "Ignacio", "Iha", "Ihara", "Iida", "Ijaz", "Ikeda", "Ikegami", "Ikehara", "Ikemoto", "Ilagan", "Ilano", "Ilyas", "Im", "Imada", "Imai", "Imam", "Imamura", "Imperial", "Imran", "In", "Inaba", "Inagaki", "Ines", "Infante", "Ing", "Ingram", "Inocencio", "Inoue", "Inouye", "Insixiengmay", "Inthavong", "Ip", "Iqbal", "Irani", "Irfan", "Isa", "Isaac", "Iseri", "Ishibashi", "Ishida", "Ishihara", "Ishii", "Ishikawa", "Ishimoto", "Isidro", "Isip", "Islam", "Ismail", "Isobe", "Ison", "Israel", "Ith", "Ito", "Iwai", "Iwamoto", "Iwanaga", "Iwasaki", "Iwata", "Iyengar", "Iyer", "Izumi", "Jabbar", "Jabeen", "Jacinto", "Jackson", "Jacob", "Jacobs", "Jacobson", "Jadhav", "Jaffer", "Jafri", "Jahan", "Jain", "Jaiswal", "Jalil", "Jamal", "James", "Jamil", "Jan", "Jang", "Jani", "Janjua", "Jao", "Jaramillo", "Jared", "Jariwala", "Javaid", "Javed", "Javier", "Jay", "Jayaraman", "Jean", "Jee", "Jen", "Jeng", "Jenkins", "Jennings", "Jensen", "Jeon", "Jeong", "Jeung", "Jew", "Jha", "Jhaveri", "Ji", "Jia", "Jian", "Jiang", "Jiao", "Jim", "Jimenez", "Jin", "Jindal", "Jing", "Jiwani", "Jo", "Joaquin", "Jocson", "Joe", "Joh", "Johal", "John", "Johns", "Johnson", "Johnston", "Jolly", "Jon", "Jones", "Jong", "Joo", "Jordan", "Jose", "Joseph", "Joshi", "Joson", "Jou", "Joung", "Jow", "Joy", "Ju", "Juan", "Juang", "Juarez", "Judge", "Jue", "Julian", "Jun", "Juneja", "Jung", "Junio", "Ka", "Kabir", "Kadakia", "Kagawa", "Kageyama", "Kahlon", "Kahn", "Kahng", "Kai", "Kaiser", "Kajiwara", "Kakar", "Kaku", "Kala", "Kale", "Kalia", "Kalra", "Kalsi", "Kam", "Kama", "Kamada", "Kamai", "Kamaka", "Kamal", "Kamat", "Kamath", "Kamdar", "Kamei", "Kamimura", "Kamiya", "Kan", "Kanahele", "Kanai", "Kanda", "Kane", "Kaneko", "Kanemoto", "Kaneshige", "Kaneshiro", "Kang", "Kannan", "Kanno", "Kano", "Kao", "Kapadia", "Kapoor", "Kapur", "Kar", "Karim", "Kasai", "Kashyap", "Kassam", "Kataoka", "Kataria", "Katayama", "Kato", "Kau", "Kaul", "Kaur", "Kausar", "Kaushal", "Kaushik", "Kawabata", "Kawada", "Kawaguchi", "Kawahara", "Kawai", "Kawakami", "Kawamoto", "Kawamura", "Kawano", "Kawasaki", "Kawashima", "Kawata", "Kay", "Kaya", "Kazi", "Kazmi", "Ke", "Kea", "Kealoha", "Kee", "Keh", "Keith", "Kelkar", "Keller", "Kelley", "Kelly", "Kem", "Keng", "Kennedy", "Kent", "Keo", "Keomany", "Kerr", "Keung", "Key", "Kha", "Khalid", "Khalil", "Kham", "Khamvongsa", "Khan", "Khanam", "Khandelwal", "Khang", "Khanna", "Khare", "Khatoon", "Khatri", "Khatun", "Khawaja", "Khem", "Khera", "Khiev", "Khim", "Khin", "Kho", "Khokhar", "Khong", "Khoo", "Khosla", "Khun", "Khuon", "Khuong", "Khurana", "Khuu", "Khwaja", "Ki", "Kiang", "Kidd", "Kido", "Kien", "Kieu", "Kihara", "Kikuchi", "Kil", "Kim", "Kimoto", "Kimura", "Kin", "King", "Kini", "Kinney", "Kinoshita", "Kirby", "Kirk", "Kishi", "Kishimoto", "Kishore", "Kita", "Kitagawa", "Kitamura", "Kiyabu", "Klein", "Knight", "Ko", "Kobashigawa", "Kobayashi", "Koch", "Kodali", "Kodama", "Koga", "Koh", "Kohli", "Koike", "Koizumi", "Kojima", "Kok", "Kolli", "Komatsu", "Kon", "Kondo", "Koneru", "Kong", "Konishi", "Konno", "Kono", "Koo", "Kosaka", "Koshy", "Kota", "Kothari", "Kou", "Koy", "Koyama", "Koyanagi", "Kramer", "Krishna", "Krishnamoorthy", "Krishnamurthy", "Krishnan", "Krishnaswamy", "Ku", "Kuan", "Kuang", "Kubo", "Kubota", "Kudo", "Kue", "Kui", "Kulkarni", "Kum", "Kumagai", "Kumar", "Kumari", "Kun", "Kundu", "Kung", "Kuo", "Kuramoto", "Kurata", "Kuriakose", "Kurian", "Kurien", "Kurihara", "Kuroda", "Kurokawa", "Kurup", "Kuruvilla", "Kusumoto", "Kuwahara", "Kwak", "Kwan", "Kwang", "Kwock", "Kwok", "Kwon", "Kwong", "Ky", "Kye", "Kyi", "Kyung", "La", "Labrador", "Lac", "Lacap", "Lach", "Lachica", "Lacsamana", "Lacson", "Lacuesta", "Lad", "Lagasca", "Lagman", "Lagmay", "Lai", "Lake", "Lakhani", "Lakshmanan", "Lal", "Lala", "Lalani", "Lall", "Lalwani", "Lam", "Lama", "Lamb", "Lamba", "Lambert", "Lan", "Lane", "Lang", "Langi", "Lansang", "Lao", "Lapid", "Lapitan", "Lapuz", "Lara", "Lardizabal", "Larosa", "Larsen", "Larson", "Lat", "Lata", "Latif", "Latu", "Lau", "Laurel", "Lavarias", "Law", "Lawrence", "Lawson", "Laxamana", "Lay", "Layug", "Lazaro", "Lazo", "Le", "Lea", "Leal", "Leang", "Leano", "Ledesma", "Lee", "Legaspi", "Lei", "Lem", "Len", "Leng", "Leo", "Leon", "Leonard", "Leonardo", "Leong", "Leonguerrero", "Leota", "Leslie", "Leu", "Leung", "Levy", "Lew", "Lewis", "Ley", "Lez", "Li", "Lian", "Liang", "Liao", "Liaw", "Lie", "Liem", "Lien", "Lieu", "Liew", "Lim", "Lima", "Lin", "Lindsey", "Ling", "Lingad", "Linn", "Liou", "Lising", "Little", "Liu", "Liv", "Liwag", "Liwanag", "Lizama", "Lizardo", "Llamas", "Llanes", "Lloyd", "Lo", "Lobo", "Loc", "Lock", "Locke", "Locquiao", "Locsin", "Lodhi", "Logan", "Loh", "Loi", "Lok", "Lomboy", "Lomibao", "Long", "Loo", "Look", "Lopes", "Lopez", "Lor", "Lorenzo", "Lou", "Loui", "Louie", "Louis", "Lovan", "Love", "Low", "Lowe", "Loy", "Loyola", "Lozada", "Lozano", "Lu", "Luan", "Luangrath", "Luc", "Lucas", "Lucero", "Luciano", "Lue", "Lugtu", "Lui", "Luis", "Lujan", "Luk", "Luke", "Lukose", "Lum", "Lun", "Luna", "Lung", "Luo", "Luong", "Luthra", "Luu", "Luy", "Luz", "Lwin", "Ly", "Lyn", "Lynch", "Lynn", "Lyons", "Lyu", "Ma", "Mac", "Macadangdang", "Macalino", "Macapagal", "Macaraeg", "Macatangay", "MacDonald", "Mach", "Machado", "Machida", "Mack", "Madamba", "Madan", "Madarang", "Madayag", "Madhavan", "Madriaga", "Madrid", "Madrigal", "Maeda", "Maekawa", "Maeng", "Magallanes", "Magalong", "Magat", "Magbanua", "Maglalang", "Magno", "Magpantay", "Magsino", "Mah", "Mahabir", "Mahadeo", "Mahadevan", "Mahajan", "Mahal", "Maharaj", "Maheshwari", "Mahmood", "Mahmud", "Mahtani", "Mai", "Majeed", "Majid", "Majmudar", "Majumdar", "Mak", "Maki", "Makino", "Malabanan", "Maldonado", "Malhi", "Malhotra", "Malik", "Mall", "Mallari", "Mallick", "Malone", "Malonzo", "Mam", "Mamaril", "Mammen", "Man", "Manabat", "Manahan", "Manalac", "Manalang", "Manalastas", "Manalili", "Manalo", "Manaloto", "Manansala", "Manaois", "Mandal", "Mang", "Mangahas", "Mangal", "Mangat", "Manglicmot", "Mangubat", "Mani", "Maniar", "Manibusan", "Manivanh", "Manivong", "Manlapaz", "Mann", "Mannan", "Manning", "Mansoor", "Manu", "Manuel", "Manzano", "Mao", "Mar", "Mara", "Maranan", "Marasigan", "Maravilla", "Marcelino", "Marcelo", "Marcos", "Maredia", "Mariano", "Marin", "Marinas", "Marino", "Mark", "Marks", "Marquez", "Marsh", "Marshall", "Martin", "Martinez", "Maruyama", "Marzan", "Masaki", "Mascarenhas", "Masih", "Mason", "Masood", "Massey", "Master", "Masuda", "Masumoto", "Mata", "Mataele", "Mateo", "Mathai", "Mather", "Mathew", "Mathews", "Mathias", "Mathur", "Matias", "Matin", "Matsubara", "Matsuda", "Matsui", "Matsukawa", "Matsumoto", "Matsumura", "Matsunaga", "Matsuno", "Matsuo", "Matsuoka", "Matsushima", "Matsushita", "Matsuura", "Matsuyama", "Matsuzaki", "Matta", "Matthew", "Matthews", "Mau", "Maung", "Mauricio", "Max", "Maxwell", "May", "Mayeda", "Mayer", "Mayo", "Mayor", "McBride", "McCarthy", "McCormick", "McCoy", "McDaniel", "McDonald", "McGee", "McGuire", "McKee", "McKenzie", "McKinney", "McLaughlin", "Mean", "Meas", "Medeiros", "Medina", "Medrano", "Meghani", "Mehdi", "Mehmood", "Mehra", "Mehrotra", "Mehta", "Mei", "Mejia", "Melchor", "Memon", "Men", "Mendez", "Mendiola", "Mendoza", "Meneses", "Menezes", "Meng", "Meno", "Menon", "Menor", "Mercado", "Merchant", "Mesa", "Mesina", "Mey", "Meyer", "Meyers", "Mi", "Mia", "Miah", "Mian", "Miao", "Michael", "Miguel", "Mihara", "Mijares", "Mikami", "Miki", "Milan", "Miles", "Millan", "Millare", "Miller", "Mills", "Min", "Mina", "Minami", "Ming", "Minhas", "Mir", "Miranda", "Mirchandani", "Mirza", "Misa", "Mishima", "Mishra", "Misra", "Mistry", "Mitchell", "Mithani", "Mitra", "Mittal", "Miu", "Miura", "Miwa", "Miya", "Miyagawa", "Miyagi", "Miyahara", "Miyahira", "Miyake", "Miyamoto", "Miyasaki", "Miyasato", "Miyashiro", "Miyashita", "Miyata", "Miyazaki", "Miyoshi", "Mizuno", "Mizutani", "Mo", "Moala", "Mochizuki", "Mock", "Modi", "Mody", "Moe", "Mohabir", "Mohamed", "Mohammad", "Mohammed", "Mohan", "Mohanty", "Mohiuddin", "Mohsin", "Mojica", "Mok", "Molina", "Mom", "Momin", "Mon", "Mones", "Mong", "Moniz", "Monroe", "Montano", "Montemayor", "Montenegro", "Montero", "Montes", "Montgomery", "Montoya", "Monzon", "Moody", "Moon", "Moore", "Mora", "Morales", "Moran", "Moreno", "Morgan", "Mori", "Morikawa", "Morimoto", "Morin", "Morioka", "Morishige", "Morishita", "Morita", "Moriyama", "Morris", "Morrison", "Morrow", "Morse", "Morton", "Moses", "Moss", "Mou", "Moua", "Mova", "Moy", "Moya", "Mu", "Mua", "Mueller", "Mughal", "Muhammad", "Mui", "Mukai", "Mukherjee", "Mukhopadhyay", "Mullen", "Muller", "Mullins", "Multani", "Mumtaz", "Mun", "Munar", "Munir", "Munoz", "Munshi", "Murai", "Murakami", "Murali", "Muramoto", "Muranaka", "Muraoka", "Murata", "Murayama", "Murillo", "Murphy", "Murray", "Murthy", "Mushtaq", "Mustafa", "Muth", "Muto", "My", "Myers", "Myint", "Myung", "Nabong", "Nadeem", "Nadkarni", "Naeem", "Nagai", "Nagamine", "Nagano", "Nagao", "Nagaraj", "Nagarajan", "Nagasawa", "Nagashima", "Nagata", "Nagpal", "Nagra", "Nahar", "Naidu", "Naik", "Nair", "Naito", "Nakada", "Nakagawa", "Nakahara", "Nakai", "Nakajima", "Nakama", "Nakamoto", "Nakamura", "Nakanishi", "Nakano", "Nakao", "Nakashima", "Nakasone", "Nakata", "Nakatani", "Nakayama", "Nakazawa", "Nam", "Namba", "Nambiar", "Nan", "Nanavati", "Nand", "Nanda", "Nandi", "Nang", "Naqui", "Naqvi", "Narain", "Narang", "Narasimhan", "Narayan", "Narayanan", "Narciso", "Narita", "Narula", "Narvaez", "Naseem", "Naseer", "Nash", "Nasir", "Natarajan", "Nath", "Nathan", "Natividad", "Nava", "Naval", "Navalta", "Navarrete", "Navarro", "Nawaz", "Nay", "Nayak", "Nayar", "Nayyar", "Naz", "Nazareno", "Nazir", "Neal", "Neang", "Nee", "Nelson", "Nepomuceno", "Neri", "Nery", "Neuyen", "Newman", "Newton", "Ng", "Ngai", "Ngan", "Ngeth", "Nghiem", "Ngin", "Ngo", "Ngov", "Ngu", "Nguon", "Nguy", "Nguyen", "Nguyent", "Nguyenthi", "Nguyenvan", "Nham", "Nhan", "Nhem", "Ni", "Niazi", "Nicholas", "Nichols", "Nicholson", "Nicolas", "Nie", "Nieh", "Nielsen", "Nigam", "Nijjar", "Nim", "Ninan", "Ning", "Ninh", "Ninomiya", "Nip", "Nishi", "Nishida", "Nishihara", "Nishikawa", "Nishimoto", "Nishimura", "Nishino", "Nishio", "Nishioka", "Nishiyama", "Nitta", "Niu", "Niwa", "No", "Noa", "Noble", "Nocon", "Noda", "Noel", "Noguchi", "Noh", "Nolasco", "Nomura", "Nonaka", "Nong", "Noor", "Noorani", "Nop", "Noriega", "Norman", "Noronha", "Norris", "Norton", "Nou", "Nozaki", "Nozawa", "Nunez", "Nuon", "Ny", "O'Brien", "O'Connor", "O'Hara", "Oba", "Oberoi", "Ocampo", "Ochoa", "Oda", "Oei", "Ogasawara", "Ogata", "Ogawa", "Ogino", "Ogura", "Oh", "Ohashi", "Ohta", "Oishi", "Ok", "Oka", "Okabe", "Okada", "Okamoto", "Okamura", "Okano", "Okawa", "Okazaki", "Oki", "Okimoto", "Okino", "Okita", "Okubo", "Okuda", "Okuma", "Okumura", "Okuno", "Okura", "Olaes", "Olegario", "Oliva", "Oliver", "Oliveros", "Olsen", "Olson", "Om", "Omar", "Omori", "Omoto", "Omura", "On", "Onaga", "Oneill", "Ong", "Onishi", "Ono", "Oo", "Oommen", "Or", "Ordona", "Ordonez", "Oribello", "Orpilla", "Orr", "Ortega", "Ortiz", "Osaki", "Osawa", "Osborne", "Oshima", "Oshiro", "Oshita", "Osman", "Osorio", "Ota", "Otake", "Otani", "Otsuka", "Ou", "Ouch", "Ouk", "Oum", "Ouyang", "Ow", "Owen", "Owens", "Owyang", "Oyama", "Oza", "Ozaki", "Ozawa", "Pa", "Pabalan", "Pabla", "Pablo", "Pacheco", "Pacis", "Pack", "Padilla", "Padmanabhan", "Padua", "Pae", "Paek", "Paez", "Pagaduan", "Pagdilao", "Page", "Paguio", "Paguirigan", "Pai", "Paik", "Pajarillo", "Pak", "Pal", "Palacio", "Palacios", "Palisoc", "Palma", "Palmer", "Palomo", "Pam", "Pamintuan", "Pan", "Panchal", "Panda", "Pande", "Pandey", "Pandit", "Pandya", "Pang", "Pangan", "Panganiban", "Pangelinan", "Pangilinan", "Panicker", "Panis", "Panjwani", "Panlilio", "Pannu", "Pantaleon", "Pao", "Papa", "Paracha", "Paragas", "Paraiso", "Paras", "Parayno", "Paredes", "Parekh", "Parikh", "Paris", "Park", "Parker", "Parks", "Parmar", "Parr", "Parsons", "Parthasarathy", "Parungao", "Parveen", "Paschal", "Pasco", "Pascua", "Pascual", "Pasha", "Pasion", "Pastor", "Pastrana", "Patel", "Pathak", "Pathammavong", "Pathan", "Patil", "Patnaik", "Patricio", "Patrick", "Patterson", "Patton", "Patwardhan", "Pau", "Paul", "Paule", "Paulino", "Paulo", "Pawar", "Payne", "Payumo", "Paz", "Pe", "Pearson", "Pebenito", "Pech", "Peck", "Pedro", "Pei", "Pelayo", "Pen", "Pena", "Penaflor", "Peng", "Penn", "Peralta", "Pereira", "Perera", "Perez", "Perkins", "Perlas", "Perreira", "Perry", "Persad", "Persaud", "Person", "Pervez", "Peter", "Peters", "Petersen", "Peterson", "Pha", "Pham", "Phan", "Phang", "Phann", "Phanthavong", "Phay", "Phelps", "Pheng", "Phi", "Philip", "Philipose", "Philips", "Phillips", "Phimmasone", "Phin", "Pho", "Phommachanh", "Phon", "Phong", "Phou", "Phouthavong", "Phu", "Phung", "Phuong", "Pi", "Pich", "Pierce", "Pilapil", "Pillai", "Pillay", "Pimentel", "Pin", "Pineda", "Ping", "Pinto", "Pizarro", "Po", "Poblete", "Poe", "Pok", "Pol", "Policarpio", "Pon", "Ponce", "Pong", "Poon", "Pope", "Porter", "Posadas", "Potter", "Powell", "Powers", "Prabhakar", "Prabhu", "Pradhan", "Prado", "Prajapati", "Prak", "Prakash", "Prasad", "Prashad", "Pratt", "Preston", "Price", "Prieto", "Prince", "Prom", "Prum", "Pu", "Pua", "Pulido", "Pun", "Pung", "Punjabi", "Puno", "Punsalan", "Punzalan", "Purcell", "Purewal", "Puri", "Purohit", "Puzon", "Pyo", "Pyon", "Pyun", "Qadir", "Qadri", "Qamar", "Qazi", "Qi", "Qian", "Qiao", "Qin", "Qiu", "Qu", "Quach", "Quadri", "Quan", "Quang", "Que", "Querubin", "Qui", "Quiambao", "Quijano", "Quinn", "Quinones", "Quintana", "Quintanilla", "Quinto", "Quintos", "Quiocho", "Quitugua", "Quizon", "Quon", "Quraishi", "Qureshi", "Ra", "Rabago", "Rabanal", "Rabara", "Radhakrishnan", "Rafael", "Rafanan", "Rafiq", "Ragasa", "Raghavan", "Rahaman", "Rahim", "Rahman", "Rai", "Raina", "Raj", "Raja", "Rajagopal", "Rajagopalan", "Rajan", "Rajani", "Rajaram", "Rajendran", "Rajkumar", "Rajput", "Raju", "Ram", "Rama", "Ramachandran", "Ramakrishnan", "Ramalingam", "Ramamurthy", "Raman", "Ramanathan", "Ramani", "Ramaswamy", "Ramchandani", "Ramelb", "Ramesh", "Ramirez", "Ramiro", "Ramiscal", "Ramkissoon", "Ramnarine", "Ramones", "Ramos", "Rampersad", "Rampersaud", "Ramroop", "Ramsey", "Ran", "Rana", "Randall", "Randhawa", "Ranganathan", "Rangarajan", "Rani", "Rao", "Raquel", "Rasheed", "Rashid", "Rasmussen", "Rastogi", "Rath", "Rathod", "Rathore", "Rattan", "Rau", "Rauf", "Raval", "Ravi", "Ravindran", "Rawal", "Rawat", "Ray", "Raymond", "Raymundo", "Raza", "Razon", "Razvi", "Real", "Reddy", "Reed", "Reese", "Reeves", "Refuerzo", "Regala", "Regalado", "Rehman", "Reid", "Reilly", "Remigio", "Ren", "Respicio", "Resurreccion", "Revilla", "Rey", "Reyes", "Reynolds", "Reynoso", "Reza", "Rhee", "Rho", "Rhodes", "Riaz", "Rice", "Rich", "Richard", "Richards", "Richardson", "Rico", "Rigor", "Riley", "Rim", "Rimando", "Rin", "Rios", "Rivas", "Rivera", "Rizvi", "Ro", "Roa", "Robbins", "Robert", "Roberto", "Roberts", "Robertson", "Robinson", "Robles", "Rocha", "Rodgers", "Rodrigo", "Rodrigues", "Rodriguez", "Roe", "Roeun", "Rogers", "Roh", "Rojas", "Roldan", "Roman", "Romano", "Romero", "Rong", "Ronquillo", "Roque", "Ros", "Rosa", "Rosal", "Rosales", "Rosario", "Rose", "Rosete", "Ross", "Roth", "Rowe", "Roxas", "Roy", "Rozario", "Ru", "Ruan", "Rubin", "Rubio", "Ruiz", "Rupani", "Russell", "Ryan", "Ryoo", "Ryu", "Sa", "Saavedra", "Sabado", "Sabharwal", "Sabino", "Sabio", "Sablan", "Sachdev", "Sachdeva", "Sadiq", "Saechao", "Saeed", "Saefong", "Saelee", "Saephan", "Saephanh", "Saesee", "Saetern", "Saeteurn", "Saeyang", "Sagar", "Sagun", "Saha", "Sahagun", "Sahai", "Sahni", "Sahota", "Sahu", "Sai", "Saiki", "Saing", "Saini", "Saito", "Saiyed", "Sajid", "Sajjad", "Sakaguchi", "Sakai", "Sakamoto", "Sakata", "Sakoda", "Sakuma", "Sakurai", "Salam", "Salamanca", "Salas", "Salazar", "Salcedo", "Saldana", "Saleem", "Saleh", "Salem", "Sales", "Salgado", "Salim", "Salinas", "Sallee", "Salonga", "Salud", "Salvador", "Sam", "Samad", "Samaniego", "Samaroo", "Sami", "Samonte", "Sampang", "Sampat", "Sampath", "Sampson", "Samra", "Samson", "Samuel", "San", "Sanagustin", "Sananikone", "Sanchez", "Sand", "Sanders", "Sandhu", "Sandiego", "Sandoval", "Sang", "Sangalang", "Sangha", "Sanghavi", "Sanghera", "Sanghvi", "Sanjose", "Sanjuan", "Sankar", "Sankaran", "Sanluis", "Sanmiguel", "Sannicolas", "Sano", "Sanpedro", "Santaana", "Santamaria", "Santiago", "Santos", "Santoso", "Sanyal", "Sao", "Sar", "Sarabia", "Sardar", "Sarin", "Sarkar", "Sarker", "Sarma", "Sarmiento", "Sarte", "Sarwar", "Sasaki", "Sastry", "Sato", "Sattar", "Saunders", "Savage", "Saw", "Sawada", "Sawhney", "Sawyer", "Saxena", "Say", "Sayani", "Sayarath", "Sayavong", "Sayed", "Sayeed", "Sayson", "Schaefer", "Schmidt", "Schneider", "Schroeder", "Schultz", "Schwartz", "Scott", "Seang", "Sebastian", "See", "Segawa", "Sehgal", "Seid", "Sek", "Sekhon", "Seki", "Sekiguchi", "Sem", "Sen", "Seng", "Sengupta", "Seo", "Seok", "Seong", "Sequeira", "Sera", "Serna", "Serrano", "Sese", "Seshadri", "Seth", "Sethi", "Setiawan", "Seto", "Seung", "Sevilla", "Sha", "Shabbir", "Shad", "Shaffer", "Shafi", "Shah", "Shaheen", "Shahid", "Shahzad", "Shaik", "Shaikh", "Shakir", "Sham", "Shamsi", "Shan", "Shang", "Shankar", "Shanmugam", "Shao", "Shareef", "Sharif", "Shariff", "Sharma", "Sharp", "Shastri", "Shaw", "Shay", "She", "Shea", "Sheen", "Sheikh", "Shek", "Shelton", "Shen", "Sheng", "Shenoy", "Shepherd", "Sher", "Shergill", "Sheriff", "Sherman", "Sherpa", "Sheth", "Shetty", "Sheu", "Shew", "Shi", "Shiao", "Shiau", "Shiba", "Shibata", "Shibuya", "Shieh", "Shields", "Shigeta", "Shih", "Shim", "Shima", "Shimabuku", "Shimabukuro", "Shimada", "Shimamoto", "Shimazu", "Shimizu", "Shimoda", "Shimomura", "Shin", "Shing", "Shinn", "Shinoda", "Shinohara", "Shinsato", "Shintaku", "Shintani", "Shirai", "Shiraishi", "Shiraki", "Shiroma", "Shishido", "Shiu", "Shoji", "Shon", "Short", "Shrestha", "Shrivastava", "Shroff", "Shu", "Shue", "Shui", "Shukla", "Shum", "Shyu", "Si", "Sia", "Sibal", "Sibayan", "Sicat", "Siddiqi", "Siddique", "Siddiqui", "Sidhu", "Sieng", "Siharath", "Silva", "Silverio", "Silvestre", "Sim", "Simeon", "Simmons", "Simon", "Simpson", "Sims", "Sin", "Sing", "Singh", "Singhal", "Singla", "Singson", "Sinha", "Sio", "Sioson", "Sipin", "Sison", "Sit", "Situ", "Siu", "Siv", "Sivakumar", "Sivilay", "Skinner", "Smith", "Snow", "Snyder", "So", "Soares", "Sodhi", "Soe", "Soeun", "Soeung", "Soh", "Sohail", "Sohal", "Sohn", "Sok", "Solanki", "Solano", "Soliman", "Solis", "Soliven", "Solomon", "Som", "Somani", "Somera", "Son", "Song", "Songco", "Soni", "Sonoda", "Soo", "Sood", "Soohoo", "Soon", "Soong", "Sor", "Soria", "Soriano", "Sorn", "Sosa", "Sotelo", "Soth", "Soto", "Sotto", "Sou", "Soun", "Soundara", "Soung", "Souvannarath", "Souza", "Soy", "Sparks", "Spencer", "Srey", "Sridhar", "Sridharan", "Srinivas", "Srinivasan", "Sriram", "Srivastava", "Staana", "Stamaria", "Stanley", "Steele", "Stein", "Stephen", "Stephens", "Stephenson", "Stevens", "Stevenson", "Stewart", "Stone", "Strickland", "Strong", "Su", "Sua", "Suarez", "Subramaniam", "Subramanian", "Suda", "Sue", "Suen", "Suga", "Sugai", "Sugano", "Sugawara", "Sugihara", "Sugimoto", "Sugita", "Sugiura", "Sugiyama", "Suguitan", "Suh", "Sui", "Suk", "Sul", "Suleman", "Sulit", "Sullivan", "Sultan", "Sultana", "Sum", "Sumida", "Summers", "Sun", "Sunada", "Sundar", "Sundara", "Sundaram", "Sundaresan", "Sung", "Sunga", "Sunwoo", "Suon", "Supnet", "Sur", "Suresh", "Suri", "Surti", "Susanto", "Sutaria", "Suthar", "Sutton", "Suy", "Suzuki", "Svay", "Swaminathan", "Swamy", "Swanson", "Sweeney", "Sy", "Syed", "Sze", "Szeto", "Ta", "Tabata", "Tabora", "Tachibana", "Tada", "Tadeo", "Tae", "Tagawa", "Tagle", "Taguchi", "Tahara", "Tahir", "Tai", "Tailor", "Taing", "Taira", "Taitano", "Tajima", "Tak", "Takada", "Takagi", "Takahashi", "Takai", "Takaki", "Takamoto", "Takano", "Takara", "Takashima", "Takata", "Takayama", "Takeda", "Takei", "Takemoto", "Takemura", "Takenaka", "Takeshita", "Taketa", "Takeuchi", "Takhar", "Takiguchi", "Takushi", "Talati", "Talavera", "Talukder", "Talwar", "Tam", "Tamaki", "Tamanaha", "Tamashiro", "Tamayo", "Tamura", "Tan", "Tanabe", "Tanaka", "Tandon", "Taneja", "Tang", "Tangonan", "Tani", "Tanigawa", "Taniguchi", "Tanimoto", "Tanji", "Tanna", "Tanner", "Tanouye", "Tao", "Tapia", "Tariq", "Tashiro", "Tat", "Tate", "Tateishi", "Taufa", "Tavares", "Tay", "Tayag", "Taylor", "Te", "Tea", "Tecson", "Tee", "Teh", "Tejada", "Tejani", "Teng", "Tengan", "Tenorio", "Teo", "Teodoro", "Teoh", "Tep", "Terada", "Teramoto", "Teraoka", "Terrado", "Terry", "Teruya", "Tes", "Teshima", "Tesoro", "Teves", "Tewari", "Thach", "Thai", "Thaker", "Thakkar", "Thakker", "Thakore", "Thakur", "Tham", "Thammavong", "Thammavongsa", "Than", "Thang", "Thanh", "Thao", "Thapa", "The", "Thein", "Thi", "Thiara", "Thieu", "Thind", "Thom", "Thomas", "Thompson", "Thomson", "Thong", "Thor", "Thornton", "Tian", "Tien", "Tiet", "Tieu", "Tim", "Timbol", "Tin", "Ting", "Tinio", "Tiongco", "Tiongson", "Tirona", "Tith", "Titus", "Tiu", "Tiwari", "To", "Tobias", "Toda", "Todd", "Toguchi", "Toh", "Tokuda", "Tokunaga", "Toledo", "Tolentino", "Tom", "Toma", "Tomas", "Tominaga", "Tomita", "Ton", "Tong", "Tonga", "Tonnu", "Tonthat", "Toor", "Topacio", "Toribio", "Torio", "Torralba", "Torres", "Touch", "Toves", "Tow", "Townsend", "Toy", "Toyama", "Tra", "Trac", "Tram", "Tran", "Trang", "Trias", "Trieu", "Trinh", "Trinidad", "Tripathi", "Trivedi", "Troung", "Truong", "Tsai", "Tsan", "Tsang", "Tsao", "Tsay", "Tse", "Tseng", "Tso", "Tsoi", "Tsou", "Tsu", "Tsuchida", "Tsuchiya", "Tsuda", "Tsuei", "Tsui", "Tsuji", "Tsukamoto", "Tsung", "Tsutsui", "Tsutsumi", "Tu", "Tuan", "Tuason", "Tuazon", "Tucker", "Tugade", "Tumbaga", "Tummala", "Tun", "Tung", "Tuong", "Tupas", "Tupou", "Turner", "Tuy", "Ty", "Tyagi", "Tyler", "Tzeng", "Ubaldo", "Uchida", "Uchiyama", "Uddin", "Ueda", "Uehara", "Uemura", "Ueno", "Ulep", "Ullah", "Um", "Umali", "Umeda", "Umemoto", "Un", "Underwood", "Ung", "Uno", "Untalan", "Upadhyay", "Upadhyaya", "Uppal", "Urbano", "Ushijima", "Usman", "Usmani", "Usui", "Uy", "Uyeda", "Uyehara", "Uyemura", "Uyeno", "Vaid", "Vaidya", "Vaidyanathan", "Vakil", "Valdez", "Valencia", "Valentin", "Valenzuela", "Valera", "Valerio", "Valiente", "Valle", "Vallejo", "Van", "Vang", "Vann", "Varadarajan", "Vargas", "Varghese", "Varkey", "Varma", "Varughese", "Vashi", "Vasquez", "Vasudevan", "Vaswani", "Vaughn", "Vaz", "Vea", "Vega", "Velarde", "Velasco", "Velasquez", "Velez", "Veloso", "Vemuri", "Venkataraman", "Venkatesan", "Venkatesh", "Venkatraman", "Ventura", "Venugopal", "Vergara", "Verghese", "Verma", "Verzosa", "Vi", "Viado", "Vicencio", "Vicente", "Victor", "Victoria", "Victorino", "Victorio", "Vidal", "Vien", "Viernes", "Vierra", "Vij", "Villa", "Villacorta", "Villaflor", "Villafuerte", "Villaluz", "Villamor", "Villanueva", "Villar", "Villareal", "Villarin", "Villaruz", "Villegas", "Villena", "Viloria", "Vincent", "Vinh", "Vinluan", "Virani", "Viray", "Virk", "Visaya", "Visitacion", "Viswanathan", "Vitug", "Vo", "Vohra", "Vong", "Vongphachanh", "Vongphakdy", "Voong", "Vora", "Vu", "Vue", "Vuong", "Vuu", "Vy", "Vyas", "Wa", "Wada", "Wade", "Wadhwa", "Wadhwani", "Wagner", "Wah", "Waheed", "Wahid", "Wai", "Wakabayashi", "Walia", "Walker", "Wall", "Wallace", "Walsh", "Walter", "Walters", "Walton", "Wan", "Wang", "Ward", "Warner", "Warren", "Washington", "Wat", "Watanabe", "Waters", "Watkins", "Watson", "Watts", "Way", "Weaver", "Webb", "Weber", "Webster", "Wee", "Wei", "Weiss", "Welch", "Wells", "Wen", "Weng", "Werner", "West", "Whang", "Wheeler", "White", "Whitney", "Wi", "Widjaja", "Wijaya", "Wilcox", "Wilkinson", "William", "Williams", "Williamson", "Willis", "Wilson", "Win", "Wing", "Winn", "Winters", "Wise", "Wo", "Wolf", "Wolfe", "Wolfgramm", "Won", "Wong", "Woo", "Wood", "Woods", "Woodward", "Woon", "Wright", "Wu", "Wun", "Wynn", "Xavier", "Xayavong", "Xi", "Xia", "Xian", "Xiang", "Xiao", "Xie", "Xin", "Xing", "Xiong", "Xu", "Xue", "Ya", "Yabut", "Yadao", "Yadav", "Yagi", "Yalamanchili", "Yam", "Yamada", "Yamagata", "Yamaguchi", "Yamakawa", "Yamamoto", "Yamamura", "Yamanaka", "Yamane", "Yamaoka", "Yamasaki", "Yamashiro", "Yamashita", "Yamauchi", "Yamazaki", "Yambao", "Yan", "Yanagi", "Yanagihara", "Yang", "Yano", "Yao", "Yap", "Yasin", "Yasuda", "Yasui", "Yates", "Yau", "Ybanez", "Ye", "Yee", "Yeh", "Yem", "Yen", "Yeo", "Yeon", "Yep", "Yeung", "Yew", "Yi", "Yick", "Yim", "Yin", "Ying", "Yip", "Yiu", "Yo", "Yogi", "Yokoi", "Yokota", "Yokoyama", "Yom", "Yon", "Yonamine", "Yoneda", "Yonemura", "Yong", "Yoo", "Yoon", "York", "Yoshida", "Yoshihara", "Yoshikawa", "Yoshimoto", "Yoshimura", "Yoshinaga", "Yoshino", "Yoshioka", "Yoshizawa", "You", "Youn", "Young", "Yousaf", "Yousuf", "Yu", "Yuan", "Yue", "Yueh", "Yuen", "Yuh", "Yuk", "Yum", "Yumang", "Yumul", "Yun", "Yung", "Yusuf", "Zabala", "Zachariah", "Zafar", "Zaheer", "Zahid", "Zaidi", "Zaman", "Zamora", "Zane", "Zang", "Zapanta", "Zapata", "Zaragoza", "Zarate", "Zaveri", "Zee", "Zeng", "Zhai", "Zhan", "Zhang", "Zhao", "Zhen", "Zheng", "Zhong", "Zhou", "Zhu", "Zhuang", "Zhuo", "Zia", "Zimmerman", "Zong", "Zou", "Zubair", "Zulueta", "Zuniga", "Zuo"]>> <<set setup.latinaSlaveNames = ["Aaliyah", "Abby", "Abigail", "Abril", "Adelyn", "Adriana", "Adrianna", "Agusti", "Agustina", "Aileen", "Aimee", "Aisha", "Alana", "Alani", "Alanis", "Alanna", "Alejandra", "Alessandra", "Alexa", "Alexandra", "Alexia", "Alexis", "Alice", "Alicia", "Alina", "Alison", "Alissa", "Alisson", "Aliyah", "Allison", "Allyson", "Alma", "Alondra", "Alyson", "Alyssa", "Amalia", "Amanda", "Amaya", "Amber", "Amberly", "Amelia", "Amelie", "Amy", "Ana Paula", "Ana SofÃÂa", "Ana", "Anabel", "Anabella", "Anabelle", "Anais", "Analia", "Anaya", "Andrea", "Angela", "Angelica", "Angelina", "Angeline", "Angelique", "Angely", "Angie", "Aniyah", "Anna", "Annabella", "Annabelle", "Annalise", "Antonella", "Antonia", "April", "Arabella", "Arely", "Aria", "Ariana", "Arianna", "Arianny", "Ariel", "Ariella", "Arielle", "Arya", "Ashley", "Ashly", "Athena", "Aubree", "Aubrey", "Audrey", "Aurora", "Autumn", "Ava", "Avery", "Avril", "Ayleen", "Aylin", "Beatriz", "Bella", "Bianca", "Brenda", "Briana", "Brianna", "Brianny", "Brielle", "Brigitte", "Britney", "Brittany", "Brooke", "Bryanna", "Camila", "Camilla", "Carla", "Carmen", "Caroli", "Carolina", "Caroline", "Cassandra", "Cataleya", "Catali", "Catalina", "Catherine", "Cecilia", "Celeste", "Celine", "Charlotte", "Chelsea", "Chloe", "Christina", "Cindy", "Clara", "Concepción", "Constanza", "Cristina", "Crystal", "Cynthia", "Daisy", "Daleyza", "Damaris", "Dana", "Daniela", "Daniella", "Danielle", "Danna", "Dayana", "Delilah", "Denise", "Destiny", "Diana", "Dulce", "Eduarda", "Eileen", "Elena", "Eliana", "Elianna", "Elianny", "Elisa", "Eliza", "Elizabeth", "Ella", "Emely", "Emilia", "Emily", "Emma", "Erika", "Esmeralda", "Esther", "Estrella", "Eva", "Evangeline", "Evelyn", "Fabiana", "Faith", "Fatima", "Fernanda", "Fiorella", "Florencia", "Francesca", "Gabriela", "Gabriella", "Gabrielle", "Genesis", "Geraldine", "Gia", "Gianna", "Gina", "Giselle", "Grace", "Guadalupe", "Hailey", "Hailie", "Haley", "Hannah", "Haylee", "Hayley", "Hazel", "Heaven", "Heidi", "Heidy", "Helen", "Imani", "Ingrid", "Irene", "Iris", "Isabel", "Isabela", "Isabella", "Isabelle", "Isidora", "Isis", "Itzel", "Ivanna", "Izabela", "Izabella", "Jacqueline", "Jada", "Jade", "Jaelyn", "Jaelynn", "Jaliyah", "Jamie", "Janelle", "Jaslene", "Jasmin", "Jasmine", "Jayda", "Jayla", "Jaylah", "Jaylee", "Jayleen", "Jaylene", "Jaylin", "Jaylyn", "Jazlyn", "Jazmin", "JazmÃÂn", "Jazmine", "Jazzlyn", "Jennifer", "Jessica", "Jessie", "Jimena", "Jocelyn", "Johanna", "José", "Josefa", "Josefina", "Joselyn", "Juana", "Julia", "Juliana", "Julianna", "Julie", "Juliet", "Julieta", "Juliette", "Julissa", "Kaelyn", "Kailey", "Kailyn", "Kaitlyn", "Kamila", "Karen", "Karina", "Karla", "Kassandra", "Kate", "Katelyn", "Katelynn", "Katherine", "Katie", "Kayla", "Kaylee", "Kayleen", "Kayleigh", "Kaylie", "Kaylin", "Keila", "Keily", "Kelly", "Kelsey", "Kendra", "Keyla", "Khloe", "Kiara", "Kimberly", "Krystal", "Kylee", "Kylie", "Laila", "Laura", "Lauren", "Layla", "Lea", "Leah", "Leanna", "Leila", "Leilani", "Lesley", "Leslie", "Lesly", "Leyla", "Lia", "Liana", "Liliana", "Lillian", "Lily", "Lindsay", "Litzy", "Liz", "Lizbeth", "Lola", "London", "Londyn", "Louisa", "Lucia", "LucÃÂa", "Luciana", "Luisa", "Luiza", "Luna", "Luz", "Mabel", "Mackenzie", "Madeline", "Madelyn", "Madison", "Magaly", "Magdalena", "Maia", "Maite", "Makayla", "Malia", "Manuela", "MarÃÂa Alejandra", "MarÃÂa Camila", "Maria Fernanda", "MarÃÂa José", "MarÃÂa Paula", "Maria", "MarÃÂa", "Mariah", "Mariana", "Marilyn", "Marina", "Marisol", "Marjorie", "Marti", "Martina", "Maya", "McKenzie", "Megan", "Melanie", "Melany", "Melina", "Melissa", "Melody", "Mia", "MÃÂa", "Miah", "Micaela", "Michelle", "Mikaela", "Mikayla", "Mila", "Milagros", "Milan", "Miley", "Miranda", "Miriam", "Monica", "Monserrat", "Montserrat", "Mya", "Nadia", "Nancy", "Naomi", "Nashla", "Nashley", "Natalia", "Natalie", "Nataly", "Natasha", "Nathalia", "Nathalie", "Nathaly", "Nayeli", "Nevaeh", "Nicole", "Nina", "Noa", "Noemi", "NoemÃÂ", "Nyah", "Nyla", "Nylah", "Olivia", "Paige", "Pamela", "Paola", "Paris", "Paula", "Paulina", "Penelope", "Perla", "Peyton", "Rachel", "Rafaella", "Ramo", "Raquel", "Rebeca", "Rebecca", "Regina", "Renata", "Rihanna", "Riley", "Romina", "Rosa", "Rose", "Roselyn", "Ruby", "Ruth", "Sabrina", "Sadie", "Salome", "Salomé", "Samantha", "Samara", "Sandra", "Sara", "Sarah", "Sarai", "Sariah", "Sasha", "Savanna", "Savannah", "Scarlet", "Scarlett", "Selena", "Serenity", "Shayla", "Sherlyn", "Shirley", "Sienna", "Sierra", "Skyla", "Skylah", "Skylar", "Skyler", "Sofia", "SofÃÂa", "Sonia", "Sophia", "Sophie", "Stacey", "Stacy", "Stella", "Stephanie", "Stephany", "Summer", "Tatiana", "Taylor", "Tiana", "Tiffany", "Trinity", "Valenti", "Valentina", "Valeria", "Valerie", "Valery", "Vanessa", "Veronica", "Victoria", "Violet", "Violeta", "Vivian", "Viviana", "Wendy", "Xime", "Ximena", "Yamilet", "Yamileth", "Yaretzi", "Yasmin", "Yesenia", "Zara", "Zoe", "Zoey"]>> -<<set setup.latinaSlaveSurnames = ["Abad", "Abalos", "Abarca", "Abbott", "Abel", "Abella", "Abeyta", "Abila", "Aboytes", "Abraham", "Abrams", "Abrego", "Abreu", "Abril", "Abundis", "Abundiz", "Aburto", "Acebedo", "Acedo", "Aceituno", "Acero", "Acevedo", "Aceves", "Acosta", "Acuna", "Adam", "Adame", "Adames", "Adams", "Adan", "Adkins", "Adorno", "Adrian", "Afanador", "Agostini", "Agosto", "Agramonte", "Agredano", "Aguado", "Aguas", "Aguayo", "Agudelo", "Agudo", "Aguero", "Aguiar", "Aguila", "Aguilar", "Aguilera", "Aguillar", "Aguillon", "Aguinaga", "Aguiniga", "Aguirre", "Agundez", "Agustin", "Ahumada", "Aispuro", "Alameda", "Alamilla", "Alamillo", "Alamo", "Alanis", "Alaniz", "Alarcon", "Alarid", "Alas", "Alatorre", "Alba", "Alban", "Albarado", "Albarez", "Albarran", "Albert", "Alberto", "Albino", "Albor", "Alcala", "Alcantar", "Alcantara", "Alcaraz", "Alcazar", "Alcocer", "Alcon", "Alcorta", "Alcoser", "Aldaba", "Aldaco", "Aldama", "Aldana", "Aldape", "Alday", "Aldaz", "Alderete", "Aldrete", "Alegre", "Alegria", "Alejandre", "Alejandro", "Alejo", "Alejos", "Aleman", "Alers", "Alexander", "Alfaro", "Alferez", "Alfonso", "Alford", "Algarin", "Ali", "Aliaga", "Alicea", "Alire", "Allen", "Allende", "Allison", "Almada", "Almaguer", "Almanza", "Almanzar", "Almaraz", "Almazan", "Almeda", "Almeida", "Almendarez", "Almodovar", "Almonte", "Alonso", "Alonzo", "Alpizar", "Altamirano", "Alva", "Alvarado", "Alvardo", "Alvarenga", "Alvares", "Alvarez", "Alvear", "Alvelo", "Alverio", "Alves", "Alviar", "Alvidrez", "Alvillar", "Alvira", "Alviso", "Alvizo", "Alzate", "Amado", "Amador", "Amaral", "Amarillas", "Amaro", "Amato", "Amaya", "Ambriz", "Ambrocio", "Ambrosio", "Ames", "Amescua", "Amesquita", "Amezcua", "Amezola", "Amezquita", "Amigon", "Amos", "Amparan", "Amparo", "Anaya", "Anchondo", "Ancira", "Andalon", "Andazola", "Andersen", "Anderson", "Andino", "Andrade", "Andrades", "Andres", "Andrew", "Andrews", "Andujar", "Andujo", "Angel", "Angeles", "Angelo", "Anguiano", "Angulo", "Anthony", "Antigua", "Antillon", "Anton", "Antonio", "Antuna", "Antunez", "Anzaldo", "Anzaldua", "Anzures", "Aparicio", "Apodaca", "Apolinar", "Aponte", "Aquilar", "Aquino", "Aracena", "Aragon", "Araiza", "Arambula", "Aramburo", "Arana", "Aranda", "Arango", "Araujo", "Arauz", "Araya", "Arballo", "Arbelaez", "Arboleda", "Arce", "Arceo", "Archer", "Archibeque", "Archila", "Archuleta", "Archuletta", "Arcia", "Arciga", "Arcila", "Arciniega", "Arcos", "Ardila", "Ardon", "Arebalo", "Arechiga", "Arellanes", "Arellano", "Arenas", "Arencibia", "Arenivas", "Ares", "Arevalo", "Arevalos", "Arguelles", "Arguello", "Argueta", "Arguijo", "Argumedo", "Arias", "Arismendez", "Arispe", "Arista", "Aristizabal", "Arita", "Ariza", "Arizaga", "Arizmendi", "Arizola", "Arizpe", "Arjona", "Armas", "Armendarez", "Armendariz", "Armenta", "Armijo", "Armstrong", "Arnold", "Arocha", "Arocho", "Aros", "Arrambide", "Arrazola", "Arreaga", "Arredondo", "Arreguin", "Arrellano", "Arreola", "Arriaga", "Arriaza", "Arrieta", "Arriola", "Arroyave", "Arroyo", "Arroyos", "Arteaga", "Artiaga", "Artiga", "Artiles", "Arvelo", "Arviso", "Arvizo", "Arvizu", "Arzaga", "Arzate", "Arzola", "Arzu", "Arzuaga", "Ascencio", "Asencio", "Ashley", "Astacio", "Astorga", "Astudillo", "Asuncion", "Atencio", "Atilano", "Atkins", "Atkinson", "Austin", "Avalos", "Avelar", "Avelino", "Avellaneda", "Avena", "Avendano", "Avery", "Avila", "Aviles", "Avilez", "Avilla", "Avina", "Avitia", "Ayala", "Aybar", "Ayers", "Ayon", "Azcona", "Azevedo", "Azpeitia", "Azua", "Baca", "Bachicha", "Badilla", "Badillo", "Baena", "Baerga", "Baez", "Baeza", "Bahena", "Bailey", "Bailon", "Baird", "Baires", "Baiza", "Baker", "Balandran", "Balboa", "Balbuena", "Balcazar", "Baldenegro", "Balderas", "Balderrama", "Baldonado", "Baldwin", "Ball", "Balladares", "Ballard", "Ballester", "Ballesteros", "Balleza", "Balli", "Balmaceda", "Baltazar", "Baltierra", "Baltodano", "Banales", "Banda", "Banderas", "Banegas", "Banks", "Banos", "Banuelos", "Baquero", "Bara", "Barahona", "Barajas", "Barba", "Barber", "Barberena", "Barbosa", "Barboza", "Barcelo", "Barcena", "Barcenas", "Barcia", "Barco", "Bardales", "Barela", "Bargas", "Barillas", "Barker", "Barnes", "Barnett", "Barocio", "Baron", "Barona", "Baros", "Barquero", "Barr", "Barra", "Barragan", "Barrales", "Barranco", "Barrantes", "Barraza", "Barreda", "Barreiro", "Barrera", "Barreras", "Barrero", "Barreto", "Barrett", "Barrientes", "Barrientez", "Barrientos", "Barriga", "Barrio", "Barrios", "Barron", "Barros", "Barroso", "Barry", "Bartlett", "Bartolo", "Barton", "Basaldua", "Basilio", "Basquez", "Bass", "Bastida", "Bastidas", "Basulto", "Basurto", "Batalla", "Bates", "Batista", "Batres", "Batrez", "Battle", "Bauer", "Bautista", "Bauza", "Baxter", "Bayardo", "Bayona", "Baza", "Bazaldua", "Bazan", "Beach", "Bean", "Beard", "Beas", "Beasley", "Beato", "Beauchamp", "Becerra", "Becerril", "Beck", "Becker", "Bedolla", "Bedoy", "Bedoya", "Bega", "Bejar", "Bejarano", "Belen", "Bell", "Bello", "Belloso", "Belman", "Belmares", "Belmonte", "Belmontes", "Beltran", "Beltre", "Benavente", "Benavides", "Benavidez", "Bencomo", "Bencosme", "Bender", "Benites", "Benitez", "Benito", "Benjamin", "Bennett", "Benson", "Bentley", "Benton", "Berber", "Berg", "Berger", "Berlanga", "Bermea", "Bermejo", "Bermeo", "Bermudes", "Bermudez", "Bernabe", "Bernal", "Bernard", "Bernardino", "Bernardo", "Berrio", "Berrios", "Berroa", "Berrones", "Berry", "Berumen", "Best", "Betances", "Betancourt", "Betancur", "Bianchi", "Bianco", "Bibian", "Bird", "Bishop", "Black", "Blackburn", "Blackwell", "Blair", "Blake", "Blancarte", "Blancas", "Blanchard", "Blanco", "Blandon", "Blankenship", "Blas", "Blea", "Bobadilla", "Bocanegra", "Bodden", "Bohorquez", "Bojorquez", "Bolanos", "Bolivar", "Bolton", "Bond", "Bonet", "Bonifacio", "Bonilla", "Bonillas", "Bonner", "Booker", "Boone", "Booth", "Borboa", "Borbon", "Borda", "Borges", "Borja", "Borjas", "Borjon", "Borquez", "Borrayo", "Borrego", "Borrero", "Borunda", "Bosch", "Bosque", "Bosquez", "Botello", "Botero", "Bowen", "Bowers", "Bowman", "Boyd", "Boyer", "Boyle", "Boza", "Bracamonte", "Bracamontes", "Bracero", "Bradford", "Bradley", "Bradshaw", "Brady", "Brambila", "Bran", "Branch", "Brand", "Brandon", "Brandt", "Braud", "Braun", "Bravo", "Bray", "Brea", "Breceda", "Brenes", "Brennan", "Bretado", "Breton", "Brewer", "Brewster", "Bribiesca", "Briceno", "Bridges", "Briggs", "Bright", "Bringas", "Briones", "Briseno", "Brito", "Britton", "Brizuela", "Brock", "Brooks", "Brown", "Browne", "Browning", "Bruce", "Bruno", "Bryan", "Bryant", "Buchanan", "Bucio", "Buck", "Buckley", "Buelna", "Buendia", "Bueno", "Buenrostro", "Buentello", "Bugarin", "Buitrago", "Buitron", "Bullock", "Burbano", "Burch", "Burciaga", "Burgess", "Burgos", "Burgueno", "Burke", "Burnett", "Burns", "Burrell", "Burrola", "Burruel", "Burton", "Bush", "Bustamante", "Bustillo", "Bustillos", "Bustos", "Butler", "Byrd", "Byrne", "Caamano", "Caba", "Cabada", "Caballero", "Caban", "Cabanas", "Cabanillas", "Cabello", "Cabeza", "Cabezas", "Cabral", "Cabrales", "Cabreja", "Cabrera", "Cabriales", "Caceres", "Cacho", "Cadavid", "Cadena", "Cadenas", "Cadiz", "Cahue", "Caicedo", "Cain", "Cajigas", "Cajina", "Caldera", "Calderon", "Caldwell", "Calero", "Calhoun", "Calix", "Calixto", "Callahan", "Calle", "Calleja", "Callejas", "Calleros", "Calles", "Calo", "Calva", "Calvario", "Calvillo", "Calvo", "Calzada", "Calzadilla", "Camacho", "Camara", "Camarena", "Camargo", "Camarillo", "Camberos", "Cambron", "Camejo", "Camero", "Cameron", "Camilo", "Camp", "Campa", "Campana", "Campas", "Campbell", "Campillo", "Campo", "Campos", "Campoverde", "Campusano", "Campuzano", "Canada", "Canal", "Canales", "Canas", "Cancel", "Canchola", "Cancino", "Candela", "Candelaria", "Candelario", "Candelas", "Candia", "Candido", "Canedo", "Canela", "Canez", "Canizales", "Canizalez", "Cannon", "Cano", "Canseco", "Cansino", "Cantero", "Cantillo", "Canto", "Canton", "Cantor", "Cantrell", "Cantu", "Canty", "Capellan", "Capetillo", "Capistran", "Capo", "Capote", "Carabajal", "Caraballo", "Carachure", "Carapia", "Caraveo", "Carbajal", "Carballo", "Carbonell", "Carcamo", "Card", "Cardenas", "Cardiel", "Cardona", "Cardosa", "Cardoso", "Cardoza", "Cardozo", "Careaga", "Carey", "Carias", "Carillo", "Carino", "Carlin", "Carlo", "Carlos", "Carlson", "Carmen", "Carmona", "Carnero", "Carney", "Caro", "Carpenter", "Carpio", "Carr", "Carranco", "Carranza", "Carrasco", "Carrasquillo", "Carrazco", "Carreno", "Carreon", "Carrera", "Carreras", "Carrero", "Carretero", "Carreto", "Carrillo", "Carrion", "Carrizal", "Carrizales", "Carrizosa", "Carroll", "Carson", "Cartagena", "Carter", "Caruso", "Carvajal", "Carvalho", "Carver", "Casado", "Casados", "Casanas", "Casanova", "Casares", "Casarez", "Casarrubias", "Casas", "Casasola", "Casaus", "Casco", "Case", "Caseres", "Casey", "Cash", "Casiano", "Casias", "Casillas", "Casimiro", "Casique", "Cassidy", "Casso", "Castaneda", "Castano", "Castanon", "Castelan", "Castellano", "Castellanos", "Castello", "Castellon", "Castelo", "Casteneda", "Castilla", "Castilleja", "Castillo", "Castillon", "Castor", "Castorena", "Castrejon", "Castrellon", "Castrillo", "Castrillon", "Castro", "Castruita", "Catala", "Catalan", "Catano", "Caudillo", "Cavazos", "Cayetano", "Cazares", "Cazarez", "Cdebaca", "Cea", "Ceballos", "Cebreros", "Cecena", "Cedano", "Cedeno", "Cedillo", "Cedillos", "Ceja", "Celaya", "Celedon", "Celestino", "Celis", "Cendejas", "Ceniceros", "Centeno", "Cepeda", "Cepero", "Cera", "Cerda", "Cereceres", "Cerezo", "Cerna", "Ceron", "Cerrato", "Cerrillo", "Cerritos", "Cerros", "Cervantes", "Cervantez", "Cervera", "Cesar", "Cesena", "Cespedes", "Cevallos", "Chacon", "Chagolla", "Chagoya", "Chaidez", "Chaires", "Chairez", "Chamberlain", "Chambers", "Chamorro", "Champion", "Chan", "Chandler", "Chang", "Chao", "Chapa", "Chaparro", "Chapman", "Charles", "Chase", "Chavana", "Chavarin", "Chavarria", "Chavera", "Chavero", "Chaves", "Chavez", "Chavira", "Chavis", "Chavoya", "Checo", "Chen", "Cherry", "Chevalier", "Chevere", "Chevez", "Chica", "Chicas", "Chico", "Childers", "Chin", "Chinchilla", "Chino", "Chiriboga", "Chirino", "Chirinos", "Chong", "Chow", "Christensen", "Christian", "Christopher", "Church", "Cibrian", "Cid", "Cienfuegos", "Cifuentes", "Cintron", "Ciprian", "Cipriano", "Cirilo", "Cirino", "Cisnero", "Cisneros", "Clara", "Clark", "Clarke", "Claro", "Claros", "Class", "Claudio", "Clavel", "Clavijo", "Clay", "Clayton", "Clement", "Clemente", "Clements", "Cline", "Cobarrubias", "Cobb", "Cobian", "Cobo", "Cobos", "Coca", "Cochran", "Coello", "Coffey", "Cohen", "Cole", "Coleman", "Colin", "Colina", "Colindres", "Coll", "Collado", "Collazo", "Collazos", "Collier", "Collins", "Colmenares", "Colmenero", "Colocho", "Colon", "Colorado", "Colunga", "Comacho", "Comas", "Combs", "Compean", "Compton", "Concepcion", "Concha", "Conchas", "Conde", "Conejo", "Conley", "Conner", "Connor", "Conrad", "Constancio", "Constante", "Constantino", "Constanza", "Consuegra", "Contrera", "Contreras", "Conway", "Cook", "Cooke", "Cooper", "Copado", "Copeland", "Cora", "Corado", "Coral", "Corchado", "Cordero", "Cordoba", "Cordon", "Cordova", "Corea", "Coreas", "Corella", "Coria", "Cornejo", "Cornelio", "Corniel", "Cornier", "Corona", "Coronado", "Coronel", "Corpus", "Corral", "Corrales", "Correa", "Corredor", "Corro", "Cortes", "Cortez", "Cortina", "Cortinas", "Corvera", "Corzo", "Cosio", "Cosme", "Coss", "Cossio", "Costa", "Costales", "Costello", "Costilla", "Cota", "Coto", "Cotto", "Cotton", "Courtney", "Covarrubias", "Cowan", "Cox", "Coy", "Craig", "Crane", "Crawford", "Crespin", "Crespo", "Criado", "Criollo", "Crisanto", "Crisostomo", "Crispin", "Cristobal", "Crosby", "Cross", "Cruz", "Cruzado", "Cuadra", "Cuadrado", "Cuadros", "Cuartas", "Cuba", "Cubas", "Cubero", "Cubias", "Cubillos", "Cuebas", "Cuellar", "Cuello", "Cuen", "Cuenca", "Cuervo", "Cuesta", "Cuestas", "Cueto", "Cueva", "Cuevas", "Cummings", "Cunningham", "Curbelo", "Curet", "Curiel", "Curry", "Curtis", "Custodio", "Dacosta", "Dailey", "Dale", "Dalton", "Daly", "Damian", "Daniel", "Daniels", "Dasilva", "Daugherty", "Davalos", "Davenport", "David", "Davidson", "Davies", "Davila", "Davilla", "Davis", "Dawson", "Day", "Daza", "Dealba", "Dean", "Deanda", "Dearmas", "Deavila", "Decasas", "Decastro", "Decker", "Dedios", "Degante", "Degollado", "Deharo", "Deherrera", "Dehoyos", "Dejesus", "Delacerda", "Delacruz", "Delafuente", "Delagarza", "Delaguila", "Delahoya", "Delahoz", "Delaluz", "Delamora", "Delaney", "Delangel", "Delao", "Delapaz", "Delapena", "Delara", "Delariva", "Delarocha", "Delarosa", "Delatorre", "Delavega", "Delbosque", "Delcampo", "Delcarmen", "Delcastillo", "Delcid", "Deleon", "Delfin", "Delgadillo", "Delgado", "Delira", "Delmoral", "Deloera", "Delosangeles", "Delosreyes", "Delosrios", "Delossantos", "Delpino", "Delpozo", "Delreal", "Delrio", "Delrosario", "Deltoro", "Deluna", "Delvalle", "Delvillar", "Dena", "Denis", "Deniz", "Dennis", "Denton", "Depaz", "Depena", "Deras", "Desantiago", "Desantos", "Desoto", "Desouza", "Devora", "Dial", "Dias", "Diaz", "Diazdeleon", "Dickerson", "Dickinson", "Dickson", "Diego", "Dieguez", "Diez", "Dillard", "Dillon", "Dilone", "Dimas", "Diosdado", "Disla", "Dixon", "Dodd", "Dodson", "Doe", "Dolores", "Domenech", "Domingo", "Domingues", "Dominguez", "Dominquez", "Donado", "Donahue", "Donaldson", "Donato", "Dones", "Donis", "Donjuan", "Donnelly", "Donoso", "Donovan", "Dorado", "Dorame", "Doran", "Dorantes", "Doria", "Dorsey", "Dorta", "Dossantos", "Dougherty", "Douglas", "Downey", "Downing", "Downs", "Doyle", "Dozal", "Drake", "Duarte", "Dubois", "Dubon", "Dudley", "Duenas", "Duenes", "Duenez", "Duffy", "Duke", "Dumas", "Duncan", "Dunlap", "Dunn", "Duprey", "Duque", "Duran", "Durand", "Durant", "Durazo", "Durham", "Duron", "Dutan", "Dye", "Dyer", "Eaton", "Echavarria", "Echevarria", "Echeverri", "Echeverria", "Echeverry", "Edwards", "Eguia", "Elenes", "Elias", "Elizalde", "Elizarraras", "Elizarraraz", "Elizondo", "Elliott", "Ellis", "Ellison", "Elvira", "Emerson", "Enamorado", "Encalada", "Encarnacion", "Encinas", "Encinias", "Enciso", "England", "English", "Enrique", "Enriques", "Enriquez", "Equihua", "Erazo", "Erickson", "Erives", "Ernandez", "Escajeda", "Escalante", "Escalera", "Escalona", "Escamilla", "Escandon", "Escarcega", "Escareno", "Escatel", "Escobar", "Escobedo", "Escorcia", "Escoto", "Escudero", "Escutia", "Espada", "Espaillat", "Espana", "Esparza", "Espejo", "Esperanza", "Espericueta", "Espin", "Espinal", "Espindola", "Espino", "Espinola", "Espinosa", "Espinoza", "Espiritu", "Espitia", "Esposito", "Esqueda", "Esquer", "Esquibel", "Esquilin", "Esquivel", "Esquivias", "Esteban", "Estela", "Estes", "Esteves", "Estevez", "Estrada", "Estrella", "Estremera", "Estupinan", "Euceda", "Eusebio", "Evangelista", "Evans", "Everett", "Ewing", "Fabela", "Fabian", "Facio", "Facundo", "Fajardo", "Falcon", "Fallon", "Familia", "Farfan", "Faria", "Farias", "Farinas", "Farley", "Farmer", "Farrell", "Farris", "Faulkner", "Fausto", "Favela", "Favila", "Faz", "Febles", "Febres", "Febus", "Federico", "Felan", "Feliciano", "Felipe", "Felix", "Feliz", "Ferguson", "Feria", "Ferman", "Fermin", "Fernandes", "Fernandez", "Fernando", "Ferrari", "Ferreira", "Ferreiro", "Ferrel", "Ferrell", "Ferrer", "Ferrera", "Ferreras", "Ferreyra", "Ferro", "Ferrufino", "Fiallo", "Fiallos", "Field", "Fields", "Fierro", "Fierros", "Figeroa", "Figueras", "Figueredo", "Figuereo", "Figueroa", "Fimbres", "Finch", "Finley", "Fischer", "Fisher", "Fitzgerald", "Fitzpatrick", "Flamenco", "Flecha", "Fleitas", "Fleites", "Fleming", "Fletcher", "Fletes", "Florencio", "Florentino", "Flores", "Florez", "Florian", "Flowers", "Floyd", "Flynn", "Foley", "Fong", "Fonseca", "Font", "Fontanez", "Fontes", "Forbes", "Ford", "Forero", "Forte", "Fortuna", "Foster", "Fournier", "Fowler", "Fox", "Fraga", "Fragoso", "Fraijo", "Fraire", "Franceschi", "Francis", "Francisco", "Franco", "Frank", "Franklin", "Franqui", "Fraser", "Fraticelli", "Frausto", "Frayre", "Frazier", "Fred", "Frederick", "Freeman", "Fregoso", "Freire", "Freitas", "French", "Fresquez", "Freyre", "Frias", "Friedman", "Fritz", "Frost", "Frutos", "Fry", "Frye", "Fuente", "Fuentes", "Fuentez", "Fuerte", "Fuertes", "Fulgencio", "Fuller", "Fulton", "Fundora", "Funes", "Funez", "Gabaldon", "Gabriel", "Gaeta", "Gaines", "Gaitan", "Galan", "Galarza", "Galaviz", "Galaz", "Galban", "Galdamez", "Galeana", "Galeano", "Galeas", "Galeno", "Galicia", "Galindez", "Galindo", "Gallagher", "Gallardo", "Gallego", "Gallegos", "Gallo", "Galloway", "Galo", "Galvan", "Galvez", "Galvin", "Galvis", "Gama", "Gamarra", "Gamble", "Gamboa", "Gamero", "Games", "Gamez", "Gamino", "Gandara", "Gandarilla", "Gaona", "Garate", "Garay", "Garces", "Garcia", "Garciagarcia", "Garcialopez", "Garciaperez", "Garcilazo", "Gardea", "Gardner", "Garduno", "Garfias", "Garibaldi", "Garibay", "Garica", "Garner", "Garnica", "Garrett", "Garrido", "Garriga", "Garrison", "Garsia", "Garza", "Garzon", "Gasca", "Gascon", "Gaspar", "Gastelum", "Gaston", "Gates", "Gatica", "Gaucin", "Gauna", "Gautier", "Gavidia", "Gavilanes", "Gavina", "Gaviria", "Gaxiola", "Gay", "Gaytan", "Gayton", "Genao", "Gentry", "George", "Gerardo", "Gerena", "German", "Germosen", "Geronimo", "Gervacio", "Gibbons", "Gibbs", "Gibson", "Gil", "Gilbert", "Giles", "Gill", "Gillespie", "Gilmore", "Gimenez", "Gines", "Giordano", "Giraldo", "Giron", "Glass", "Glenn", "Gloria", "Glover", "Godina", "Godines", "Godinez", "Godoy", "Goff", "Golden", "Goldstein", "Gomes", "Gomez", "Gongora", "Gonsales", "Gonsalez", "Gonsalves", "Gonzaga", "Gonzales", "Gonzalez", "Good", "Goodman", "Goodwin", "Gordillo", "Gordon", "Goris", "Gorman", "Gotay", "Goto", "Gould", "Govea", "Goytia", "Grace", "Gracia", "Graciano", "Gradilla", "Grado", "Graham", "Grajales", "Grajeda", "Gramajo", "Granada", "Granado", "Granados", "Granda", "Grande", "Granillo", "Grant", "Grau", "Graves", "Gray", "Graziano", "Greco", "Green", "Greene", "Greer", "Gregorio", "Gregory", "Griego", "Griffin", "Griffith", "Grijalva", "Grillo", "Grimaldo", "Grimes", "Grisales", "Gross", "Grullon", "Guadalupe", "Guadamuz", "Guadarrama", "Guadiana", "Guajardo", "Guaman", "Guandique", "Guardado", "Guardiola", "Gudiel", "Gudino", "Guebara", "Guel", "Guereca", "Guerra", "Guerrero", "Guevara", "Guido", "Guijarro", "Guijosa", "Guillen", "Guillermo", "Guitron", "Guity", "Guizar", "Gurrola", "Gurule", "Gusman", "Guthrie", "Gutierres", "Gutierrez", "Guy", "Guzman", "Haas", "Hahn", "Hale", "Haley", "Hall", "Hamilton", "Hammond", "Hampton", "Hancock", "Hanna", "Hansen", "Hanson", "Hard", "Hardin", "Harding", "Hardy", "Harmon", "Haro", "Haros", "Harper", "Harrell", "Harrington", "Harris", "Harrison", "Hart", "Hartman", "Harvey", "Hastings", "Hawkins", "Hayden", "Hayes", "Haynes", "Hays", "Heath", "Hebert", "Henandez", "Henao", "Henderson", "Hendricks", "Hendrickson", "Hendrix", "Henriquez", "Henry", "Hensley", "Henson", "Herandez", "Heras", "Herbert", "Hercules", "Heredia", "Herman", "Hermida", "Hermosillo", "Hernandes", "Hernandez", "Herrada", "Herrejon", "Herrera", "Herrero", "Herring", "Herron", "Hess", "Hewitt", "Hickey", "Hickman", "Hicks", "Hidalgo", "Hidrogo", "Higareda", "Higgins", "Higuera", "Hilario", "Hill", "Hilton", "Hincapie", "Hines", "Hinojos", "Hinojosa", "Hipolito", "Hobbs", "Hodge", "Hodges", "Hodgson", "Hoffman", "Hogan", "Holden", "Holder", "Holguin", "Holland", "Holloway", "Holman", "Holmes", "Holt", "Hood", "Hooper", "Hoover", "Hopkins", "Hopper", "Horn", "Horne", "Horta", "Horton", "House", "Houston", "Howard", "Howe", "Howell", "Hoyos", "Huaman", "Huante", "Hubbard", "Huber", "Hudson", "Huerta", "Huertas", "Huesca", "Huezo", "Huff", "Huffman", "Hughes", "Hugo", "Huitron", "Huizar", "Hull", "Humphrey", "Hunt", "Hunter", "Hurley", "Huron", "Hurst", "Hurtado", "Hutchinson", "Hyde", "Ibanez", "Ibarra", "Iglesias", "Ignacio", "Illescas", "Inda", "Infante", "Ingram", "Iniguez", "Inoa", "Inocencio", "Interiano", "Inzunza", "Ipina", "Iracheta", "Iraheta", "Iriarte", "Irias", "Iribe", "Irigoyen", "Irizarry", "Irwin", "Isaac", "Isais", "Isaza", "Isidoro", "Isidro", "Islas", "Iturralde", "Izaguirre", "Izquierdo", "Jacinto", "Jackson", "Jacob", "Jacobo", "Jacobs", "Jacobson", "Jacome", "Jacques", "Jacquez", "Jaime", "Jaimes", "Jaimez", "Jalomo", "James", "Jaques", "Jaquez", "Jara", "Jaramillo", "Jarquin", "Jarvis", "Jaso", "Jasso", "Jauregui", "Javier", "Jefferson", "Jenkins", "Jennings", "Jensen", "Jerez", "Jeronimo", "Jesus", "Jimenes", "Jimenez", "Jiminez", "Jiron", "Joaquin", "John", "Johns", "Johnson", "Johnston", "Jojola", "Jones", "Jordan", "Jorge", "Jose", "Joseph", "Jovel", "Joya", "Juan", "Juarbe", "Juarez", "Julian", "Junco", "Jurado", "Jusino", "Justiniano", "Justo", "Kaiser", "Kane", "Kaplan", "Katz", "Kaufman", "Keith", "Keller", "Kelley", "Kelly", "Kemp", "Kennedy", "Kent", "Kerr", "Key", "Keyes", "Khan", "Kim", "King", "Kinney", "Kirby", "Kirk", "Klein", "Kline", "Knapp", "Knight", "Knowles", "Knox", "Koch", "Kramer", "Krause", "Laboy", "Labra", "Labrada", "Labrador", "Lacayo", "Lafuente", "Lago", "Lagos", "Laguna", "Lagunas", "Lagunes", "Lainez", "Lajara", "Lake", "Lam", "Lamadrid", "Lamar", "Lamas", "Lamb", "Lambert", "Lamboy", "Lancaster", "Landa", "Landaverde", "Landeros", "Landin", "Landry", "Lane", "Lang", "Langarica", "Lange", "Lantigua", "Lanuza", "Lanza", "Lao", "Laporte", "Lara", "Laracuente", "Laredo", "Lares", "Larez", "Larin", "Larios", "Larosa", "Larranaga", "Larrea", "Larsen", "Larson", "Lasalle", "Lascano", "Lasso", "Lastra", "Latorre", "Lau", "Laureano", "Laurel", "Lavin", "Lawrence", "Lawson", "Lay", "Lazalde", "Lazaro", "Lazcano", "Lazo", "Lazos", "Leach", "Leal", "Leandro", "Leanos", "Leblanc", "Lebron", "Lechuga", "Ledesma", "Ledezma", "Lee", "Legaspi", "Leger", "Leija", "Leiva", "Lema", "Lemon", "Lemos", "Lemus", "Leo", "Leon", "Leonard", "Leonardo", "Leos", "Lepe", "Lerma", "Leslie", "Lester", "Levario", "Levine", "Levy", "Lewis", "Ley", "Leyba", "Leyva", "Lezama", "Lezcano", "Licea", "Licon", "Licona", "Liendo", "Liera", "Lima", "Limas", "Limon", "Limones", "Linan", "Linares", "Linarez", "Lind", "Lindo", "Lindsay", "Lindsey", "Lino", "Lira", "Liranzo", "Liriano", "Liscano", "Little", "Livingston", "Liz", "Lizama", "Lizaola", "Lizardi", "Lizardo", "Lizarraga", "Lizcano", "Llamas", "Llanas", "Llanes", "Llano", "Llanos", "Llerena", "Llorens", "Lloyd", "Loa", "Loaiza", "Loayza", "Lobato", "Lobo", "Lobos", "Lockhart", "Loera", "Loeza", "Logan", "Loja", "Lomas", "Lombardo", "Lombera", "Lomeli", "Lona", "Londono", "Long", "Longoria", "Loor", "Lopera", "Lopes", "Lopez", "Lopezgarcia", "Lopezhernandez", "Lopezlopez", "Lopezmartinez", "Lora", "Lord", "Loredo", "Lorenzana", "Lorenzo", "Loreto", "Losada", "Losano", "Losoya", "Louis", "Lovato", "Love", "Lowe", "Lowery", "Loya", "Loyola", "Loza", "Lozada", "Lozano", "Lozoya", "Lua", "Lucas", "Lucatero", "Lucena", "Lucero", "Luciano", "Lucio", "Luera", "Lueras", "Luevano", "Luevanos", "Lugo", "Luis", "Lujan", "Lujano", "Lule", "Lumbreras", "Luna", "Lund", "Lung", "Lupercio", "Lupian", "Luque", "Luquin", "Lutz", "Luviano", "Luz", "Lynch", "Lynn", "Lyons", "Macareno", "Macario", "MacDonald", "Macedo", "Machado", "Machin", "Machuca", "Macias", "Maciel", "Mack", "Mackey", "Madden", "Madera", "Madero", "Madrid", "Madrigal", "Madril", "Madriz", "Madueno", "Maes", "Maese", "Maestas", "Maestre", "Maez", "Magallan", "Magallanes", "Magallanez", "Magallon", "Magana", "Magdaleno", "Mahoney", "Mairena", "Maisonet", "Majano", "Malacara", "Malagon", "Malave", "Maldonado", "Malone", "Malpica", "Maltez", "Maltos", "Mancera", "Mancha", "Mancia", "Mancias", "Mancilla", "Mancillas", "Mancinas", "Mandujano", "Mangual", "Manjarrez", "Mann", "Manning", "Manon", "Manrique", "Manriquez", "Mansilla", "Manso", "Mantilla", "Manuel", "Manzanares", "Manzanarez", "Manzano", "Manzo", "Mar", "Maradiaga", "Maravilla", "Marban", "Marcano", "Marcelino", "Marcelo", "Marchan", "Marchena", "Marcia", "Marcial", "Marcos", "Marcus", "Marenco", "Marentes", "Mares", "Marez", "Maria", "Mariano", "Marin", "Marine", "Marines", "Marinez", "Marino", "Mariscal", "Marks", "Marmol", "Marmolejo", "Marmolejos", "Marques", "Marquez", "Marquina", "Marrero", "Marron", "Marroquin", "Marrufo", "Marrujo", "Marsh", "Marshall", "Marta", "Marte", "Martel", "Martell", "Martes", "Marti", "Martin", "Martindelcampo", "Martines", "Martinez", "Martino", "Martins", "Martir", "Marty", "Marzan", "Mas", "Mascarenas", "Mascorro", "Masias", "Mason", "Massa", "Massey", "Mata", "Matamoros", "Mateo", "Mateos", "Mathews", "Mathis", "Matias", "Matos", "Matta", "Matthews", "Mattos", "Maturino", "Matus", "Matute", "Mauricio", "Maxwell", "May", "Maya", "Mayen", "Mayer", "Mayes", "Maynard", "Maynes", "Maynez", "Mayo", "Mayor", "Mayoral", "Mayorga", "Mayorquin", "Mays", "Maysonet", "Maza", "Mazariego", "Mazariegos", "Mazon", "McAllister", "McBride", "McCabe", "McCall", "McCann", "McCarthy", "McCarty", "McClain", "McClure", "McConnell", "McCormick", "McCoy", "McCullough", "McDaniel", "McDermott", "McDonald", "McDowell", "McFarland", "McGee", "McGrath", "McGuire", "McIntosh", "McIntyre", "McKay", "McKee", "McKenna", "McKenzie", "McKinney", "McLaughlin", "McLean", "McLeod", "McMahon", "McMillan", "McNeil", "McPherson", "Meadows", "Medeiros", "Medel", "Medellin", "Medero", "Mederos", "Medina", "Medrano", "Mejia", "Mejias", "Mejorado", "Melara", "Melchor", "Melecio", "Melena", "Melendes", "Melendez", "Melendrez", "Melero", "Melgar", "Melgarejo", "Melgoza", "Mellado", "Mello", "Melo", "Melton", "Membreno", "Mena", "Menchaca", "Mendes", "Mendez", "Mendieta", "Mendiola", "Mendivil", "Mendizabal", "Mendosa", "Mendoza", "Menendez", "Meneses", "Menjivar", "Mera", "Meraz", "Mercado", "Merced", "Mercedes", "Mercer", "Merchan", "Merida", "Merino", "Merlo", "Merlos", "Mero", "Merrill", "Merritt", "Mesa", "Mesta", "Mestas", "Mestre", "Meyer", "Meyers", "Meza", "Michael", "Michel", "Middleton", "Mier", "Miera", "Miguel", "Mijangos", "Mijares", "Milan", "Milanes", "Miles", "Milian", "Milla", "Millan", "Miller", "Milligan", "Mills", "Mina", "Minaya", "Minero", "Minjares", "Minjarez", "Minor", "Mira", "Mirabal", "Miramontes", "Miranda", "Mireles", "Mirelez", "Miron", "Mitchell", "Moctezuma", "Modesto", "Mojarro", "Mojica", "Molano", "Molina", "Molinar", "Monarrez", "Moncada", "Moncayo", "Moncivais", "Mondragon", "Monegro", "Monge", "Monjaras", "Monjaraz", "Monje", "Monreal", "Monroe", "Monroy", "Monrreal", "Monrroy", "Monsalve", "Monserrate", "Monsivais", "Montalbo", "Montalvan", "Montalvo", "Montana", "Montanez", "Montano", "Montas", "Monte", "Monteagudo", "Montealegre", "Montejano", "Montejo", "Montellano", "Montelongo", "Montemayor", "Montenegro", "Monteon", "Montero", "Monterrosa", "Monterroso", "Monterroza", "Montes", "Montesdeoca", "Montesino", "Montesinos", "Montez", "Montgomery", "Montiel", "Montijo", "Montilla", "Montoya", "Montufar", "Monzon", "Moody", "Moon", "Moore", "Mora", "Morado", "Moraga", "Morales", "Moralez", "Moran", "Morano", "Morataya", "Moreira", "Morejon", "Morel", "Morell", "Morelos", "Morena", "Moreno", "Morera", "Moreta", "Morfin", "Morga", "Morgado", "Morgan", "Mori", "Morillo", "Morin", "Moro", "Morocho", "Moron", "Morones", "Moronta", "Morquecho", "Morris", "Morrison", "Morrow", "Morse", "Morton", "Morua", "Moscoso", "Moses", "Mosley", "Mosqueda", "Mosquera", "Moss", "Mota", "Motta", "Moya", "Muela", "Mueller", "Mujica", "Mulero", "Mullen", "Muller", "Mullins", "Mundo", "Muneton", "Mungia", "Munguia", "Muniz", "Munos", "Munoz", "Muralles", "Muratalla", "Murcia", "Murga", "Murguia", "Muriel", "Murillo", "Muro", "Murphy", "Murray", "Murrieta", "Murrietta", "Muzquiz", "Myers", "Nadal", "Najar", "Najarro", "Najera", "Nambo", "Nanez", "Napoles", "Naranjo", "Narez", "Narvaez", "Narvaiz", "Nash", "Natal", "Natera", "Natividad", "Nava", "Navar", "Navarette", "Navarrete", "Navarrette", "Navarro", "Navas", "Navedo", "Navejar", "Navejas", "Navia", "Nazario", "Neal", "Negrete", "Negrin", "Negron", "Neira", "Nelson", "Neri", "Neria", "Nerio", "Nevares", "Nevarez", "Newell", "Newman", "Newton", "Neyra", "Nguyen", "Nicasio", "Nicholas", "Nichols", "Nicholson", "Nicolas", "Niebla", "Nieblas", "Nielsen", "Nieto", "Nieves", "Nila", "Nino", "Nixon", "Noa", "Noble", "Noboa", "Nodal", "Nodarse", "Noel", "Nogales", "Noguera", "Nogueras", "Noguez", "Nolan", "Nolasco", "Noriega", "Norman", "Norris", "Norton", "Nova", "Novak", "Novelo", "Novo", "Novoa", "Noyola", "Nuncio", "Nunes", "Nunez", "Nungaray", "Nuno", "Obando", "Obeso", "Obregon", "Obrien", "Ocampo", "Ocana", "Ocanas", "Ocasio", "Ocegueda", "Oceguera", "Ochoa", "Ocon", "Oconnell", "Oconnor", "Odell", "Odonnell", "Ogando", "Ogas", "Ohara", "Ojeda", "Olague", "Olalde", "Olan", "Olarte", "Olavarria", "Olaya", "Olea", "Olgin", "Olguin", "Oliva", "Olivar", "Olivares", "Olivarez", "Olivarria", "Olivas", "Oliveira", "Olivencia", "Oliver", "Olivera", "Oliveras", "Olivero", "Oliveros", "Olivieri", "Olivo", "Olivos", "Olmeda", "Olmedo", "Olmo", "Olmos", "Olsen", "Olson", "Olveda", "Olvera", "Onate", "Oneal", "Oneil", "Oneill", "Onofre", "Ontiveros", "Oquendo", "Orantes", "Ordaz", "Ordones", "Ordonez", "Orduna", "Orduno", "Orea", "Oregel", "Oregon", "Orejel", "Orellana", "Orellano", "Orengo", "Orihuela", "Orlando", "Ornelas", "Orona", "Oropeza", "Oros", "Orosco", "Orozco", "Orr", "Orrego", "Orta", "Ortega", "Ortegon", "Ortez", "Ortis", "Ortiz", "Ortuno", "Osborn", "Osborne", "Osegueda", "Oseguera", "Osoria", "Osorio", "Osornio", "Osorno", "Ospina", "Osuna", "Otano", "Otero", "Ovalle", "Ovalles", "Ovando", "Oviedo", "Owen", "Owens", "Oyervides", "Oyola", "Ozuna", "Pablo", "Pabon", "Pace", "Pacheco", "Padilla", "Padin", "Padro", "Padron", "Padua", "Paez", "Pagan", "Page", "Paiz", "Palacio", "Palacios", "Palafox", "Palencia", "Palermo", "Pallares", "Palma", "Palmer", "Palmerin", "Palomar", "Palomares", "Palomarez", "Palomera", "Palomino", "Palomo", "Palos", "Panameno", "Pando", "Panduro", "Paniagua", "Pantaleon", "Pantoja", "Panuco", "Parada", "Paramo", "Pardo", "Paredes", "Paredez", "Pareja", "Parga", "Pargas", "Paris", "Park", "Parker", "Parks", "Parra", "Parrales", "Parras", "Parrilla", "Parrish", "Parsons", "Partida", "Pascual", "Pasillas", "Pastor", "Pastrana", "Patel", "Patino", "Patlan", "Patricio", "Patrick", "Patron", "Patterson", "Patton", "Paucar", "Paul", "Paula", "Paulin", "Paulino", "Pavia", "Pavon", "Payan", "Payano", "Payne", "Paz", "Pazmino", "Pazos", "Pearce", "Pearson", "Pech", "Pecina", "Peck", "Pedraza", "Pedregon", "Pedro", "Pedrosa", "Pedroso", "Pedroza", "Peguero", "Peinado", "Pelaez", "Pelayo", "Pellot", "Pena", "Penafiel", "Penaloza", "Penaranda", "Penate", "Peng", "Penn", "Pennington", "Penuelas", "Pequeno", "Pera", "Perales", "Peralez", "Peralta", "Peraza", "Perdomo", "Perea", "Pereda", "Peregrino", "Pereida", "Pereira", "Perera", "Peres", "Pereyra", "Perez", "Perezgarcia", "Perkins", "Perla", "Perry", "Person", "Peru", "Pescador", "Pesina", "Pesqueira", "Peters", "Petersen", "Peterson", "Petty", "Phelps", "Phillips", "Picado", "Picasso", "Picazo", "Piceno", "Pichardo", "Pico", "Picon", "Piedra", "Piedrahita", "Pierce", "Pierre", "Pierson", "Pimentel", "Pimienta", "Pina", "Pinal", "Pinales", "Pineda", "Pinedo", "Pineiro", "Pinela", "Pinero", "Pinilla", "Pino", "Pinon", "Pintado", "Pinto", "Pintor", "Pinzon", "Pita", "Pitre", "Pittman", "Pitts", "Pizana", "Pizano", "Pizarro", "Pla", "Placencia", "Placido", "Planas", "Plancarte", "Plascencia", "Plasencia", "Plata", "Platero", "Plaza", "Plazola", "Pleitez", "Pliego", "Poblano", "Polanco", "Pollard", "Pollock", "Polo", "Pomales", "Pompa", "Ponce", "Poncedeleon", "Ponciano", "Pons", "Pool", "Poole", "Pope", "Popoca", "Porras", "Portal", "Portalatin", "Portales", "Portela", "Porter", "Portilla", "Portillo", "Porto", "Portugal", "Posada", "Posadas", "Potter", "Potts", "Poveda", "Powell", "Powers", "Pozo", "Pozos", "Prada", "Prado", "Prats", "Pratt", "Pratts", "Preciado", "Presas", "Preston", "Price", "Priego", "Prieto", "Prince", "Proano", "Proctor", "Provencio", "Prudencio", "Pruitt", "Pruneda", "Puebla", "Puello", "Puente", "Puentes", "Puerta", "Puerto", "Puga", "Pugh", "Puig", "Pujol", "Pujols", "Pulgarin", "Pulido", "Puma", "Pupo", "Quesada", "Quevedo", "Quezada", "Quijada", "Quijano", "Quijas", "Quiles", "Quinn", "Quinones", "Quinonez", "Quintana", "Quintanar", "Quintanilla", "Quintela", "Quintero", "Quinteros", "Quinto", "Quirarte", "Quirino", "Quiroa", "Quiroga", "Quiros", "Quiroz", "Quispe", "Quito", "Quizhpi", "Rabadan", "Rabago", "Rada", "Radillo", "Rael", "Rafael", "Raigoza", "Ramales", "Ramires", "Ramirez", "Ramon", "Ramos", "Ramsey", "Randall", "Randolph", "Rangel", "Rankin", "Rascon", "Rasmussen", "Rauda", "Ravelo", "Ray", "Raya", "Rayas", "Raygoza", "Raymond", "Raymundo", "Rayo", "Rayos", "Razo", "Rea", "Read", "Real", "Rebollar", "Rebolledo", "Rebollo", "Recendez", "Recendiz", "Recinos", "Recio", "Redondo", "Reed", "Reese", "Reeves", "Regalado", "Regino", "Rego", "Reid", "Reilly", "Reina", "Reinoso", "Remigio", "Renderos", "Rendon", "Rengifo", "Renovato", "Rentas", "Renteria", "Requena", "Resendez", "Resendiz", "Resto", "Restrepo", "Reta", "Retana", "Reveles", "Revilla", "Revuelta", "Rey", "Reyes", "Reyez", "Reyna", "Reynaga", "Reynolds", "Reynosa", "Reynoso", "Reza", "Rhodes", "Ribas", "Ribera", "Ricardo", "Rice", "Rich", "Richard", "Richards", "Richardson", "Richmond", "Richter", "Rico", "Riddle", "Riera", "Riggs", "Rijo", "Riley", "Rincon", "Rincones", "Riojas", "Rios", "Riquelme", "Ritchie", "Rivadeneira", "Rivas", "Rivera", "Rivero", "Riveron", "Riveros", "Rivers", "Riviera", "Rizo", "Rizzo", "Roa", "Roach", "Robaina", "Robbins", "Roberson", "Robert", "Roberto", "Roberts", "Robertson", "Robinson", "Robledo", "Roblero", "Robles", "Roca", "Rocha", "Roche", "Rochin", "Rodarte", "Rodas", "Rodela", "Rodgers", "Rodriges", "Rodrigue", "Rodrigues", "Rodriguez", "Rodriques", "Rodriquez", "Rogel", "Rogers", "Rogue", "Roig", "Rojas", "Rojo", "Roldan", "Rollins", "Rolon", "Roman", "Romano", "Romeo", "Romero", "Romo", "Ron", "Rondon", "Ronquillo", "Roque", "Rosa", "Rosado", "Rosales", "Rosalez", "Rosario", "Rosas", "Rose", "Rosell", "Rosendo", "Rosero", "Rosete", "Rosiles", "Rosillo", "Ross", "Rossi", "Rostro", "Roth", "Rovira", "Rowe", "Rowland", "Roy", "Roybal", "Rua", "Ruacho", "Ruan", "Ruano", "Rubalcaba", "Rubalcava", "Rubi", "Rubin", "Rubio", "Ruby", "Rueda", "Ruedas", "Ruelas", "Rufino", "Ruis", "Ruiz", "Rush", "Russell", "Russo", "Rutz", "Ruvalcaba", "Ruybal", "Ryan", "Saavedra", "Sabala", "Sabater", "Sabedra", "Sabillon", "Sabino", "Sada", "Saenz", "Saez", "Sagastume", "Sahagun", "Sainz", "Sais", "Saiz", "Sala", "Salado", "Salais", "Salaiz", "Salamanca", "Salas", "Salasar", "Salaz", "Salazar", "Salce", "Salceda", "Salcedo", "Salcido", "Saldana", "Saldarriaga", "Saldierna", "Saldivar", "Sales", "Salgado", "Salguero", "Salinas", "Salmeron", "Salmon", "Salomon", "Salto", "Salvador", "Salvatierra", "Samaniego", "Samano", "Samayoa", "Sambrano", "Samora", "Sampson", "Samudio", "Samuel", "Sanabria", "Sanches", "Sanchez", "Sancho", "Sandate", "Sanders", "Sandobal", "Sandoval", "Sanford", "Sanjuan", "Sanmartin", "Sanmiguel", "Sanroman", "Santa", "Santacruz", "Santamaria", "Santana", "Santander", "Santiago", "Santibanez", "Santiesteban", "Santillan", "Santillana", "Santillanes", "Santillano", "Santini", "Santistevan", "Santizo", "Santo", "Santos", "Santoya", "Santoyo", "Sanz", "Sapien", "Sarabia", "Saragosa", "Sarate", "Saravia", "Sardina", "Sardinas", "Sargent", "Sarinana", "Sarmiento", "Sarria", "Sauceda", "Saucedo", "Saunders", "Sauseda", "Sausedo", "Savage", "Savala", "Savedra", "Sawyer", "Schaefer", "Schmidt", "Schmitt", "Schneider", "Schroeder", "Schultz", "Schwartz", "Scott", "Sears", "Sebastian", "Seda", "Sedano", "Sedillo", "Segarra", "Segovia", "Segoviano", "Segui", "Segundo", "Segura", "Sellers", "Selva", "Semidey", "Sena", "Sencion", "Sendejas", "Sendejo", "Sepeda", "Sepulveda", "Sequeira", "Serafin", "Serano", "Serda", "Sermeno", "Serna", "Serpa", "Serpas", "Serra", "Serrano", "Serrata", "Serrato", "Serratos", "Servantes", "Servellon", "Servin", "Sesma", "Severino", "Sevilla", "Sexton", "Shaffer", "Shannon", "Sharp", "Shaw", "Shea", "Shelton", "Shepard", "Shepherd", "Sheppard", "Sherman", "Sherwood", "Shields", "Short", "Sias", "Sibrian", "Sicairos", "Sida", "Sierra", "Sifuentes", "Sigala", "Siguenza", "Silguero", "Sillas", "Siller", "Silva", "Silvas", "Silveira", "Silver", "Silvera", "Silverio", "Silvestre", "Simental", "Simmons", "Simon", "Simons", "Simpson", "Sims", "Sinclair", "Singh", "Singleton", "Siordia", "Siqueiros", "Sisneros", "Sixtos", "Skinner", "Slater", "Sloan", "Small", "Smith", "Snow", "Snyder", "Soares", "Soberanes", "Soberanis", "Socarras", "Sola", "Solache", "Solano", "Solares", "Soler", "Solis", "Solivan", "Soliz", "Solomon", "Solorio", "Solorzano", "Soltero", "Somarriba", "Somoza", "Sorensen", "Soria", "Soriano", "Sorto", "Sosa", "Sostre", "Sotello", "Sotelo", "Soto", "Sotolongo", "Sotomayor", "Sousa", "Souza", "Soza", "Sparks", "Spears", "Spence", "Spencer", "Springer", "Stafford", "Stanley", "Stanton", "Stark", "Starr", "Steele", "Stein", "Stephens", "Stephenson", "Sterling", "Stevens", "Stevenson", "Stewart", "Stokes", "Stone", "Stout", "Strickland", "Strong", "Stuart", "Suares", "Suarez", "Suazo", "Subia", "Suero", "Sullivan", "Summers", "Suniga", "Suriel", "Surita", "Sustaita", "Sutherland", "Sutton", "Swanson", "Sweeney", "Sweet", "Sylva", "Tabares", "Tabarez", "Taboada", "Tabora", "Taborda", "Tadeo", "Tafolla", "Tafoya", "Tagle", "Talamante", "Talamantes", "Talamantez", "Talavera", "Tamayo", "Tamez", "Tanguma", "Tanner", "Tapanes", "Tapia", "Tarango", "Tarin", "Tate", "Tatum", "Tavares", "Tavarez", "Tavera", "Taveras", "Taylor", "Tejada", "Tejeda", "Tejera", "Telles", "Tellez", "Tello", "Tena", "Teniente", "Tenorio", "Teran", "Tercero", "Terrazas", "Terrell", "Terrero", "Terriquez", "Terrones", "Terry", "Texidor", "Then", "Thomas", "Thompson", "Thornton", "Thurman", "Tiburcio", "Ticas", "Tienda", "Tijerina", "Tinajero", "Tineo", "Tinoco", "Tirado", "Tiscareno", "Tlatelpa", "Tobar", "Tobias", "Tobin", "Tobon", "Todd", "Toledo", "Tolentino", "Tomas", "Tomlinson", "Tonche", "Topete", "Toral", "Toribio", "Toro", "Torralba", "Torre", "Torres", "Torrez", "Torrico", "Toscano", "Tostado", "Tovar", "Townsend", "Tracy", "Tran", "Travieso", "Travis", "Trejo", "Trejos", "Treto", "Trevino", "Trevizo", "Triana", "Trigo", "Trigueros", "Trillo", "Trinidad", "Tristan", "Trivino", "Troche", "Trochez", "Troncoso", "Trujillo", "Tucker", "Turcios", "Turner", "Turrubiartes", "Turrubiates", "Tyler", "Ugalde", "Ugarte", "Ulibarri", "Ulloa", "Umana", "Umanzor", "Underwood", "Unzueta", "Uranga", "Urban", "Urbano", "Urbina", "Urdiales", "Urena", "Urenda", "Ureno", "Ureste", "Uresti", "Urgiles", "Uriarte", "Urias", "Uribe", "Uriegas", "Urieta", "Urioste", "Uriostegui", "Urizar", "Urquidez", "Urquidi", "Urquilla", "Urquiza", "Urquizo", "Urrea", "Urrutia", "Urzua", "Uvalle", "Vaca", "Valadez", "Valcarcel", "Valderas", "Valderrama", "Valdes", "Valdespino", "Valdez", "Valdivia", "Valdivieso", "Valdiviezo", "Valdovinos", "Vale", "Valencia", "Valenciano", "Valente", "Valentin", "Valentine", "Valenzuela", "Valera", "Valeriano", "Valerio", "Valero", "Valiente", "Valladares", "Valladolid", "Valle", "Vallecillo", "Vallejo", "Vallejos", "Valles", "Vallez", "Vallin", "Valtierra", "Valverde", "Vance", "Vanegas", "Vaquera", "Vaquero", "Vara", "Varela", "Vargas", "Varona", "Vasallo", "Vasques", "Vasquez", "Vaughan", "Vaughn", "Vazguez", "Vazques", "Vazquez", "Vega", "Vegas", "Vejar", "Vela", "Velaquez", "Velarde", "Velasco", "Velasques", "Velasquez", "Velazco", "Velazquez", "Velez", "Veliz", "Veloz", "Vences", "Venegas", "Vento", "Ventura", "Venzor", "Vera", "Veras", "Verastegui", "Verde", "Verdejo", "Verdin", "Verdugo", "Verdusco", "Verduzco", "Vergara", "Vialpando", "Viana", "Vicario", "Vicencio", "Vicente", "Victor", "Victoria", "Victoriano", "Victorino", "Victorio", "Vicuna", "Vidal", "Vidales", "Vidana", "Vidaurri", "Vides", "Vidrio", "Vieira", "Vielma", "Viera", "Vierra", "Vieyra", "Vigil", "Vigo", "Vila", "Vilches", "Vilchez", "Vilchis", "Villa", "Villacis", "Villacorta", "Villada", "Villafan", "Villafana", "Villafane", "Villafranca", "Villafranco", "Villafuerte", "Villagomez", "Villagran", "Villagrana", "Villalba", "Villalobos", "Villalon", "Villalona", "Villalovos", "Villalpando", "Villalta", "Villalva", "Villalvazo", "Villamar", "Villamil", "Villaneda", "Villanueva", "Villar", "Villareal", "Villarreal", "Villarroel", "Villarruel", "Villasana", "Villasenor", "Villatoro", "Villaverde", "Villavicencio", "Villeda", "Villegas", "Villela", "Villescas", "Villicana", "Viloria", "Vinas", "Vincent", "Viramontes", "Virella", "Virgen", "Viruet", "Viscarra", "Vital", "Vitela", "Viteri", "Vivanco", "Vivar", "Vivas", "Vivero", "Viveros", "Vives", "Vizcaino", "Vizcarra", "Vizcarrondo", "Vogel", "Wade", "Wagner", "Walker", "Wall", "Wallace", "Walls", "Walsh", "Walter", "Walters", "Walton", "Ward", "Ware", "Warner", "Warren", "Washington", "Waters", "Watkins", "Watson", "Watts", "Weaver", "Webb", "Webber", "Weber", "Webster", "Weeks", "Weiss", "Welch", "Wells", "Welsh", "Wences", "Werner", "West", "Wheeler", "Whitaker", "White", "Whitehead", "Whitney", "Wiggins", "Wilcox", "Wilder", "Wiley", "Wilkerson", "Wilkins", "Wilkinson", "Williams", "Williamson", "Willis", "Wills", "Wilson", "Winter", "Winters", "Wise", "Witt", "Wolf", "Wolfe", "Wong", "Wood", "Woodard", "Woods", "Woodward", "Workman", "Wright", "Wyatt", "Yanes", "Yanez", "Yates", "Ybanez", "Ybarra", "Yebra", "Yee", "Yepes", "Yepez", "Yepiz", "Yerena", "Yescas", "Yniguez", "York", "Young", "Yslas", "Yzaguirre", "Zabala", "Zacarias", "Zagal", "Zalazar", "Zaldana", "Zaldivar", "Zamarripa", "Zamarron", "Zambrana", "Zambrano", "Zamora", "Zamorano", "Zamudio", "Zapata", "Zapien", "Zaragosa", "Zaragoza", "Zarate", "Zarazua", "Zarco", "Zatarain", "Zavala", "Zavaleta", "Zavalza", "Zayas", "Zazueta", "Zea", "Zegarra", "Zelada", "Zelaya", "Zeledon", "Zendejas", "Zenteno", "Zepeda", "Zermeno", "Zertuche", "Zetina", "Zetino", "Zevallos", "Zimmerman", "Zorrilla", "Zubia", "Zubiate", "Zuleta", "Zuluaga", "Zuniga", "Zuno", "Zurita"]>> +<<set setup.latinaSlaveSurnames = ["Abad", "Abalos", "Abarca", "Abbott", "Abel", "Abella", "Abeyta", "Abila", "Aboytes", "Abraham", "Abrams", "Abrego", "Abreu", "Abril", "Abundis", "Abundiz", "Aburto", "Acebedo", "Acedo", "Aceituno", "Acero", "Acevedo", "Aceves", "Acosta", "Acuna", "Adam", "Adame", "Adames", "Adams", "Adan", "Adkins", "Adorno", "Adrian", "Afanador", "Agostini", "Agosto", "Agramonte", "Agredano", "Aguado", "Aguas", "Aguayo", "Agudelo", "Agudo", "Aguero", "Aguiar", "Aguila", "Aguilar", "Aguilera", "Aguillar", "Aguillon", "Aguinaga", "Aguiniga", "Aguirre", "Agundez", "Agustin", "Ahumada", "Aispuro", "Alameda", "Alamilla", "Alamillo", "Alamo", "Alanis", "Alaniz", "Alarcon", "Alarid", "Alas", "Alatorre", "Alba", "Alban", "Albarado", "Albarez", "Albarran", "Albert", "Alberto", "Albino", "Albor", "Alcala", "Alcantar", "Alcantara", "Alcaraz", "Alcazar", "Alcocer", "Alcon", "Alcorta", "Alcoser", "Aldaba", "Aldaco", "Aldama", "Aldana", "Aldape", "Alday", "Aldaz", "Alderete", "Aldrete", "Alegre", "Alegria", "Alejandre", "Alejandro", "Alejo", "Alejos", "Aleman", "Alers", "Alexander", "Alfaro", "Alferez", "Alfonso", "Alford", "Algarin", "Ali", "Aliaga", "Alicea", "Alire", "Allen", "Allende", "Allison", "Almada", "Almaguer", "Almanza", "Almanzar", "Almaraz", "Almazan", "Almeda", "Almeida", "Almendarez", "Almodovar", "Almonte", "Alonso", "Alonzo", "Alpizar", "Altamirano", "Alva", "Alvarado", "Alvardo", "Alvarenga", "Alvares", "Alvarez", "Alvear", "Alvelo", "Alverio", "Alves", "Alviar", "Alvidrez", "Alvillar", "Alvira", "Alviso", "Alvizo", "Alzate", "Amado", "Amador", "Amaral", "Amarillas", "Amaro", "Amato", "Amaya", "Ambriz", "Ambrocio", "Ambrosio", "Ames", "Amescua", "Amesquita", "Amezcua", "Amezola", "Amezquita", "Amigon", "Amos", "Amparan", "Amparo", "Anaya", "Anchondo", "Ancira", "Andalon", "Andazola", "Andersen", "Anderson", "Andino", "Andrade", "Andrades", "Andres", "Andrew", "Andrews", "Andujar", "Andujo", "Angel", "Angeles", "Angelo", "Anguiano", "Angulo", "Anthony", "Antigua", "Antillon", "Anton", "Antonio", "Antuna", "Antunez", "Anzaldo", "Anzaldua", "Anzures", "Aparicio", "Apodaca", "Apolinar", "Aponte", "Aquilar", "Aquino", "Aracena", "Aragon", "Araiza", "Arambula", "Aramburo", "Arana", "Aranda", "Arango", "Araujo", "Arauz", "Araya", "Arballo", "Arbelaez", "Arboleda", "Arce", "Arceo", "Archer", "Archibeque", "Archila", "Archuleta", "Archuletta", "Arcia", "Arciga", "Arcila", "Arciniega", "Arcos", "Ardila", "Ardon", "Arebalo", "Arechiga", "Arellanes", "Arellano", "Arenas", "Arencibia", "Arenivas", "Ares", "Arevalo", "Arevalos", "Arguelles", "Arguello", "Argueta", "Arguijo", "Argumedo", "Arias", "Arismendez", "Arispe", "Arista", "Aristizabal", "Arita", "Ariza", "Arizaga", "Arizmendi", "Arizola", "Arizpe", "Arjona", "Armas", "Armendarez", "Armendariz", "Armenta", "Armijo", "Armstrong", "Arnold", "Arocha", "Arocho", "Aros", "Arrambide", "Arrazola", "Arreaga", "Arredondo", "Arreguin", "Arrellano", "Arreola", "Arriaga", "Arriaza", "Arrieta", "Arriola", "Arroyave", "Arroyo", "Arroyos", "Arteaga", "Artiaga", "Artiga", "Artiles", "Arvelo", "Arviso", "Arvizo", "Arvizu", "Arzaga", "Arzate", "Arzola", "Arzu", "Arzuaga", "Ascencio", "Asencio", "Ashley", "Astacio", "Astorga", "Astudillo", "Asuncion", "Atencio", "Atilano", "Atkins", "Atkinson", "Austin", "Avalos", "Avelar", "Avelino", "Avellaneda", "Avena", "Avendano", "Avery", "Avila", "Aviles", "Avilez", "Avilla", "Avina", "Avitia", "Ayala", "Aybar", "Ayers", "Ayon", "Azcona", "Azevedo", "Azpeitia", "Azua", "Baca", "Bachicha", "Badilla", "Badillo", "Baena", "Baerga", "Baez", "Baeza", "Bahena", "Bailey", "Bailon", "Baird", "Baires", "Baiza", "Baker", "Balandran", "Balboa", "Balbuena", "Balcazar", "Baldenegro", "Balderas", "Balderrama", "Baldonado", "Baldwin", "Ball", "Balladares", "Ballard", "Ballester", "Ballesteros", "Balleza", "Balli", "Balmaceda", "Baltazar", "Baltierra", "Baltodano", "Banales", "Banda", "Banderas", "Banegas", "Banks", "Banos", "Banuelos", "Baquero", "Bara", "Barahona", "Barajas", "Barba", "Barber", "Barberena", "Barbosa", "Barboza", "Barcelo", "Barcena", "Barcenas", "Barcia", "Barco", "Bardales", "Barela", "Bargas", "Barillas", "Barker", "Barnes", "Barnett", "Barocio", "Baron", "Barona", "Baros", "Barquero", "Barr", "Barra", "Barragan", "Barrales", "Barranco", "Barrantes", "Barraza", "Barreda", "Barreiro", "Barrera", "Barreras", "Barrero", "Barreto", "Barrett", "Barrientes", "Barrientez", "Barrientos", "Barriga", "Barrio", "Barrios", "Barron", "Barros", "Barroso", "Barry", "Bartlett", "Bartolo", "Barton", "Basaldua", "Basilio", "Basquez", "Bass", "Bastida", "Bastidas", "Basulto", "Basurto", "Batalla", "Bates", "Batista", "Batres", "Batrez", "Battle", "Bauer", "Bautista", "Bauza", "Baxter", "Bayardo", "Bayona", "Baza", "Bazaldua", "Bazan", "Beach", "Bean", "Beard", "Beas", "Beasley", "Beato", "Beauchamp", "Becerra", "Becerril", "Beck", "Becker", "Bedolla", "Bedoy", "Bedoya", "Bega", "Bejar", "Bejarano", "Belen", "Bell", "Bello", "Belloso", "Belman", "Belmares", "Belmonte", "Belmontes", "Beltran", "Beltre", "Benavente", "Benavides", "Benavidez", "Bencomo", "Bencosme", "Bender", "Benites", "Benitez", "Benito", "Benjamin", "Bennett", "Benson", "Bentley", "Benton", "Berber", "Berg", "Berger", "Berlanga", "Bermea", "Bermejo", "Bermeo", "Bermudes", "Bermudez", "Bernabe", "Bernal", "Bernard", "Bernardino", "Bernardo", "Berrio", "Berrios", "Berroa", "Berrones", "Berry", "Berumen", "Best", "Betances", "Betancourt", "Betancur", "Bianchi", "Bianco", "Bibian", "Bird", "Bishop", "Black", "Blackburn", "Blackwell", "Blair", "Blake", "Blancarte", "Blancas", "Blanchard", "Blanco", "Blandon", "Blankenship", "Blas", "Blea", "Bobadilla", "Bocanegra", "Bodden", "Bohorquez", "Bojorquez", "Bolanos", "Bolivar", "Bolton", "Bond", "Bonet", "Bonifacio", "Bonilla", "Bonillas", "Bonner", "Booker", "Boone", "Booth", "Borboa", "Borbon", "Borda", "Borges", "Borja", "Borjas", "Borjon", "Borquez", "Borrayo", "Borrego", "Borrero", "Borunda", "Bosch", "Bosque", "Bosquez", "Botello", "Botero", "Bowen", "Bowers", "Bowman", "Boyd", "Boyer", "Boyle", "Boza", "Bracamonte", "Bracamontes", "Bracero", "Bradford", "Bradley", "Bradshaw", "Brady", "Brambila", "Bran", "Branch", "Brand", "Brandon", "Brandt", "Braud", "Braun", "Bravo", "Bray", "Brea", "Breceda", "Brenes", "Brennan", "Bretado", "Breton", "Brewer", "Brewster", "Bribiesca", "Briceno", "Bridges", "Briggs", "Bright", "Bringas", "Briones", "Briseno", "Brito", "Britton", "Brizuela", "Brock", "Brooks", "Brown", "Browne", "Browning", "Bruce", "Bruno", "Bryan", "Bryant", "Buchanan", "Bucio", "Buck", "Buckley", "Buelna", "Buendia", "Bueno", "Buenrostro", "Buentello", "Bugarin", "Buitrago", "Buitron", "Bullock", "Burbano", "Burch", "Burciaga", "Burgess", "Burgos", "Burgueno", "Burke", "Burnett", "Burns", "Burrell", "Burrola", "Burruel", "Burton", "Bush", "Bustamante", "Bustillo", "Bustillos", "Bustos", "Butler", "Byrd", "Byrne", "Caamano", "Caba", "Cabada", "Caballero", "Caban", "Cabanas", "Cabanillas", "Cabello", "Cabeza", "Cabezas", "Cabral", "Cabrales", "Cabreja", "Cabrera", "Cabriales", "Caceres", "Cacho", "Cadavid", "Cadena", "Cadenas", "Cadiz", "Cahue", "Caicedo", "Cain", "Cajigas", "Cajina", "Caldera", "Calderon", "Caldwell", "Calero", "Calhoun", "Calix", "Calixto", "Callahan", "Calle", "Calleja", "Callejas", "Calleros", "Calles", "Calo", "Calva", "Calvario", "Calvillo", "Calvo", "Calzada", "Calzadilla", "Camacho", "Camara", "Camarena", "Camargo", "Camarillo", "Camberos", "Cambron", "Camejo", "Camero", "Cameron", "Camilo", "Camp", "Campa", "Campana", "Campas", "Campbell", "Campillo", "Campo", "Campos", "Campoverde", "Campusano", "Campuzano", "Canada", "Canal", "Canales", "Canas", "Cancel", "Canchola", "Cancino", "Candela", "Candelaria", "Candelario", "Candelas", "Candia", "Candido", "Canedo", "Canela", "Canez", "Canizales", "Canizalez", "Cannon", "Cano", "Canseco", "Cansino", "Cantero", "Cantillo", "Canto", "Canton", "Cantor", "Cantrell", "Cantu", "Canty", "Capellan", "Capetillo", "Capistran", "Capo", "Capote", "Carabajal", "Caraballo", "Carachure", "Carapia", "Caraveo", "Carbajal", "Carballo", "Carbonell", "Carcamo", "Card", "Cardenas", "Cardiel", "Cardona", "Cardosa", "Cardoso", "Cardoza", "Cardozo", "Careaga", "Carey", "Carias", "Carillo", "Carino", "Carlin", "Carlo", "Carlos", "Carlson", "Carmen", "Carmona", "Carnero", "Carney", "Caro", "Carpenter", "Carpio", "Carr", "Carranco", "Carranza", "Carrasco", "Carrasquillo", "Carrazco", "Carreno", "Carreon", "Carrera", "Carreras", "Carrero", "Carretero", "Carreto", "Carrillo", "Carrion", "Carrizal", "Carrizales", "Carrizosa", "Carroll", "Carson", "Cartagena", "Carter", "Caruso", "Carvajal", "Carvalho", "Carver", "Casado", "Casados", "Casanas", "Casanova", "Casares", "Casarez", "Casarrubias", "Casas", "Casasola", "Casaus", "Casco", "Case", "Caseres", "Casey", "Cash", "Casiano", "Casias", "Casillas", "Casimiro", "Casique", "Cassidy", "Casso", "Castaneda", "Castano", "Castanon", "Castelan", "Castellano", "Castellanos", "Castello", "Castellon", "Castelo", "Casteneda", "Castilla", "Castilleja", "Castillo", "Castillon", "Castor", "Castorena", "Castrejon", "Castrellon", "Castrillo", "Castrillon", "Castro", "Castruita", "Catala", "Catalan", "Catano", "Caudillo", "Cavazos", "Cayetano", "Cazares", "Cazarez", "Cdebaca", "Cea", "Ceballos", "Cebreros", "Cecena", "Cedano", "Cedeno", "Cedillo", "Cedillos", "Ceja", "Celaya", "Celedon", "Celestino", "Celis", "Cendejas", "Ceniceros", "Centeno", "Cepeda", "Cepero", "Cera", "Cerda", "Cereceres", "Cerezo", "Cerna", "Ceron", "Cerrato", "Cerrillo", "Cerritos", "Cerros", "Cervantes", "Cervantez", "Cervera", "Cesar", "Cesena", "Cespedes", "Cevallos", "Chacon", "Chagolla", "Chagoya", "Chaidez", "Chaires", "Chairez", "Chamberlain", "Chambers", "Chamorro", "Champion", "Chan", "Chandler", "Chang", "Chao", "Chapa", "Chaparro", "Chapman", "Charles", "Chase", "Chavana", "Chavarin", "Chavarria", "Chavera", "Chavero", "Chaves", "Chavez", "Chavira", "Chavis", "Chavoya", "Checo", "Chen", "Cherry", "Chevalier", "Chevere", "Chevez", "Chica", "Chicas", "Chico", "Childers", "Chin", "Chinchilla", "Chino", "Chiriboga", "Chirino", "Chirinos", "Chong", "Chow", "Christensen", "Christian", "Christopher", "Church", "Cibrian", "Cid", "Cienfuegos", "Cifuentes", "Cintron", "Ciprian", "Cipriano", "Cirilo", "Cirino", "Cisnero", "Cisneros", "Clara", "Clark", "Clarke", "Claro", "Claros", "Class", "Claudio", "Clavel", "Clavijo", "Clay", "Clayton", "Clement", "Clemente", "Clements", "Cline", "Cobarrubias", "Cobb", "Cobian", "Cobo", "Cobos", "Coca", "Cochran", "Coello", "Coffey", "Cohen", "Cole", "Coleman", "Colin", "Colina", "Colindres", "Coll", "Collado", "Collazo", "Collazos", "Collier", "Collins", "Colmenares", "Colmenero", "Colocho", "Colon", "Colorado", "Colunga", "Comacho", "Comas", "Combs", "Compean", "Compton", "Concepcion", "Concha", "Conchas", "Conde", "Conejo", "Conley", "Conner", "Connor", "Conrad", "Constancio", "Constante", "Constantino", "Constanza", "Consuegra", "Contrera", "Contreras", "Conway", "Cook", "Cooke", "Cooper", "Copado", "Copeland", "Cora", "Corado", "Coral", "Corchado", "Cordero", "Cordoba", "Cordon", "Cordova", "Corea", "Coreas", "Corella", "Coria", "Cornejo", "Cornelio", "Corniel", "Cornier", "Corona", "Coronado", "Coronel", "Corpus", "Corral", "Corrales", "Correa", "Corredor", "Corro", "Cortes", "Cortez", "Cortina", "Cortinas", "Corvera", "Corzo", "Cosio", "Cosme", "Coss", "Cossio", "Costa", "Costales", "Costello", "Costilla", "Cota", "Coto", "Cotto", "Cotton", "Courtney", "Covarrubias", "Cowan", "Cox", "Coy", "Craig", "Crane", "Crawford", "Crespin", "Crespo", "Criado", "Criollo", "Crisanto", "Crisostomo", "Crispin", "Cristobal", "Crosby", "Cross", "Cruz", "Cruzado", "Cuadra", "Cuadrado", "Cuadros", "Cuartas", "Cuba", "Cubas", "Cubero", "Cubias", "Cubillos", "Cuebas", "Cuellar", "Cuello", "Cuen", "Cuenca", "Cuervo", "Cuesta", "Cuestas", "Cueto", "Cueva", "Cuevas", "Cummings", "Cunningham", "Curbelo", "Curet", "Curiel", "Curry", "Curtis", "Custodio", "Dacosta", "Dailey", "Dale", "Dalton", "Daly", "Damian", "Daniel", "Daniels", "Dasilva", "Daugherty", "Davalos", "Davenport", "David", "Davidson", "Davies", "Davila", "Davilla", "Davis", "Dawson", "Day", "Daza", "Dealba", "Dean", "Deanda", "Dearmas", "Deavila", "Decasas", "Decastro", "Decker", "Dedios", "Degante", "Degollado", "Deharo", "Deherrera", "Dehoyos", "Dejesus", "Delacerda", "Delacruz", "Delafuente", "Delagarza", "Delaguila", "Delahoya", "Delahoz", "Delaluz", "Delamora", "Delaney", "Delangel", "Delao", "Delapaz", "Delapena", "Delara", "Delariva", "Delarocha", "Delarosa", "Delatorre", "Delavega", "Delbosque", "Delcampo", "Delcarmen", "Delcastillo", "Delcid", "Deleon", "Delfin", "Delgadillo", "Delgado", "Delira", "Delmoral", "Deloera", "Delosangeles", "Delosreyes", "Delosrios", "Delossantos", "Delpino", "Delpozo", "Delreal", "Delrio", "Delrosario", "Deltoro", "Deluna", "Delvalle", "Delvillar", "Dena", "Denis", "Deniz", "Dennis", "Denton", "Depaz", "Depena", "Deras", "Desantiago", "Desantos", "Desoto", "Desouza", "Devora", "Dial", "Dias", "Diaz", "Diazdeleon", "Dickerson", "Dickinson", "Dickson", "Diego", "Dieguez", "Diez", "Dillard", "Dillon", "Dilone", "Dimas", "Diosdado", "Disla", "Dixon", "Dodd", "Dodson", "Doe", "Dolores", "Domenech", "Domingo", "Domingues", "Dominguez", "Dominquez", "Donado", "Donahue", "Donaldson", "Donato", "Dones", "Donis", "Donjuan", "Donnelly", "Donoso", "Donovan", "Dorado", "Dorame", "Doran", "Dorantes", "Doria", "Dorsey", "Dorta", "Dossantos", "Dougherty", "Douglas", "Downey", "Downing", "Downs", "Doyle", "Dozal", "Drake", "Duarte", "Dubois", "Dubon", "Dudley", "Duenas", "Duenes", "Duenez", "Duffy", "Duke", "Dumas", "Duncan", "Dunlap", "Dunn", "Duprey", "Duque", "Duran", "Durand", "Durant", "Durazo", "Durham", "Duron", "Dutan", "Dye", "Dyer", "Eaton", "Echavarria", "Echevarria", "Echeverri", "Echeverria", "Echeverry", "Edwards", "Eguia", "Elenes", "Elias", "Elizalde", "Elizarraras", "Elizarraraz", "Elizondo", "Elliott", "Ellis", "Ellison", "Elvira", "Emerson", "Enamorado", "Encalada", "Encarnacion", "Encinas", "Encinias", "Enciso", "England", "English", "Enrique", "Enriques", "Enriquez", "Equihua", "Erazo", "Erickson", "Erives", "Ernandez", "Escajeda", "Escalante", "Escalera", "Escalona", "Escamilla", "Escandon", "Escarcega", "Escareno", "Escatel", "Escobar", "Escobedo", "Escorcia", "Escoto", "Escudero", "Escutia", "Espada", "Espaillat", "Espana", "Esparza", "Espejo", "Esperanza", "Espericueta", "Espin", "Espinal", "Espindola", "Espino", "Espinola", "Espinosa", "Espinoza", "Espiritu", "Espitia", "Esposito", "Esqueda", "Esquer", "Esquibel", "Esquilin", "Esquivel", "Esquivias", "Esteban", "Estela", "Estes", "Esteves", "Estevez", "Estrada", "Estrella", "Estremera", "Estupinan", "Euceda", "Eusebio", "Evangelista", "Evans", "Everett", "Ewing", "Fabela", "Fabian", "Facio", "Facundo", "Fajardo", "Falcon", "Fallon", "Familia", "Farfan", "Faria", "Farias", "Farinas", "Farley", "Farmer", "Farrell", "Farris", "Faulkner", "Fausto", "Favela", "Favila", "Faz", "Febles", "Febres", "Febus", "Federico", "Felan", "Feliciano", "Felipe", "Felix", "Feliz", "Ferguson", "Feria", "Ferman", "Fermin", "Fernandes", "Fernandez", "Fernando", "Ferrari", "Ferreira", "Ferreiro", "Ferrel", "Ferrell", "Ferrer", "Ferrera", "Ferreras", "Ferreyra", "Ferro", "Ferrufino", "Fiallo", "Fiallos", "Field", "Fields", "Fierro", "Fierros", "Figeroa", "Figueras", "Figueredo", "Figuereo", "Figueroa", "Fimbres", "Finch", "Finley", "Fischer", "Fisher", "Fitzgerald", "Fitzpatrick", "Flamenco", "Flecha", "Fleitas", "Fleites", "Fleming", "Fletcher", "Fletes", "Florencio", "Florentino", "Flores", "Florez", "Florian", "Flowers", "Floyd", "Flynn", "Foley", "Fong", "Fonseca", "Font", "Fontanez", "Fontes", "Forbes", "Ford", "Forero", "Forte", "Fortuna", "Foster", "Fournier", "Fowler", "Fox", "Fraga", "Fragoso", "Fraijo", "Fraire", "Franceschi", "Francis", "Francisco", "Franco", "Frank", "Franklin", "Franqui", "Fraser", "Fraticelli", "Frausto", "Frayre", "Frazier", "Fred", "Frederick", "Freeman", "Fregoso", "Freire", "Freitas", "French", "Fresquez", "Freyre", "Frias", "Friedman", "Fritz", "Frost", "Frutos", "Fry", "Frye", "Fuente", "Fuentes", "Fuentez", "Fuerte", "Fuertes", "Fulgencio", "Fuller", "Fulton", "Fundora", "Funes", "Funez", "Gabaldon", "Gabriel", "Gaeta", "Gaines", "Gaitan", "Galan", "Galarza", "Galaviz", "Galaz", "Galban", "Galdamez", "Galeana", "Galeano", "Galeas", "Galeno", "Galicia", "Galindez", "Galindo", "Gallagher", "Gallardo", "Gallego", "Gallegos", "Gallo", "Galloway", "Galo", "Galvan", "Galvez", "Galvin", "Galvis", "Gama", "Gamarra", "Gamble", "Gamboa", "Gamero", "Games", "Gamez", "Gamino", "Gandara", "Gandarilla", "Gaona", "Garate", "Garay", "Garces", "Garcia", "Garciagarcia", "Garcialopez", "Garciaperez", "Garcilazo", "Gardea", "Gardner", "Garduno", "Garfias", "Garibaldi", "Garibay", "Garica", "Garner", "Garnica", "Garrett", "Garrido", "Garriga", "Garrison", "Garsia", "Garza", "Garzon", "Gasca", "Gascon", "Gaspar", "Gastelum", "Gaston", "Gates", "Gatica", "Gaucin", "Gauna", "Gautier", "Gavidia", "Gavilanes", "Gavina", "Gaviria", "Gaxiola", "Gay", "Gaytan", "Gayton", "Genao", "Gentry", "George", "Gerardo", "Gerena", "German", "Germosen", "Geronimo", "Gervacio", "Gibbons", "Gibbs", "Gibson", "Gil", "Gilbert", "Giles", "Gill", "Gillespie", "Gilmore", "Gimenez", "Gines", "Giordano", "Giraldo", "Giron", "Glass", "Glenn", "Gloria", "Glover", "Godina", "Godines", "Godinez", "Godoy", "Goff", "Golden", "Goldstein", "Gomes", "Gomez", "Gongora", "Gonsales", "Gonsalez", "Gonsalves", "Gonzaga", "Gonzales", "Gonzalez", "Good", "Goodman", "Goodwin", "Gordillo", "Gordon", "Goris", "Gorman", "Gotay", "Goto", "Gould", "Govea", "Goytia", "Grace", "Gracia", "Graciano", "Gradilla", "Grado", "Graham", "Grajales", "Grajeda", "Gramajo", "Granada", "Granado", "Granados", "Granda", "Grande", "Granillo", "Grant", "Grau", "Graves", "Gray", "Graziano", "Greco", "Green", "Greene", "Greer", "Gregorio", "Gregory", "Griego", "Griffin", "Griffith", "Grijalva", "Grillo", "Grimaldo", "Grimes", "Grisales", "Gross", "Grullon", "Guadalupe", "Guadamuz", "Guadarrama", "Guadiana", "Guajardo", "Guaman", "Guandique", "Guardado", "Guardiola", "Gudiel", "Gudino", "Guebara", "Guel", "Guereca", "Guerra", "Guerrero", "Guevara", "Guido", "Guijarro", "Guijosa", "Guillen", "Guillermo", "Guitron", "Guity", "Guizar", "Gurrola", "Gurule", "Gusman", "Guthrie", "Gutierres", "Gutierrez", "Guy", "Guzman", "Haas", "Hahn", "Hale", "Haley", "Hall", "Hamilton", "Hammond", "Hampton", "Hancock", "Hanna", "Hansen", "Hanson", "Hard", "Hardin", "Harding", "Hardy", "Harmon", "Haro", "Haros", "Harper", "Harrell", "Harrington", "Harris", "Harrison", "Hart", "Hartman", "Harvey", "Hastings", "Hawkins", "Hayden", "Hayes", "Haynes", "Hays", "Heath", "Hebert", "Henandez", "Henao", "Henderson", "Hendricks", "Hendrickson", "Hendrix", "Henriquez", "Henry", "Hensley", "Henson", "Herandez", "Heras", "Herbert", "Hercules", "Heredia", "Herman", "Hermida", "Hermosillo", "Hernandes", "Hernandez", "Herrada", "Herrejon", "Herrera", "Herrero", "Herring", "Herron", "Hess", "Hewitt", "Hickey", "Hickman", "Hicks", "Hidalgo", "Hidrogo", "Higareda", "Higgins", "Higuera", "Hilario", "Hill", "Hilton", "Hincapie", "Hines", "Hinojos", "Hinojosa", "Hipolito", "Hobbs", "Hodge", "Hodges", "Hodgson", "Hoffman", "Hogan", "Holden", "Holder", "Holguin", "Holland", "Holloway", "Holman", "Holmes", "Holt", "Hood", "Hooper", "Hoover", "Hopkins", "Hopper", "Horn", "Horne", "Horta", "Horton", "House", "Houston", "Howard", "Howe", "Howell", "Hoyos", "Huaman", "Huante", "Hubbard", "Huber", "Hudson", "Huerta", "Huertas", "Huesca", "Huezo", "Huff", "Huffman", "Hughes", "Hugo", "Huitron", "Huizar", "Hull", "Humphrey", "Hunt", "Hunter", "Hurley", "Huron", "Hurst", "Hurtado", "Hutchinson", "Hyde", "Ibanez", "Ibarra", "Iglesias", "Ignacio", "Illescas", "Inda", "Infante", "Ingram", "Iniguez", "Inoa", "Inocencio", "Interiano", "Inzunza", "Ipina", "Iracheta", "Iraheta", "Iriarte", "Irias", "Iribe", "Irigoyen", "Irizarry", "Irwin", "Isaac", "Isais", "Isaza", "Isidoro", "Isidro", "Islas", "Iturralde", "Izaguirre", "Izquierdo", "Jacinto", "Jackson", "Jacob", "Jacobo", "Jacobs", "Jacobson", "Jacome", "Jacques", "Jacquez", "Jaime", "Jaimes", "Jaimez", "Jalomo", "James", "Jaques", "Jaquez", "Jara", "Jaramillo", "Jarquin", "Jarvis", "Jaso", "Jasso", "Jauregui", "Javier", "Jefferson", "Jenkins", "Jennings", "Jensen", "Jerez", "Jeronimo", "Jesus", "Jimenes", "Jimenez", "Jiminez", "Jiron", "Joaquin", "John", "Johns", "Johnson", "Johnston", "Jojola", "Jones", "Jordan", "Jorge", "Jose", "Joseph", "Jovel", "Joya", "Juan", "Juarbe", "Juarez", "Julian", "Junco", "Jurado", "Jusino", "Justiniano", "Justo", "Kaiser", "Kane", "Kaplan", "Katz", "Kaufman", "Keith", "Keller", "Kelley", "Kelly", "Kemp", "Kennedy", "Kent", "Kerr", "Key", "Keyes", "Khan", "Kim", "King", "Kinney", "Kirby", "Kirk", "Klein", "Kline", "Knapp", "Knight", "Knowles", "Knox", "Koch", "Kramer", "Krause", "Laboy", "Labra", "Labrada", "Labrador", "Lacayo", "Lafuente", "Lago", "Lagos", "Laguna", "Lagunas", "Lagunes", "Lainez", "Lajara", "Lake", "Lam", "Lamadrid", "Lamar", "Lamas", "Lamb", "Lambert", "Lamboy", "Lancaster", "Landa", "Landaverde", "Landeros", "Landin", "Landry", "Lane", "Lang", "Langarica", "Lange", "Lantigua", "Lanuza", "Lanza", "Lao", "Laporte", "Lara", "Laracuente", "Laredo", "Lares", "Larez", "Larin", "Larios", "Larosa", "Larranaga", "Larrea", "Larsen", "Larson", "Lasalle", "Lascano", "Lasso", "Lastra", "Latorre", "Lau", "Laureano", "Laurel", "Lavin", "Lawrence", "Lawson", "Lay", "Lazalde", "Lazaro", "Lazcano", "Lazo", "Lazos", "Leach", "Leal", "Leandro", "Leanos", "Leblanc", "Lebron", "Lechuga", "Ledesma", "Ledezma", "Lee", "Legaspi", "Leger", "Leija", "Leiva", "Lema", "Lemon", "Lemos", "Lemus", "Leo", "Leon", "Leonard", "Leonardo", "Leos", "Lepe", "Lerma", "Leslie", "Lester", "Levario", "Levine", "Levy", "Lewis", "Ley", "Leyba", "Leyva", "Lezama", "Lezcano", "Licea", "Licon", "Licona", "Liendo", "Liera", "Lima", "Limas", "Limon", "Limones", "Linan", "Linares", "Linarez", "Lind", "Lindo", "Lindsay", "Lindsey", "Lino", "Lira", "Liranzo", "Liriano", "Liscano", "Little", "Livingston", "Liz", "Lizama", "Lizaola", "Lizardi", "Lizardo", "Lizarraga", "Lizcano", "Llamas", "Llanas", "Llanes", "Llano", "Llanos", "Llerena", "Llorens", "Lloyd", "Loa", "Loaiza", "Loayza", "Lobato", "Lobo", "Lobos", "Lockhart", "Loera", "Loeza", "Logan", "Loja", "Lomas", "Lombardo", "Lombera", "Lomeli", "Lona", "Londono", "Long", "Longoria", "Loor", "Lopera", "Lopes", "Lopez", "Lopezgarcia", "Lopezhernandez", "Lopezlopez", "Lopezmartinez", "Lora", "Lord", "Loredo", "Lorenzana", "Lorenzo", "Loreto", "Losada", "Losano", "Losoya", "Louis", "Lovato", "Love", "Lowe", "Lowery", "Loya", "Loyola", "Loza", "Lozada", "Lozano", "Lozoya", "Lua", "Lucas", "Lucatero", "Lucena", "Lucero", "Luciano", "Lucio", "Luera", "Lueras", "Luevano", "Luevanos", "Lugo", "Luis", "Lujan", "Lujano", "Lule", "Lumbreras", "Luna", "Lund", "Lung", "Lupercio", "Lupian", "Luque", "Luquin", "Lutz", "Luviano", "Luz", "Lynch", "Lynn", "Lyons", "Macareno", "Macario", "MacDonald", "Macedo", "Machado", "Machin", "Machuca", "Macias", "Maciel", "Mack", "Mackey", "Madden", "Madera", "Madero", "Madrid", "Madrigal", "Madril", "Madriz", "Madueno", "Maes", "Maese", "Maestas", "Maestre", "Maez", "Magallan", "Magallanes", "Magallanez", "Magallon", "Magana", "Magdaleno", "Mahoney", "Mairena", "Maisonet", "Majano", "Malacara", "Malagon", "Malave", "Maldonado", "Malone", "Malpica", "Maltez", "Maltos", "Mancera", "Mancha", "Mancia", "Mancias", "Mancilla", "Mancillas", "Mancinas", "Mandujano", "Mangual", "Manjarrez", "Mann", "Manning", "Manon", "Manrique", "Manriquez", "Mansilla", "Manso", "Mantilla", "Manuel", "Manzanares", "Manzanarez", "Manzano", "Manzo", "Mar", "Maradiaga", "Maravilla", "Marban", "Marcano", "Marcelino", "Marcelo", "Marchan", "Marchena", "Marcia", "Marcial", "Marcos", "Marcus", "Marenco", "Marentes", "Mares", "Marez", "Maria", "Mariano", "Marin", "Marine", "Marines", "Marinez", "Marino", "Mariscal", "Marks", "Marmol", "Marmolejo", "Marmolejos", "Marques", "Marquez", "Marquina", "Marrero", "Marron", "Marroquin", "Marrufo", "Marrujo", "Marsh", "Marshall", "Marta", "Marte", "Martel", "Martell", "Martes", "Marti", "Martin", "Martindelcampo", "Martines", "Martinez", "Martino", "Martins", "Martir", "Marty", "Marzan", "Mas", "Mascarenas", "Mascorro", "Masias", "Mason", "Massa", "Massey", "Mata", "Matamoros", "Mateo", "Mateos", "Mathews", "Mathis", "Matias", "Matos", "Matta", "Matthews", "Mattos", "Maturino", "Matus", "Matute", "Mauricio", "Maxwell", "May", "Maya", "Mayen", "Mayer", "Mayes", "Maynard", "Maynes", "Maynez", "Mayo", "Mayor", "Mayoral", "Mayorga", "Mayorquin", "Mays", "Maysonet", "Maza", "Mazariego", "Mazariegos", "Mazon", "McAllister", "McBride", "McCabe", "McCall", "McCann", "McCarthy", "McCarty", "McClain", "McClure", "McConnell", "McCormick", "McCoy", "McCullough", "McDaniel", "McDermott", "McDonald", "McDowell", "McFarland", "McGee", "McGrath", "McGuire", "McIntosh", "McIntyre", "McKay", "McKee", "McKenna", "McKenzie", "McKinney", "McLaughlin", "McLean", "McLeod", "McMahon", "McMillan", "McNeil", "McPherson", "Meadows", "Medeiros", "Medel", "Medellin", "Medero", "Mederos", "Medina", "Medrano", "Mejia", "Mejias", "Mejorado", "Melara", "Melchor", "Melecio", "Melena", "Melendes", "Melendez", "Melendrez", "Melero", "Melgar", "Melgarejo", "Melgoza", "Mellado", "Mello", "Melo", "Melton", "Membreno", "Mena", "Menchaca", "Mendes", "Mendez", "Mendieta", "Mendiola", "Mendivil", "Mendizabal", "Mendosa", "Mendoza", "Menendez", "Meneses", "Menjivar", "Mera", "Meraz", "Mercado", "Merced", "Mercedes", "Mercer", "Merchan", "Merida", "Merino", "Merlo", "Merlos", "Mero", "Merrill", "Merritt", "Mesa", "Mesta", "Mestas", "Mestre", "Meyer", "Meyers", "Meza", "Michael", "Michel", "Middleton", "Mier", "Miera", "Miguel", "Mijangos", "Mijares", "Milan", "Milanes", "Miles", "Milian", "Milla", "Millan", "Miller", "Milligan", "Mills", "Mina", "Minaya", "Minero", "Minjares", "Minjarez", "Minor", "Mira", "Mirabal", "Miramontes", "Miranda", "Mireles", "Mirelez", "Miron", "Mitchell", "Moctezuma", "Modesto", "Mojarro", "Mojica", "Molano", "Molina", "Molinar", "Monarrez", "Moncada", "Moncayo", "Moncivais", "Mondragon", "Monegro", "Monge", "Monjaras", "Monjaraz", "Monje", "Monreal", "Monroe", "Monroy", "Monrreal", "Monrroy", "Monsalve", "Monserrate", "Monsivais", "Montalbo", "Montalvan", "Montalvo", "Montana", "Montanez", "Montano", "Montas", "Monte", "Monteagudo", "Montealegre", "Montejano", "Montejo", "Montellano", "Montelongo", "Montemayor", "Montenegro", "Monteon", "Montero", "Monterrosa", "Monterroso", "Monterroza", "Montes", "Montesdeoca", "Montesino", "Montesinos", "Montez", "Montgomery", "Montiel", "Montijo", "Montilla", "Montoya", "Montufar", "Monzon", "Moody", "Moon", "Moore", "Mora", "Morado", "Moraga", "Morales", "Moralez", "Moran", "Morano", "Morataya", "Moreira", "Morejon", "Morel", "Morell", "Morelos", "Morena", "Moreno", "Morera", "Moreta", "Morfin", "Morga", "Morgado", "Morgan", "Mori", "Morillo", "Morin", "Moro", "Morocho", "Moron", "Morones", "Moronta", "Morquecho", "Morris", "Morrison", "Morrow", "Morse", "Morton", "Morua", "Moscoso", "Moses", "Mosley", "Mosqueda", "Mosquera", "Moss", "Mota", "Motta", "Moya", "Muela", "Mueller", "Mujica", "Mulero", "Mullen", "Muller", "Mullins", "Mundo", "Muneton", "Mungia", "Munguia", "Muniz", "Munos", "Munoz", "Muralles", "Muratalla", "Murcia", "Murga", "Murguia", "Muriel", "Murillo", "Muro", "Murphy", "Murray", "Murrieta", "Murrietta", "Muzquiz", "Myers", "Nadal", "Najar", "Najarro", "Najera", "Nambo", "Nanez", "Napoles", "Naranjo", "Narez", "Narvaez", "Narvaiz", "Nash", "Natal", "Natera", "Natividad", "Nava", "Navar", "Navarette", "Navarrete", "Navarrette", "Navarro", "Navas", "Navedo", "Navejar", "Navejas", "Navia", "Nazario", "Neal", "Negrete", "Negrin", "Negron", "Neira", "Nelson", "Neri", "Neria", "Nerio", "Nevares", "Nevarez", "Newell", "Newman", "Newton", "Neyra", "Nguyen", "Nicasio", "Nicholas", "Nichols", "Nicholson", "Nicolas", "Niebla", "Nieblas", "Nielsen", "Nieto", "Nieves", "Nila", "Nino", "Nixon", "Noa", "Noble", "Noboa", "Nodal", "Nodarse", "Noel", "Nogales", "Noguera", "Nogueras", "Noguez", "Nolan", "Nolasco", "Noriega", "Norman", "Norris", "Norton", "Nova", "Novak", "Novelo", "Novo", "Novoa", "Noyola", "Nuncio", "Nunes", "Nunez", "Nungaray", "Nuno", "O'Brien", "O'Connell", "O'Connor", "O'Dell", "O'Donnell", "O'Hara", "O'Neal", "O'Neil", "O'Neill", "Obando", "Obeso", "Obregon", "Ocampo", "Ocana", "Ocanas", "Ocasio", "Ocegueda", "Oceguera", "Ochoa", "Ocon", "Odell", "Ogando", "Ogas", "Ojeda", "Olague", "Olalde", "Olan", "Olarte", "Olavarria", "Olaya", "Olea", "Olgin", "Olguin", "Oliva", "Olivar", "Olivares", "Olivarez", "Olivarria", "Olivas", "Oliveira", "Olivencia", "Oliver", "Olivera", "Oliveras", "Olivero", "Oliveros", "Olivieri", "Olivo", "Olivos", "Olmeda", "Olmedo", "Olmo", "Olmos", "Olsen", "Olson", "Olveda", "Olvera", "Onate", "Onofre", "Ontiveros", "Oquendo", "Orantes", "Ordaz", "Ordones", "Ordonez", "Orduna", "Orduno", "Orea", "Oregel", "Oregon", "Orejel", "Orellana", "Orellano", "Orengo", "Orihuela", "Orlando", "Ornelas", "Orona", "Oropeza", "Oros", "Orosco", "Orozco", "Orr", "Orrego", "Orta", "Ortega", "Ortegon", "Ortez", "Ortis", "Ortiz", "Ortuno", "Osborn", "Osborne", "Osegueda", "Oseguera", "Osoria", "Osorio", "Osornio", "Osorno", "Ospina", "Osuna", "Otano", "Otero", "Ovalle", "Ovalles", "Ovando", "Oviedo", "Owen", "Owens", "Oyervides", "Oyola", "Ozuna", "Pablo", "Pabon", "Pace", "Pacheco", "Padilla", "Padin", "Padro", "Padron", "Padua", "Paez", "Pagan", "Page", "Paiz", "Palacio", "Palacios", "Palafox", "Palencia", "Palermo", "Pallares", "Palma", "Palmer", "Palmerin", "Palomar", "Palomares", "Palomarez", "Palomera", "Palomino", "Palomo", "Palos", "Panameno", "Pando", "Panduro", "Paniagua", "Pantaleon", "Pantoja", "Panuco", "Parada", "Paramo", "Pardo", "Paredes", "Paredez", "Pareja", "Parga", "Pargas", "Paris", "Park", "Parker", "Parks", "Parra", "Parrales", "Parras", "Parrilla", "Parrish", "Parsons", "Partida", "Pascual", "Pasillas", "Pastor", "Pastrana", "Patel", "Patino", "Patlan", "Patricio", "Patrick", "Patron", "Patterson", "Patton", "Paucar", "Paul", "Paula", "Paulin", "Paulino", "Pavia", "Pavon", "Payan", "Payano", "Payne", "Paz", "Pazmino", "Pazos", "Pearce", "Pearson", "Pech", "Pecina", "Peck", "Pedraza", "Pedregon", "Pedro", "Pedrosa", "Pedroso", "Pedroza", "Peguero", "Peinado", "Pelaez", "Pelayo", "Pellot", "Pena", "Penafiel", "Penaloza", "Penaranda", "Penate", "Peng", "Penn", "Pennington", "Penuelas", "Pequeno", "Pera", "Perales", "Peralez", "Peralta", "Peraza", "Perdomo", "Perea", "Pereda", "Peregrino", "Pereida", "Pereira", "Perera", "Peres", "Pereyra", "Perez", "Perezgarcia", "Perkins", "Perla", "Perry", "Person", "Peru", "Pescador", "Pesina", "Pesqueira", "Peters", "Petersen", "Peterson", "Petty", "Phelps", "Phillips", "Picado", "Picasso", "Picazo", "Piceno", "Pichardo", "Pico", "Picon", "Piedra", "Piedrahita", "Pierce", "Pierre", "Pierson", "Pimentel", "Pimienta", "Pina", "Pinal", "Pinales", "Pineda", "Pinedo", "Pineiro", "Pinela", "Pinero", "Pinilla", "Pino", "Pinon", "Pintado", "Pinto", "Pintor", "Pinzon", "Pita", "Pitre", "Pittman", "Pitts", "Pizana", "Pizano", "Pizarro", "Pla", "Placencia", "Placido", "Planas", "Plancarte", "Plascencia", "Plasencia", "Plata", "Platero", "Plaza", "Plazola", "Pleitez", "Pliego", "Poblano", "Polanco", "Pollard", "Pollock", "Polo", "Pomales", "Pompa", "Ponce", "Poncedeleon", "Ponciano", "Pons", "Pool", "Poole", "Pope", "Popoca", "Porras", "Portal", "Portalatin", "Portales", "Portela", "Porter", "Portilla", "Portillo", "Porto", "Portugal", "Posada", "Posadas", "Potter", "Potts", "Poveda", "Powell", "Powers", "Pozo", "Pozos", "Prada", "Prado", "Prats", "Pratt", "Pratts", "Preciado", "Presas", "Preston", "Price", "Priego", "Prieto", "Prince", "Proano", "Proctor", "Provencio", "Prudencio", "Pruitt", "Pruneda", "Puebla", "Puello", "Puente", "Puentes", "Puerta", "Puerto", "Puga", "Pugh", "Puig", "Pujol", "Pujols", "Pulgarin", "Pulido", "Puma", "Pupo", "Quesada", "Quevedo", "Quezada", "Quijada", "Quijano", "Quijas", "Quiles", "Quinn", "Quinones", "Quinonez", "Quintana", "Quintanar", "Quintanilla", "Quintela", "Quintero", "Quinteros", "Quinto", "Quirarte", "Quirino", "Quiroa", "Quiroga", "Quiros", "Quiroz", "Quispe", "Quito", "Quizhpi", "Rabadan", "Rabago", "Rada", "Radillo", "Rael", "Rafael", "Raigoza", "Ramales", "Ramires", "Ramirez", "Ramon", "Ramos", "Ramsey", "Randall", "Randolph", "Rangel", "Rankin", "Rascon", "Rasmussen", "Rauda", "Ravelo", "Ray", "Raya", "Rayas", "Raygoza", "Raymond", "Raymundo", "Rayo", "Rayos", "Razo", "Rea", "Read", "Real", "Rebollar", "Rebolledo", "Rebollo", "Recendez", "Recendiz", "Recinos", "Recio", "Redondo", "Reed", "Reese", "Reeves", "Regalado", "Regino", "Rego", "Reid", "Reilly", "Reina", "Reinoso", "Remigio", "Renderos", "Rendon", "Rengifo", "Renovato", "Rentas", "Renteria", "Requena", "Resendez", "Resendiz", "Resto", "Restrepo", "Reta", "Retana", "Reveles", "Revilla", "Revuelta", "Rey", "Reyes", "Reyez", "Reyna", "Reynaga", "Reynolds", "Reynosa", "Reynoso", "Reza", "Rhodes", "Ribas", "Ribera", "Ricardo", "Rice", "Rich", "Richard", "Richards", "Richardson", "Richmond", "Richter", "Rico", "Riddle", "Riera", "Riggs", "Rijo", "Riley", "Rincon", "Rincones", "Riojas", "Rios", "Riquelme", "Ritchie", "Rivadeneira", "Rivas", "Rivera", "Rivero", "Riveron", "Riveros", "Rivers", "Riviera", "Rizo", "Rizzo", "Roa", "Roach", "Robaina", "Robbins", "Roberson", "Robert", "Roberto", "Roberts", "Robertson", "Robinson", "Robledo", "Roblero", "Robles", "Roca", "Rocha", "Roche", "Rochin", "Rodarte", "Rodas", "Rodela", "Rodgers", "Rodriges", "Rodrigue", "Rodrigues", "Rodriguez", "Rodriques", "Rodriquez", "Rogel", "Rogers", "Rogue", "Roig", "Rojas", "Rojo", "Roldan", "Rollins", "Rolon", "Roman", "Romano", "Romeo", "Romero", "Romo", "Ron", "Rondon", "Ronquillo", "Roque", "Rosa", "Rosado", "Rosales", "Rosalez", "Rosario", "Rosas", "Rose", "Rosell", "Rosendo", "Rosero", "Rosete", "Rosiles", "Rosillo", "Ross", "Rossi", "Rostro", "Roth", "Rovira", "Rowe", "Rowland", "Roy", "Roybal", "Rua", "Ruacho", "Ruan", "Ruano", "Rubalcaba", "Rubalcava", "Rubi", "Rubin", "Rubio", "Ruby", "Rueda", "Ruedas", "Ruelas", "Rufino", "Ruis", "Ruiz", "Rush", "Russell", "Russo", "Rutz", "Ruvalcaba", "Ruybal", "Ryan", "Saavedra", "Sabala", "Sabater", "Sabedra", "Sabillon", "Sabino", "Sada", "Saenz", "Saez", "Sagastume", "Sahagun", "Sainz", "Sais", "Saiz", "Sala", "Salado", "Salais", "Salaiz", "Salamanca", "Salas", "Salasar", "Salaz", "Salazar", "Salce", "Salceda", "Salcedo", "Salcido", "Saldana", "Saldarriaga", "Saldierna", "Saldivar", "Sales", "Salgado", "Salguero", "Salinas", "Salmeron", "Salmon", "Salomon", "Salto", "Salvador", "Salvatierra", "Samaniego", "Samano", "Samayoa", "Sambrano", "Samora", "Sampson", "Samudio", "Samuel", "Sanabria", "Sanches", "Sanchez", "Sancho", "Sandate", "Sanders", "Sandobal", "Sandoval", "Sanford", "Sanjuan", "Sanmartin", "Sanmiguel", "Sanroman", "Santa", "Santacruz", "Santamaria", "Santana", "Santander", "Santiago", "Santibanez", "Santiesteban", "Santillan", "Santillana", "Santillanes", "Santillano", "Santini", "Santistevan", "Santizo", "Santo", "Santos", "Santoya", "Santoyo", "Sanz", "Sapien", "Sarabia", "Saragosa", "Sarate", "Saravia", "Sardina", "Sardinas", "Sargent", "Sarinana", "Sarmiento", "Sarria", "Sauceda", "Saucedo", "Saunders", "Sauseda", "Sausedo", "Savage", "Savala", "Savedra", "Sawyer", "Schaefer", "Schmidt", "Schmitt", "Schneider", "Schroeder", "Schultz", "Schwartz", "Scott", "Sears", "Sebastian", "Seda", "Sedano", "Sedillo", "Segarra", "Segovia", "Segoviano", "Segui", "Segundo", "Segura", "Sellers", "Selva", "Semidey", "Sena", "Sencion", "Sendejas", "Sendejo", "Sepeda", "Sepulveda", "Sequeira", "Serafin", "Serano", "Serda", "Sermeno", "Serna", "Serpa", "Serpas", "Serra", "Serrano", "Serrata", "Serrato", "Serratos", "Servantes", "Servellon", "Servin", "Sesma", "Severino", "Sevilla", "Sexton", "Shaffer", "Shannon", "Sharp", "Shaw", "Shea", "Shelton", "Shepard", "Shepherd", "Sheppard", "Sherman", "Sherwood", "Shields", "Short", "Sias", "Sibrian", "Sicairos", "Sida", "Sierra", "Sifuentes", "Sigala", "Siguenza", "Silguero", "Sillas", "Siller", "Silva", "Silvas", "Silveira", "Silver", "Silvera", "Silverio", "Silvestre", "Simental", "Simmons", "Simon", "Simons", "Simpson", "Sims", "Sinclair", "Singh", "Singleton", "Siordia", "Siqueiros", "Sisneros", "Sixtos", "Skinner", "Slater", "Sloan", "Small", "Smith", "Snow", "Snyder", "Soares", "Soberanes", "Soberanis", "Socarras", "Sola", "Solache", "Solano", "Solares", "Soler", "Solis", "Solivan", "Soliz", "Solomon", "Solorio", "Solorzano", "Soltero", "Somarriba", "Somoza", "Sorensen", "Soria", "Soriano", "Sorto", "Sosa", "Sostre", "Sotello", "Sotelo", "Soto", "Sotolongo", "Sotomayor", "Sousa", "Souza", "Soza", "Sparks", "Spears", "Spence", "Spencer", "Springer", "Stafford", "Stanley", "Stanton", "Stark", "Starr", "Steele", "Stein", "Stephens", "Stephenson", "Sterling", "Stevens", "Stevenson", "Stewart", "Stokes", "Stone", "Stout", "Strickland", "Strong", "Stuart", "Suares", "Suarez", "Suazo", "Subia", "Suero", "Sullivan", "Summers", "Suniga", "Suriel", "Surita", "Sustaita", "Sutherland", "Sutton", "Swanson", "Sweeney", "Sweet", "Sylva", "Tabares", "Tabarez", "Taboada", "Tabora", "Taborda", "Tadeo", "Tafolla", "Tafoya", "Tagle", "Talamante", "Talamantes", "Talamantez", "Talavera", "Tamayo", "Tamez", "Tanguma", "Tanner", "Tapanes", "Tapia", "Tarango", "Tarin", "Tate", "Tatum", "Tavares", "Tavarez", "Tavera", "Taveras", "Taylor", "Tejada", "Tejeda", "Tejera", "Telles", "Tellez", "Tello", "Tena", "Teniente", "Tenorio", "Teran", "Tercero", "Terrazas", "Terrell", "Terrero", "Terriquez", "Terrones", "Terry", "Texidor", "Then", "Thomas", "Thompson", "Thornton", "Thurman", "Tiburcio", "Ticas", "Tienda", "Tijerina", "Tinajero", "Tineo", "Tinoco", "Tirado", "Tiscareno", "Tlatelpa", "Tobar", "Tobias", "Tobin", "Tobon", "Todd", "Toledo", "Tolentino", "Tomas", "Tomlinson", "Tonche", "Topete", "Toral", "Toribio", "Toro", "Torralba", "Torre", "Torres", "Torrez", "Torrico", "Toscano", "Tostado", "Tovar", "Townsend", "Tracy", "Tran", "Travieso", "Travis", "Trejo", "Trejos", "Treto", "Trevino", "Trevizo", "Triana", "Trigo", "Trigueros", "Trillo", "Trinidad", "Tristan", "Trivino", "Troche", "Trochez", "Troncoso", "Trujillo", "Tucker", "Turcios", "Turner", "Turrubiartes", "Turrubiates", "Tyler", "Ugalde", "Ugarte", "Ulibarri", "Ulloa", "Umana", "Umanzor", "Underwood", "Unzueta", "Uranga", "Urban", "Urbano", "Urbina", "Urdiales", "Urena", "Urenda", "Ureno", "Ureste", "Uresti", "Urgiles", "Uriarte", "Urias", "Uribe", "Uriegas", "Urieta", "Urioste", "Uriostegui", "Urizar", "Urquidez", "Urquidi", "Urquilla", "Urquiza", "Urquizo", "Urrea", "Urrutia", "Urzua", "Uvalle", "Vaca", "Valadez", "Valcarcel", "Valderas", "Valderrama", "Valdes", "Valdespino", "Valdez", "Valdivia", "Valdivieso", "Valdiviezo", "Valdovinos", "Vale", "Valencia", "Valenciano", "Valente", "Valentin", "Valentine", "Valenzuela", "Valera", "Valeriano", "Valerio", "Valero", "Valiente", "Valladares", "Valladolid", "Valle", "Vallecillo", "Vallejo", "Vallejos", "Valles", "Vallez", "Vallin", "Valtierra", "Valverde", "Vance", "Vanegas", "Vaquera", "Vaquero", "Vara", "Varela", "Vargas", "Varona", "Vasallo", "Vasques", "Vasquez", "Vaughan", "Vaughn", "Vazguez", "Vazques", "Vazquez", "Vega", "Vegas", "Vejar", "Vela", "Velaquez", "Velarde", "Velasco", "Velasques", "Velasquez", "Velazco", "Velazquez", "Velez", "Veliz", "Veloz", "Vences", "Venegas", "Vento", "Ventura", "Venzor", "Vera", "Veras", "Verastegui", "Verde", "Verdejo", "Verdin", "Verdugo", "Verdusco", "Verduzco", "Vergara", "Vialpando", "Viana", "Vicario", "Vicencio", "Vicente", "Victor", "Victoria", "Victoriano", "Victorino", "Victorio", "Vicuna", "Vidal", "Vidales", "Vidana", "Vidaurri", "Vides", "Vidrio", "Vieira", "Vielma", "Viera", "Vierra", "Vieyra", "Vigil", "Vigo", "Vila", "Vilches", "Vilchez", "Vilchis", "Villa", "Villacis", "Villacorta", "Villada", "Villafan", "Villafana", "Villafane", "Villafranca", "Villafranco", "Villafuerte", "Villagomez", "Villagran", "Villagrana", "Villalba", "Villalobos", "Villalon", "Villalona", "Villalovos", "Villalpando", "Villalta", "Villalva", "Villalvazo", "Villamar", "Villamil", "Villaneda", "Villanueva", "Villar", "Villareal", "Villarreal", "Villarroel", "Villarruel", "Villasana", "Villasenor", "Villatoro", "Villaverde", "Villavicencio", "Villeda", "Villegas", "Villela", "Villescas", "Villicana", "Viloria", "Vinas", "Vincent", "Viramontes", "Virella", "Virgen", "Viruet", "Viscarra", "Vital", "Vitela", "Viteri", "Vivanco", "Vivar", "Vivas", "Vivero", "Viveros", "Vives", "Vizcaino", "Vizcarra", "Vizcarrondo", "Vogel", "Wade", "Wagner", "Walker", "Wall", "Wallace", "Walls", "Walsh", "Walter", "Walters", "Walton", "Ward", "Ware", "Warner", "Warren", "Washington", "Waters", "Watkins", "Watson", "Watts", "Weaver", "Webb", "Webber", "Weber", "Webster", "Weeks", "Weiss", "Welch", "Wells", "Welsh", "Wences", "Werner", "West", "Wheeler", "Whitaker", "White", "Whitehead", "Whitney", "Wiggins", "Wilcox", "Wilder", "Wiley", "Wilkerson", "Wilkins", "Wilkinson", "Williams", "Williamson", "Willis", "Wills", "Wilson", "Winter", "Winters", "Wise", "Witt", "Wolf", "Wolfe", "Wong", "Wood", "Woodard", "Woods", "Woodward", "Workman", "Wright", "Wyatt", "Yanes", "Yanez", "Yates", "Ybanez", "Ybarra", "Yebra", "Yee", "Yepes", "Yepez", "Yepiz", "Yerena", "Yescas", "Yniguez", "York", "Young", "Yslas", "Yzaguirre", "Zabala", "Zacarias", "Zagal", "Zalazar", "Zaldana", "Zaldivar", "Zamarripa", "Zamarron", "Zambrana", "Zambrano", "Zamora", "Zamorano", "Zamudio", "Zapata", "Zapien", "Zaragosa", "Zaragoza", "Zarate", "Zarazua", "Zarco", "Zatarain", "Zavala", "Zavaleta", "Zavalza", "Zayas", "Zazueta", "Zea", "Zegarra", "Zelada", "Zelaya", "Zeledon", "Zendejas", "Zenteno", "Zepeda", "Zermeno", "Zertuche", "Zetina", "Zetino", "Zevallos", "Zimmerman", "Zorrilla", "Zubia", "Zubiate", "Zuleta", "Zuluaga", "Zuniga", "Zuno", "Zurita"]>> /* Removed all short-cute forms of russian names, they are not real names, can't be used in passports for example. They are names (nicknames) for family and close friends usage - with only positive and close relationships. On slaves it's looked weird and idiotic. Do not re-add them! Removed the same names but with wrong transliteration, and archaic forms not used today, but some alternate trasliteration leaved - if name have historic variations. Also - who added Nymphadora as russian name? LoL.*/ <<set setup.russianSlaveNames = ["Agrippina", "Ala", "Albina", "Aleksandra", "Alewtina", "Alexandra", "Alina", "Alisa", "Alja", "Aljona", "Alla", "Anastasia", "Anfisa", "Anisa", "Anna", "Anschela", "Antonina", "Arina", "Avrora", "Bronislava", "Dariya", "Darja", "Darya", "Diana", "Edita", "Efrosinja", "Ekaterina", "Elena", "Eleonora", "Elisaveta", "Elwira", "Emma", "Eva", "Evelina", "Evgenija", "Ewdokija", "Faina", "Galina", "Glafira", "Inga", "Inna", "Irina", "Janna", "Julia", "Julja", "Kapitolina", "Kira", "Klara", "Klavdia", "Kristina", "Ksenia", "Lada", "Lana", "Lara", "Larisa", "Lidija", "Lilija", "Lina", "Ljubow", "Ljudmila", "Ludmila", "Lybow", "Maja", "Marfa", "Margarita", "Maria", "Marina", "Mariya", "Marta", "Marya", "Mila", "Miljena", "Nadeschda", "Natalia", "Natalja", "Natalya", "Nina", "Nonna", "Nora", "Nympha", "Oksana", "Olesja", "Olga", "Oljona", "Olympiada", "Oxana", "Pelageja", "Polina", "Praskowja", "Raisa", "Rimma", "Ruslana", "Serafima", "Sofia", "Sofiya", "Sofja", "Sofya", "Stella", "Svetlana", "Taisija", "Tamara", "Tatiana", "Tatjana", "Uljana", "Valentina", "Valeria", "Varvara", "Varwara", "Vasilisa", "Vera", "Veronika", "Viktoria", "Viktoriya", "Viola", "Violetta", "Xenia", "Xenja", "Yana", "Yekaterina", "Yelena", "Yelizaveta", "Yulia", "Zhanna", "Zinaida"]>> @@ -359,7 +359,7 @@ <<set setup.brazilianSlaveNames = ["Agripina", "Aléxia", "Alice", "Aline", "Amanda", "Ana", "Andressa", "Anna", "Barbara", "Beatriz", "Brenda", "Bruna", "Camila", "Carla", "Carmen", "Carolina", "Caroline", "Clara", "Daniela", "Fabiana", "Fernanda", "Gabriela", "Gabrielle", "Giovana", "Giovanna", "Helena", "Isabela", "Isabella", "Janete", "Jessica", "Jéssica", "Joana", "Julia", "Juliana", "Larissa", "Laura", "Leticia", "LÃÂvia", "Luana", "Luiza", "LuÃÂza", "Manuela", "Marcela", "Maria", "Mariana", "Marta", "Mercedes", "Milena", "Natália", "Nathalia", "Neuza", "Rafaela", "Raissa", "Raquel", "Sabrina", "Sophia", "Stéfani", "Stephanie", "Tayná", "Taynara", "Thais", "ThaÃÂs", "Valentina", "Victória", "Vitoria", "Vitória", "Yasmin"]>> <<set setup.brazilianSlaveSurnames = ["Abreu", "Aguiar", "Albuquerque", "Alencar", "Alexandre", "Almeida", "Alves", "Amaral", "Amorim", "Anderson", "Andrade", "Antonio", "Antunes", "Aparecida", "Aquino", "Araujo", "Arruda", "Assis", "Augusto", "Azevedo", "Barbosa", "Barreto", "Barros", "Bastos", "Batista", "Bezerra", "Bispo", "Borges", "Braga", "Brandao", "Brasil", "Brito", "Bueno", "Cabral", "Caetano", "Camargo", "Campos", "Candido", "Cardoso", "Carlos", "Carneiro", "Carvalho", "Castro", "Cavalcante", "Cavalcanti", "Cesar", "Chagas", "Chaves", "Coelho", "Cordeiro", "Correa", "Correia", "Costa", "Coutinho", "Couto", "Cristina", "Cruz", "Cunha", "da Costa", "da Silva", "Dantas", "de Almeida", "de Jesus", "de Lima", "de Oliveira", "de Paula", "de Souza", "Dias", "Diniz", "Domingues", "dos Santos", "Duarte", "Dutra", "Eduardo", "Fagundes", "Faria", "Farias", "Felipe", "Felix", "Fernandes", "Ferrari", "Ferraz", "Ferreira", "Figueiredo", "Filho", "Fonseca", "França", "Francisco", "Franco", "Freire", "Freitas", "Garcia", "Gomes", "Gonalves", "Goncalves", "Guedes", "Guerra", "Guimaraes", "Guimares", "Henrique", "Jesus", "Jose", "Junior", "Lacerda", "Leal", "Leite", "Lemos", "Lima", "Lins", "Lira", "Lopes", "Luiz", "Luz", "Macedo", "Machado", "Maciel", "Magalhaes", "Maia", "Mariano", "Marinho", "Marques", "Martins", "Matos", "Mattos", "Medeiros", "Mello", "Melo", "Mendes", "Mendonça", "Menezes", "Mesquita", "Miranda", "Monteiro", "Moraes", "Morais", "Moreira", "Mota", "Motta", "Moura", "Muniz", "Nascimento", "Neto", "Neves", "Nogueira", "Nunes", "Oliveira", "Pacheco", "Paiva", "Passos", "Paula", "Paulo", "Peixoto", "Pereira", "Peres", "Pessoa", "Pimentel", "Pinheiro", "Pinto", "pires", "Pires", "Pontes", "Porto", "Prado", "Queiroz", "Ramos", "Rangel", "Regina", "Reis", "Rezende", "Ribeiro", "Ricardo", "Roberto", "Rocha", "Rodrigues", "Rosa", "Rossi", "Sales", "Sampaio", "Sanches", "Santana", "Santiago", "Santos", "Sena", "Silva", "Silveira", "Simoes", "Siqueira", "Soares", "Sousa", "Souza", "Tavares", "Teixeira", "Toledo", "Torres", "Trindade", "Vargas", "Vasconcelos", "Vaz", "Viana", "Vieira", "Xavier"]>> -<<set setup.chineseSlaveNames = ["Ah", "Ai", "An", "Bai", "Bao", "Bi", "Bo", "Cai", "Chang", "Chao", "Chen", "Cheng", "Chin", "Chun", "Da", "Dan", "Fang", "Fen", "Fu", "Guanting", "Guanyu", "Guiying", "Guo", "Hai", "He", "Heng", "Hong", "Hua", "Huan", "Huang", "Hui", "Jia", "Jian", "Jiang", "Jie", "Jin", "Jing", "Jingyi", "Ju", "Juan", "Jun", "Kun", "Lan", "Lei", "Li", "Lian", "Lili", "Lim", "Lin", "Ling", "Mai-Lee", "Mei-Ling", "Mei", "Meiling", "Min", "Ming", "Mu", "Na", "Ni", "Ning", "Nuan", "Ping", "Qian", "Qing", "Qiong", "Qiu", "Rong", "Ru", "Shan", "Shi", "Shu", "Shufen", "Shui", "Shun", "Soo-lin", "Su", "Tai", "Ting", "Tingting", "Tu", "Wee", "Wei", "Wen", "Wu", "Xia", "Xian", "Xiang", "Xiaomei", "Xiaoyan", "Xinyi", "Xiu", "Xiulan", "Xiuying", "Xue", "Xun", "Ya", "Yahui", "Yaling", "Yan", "Yang", "Yating", "Yawen", "Yazhu", "Yi", "Yijun", "Yin", "Ying", "Yong", "Yu", "Yun", "Zan", "Zedong", "Zhen", "Zheng", "Zhi", "Zhihao", "Zhong", "Zhou"]>> +<<set setup.chineseSlaveNames = ["Ah", "Ai", "Amin", "An", "Bai", "Bao", "Bi", "Bingbing", "Bo", "Cai", "Can", "Chang", "Chao", "Chen", "Cheng", "Chin", "Chun", "Da", "Dan", "Fang", "Fen", "Fu", "Fuli", "Guanting", "Guanyu", "Guiying", "Guo", "Hai", "He", "Heng", "Hong", "Hua", "Huan", "Huang", "Hui", "Jia", "Jian", "Jiang", "Jie", "Jin", "Jing", "Jingyi", "Ju", "Juan", "Jun", "Kun", "Lan", "Lei", "Li", "Lian", "Lili", "Lim", "Lin", "Ling", "Lingyu", "Linxi", "Mai-Lee", "Mei-Ling", "Mei", "Meiling", "Min", "Ming", "Mu", "Na", "Ni", "Ning", "Nuan", "Ping", "Qian", "Qing", "Qinyuan", "Qiong", "Qiu", "Quan", "Rong", "Ru", "Shan", "Shi", "Shu", "Shufen", "Shui", "Shun", "Sisi", "Siyi", "Soo-lin", "Su", "Tai", "Ting", "Tingting", "Tu", "Wee", "Wei", "Wen", "Wenhua", "Wenjie", "Wu", "Xia", "Xian", "Xiang", "Xianzi", "Xiaolu", "Xiaomei", "Xiaoyan", "Xinyi", "Xiu", "Xiulan", "Xiuying", "Xue", "Xun", "Ya", "Yahui", "Yali", "Yaling", "Yan", "Yang", "Yating", "Yawen", "Yazhu", "Yi", "Yijun", "Yin", "Ying", "Yingyin", "Yisa", "Yitong", "Yong", "Yu", "Yun", "Zan", "Zedong", "Zhen", "Zheng", "Zhi", "Zhihao", "Zhong", "Zhou", "Zuying"]>> <<set setup.chineseSlaveSurnames = ["An", "Bai", "Bao", "Bi", "Bian", "Bu", "Cai", "Cao", "Chai", "Chan", "Chang", "Chao", "Che", "Chen", "Cheng", "Cheung", "Chi", "Chiang", "Chiu", "Choi", "Chong", "Chou", "Chow", "Chu", "Chun", "Chung", "Cui", "Dai", "Deng", "Ding", "Dong", "Dou", "Du", "Duan", "Fan", "Fang", "Fei", "Feng", "Fu", "Fung", "Gan", "Gao", "Ge", "Geng", "Gong", "Gongsun", "Gu", "Guan", "Guangqiu", "Guo", "Han", "Hao", "He", "Ho", "Hong", "Hou", "Hsu", "Hu", "Hua", "Huang", "Hui", "Huo", "Ji", "Jia", "Jian", "Jiang", "Jiao", "Jin", "Jing", "Ju", "Kang", "Ke", "Kong", "Kuang", "Kwok", "Lai", "Lam", "Lan", "Lang", "Lau", "Law", "Le", "Lee", "Lei", "Leng", "Leung", "Li", "Lian", "Liang", "Liao", "Lim", "Lin", "Ling", "Liu", "Lo", "Long", "Lou", "Lu", "Luo", "Ma", "Man", "Mao", "Mei", "Meng", "Mi", "Miao", "Min", "Ming", "Mo", "Mu", "Na", "Ng", "Ni", "Nie", "Ning", "Niu", "Ou", "Ouyang", "Pan", "Pang", "Park", "Pei", "Peng", "Pu", "Qi", "Qian", "Qiao", "Qin", "Qiu", "Qu", "Quan", "Rao", "Ren", "Rong", "Ruan", "Sha", "Shan", "Shang", "Shao", "She", "Shen", "Sheng", "Shi", "Shu", "Sima", "Song", "Su", "Sui", "Sun", "Tam", "Tan", "Tang", "Tao", "Teng", "Tian", "Ting", "Tong", "Tsai", "Tsang", "Tse", "Tsui", "Tu", "Van", "Wan", "Wang", "Wee", "Wei", "Wen", "Weng", "Wong", "Woo", "Wu", "Xi", "Xia", "Xiahou", "Xiang", "Xiao", "Xie", "Xin", "Xing", "Xiong", "Xu", "Xue", "Yan", "Yang", "Yao", "Ye", "Yeung", "Yi", "Yin", "Ying", "Yip", "Yong", "Yu", "Yuan", "Yue", "Yun", "Zang", "Zeng", "Zhai", "Zhan", "Zhang", "Zhao", "Zheng", "Zhong", "Zhou", "Zhu", "Zhuang", "Zhuge", "Zhuo", "Zong", "Zou", "Zuo"]>> <<set setup.koreanSlaveNames = ["Bora", "Chae-Won", "Chaewon", "Chun-Ja", "Da-Eun", "Daeun", "Duri", "Eun-Gyeong", "Eun-Jeong", "Eun-Ji", "Eun-Ju", "Eun-Jung", "Eun-Kyung", "Eun-Seo", "Eun-Yeong", "Eun-Young", "Eun", "Eunseo", "Gyeong-Hui", "Gyeong-Ja", "Gyeong-Ok", "Gyeong-Suk", "Gyeong", "Ha-Eun", "Ha-Nui", "Ha-Yoon", "Ha-Yun", "Haeun", "Hana", "Haneul", "Hayun", "Hwan", "Hye-Jin", "Hyeon-Jeong", "Hyeon-Ju", "Hyeon-Suk", "Hyeon", "Hyun-Joo", "Hyun-Jung", "Hyun-Kyung", "Hyun-Sook", "Hyun", "In-Sook", "In-Suk", "Iseul", "Jeon", "Jeong-Hui", "Jeong-Ja", "Jeong-Suk", "Jeong-Sun", "Ji-A", "Ji-Ah", "Ji-Eun", "Ji-Hu", "Ji-Hye", "Ji-Hyeon", "Ji-Hyun", "Ji-Min", "Ji-Seon", "Ji-U", "Ji-Woo", "Ji-Yeon", "Ji-Yeong", "Ji-Yoo", "Ji-Yoon", "Ji-Young", "Ji-Yu", "Ji", "Jia", "Jimin", "Jin-Sol", "Jiu", "Jiyu", "Jiyun", "Jong", "Joo-Hee", "Joo-Ri", "Joo-Won", "Ju-Won", "Jun", "Jung-Hee", "Jung-Sook", "Jung-Soon", "Jung", "Kyung-Hee", "Kyung-Ja", "Kyung-Ok", "Kyung-Sook", "Kyung", "Mei-Hui", "Mei-Ling", "Mi-Gyeong", "Mi-Kyung", "Mi-Sook", "Mi-Suk", "Mi-Yeong", "Mi-Young", "Min-Ji", "Min-Jun", "Min-Seo", "Min-Su", "Min", "Minseo", "Myeong-Suk", "Myeong", "Myung-Sook", "Myung", "Na-Na", "Nari", "Ry", "Sa-Rang", "Sang", "Se-Hui", "Se-Whee", "Seo-Hyeon", "Seo-Hyun", "Seo-Yeon", "Seo-Yoon", "Seo-Yun", "Seohyeon", "Seon-Yeong", "Seong-Hyeon", "Seong-Min", "Seong", "Seoyeon", "Seoyun", "Seul-Ki", "Seulgi", "Seung", "Shu-Fen", "Shu-Hui", "So-Ra", "Soo-Jin", "Sook-Ja", "Soon-Hee", "Soon-Ja", "Sora", "Su-Bin", "Su-Jin", "Suk-Ja", "Sun-Hui", "Sun-Ja", "Sun-Young", "Sung-Hye", "Sung-Hyun", "Sung-Min", "Sung-Ryung", "Sung", "Ya-Ting", "Ye-Bin", "Ye-Eun", "Yeong-Hui", "Yeong-Ja", "Yeong-Mi", "Yeong-Suk", "Yeong", "Yong", "Yoon-Jeong", "Yoon-Seo", "Young-Hee", "Young-Ja", "Young-Mi", "Young-Sook", "Young", "Yu-Jin", "Yu-Mi", "Yun-Seo", "Yunseo"]>> @@ -375,7 +375,7 @@ <<set setup.bangladeshiSlaveSurnames = ["Abdullah", "Abedin", "Abu", "Afrin", "Afroz", "Ahamed", "Ahammed", "Ahmad", "Ahmed", "Ahmmed", "Ahsan", "Akbar", "Akhter", "Akter", "Akther", "Al Mamun", "Al-Amin", "Alam", "Ali", "Alom", "Amin", "Anwar", "Ara", "Arafat", "Arefin", "Arif", "Ashraf", "Azad", "Azam", "Azim", "Aziz", "Babu", "Banik", "Bappy", "Bari", "Barua", "Bashar", "Begum", "Bhai", "Bhattacharjee", "Bhowmik", "Bhuiyan", "Billah", "Biswas", "Chakma", "Chakraborty", "Choudhury", "Chowdhury", "Chy", "Das", "Datta", "Deb", "Debnath", "Dewan", "Dey", "Dhar", "Dutta", "Elahi", "Emon", "Faisal", "Faruk", "Faruque", "Ferdous", "Ghosh", "Gomes", "Habib", "Haider", "Halder", "Halim", "Hamid", "Haq", "Haque", "Hasan", "Hasnat", "Hassan", "Hoque", "Hosain", "Hosen", "Hossain", "Hossan", "Hossen", "Howlader", "Huda", "Huq", "Hussain", "Imam", "Imran", "Iqbal", "Islam", "Jahan", "Jaman", "Jewel", "Joy", "Kabir", "Kader", "Kamal", "Karim", "Kazi", "Khan", "Khatun", "Kibria", "Kumar", "Kundu", "Liton", "Mahamud", "Mahbub", "Mahmood", "Mahmud", "Majumder", "Mamun", "Manik", "Mannan", "Masud", "Masum", "Mazumder", "Mia", "Miah", "Milon", "Mir", "Mirza", "Mohammad", "Mohammed", "Mohiuddin", "Molla", "Mollah", "Mondal", "Mondol", "Moniruzzaman", "Morshed", "Mostafa", "Munna", "Murad", "Nabi", "Nahar", "Nath", "Noor", "Parvez", "Parvin", "Patwary", "Rabbani", "Rabbi", "Rahaman", "Rahim", "Rahman", "Raihan", "Raj", "Rajib", "Raju", "Rakib", "Rana", "Rasel", "Rashed", "Rashid", "Reza", "Ripon", "Rony", "Roy", "Rozario", "Rubel", "Saha", "Sakib", "Salahuddin", "Salam", "Saleh", "Salim", "Sarkar", "Sarker", "Sarwar", "Sayeed", "Sen", "Shah", "Shaheen", "Shahin", "Shahriar", "Shaikh", "Shakil", "Shamim", "Shams", "Sharif", "Sharmin", "Sheikh", "Shohag", "Shuvo", "Siddique", "Siddiqui", "Sikder", "Sohel", "Sultan", "Sultana", "Sumon", "Tabassum", "Talukder", "Tanvir", "Tuhin", "Uddin", "Ullah", "Uzzaman", "Yasmin", "Yousuf", "Zaman"]>> <<set setup.japaneseSlaveNames = ["Ai", "Aika", "Aiko", "Aimi", "Aina", "Airi", "Akane", "Akari", "Akemi", "Aki", "Akikio", "Akiko", "Akira", "Ami", "Amiko", "Anake", "Anna", "Aoi", "Arisa", "Asami", "Asuka", "Asuna", "Atsuko", "Aya", "Ayaka", "Ayako", "Ayame", "Ayane", "Ayano", "Ayumi", "Azuna", "Azusa", "Chiaki", "Chidori", "Chie", "Chieko", "Chihaya", "Chihiro", "Chika", "Chikako", "Chinatsu", "Chisako", "Chisato", "Chitose", "Chiyeko", "Chiyo", "Chiyoko", "Chizuko", "Chizuru", "Cho", "Chou", "Chouko", "Eberechi", "Echiko", "Emi", "Emiko", "Eri", "Erika", "Eriko", "Etsuko", "Fugiko", "Fuji", "Fujie", "Fujiko", "Fujiye", "Fujiyo", "Fumi", "Fumie", "Fumiko", "Fumiye", "Fumiyo", "Fusae", "Fusako", "Fusaye", "Futaba", "Fuuka", "Hana", "Hanae", "Hanako", "Hanaye", "Haru", "Harue", "Haruhi", "Haruka", "Haruko", "Harumi", "Haruna", "Haruye", "Hatsue", "Hatsuko", "Hatsuye", "Hatsuyo", "Hibiki", "Hideaki", "Hideko", "Hijiri", "Hikari", "Hikaru", "Himari", "Hina", "Hinata", "Hiroe", "Hiroka", "Hiroko", "Hiromi", "Hiroshi", "Hiroye", "Hisae", "Hisako", "Hisaye", "Hitomi", "Hiyoko", "Honoka", "Hoshi", "Hoshiko", "Hotaru", "Ichi", "Ichigo", "Iko", "Ikuko", "Ikuyo", "Ina", "Isoko", "Isumi", "Itoe", "Izanami", "Izumi", "Junko", "Kaede", "Kaike", "Kairi", "Kami", "Kana", "Kanako", "Kanon", "Kaori", "Kaoru", "Kasumi", "Katana", "Katsu", "Katsuko", "Katsumi", "Kayao", "Kayo", "Kayoko", "Kazue", "Kazuko", "Kazuye", "Kei", "Keiki", "Keiko", "Kiku", "Kikue", "Kikuko", "Kikuye", "Kimi", "Kimie", "Kimiko", "Kimiye", "Kimiyo", "Kinue", "Kinuye", "Kinuyo", "Kioko", "Kita", "Kiyo", "Kiyoko", "Kiyomi", "Kohaku", "Koharu", "Kokoro", "Kori", "Kotone", "Kumi", "Kumiko", "Kuni", "Kuniko", "Kurumi", "Kyo", "Kyoko", "Kyou", "Machi", "Machiko", "Maho", "Mai", "Maki", "Makiko", "Makoto", "Mami", "Manami", "Mao", "Mari", "Mariko", "Marina", "Masaaki", "Masaki", "Masako", "Masami", "Masayuki", "Masue", "Masuko", "Masumi", "Masuye", "Masuyo", "Matsuko", "Maya", "Mayu", "Mayumi", "Megumi", "Mei", "Michi", "Michie", "Michiko", "Michiye", "Michiyo", "Michoko", "Midori", "Mieko", "Miharu", "Miho", "Mika", "Mikai", "Mikako", "Mikan", "Miki", "Miko", "Miku", "Mina", "Minako", "Minami", "Minato", "Minori", "Minoru", "Mio", "Misa", "Misaki", "Misako", "Misao", "Misato", "Misue", "Misuye", "Mitsu", "Mitsue", "Mitsuko", "Mitsuru", "Mitsuye", "Miu", "Miwa", "Miwako", "Miya", "Miyako", "Miyeko", "Miyo", "Miyoko", "Miyoshi", "Miyu", "Miyuki", "Mizuki", "Moe", "Momoka", "Momoko", "Moriko", "Motomi", "Nagisa", "Namiko", "Nana", "Nanaho", "Nanako", "Nanami", "Nanayo", "Nao", "Naoko", "Naomi", "Naoto", "Natsuki", "Natsuko", "Natsumi", "Nekomi", "Nene", "Noa", "Nobu", "Nobuko", "Norie", "Noriko", "Noriye", "Oda", "Okita", "Otsu", "Ran", "Rei", "Reiko", "Reina", "Remi", "Ren", "Rie", "Rika", "Riko", "Rin", "Rina", "Rio", "Risa", "Rise", "Ritsu", "Ritsuko", "Romi", "Ruri", "Sachi", "Sachiko", "Sadako", "Sadayo", "Sae", "Saeko", "Sakae", "Sakaye", "Saki", "Sakura", "Sakurako", "Sama", "Sanae", "Sanaye", "Saori", "Sara", "Satoko", "Satomi", "Satsue", "Satsuki", "Satsuye", "Sawako", "Saya", "Sayaka", "Sayoko", "Sayuri", "Sei", "Seiko", "Sen", "Senna", "Setsuko", "Shigeko", "Shiho", "Shima", "Shinju", "Shino", "Shinobu", "Shiori", "Shitsuko", "Shizu", "Shizue", "Shizuka", "Shizuko", "Shizuye", "Shoko", "Shun", "Sonoe", "Sonoye", "Sora", "Sueko", "Sumako", "Sumi", "Sumie", "Sumiko", "Sumiye", "Sunae", "Sunaye", "Suyeko", "Suzu", "Suzue", "Suzume", "Suzuye", "Tadako", "Taeko", "Takae", "Takako", "Takao", "Takara", "Takaye", "Takayo", "Tami", "Tamie", "Tamiko", "Tamiye", "Taneko", "Tara", "Tayeko", "Teruko", "Terumi", "Teruyo", "Tokiyo", "Tome", "Tomiko", "Tomo", "Tomoe", "Tomoko", "Tomomi", "Tomoye", "Tora", "Tori", "Tosa", "Toshie", "Toshiko", "Toshiye", "Toyohiko", "Toyoko", "Tsubaki", "Tsubame", "Tsubasa", "Tsugie", "Tsugiye", "Tsukasa", "Tsukie", "Tsukiko", "Tsukiye", "Tsuna", "Ukifune", "Ulala", "Ume", "Umeko", "Utako", "Ute", "Wakana", "Yaeko", "Yasu", "Yasuko", "Yatsumi", "Yayoi", "Yokho", "Yoko", "Yoshi", "Yoshie", "Yoshika", "Yoshiko", "Yoshimi", "Yoshiye", "Youko", "Yua", "Yui", "Yuina", "Yuka", "Yukari", "Yuki", "Yukie", "Yukiko", "Yukino", "Yukio", "Yukiye", "Yuko", "Yumi", "Yumiko", "Yuna", "Yuni", "Yuri", "Yuriko", "Yuu", "Yuuka", "Yuuki", "Yuuko", "Yuuna", "Yuzuki"]>> -<<set setup.japaneseSlaveSurnames = ["Abe", "Abekawa", "Abo", "Achiwa", "Adachi", "Agena", "Aida", "Aihara", "Aikido", "Aise", "Aita", "Aiyama", "Aizawa", "Ajifu", "Ajima", "Ajioka", "Aka", "Akaba", "Akagi", "Akahoshi", "Akai", "Akaishi", "Akamine", "Akaosugi", "Akechi", "Aki", "Akiba", "Akie", "Akimoto", "Akita", "Akiyama", "Akiyoshi", "Akutagawa", "Amada", "Amagi", "Amano", "Amari", "Amemiya", "Aminaka", "Amori", "Ando", "Anzai", "Aohiwa", "Aoi", "Aoki", "Aono", "Aoshima", "Aoyagi", "Aoyama", "Aragaki", "Arai", "Arakaki", "Arakawa", "Araki", "Arakida", "Arao", "Arashiro", "Arima", "Arimoto", "Arisato", "Arita", "Ariwara", "Ariyoshi", "Asa", "Asada", "Asagi", "Asahara", "Asai", "Asaka", "Asakawa", "Asakura", "Asami", "Asano", "Asanuma", "Asao", "Asato", "Ashibe", "Ashihara", "Ashikaga", "Ashiwa", "Ataka", "Ayase", "Azuma", "Baba", "Beppu", "Bessho", "Chayama", "Chiba", "Chika", "Chikamatsu", "Chikasue", "Chiku", "Chinen", "Daimon", "Dan", "Date", "Deguchi", "Dobashi", "Doi", "Doiguchi", "Dojima", "Doten", "Dozen", "Ebata", "Ebesu", "Ebihara", "Eda", "Egawa", "Eguchi", "Ejiri", "Ekiguchi", "Ekimoto", "Ekimura", "Emi", "Emoto", "Endo", "Endow", "Enoki", "Enomoto", "Esaki", "Eto", "Ezaki", "Ezawa", "Fuchi", "Fuchida", "Fuchigami", "Fuji", "Fujie", "Fujieda", "Fujihara", "Fujii", "Fujikage", "Fujikake", "Fujikawa", "Fujiki", "Fujikura", "Fujimori", "Fujimoto", "Fujimura", "Fujinaga", "Fujinaka", "Fujinami", "Fujinawa", "Fujino", "Fujinuma", "Fujioka", "Fujisaki", "Fujisawa", "Fujishige", "Fujishima", "Fujita", "Fujitani", "Fujiwara", "Fujiyama", "Fukada", "Fukagawa", "Fukano", "Fukao", "Fukayama", "Fukuba", "Fukuchi", "Fukuda", "Fukuhara", "Fukui", "Fukumoto", "Fukunaga", "Fukuoka", "Fukuroku", "Fukushige", "Fukushima", "Fukutome", "Fukuyama", "Fukuzawa", "Fumihiko", "Funa", "Funada", "Funai", "Funakawa", "Funakoshi", "Funamoto", "Funasaki", "Furuhata", "Furukawa", "Furumoto", "Furumura", "Furusho", "Furuta", "Furutani", "Furuya", "Furuyama", "Fuse", "Fushida", "Fushimi", "Fushitani", "Gakusei", "Genji", "Gibo", "Ginoza", "Goda", "Gomi", "Goto", "Goya", "Goyen", "Gushi", "Gushiken", "Habashi", "Hada", "Haga", "Hagihara", "Hagiwara", "Haida", "Hamada", "Hamaguchi", "Hamai", "Hamakawa", "Hamamoto", "Hamamura", "Hamanaka", "Hamano", "Hamasaki", "Hamazaki", "Hamori", "Hana", "Hanabusa", "Hanada", "Hanakawa", "Hanaki", "Hanamoto", "Hanamura", "Hanatani", "Hanayagi", "Handa", "Hanta", "Hara", "Harada", "Haraga", "Haraguchi", "Haramoto", "Harano", "Haruyama", "Hasebe", "Hasegawa", "Hashi", "Hashida", "Hashiguchi", "Hashima", "Hashimoto", "Hashizume", "Hasumi", "Hata", "Hatada", "Hatae", "Hatakeyama", "Hatanaka", "Hatano", "Hatayama", "Hatori", "Hatoyama", "Hattori", "Hayakawa", "Hayami", "Hayamoto", "Hayase", "Hayashi", "Hayashida", "Hayata", "Hazama", "Hida", "Hidaka", "Hidano", "Hideaki", "Hideki", "Higa", "Higaki", "Higashi", "Higashida", "Higashiyama", "Higo", "Higuchi", "Higushi", "Hikida", "Hikiji", "Hime", "Himino", "Hinaga", "Hino", "Hira", "Hirabayashi", "Hiraga", "Hiraguri", "Hirahara", "Hirai", "Hirakawa", "Hiraki", "Hiramatsu", "Hiramoto", "Hirano", "Hirao", "Hiraoka", "Hirasaki", "Hirasawa", "Hirashima", "Hirata", "Hiratsuka", "Hirayama", "Hiroe", "Hirokawa", "Hiromatsu", "Hiromoto", "Hironaka", "Hirosawa", "Hirose", "Hirota", "Hisamoto", "Hishida", "Hishikawa", "Hitomi", "Hiura", "Hiyake", "Hiyama", "Hiyoshi", "Hoashi", "Hoda", "Hokama", "Hokoda", "Homma", "Honda", "Hongo", "Honjo", "Honma", "Honto", "Hori", "Horie", "Horii", "Horikawa", "Horikoshi", "Horimoto", "Horine", "Horinouchi", "Horio", "Horioka", "Horita", "Horiuchi", "Hosaka", "Hoshi", "Hoshide", "Hoshijima", "Hoshino", "Hoshiyama", "Hosobe", "Hosoda", "Hosoi", "Hosokawa", "Hosooka", "Hotta", "Hozumi", "Iba", "Ibara", "Ichibo", "Ichida", "Ichigawa", "Ichihashi", "Ichikawa", "Ichimura", "Ichinose", "Ichinotsubo", "Ichiyoshi", "Ida", "Idedon", "Idemitsu", "Idemoto", "Ideue", "Ido", "Ieyasu", "Ifuku", "Ifune", "Igarashi", "Igawa", "Igaya", "Ige", "Igoe", "Iguchi", "Iha", "Ihara", "Ii", "Iida", "Iijima", "Iino", "Iizuka", "Ijichi", "Ijiri", "Ikagawa", "Ikari", "Ike", "Ikeda", "Ikegami", "Ikehara", "Ikemoto", "Ikenaga", "Ikufuku", "Ikuta", "Imada", "Imai", "Imaino", "Imaizumi", "Imamura", "Imanaka", "Imasaki", "Imoto", "Imura", "Inaba", "Inada", "Inafuku", "Inaga", "Inagaki", "Inao", "Ino", "Inoguchi", "Inokuma", "Inoue", "Inouye", "Iori", "Ippitsusai", "Irie", "Irimata", "Isa", "Isagawa", "Isayama", "Iseki", "Iseri", "Ishibashi", "Ishida", "Ishigami", "Ishiguri", "Ishiguro", "Ishihara", "Ishii", "Ishijima", "Ishikawa", "Ishimaru", "Ishimoto", "Ishimura", "Ishiyama", "Ishizaki", "Ishizu", "Ishizuka", "Ishizumi", "Isobe", "Isono", "Itagaki", "Itami", "Itanaga", "Itani", "Ito", "Itoh", "Itou", "Iwahashi", "Iwai", "Iwakami", "Iwaki", "Iwami", "Iwamoto", "Iwamura", "Iwanabe", "Iwanaga", "Iwaoka", "Iwasa", "Iwasaki", "Iwasawa", "Iwashita", "Iwata", "Izawa", "Izumi", "Izuyama", "Jimbo", "Jinushi", "Jitchaku", "Joshuya", "Kaba", "Kabashima", "Kabuto", "Kada", "Kado", "Kadota", "Kadowaki", "Kaetsu", "Kaga", "Kagami", "Kagawa", "Kagehiro", "Kagemoto", "Kageyama", "Kagimoto", "Kai", "Kajahara", "Kaji", "Kajima", "Kajioka", "Kajitani", "Kajiwara", "Kajiyama", "Kakazu", "Kakegawa", "Kakimi", "Kakimoto", "Kakinomoto", "Kakishiko", "Kaku", "Kakuda", "Kamachi", "Kamada", "Kamano", "Kamatsuchi", "Kame", "Kameda", "Kamei", "Kamemoto", "Kamezaki", "Kamijo", "Kamikawa", "Kamimoto", "Kamimura", "Kaminaga", "Kaminaka", "Kamisaka", "Kamiya", "Kamiyama", "Kamuda", "Kan", "Kanada", "Kanae", "Kanagi", "Kanai", "Kanayama", "Kanazawa", "Kanda", "Kaneda", "Kanegawa", "Kanehara", "Kaneko", "Kanemitsu", "Kanemoto", "Kaneshige", "Kaneshiro", "Kaneshita", "Kaneta", "Kanetaki", "Kanji", "Kannauchi", "Kanno", "Kano", "Kanzaki", "Karita", "Kasa", "Kasahara", "Kasai", "Kase", "Kashima", "Kashiwa", "Kashiwabara", "Kashiwagi", "Kasuga", "Kasutani", "Katagiri", "Katana", "Katano", "Kataoka", "Katayama", "Kato", "Katoh", "Katori", "Katsuda", "Katsumata", "Katsura", "Katsuyama", "Kawa", "Kawabata", "Kawabe", "Kawabuchi", "Kawachi", "Kawada", "Kawaguchi", "Kawahara", "Kawai", "Kawaii", "Kawakami", "Kawakubo", "Kawamata", "Kawamoto", "Kawamura", "Kawana", "Kawanabe", "Kawanami", "Kawanishi", "Kawano", "Kawaoka", "Kawasaki", "Kawasawa", "Kawase", "Kawashima", "Kawashiro", "Kawata", "Kawatake", "Kawato", "Kawazoe", "Kawazu", "Kaya", "Kayama", "Kazama", "Kazuma", "Ken", "Kentaro", "Kida", "Kido", "Kijimuta", "Kikichu", "Kikkawa", "Kikkomon", "Kikuchi", "Kikui", "Kikuoka", "Kikuta", "Kimishima", "Kimiyama", "Kimoto", "Kimura", "Kina", "Kinashita", "Kinjo", "Kino", "Kinoshita", "Kinukawa", "Kirihara", "Kirijo", "Kirimoto", "Kirishima", "Kise", "Kishaba", "Kishi", "Kishida", "Kishimori", "Kishimoto", "Kishiyama", "Kishomoto", "Kita", "Kitabatake", "Kitabayashi", "Kitagawa", "Kitaguchi", "Kitahara", "Kitajima", "Kitamura", "Kitani", "Kitano", "Kitaoka", "Kitayama", "Kitazato", "Kitazawa", "Kitazono", "Kito", "Kiyabu", "Kiyohara", "Kiyoshi", "Kiyota", "Kiyotaki", "Kiyuna", "Koba", "Kobashigawa", "Kobata", "Kobayashi", "Kobe", "Koda", "Kodama", "Kodani", "Kodera", "Koezuka", "Koga", "Kohara", "Kohatsu", "Koide", "Koike", "Koizumi", "Kojima", "Kokubun", "Kokuryo", "Komada", "Komamatsu", "Komatsu", "Komine", "Komiya", "Komiyama", "Komoda", "Komori", "Komoto", "Kon", "Konami", "Kondo", "Konishi", "Konno", "Kono", "Korematsu", "Kos", "Kosaka", "Koshi", "Koshiba", "Koshiishi", "Koshiro", "Koshiyama", "Kosugi", "Kota", "Kotake", "Kotani", "Kotara", "Koto", "Koya", "Koyama", "Koyanagi", "Kuba", "Kubo", "Kubono", "Kubota", "Kuchida", "Kudo", "Kuga", "Kuioka", "Kujikawa", "Kuki", "Kumagai", "Kumagawa", "Kumahira", "Kumakura", "Kumamoto", "Kume", "Kunihiro", "Kunimoto", "Kunimura", "Kunioki", "Kunisada", "Kunishige", "Kunitake", "Kuniyoshi", "Kuramoto", "Kuranaga", "Kurashige", "Kurata", "Kurihara", "Kurisu", "Kurita", "Kuriyama", "Kuroda", "Kurogane", "Kurohara", "Kuroiwa", "Kurokawa", "Kuroki", "Kurosawa", "Kurosu", "Kurusu", "Kusahara", "Kusaka", "Kusanagi", "Kusano", "Kusatsu", "Kushi", "Kusumoto", "Kusunoki", "Kuwabara", "Kuwada", "Kuwahara", "Kuwana", "Kuwata", "Kuwaye", "Kyan", "Kyubei", "Li", "Mabuchi", "Machida", "Maeda", "Maehara", "Maekawa", "Maeno", "Maeshiro", "Maiyazaki", "Makabe", "Makihara", "Makino", "Makioka", "Makishima", "Mako", "Makuda", "Mamiya", "Manabe", "Mano", "Maruko", "Marumoto", "Maruya", "Maruyama", "Masada", "Masaki", "Masanobu", "Masaoka", "Mase", "Masuda", "Masui", "Masuko", "Masumoto", "Masunaga", "Masuoka", "Masuyama", "Masuzoe", "Matano", "Matayoshi", "Mato", "Matoba", "Matsu", "Matsubara", "Matsuda", "Matsudo", "Matsuhara", "Matsui", "Matsukata", "Matsukawa", "Matsuki", "Matsumoto", "Matsumura", "Matsunaga", "Matsunami", "Matsuno", "Matsuo", "Matsuoka", "Matsura", "Matsushi", "Matsushima", "Matsushita", "Matsutome", "Matsutsu", "Matsuura", "Matsuwaki", "Matsuyama", "Matsuzaki", "Mayeda", "Mayeshiba", "Mayo", "Mayuzumi", "Mazaki", "Mazuka", "Mende", "Mente", "Mento", "Michioka", "Mifune", "Mihara", "Mikado", "Mikami", "Mikasa", "Miki", "Mikita", "Mikitani", "Miko", "Mimaki", "Mimura", "Mina", "Minaai", "Minami", "Minamihara", "Minamoto", "Minato", "Mineshima", "Mino", "Minobe", "Mio", "Mira", "Misawa", "Mishima", "Mishina", "Misumi", "Mita", "Mitani", "Mito", "Mitomi", "Mitsubishi", "Mitsuda", "Mitsui", "Mitsumata", "Mitsunaga", "Mitsuo", "Miura", "Miwa", "Miya", "Miyabe", "Miyagawa", "Miyagi", "Miyagishima", "Miyahara", "Miyahira", "Miyaji", "Miyajima", "Miyakawa", "Miyake", "Miyakoda", "Miyamoto", "Miyamura", "Miyao", "Miyasaka", "Miyasaki", "Miyasato", "Miyashiro", "Miyashita", "Miyata", "Miyatake", "Miyataki", "Miyauchi", "Miyayasu", "Miyazaki", "Miyazawa", "Miyazono", "Miyoda", "Miyoshi", "Mizoguchi", "Mizoue", "Mizukami", "Mizumaki", "Mizumoto", "Mizuno", "Mizusawa", "Mizushima", "Mizuta", "Mizutani", "Mochida", "Mochizuki", "Mogami", "Momoi", "Momomura", "Monden", "Morakawa", "Mori", "Moriguchi", "Morikawa", "Morimoto", "Morinaga", "Morinaka", "Morine", "Morino", "Morinoue", "Morioka", "Morisaki", "Morishige", "Morishima", "Morishita", "Morishito", "Morisugi", "Morita", "Moriwaki", "Moriya", "Moriyama", "Morota", "Motegi", "Motobayashi", "Motonaga", "Motooka", "Motoyama", "Mtsui", "Mukai", "Munakata", "Munari", "Munemura", "Mura", "Murai", "Murakami", "Murakawa", "Muraki", "Muramatsu", "Muramoto", "Muranaka", "Murano", "Muraoka", "Murasaki", "Murase", "Murata", "Murayama", "Mushashibi", "Muto", "Mutsu", "Nagahama", "Nagahasu", "Nagai", "Nagamine", "Nagamoto", "Nagano", "Naganuma", "Nagao", "Nagaoka", "Nagasaka", "Nagasaki", "Nagasako", "Nagasawa", "Nagase", "Nagashima", "Nagata", "Nagatani", "Nagato", "Nagayama", "Naito", "Naka", "Nakabayashi", "Nakachi", "Nakada", "Nakae", "Nakagake", "Nakagaki", "Nakagawa", "Nakahara", "Nakai", "Nakajima", "Nakama", "Nakamatsu", "Nakamori", "Nakamoto", "Nakamura", "Nakane", "Nakanishi", "Nakano", "Nakao", "Nakaoka", "Nakasato", "Nakashima", "Nakasone", "Nakata", "Nakatani", "Nakatogawa", "Nakatsu", "Nakatsuka", "Nakauchi", "Nakawatase", "Nakaya", "Nakayama", "Nakazawa", "Nakazono", "Nako", "Namba", "Namihira", "Nanjo", "Nanka", "Nara", "Narimatsu", "Narita", "Narukami", "Nawa", "Nemoto", "Nihei", "Nii", "Niibori", "Niijima", "Niimi", "Niimoto", "Niinami", "Nikaido", "Nimura", "Ninomiya", "Nishi", "Nishida", "Nishie", "Nishigaki", "Nishiguchi", "Nishihara", "Nishihira", "Nishijima", "Nishikata", "Nishikawa", "Nishimori", "Nishimoto", "Nishimura", "Nishina", "Nishinaga", "Nishino", "Nishio", "Nishioka", "Nishitakatsuji", "Nishitani", "Nishiuma", "Nishiyama", "Nishizawa", "Nitta", "Niwa", "No", "Noda", "Nogami", "Nogawa", "Noguchi", "Nohara", "Noji", "Nojima", "Nojiri", "Noma", "Nomaguchi", "Nomoto", "Nomura", "Nonaka", "Nose", "Notsu", "Nozaki", "Nozawa", "Numata", "Oba", "Obata", "Obayashi", "Obi", "Obuchi", "Ochi", "Ochiai", "Ochida", "Oda", "Odaka", "Odo", "Oga", "Ogami", "Ogasawara", "Ogata", "Ogawa", "Ogino", "Ogura", "Ohama", "Ohara", "Ohashi", "Ohata", "Ohbora", "Ohi", "Ohira", "Ohkawa", "Ohkita", "Ohmine", "Ohmoto", "Ohmura", "Ohno", "Ohsawa", "Ohta", "Ohtake", "Ohtsuka", "Ohuchi", "Ohya", "Ohyama", "Oi", "Oishi", "Oiwa", "Oji", "Oka", "Okabayashi", "Okabe", "Okada", "Okagawa", "Okagi", "Okaido", "Okajima", "Okami", "Okamoto", "Okamura", "Okano", "Okanoya", "Okawa", "Okayama", "Okazaki", "Oketani", "Oki", "Okie", "Okihara", "Okimoto", "Okimura", "Okinaga", "Okinaka", "Okino", "Okinobu", "Okita", "Okitsu", "Okochi", "Oku", "Okubo", "Okuda", "Okuhara", "Okuma", "Okumoto", "Okumura", "Okuna", "Okuno", "Okura", "Okutsu", "Okuwaki", "Okuyama", "Omagari", "Omata", "Omi", "Omori", "Omoto", "Omura", "Onaga", "Onaka", "Onezawa", "Onishi", "Onitsuka", "Onizuka", "Ono", "Onoda", "Onodera", "Onose", "Onuma", "Oogida", "Ooishi", "Osabe", "Osada", "Osagawa", "Osaka", "Osaki", "Osako", "Osato", "Osawa", "Oshima", "Oshimo", "Oshiro", "Oshita", "Osumi", "Ota", "Otake", "Otani", "Oto", "Otomo", "Otsu", "Otsubo", "Otsuji", "Otsuka", "Otsuki", "Ouchi", "Ouye", "Oya", "Oyabu", "Oyadomari", "Oyagi", "Oyama", "Oyanagi", "Ozaki", "Ozawa", "Ryusaki", "Sada", "Sadahiro", "Saeda", "Saeki", "Saga", "Sagara", "Sagawa", "Sahara", "Saiki", "Saisho", "Saita", "Saito", "Saitoh", "Sakagami", "Sakaguchi", "Sakahara", "Sakai", "Sakamoto", "Sakane", "Sakashita", "Sakata", "Sakaue", "Sakazaki", "Saki", "Sakihara", "Sakikibara", "Sako", "Sakoda", "Sakuda", "Sakuma", "Sakumoto", "Sakura", "Sakurada", "Sakurai", "Sameshima", "Sanada", "Sanekata", "Sano", "Sanuki", "Saruwatari", "Saruyama", "Sasahara", "Sasakawa", "Sasaki", "Sasano", "Sasanuma", "Sasayama", "Satake", "Sato", "Satoh", "Satomi", "Satonaka", "Satou", "Satow", "Satta", "Sawada", "Sawai", "Sawamura", "Sawanishi", "Sawaoka", "Sawaya", "Sazanami", "Segawa", "Seiji", "Seiki", "Seki", "Sekigawa", "Sekiguchi", "Sekimoto", "Sekine", "Sekiya", "Sen", "Senoue", "Sera", "Serizawa", "Seta", "Seto", "Setoguchi", "Shiba", "Shibaguchi", "Shibahata", "Shibanuma", "Shibata", "Shibayama", "Shibayanagi", "Shibuya", "Shido", "Shiga", "Shigaki", "Shigeki", "Shigematsu", "Shigemi", "Shigemoto", "Shigemura", "Shigeta", "Shigi", "Shiigi", "Shiimori", "Shiina", "Shikuma", "Shima", "Shimabuku", "Shimabukuro", "Shimada", "Shimakage", "Shimamoto", "Shimamura", "Shimane", "Shimano", "Shimanuki", "Shimaoka", "Shimasaki", "Shimazu", "Shimida", "Shimizu", "Shimmyo", "Shimo", "Shimoda", "Shimokawa", "Shimomura", "Shimomuta", "Shimonishi", "Shimono", "Shimura", "Shinagawa", "Shindo", "Shinjo", "Shinko", "Shinoda", "Shinoga", "Shinohara", "Shinozaki", "Shinpuku", "Shinsato", "Shintaku", "Shintani", "Shioji", "Shiota", "Shiozaki", "Shira", "Shirai", "Shiraishi", "Shiraiwa", "Shirakawa", "Shiraki", "Shirane", "Shiro", "Shirogane", "Shiroma", "Shirota", "Shiroyama", "Shirozu", "Shishido", "Shitanishi", "Shitara", "Shizuma", "Shoda", "Shogo", "Shohtoku", "Shoji", "Soga", "Soho", "Soma", "Someya", "Sonoda", "Sonomura", "Sora", "Soseki", "Sotomura", "Sudo", "Sudou", "Sueda", "Suehiro", "Suenaga", "Sueoka", "Sueyoshi", "Suga", "Sugahara", "Sugai", "Sugamoto", "Sugano", "Suganuma", "Sugata", "Sugawa", "Sugawara", "Sugihara", "Sugimori", "Sugimoto", "Sugimura", "Sugino", "Sugita", "Sugitani", "Sugiura", "Sugiyama", "Suki", "Sukimoto", "Suma", "Sumi", "Sumida", "Sumino", "Sumitimo", "Sunada", "Sunahara", "Suou", "Suto", "Suwa", "Suyama", "Suyehiro", "Suyenaga", "Suzuki", "Suzukida", "Tabata", "Tabuchi", "Tachibana", "Tada", "Tadeo", "Tadeshi", "Tagami", "Tagawa", "Taguchi", "Tahara", "Taira", "Taizo", "Tajima", "Tajiri", "Takabatake", "Takabayashi", "Takabe", "Takada", "Takaezu", "Takagaki", "Takagawa", "Takagi", "Takahagi", "Takahara", "Takahashi", "Takai", "Takaki", "Takakura", "Takamatsu", "Takami", "Takamiya", "Takamori", "Takamoto", "Takamura", "Takano", "Takao", "Takaoka", "Takara", "Takasaki", "Takase", "Takashi", "Takashima", "Takasugi", "Takata", "Takaya", "Takayama", "Takayesu", "Takeba", "Takebayashi", "Takeda", "Takehara", "Takei", "Takemago", "Takemoto", "Takemura", "Takenaka", "Takeshima", "Takeshita", "Taketa", "Taketazu", "Taketomo", "Takeuchi", "Takeya", "Takeyama", "Taki", "Takiguchi", "Takimoto", "Takisawa", "Takizawa", "Tamae", "Tamai", "Tamanaha", "Tamashiro", "Tamaye", "Tamayose", "Tamenori", "Tamiya", "Tamura", "Tamuro", "Tanabe", "Tanaka", "Tani", "Tanigawa", "Taniguchi", "Tanikawa", "Tanimoto", "Tanimura", "Tanioka", "Tanji", "Tano", "Tanoue", "Tanouye", "Tanuma", "Taomi", "Taruya", "Tasaka", "Tashikani", "Tashima", "Tashiro", "Tateishi", "Tateyama", "Tatsumi", "Tatsuno", "Tatsuta", "Tatsuya", "Tayama", "Tazaki", "Tekawa", "Tempo", "Tengan", "Terada", "Teragawa", "Teraguchi", "Terai", "Terakado", "Teramoto", "Teranishi", "Terao", "Teraoka", "Terauchi", "Terayama", "Teruya", "Teshigahara", "Teshima", "Tezuka", "Tobe", "Tochikura", "Toda", "Togami", "Togasaki", "Togashi", "Togawa", "Togo", "Toguchi", "Tojo", "Toki", "Tokita", "Tokiwa", "Tokuda", "Tokudome", "Tokumoto", "Tokunaga", "Tokuoka", "Tokusaki", "Toma", "Tomabechi", "Tome", "Tomei", "Tomimoto", "Tominaga", "Tomine", "Tomita", "Tonai", "Tone", "Tonooka", "Torigoe", "Torii", "Toru", "Tosh", "Toshima", "Toshio", "Totoki", "Tottori", "Toudou", "Toya", "Toyama", "Toyoda", "Toyofuku", "Toyonaga", "Toyooka", "Toyoshima", "Toyota", "Tsuboi", "Tsubota", "Tsuchida", "Tsuchihashi", "Tsuchikawa", "Tsuchiya", "Tsuchiyama", "Tsuda", "Tsugawa", "Tsuge", "Tsuha", "Tsuji", "Tsujimoto", "Tsukada", "Tsukahara", "Tsukamoto", "Tsukayama", "Tsukioka", "Tsukuda", "Tsukuma", "Tsunezumi", "Tsuno", "Tsunoda", "Tsuru", "Tsuruda", "Tsurumi", "Tsuruta", "Tsutomi", "Tsutsui", "Tsutsumi", "Tsuzuki", "Uchida", "Uchikoga", "Uchima", "Uchimura", "Uchino", "Uchiyama", "Uda", "Ude", "Udo", "Uechi", "Ueda", "Uehara", "Ueji", "Ueki", "Uemura", "Ueno", "Ueseugi", "Uesugi", "Umeda", "Umehara", "Umemoto", "Umetsu", "Umezawa", "Umezono", "Uno", "Ura", "Urabe", "Uragami", "Uragi", "Uraisami", "Urata", "Uriu", "Usami", "Ushijima", "Ushiro", "Usui", "Utsumi", "Uyeda", "Uyehara", "Uyematsu", "Uyemura", "Uyeno", "Uyeshiro", "Uyetake", "Wada", "Wagatsuma", "Wakabayashi", "Wakai", "Wakamatsu", "Wakamura", "Wakayama", "Wake", "Waki", "Wakita", "Wang", "Washio", "Watabe", "Watanabe", "Watari", "Watase", "Yabuki", "Yada", "Yagasaki", "Yagi", "Yagoda", "Yaguchi", "Yajima", "Yamabe", "Yamada", "Yamagata", "Yamagawa", "Yamagishi", "Yamaguchi", "Yamaguchiya", "Yamaha", "Yamahashi", "Yamakawa", "Yamaki", "Yamakoshi", "Yamamoto", "Yamamura", "Yamanaka", "Yamane", "Yamano", "Yamao", "Yamaoka", "Yamasaki", "Yamashiro", "Yamashita", "Yamato", "Yamauchi", "Yamawaki", "Yamazaki", "Yanagawa", "Yanagi", "Yanagida", "Yanagihara", "Yanagimoto", "Yanagisawa", "Yanai", "Yanase", "Yano", "Yaosaka", "Yara", "Yasubuchi", "Yasuda", "Yasuhara", "Yasuhiro", "Yasui", "Yasukawa", "Yasumori", "Yasunaga", "Yasutake", "Yoda", "Yokeda", "Yokohama", "Yokoi", "Yokomitsu", "Yokomizo", "Yokota", "Yokoyama", "Yokozeki", "Yonamine", "Yonashiro", "Yoneda", "Yonekura", "Yonemori", "Yonemoto", "Yonemura", "Yoneoka", "Yoneyama", "Yori", "Yoshiba", "Yoshida", "Yoshifumi", "Yoshihara", "Yoshii", "Yoshikawa", "Yoshimi", "Yoshimori", "Yoshimoto", "Yoshimura", "Yoshina", "Yoshinaga", "Yoshino", "Yoshioka", "Yoshitomi", "Yoshiyama", "Yoshizaki", "Yoshizawa", "Yoshizoe", "Yoshizumi", "Yotsukura", "Yotsuzuka", "Yoza", "Yuasa", "Yui", "Yukawa", "Yuki", "Yukinaga", "Yunokawa", "Yuuki", "Yuzawa", "Zakimi"]>> +<<set setup.japaneseSlaveSurnames = ["Abe", "Abekawa", "Abo", "Achiwa", "Adachi", "Agena", "Aida", "Aihara", "Aikido", "Aise", "Aita", "Aiyama", "Aizawa", "Ajifu", "Ajima", "Ajioka", "Aka", "Akaba", "Akagi", "Akahoshi", "Akai", "Akaishi", "Akamine", "Akaosugi", "Akechi", "Aki", "Akiba", "Akie", "Akimoto", "Akita", "Akiyama", "Akiyoshi", "Akutagawa", "Amada", "Amagi", "Amano", "Amari", "Amemiya", "Aminaka", "Amori", "Ando", "Anzai", "Aohiwa", "Aoi", "Aoki", "Aono", "Aoshima", "Aoyagi", "Aoyama", "Aragaki", "Arai", "Arakaki", "Arakawa", "Araki", "Arakida", "Arao", "Arashiro", "Arima", "Arimoto", "Arisato", "Arita", "Ariwara", "Ariyoshi", "Asa", "Asada", "Asagi", "Asahara", "Asai", "Asaka", "Asakawa", "Asakura", "Asami", "Asano", "Asanuma", "Asao", "Asato", "Ashibe", "Ashihara", "Ashikaga", "Ashiwa", "Ataka", "Ayase", "Azuma", "Baba", "Beppu", "Bessho", "Chayama", "Chiba", "Chika", "Chikamatsu", "Chikasue", "Chiku", "Chinen", "Daimon", "Dan", "Date", "Deguchi", "Dobashi", "Doi", "Doiguchi", "Dojima", "Doten", "Dozen", "Ebata", "Ebesu", "Ebihara", "Eda", "Egawa", "Eguchi", "Ejiri", "Ekiguchi", "Ekimoto", "Ekimura", "Emi", "Emoto", "Endo", "Endow", "Enoki", "Enomoto", "Esaki", "Eto", "Ezaki", "Ezawa", "Fuchi", "Fuchida", "Fuchigami", "Fuji", "Fujie", "Fujieda", "Fujihara", "Fujii", "Fujikage", "Fujikake", "Fujikawa", "Fujiki", "Fujikura", "Fujimori", "Fujimoto", "Fujimura", "Fujinaga", "Fujinaka", "Fujinami", "Fujinawa", "Fujino", "Fujinuma", "Fujioka", "Fujisaki", "Fujisawa", "Fujishige", "Fujishima", "Fujita", "Fujitani", "Fujiwara", "Fujiyama", "Fukada", "Fukagawa", "Fukano", "Fukao", "Fukayama", "Fukuba", "Fukuchi", "Fukuda", "Fukuhara", "Fukui", "Fukumoto", "Fukunaga", "Fukuoka", "Fukuroku", "Fukushige", "Fukushima", "Fukutome", "Fukuyama", "Fukuzawa", "Fumihiko", "Funa", "Funada", "Funai", "Funakawa", "Funakoshi", "Funamoto", "Funasaki", "Furuhata", "Furukawa", "Furumoto", "Furumura", "Furusho", "Furuta", "Furutani", "Furuya", "Furuyama", "Fuse", "Fushida", "Fushimi", "Fushitani", "Gakusei", "Genji", "Gibo", "Ginoza", "Goda", "Gomi", "Goto", "Goya", "Goyen", "Gushi", "Gushiken", "Habashi", "Hada", "Haga", "Hagihara", "Hagiwara", "Haida", "Hamada", "Hamaguchi", "Hamai", "Hamakawa", "Hamamoto", "Hamamura", "Hamanaka", "Hamano", "Hamasaki", "Hamazaki", "Hamori", "Hana", "Hanabusa", "Hanada", "Hanakawa", "Hanaki", "Hanamoto", "Hanamura", "Hanatani", "Hanayagi", "Handa", "Hanta", "Hara", "Harada", "Haraga", "Haraguchi", "Haramoto", "Harano", "Haruyama", "Hasebe", "Hasegawa", "Hashi", "Hashida", "Hashiguchi", "Hashima", "Hashimoto", "Hashizume", "Hasumi", "Hata", "Hatada", "Hatae", "Hatakeyama", "Hatanaka", "Hatano", "Hatayama", "Hatori", "Hatoyama", "Hattori", "Hayakawa", "Hayami", "Hayamoto", "Hayase", "Hayashi", "Hayashida", "Hayata", "Hazama", "Hida", "Hidaka", "Hidano", "Hideaki", "Hideki", "Higa", "Higaki", "Higashi", "Higashida", "Higashiyama", "Higo", "Higuchi", "Higushi", "Hikida", "Hikiji", "Hime", "Himino", "Hinaga", "Hino", "Hira", "Hirabayashi", "Hiraga", "Hiraguri", "Hirahara", "Hirai", "Hirakawa", "Hiraki", "Hiramatsu", "Hiramoto", "Hirano", "Hirao", "Hiraoka", "Hirasaki", "Hirasawa", "Hirashima", "Hirata", "Hiratsuka", "Hirayama", "Hiroe", "Hirokawa", "Hiromatsu", "Hiromoto", "Hironaka", "Hirosawa", "Hirose", "Hirota", "Hisamoto", "Hishida", "Hishikawa", "Hitomi", "Hiura", "Hiyake", "Hiyama", "Hiyoshi", "Hoashi", "Hoda", "Hokama", "Hokoda", "Homma", "Honda", "Hongo", "Honjo", "Honma", "Honto", "Hori", "Horie", "Horii", "Horikawa", "Horikoshi", "Horimoto", "Horine", "Horinouchi", "Horio", "Horioka", "Horita", "Horiuchi", "Hosaka", "Hoshi", "Hoshide", "Hoshijima", "Hoshino", "Hoshiyama", "Hosobe", "Hosoda", "Hosoi", "Hosokawa", "Hosooka", "Hotta", "Hozumi", "Iba", "Ibara", "Ichibo", "Ichida", "Ichigawa", "Ichihashi", "Ichikawa", "Ichimura", "Ichinose", "Ichinotsubo", "Ichiyoshi", "Ida", "Idedon", "Idemitsu", "Idemoto", "Ideue", "Ido", "Ieyasu", "Ifuku", "Ifune", "Igarashi", "Igawa", "Igaya", "Ige", "Igoe", "Iguchi", "Iha", "Ihara", "Ii", "Iida", "Iijima", "Iino", "Iizuka", "Ijichi", "Ijiri", "Ikagawa", "Ikari", "Ike", "Ikeda", "Ikegami", "Ikehara", "Ikemoto", "Ikenaga", "Ikufuku", "Ikuta", "Imada", "Imai", "Imaino", "Imaizumi", "Imamura", "Imanaka", "Imasaki", "Imoto", "Imura", "Inaba", "Inada", "Inafuku", "Inaga", "Inagaki", "Inao", "Ino", "Inoguchi", "Inokuma", "Inoue", "Inouye", "Iori", "Ippitsusai", "Irie", "Irimata", "Isa", "Isagawa", "Isayama", "Iseki", "Iseri", "Ishibashi", "Ishida", "Ishigami", "Ishiguri", "Ishiguro", "Ishihara", "Ishii", "Ishijima", "Ishikawa", "Ishimaru", "Ishimoto", "Ishimura", "Ishiyama", "Ishizaki", "Ishizu", "Ishizuka", "Ishizumi", "Isobe", "Isono", "Itagaki", "Itami", "Itanaga", "Itani", "Ito", "Itoh", "Itou", "Iwahashi", "Iwai", "Iwakami", "Iwaki", "Iwami", "Iwamoto", "Iwamura", "Iwanabe", "Iwanaga", "Iwaoka", "Iwasa", "Iwasaki", "Iwasawa", "Iwashita", "Iwata", "Izawa", "Izumi", "Izuyama", "Jimbo", "Jinushi", "Jitchaku", "Joshuya", "Kaba", "Kabashima", "Kabuto", "Kada", "Kado", "Kadota", "Kadowaki", "Kaetsu", "Kaga", "Kagami", "Kagawa", "Kagehiro", "Kagemoto", "Kageyama", "Kagimoto", "Kai", "Kajahara", "Kaji", "Kajima", "Kajioka", "Kajitani", "Kajiwara", "Kajiyama", "Kakazu", "Kakegawa", "Kakimi", "Kakimoto", "Kakinomoto", "Kakishiko", "Kaku", "Kakuda", "Kamachi", "Kamada", "Kamano", "Kamatsuchi", "Kame", "Kameda", "Kamei", "Kamemoto", "Kamezaki", "Kamijo", "Kamikawa", "Kamimoto", "Kamimura", "Kaminaga", "Kaminaka", "Kamisaka", "Kamiya", "Kamiyama", "Kamuda", "Kan", "Kanada", "Kanae", "Kanagi", "Kanai", "Kanayama", "Kanazawa", "Kanda", "Kaneda", "Kanegawa", "Kanehara", "Kaneko", "Kanemitsu", "Kanemoto", "Kaneshige", "Kaneshiro", "Kaneshita", "Kaneta", "Kanetaki", "Kanji", "Kannauchi", "Kanno", "Kano", "Kanzaki", "Karita", "Kasa", "Kasahara", "Kasai", "Kase", "Kashima", "Kashiwa", "Kashiwabara", "Kashiwagi", "Kasuga", "Kasutani", "Katagiri", "Katana", "Katano", "Kataoka", "Katayama", "Kato", "Katoh", "Katori", "Katsuda", "Katsumata", "Katsura", "Katsuyama", "Kawa", "Kawabata", "Kawabe", "Kawabuchi", "Kawachi", "Kawada", "Kawaguchi", "Kawahara", "Kawai", "Kawaii", "Kawakami", "Kawakubo", "Kawamata", "Kawamoto", "Kawamura", "Kawana", "Kawanabe", "Kawanami", "Kawanishi", "Kawano", "Kawaoka", "Kawasaki", "Kawasawa", "Kawase", "Kawashima", "Kawashiro", "Kawata", "Kawatake", "Kawato", "Kawazoe", "Kawazu", "Kaya", "Kayama", "Kazama", "Kazuma", "Ken", "Kentaro", "Kida", "Kido", "Kijimuta", "Kikichu", "Kikkawa", "Kikkomon", "Kikuchi", "Kikui", "Kikuoka", "Kikuta", "Kimishima", "Kimiyama", "Kimoto", "Kimura", "Kina", "Kinashita", "Kinjo", "Kino", "Kinoshita", "Kinukawa", "Kirihara", "Kirijo", "Kirimoto", "Kirishima", "Kise", "Kishaba", "Kishi", "Kishida", "Kishimori", "Kishimoto", "Kishiyama", "Kishomoto", "Kita", "Kitabatake", "Kitabayashi", "Kitagawa", "Kitaguchi", "Kitahara", "Kitajima", "Kitamura", "Kitani", "Kitano", "Kitaoka", "Kitayama", "Kitazato", "Kitazawa", "Kitazono", "Kito", "Kiyabu", "Kiyohara", "Kiyoshi", "Kiyota", "Kiyotaki", "Kiyuna", "Koba", "Kobashigawa", "Kobata", "Kobayashi", "Kobe", "Koda", "Kodama", "Kodani", "Kodera", "Koezuka", "Koga", "Kohara", "Kohatsu", "Koide", "Koike", "Koizumi", "Kojima", "Kokubun", "Kokuryo", "Komada", "Komamatsu", "Komatsu", "Komine", "Komiya", "Komiyama", "Komoda", "Komori", "Komoto", "Kon", "Konami", "Kondo", "Konishi", "Konno", "Kono", "Korematsu", "Kos", "Kosaka", "Koshi", "Koshiba", "Koshiishi", "Koshiro", "Koshiyama", "Kosugi", "Kota", "Kotake", "Kotani", "Kotara", "Koto", "Koya", "Koyama", "Koyanagi", "Kuba", "Kubo", "Kubono", "Kubota", "Kuchida", "Kudo", "Kuga", "Kuioka", "Kujikawa", "Kuki", "Kumagai", "Kumagawa", "Kumahira", "Kumakura", "Kumamoto", "Kume", "Kunihiro", "Kunimoto", "Kunimura", "Kunioki", "Kunisada", "Kunishige", "Kunitake", "Kuniyoshi", "Kuramoto", "Kuranaga", "Kurashige", "Kurata", "Kurihara", "Kurisu", "Kurita", "Kuriyama", "Kuroda", "Kurogane", "Kurohara", "Kuroiwa", "Kurokawa", "Kuroki", "Kurosawa", "Kurosu", "Kurusu", "Kusahara", "Kusaka", "Kusanagi", "Kusano", "Kusatsu", "Kushi", "Kusumoto", "Kusunoki", "Kuwabara", "Kuwada", "Kuwahara", "Kuwana", "Kuwata", "Kuwaye", "Kyan", "Kyubei", "Li", "Mabuchi", "Machida", "Maeda", "Maehara", "Maekawa", "Maeno", "Maeshiro", "Maiyazaki", "Makabe", "Makihara", "Makino", "Makioka", "Makishima", "Mako", "Makuda", "Mamiya", "Manabe", "Mano", "Maruko", "Marumoto", "Maruya", "Maruyama", "Masada", "Masaki", "Masanobu", "Masaoka", "Mase", "Masuda", "Masui", "Masuko", "Masumoto", "Masunaga", "Masuoka", "Masuyama", "Masuzoe", "Matano", "Matayoshi", "Mato", "Matoba", "Matsu", "Matsubara", "Matsuda", "Matsudo", "Matsuhara", "Matsui", "Matsukata", "Matsukawa", "Matsuki", "Matsumoto", "Matsumura", "Matsunaga", "Matsunami", "Matsuno", "Matsuo", "Matsuoka", "Matsura", "Matsushi", "Matsushima", "Matsushita", "Matsutome", "Matsutsu", "Matsuura", "Matsuwaki", "Matsuyama", "Matsuzaki", "Mayeda", "Mayeshiba", "Mayo", "Mayuzumi", "Mazaki", "Mazuka", "Mende", "Mente", "Mento", "Michioka", "Mifune", "Mihara", "Mikado", "Mikami", "Mikasa", "Miki", "Mikita", "Mikitani", "Miko", "Mimaki", "Mimura", "Mina", "Minaai", "Minami", "Minamihara", "Minamoto", "Minato", "Mineshima", "Mino", "Minobe", "Mio", "Mira", "Misawa", "Mishima", "Mishina", "Misumi", "Mita", "Mitani", "Mito", "Mitomi", "Mitsubishi", "Mitsuda", "Mitsui", "Mitsumata", "Mitsunaga", "Mitsuo", "Miura", "Miwa", "Miya", "Miyabe", "Miyagawa", "Miyagi", "Miyagishima", "Miyahara", "Miyahira", "Miyaji", "Miyajima", "Miyakawa", "Miyake", "Miyakoda", "Miyamoto", "Miyamura", "Miyao", "Miyasaka", "Miyasaki", "Miyasato", "Miyashiro", "Miyashita", "Miyata", "Miyatake", "Miyataki", "Miyauchi", "Miyayasu", "Miyazaki", "Miyazawa", "Miyazono", "Miyoda", "Miyoshi", "Mizoguchi", "Mizoue", "Mizukami", "Mizumaki", "Mizumoto", "Mizuno", "Mizusawa", "Mizushima", "Mizuta", "Mizutani", "Mochida", "Mochizuki", "Mogami", "Momoi", "Momomura", "Monden", "Morakawa", "Mori", "Moriguchi", "Morikawa", "Morimoto", "Morinaga", "Morinaka", "Morine", "Morino", "Morinoue", "Morioka", "Morisaki", "Morishige", "Morishima", "Morishita", "Morishito", "Morisugi", "Morita", "Moriwaki", "Moriya", "Moriyama", "Morota", "Motegi", "Motobayashi", "Motonaga", "Motooka", "Motoyama", "Mtsui", "Mukai", "Munakata", "Munari", "Munemura", "Mura", "Murai", "Murakami", "Murakawa", "Muraki", "Muramatsu", "Muramoto", "Muranaka", "Murano", "Muraoka", "Murasaki", "Murase", "Murata", "Murayama", "Mushashibi", "Muto", "Mutsu", "Nagahama", "Nagahasu", "Nagai", "Nagamine", "Nagamoto", "Nagano", "Naganuma", "Nagao", "Nagaoka", "Nagasaka", "Nagasaki", "Nagasako", "Nagasawa", "Nagase", "Nagashima", "Nagata", "Nagatani", "Nagato", "Nagayama", "Naito", "Naka", "Nakabayashi", "Nakachi", "Nakada", "Nakae", "Nakagake", "Nakagaki", "Nakagawa", "Nakahara", "Nakai", "Nakajima", "Nakama", "Nakamatsu", "Nakamori", "Nakamoto", "Nakamura", "Nakane", "Nakanishi", "Nakano", "Nakao", "Nakaoka", "Nakasato", "Nakashima", "Nakasone", "Nakata", "Nakatani", "Nakatogawa", "Nakatsu", "Nakatsuka", "Nakauchi", "Nakawatase", "Nakaya", "Nakayama", "Nakazawa", "Nakazono", "Nako", "Namba", "Namihira", "Nanjo", "Nanka", "Nara", "Narimatsu", "Narita", "Narukami", "Nawa", "Nemoto", "Nihei", "Nii", "Niibori", "Niijima", "Niimi", "Niimoto", "Niinami", "Nikaido", "Nimura", "Ninomiya", "Nishi", "Nishida", "Nishie", "Nishigaki", "Nishiguchi", "Nishihara", "Nishihira", "Nishijima", "Nishikata", "Nishikawa", "Nishimori", "Nishimoto", "Nishimura", "Nishina", "Nishinaga", "Nishino", "Nishio", "Nishioka", "Nishitakatsuji", "Nishitani", "Nishiuma", "Nishiyama", "Nishizawa", "Nitta", "Niwa", "No", "Noda", "Nogami", "Nogawa", "Noguchi", "Nohara", "Noji", "Nojima", "Nojiri", "Noma", "Nomaguchi", "Nomoto", "Nomura", "Nonaka", "Nose", "Notsu", "Nozaki", "Nozawa", "Numata", "Oba", "Obata", "Obayashi", "Obi", "Obuchi", "Ochi", "Ochiai", "Ochida", "Oda", "Odaka", "Odo", "Oga", "Ogami", "Ogasawara", "Ogata", "Ogawa", "Ogino", "Ogura", "Ohama", "Ohara", "Ohashi", "Ohata", "Ohbora", "Ohi", "Ohira", "Ohkawa", "Ohkita", "Ohmine", "Ohmoto", "Ohmura", "Ohno", "Ohsawa", "Ohta", "Ohtake", "Ohtsuka", "Ohuchi", "Ohya", "Ohyama", "Oi", "Oishi", "Oiwa", "Oji", "Oka", "Okabayashi", "Okabe", "Okada", "Okagawa", "Okagi", "Okaido", "Okajima", "Okami", "Okamoto", "Okamura", "Okano", "Okanoya", "Okawa", "Okayama", "Okazaki", "Oketani", "Oki", "Okie", "Okihara", "Okimoto", "Okimura", "Okinaga", "Okinaka", "Okino", "Okinobu", "Okita", "Okitsu", "Okochi", "Oku", "Okubo", "Okuda", "Okuhara", "Okuma", "Okumoto", "Okumura", "Okuna", "Okuno", "Okura", "Okutsu", "Okuwaki", "Okuyama", "Omagari", "Omata", "Omi", "Omori", "Omoto", "Omura", "Onaga", "Onaka", "Onezawa", "Onishi", "Onitsuka", "Onizuka", "Ono", "Onoda", "Onodera", "Onose", "Onuma", "Oogida", "Ooishi", "Osabe", "Osada", "Osagawa", "Osaka", "Osaki", "Osako", "Osato", "Osawa", "Oshima", "Oshimo", "Oshiro", "Oshita", "Osumi", "Ota", "Otake", "Otani", "Oto", "Otomo", "Otsu", "Otsubo", "Otsuji", "Otsuka", "Otsuki", "Ouchi", "Ouye", "Oya", "Oyabu", "Oyadomari", "Oyagi", "Oyama", "Oyanagi", "Ozaki", "Ozawa", "Ryusaki", "Sada", "Sadahiro", "Saeda", "Saeki", "Saga", "Sagara", "Sagawa", "Sahara", "Saiki", "Saisho", "Saita", "Saito", "Saitoh", "Sakagami", "Sakaguchi", "Sakahara", "Sakai", "Sakamoto", "Sakane", "Sakashita", "Sakata", "Sakaue", "Sakazaki", "Saki", "Sakihara", "Sakikibara", "Sako", "Sakoda", "Sakuda", "Sakuma", "Sakumoto", "Sakura", "Sakurada", "Sakurai", "Sameshima", "Sanada", "Sanekata", "Sano", "Sanuki", "Saruwatari", "Saruyama", "Sasahara", "Sasakawa", "Sasaki", "Sasano", "Sasanuma", "Sasayama", "Satake", "Sato", "Satoh", "Satomi", "Satonaka", "Satou", "Satow", "Satta", "Sawada", "Sawai", "Sawamura", "Sawanishi", "Sawaoka", "Sawaya", "Sazanami", "Segawa", "Seiji", "Seiki", "Seki", "Sekigawa", "Sekiguchi", "Sekimoto", "Sekine", "Sekiya", "Sen", "Senoue", "Sera", "Serizawa", "Seta", "Seto", "Setoguchi", "Shiba", "Shibaguchi", "Shibahata", "Shibanuma", "Shibata", "Shibayama", "Shibayanagi", "Shibuya", "Shido", "Shiga", "Shigaki", "Shigeki", "Shigematsu", "Shigemi", "Shigemoto", "Shigemura", "Shigeta", "Shigi", "Shiigi", "Shiimori", "Shiina", "Shikuma", "Shima", "Shimabuku", "Shimabukuro", "Shimada", "Shimakage", "Shimamoto", "Shimamura", "Shimane", "Shimano", "Shimanuki", "Shimaoka", "Shimasaki", "Shimazu", "Shimida", "Shimizu", "Shimmyo", "Shimo", "Shimoda", "Shimokawa", "Shimomura", "Shimomuta", "Shimonishi", "Shimono", "Shimura", "Shinagawa", "Shindo", "Shinjo", "Shinko", "Shinoda", "Shinoga", "Shinohara", "Shinozaki", "Shinpuku", "Shinsato", "Shintaku", "Shintani", "Shioji", "Shiota", "Shiozaki", "Shira", "Shirai", "Shiraishi", "Shiraiwa", "Shirakawa", "Shiraki", "Shirane", "Shiro", "Shirogane", "Shiroma", "Shirota", "Shiroyama", "Shirozu", "Shishido", "Shitanishi", "Shitara", "Shizuma", "Shoda", "Shogo", "Shohtoku", "Shoji", "Soga", "Soho", "Soma", "Someya", "Sonoda", "Sonomura", "Sora", "Soseki", "Sotomura", "Sudo", "Sudou", "Sueda", "Suehiro", "Suenaga", "Sueoka", "Sueyoshi", "Suga", "Sugahara", "Sugai", "Sugamoto", "Sugano", "Suganuma", "Sugata", "Sugawa", "Sugawara", "Sugihara", "Sugimori", "Sugimoto", "Sugimura", "Sugino", "Sugita", "Sugitani", "Sugiura", "Sugiyama", "Suki", "Sukimoto", "Suma", "Sumi", "Sumida", "Sumino", "Sumitimo", "Sunada", "Sunahara", "Suou", "Suto", "Suwa", "Suyama", "Suyehiro", "Suyenaga", "Suzuki", "Suzukida", "Tabata", "Tabuchi", "Tachibana", "Tada", "Tadeo", "Tadeshi", "Tagami", "Tagawa", "Taguchi", "Tahara", "Taira", "Taizo", "Tajima", "Tajiri", "Takabatake", "Takabayashi", "Takabe", "Takada", "Takaezu", "Takagaki", "Takagawa", "Takagi", "Takahagi", "Takahara", "Takahashi", "Takai", "Takaki", "Takakura", "Takamatsu", "Takami", "Takamiya", "Takamori", "Takamoto", "Takamura", "Takano", "Takao", "Takaoka", "Takara", "Takasaki", "Takase", "Takashi", "Takashima", "Takasugi", "Takata", "Takaya", "Takayama", "Takayesu", "Takeba", "Takebayashi", "Takeda", "Takehara", "Takei", "Takemago", "Takemoto", "Takemura", "Takenaka", "Takeshima", "Takeshita", "Taketa", "Taketazu", "Taketomo", "Takeuchi", "Takeya", "Takeyama", "Taki", "Takiguchi", "Takimoto", "Takisawa", "Takizawa", "Tamae", "Tamai", "Tamanaha", "Tamashiro", "Tamaye", "Tamayose", "Tamenori", "Tamiya", "Tamura", "Tamuro", "Tanabe", "Tanaka", "Tani", "Tanigawa", "Taniguchi", "Tanikawa", "Tanimoto", "Tanimura", "Tanioka", "Tanji", "Tano", "Tanoue", "Tanouye", "Tanuma", "Taomi", "Taruya", "Tasaka", "Tashikani", "Tashima", "Tashiro", "Tateishi", "Tateyama", "Tatsumi", "Tatsuno", "Tatsuta", "Tatsuya", "Tayama", "Tazaki", "Tekawa", "Tempo", "Tengan", "Terada", "Teragawa", "Teraguchi", "Terai", "Terakado", "Teramoto", "Teranishi", "Terao", "Teraoka", "Terauchi", "Terayama", "Teruya", "Teshigahara", "Teshima", "Tezuka", "Tobe", "Tochikura", "Toda", "Togami", "Togasaki", "Togashi", "Togawa", "Togo", "Toguchi", "Tojo", "Toki", "Tokita", "Tokiwa", "Tokuda", "Tokudome", "Tokumoto", "Tokunaga", "Tokuoka", "Tokusaki", "Toma", "Tomabechi", "Tome", "Tomei", "Tomimoto", "Tominaga", "Tomine", "Tomita", "Tonai", "Tone", "Tonooka", "Torigoe", "Torii", "Toru", "Tosh", "Toshima", "Toshio", "Totoki", "Tottori", "Toudou", "Toya", "Toyama", "Toyoda", "Toyofuku", "Toyonaga", "Toyooka", "Toyoshima", "Toyota", "Tsuboi", "Tsubota", "Tsuchida", "Tsuchihashi", "Tsuchikawa", "Tsuchiya", "Tsuchiyama", "Tsuda", "Tsugawa", "Tsuge", "Tsuha", "Tsuji", "Tsujimoto", "Tsukada", "Tsukahara", "Tsukamoto", "Tsukayama", "Tsukioka", "Tsukuda", "Tsukuma", "Tsunezumi", "Tsuno", "Tsunoda", "Tsuru", "Tsuruda", "Tsurumi", "Tsuruta", "Tsutomi", "Tsutsui", "Tsutsumi", "Tsuzuki", "Uchida", "Uchikoga", "Uchima", "Uchimura", "Uchino", "Uchiyama", "Uda", "Ude", "Udo", "Uechi", "Ueda", "Uehara", "Ueji", "Ueki", "Uemura", "Ueno", "Ueseugi", "Uesugi", "Umeda", "Umehara", "Umemoto", "Umetsu", "Umezawa", "Umezono", "Uno", "Ura", "Urabe", "Uragami", "Uragi", "Uraisami", "Urata", "Uriu", "Usami", "Ushijima", "Ushiro", "Usui", "Utsumi", "Uyeda", "Uyehara", "Uyematsu", "Uyemura", "Uyeno", "Uyeshiro", "Uyetake", "Wada", "Wagatsuma", "Wakabayashi", "Wakai", "Wakamatsu", "Wakamura", "Wakayama", "Wake", "Waki", "Wakita", "Wang", "Washio", "Watabe", "Watanabe", "Watari", "Watase", "Yabuki", "Yada", "Yagasaki", "Yagi", "Yagoda", "Yaguchi", "Yajima", "Yamabe", "Yamada", "Yamadera", "Yamagata", "Yamagawa", "Yamagishi", "Yamaguchi", "Yamaguchiya", "Yamaha", "Yamahashi", "Yamakawa", "Yamaki", "Yamakoshi", "Yamamoto", "Yamamura", "Yamanaka", "Yamane", "Yamano", "Yamao", "Yamaoka", "Yamasaki", "Yamashiro", "Yamashita", "Yamato", "Yamauchi", "Yamawaki", "Yamazaki", "Yanagawa", "Yanagi", "Yanagida", "Yanagihara", "Yanagimoto", "Yanagisawa", "Yanai", "Yanase", "Yano", "Yaosaka", "Yara", "Yasubuchi", "Yasuda", "Yasuhara", "Yasuhiro", "Yasui", "Yasukawa", "Yasumori", "Yasunaga", "Yasutake", "Yoda", "Yokeda", "Yokohama", "Yokoi", "Yokomitsu", "Yokomizo", "Yokota", "Yokoyama", "Yokozeki", "Yonamine", "Yonashiro", "Yoneda", "Yonekura", "Yonemori", "Yonemoto", "Yonemura", "Yoneoka", "Yoneyama", "Yori", "Yoshiba", "Yoshida", "Yoshifumi", "Yoshihara", "Yoshii", "Yoshikawa", "Yoshimi", "Yoshimori", "Yoshimoto", "Yoshimura", "Yoshina", "Yoshinaga", "Yoshino", "Yoshioka", "Yoshitomi", "Yoshiyama", "Yoshizaki", "Yoshizawa", "Yoshizoe", "Yoshizumi", "Yotsukura", "Yotsuzuka", "Yoza", "Yuasa", "Yui", "Yukawa", "Yuki", "Yukinaga", "Yunokawa", "Yuuki", "Yuzawa", "Zakimi"]>> <<set setup.nigerianSlaveNames = ["Abigail", "Amina", "Ayomide", "Chinelo", "Dorcas", "Doris", "Esther", "Habeeba", "Hadiza", "Hannah", "Hellen", "Kebe", "Kemi", "Linda", "Marie", "Maris", "Mary", "Mercy", "Michelle", "Olabisi", "Promise", "Redeem", "Rose", "Stella", "Stephanie", "Temitope", "Theresa", "Wendy", "Wisfavour"]>> <<set setup.nigerianSlaveSurnames = ["Abdullahi", "Abiodun", "Abiola", "Abu", "Abubakar", "Adams", "Adamu", "Adebayo", "Adebiyi", "Adebowale", "Adedeji", "Adegoke", "Adekoya", "Adekunle", "Adeleke", "Adeleye", "Adeniji", "Adeniran", "Adeniyi", "Adeoye", "Adepoju", "Adesanya", "Adesina", "Adetunji", "Adewale", "Adewole", "Adewumi", "Adeyemi", "Adeyemo", "Adigun", "Afolabi", "Agbo", "Agboola", "Agu", "Ahmed", "Aina", "Ajayi", "Ajibade", "Ajibola", "Ajiboye", "Akanbi", "Akande", "Akinola", "Akinyemi", "Akpan", "Alabi", "Alade", "Alao", "Ali", "Aliyu", "Amadi", "Anthony", "Anyanwu", "Aremu", "Audu", "Augustine", "Ayeni", "Ayodele", "Ayoola", "Azeez", "Baba", "Babalola", "Babatunde", "Bakare", "Balogun", "Bamidele", "Bankole", "Bashir", "Bassey", "Bello", "Benson", "Brown", "Chukwu", "Collins", "Daniel", "Daramola", "Dare", "Dauda", "David", "Dike", "Edet", "Effiong", "Eke", "Emmanuel", "Essien", "Etim", "Eze", "Ezeh", "Francis", "Friday", "Garba", "George", "Godwin", "Hassan", "Ibe", "Ibrahim", "Idowu", "Idris", "Ige", "Igwe", "Inyang", "Isaac", "Isah", "Ishola", "Issac", "James", "Jimoh", "John", "Johnson", "Joseph", "Joshua", "Kalu", "Kayode", "Kehinde", "Kolawole", "Lawal", "Madu", "Makinde", "Martins", "Michael", "Mohammed", "Momoh", "Moses", "Muhammad", "Musa", "Mustapha", "Nelson", "Njoku", "Nwachukwu", "Nwankwo", "Nwosu", "Obi", "Ogbonna", "Ogunleye", "Ojo", "Okafor", "Oke", "Okeke", "Okereke", "Okoh", "Okoli", "Okon", "Okonkwo", "Okorie", "Okoro", "Okoye", "Ola", "Oladapo", "Oladele", "Oladimeji", "Oladipo", "Oladipupo", "Oladopo", "Olajide", "Olaleye", "Olaniyan", "Olaniyi", "Olanrewaju", "Olatunji", "Olayiwola", "Oni", "Onuoha", "Opara", "Orji", "Owolabi", "Oyewole", "Paul", "Peter", "Peters", "Popoola", "Raji", "Sadiq", "Salami", "Samson", "Samuel", "Sani", "Sanni", "Sanusi", "Shehu", "Shittu", "Smith", "Solomon", "Stephen", "Sulaiman", "Sule", "Suleiman", "Sunday", "Taiwo", "Thomas", "Tijani", "Uche", "Udoh", "Ugwu", "Umar", "Umeh", "Umoh", "Usman", "Victor", "Williams", "Yahaya", "Yakubu", "Yusuf"]>> @@ -655,7 +655,7 @@ <<set setup.greenlandicSlaveSurnames = ["Abelsen", "Abrahamsen", "Albrechtsen", "Andersen", "Andreasen", "Andreassen", "Aronsen", "Bak", "Bang", "Bech", "Benjaminsen", "Berglund", "Berthelsen", "Bianco", "Biilmann", "Bisgaard", "Bjerre", "Blytmann", "Boassen", "Bonde", "Boye", "Brandt", "Broberg", "Brønlund", "Brown", "Bruun", "Budek", "Busk", "Carlsen", "Chemnitz", "Christensen", "Christiansen", "Christoffersen", "Christophersen", "Clausen", "Dahl", "Dalager", "Danielsen", "Davidsen", "Didriksen", "Dorph", "Egede", "Eliassen", "Enoksen", "Eriksen", "Eugenius", "Falksen", "Fencker", "Fisker", "Fleischer", "Frandsen", "Frederiksen", "Friis", "Geisler", "Green", "Grønvold", "Guldager", "Hammeken", "Hansen", "Hardenberg", "Heilmann", "Heinrich", "Heiselberg", "Hendriksen", "Henriksen", "Hjort", "Hjorth", "Høegh", "Holding", "Holm", "Holt", "Hornum", "Ibsen", "Ingemann", "Isaksen", "Iversen", "Jacobsen", "Jakobsen", "Jensen", "Jeremiassen", "Jerimiassen", "Jessen", "Joelsen", "Johansen", "Johansson", "Johnsen", "Jørgensen", "Josefsen", "Joseph", "Jrgensen", "Juhl", "Kählig", "Karlsen", "Keldsen", "Kielsen", "Kirkegaard", "Kjær", "Kjeldsen", "Kleemann", "Kleinschmidt", "Kleist", "Knudsen", "Kreutzmann", "Kristensen", "Kristiansen", "Kristoffersen", "Krogh", "Kruse", "Kuitse", "Kumar", "Kunak", "Lange", "Larsen", "Laursen", "Lennert", "Lindberg", "Lindenhann", "Lings", "Lorentzen", "Løvstrøm", "Ludvigsen", "Lukassen", "Lund", "Lundblad", "Lyberth", "Lynge", "Madsen", "Magnussen", "Mark", "Markussen", "Mathiasen", "Mathiassen", "Mikaelsen", "Mikkelsen", "Miller", "Moeller", "Mogensen", "Mølgaard", "Møller", "Mørch", "Mortensen", "Motzfeldt", "Munch", "Munk", "Nathanielsen", "Nathansen", "Nicolaisen", "Nielsen", "Nissen", "Noahsen", "Olesen", "Olsen", "Olsvig", "Ostermann", "Ottosen", "Overgaard", "Pape", "Pars", "Paulsen", "Pedersen", "Petersen", "Petrussen", "Pivat", "Poppel", "Poulsen", "Rafaelsen", "Rasmussen", "Reimer", "Rohde", "Rosing", "Samuelsen", "Sandgreen", "Schmidt", "Sharma", "Siegstad", "Silassen", "Simonsen", "Singh", "Sivertsen", "Skifte", "Smith", "Sommer", "Sørensen", "Srensen", "Steenholdt", "Stenbakken", "Stilling", "Storch", "Svendsen", "Therkelsen", "Therkildsen", "Thomassen", "Thomsen", "Thorleifsen", "Thorsteinsson", "Tobiassen", "Vahl", "Willumsen", "Winther", "Zeeb"]>> <<set setup.tuvaluanSlaveNames = ["Aigafealofani", "Asenate", "Ese", "Eselealofa", "Ilaisita", "Kaila", "Kalautia", "Kanake", "Kenese", "Lagi", "Lea", "Loukite", "Naama", "Naomi", "Nese", "Pelenike", "Penieli", "Penina", "Pepapeti", "Perenike", "Puakena", "Pulafagau", "Salilo", "Seepa", "Sikinala", "Siliva", "Sina", "Sualua", "Tausaga", "Upumoni", "Vaimaila"]>> -<<set setup.tuvaluanSlaveSurnames = ["Adams", "Afele", "Albeniz", "Alefaio", "Ali", "Aliyu", "Amosa", "Androsky", "Apinelu", "Armstrong", "Arun", "Auina", "Ave", "Bagarukayo", "Barb", "Begum", "Blund", "Boland", "Boreham", "Bruce", "Çaltik", "Caplen", "Chatzi", "Chiken", "Conway", "D'Souza", "Danan", "Das", "David", "Docherty", "Dore", "Eliapo", "Elisaia", "Elisala", "Ene", "Eren", "Ernests", "Faiva", "Feagai", "Feda", "Fialua", "Fili", "Finiki", "Freedy", "Fuiono", "Fusi", "Gazzola", "Good", "Graft", "Halo", "Hamid", "Hassan", "Hauma", "Hellani", "Hoi", "Homasi", "Hong", "Ielemia", "If", "Ioane", "Ioasa", "Ionatana", "Irata", "Italeli", "Ituaso", "Jackson", "Jane", "Jolly", "Joshua", "Kaly", "Kana", "Kapua", "Katagali", "Kaua", "Keleti", "Kelly", "Kilifi", "Kilima", "Kirby", "Kitiona", "Kokot", "Kolone", "Kotema", "Krishnamoorthy", "Kumar", "Lalua", "Latasi", "Laupepa", "Lawrence", "Lee", "Lemonon", "Lepaio", "Letia", "Lindqvist", "Lolesi", "Lopati", "Lototele", "Lusama", "Lyons", "Maitoga", "Makory", "Malau", "Malua", "Managreve", "Manao", "Manno", "Manuela", "Mase", "Matai", "Maumau", "Mazaiwana", "McGibbon", "Mester", "Mohamed", "Molu", "Momo", "Mono", "Moyou", "Nakala", "Nakoli", "Naoto", "Napoe", "Natano", "Nicole", "Nitz", "Nuss", "Obrien", "Oray", "Öz", "Paeniu", "Panapa", "Panwar", "Pelee", "Peleti", "Penitusi", "Perez", "Pese", "Petaia", "Pita", "Pokia", "Porter", "Pridgen", "Pryanikov", "Puapua", "Pulusi", "Puti", "Rastaman", "Rize", "Roberts", "Rodriguez", "Ryan", "Sagapolutele", "Sakaio", "Salani", "Salanoa", "Sautia", "Selver", "Semeli", "Semilota", "Serrano", "Setema", "Shumba", "Siale", "Sieni", "Sikela", "Simati", "Sina", "Singh", "Sione", "Sioni", "Smith", "Smitha", "Sogivalu", "Spelta", "Stanley", "Syman", "Talu", "Tanei", "Tapa", "Tapasei", "Tauati", "Taukatea", "Tausi", "Tavai", "Telito", "Telogo", "Tema", "Teo", "Timion", "Tinilau", "Tofuola", "Tomu", "Tuilagi", "Unana", "Utime", "Vaguna", "Vaioleti", "Valoa", "Valoaga", "Vili", "Villar", "Wayne", "Wilson", "Wong"]>> +<<set setup.tuvaluanSlaveSurnames = ["Adams", "Afele", "Albeniz", "Alefaio", "Ali", "Aliyu", "Amosa", "Androsky", "Apinelu", "Armstrong", "Arun", "Auina", "Ave", "Bagarukayo", "Barb", "Begum", "Blund", "Boland", "Boreham", "Bruce", "Çaltik", "Caplen", "Chatzi", "Chiken", "Conway", "D'Souza", "Danan", "Das", "David", "Docherty", "Dore", "Eliapo", "Elisaia", "Elisala", "Ene", "Eren", "Ernests", "Faiva", "Feagai", "Feda", "Fialua", "Fili", "Finiki", "Freedy", "Fuiono", "Fusi", "Gazzola", "Good", "Graft", "Halo", "Hamid", "Hassan", "Hauma", "Hellani", "Hoi", "Homasi", "Hong", "Ielemia", "If", "Ioane", "Ioasa", "Ionatana", "Irata", "Italeli", "Ituaso", "Jackson", "Jane", "Jolly", "Joshua", "Kaly", "Kana", "Kapua", "Katagali", "Kaua", "Keleti", "Kelly", "Kilifi", "Kilima", "Kirby", "Kitiona", "Kokot", "Kolone", "Kotema", "Krishnamoorthy", "Kumar", "Lalua", "Latasi", "Laupepa", "Lawrence", "Lee", "Lemonon", "Lepaio", "Letia", "Lindqvist", "Lolesi", "Lopati", "Lototele", "Lusama", "Lyons", "Maitoga", "Makory", "Malau", "Malua", "Managreve", "Manao", "Manno", "Manuela", "Mase", "Matai", "Maumau", "Mazaiwana", "McGibbon", "Mester", "Mohamed", "Molu", "Momo", "Mono", "Moyou", "Nakala", "Nakoli", "Naoto", "Napoe", "Natano", "Nicole", "Nitz", "Nuss", "O'Brien", "Oray", "Öz", "Paeniu", "Panapa", "Panwar", "Pelee", "Peleti", "Penitusi", "Perez", "Pese", "Petaia", "Pita", "Pokia", "Porter", "Pridgen", "Pryanikov", "Puapua", "Pulusi", "Puti", "Rastaman", "Rize", "Roberts", "Rodriguez", "Ryan", "Sagapolutele", "Sakaio", "Salani", "Salanoa", "Sautia", "Selver", "Semeli", "Semilota", "Serrano", "Setema", "Shumba", "Siale", "Sieni", "Sikela", "Simati", "Sina", "Singh", "Sione", "Sioni", "Smith", "Smitha", "Sogivalu", "Spelta", "Stanley", "Syman", "Talu", "Tanei", "Tapa", "Tapasei", "Tauati", "Taukatea", "Tausi", "Tavai", "Telito", "Telogo", "Tema", "Teo", "Timion", "Tinilau", "Tofuola", "Tomu", "Tuilagi", "Unana", "Utime", "Vaguna", "Vaioleti", "Valoa", "Valoaga", "Vili", "Villar", "Wayne", "Wilson", "Wong"]>> <<set setup.zambianSlaveNames = ["Alice", "Angela", "Bertha", "Betty", "Beverly", "Catherine", "Charlotte", "Cheyenne", "Chifundo", "Christine", "Cyndia", "Dalitso", "Dorcas", "Edith", "Esther", "Gwendoline", "Hellen", "Inonge", "Jean", "Jennifer", "Joyce", "Kitana", "Lily", "Mary", "Masozi", "Mavuto", "Nabanji", "Nkandu", "Nthanda", "Portia", "Roberta", "Robyn", "Salma", "Sara", "Susan", "Taonga", "Tasila", "Thandiwe", "Vera", "Victoria", "Winfridah", "Yamikani", "Yvonne"]>> <<set setup.zambianSlaveSurnames = ["Banda", "Besa", "Bowa", "Bwalya", "Chabala", "Chali", "Chalwe", "Chama", "Chanda", "Chansa", "Chewe", "Chibale", "Chibesa", "Chibuye", "Chibwe", "Chilala", "Chilekwa", "Chilembo", "Chileshe", "Chiluba", "Chilufya", "Chimfwembe", "Chinyama", "Chipasha", "Chipeta", "Chipili", "Chirwa", "Chisala", "Chisanga", "Chisenga", "Chisha", "Chishala", "Chishimba", "Chitalu", "Chola", "Chomba", "Chongo", "Chulu", "Chungu", "Clark", "Daka", "Goma", "Gondwe", "Hara", "Imasiku", "Jere", "Kabamba", "Kabaso", "Kabwe", "Kaira", "Kalaba", "Kalaluka", "Kalenga", "Kaluba", "Kalumba", "Kalunga", "Kamanga", "Kampamba", "Kangwa", "Kaoma", "Kaonga", "Kapambwe", "Kapembwa", "Kasanda", "Kasonde", "Kasongo", "Katebe", "Katongo", "Kaumba", "Kaunda", "Kazembe", "Kombe", "Kumwenda", "Kunda", "Lombe", "Longwe", "Lubasi", "Lubinda", "Lungu", "Maambo", "Mainza", "Malama", "Malambo", "Malunga", "Mambwe", "Manda", "Mapulanga", "Mbao", "Mbewe", "Mbulo", "Mfula", "Mhango", "Michelo", "Milambo", "Milimo", "Miti", "Miyoba", "Mkandawire", "Moonga", "Moono", "Moyo", "Mpundu", "Mtonga", "Mubanga", "Mubiana", "Mubita", "Muchindu", "Mudenda", "Mugala", "Mukelabai", "Mukuka", "Mukupa", "Mulenga", "Muleya", "Muma", "Mumba", "Mumbi", "Munalula", "Mundia", "Munkombwe", "Munthali", "Musenge", "Musonda", "Musukwa", "Mutale", "Mutambo", "Muwowo", "Muyunda", "Mvula", "Mwaanga", "Mwaba", "Mwale", "Mwamba", "Mwambazi", "Mwango", "Mwansa", "Mwanza", "Mwape", "Mweemba", "Mweene", "Mweetwa", "Mwelwa", "Mwenda", "Mwenya", "Mwewa", "Mwiinga", "Mwila", "Mwiya", "Nawa", "Ndhlovu", "Ng'ambi", "Ng'andu", "Ngambi", "Ngandu", "Ngoma", "Ngosa", "Ngulube", "Nguni", "Ngwira", "Njobvu", "Njovu", "Nkandu", "Nkhata", "Nkhoma", "Nkole", "Nkonde", "Nonde", "Nsama", "Nyambe", "Nyirenda", "Nyirongo", "Nyoni", "Phiri", "Sakala", "Sampa", "Shawa", "Siame", "Sibanda", "Sichone", "Sikazwe", "Silungwe", "Silwamba", "Silwimba", "Simasiku", "Simbeye", "Simfukwe", "Simukoko", "Simukonda", "Simumba", "Simwanza", "Simwinga", "Sinkala", "Sinkamba", "Sinyangwe", "Sitali", "Siwale", "Soko", "Tembo", "Zimba", "Zulu", "Zyambo"]>> @@ -666,8 +666,8 @@ <<set setup.bruneianSlaveNames = ["Afiqah", "Aisha", "Arin", "Azimatul", "Batrisyia", "Eilna", "Eyah", "Ezzah", "Fadhila", "Fatih", "Fatima", "Fatimah", "Fatin", "Hajah", "Haji", "Hakimah", "Hani", "Insyirah", "Izzati", "Jannah", "Khadija", "Liyana", "Maizurah", "Majeedah", "Masna", "Mawar", "Maziah", "Melati", "Najibah", "Qistina", "Ramizah", "Salbiah", "Saleha", "Sarah", "Winna", "Zaidirah", "Zalfa"]>> <<set setup.bruneianSlaveSurnames = ["Abas", "Abd", "Abdul", "Abdullah", "Abidin", "Abu", "Adanan", "Ahamed", "Ahmad", "Ahmed", "Ak", "Ali", "Alias", "Amin", "Ang", "Ariffin", "Arifin", "Awang", "Aziz", "Azmi", "Babu", "Bakar", "Besar", "Bong", "Boon", "Bujang", "Bungsu", "Chai", "Chang", "Chee", "Cheng", "Cheok", "Cheong", "Chia", "Chieng", "Chiew", "Chin", "Chong", "Choo", "Chu", "Chua", "Chung", "Damit", "Daud", "Deli", "Duraman", "Firdaus", "Fong", "Foo", "Fung", "Ghani", "Goh", "Gurung", "Ha", "Haji", "Halim", "Hamdan", "Hamid", "Hamzah", "Han", "Har", "Hashim", "Hassan", "Hii", "Ho", "Hong", "Hs", "Hussain", "Hussin", "Ibrahim", "Idris", "Ishak", "Ismail", "Jaafar", "Jalil", "Jaya", "Johari", "Jumat", "Junaidi", "Kamaluddin", "Kamis", "Karim", "Kasim", "Kassim", "Keasberry", "Khalid", "Khan", "Khoo", "Koh", "Kok", "Kong", "Kuan", "Kumar", "Lai", "Latif", "Latip", "Lau", "Law", "Leong", "Li", "Liaw", "Liew", "Lim", "Ling", "Lo", "Loh", "Loo", "Low", "Mahmud", "Mahusin", "Majid", "Malai", "Malik", "Man", "Manaf", "Masri", "Mat", "Matusin", "Metali", "Mohamad", "Mohamed", "Mohammad", "Mohammed", "Mohidin", "Muhammad", "Musa", "Nair", "Newn", "Ng", "Noor", "Nordin", "Omar", "Ong", "Osman", "Othman", "Poh", "Puteh", "Rahim", "Rahman", "Rai", "Ramlee", "Ramli", "Rashid", "Razak", "Razali", "Roslan", "Rosli", "Sabli", "Sabtu", "Said", "Salim", "Salleh", "Samad", "San", "See", "Serudin", "Shah", "Shim", "Sia", "Sim", "Singh", "Soon", "Suhaili", "Suhaimi", "Sulaiman", "Syed", "Taha", "Tahir", "Taib", "Tajuddin", "Talib", "Tamit", "Tan", "Tang", "Tay", "Tengah", "Teo", "Thien", "Ting", "Tiong", "Tuah", "Voon", "Wahab", "Wan", "Wee", "Yaakub", "Yahya", "Yap", "Yapp", "Yassin", "Yee", "Yeo", "Yong", "Yu", "Yunus", "Yusof", "Yussof", "Zain", "Zainal", "Zaini", "Zulkifli"]>> -<<set setup.singaporeanSlaveNames = ["Adina", "Agnes", "Amanda", "Aminah", "Astrid", "Balli", "Dawn", "Diyanah", "Ellen", "Fadilah", "Fann", "Fatimah", "Fatin", "Fiona", "Gina", "Iris", "Jade", "Janet", "Janice", "Jazreen", "Jean", "Jennifer", "Joanne", "Joyce", "Jun", "Khym", "Kim", "Kym", "Lim", "Linda", "Liyann", "Margaret", "Meijiao", "Michelle", "Min", "Nadya", "Naomi", "Nora", "Nuraliza", "Puteri", "Rachel", "Regina", "Rena", "Rin", "Selena", "Sharifah", "Siti", "Sofia", "Syiqah", "Sylvia", "Topaz", "Vanessa", "Wangi", "Wati", "Ziqian", "Zoe"]>> -<<set setup.singaporeanSlaveSurnames = ["Abdul", "Abdullah", "Ahmad", "Ali", "Ang", "Aung", "Aw", "Boon", "Cai", "Chai", "Chan", "Chang", "Cheah", "Chee", "Chen", "Cheng", "Cheong", "Chew", "Chia", "Chiang", "Chin", "Ching", "Chng", "Chong", "Choo", "Choong", "Chow", "Choy", "Chu", "Chua", "Chung", "Ee", "Eng", "Er", "Fan", "Fang", "Fong", "Foo", "Foong", "Fu", "Gan", "Goh", "Guo", "Gupta", "Han", "He", "Heng", "Ho", "Hong", "How", "Hu", "Huang", "Hui", "Ismail", "Jain", "Jia", "Jiang", "Jin", "Kang", "Kannan", "Kaur", "Kee", "Khan", "Khoo", "Kim", "Ko", "Koh", "Kok", "Kong", "Koo", "Krishnan", "Kumar", "Kwan", "Kwek", "Kwok", "Lai", "Lam", "Lau", "Law", "Lay", "Lee", "Leng", "Leong", "Leow", "Lew", "Li", "Lian", "Liang", "Liew", "Lim", "Lin", "Ling", "Liu", "Lo", "Loh", "Loke", "Long", "Loo", "Low", "Lu", "Lum", "Luo", "Lye", "Mak", "Meng", "Mohamed", "Mohammed", "Mok", "Nair", "Neo", "Ng", "Nguyen", "Oh", "Ong", "Oo", "Ooi", "Ow", "Pan", "Pang", "Peh", "Peng", "Phang", "Phua", "Poh", "Poon", "Quah", "Quek", "Rahman", "Raj", "Rao", "Seah", "See", "Seet", "Seng", "Seow", "Shah", "Sharma", "Shen", "Shi", "Sia", "Siew", "Sim", "Sin", "Singh", "Sng", "Soe", "Soh", "Song", "Soo", "Soon", "Su", "Sun", "Tai", "Tan", "Tang", "Tay", "Tee", "Teh", "Teng", "Teo", "Teoh", "Tham", "Tian", "Ting", "Toh", "Tong", "Tran", "Tun", "Wan", "Wang", "Wee", "Wei", "Wen", "Win", "Wong", "Woo", "Woon", "Wu", "Xie", "Xu", "Yan", "Yang", "Yap", "Ye", "Yee", "Yeo", "Yeoh", "Yeow", "Yew", "Yi", "Yin", "Yip", "Yong", "Young", "Yu", "Yuen", "Zhang", "Zhao", "Zheng", "Zhou", "Zhu"]>> +<<set setup.singaporeanSlaveNames = ["Adina", "Agnes", "Amanda", "Aminah", "Astrid", "Balli", "Cheryl", "Dawn", "Diyanah", "Ellen", "Fadilah", "Fann", "Fatimah", "Fatin", "Fiona", "Gina", "Iris", "Jade", "Janet", "Janice", "Jazreen", "Jean", "Jennifer", "Joanne", "Joyce", "Jun", "Khym", "Kim", "Kym", "Lim", "Linda", "Liyann", "Margaret", "Meijiao", "Michelle", "Min", "Nadya", "Naomi", "Nora", "Nuraliza", "Puteri", "Rachel", "Regina", "Rena", "Rin", "Selena", "Sharifah", "Siti", "Sofia", "Syiqah", "Sylvia", "Topaz", "Vanessa", "Wangi", "Wati", "Ziqian", "Zoe"]>> +<<set setup.singaporeanSlaveSurnames = ["Abdul", "Abdullah", "Ahmad", "Ali", "Ang", "Aung", "Aw", "Boon", "Cai", "Chai", "Chan", "Chang", "Cheah", "Chee", "Chen", "Cheng", "Cheong", "Chew", "Chia", "Chiang", "Chin", "Ching", "Chng", "Chong", "Choo", "Choong", "Chow", "Choy", "Chu", "Chua", "Chung", "Ee", "Eng", "Er", "Fan", "Fang", "Fong", "Foo", "Foong", "Fu", "Gan", "Goh", "Guo", "Gupta", "Han", "He", "Heng", "Ho", "Hong", "How", "Hu", "Huang", "Hui", "Ismail", "Jain", "Jia", "Jiang", "Jin", "Kang", "Kannan", "Kaur", "Kee", "Khan", "Khoo", "Kim", "Ko", "Koh", "Kok", "Kong", "Koo", "Krishnan", "Kumar", "Kwan", "Kwek", "Kwok", "Lai", "Lam", "Lau", "Law", "Lay", "Lee", "Leng", "Leong", "Leow", "Lew", "Li", "Lian", "Liang", "Liew", "Lim", "Lin", "Ling", "Liu", "Lo", "Loh", "Loke", "Long", "Loo", "Low", "Lu", "Lum", "Luo", "Lye", "Mak", "Meng", "Mohamed", "Mohammed", "Mok", "Nair", "Neo", "Ng", "Nguyen", "Oh", "Ong", "Oo", "Ooi", "Ow", "Pan", "Pang", "Peh", "Peng", "Phang", "Phua", "Poh", "Poon", "Quah", "Quek", "Rahman", "Raj", "Rao", "Samosir", "Seah", "See", "Seet", "Seng", "Seow", "Shah", "Sharma", "Shen", "Shi", "Sia", "Siew", "Sim", "Sin", "Singh", "Sng", "Soe", "Soh", "Song", "Soo", "Soon", "Su", "Sun", "Tai", "Tan", "Tang", "Tay", "Tee", "Teh", "Teng", "Teo", "Teoh", "Tham", "Tian", "Ting", "Toh", "Tong", "Tran", "Tun", "Wan", "Wang", "Wee", "Wei", "Wen", "Win", "Wong", "Woo", "Woon", "Wu", "Xie", "Xu", "Yan", "Yang", "Yap", "Ye", "Yee", "Yeo", "Yeoh", "Yeow", "Yew", "Yi", "Yin", "Yip", "Yong", "Young", "Yu", "Yuen", "Zhang", "Zhao", "Zheng", "Zhou", "Zhu"]>> <<set setup.laotianSlaveNames = ["Boanam", "Bong", "Bouasy", "Boutsaba", "Chanhthuem", "Chantalone", "Chaola", "Chimmy", "Chitpasong", "Dara", "Daraphon", "Daraswan", "Hathavan", "Kanthong", "Keo", "Keosaychay", "Ketsana", "Khambai", "Khamla", "Khammouane", "Khampheng", "Khamphone", "Khamphouang", "Khamphouvanh", "Khampouang", "Khamseng", "Khanhthaly", "Khantaly", "Khanthalack", "Khathana", "Khet", "Kongseng", "Lae", "Lai", "Leokham", "Mai", "Malay", "Manivanh", "Meay", "Mek", "Mithsa", "Mok", "Moui", "Moune", "Noi", "Nouanchan", "Noy", "Oanna", "Oil", "Onechanh", "Ouanna", "Oudomphone", "Outhoumchanh", "Paneda", "Pashay", "Phaengsy", "Phayvanh", "Phethmany", "Phetpalansy", "Phetubon", "Phonemaly", "Phonesavanh", "Phonesvanh", "Phonethip", "Phonthong", "Phouang", "Phouthai", "Phouvieng", "Pinmany", "Pon", "Pothong", "Pouy", "Raty", "Sakkal", "Saysamore", "Sengchanh", "Sibounheuang", "Siphong", "Soudavanh", "Souknapha", "Souksakhone", "Soumly", "Souny", "Souphansa", "Sousada", "Souvadanh", "Souvary", "Souxada", "Sunisa", "Syphay", "Tai", "Thang", "Thea", "Thiemta", "Thongmanivong", "Thongvankham", "Tukata", "Vassady", "Vilayvanh", "Von"]>> <<set setup.laotianSlaveSurnames = ["Air", "Amnouayphone", "Asang", "Banavong", "Bannavong", "Banyavonay", "Bee", "Bouathang", "Boulom", "Bounkham", "Bounmaly", "Bounvilay", "Bounyavong", "Boupha", "Boutah", "Brown", "Bui", "Chaleunsouk", "Champassak", "Chan", "Chang", "Chanthala", "Chanthalangsy", "Chanthanasinh", "Chanthanouvong", "Chanthaphanh", "Chanthaphone", "Chantharath", "Chanthavong", "Chaudhary", "Chen", "Chommany", "Choummali", "Chounlamany", "Crafter", "Daoheuang", "Daravong", "Dedthanou", "Douang", "Douangdara", "Douangmala", "Douangphrachanh", "Douangsavanh", "Green", "Han", "Hoang", "Homsombath", "Hong", "Insisiengmay", "Insixiengmay", "Inthalangsy", "Inthara", "Inthasone", "Inthavong", "Inthavongsa", "Inthilath", "Inthirath", "Inthiravongsy", "Inthisane", "John", "Kamsai", "Kanlagna", "Kaysone", "Keo", "Keodara", "Keohavong", "Keomanivong", "Keomany", "Keopaseuth", "Keopraseuth", "Keosoupha", "Keovilay", "Keovongsa", "Kham", "Khamhoung", "Khammanivong", "Khammavong", "Khamouane", "Khamphilavong", "Khamphoui", "Khamphoumy", "Khamtai", "Khamvongsa", "Khamvongxay", "Khan", "Khanthavong", "Khattigna", "Kim", "Kingsada", "Kittikhoun", "Ko", "Komany", "Kongmany", "La", "Lao", "Lattanavong", "Le", "Lee", "Lim", "Lor", "LoVan", "Lovanh", "Love", "Luangkhot", "Luanglath", "Luangrath", "Ly", "Mahavong", "Maichantam", "Maisouk", "Mangala", "Manichanh", "Manivanh", "Manivong", "Many", "Moua", "Mounivong", "Na", "Namakoth", "Nang", "Nanthavong", "Nanthavongdouangsy", "Nanthavongdouansy", "Nguyen", "Norphansy", "Nouhak", "Noy", "Opart", "Osakan", "Oudom", "Ounephengsy", "Panyanouvong", "Park", "Pathammavong", "Phan", "Phanouvong", "Phanthavong", "Phasavath", "Phetpaseuth", "Phetsomphou", "Phettaphong", "Philavanh", "Philavong", "Phimmasone", "Pholsena", "Phommachack", "Phommachak", "Phommachan", "Phommachanh", "Phommarath", "Phommasanh", "Phommason", "Phommasone", "Phommavong", "Phommavongsa", "Phomphakdy", "Phomvilay", "Phonekeo", "Phonesavanh", "Phongsa", "Phongsavanh", "Phongsavath", "Phothirath", "Phothisane", "Phou", "Phouangsavanh", "Phouma", "Phoumi", "Phoummasouvanh", "Phoumvihone", "Phoun", "Phounsavath", "Phouthavong", "Phoutthavong", "Phovanh", "Phrommany", "Phuongphet", "Rasavong", "Rasphone", "Rattanasitthi", "Rattanavong", "Sadettan", "Saman", "Samonekeo", "Sananikone", "Sanoubane", "Savang", "Savanh", "Say", "Sayalath", "Sayarath", "Sayasane", "Sayaseng", "Sayasith", "Sayavong", "Saycocie", "Seng", "Sengchan", "Sengchanh", "Sengdala", "Sengdara", "Sengmany", "Sengsavang", "Sengsouvanh", "Sibounheuang", "Sihalath", "Sihapanya", "Siharath", "Sihavong", "Silaphet", "Silavong", "Simasing", "Simmalavong", "Simmavong", "Singh", "Singhalath", "Sipaseuth", "Sisane", "Sisavat", "Sisavath", "Sisombat", "Sisombath", "Sisongkham", "Sisouk", "Sisoulath", "Sisouphanh", "Sisouvong", "Sithimolada", "Sivanthong", "Sivilay", "Sivongxay", "Smith", "Sompadit", "Somphone", "Somsanith", "Somsanouk", "Somsavat", "Sone", "Sonephet", "Sonthavilaylack", "Sopha", "Souk", "Soukhathammavong", "Souksavath", "Souksavong", "Soulivong", "Soumpholphakdy", "Sourivong", "Southammavong", "Southavong", "Southivong", "Southiyano", "Souvanna", "Souvannarath", "Souvannavong", "Sun", "Syharath", "Sysavath", "Sysomvang", "Ta", "Tan", "Thammalong", "Thammavong", "Thammavongsa", "Thao", "Thepphavong", "Thetphasone", "Thipphavong", "Thirakul", "Thong", "Thongdara", "Thongloun", "Thongmanivong", "Thongphet", "Thongsing", "Tomseth", "Tong", "Tou", "Tran", "Vang", "Vannalet", "Vannavong", "Vilavong", "Vilay", "Vilaysack", "Vilaysane", "Vilaythong", "Vilayvanh", "Viravong", "Vong", "Vongdara", "Vongkhamchanh", "Vongkhamkeaw", "Vongkhamsao", "Vongphachanh", "Vongphakdy", "Vongphesy", "Vongphrachanh", "Vongprachanh", "Vongsa", "Vongsambath", "Vongsavath", "Vongsay", "Vongvilay", "Vongxay", "Vorachack", "Vorasane", "Voravong", "Vue", "Wang", "Wong", "Xaiyavong", "Xaphakdy", "Xayachack", "Xayalath", "Xayalith", "Xayarath", "Xayavong", "Xaysongkham", "Xayyavong", "Xiong", "Yang", "Zhang"]>> @@ -1092,7 +1092,7 @@ Then pick _namePool.random(), or display those names as possible choices, or do "Ghanan": setup.ghananSlaveNames, "Greek": setup.greekSlaveNames, "Greenlandic": setup.greenlandicSlaveNames, - "Grenadian": setup.grenadianSlaveNames, + "Grenadian": setup.grenadianSlaveNames, "Guatemalan": setup.guatemalanSlaveNames, "Guinean": setup.guineanSlaveNames, "Guyanese": setup.guyaneseSlaveNames, @@ -1304,7 +1304,7 @@ Then pick _namePool.random(), or display those names as possible choices, or do "Ghanan": setup.ghananSlaveSurnames, "Greek": setup.greekSlaveSurnames, "Greenlandic": setup.greenlandicSlaveSurnames, - "Grenadian": setup.grenadianSlaveSurnames, + "Grenadian": setup.grenadianSlaveSurnames, "Guatemalan": setup.guatemalanSlaveSurnames, "Guinean": setup.guineanSlaveSurnames, "Guyanese": setup.guyaneseSlaveSurnames, diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index d09c3248a3d5d10a3cc093bc50048423b9dc1a1f..31c4f57f7eaee625a27c82f1ddedbe4c400d3399 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -1299,6 +1299,9 @@ ocularImplant: 0, erectileImplant: 0 } >> +<<set $merchantFSWares = ["GenderRadicalistResearch", "TransformationFetishistResearch", "AssetExpansionistResearch", "SlimnessEnthusiastResearch", "YouthPreferentialistResearch", "HedonisticDecadenceResearch"]>> +<<set $merchantIllegalWares = []>> + <<if ndef $PC.hacking>> <<set $PC.hacking = 0>> <</if>> diff --git a/src/interaction/cyberConfig.tw b/src/interaction/cyberConfig.tw index 4033214b7ea0fcf13bf98bf317aa7adab944d0a7..3c12ee061d02e4ae2c173c50ccd897cef17c7af3 100644 --- a/src/interaction/cyberConfig.tw +++ b/src/interaction/cyberConfig.tw @@ -93,7 +93,7 @@ <<case 2>> <<set $temp = 0, $nextButton = "Continue", $nextLink = "cyberConfig">> - <<if $activeSlave.amp != 1>>You have $possessive lie down and<<else>>You<</if>> use speculum to keep $possessive eyes open while you disengage $possessive lenses remotely and swap them out with $possessive new $activeSlave.eyeColor lenses. + <<if $activeSlave.amp != 1>>You have $possessive lie down and<<else>>You<</if>> use a speculum to keep $possessive eyes open while you disengage $possessive lenses remotely and swap them out with $possessive new $activeSlave.eyeColor lenses. <<case 3>> <<set $temp = 0, $nextButton = "Continue", $nextLink = "cyberConfig">> <<if $activeSlave.eyes == 1>> @@ -105,11 +105,11 @@ <</if>> <<case 4>> <<set $temp = 0, $nextButton = "Continue", $nextLink = "cyberConfig">> - Attaching $possessive limbs is a simple procedure, simply push connector on each limb into the socket in $possessive implants until lock engages.<<if $activeSlave.PLimb == 2>> $pronounCap jumps a bit as limbs connect to $possessive nerves.<</if>> When you are done, $pronoun sits up and + Attaching $possessive limbs is a simple procedure, you simply push a connector on each limb into the socket in $possessive implants until the lock engages.<<if $activeSlave.PLimb == 2>> $pronounCap jumps a bit as limbs connect to $possessive nerves.<</if>> When you are done, $pronoun sits up and <<if $activeSlave.amp == -2>>experimentally engages the vibe function in $possessive fingers. <<elseif $activeSlave.amp == -3>>runs a hand over the smooth skin of $possessive new legs. <<elseif $activeSlave.amp == -4>>engages and disengages the blade in $possessive forearm. <<elseif $activeSlave.amp == -5>>experimentally flexes the muscles in $possessive artificial arm. <<else>>catches $possessive balance. <</if>> -<</switch>> +<</switch>> \ No newline at end of file diff --git a/src/interaction/researchLab.tw b/src/interaction/researchLab.tw index 8c7ac07f77d11a5b000eb32834ec7e37d34ec03e..0dbe006a9fba8db3f7119636b55f8f292ba8f5b8 100644 --- a/src/interaction/researchLab.tw +++ b/src/interaction/researchLab.tw @@ -233,5 +233,4 @@ <</if>>*/ -<</switch>> - +<</switch>> \ No newline at end of file diff --git a/src/js/clothingSelectionJS.tw b/src/js/clothingSelectionJS.tw index ee39543f5b90f8ee60f45ef2e248a26f4277d095..6c14bdffa8dbae22c827e3c14a6dcd63f43ab570 100644 --- a/src/js/clothingSelectionJS.tw +++ b/src/js/clothingSelectionJS.tw @@ -1,4 +1,4 @@ -:: clothingSelectionJS [script] +:: clothingSelectionJS [script] window.todaysOutfit = function(slave) { @@ -155,7 +155,7 @@ window.todaysOutfit = function(slave) { wardrobeAssignment.push({text: "and decides to call it casual friday and wear nothing but cutoffs and a t-shirt. Not like the cows will mind.", clothes: "cutoffs and a t-shirt"}); wardrobeAssignment.push({text: "and opts to don a cheerleader outfit to help cheer the cows on.", clothes: "a cheerleader outfit"}); wardrobeAssignment.push({text: "and dresses up as a succubus since she'll be drawing plenty of fluids.", clothes: "a succubus outfit"}); - wardrobeAssignment.push({text: "and slips into some spats and a tanktop since she feels a workout coming on.", clothes: "spats and a tank top"}); + wardrobeAssignment.push({text: "and slips into some spats and a tank top since she feels a workout coming on.", clothes: "spats and a tank top"}); if(isItemAccessible("Western clothing")) { wardrobeAssignment.push({text: "and wears an appropriate cowgirl outift. Her bare ass walking past is sure to amuse her charges.", clothes: "Western clothing"}); } @@ -286,7 +286,7 @@ window.todaysOutfit = function(slave) { wardrobeAssignment.push({text: "and chooses a pair of crotchless chaps so your other slaves don't have to waste time undressing her.", clothes: "Western clothing"}); } if(slave.fetish == "submissive") { - wardrobeAssignment.push({text: "and chooses to slip on a pair of spats and a tanktop in the hopes that she gets to be a violated schoolgirl.", clothes: "spats and a tank top"}); + wardrobeAssignment.push({text: "and chooses to slip on a pair of spats and a tank top in the hopes that she gets to be a violated schoolgirl.", clothes: "spats and a tank top"}); wardrobeAssignment.push({text: "and chooses to slip on a schoolgirl outfit in the hope that she gets held down and raped.", clothes: "a schoolgirl outfit"}); wardrobeAssignment.push({text: "and chooses to wear the sluttiest outfit available to make it clear what she wants done to her.", clothes: "a slutty outfit"}); } diff --git a/src/js/pregJS.tw b/src/js/pregJS.tw index cae3d56e2bcdde5c720e4615edc654978ced35cd..83990994dccc363c553d1c7ffa079fe8bddd8cde 100644 --- a/src/js/pregJS.tw +++ b/src/js/pregJS.tw @@ -139,4 +139,13 @@ window.setPregType = function(actor) { } } return ovum; +} + +window.getIncubatorReserved = function(slaves) { + var count = 0; + slaves.forEach(function(s){ + if (s.reservedChildren > 0) + count += s.reservedChildren; + }); + return count; } \ No newline at end of file diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw index 724825972bd832fe9ca3ccfe9eb75abf50a4d0a3..054ef25372ce1ea2db3577c22d923c59f6f697d5 100644 --- a/src/js/storyJS.tw +++ b/src/js/storyJS.tw @@ -975,6 +975,26 @@ window.nippleColor = function(slave) { } } +window.overpowerCheck = function(slave, PC) { + var strength; + + if(State.variables.arcologies[0].FSPhysicalIdealist != "unset") { + if(PC.title == 1) { + strength = 130; + } else { + strength = 100; + } + } else if(PC.title == 1) { + strength = 50; + } else { + strength = 30; + } + strength += (185-slave.height); + strength -= (PC.belly/1000); + + return strength; +} + window.jsAlert = function(obj) { alert(obj); diff --git a/src/npc/abort.tw b/src/npc/abort.tw index c92c485f7799d629e8302279afdfcfce2f8b7d86..42f9e0d2a88934b8de3b78bd4ba8a2caca906e39 100644 --- a/src/npc/abort.tw +++ b/src/npc/abort.tw @@ -12,7 +12,7 @@ The remote surgery makes aborting a pregnancy quick and efficient. $activeSlave. <<set $activeSlave.trust -= 10, $activeSlave.devotion -= 25>> <<elseif $activeSlave.devotion < -20>> @@.mediumorchid;afflicted by desperate, inconsolable sobbing@@. Even though she knew her baby was destined for a slave orphanage, it seems she cared for it. She is @@.gold;terrified of your power@@ over her body. - <<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>> + <<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>> <<elseif $activeSlave.devotion <= 20>> @@.mediumorchid;consumed by muted weeping and enduring sorrow@@. Even though she knew her baby was destined for a slave orphanage, it seems she cared for it. She is @@.gold;terrified of your power@@ over her body. <<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>> diff --git a/src/npc/acquisition.tw b/src/npc/acquisition.tw index da9f6d4d0b30e386e6364b21ffaacc2c2a7ad42b..9f572b966ae7d287334f6c8d1bda2e6b9393383a 100644 --- a/src/npc/acquisition.tw +++ b/src/npc/acquisition.tw @@ -611,16 +611,8 @@ The previous owner seems to have left in something of a hurry. <<set _slavesContributing = 0>> <<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].relation != 0>> - <<set $seed = 0>> - <<for $j = 0; $j < $slaves.length; $j++>> - <<if $slaves[$i].relationTarget == $slaves[$j].ID>> - <<if $slaves[$j].relationTarget == $slaves[$i].ID>> - <<set $seed = 1>> - <<break>> - <</if>> - <</if>> - <</for>> - <<if $seed == 0>> + <<set $seed = $slaves.findIndex(function(s) { return $slaves[$i].relationTarget == s.ID && s.relationTarget == $slaves[$i].ID; })>> + <<if $seed == -1>> <<set $slaves[$i].relation = 0>> <<set $slaves[$i].relationTarget = 0>> <<goto "Acquisition">> diff --git a/src/npc/agent/agentCompany.tw b/src/npc/agent/agentCompany.tw index e868f94cb8ae37577c4db787b57cdf9b664be008..61ce540009bf62bb27fb0176bc21776cce8888b2 100644 --- a/src/npc/agent/agentCompany.tw +++ b/src/npc/agent/agentCompany.tw @@ -1,6 +1,6 @@ :: Agent Company [nobr] -<<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Neighbor Interact", _SL = $slaves.length, _ID = $activeSlave.ID>> +<<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Neighbor Interact", _ID = $activeSlave.ID>> <<assignJob $activeSlave "live with your agent">> @@ -10,12 +10,12 @@ <</if>> <<if $activeSlave.rivalry > 0>> - <<for _i = 0; _i < _SL; _i++>> - <<if _ID == $slaves[_i].rivalryTarget>> - <<set $slaves[_i].rivalry = 0, $slaves[_i].rivalryTarget = 0>> - <<break>> - <</if>> - <</for>> + <<set _i = $slaves.findIndex(function(s) { return s.rivalryTarget == _ID; })>> + <<if _i != -1>> + <<set $slaves[_i].rivalry = 0, $slaves[_i].rivalryTarget = 0>> + <<else>> + @@.red;Error, activeSlave rival not found.@@ + <</if>> <<set $activeSlave.rivalry = 0, $activeSlave.rivalryTarget = 0>> <</if>> @@ -30,7 +30,7 @@ Working in $activeArcology.name's penthouse office, $subSlave.slaveName gets a v <br><br> Her question is answered when you bring $activeSlave.slaveName in close, putting her in $subSlave.slaveName's view. $subSlave.slaveName's $subSlave.eyeColor eyes fly open with pleased surprise, but before she can speak, $activeSlave.slaveName goes first. -<<if canTalk($activeSlave) == false>> +<<if !canTalk($activeSlave)>> Unable to speak herself, she simply makes a heart shape with her hands in view of the video call, and blows her <<if $activeSlave.relationship == 4>>lover<<else>>wife<</if>> a kiss. <<else>> <<Enunciate $activeSlave>> diff --git a/src/npc/agent/agentWorkaround.tw b/src/npc/agent/agentWorkaround.tw index 859280c64c0e5ef375b885799bdeb994737a0f33..53102f94d1f58c7ad703c759fe98f58b06d9244b 100644 --- a/src/npc/agent/agentWorkaround.tw +++ b/src/npc/agent/agentWorkaround.tw @@ -10,22 +10,22 @@ <</if>> <<if $slaves[$i].rivalry > 0>> - <<for _i = 0; _i < _SL; _i++>> - <<if _ID == $slaves[_i].rivalryTarget>> - <<set $slaves[_i].rivalry = 0, $slaves[_i].rivalryTarget = 0>> - <<break>> - <</if>> - <</for>> + <<set _i = $slaves.findIndex(function(s) { return s.rivalryTarget == _ID; })>> + <<if _i != -1>> + <<set $slaves[_i].rivalry = 0, $slaves[_i].rivalryTarget = 0>> + <<else>> + @@.red;Error, rival not found.@@ + <</if>> <<set $slaves[$i].rivalry = 0, $slaves[$i].rivalryTarget = 0>> <</if>> <<if $slaves[$i].relationship > 0 && $slaves[$i].relationship < 4>> - <<for _i = 0;_i < _SL;_i++>> - <<if _ID == $slaves[_i].relationshipTarget>> - <<set $slaves[_i].relationship = 0, $slaves[_i].relationshipTarget = 0>> - <<break>> - <</if>> - <</for>> + <<set _i = $slaves.findIndex(function(s) { return s.relationshipTarget == _ID; })>> + <<if _i != -1>> + <<set $slaves[_i].relationship = 0, $slaves[_i].relationshipTarget = 0>> + <<else>> + @@.red;Error, relationshipTarget not found.@@ + <</if>> <<set $slaves[$i].relationship = 0, $slaves[$i].relationshipTarget = 0>> <</if>> diff --git a/src/npc/descriptions/fAnus.tw b/src/npc/descriptions/fAnus.tw index 02ad7633c84a1086b15cc6fbe6010129936da488..7fef9578a70cf089d45c70b6d228f278455d1b29 100644 --- a/src/npc/descriptions/fAnus.tw +++ b/src/npc/descriptions/fAnus.tw @@ -57,7 +57,7 @@ Her anus is invitingly bleached, <<set $activeSlave.devotion += 4>> <<elseif ($activeSlave.devotion >= -20)>> She is clearly unhappy at the idea of taking a dick up her butt. She obeys orders anyway, and lies there wincing and moaning as you<<if ($PC.dick == 0)>> don a strap-on and<</if>> fuck her ass. You gently ease into her butthole and slowly accelerate your thrusting into her ass. However she still squeals in pain as you continue pounding. @@.lime;Her tight little ass has been broken in,@@ and she @@.gold;fears further anal pain.@@ - <<set $activeSlave.trust -= 5>> + <<set $activeSlave.trust -= 5>> <<else>> She is appalled at the idea of taking it up the ass<<if ($PC.dick == 0)>> and cries with fear as you don a strap-on<</if>>. She does anyway though, sobbing into the cushions<<if $activeSlave.amp != 1>> while you hold her arms behind her<</if>>. You force yourself into her butthole and continue thrusting your member into her ass. She sobs and cries with disgust while you pump into her rear. The painful anal rape @@.mediumorchid;decreases her devotion to you.@@ @@.lime;Her tight little ass has been broken in,@@ and she is @@.gold;terrified of further anal pain.@@ <<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>> @@ -95,7 +95,7 @@ Her anus is invitingly bleached, <</if>> <<elseif ($activeSlave.devotion <= 20) && ($activeSlave.vagina < 0)>> <<if ($activeSlave.amp != 1)>>You instruct her to present her anus<<if ($PC.dick == 0)>> as you don a strap-on<</if>>. She knows a sissy slave takes it up the butt, and lies on the couch next to your desk with her legs in the air, spreading her buttocks with her hands.<<else>>You tell her it's time for an assfuck. She's hesitant, but as an amputee can do nothing about it.<</if>> You take your time and fuck her <<if $seeRace == 1>>$activeSlave.race <</if>>butthole for a good long while<<if ($activeSlave.dickAccessory != "chastity")>><<if ($activeSlave.dick != 0)>>so her limp dick flops around<<elseif ($activeSlave.balls != 0)>> as her erect dick waves in the air<</if>><</if>>. This gives you enough time to stroke her until she gets aroused despite her discomfort with anal. She doesn't orgasm, but she's getting accustomed to her asshole as a sexual organ. -<<elseif $activeSlave.devotion < 10>> +<<elseif $activeSlave.devotion < 10>> <<if ($activeSlave.amp != 1)>>You instruct her to present her <<if $seeRace == 1>>$activeSlave.race <</if>>anus<<if ($PC.dick == 0)>> as you don a strap-on<</if>>. She hesitates but eventually lies on the couch next to your desk with her legs in the air, spreading her buttocks with her hands.<<else>>You tell her it's time for an assfuck. She's hesitant, but as an amputee can do nothing about it.<</if>> You take your time and fuck her butthole for a good long while. <<if ($activeSlave.anus == 1)>> Her ass is so tight that she winces with anal pain @@ -215,12 +215,7 @@ Her anus is invitingly bleached, <</if>> <<if passage() != "Slave Interact">> -<<set _SL = $slaves.length>> -<<for _i = 0; _i < _SL; _i++>> - <<if $slaves[_i].ID == $activeSlave.ID>> + <<set _i = $slaves.findIndex(function(s) { return s.ID == $activeSlave.ID; })>> <<set $slaves[_i] = $activeSlave>> - <<break>> - <</if>> -<</for>> <</if>> <<set _Anus = "">> diff --git a/src/npc/descriptions/fBoobs.tw b/src/npc/descriptions/fBoobs.tw index 1c9b2b4041a54c0bc74f66b8c59ea42c1c68d552..1b3bab671f5272a43a67f9e07e84ed02e838cf73 100644 --- a/src/npc/descriptions/fBoobs.tw +++ b/src/npc/descriptions/fBoobs.tw @@ -65,7 +65,7 @@ tits. <<elseif ($activeSlave.boobs >= 650)>> Her big breasts fill the area under your pregnancy nicely. You thrust between them and the underside of your middle, all the while rubbing your pussy into her face. With her licking, and all the flesh against your cock, it doesn't take long for you to soak her face and plant your seed deep into her cleavage. <<elseif ($activeSlave.boobs >= 300)>> - You have to feel around under your pregnancy to hold your cock against her tiny breasts. You thrust against them and your hand, while the other teases your middle, all the while rubbing your pussy against her face. Between her licking, and your own teasing, it doesn't take long for you to soak her face and splatter your seed across her front. + You have to feel around under your pregnancy to hold your cock against her tiny breasts. You thrust against them and your hand, while the other teases your middle, all the while rubbing your pussy against her face. Between her licking, and your own teasing, it doesn't take long for you to soak her face and splatter your seed across her front. <<else>> You have to lean forward and pin your cock against her flat chest with the underside of your own pregnancy to make any real channel to thrust into. You fondle your belly<<if $PC.boobs > 0>> and breasts<</if>>, all the while rubbing your pussy against her face. Between her licking, and your own teasing, it doesn't take long for you to soak her face and splatter your seed across your underbelly and her front. You turn around and have her lick you clean before pulling your gravid bulk off of her. <</if>> @@ -84,13 +84,13 @@ tits. <<elseif ($activeSlave.boobs >= 300)>> Her tiny breasts are completely covered by your pregnancy. You reach under yourself, grabbing what you can of her breasts and pushing them against your crotch. Between rubbing her breasts against your self and her tongue in your pussy, you quickly climax, thoroughly soaking her. <<else>> - Her flat chest is completely covered by your pregnancy. Reach under yourself, you feel around until you find her nipples. You tease her flat chest until you're at you limit, thoroughly soaking her, before dimsounting and returning to your desk. + Her flat chest is completely covered by your pregnancy. Reach under yourself, you feel around until you find her nipples. You tease her flat chest until you're at you limit, thoroughly soaking her, before dismounting and returning to your desk. <</if>> <</if>> <<elseif ($activeSlave.amp == 1)>> <<if $PC.dick == 1>> - Her limbless <<if $seeRace == 1>>$activeSlave.race <</if>>torso makes her a unique appliance for mammary intercourse. You lay her down on the ground on her back, lube her cleavage, and straddle her torso. With your cock between her breasts, you <<if ($activeSlave.boobs gt 650)>>squash her tits together to form a nice lubricated channel,<<else>>hold your cock in place,<</if>> and ride back and forth on her.<<if $PC.vagina == 1>> Your pussylips rub deliciously across her sternum.<</if>> She has some trouble breathing under the assault, but she manages. And for the finale, she's totally unable to avoid a perfect cumshot. - <<elseif $PC.boobs isnot 0>> + Her limbless <<if $seeRace == 1>>$activeSlave.race <</if>>torso makes her a unique appliance for mammary intercourse. You lay her down on the ground on her back, lube her cleavage, and straddle her torso. With your cock between her breasts, you <<if ($activeSlave.boobs >= 650)>>squash her tits together to form a nice lubricated channel,<<else>>hold your cock in place,<</if>> and ride back and forth on her.<<if $PC.vagina == 1>> Your pussylips rub deliciously across her sternum.<</if>> She has some trouble breathing under the assault, but she manages. And for the finale, she's totally unable to avoid a perfect cumshot. + <<elseif $PC.boobs != 0>> You set her limbless torso upright on your lap, facing you, so that your breasts and hers are resting heavily against one another. She turns her head to avoid getting splashed in the eyes as you add a generous coating of oil to the heaving breastflesh. You reach around to grab her by the hips and slide her up and down, giving you both a wonderful mammary oil massage. <<else>> You set her limbless torso on the floor, and tease her for a while until her nipples are rock hard. This done, you kneel down on her with each of your legs aside her torso, and hump your pussy back and forth on the stiff nub of one nipple. She lies there, unable to do anything but comply, squirming with the stimulation. @@ -98,7 +98,7 @@ tits. <<elseif tooBigBelly($activeSlave)>> <<if $PC.dick == 1>> - Her excessively large belly makes her a unique appliance for mammary intercourse. You lay her down on the ground on her back, lube her cleavage, and gingerly fit yourself between her belly and her breasts. With your cock between her breasts, you <<if ($activeSlave.boobs > 650)>>squash her tits together to form a nice lubricated channel,<<else>>hold your cock in place,<</if>> and ride back and forth on her. You blast her in the face with your cum in no time<<if $PC.vagina == 1>>, leaving your pussyjuice on her belly where you rubbed against her<</if>>. + Her excessively large belly makes her a unique appliance for mammary intercourse. You lay her down on the ground on her back, lube her cleavage, and gingerly fit yourself between her belly and her breasts. With your cock between her breasts, you <<if ($activeSlave.boobs >= 650)>>squash her tits together to form a nice lubricated channel,<<else>>hold your cock in place,<</if>> and ride back and forth on her. You blast her in the face with your cum in no time<<if $PC.vagina == 1>>, leaving your pussyjuice on her belly where you rubbed against her<</if>>. <<elseif $PC.boobs != 0>> You lie down on top of her, face to face, forced high into the air by her excessively large belly, so that your breasts press into her<<if ($activeSlave.boobs >= 20000)>> colossal tits.<<elseif ($activeSlave.boobs >= 10000)>> massive tits.<<elseif ($activeSlave.boobs >= 5000)>> monster tits.<<elseif ($activeSlave.boobs >= 1000)>> huge tits.<<elseif ($activeSlave.boobsImplant > 250)>> fake tits.<<elseif ($activeSlave.boobs >= 650)>> big tits.<<elseif ($activeSlave.boobs >= 300)>> small tits.<<else>> flat chest.<</if>> Scooting around to stimulate your nipples against her warm breastflesh, you kiss the slave while pushing a hand down between you to schlick yourself against her. <<else>> @@ -114,7 +114,7 @@ tits. <</if>> <<elseif tooBigButt($activeSlave)>> <<if $PC.dick == 1>> - Her excessive butt makes her a unique appliance for mammary intercourse. You lay her down on the ground on her back, her butt hoisting her crotch high above her head, lube her cleavage, and straddle her torso. With your cock between her breasts, you <<if ($activeSlave.boobs > 650)>>squash her tits together to form a nice lubricated channel,<<else>>hold your cock in place,<</if>> and ride back and forth on her<<if $PC.vagina == 1>>, leaving your pussyjuice on her chest where you rubbed against her<</if>>. She has some trouble breathing under the assault, but she manages. And for the finale, she's totally unable to avoid a perfect cumshot. + Her excessive butt makes her a unique appliance for mammary intercourse. You lay her down on the ground on her back, her butt hoisting her crotch high above her head, lube her cleavage, and straddle her torso. With your cock between her breasts, you <<if ($activeSlave.boobs >= 650)>>squash her tits together to form a nice lubricated channel,<<else>>hold your cock in place,<</if>> and ride back and forth on her<<if $PC.vagina == 1>>, leaving your pussyjuice on her chest where you rubbed against her<</if>>. She has some trouble breathing under the assault, but she manages. And for the finale, she's totally unable to avoid a perfect cumshot. <<elseif $PC.boobs != 0>> You set her upright on your lap, facing you, so that your breasts and hers are resting heavily against one another and her massive ass covers your lap. She turns her head to avoid getting splashed in the eyes as you add a generous coating of oil to the combined breastflesh. You reach around to grab her luxurious ass and jiggle her up and down, giving you both a wonderful mammary oil massage. <<else>> @@ -128,7 +128,7 @@ tits. She comes over eagerly, with hunger in her eyes. She gives you a titjob with her lubricated cleavage while you sit at your desk. As a cumslut she's almost desperate to get your cum into her <<if $seeRace == 1>>$activeSlave.race <</if>>mouth and <<if canAchieveErection($activeSlave)>>jacks herself off<<else>>rubs her sadly limp member<</if>> in anticipation. When you finish, she sits back with an ecstatic look on her face and lets your cum rest in her mouth as she climaxes into her hand. She pours her own cum from her hand into her mouth so it can mingle with yours. <<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($PC.dick == 1)>> She comes over eagerly, with hunger in her eyes. She gives you a titjob with her lubricated cleavage while you sit at your desk. As a cumslut she's almost desperate to get your cum into her <<if $seeRace == 1>>$activeSlave.race <</if>>mouth and rubs herself in anticipation. When you finish, she <<if $PC.vagina == 1>>quickly swallows and then runs her hot tongue down to your wet pussy, eagerly licking your juices<<else>>sits back with an ecstatic look on her face and lets your cum rest in her mouth as she climaxes<</if>>. -<<elseif $activeSlave.devotion < -20>> +<<elseif $activeSlave.devotion < -20>> She tries to refuse you, so you throw her down on the couch next to your desk and <<if $PC.dick == 1>> squeeze lubricant between her $activeSlave.skin breasts. You straddle her torso, hold her boobs together, and fuck her cleavage<<if $PC.vagina == 1>>, grinding your hips down against her to stimulate your pussy<</if>>. Your cum splashes her crying face. @@ -141,16 +141,16 @@ tits. She lies on the couch next to your <<if $PC.dick == 1>> desk and rubs lube over her $activeSlave.skin chest so you can fuck her tits. You straddle her torso, hold her boobs together, and fuck her cleavage. As you do, the pressure of your grip causes a thin rivulet of milk to run from each of her nipples. Your cum covers her reluctant face; between your semen<<if $PC.vagina == 1>>, the pussyjuice you left on her chest,<</if>> and her milk she's quite a mess. - <<elseif $PC.boobs !== 0>> + <<elseif $PC.boobs != 0>> desk and rubs lube over her $activeSlave.skin breasts. Then, you lie down atop her with your breasts meshing with hers and begin to slide up and down, titillating your nipples wonderfully. She cannot ignore the slippery stimulation her nipples are receiving, and you find her mouth quite willing to receive your insistent tongue. She begins to leak milk, adding her cream to the lube between your breasts, and by the time you're done there's quite a mess. <<else>> desk, and you've straddled her face before she can do anything more. You begin to grope her breasts and pinch her nipples to hardness as she eats you out, your ministrations producing prompt jets of creamy milk, straight up into the air. You milk her without mercy, shooting some of the stronger streams into your mouth as you ride her, leaving her to massage her breasts gingerly as you get off her face. <</if>> -<<elseif $activeSlave.devotion <= 20>> +<<elseif $activeSlave.devotion <= 20>> She lies on the couch next to your <<if $PC.dick == 1>> desk and rubs lube over her <<if $seeRace == 1>>$activeSlave.race <</if>>chest so you can fuck her $activeSlave.skin tits. You straddle her torso, hold her boobs together, and fuck her cleavage. Your cum covers her reluctant face<<if $PC.vagina == 1>>, and you hike yourself up a little higher to grind your pussy against her mouth<</if>>. - <<elseif $PC.boobs !== 0>> + <<elseif $PC.boobs != 0>> desk and rubs lube over her $activeSlave.skin breasts. Then, you lie down atop her with your breasts meshing with hers and begin to slide up and down, titillating your nipples wonderfully. She cannot ignore the slippery stimulation her nipples are receiving, and you find her mouth quite willing to receive your insistent tongue. <<else>> desk, and you've straddled her face before she can do anything more. You begin to grope her breasts and pinch her nipples to hardness as she eats you out, your ministrations producing moans that feel quite nice against your clit. You maul her boobs without mercy as you reach your climax, leaving her to massage her breasts gingerly as you get off her. @@ -160,7 +160,7 @@ tits. <<else>> <<if $PC.dick == 1>> She massages and toys with her chest for your benefit, languidly rubbing lubricant over not only her cleavage but her entire chest, making sure every inch of her $activeSlave.skin breasts are nice and shiny. She gives you a titjob with her lubricated cleavage while you sit at your desk<<if $PC.vagina == 1>>, doing her best to run her hard nipples between your pussylips whenever she can<</if>>. Your cum covers her <<if $seeRace == 1>>$activeSlave.race <</if>>face, and she carefully licks it all off while continuing to play with her erect nipples. - <<elseif $PC.boobs !== 0>> + <<elseif $PC.boobs != 0>> She rubs lube over her $activeSlave.skin breasts, flirting with you and sticking out her chest, before lying down on the couch. You lie down atop her with your breasts meshing with hers and begin to slide up and down, titillating your nipples wonderfully. You find her mouth quite willing to receive your insistent tongue, and while you make out, she slips a hand down between your legs to give you a handjob, too. <<else>> She flirts with you and sticks out her chest before lying down on the couch. You've straddled her face before she can do anything more, and she begins to eat you out with enthusiasm. You begin to grope her breasts and pinch her nipples to hardness as she gives you oral, your ministrations producing moans that feel quite nice against your clit. You maul her boobs without mercy as you reach your climax, but she loves it all. @@ -213,10 +213,6 @@ tits. <</if>> <<if passage() !== "Slave Interact">> -<<for _i = 0; _i < $slaves.length; _i++>> - <<if $slaves[_i].ID == $activeSlave.ID>> + <<set _i = $slaves.findIndex(function(s) { return s.ID == $activeSlave.ID; })>> <<set $slaves[_i] = $activeSlave>> - <<break>> - <</if>> -<</for>> <</if>> diff --git a/src/npc/descriptions/fButt.tw b/src/npc/descriptions/fButt.tw index 0065c85373112c7d7b4eeefc8ec611e152dc3b3b..aca637eecc049b37b0ada19c2163c82dfa42a9d9 100644 --- a/src/npc/descriptions/fButt.tw +++ b/src/npc/descriptions/fButt.tw @@ -99,7 +99,7 @@ Her anus is invitingly bleached, <<AnalVCheck>> <<elseif $activeSlave.devotion < -20>> <<if ($PC.dick == 0)>>You don a cruelly large strap-on, and you do it so she can see it. <</if>>She tries to refuse you, so you throw her across the back of the couch next to your desk with her <<if $seeRace == 1>>$activeSlave.race <</if>>ass in the air. You finger her anus <<if ($activeSlave.vagina != -1)>>while fucking her pussy<<elseif ($activeSlave.amp != 1)>>while frotting her thighs<</if>> for a bit and then switch to her now-ready anus. She sobs as you penetrate her rectum. - <<if ($activeSlave.dick != 0) and canAchieveErection($activeSlave)>> + <<if ($activeSlave.dick != 0) && canAchieveErection($activeSlave)>> <<if $activeSlave.prostate == 0>> She lacks a prostate, denying her any real pleasure. Her dick stays flaccid as you rape her. <<elseif ($activeSlave.dickAccessory == "chastity")>> @@ -182,7 +182,7 @@ Her anus is invitingly bleached, <</if>> <<elseif (random(1,100) > (110-$activeSlave.devotion))>> <<if ($activeSlave.fetish == "none") && ($activeSlave.sexualFlaw !== "hates penetration")>> - Orgasming to your use of her fuckhole @@.lightcoral;has her eager for more buttsex.@@ + Orgasming to your use of her fuckhole @@.lightcoral;has her eager for more buttsex.@@ <<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1>> <</if>> <</if>> diff --git a/src/npc/descriptions/fFuckdollWidgets.tw b/src/npc/descriptions/fFuckdollWidgets.tw index 319a34038fa6cb4a03593584d92e75bb8858bf7f..169364f74053cee1ccc66fc137ffb8643cd736fa 100644 --- a/src/npc/descriptions/fFuckdollWidgets.tw +++ b/src/npc/descriptions/fFuckdollWidgets.tw @@ -10,7 +10,7 @@ You decide to use the Fuckdoll's <<if $activeSlave.lips > 95>>facepussy<<else>>f <<elseif $activeSlave.fuckdoll <= 80>> It can follow intermediate commands, so you order it into a position for use of its face hole. It obediently <<if $activeSlave.amp == 0>>gets to its knees<<else>>cranes its neck up<</if>> and sticks its tongue out as far as it will go, wiggling it invitingly. You straddle its face. <<else>> - It can follow advanced commands, so you order it into a position for use of its face hole. It instantly <<if $activeSlave.amp == 0>><<if $PC.dick == 1>>bends at the waist and turns its head upward, placing its throat horizontally and at waist height.<<else>>gets to its knees and turns its head upward at just the right angle for a pussy to ride its face hole.<</if>><<else>>cranes its neck up and sticks its tongue out as far as it will go, wiggling it invitingly.<</if>> You straddle its face. + It can follow advanced commands, so you order it into a position for use of its face hole. It instantly <<if $activeSlave.amp == 0>><<if $PC.dick == 1>>bends at the waist and turns its head upward, placing its throat horizontally and at waist height.<<else>>gets to its knees and turns its head upward at just the right angle for a pussy to ride its face hole.<</if>><<else>>cranes its neck up and sticks its tongue out as far as it will go, wiggling it invitingly.<</if>> You straddle its face. <</if>> <<if $activeSlave.fuckdoll <= 20>> It's not fully used to being surprised with face rape, so it struggles, and its difficulty breathing <<if $PC.dick == 1>>makes its throat spasm around your dickhead<<else>>feels lovely on your cunt<</if>>. @@ -32,13 +32,8 @@ You climax, <<if $PC.dick == 1>>blowing your load down its throat<<else>>giving <</if>> <<if passage() != "Slave Interact">> -<<set _SL = $slaves.length>> -<<for _i = 0; _i < _SL; _i++>> - <<if $slaves[_i].ID == $activeSlave.ID>> + <<set _i = $slaves.findIndex(function(s) { return s.ID == $activeSlave.ID; })>> <<set $slaves[_i] = $activeSlave>> - <<break>> - <</if>> -<</for>> <</if>> <</widget>> @@ -94,13 +89,8 @@ You climax<<if $PC.dick == 1>>, your cum shooting forward to splash against its <</if>> <<if passage() != "Slave Interact">> -<<set _SL = $slaves.length>> -<<for _i = 0; _i < _SL; _i++>> - <<if $slaves[_i].ID == $activeSlave.ID>> + <<set _i = $slaves.findIndex(function(s) { return s.ID == $activeSlave.ID; })>> <<set $slaves[_i] = $activeSlave>> - <<break>> - <</if>> -<</for>> <</if>> <</widget>> @@ -156,13 +146,8 @@ You climax<<if $PC.dick == 1>>, filling its rectum with your cum,<</if>> and ret <</if>> <<if passage() != "Slave Interact">> -<<set _SL = $slaves.length>> -<<for _i = 0; _i < _SL; _i++>> - <<if $slaves[_i].ID == $activeSlave.ID>> + <<set _i = $slaves.findIndex(function(s) { return s.ID == $activeSlave.ID; })>> <<set $slaves[_i] = $activeSlave>> - <<break>> - <</if>> -<</for>> <</if>> <</widget>> \ No newline at end of file diff --git a/src/npc/descriptions/fLips.tw b/src/npc/descriptions/fLips.tw index 8c42ffe3ff6374185d71ab72020e5ec7410ca4ac..5a8c5d1d63b81e8c1b4545e9e6b3678434f529d2 100644 --- a/src/npc/descriptions/fLips.tw +++ b/src/npc/descriptions/fLips.tw @@ -133,7 +133,7 @@ You tell $activeSlave.slaveName to <<else>> seize her and throw her onto the couch face up, and then kneel on her with your legs on either side of her crying body, so your pussylips are hard against her <<if $seeRace == 1>>$activeSlave.race <</if>>mouth. She desperately eats you out, trying to get you off as fast as possible so she can get a bit more air, but you grind down without mercy, taking your pleasure. <</if>> -<<elseif $activeSlave.devotion <= 20>> +<<elseif $activeSlave.devotion <= 20>> She comes over reluctantly and begins to <<if ($PC.dick != 0)>> give you a blowjob. Deciding that she isn't showing the necessary enthusiasm, you hold her head and fuck her <<if $seeRace == 1>>$activeSlave.race <</if>>face instead<<if $PC.vagina == 1>>, occasionally jerking your dick free to shove your pussy against her face instead<</if>>. She does her best to follow your motions but still splutters and gags. You pull free to cum across her $activeSlave.skin face and hair. diff --git a/src/npc/fAbuse.tw b/src/npc/fAbuse.tw index c182e7ec784fb81cc10afbf0bd466105648a6856..7de9d2184b979e61c6358557f7452be31a6dcab4 100644 --- a/src/npc/fAbuse.tw +++ b/src/npc/fAbuse.tw @@ -12,9 +12,9 @@ <<elseif ($activeSlave.muscles > 30) && ($activeSlave.combatSkill == 0)>> Your bodyguard may look strong and powerful, you know she can't really handle her weapon. You order her to spar with you, and you use her own muscles against her, winning easily. Afterwards, you take the pretext of punishing her to satisfy your urges. <<elseif ($activeSlave.muscles > 5) && ($activeSlave.combatSkill != 0)>> - Your bodyguard stands at your side. She is definetely a force to be reckoned with. You know you'd have a hard time besting her, and do not wish to get hurt, so you'll just inform her she'll be undertaking some particular training. + Your bodyguard stands at your side. She is definitely a force to be reckoned with. You know you'd have a hard time besting her, and do not wish to get hurt, so you'll just inform her she'll be undertaking some particular training. <<elseif ($activeSlave.muscles > 5) && ($activeSlave.combatSkill == 0)>> - Your bodyguard may look fit, you know she can't really handle her weapon. You order her to spar with you; while she may be quick, she mostly just flails her weapon around allowing you an easy win . Afterwards, you take the pretext of punishing her to satisfy your urges. + Your bodyguard may look fit, you know she can't really handle her weapon. You order her to spar with you; while she may be quick, she mostly just flails her weapon around allowing you an easy win. Afterwards, you take the pretext of punishing her to satisfy your urges. <</if>> <</if>> @@ -82,87 +82,88 @@ <<if ($activeSlave.clothes !== "no clothing")>> You tell her she has ten seconds to get naked. <</if>> - <<if ($activeSlave.clothes == "uncomfortable straps")>> + <<switch $activeSlave.clothes>> + <<case "uncomfortable straps">> In her haste to get out of her straps she trips and falls flat. - <<elseif ($activeSlave.clothes == "clubslut netting")>> + <<case "clubslut netting">> In her haste to get out of her slutty netting she trips and falls flat. - <<elseif ($activeSlave.clothes == "shibari ropes")>> + <<case "shibari ropes">> In her haste to get out of her shibari ropes she only manages to get tangled and fall over. - <<elseif ($activeSlave.clothes == "restrictive latex") || ($activeSlave.clothes == "a latex catsuit")>> + <<case "restrictive latex" "a latex catsuit">> In her haste to get out of her clinging latex she trips and falls flat in a tangle of latex and trembling flesh. - <<elseif ($activeSlave.clothes == "a military uniform")>> + <<case "a military uniform">> She's desperately torn between hurry to avoid punishment and fear she'll damage her shirt. - <<elseif ($activeSlave.clothes == "a nice nurse outfit")>> + <<case "a nice nurse outfit">> She quickly tears off her loose scrubs. - <<elseif ($activeSlave.clothes == "a mini dress")>> + <<case "a mini dress">> She struggles to take off her tight mini dress. - <<elseif ($activeSlave.clothes == "attractive lingerie")>> + <<case "attractive lingerie">> She almost tears her delicate lingerie in her haste to avoid punishment. - <<elseif ($activeSlave.clothes == "a succubus outfit")>> + <<case "a succubus outfit">> She struggles with her leather corset. - <<elseif ($activeSlave.clothes == "spats and a tank top")>> + <<case "spats and a tank top">> She hastily slips her top off and struggles to get out of her clinging spats. - <<elseif ($activeSlave.clothes == "attractive lingerie for a pregnant woman")>> + <<case "attractive lingerie for a pregnant woman">> She quickly sheds her vest and tight bra before panicking and resorting to ripping her silk panties off. - <<elseif ($activeSlave.clothes == "a maternity dress")>> + <<case "a maternity dress">> She hastily pulls her dress down revealing her body. - <<elseif ($activeSlave.clothes == "stretch pants and a crop-top")>> + <<case "stretch pants and a crop-top">> She hastily pulls her crop-top over her head and struggles to remove her stretch pants only to get tangled and fall over. - <<elseif ($activeSlave.clothes == "a cheerleader outfit")>> + <<case "a cheerleader outfit">> She yanks her cheerleader skirt down and pulls her slutty top off. - <<elseif ($activeSlave.clothes == "a string bikini")>> + <<case "a string bikini">> She gives herself a nasty pinch between the legs in her haste to get out of her string bottom. - <<elseif ($activeSlave.clothes == "a scalemail bikini")>> + <<case "a scalemail bikini">> She gives herself a tiny cut on her breast in her haste to get out of her scalemail top. - <<elseif ($activeSlave.clothes == "a fallen nuns habit")>> + <<case "a fallen nuns habit">> She tugs desperately at the laces of her tight latex nun getup. - <<elseif ($activeSlave.clothes == "a chattel habit")>> + <<case "a chattel habit">> She shucks her habit off easily, since it was designed to be removed quickly. - <<elseif ($activeSlave.clothes == "a penitent nuns habit")>> + <<case "a penitent nuns habit">> She pulls her coarse habit over her head, revealing her chafed flesh. - <<elseif ($activeSlave.clothes == "cutoffs and a t-shirt")>> + <<case "cutoffs and a t-shirt">> She shimmies out of her cutoffs and whips her t-shirt over her head. - <<elseif ($activeSlave.clothes == "a slutty nurse outfit")>> + <<case "a slutty nurse outfit">> Getting out of her tight nurse getup in that amount of time is impossible, but she tries anyway. - <<elseif ($activeSlave.clothes == "a schoolgirl outfit")>> + <<case "a schoolgirl outfit">> Her schoolgirl outfit is easily stripped off: she pulls down her skimpy skirt and tears off her little blouse, and she's nude. - <<elseif ($activeSlave.clothes == "a kimono")>> + <<case "a kimono">> Getting out of her kimono in that amount of time is flagrantly impossible, but she tries anyway. - <<elseif ($activeSlave.clothes == "a hijab and abaya")>> + <<case "a hijab and abaya">> Because she's nude under her hijab and abaya, she simply lifts it over her head. - <<elseif ($activeSlave.clothes == "battledress")>> + <<case "battledress">> She strips her tank top off in one motion, unfastens her belt, and pulls down her pants, though her boots defeat her and stay on. - <<elseif ($activeSlave.clothes == "a slutty outfit")>> + <<case "a slutty outfit">> She hurriedly strips herself out of her carefully chosen outfit. - <<elseif ($activeSlave.clothes == "a slave gown")>> + <<case "a slave gown">> She's desperately torn between hurry to avoid punishment and fear she'll rip her delicate gown. - <<elseif ($activeSlave.clothes == "a halter top dress")>> + <<case "a halter top dress">> She's desperately torn between hurry to avoid punishment and fear she'll rip her delicate dress. - <<elseif ($activeSlave.clothes == "a ball gown")>> + <<case "a ball gown">> She's desperately torn between hurry to avoid punishment and fear she'll rip her delicate silken ball gown. - <<elseif ($activeSlave.clothes == "nice business attire")>> + <<case "nice business attire">> She's desperately torn between hurry to avoid punishment and fear she'll damage her blouse. - <<elseif ($activeSlave.clothes == "slutty business attire")>> + <<case "slutty business attire">> She's desperately torn between hurry to avoid punishment and fear she'll tear her suit in her haste. - <<elseif ($activeSlave.clothes == "a nice maid outfit")>> + <<case "a nice maid outfit">> She pulls her dress over her head and quickly undoes the buttons of her blouse, one after the other. - <<elseif ($activeSlave.clothes == "a slutty maid outfit")>> + <<case "a slutty maid outfit">> Her short dress comes off easily, but she fumbles with the buttons on her tight blouse. - <<elseif ($activeSlave.clothes == "a comfortable bodysuit")>> + <<case "a comfortable bodysuit">> She's desperately torn between hurry to avoid punishment and fear she'll stretch out her bodysuit. - <<elseif ($activeSlave.clothes == "a leotard")>> + <<case "a leotard">> Her leotard is tight enough that she has to struggle mightily to get it off that quickly. - <<elseif ($activeSlave.clothes == "a bunny outfit")>> + <<case "a bunny outfit">> She's desperately torn between hurry to avoid punishment and fear she'll put runs in her hose. - <<elseif ($activeSlave.clothes == "harem gauze")>> + <<case "harem gauze">> She's desperately torn between hurry to avoid punishment and fear she'll tear her flimsy gauze. - <<elseif ($activeSlave.clothes == "slutty jewelry")>> + <<case "slutty jewelry">> She hurriedly strips fine jewelry from her neck, wrists, and ankles. - <<elseif ($activeSlave.bellyAccessory == "a corset")>> + <<case "a corset">> Her fingers fumble desperately with the straps of her corset. - <<elseif ($activeSlave.bellyAccessory == "an extreme corset")>> + <<case "an extreme corset">> Her fingers fumble desperately with the bindings of her corset, and she hyperventilates within its embrace as she works. - <</if>> + <</switch>> <</if>> <<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> @@ -300,7 +301,7 @@ Even though she's in a somewhat bad shape, she still jumps back to her feet and <<if ($activeSlave.ID == $Bodyguard.ID)>> <<if ($activeSlave.muscles <= 5) && ($activeSlave.combatSkill == 0)>> - Your bodyguard accepts this as a punishment for her uselesness. + Your bodyguard accepts this as a punishment for her uselessness. <<elseif ($activeSlave.muscles <= 5) && ($activeSlave.combatSkill != 0)>> Your bodyguard accepts this as a punishment for her lack of muscles <<elseif ($activeSlave.muscles > 30) && ($activeSlave.combatSkill == 0)>> diff --git a/src/npc/fFeelings.tw b/src/npc/fFeelings.tw index 2ec5faaf907d9503df113154f41697fae2cbbc05..15c37febf1fd5662ffb7c0f4f5e3e3be7baf7c6e 100644 --- a/src/npc/fFeelings.tw +++ b/src/npc/fFeelings.tw @@ -274,7 +274,7 @@ My favorite part of my body i<<s>> <<if _lisping == 0>> <<set _Amp = "rub myself against stuff,">> <<else>> - <<set _Amp = "rub mythelf against thtuff,">> + <<set _Amp = "rub mythelf againtht thtuff,">> <</if>> <</if>> <<if ($activeSlave.releaseRules == "permissive") || $activeSlave.releaseRules == "masturbation">> @@ -374,7 +374,7 @@ My favorite part of my body i<<s>> <<case "buttslut">> I'm <<s>>o horny, <<Master>>. <<if (["plug", "long plug"].includes($activeSlave.buttplug) && $activeSlave.anus > 2) >> - I wear the buttplug you gave me, but it i<<s>> <<s>>o <<s>>mall... It remind<<s>> me of being fucked in the a<<ss>>, but I can bareley feel it. It drive<<s>> me crazy. + I wear the buttplug you gave me, but it i<<s>> <<s>>o <<s>>mall... It remind<<s>> me of being fucked in the a<<ss>>, but I can barely feel it. It drive<<s>> me crazy. <<elseif (["plug", "long plug"].includes($activeSlave.buttplug) && $activeSlave.anus < 3) || (["large plug", "long, large plug"].includes($activeSlave.buttplug) && $activeSlave.anus == 3) || (["huge plug", "long, huge plug"].includes($activeSlave.buttplug) && $activeSlave.anus >= 4) >> Thank you for the buttplug. It i<<s>> really fun to have my a<<ss>> filled all day long. <<elseif (["large plug", "long, large plug"].includes($activeSlave.buttplug) && $activeSlave.anus < 3) || (["huge plug", "long, huge plug"].includes($activeSlave.buttplug) && $activeSlave.anus < 4) >> @@ -435,7 +435,7 @@ My favorite part of my body i<<s>> <<if $PC.dick == 1>>I love your cock, <<Master>>," she <<say>>s eagerly. "I love it in my backdoor.<</if>> <<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60)>> <<if $PC.belly >= 10000>> - You, uh." She looks down, hesitating. "Your belly i<<s>> <<s>>o big and wonderful, I ju<<s>> want to feel it, + You, uh." She looks down, hesitating. "Your belly i<<s>> <<s>>o big and wonderful, I ju<<s>>t want to feel it, <<elseif $PC.belly >= 5000>> You, uh." She looks down, hesitating. "You have a really lovely belly, <<elseif $PC.boobs == 1>> @@ -602,9 +602,9 @@ My favorite part of my body i<<s>> <</if>> <<if $activeSlave.bellyFluid >= 10000>> I feel really full, can I let the _fluid out now? - <<elseif $activeSlave.bellyFluid >= 5000>> + <<elseif $activeSlave.bellyFluid >= 5000>> I feel <<s>>o full, can I let the _fluid out now? - <<elseif $activeSlave.bellyFluid >= 2000>> + <<elseif $activeSlave.bellyFluid >= 2000>> I feel <<s>>o uncomfortable, can I let the _fluid out now? <</if>> <</if>> @@ -952,7 +952,7 @@ My favorite part of my body i<<s>> <<set $partner = $slaves.findIndex(function(s) { return s.ID == $activeSlave.relationshipTarget; })>> <<set _partnerName = $slaves[$partner].slaveName>> <<if _lisping == 1>> - <<set _partnerName = nameReplace(_partnerName)>> + <<set _partnerName = nameReplace(_partnerName)>> <</if>> <<if $activeSlave.relationship <= 2>> I really like <<s>>eeing _partnerName every day, she'<<s>> a good friend." She blushes. "<<Sh>>e'<<s>> kind of hot, too. diff --git a/src/npc/fKiss.tw b/src/npc/fKiss.tw index 3a2bd01ab3691c0cf77c74386e37bcec454ff16a..f86cea9e17bba2687304b7a40cefa69ab113e251 100644 --- a/src/npc/fKiss.tw +++ b/src/npc/fKiss.tw @@ -68,7 +68,7 @@ You tell $activeSlave.slaveName to upon her tear-streaked face. She finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> she's forcibly married to horrifying, and quickly turns her face away. <</if>> <<else>> - She complies obediantly. Once she's close, you take a moment to gaze deeply + She complies obediently. Once she's close, you take a moment to gaze deeply <<if canSee($activeSlave)>> into her $activeSlave.eyeColor eyes. She finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> she's married to reassuring, and looks down with a slight smile, running her eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>. <<else>> diff --git a/src/npc/fPCImpreg.tw b/src/npc/fPCImpreg.tw index d535f36e62ae618fbbd594af44e1258f64f9bc29..c704c3845ce43553114eb26e5e227bd2abd07603 100644 --- a/src/npc/fPCImpreg.tw +++ b/src/npc/fPCImpreg.tw @@ -13,7 +13,7 @@ You call her over so you can <<if $activeSlave.mpreg == 1>> <<if ($activeSlave.anus > 2)>> fuck her gaping, fertile asshole. - <<elseif ($activeSlave.anus is 2)>> + <<elseif ($activeSlave.anus == 2)>> use her whorish, fertile asshole. <<elseif ($activeSlave.anus == 1)>> use her tight, fertile asshole. diff --git a/src/npc/fRelation.tw b/src/npc/fRelation.tw index e66afa28351dd3349e35a09980ba449503e0f0d2..065a35c7f481cabd49a60d4d2e23b9929245f647 100644 --- a/src/npc/fRelation.tw +++ b/src/npc/fRelation.tw @@ -66,7 +66,7 @@ You call both $activeSlave.slaveName and $slaves[$partner].slaveName to your off <<BothVCheck>> <<PartnerVCheck>> <<elseif canWalk($activeSlave) && canWalk($slaves[$partner]) && ($activeSlave.devotion > 50) && ($slaves[$partner].devotion > 20) && (_activeSlaveRel == "father")>> - $activeSlave.slaveName gives you a little smile when she hears you wish to fuck her and her daughter $slaves[$partner].slaveName<<if ($PC.dick is 0)>> and sees your strap-on<</if>>. On your direction, $activeSlave.slaveName sits on the couch. When $slaves[$partner].slaveName enters, her father spreads her arms and tells her to sit on her lap. $slaves[$partner].slaveName gets the idea and straddles her so they're face to face. You take $slaves[$partner].slaveName from behind; she gasps as she feels her father's hands stimulate her from the front. They make out shamelessly while you take your pleasure. When you finish, $activeSlave.slaveName lies down on the couch so $slaves[$partner].slaveName can ride her <<if $seeRace == 1>>$activeSlave.race <</if>>face. As she sucks the cum out of her daughter's sopping fuckhole, $slaves[$partner].slaveName sucks you hard again. In the mood for something harder this time, you jam yourself into the older $activeSlave.slaveName. $slaves[$partner].slaveName gets off $activeSlave.slaveName's face so she can offer herself for fondling and groping while you pound $activeSlave.slaveName. After you're done, $slaves[$partner].slaveName returns her father's affection and gives her some gentle oral as the older slave lies there exhausted. + $activeSlave.slaveName gives you a little smile when she hears you wish to fuck her and her daughter $slaves[$partner].slaveName<<if ($PC.dick == 0)>> and sees your strap-on<</if>>. On your direction, $activeSlave.slaveName sits on the couch. When $slaves[$partner].slaveName enters, her father spreads her arms and tells her to sit on her lap. $slaves[$partner].slaveName gets the idea and straddles her so they're face to face. You take $slaves[$partner].slaveName from behind; she gasps as she feels her father's hands stimulate her from the front. They make out shamelessly while you take your pleasure. When you finish, $activeSlave.slaveName lies down on the couch so $slaves[$partner].slaveName can ride her <<if $seeRace == 1>>$activeSlave.race <</if>>face. As she sucks the cum out of her daughter's sopping fuckhole, $slaves[$partner].slaveName sucks you hard again. In the mood for something harder this time, you jam yourself into the older $activeSlave.slaveName. $slaves[$partner].slaveName gets off $activeSlave.slaveName's face so she can offer herself for fondling and groping while you pound $activeSlave.slaveName. After you're done, $slaves[$partner].slaveName returns her father's affection and gives her some gentle oral as the older slave lies there exhausted. <<set $activeSlave.oralCount += 2, $slaves[$partner].oralCount += 2, $oralTotal += 2>> <<BothVCheck>> <<PartnerVCheck>> diff --git a/src/npc/fSlaveImpregConsummate.tw b/src/npc/fSlaveImpregConsummate.tw index 095f5c62862b7860749d498d2dba13d0f916be39..141bd93cb2239a186b97e3fabc2290c5c8f04221 100644 --- a/src/npc/fSlaveImpregConsummate.tw +++ b/src/npc/fSlaveImpregConsummate.tw @@ -115,13 +115,13 @@ Next, you see to $activeSlave.slaveName. You set her up for $impregnatrix.slaveName, face up so she is pinned under the weight of her giant cock. <<elseif tooBigBalls($activeSlave)>> You set her up for $impregnatrix.slaveName, face down so the weight of her giant balls anchor her helplessly in place. -<<elseif ($activeSlave.fetish == "submissive") && ($activeSlave.fetishStrength > 60) and ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>> +<<elseif ($activeSlave.fetish == "submissive") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>> She is accustomed to submit to you, but as a natural submissive she doesn't have much trouble submitting to $impregnatrix.slaveName's seed instead. -<<elseif $activeSlave.devotion < -20>> +<<elseif $activeSlave.devotion < -20>> She tries to refuse, so you restrain her despite her resistance to the idea of being made a breeder. -<<elseif $activeSlave.devotion <= 20>> +<<elseif $activeSlave.devotion <= 20>> She obeys your orders reluctantly, arranging herself for <<if $activeSlave.mpreg == 1>>anal<<else>>vaginal<</if>> sex despite her obvious hesitation to be made a breeder. -<<elseif $activeSlave.devotion < 10>> +<<elseif $activeSlave.devotion < 10>> She obeys your orders, arranging herself for <<if $activeSlave.mpreg == 1>>anal<<else>>vaginal<</if>> sex despite her slight hesitation at the idea of being made a breeder. <<else>> She happily obeys your orders, getting ready to serve <<if def $PC.customTitle>>her $PC.customTitle by making you<<elseif $PC.title != 0>>her Master by making him<<else>>her Mistress by making her<</if>> another slave. diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw index 7afaf888e781f569c8dd20c3842c9c740faae0ac..6fe00a5e2adebc40257ded9599030de31cfdb84e 100644 --- a/src/npc/startingGirls/startingGirls.tw +++ b/src/npc/startingGirls/startingGirls.tw @@ -193,10 +193,10 @@ __You are customizing this slave:__ <</if>> <<elseif $PC.career == "mercenary">> <<if $activeSlave.mother == -1 && $activeSlave.father == -1>> - <<set $activeSlave.origin = "Drugs and alcohol can be a potent mix; the night that followed it can sometimes be hard to remember. Needless to say, once your belly began swelling with her, you had to temporarily switch to a desk job for your mercanary group.">> + <<set $activeSlave.origin = "Drugs and alcohol can be a potent mix; the night that followed it can sometimes be hard to remember. Needless to say, once your belly began swelling with her, you had to temporarily switch to a desk job for your mercenary group.">> <<set $activeSlave.customTat = "She has a small tattoo of a private military company's coat of arms on the nape of her neck.">> <<elseif $activeSlave.mother == -1>> - <<set $activeSlave.origin = "Drugs and alcohol can be a potent mix; the night that followed it can sometimes be hard to remember. Needless to say, once your belly began swelling with her, you had to temporarily switch to a desk job for your mercanary group.">> + <<set $activeSlave.origin = "Drugs and alcohol can be a potent mix; the night that followed it can sometimes be hard to remember. Needless to say, once your belly began swelling with her, you had to temporarily switch to a desk job for your mercenary group.">> <<set $activeSlave.customTat = "She has a small tattoo of a private military company's coat of arms on the nape of her neck.">> <<elseif $activeSlave.father == -1>> <<set $activeSlave.origin = "A trip to a brothel after a mission resulted in an unexpected surprise years later.">> @@ -213,7 +213,7 @@ __You are customizing this slave:__ <<set $activeSlave.origin = "A fresh capture once overpowered you and had his way with you. You kept her as a painful reminder to never lower your guard again.">> <<set $activeSlave.customTat = "She has your tiny slaving emblem tattooed behind her left ear.">> <<elseif $activeSlave.father == -1>> - <<set $activeSlave.origin = "Your slaving troope kept several girls as fucktoys, you sired her in your favorite.">> + <<set $activeSlave.origin = "Your slaving troop kept several girls as fucktoys, you sired her in your favorite.">> <<set $activeSlave.customTat = "She has your tiny slaving emblem tattooed behind her left ear.">> <<else>> <<set $activeSlave.origin = "You enslaved her personally during the last stages of your slaving career.">> @@ -322,10 +322,10 @@ __You are customizing this slave:__ <</if>> <<elseif $PC.career == "BlackHat">> <<if $activeSlave.mother == -1 && $activeSlave.father == -1>> - <<set $activeSlave.origin = "She was the result of a night of hard celebration after a big score under the glow of monitors and the calming hum of 750 RPM fans. It took quite abit of alcohol to come to terms with drunkenly knocking yourself up.">> + <<set $activeSlave.origin = "She was the result of a night of hard celebration after a big score under the glow of monitors and the calming hum of 750 RPM fans. It took quite a bit of alcohol to come to terms with drunkenly knocking yourself up.">> <<set $activeSlave.customTat = "She has your former digital calling card tattooed on her neck.">> <<elseif $activeSlave.mother == -1>> - <<set $activeSlave.origin = "She was the result of an intruder brute forcing your firewall, overloading your pleasure sensors, and allowing a corrupted packet to slip by. With a quick wipe of your RAM and cache with some pwerful liquor, you have no idea who planted her in your womb.">> + <<set $activeSlave.origin = "She was the result of an intruder brute forcing your firewall, overloading your pleasure sensors, and allowing a corrupted packet to slip by. With a quick wipe of your RAM and cache with some powerful liquor, you have no idea who planted her in your womb.">> <<set $activeSlave.customTat = "She has your former digital calling card tattooed on her neck.">> <<elseif $activeSlave.father == -1>> <<set $activeSlave.origin = "She was born out of a trade for secure data access. Nine months later, your daughter was born.">> @@ -1578,4 +1578,4 @@ Her nationality is $activeSlave.nationality. <</if>> <</for>> -<<unset $PCCreationSex, $PCCreationFreckels, $PCCreationCareer, $PCCreationBoobSize, $PCCreationBreast>> +<<unset $PCCreationSex>> diff --git a/src/npc/takeoverTarget.tw b/src/npc/takeoverTarget.tw index 4e19234fc503d16c79cd77873915858dc426a43c..4f28b0e5b9b9d510670e8c58e9be305f6bfbb92f 100644 --- a/src/npc/takeoverTarget.tw +++ b/src/npc/takeoverTarget.tw @@ -139,7 +139,7 @@ Alternatively, arcologies are being built every day, and their owners' control i <<set _targetArcologies.push($targetArcology)>> <</for>> <<for $i = 0; $i < _targetArcologies.length; $i++>> - <<print "[[_targetArcologies[$i].name|Terrain Intro][$targetArcology to _targetArcologies[" + $i + "]]]">> is an established arcology located in a Free City + <<print "[[_targetArcologies[$i].name|Terrain Intro][$targetArcology = _targetArcologies[" + $i + "]]]">> is an established arcology located in a Free City <<if _targetArcologies[$i].terrain == "urban">> carved out of an urban area of _targetArcologies[$i].continent. <<elseif _targetArcologies[$i].terrain == "rural">> diff --git a/src/player/actions/fCaress.tw b/src/player/actions/fCaress.tw index d57e8e1fe6ed3d500fb21bc0b950b448e209599d..ae0807ea5088a2a881ab4313527d3f5fb144a375 100644 --- a/src/player/actions/fCaress.tw +++ b/src/player/actions/fCaress.tw @@ -63,20 +63,20 @@ Then, you gently tilt her <<if $activeSlave.face > 95>>overwhelmingly stunning<< <<if ($activeSlave.fetish == "mindbroken")>> Her posture doesn't change. She initially only reacts slightly to your physical touch but then stops reacting completely. When you stop, her $activeSlave.eyeColor eyes track the movements of your hands briefly but then stare blankly ahead of her, awaiting further use of her body. <<elseif ($activeSlave.relationship == -2)>> - Her eyes gradually close and she slowly leans her head back, relaxing as she feels your caress. She gently gasps as she feels your warm <<if $PC.title == 1>>manly<<else>>feminine<</if>> hand. When you finally stop gently caressing her, her eyes remain closed and her mouth still in a rapturous shape for a moment before she slowly opens her eyes and smiles at you, she has an eager look on her face.<<if ($activeSlave.amp != 1)>> A hand reaches dumbly up to her face mimicking your last movements.<</if>> <<if ($activeSlave.accent >= 3)>>She does her best to communicate love with her $activeSlave.eyeColor eyes, since she does not speak $language well enough to express herself.<<elseif ($activeSlave.amp == 1) && (canTalk($activeSlave) == false)>>She does her best to communicate love with her $activeSlave.eyeColor eyes.<<elseif canTalk($activeSlave) == false>>She signs that she loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," she lisps dreamily.<<else>>"I love you, <<Master>>," she says dreamily.<</if>> She looks as though she wants much more than your mere caress. -<<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish is "dom") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> - As you start to touch her <<if $activeSlave.face > 95>>gorgeous<<elseif $activeSlave.face > 10>>lovely<<elseif $activeSlave.face >= -10>>pretty<<elseif $activeSlave.face >= -40>>homely<<else>>ugly<</if>> face, she smiles at you and takes your hand in hers, following its movements. She tries hard to stop herself from losing herself in your masterful hands. She takes her tendency towards sexual dominance right up to the edge of insubordination, when she starts to caress your face in turn. When you finally stop, her eyes are closed and she's smiling. <<if ($activeSlave.accent >= 3)>>She does her best to communicate excitement with her $activeSlave.eyeColor eyes, since she does not speak $language well enough to express herself.<<elseif ($activeSlave.amp == 1) && (canTalk($activeSlave) == false)>>She does her best to communicate excitement with her $activeSlave.eyeColor eyes.<<elseif canTalk($activeSlave) == false>>She signs that she liked that.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"That wath fun, <<Master>>," she lisps cheerfully.<<else>>"That was fun, <<Master>>," she says cheerfully.<</if>> She looks at you, her eyes almost begging you to give her more than your mere caress. -<<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish is "cumslut") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> - She stiffens at your touch but slowly relaxes to your fingers on her face. As you move your fingers along her lips, she reacts almost as though she's receiving oral. She starts to gently suck your fingers, moaning into your hand and pressing herself lewdly against your <<if $PC.boobs == 1>>prominent breasts<<else>>manly chest<</if>>.<<if ($activeSlave.teeth is "pointy")>> She's very careful to avoid spearing your tongue with her sharp teeth.<</if>> She achieves a weak orgasm before you stop caressing her. <<if ($activeSlave.accent >= 3)>>She does her best to communicate undiminished lust with her $activeSlave.eyeColor eyes, since she does not speak $language well enough to express herself.<<elseif ($activeSlave.amp == 1) && (canTalk($activeSlave) == false)>>She does her best to communicate undiminished lust with her $activeSlave.eyeColor eyes.<<elseif canTalk($activeSlave) == false>>She signs that she liked that.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"That wath fun, <<Master>>," she lisps lustfully.<<else>>"That was fun, <<Master>>," she says lustfully.<</if>> She looks at you as if she wants more than your hands touching her. + Her eyes gradually close and she slowly leans her head back, relaxing as she feels your caress. She gently gasps as she feels your warm <<if $PC.title == 1>>manly<<else>>feminine<</if>> hand. When you finally stop gently caressing her, her eyes remain closed and her mouth still in a rapturous shape for a moment before she slowly opens her eyes and smiles at you, she has an eager look on her face.<<if ($activeSlave.amp != 1)>> A hand reaches dumbly up to her face mimicking your last movements.<</if>> <<if ($activeSlave.accent >= 3)>>She does her best to communicate love with her $activeSlave.eyeColor eyes, since she does not speak $language well enough to express herself.<<elseif ($activeSlave.amp == 1) && (!canTalk($activeSlave))>>She does her best to communicate love with her $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>She signs that she loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," she lisps dreamily.<<else>>"I love you, <<Master>>," she says dreamily.<</if>> She looks as though she wants much more than your mere caress. +<<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> + As you start to touch her <<if $activeSlave.face > 95>>gorgeous<<elseif $activeSlave.face > 10>>lovely<<elseif $activeSlave.face >= -10>>pretty<<elseif $activeSlave.face >= -40>>homely<<else>>ugly<</if>> face, she smiles at you and takes your hand in hers, following its movements. She tries hard to stop herself from losing herself in your masterful hands. She takes her tendency towards sexual dominance right up to the edge of insubordination, when she starts to caress your face in turn. When you finally stop, her eyes are closed and she's smiling. <<if ($activeSlave.accent >= 3)>>She does her best to communicate excitement with her $activeSlave.eyeColor eyes, since she does not speak $language well enough to express herself.<<elseif ($activeSlave.amp == 1) && (!canTalk($activeSlave))>>She does her best to communicate excitement with her $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>She signs that she liked that.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"That wath fun, <<Master>>," she lisps cheerfully.<<else>>"That was fun, <<Master>>," she says cheerfully.<</if>> She looks at you, her eyes almost begging you to give her more than your mere caress. +<<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> + She stiffens at your touch but slowly relaxes to your fingers on her face. As you move your fingers along her lips, she reacts almost as though she's receiving oral. She starts to gently suck your fingers, moaning into your hand and pressing herself lewdly against your <<if $PC.boobs == 1>>prominent breasts<<else>>manly chest<</if>>.<<if ($activeSlave.teeth == "pointy")>> She's very careful to avoid spearing your tongue with her sharp teeth.<</if>> She achieves a weak orgasm before you stop caressing her. <<if ($activeSlave.accent >= 3)>>She does her best to communicate undiminished lust with her $activeSlave.eyeColor eyes, since she does not speak $language well enough to express herself.<<elseif ($activeSlave.amp == 1) && (!canTalk($activeSlave))>>She does her best to communicate undiminished lust with her $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>She signs that she liked that.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"That wath fun, <<Master>>," she lisps lustfully.<<else>>"That was fun, <<Master>>," she says lustfully.<</if>> She looks at you as if she wants more than your hands touching her. <<elseif ($activeSlave.devotion > 50)>> - She accepts your touch with devotion, leaning her head back at your gentle caress along her face. She leans her body forward, pressing herself against you, and you feel the intense heat from her body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>. She gradually closes her eyes and when you finally stop, <<if ($activeSlave.amp != 1)>>she runs her hand delightfully across her face where you last touched her<</if>>, a euphoric look on her $activeSlave.skin face. <<if ($activeSlave.accent >= 3)>>She does her best to communicate devotion with her $activeSlave.eyeColor eyes, since she's not confident in her ability to express it in $language.<<elseif ($activeSlave.amp == 1) && (canTalk($activeSlave) == false)>>She does her best to communicate devotion with her $activeSlave.eyeColor eyes.<<elseif canTalk($activeSlave) == false>>She signs that she loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," she lisps jubilantly.<<else>>"I love you, <<Master>>," she says jubilantly.<</if>> She looks at you longingly, almost as if she's bursting to say that she wants more than your mere caress. + She accepts your touch with devotion, leaning her head back at your gentle caress along her face. She leans her body forward, pressing herself against you, and you feel the intense heat from her body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>. She gradually closes her eyes and when you finally stop, <<if ($activeSlave.amp != 1)>>she runs her hand delightfully across her face where you last touched her<</if>>, a euphoric look on her $activeSlave.skin face. <<if ($activeSlave.accent >= 3)>>She does her best to communicate devotion with her $activeSlave.eyeColor eyes, since she's not confident in her ability to express it in $language.<<elseif ($activeSlave.amp == 1) && (!canTalk($activeSlave))>>She does her best to communicate devotion with her $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>She signs that she loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," she lisps jubilantly.<<else>>"I love you, <<Master>>," she says jubilantly.<</if>> She looks at you longingly, almost as if she's bursting to say that she wants more than your mere caress. <<elseif ($activeSlave.devotion > 20)>> - She accepts your touch willingly. As you are so close to her, you sense considerable turmoil in the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>girl<</if>>; she's doing her duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of her mind by your touch across her face. When you finally move your hand away, her $activeSlave.eyeColor eyes gaze into yours searchingly, looking for answers that are not there. <<if (($activeSlave.amp == 1) && (canTalk($activeSlave) == false))>>Her eyes beg for an answer: is that it?<<elseif canTalk($activeSlave) == false>>She signs hesitantly, asking if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks hesitantly, "I-ith that it, <<Master>>?"<<else>>She asks hesitantly, "I-is that it, <<Master>>?"<</if>> + She accepts your touch willingly. As you are so close to her, you sense considerable turmoil in the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>girl<</if>>; she's doing her duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of her mind by your touch across her face. When you finally move your hand away, her $activeSlave.eyeColor eyes gaze into yours searchingly, looking for answers that are not there. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>>Her eyes beg for an answer: is that it?<<elseif !canTalk($activeSlave)>>She signs hesitantly, asking if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks hesitantly, "I-ith that it, <<Master>>?"<<else>>She asks hesitantly, "I-is that it, <<Master>>?"<</if>> <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.trust < -20)>> - She shakes at your touch fearfully. As you move your hand along her unresisting face, her eagerness to avoid punishment leads her to stiffen, her nervousness is made apparent. You continue stroking her cheek, enjoying her fear, and the physical intimacy slowly does its work. She starts to relax, her resistance easing and her eyes start to close. When finally move your hand away, she looks at you for a long moment, her eyes darting up at you, before visibly catching herself with a reminder that she's a slave and you're her owner. <<if (($activeSlave.amp == 1) && (canTalk($activeSlave) == false))>>Her eyes beg for an answer: is that it?<<elseif canTalk($activeSlave) == false>>She signs hesitantly, asking if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks hesitantly, "I-ith that it, <<Master>>?"<<else>>She asks hesitantly, "I-is that it, <<Master>>?"<</if>> + She shakes at your touch fearfully. As you move your hand along her unresisting face, her eagerness to avoid punishment leads her to stiffen, her nervousness is made apparent. You continue stroking her cheek, enjoying her fear, and the physical intimacy slowly does its work. She starts to relax, her resistance easing and her eyes start to close. When finally move your hand away, she looks at you for a long moment, her eyes darting up at you, before visibly catching herself with a reminder that she's a slave and you're her owner. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>>Her eyes beg for an answer: is that it?<<elseif !canTalk($activeSlave)>>She signs hesitantly, asking if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks hesitantly, "I-ith that it, <<Master>>?"<<else>>She asks hesitantly, "I-is that it, <<Master>>?"<</if>> <<elseif ($activeSlave.trust < -50)>> - She is nearly frozen with fear, and does not resist as you start to caress her face. In fact, she barely reacts at all. She stares at you as you move your fingers across her stiff face, but it's like touching a statue. She is so filled with terror that she remains stiff even as it becomes clear to her you're not going to hurt her. When you bore of touching the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>girl<</if>> and move your hand away, she stares at you in utter incomprehension. <<if (($activeSlave.amp == 1) && (canTalk($activeSlave) == false))>>Her eyes beg for an answer: is that it?<<elseif canTalk($activeSlave) == false>>She signs spastically, begging fearfully to know if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks nervously, "I-ith that it, <<Master>>?"<<else>>She asks nervously, "I-is that it, <<Master>>?"<</if>> Then she cringes. + She is nearly frozen with fear, and does not resist as you start to caress her face. In fact, she barely reacts at all. She stares at you as you move your fingers across her stiff face, but it's like touching a statue. She is so filled with terror that she remains stiff even as it becomes clear to her you're not going to hurt her. When you bore of touching the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>girl<</if>> and move your hand away, she stares at you in utter incomprehension. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>>Her eyes beg for an answer: is that it?<<elseif !canTalk($activeSlave)>>She signs spastically, begging fearfully to know if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She asks nervously, "I-ith that it, <<Master>>?"<<else>>She asks nervously, "I-is that it, <<Master>>?"<</if>> Then she cringes. <<else>> - She reflexively turns away from you, but you catch her head with one hand and slowly but gently move your other hand along her face. Spluttering, she leans backwards, but you tip forward with her and pin her against your desk, not stopping your gentle touch on her head. She tries to wriggle out of your grasp desperately, but her struggles slowly subside as she realizes that you're not taking this any farther. When you bore of it and move your hand away, she stares at you in utter incomprehension. <<if (($activeSlave.amp == 1) && (canTalk($activeSlave) == false))>>Her eyes demand an answer: is that it?<<elseif canTalk($activeSlave) == false>>She signs irritably, asking whether that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She splutters, "Ith that it, <<Master>>!?"<<else>>She splutters, "Is that it, <<Master>>!?"<</if>> + She reflexively turns away from you, but you catch her head with one hand and slowly but gently move your other hand along her face. Spluttering, she leans backwards, but you tip forward with her and pin her against your desk, not stopping your gentle touch on her head. She tries to wriggle out of your grasp desperately, but her struggles slowly subside as she realizes that you're not taking this any farther. When you bore of it and move your hand away, she stares at you in utter incomprehension. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>>Her eyes demand an answer: is that it?<<elseif !canTalk($activeSlave)>>She signs irritably, asking whether that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>She splutters, "Ith that it, <<Master>>!?"<<else>>She splutters, "Is that it, <<Master>>!?"<</if>> <</if>> <</nobr>> diff --git a/src/pregmod/SecForceEX/SpecialForceUpgradeDec.tw b/src/pregmod/SecForceEX/SpecialForceUpgradeDec.tw index 57b6f194c7468c68455089d45a27bd8c5536f372..e8494a4182c02641bb95f93ba57afe4c26bd2e3b 100644 --- a/src/pregmod/SecForceEX/SpecialForceUpgradeDec.tw +++ b/src/pregmod/SecForceEX/SpecialForceUpgradeDec.tw @@ -248,7 +248,7 @@ <<case 5>> Modernized the armour, weaponry, electronics and crew seating. <<case 6>> - Modernized the armour, weaponry, electronics and crew seating. Increased the speed and moverability. + Modernized the armour, weaponry, electronics and crew seating. Increased the speed and maneuverability. <</switch>> <</if>> <<if $securityForceHeavyTransport > 0>> diff --git a/src/pregmod/SecForceEX/securityForceTradeShow.tw b/src/pregmod/SecForceEX/securityForceTradeShow.tw index 7977ca5a82c3346a112d5cb8802eff41b6acbcc0..66577898518c3bf8b0e3b7de9302e0c88a4dd69a 100644 --- a/src/pregmod/SecForceEX/securityForceTradeShow.tw +++ b/src/pregmod/SecForceEX/securityForceTradeShow.tw @@ -126,7 +126,7 @@ The (bi-yearly) security trade show has finally come around and even though you' <<link "Request she remain on base">> <<replace "#choice2">> - <br>The look of disappointement is barely noticeable on The Colonel's face. + <br>The look of disappointment is barely noticeable on The Colonel's face. <</replace>> <</link>> diff --git a/src/pregmod/assistantAppearancePackTwo.tw b/src/pregmod/assistantAppearancePackTwo.tw index 64193f324440f6b848255ddcfaaf1f85fcd5db0d..ee1dd2dbdd49e3294a2b6e3c4be95523d8dc8d57 100644 --- a/src/pregmod/assistantAppearancePackTwo.tw +++ b/src/pregmod/assistantAppearancePackTwo.tw @@ -2,7 +2,7 @@ <<if $seeImages == 1>><<AssistantArt 3>><</if>> -"Cool! New appearances to play around with!" Your assistant happily chimes. "Let's see what's inside! This looks heavenly..." She hunches forward as a large pair of white feathered wings extend from her upper back. She takes several experimental flaps before taking to the sky. "I feel positively radiant! Maybe a smaller version will be more to your liking?" She loses both height and wingspan until she stands roughly equivalent to 120cm. She flutters around cutely. "This is neat, I'm like cupid. Want me to hook you up with anyone?" She winks as her wings become bat-like and a pair of cute little nubs appears on her head. "Or maybe you'd just like to play with me instead." The impish figure flirts, before landing and blossoming into a stunning woman. "You know a succubus can take her lover's ideal form." She runs her hands down her sides and to her crotch. <<if $seeDicks != 0>>She begins rubbing her clit as it steadily grows into a meaty cock. "Or an incubus, for the ladies." She returns to her previous form. <</if>>"Says here it comes with 'bonus novice witch' too. Neat. What's this though? It looks like an appe" +"Cool! New appearances to play around with!" Your assistant happily chimes. "Let's see what's inside! This looks heavenly..." She hunches forward as a large pair of white feathered wings extend from her upper back. She takes several experimental flaps before taking to the sky. "I feel positively radiant! Maybe a smaller version will be more to your liking?" She loses both height and wingspan until she stands roughly equivalent to 120cm. She flutters around cutely. "This is neat, I'm like cupid. Want me to hook you up with anyone?" She winks as her wings become bat-like and a pair of cute little nubs appears on her head. "Or maybe you'd just like to play with me instead." The impish figure flirts, before landing and blossoming into a stunning woman. "You know a succubus can take her lover's ideal form." She runs her hands down her sides and to her crotch. <<if $seeDicks != 0>>She begins rubbing her clit as it steadily grows into a meaty cock. "Or an incubus, for the ladies." She returns to her previous form. <</if>>"Says here it comes with 'bonus novice witch' too. Neat. What's this though? It looks like an appeara" <br><br><br><br><br><br><br><br>You tap at the screen; did she crash or something? diff --git a/src/pregmod/birthStorm.tw b/src/pregmod/birthStorm.tw index 8ef7f8dd4e6453f6230ea81f0478f446e105eb9f..7a0150f45b172034867dca63e14ff5420fda5cf8 100644 --- a/src/pregmod/birthStorm.tw +++ b/src/pregmod/birthStorm.tw @@ -26,10 +26,10 @@ The remote surgery allows the removal of the pregnancy generator through convent birthing and orgasming each time, $activeSlave.slaveName's mind is @@.red;fundamentally broken.@@ Being under constant pleasure for so long has destroyed all but the part of her that feels pleasure. With one final push the breeding device is expelled from her womb as the last spark of what was her mind is extinguished. @@.red;The ordeal of constant birthing has had a massive effect on her health as well as completely destroying her vagina.@@ <<set $activeSlave.fetish = "mindbroken">> <<elseif $activeSlave.pregType > 20>> - birthing and orgasming each time, $activeSlave.slaveName is reduced to a quivering, overstimulated pile. Whe she returns to her senses, @@.hotpink;she can only express how much she wants to go again.@@ @@.red;The ordeal of constant birthing has had a massive effect on her health as well as completely destroying her vagina.@@ + birthing and orgasming each time, $activeSlave.slaveName is reduced to a quivering, overstimulated pile. When she returns to her senses, @@.hotpink;she can only express how much she wants to go again.@@ @@.red;The ordeal of constant birthing has had a massive effect on her health as well as completely destroying her vagina.@@ <<set $activeSlave.devotion += 4>> <<else>> - birthing and orgasming all the time, $activeSlave.slaveName is reduced to a quivering, overstimulated pile. Whe she returns to her senses, @@.hotpink;she can only express how much she wants to go again.@@ @@.red;The ordeal of intensive birthing has had a massive effect on her health as well as completely destroying her vagina.@@ + birthing and orgasming all the time, $activeSlave.slaveName is reduced to a quivering, overstimulated pile. When she returns to her senses, @@.hotpink;she can only express how much she wants to go again.@@ @@.red;The ordeal of intensive birthing has had a massive effect on her health as well as completely destroying her vagina.@@ <<set $activeSlave.devotion += 3>> <</if>> <<elseif $activeSlave.devotion <= 20>> diff --git a/src/pregmod/csec.tw b/src/pregmod/csec.tw index 6bdf9956b96c59cd7f4e0d98112539e02d435c36..a9ea2f5a7a7d4d47422245adc704803697d9672b 100644 --- a/src/pregmod/csec.tw +++ b/src/pregmod/csec.tw @@ -325,7 +325,7 @@ Since her <<if $activeSlave.mpreg == 1>>ass<<else>>vagina<</if>> was spared from She leaves the surgery with her belly still very gravid, and as such, knows you put something into her womb replacing her prior natural pregnancy. She understands the realities of her life as a slave, but she is still surprised at what now resides in her womb. She is @@.gold;sensibly fearful@@ of your total power over her body. <<set $activeSlave.trust -= 5>> <<else>> - She leaves the surgery with her belly still very gravid, and as such, knows you put something into her womb replacing her prior natural pregnancy. She does not understand the realities of her life as a slave at a core level, so she's @@.mediumorchid;terrified and angry@@ at the potential that she's been turned in some sort of freak. Even after what has been implanted into her womb is explained to her, she is no less defiant; though she is relieved that procedure is reversible and there is no trully permanent damage. She is @@.gold;sensibly fearful@@ of your total power over her body. + She leaves the surgery with her belly still very gravid, and as such, knows you put something into her womb replacing her prior natural pregnancy. She does not understand the realities of her life as a slave at a core level, so she's @@.mediumorchid;terrified and angry@@ at the potential that she's been turned in some sort of freak. Even after what has been implanted into her womb is explained to her, she is no less defiant; though she is relieved that procedure is reversible and there is no truly permanent damage. She is @@.gold;sensibly fearful@@ of your total power over her body. <<set $activeSlave.trust -= 5>> <<set $activeSlave.devotion -= 5>> <</if>> diff --git a/src/pregmod/fFeet.tw b/src/pregmod/fFeet.tw index 521ece90b88950edba894765f88ade972335ebe4..8844a5924aa6b339469c11b5b6cb09169bdbfdf7 100644 --- a/src/pregmod/fFeet.tw +++ b/src/pregmod/fFeet.tw @@ -415,7 +415,7 @@ You call $activeSlave.slaveName to your office, telling $possessive to use $poss <</if>> with a sultry smile. <<else>> - rolls onto $possessive side while still stroking your dick, revealing $possessive _ass ass, _hips hips and _thighs thighs with a sultry smile. + rolls onto $possessive side while still stroking your dick, revealing $possessive _butt ass, _hips hips and _thighs thighs with a sultry smile. <</if>> <</if>> @@ -480,14 +480,14 @@ You call $activeSlave.slaveName to your office, telling $possessive to use $poss <<elseif $activeSlave.fetish == "buttslut" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>> When you eventually cum, $activeSlave.slaveName moans as your semen lands on $possessive _skin feet, <<if $PC.balls >= 1>> - but quickly turns to present $possessive _ass ass and _hips hips as a new target. + but quickly turns to present $possessive _butt ass and _hips hips as a new target. <<if $PC.balls >= 2>> Your massive load quickly covers $possessive _thighs ass and thighs, sticky cum dripping all the way to $possessive calves. <<else>> Your large load soaks $possessive _thighs ass and thighs in sticky semen, which drips down $possessive _legs legs. <</if>> <<else>> - but you know $possessive wanted to involve $possessive _ass butt and your cum, if your orgasm had more volume. + but you know $possessive wanted to involve $possessive _butt butt and your cum, if your orgasm had more volume. <</if>> <<elseif $activeSlave.fetish == "boobs" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>> You eventually cum all over $possessive _skin feet<<if $PC.balls >= 2>>, _legs legs, and even $possessive _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs legs with your large load<</if>>, and $pronoun <<if $activeSlave.boobs < 299>>pinches both $possessive erect nipples <<elseif $activeSlave.boobs < 499>>rubs $possessive hands across $possessive small chest <<else>>squeezes $possessive _boobs breasts tightly <</if>>while moaning in pleasure. @@ -569,4 +569,4 @@ You call $activeSlave.slaveName to your office, telling $possessive to use $poss <<else>> $activeSlave.slaveName leans down to wipe semen off her feet, quickly bringing it into $possessive mouth with a blissful look as $pronoun tastes your cum and sighs in pleasure. <</if>> -<</if>> \ No newline at end of file +<</if>> diff --git a/src/pregmod/fMarry.tw b/src/pregmod/fMarry.tw index 5c89e6c978ab38c7521a3e7eeb2a639a8b758c99..13ca05ec09eea1e8921b8d58a3949748cde9567e 100644 --- a/src/pregmod/fMarry.tw +++ b/src/pregmod/fMarry.tw @@ -199,7 +199,7 @@ You tell $activeSlave.slaveName that you're going to marry her. (A proposal, of <<elseif ($activeSlave.fetish == "buttslut")>> she'll make the perfect little anal wifey <<if $PC.dick > 0>>to keep your dick warm<<else>>stick things in<</if>>. <<elseif ($activeSlave.fetish == "boobs")>> - she'll make the <<if $activeSlave.boobs > 800>>perfect big-boobed<<else>>perfect-boobed<</if>> wife for you to burry your head into. + she'll make the <<if $activeSlave.boobs > 800>>perfect big-boobed<<else>>perfect-boobed<</if>> wife for you to bury your head into. <<elseif ($activeSlave.fetish == "pregnancy")>> she'll make the perfect barefoot breeding wife.<<if $PC.dick > 0 && canGetPregnant($activeSlave)>> You poke her with your erection, letting her know what she's in for.<</if>> <<elseif ($activeSlave.fetish == "dom")>> @@ -442,7 +442,7 @@ You tell $activeSlave.slaveName that you're going to marry her. (A proposal, of The new Mrs. $activeSlave.slaveSurname hears this, of course, and breaks down again. Not only have you taken her hand, but now also her name; @@.hotpink;she's yours now,@@ nothing she thinks can change that. <<set $activeSlave.devotion += 5>> <<else>> - The new Mrs. $activeSlave.slaveSurname hears this, of course, and nods acceptingly. Being trusted with your surname @@.mediumaquamarine;reassures her@@ that she must mean something to you, though she is a @@.mediumorchid;little disappointed@@ by the lack of a weddding, however. + The new Mrs. $activeSlave.slaveSurname hears this, of course, and nods acceptingly. Being trusted with your surname @@.mediumaquamarine;reassures her@@ that she must mean something to you, though she is a @@.mediumorchid;little disappointed@@ by the lack of a wedding, however. <<set $activeSlave.devotion--, $activeSlave.trust += 5>> <</if>> <</replace>> diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw index ec5c1405888ae4b20c996d479bc89497ca3d3a12..7d39435953cbabb5133a001e80c7e59e3ee6aee5 100644 --- a/src/pregmod/fSlaveFeed.tw +++ b/src/pregmod/fSlaveFeed.tw @@ -157,7 +157,7 @@ Next, you see to $activeSlave.slaveName. <br><br> <<if $activeSlave.preg > 3 && $activeSlave.pregKnown == 0 && $activeSlave.inflation > 1>> - It becomes abundantly clear that something is wrong with $activeSlave.slaveName as she struggles to down her milky meal. Before her health can be affected further, you pull her into a medical exam. While most of the tests come back normal, one in particluar catches your eye; @@.lime;She is pregnant<<if $activeSlave.preg > 10>> and surprisingly far along<</if>>.@@ She should be able to still handle at least two liters of milk, however. + It becomes abundantly clear that something is wrong with $activeSlave.slaveName as she struggles to down her milky meal. Before her health can be affected further, you pull her into a medical exam. While most of the tests come back normal, one in particular catches your eye; @@.lime;She is pregnant<<if $activeSlave.preg > 10>> and surprisingly far along<</if>>.@@ She should be able to still handle at least two liters of milk, however. <<set $activeSlave.inflation = 0, $activeSlave.inflationType = "none", $activeSlave.inflationMethod = 0, $activeSlave.pregKnown = 1>> <<set _pregDiscovery = 1>> @@ -530,7 +530,7 @@ Next, you see to $activeSlave.slaveName. <br><br> <<if $activeSlave.preg > 3 && $activeSlave.pregKnown == 0 && $activeSlave.inflation > 1>> - It becomes abundantly clear that something is wrong with $activeSlave.slaveName as she struggles to down her thick meal. Before her health can be affected further, you pull her into a medical exam. While most of the tests come back normal, one in particluar catches your eye; @@.lime;She is pregnant<<if $activeSlave.preg > 10>> and surprisingly far along<</if>>.@@ She should be able to still handle at least two liters of cum, however. + It becomes abundantly clear that something is wrong with $activeSlave.slaveName as she struggles to down her thick meal. Before her health can be affected further, you pull her into a medical exam. While most of the tests come back normal, one in particular catches your eye; @@.lime;She is pregnant<<if $activeSlave.preg > 10>> and surprisingly far along<</if>>.@@ She should be able to still handle at least two liters of cum, however. <<set $activeSlave.inflation = 0, $activeSlave.inflationType = "none", $activeSlave.inflationMethod = 0, $activeSlave.pregKnown = 1>> <<set _pregDiscovery = 1>> diff --git a/src/pregmod/fSlaveSlaveDickConsummate.tw b/src/pregmod/fSlaveSlaveDickConsummate.tw index d4833444f574d74ce9011d14c5f01e9293b0e672..af7de55e32a5fcd5f83fbe96ad807a96cb805ee6 100644 --- a/src/pregmod/fSlaveSlaveDickConsummate.tw +++ b/src/pregmod/fSlaveSlaveDickConsummate.tw @@ -153,48 +153,23 @@ You take a look at the bound toy. <br><br> -<<if ($activeSlave.devotion < -20) && ($slaverapistx.devotion < -20)>> - Since you have two restrained slaves, it's up to you to do all the work. Since $activeSlave.slaveName is already lying on the bed, you maneuver $slaverapistx.slaveName's pussy into place. The two slaves make no further moves until you deal $slaverapistx.slaveName a terrific swat across the ass and promise to give her more of the same until she gets going. $slaverapistx.slaveName starts lowering herself very slowly, pulling back every time $activeSlave.slaveName's dick prods her womanhood. After watching the sad display for a while, you grab her by the hips and slam her down onto $activeSlave.slaveName, hilting her in one, scream-inducing move. - <<if ($slaverapistx.vagina == 0)>> /* losing virginity */ - <<if ($slaverapistx.devotion > 20)>> - $slaverapistx.slaveName accepts your orders without comment and lowers her virgin pussy on $activeSlave.slaveName's ready <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>>. @@.hotpink;$slaverapistx.slaveName is further broken to slavery@@ by this application of her body, which naturally @@.lime;will break in her pussy.@@ - <<set $slaverapistx.vagina = 1, $slaverapistx.devotion += 10>> - <<elseif ($slaverapistx.devotion >= -20)>> - $slaverapistx.slaveName is clearly unhappy at the idea of losing her pearl of great price to $activeSlave.slaveName; this probably isn't what she imagined her first real sex would be like. She fears she might get pregnant. Nevertheless, @@.hotpink;she is further broken to slavery@@ by this application of her body, which naturally @@.lime;breaks in her pussy.@@ - <<set $slaverapistx.vagina = 1, $slaverapistx.devotion += 4>> - <<else>> - As you anticipated, $slaverapistx.slaveName refuses to give $activeSlave.slaveName her virginity. However, since $slaverapistx.slaveName is restrained her resistance amounts to @@.mediumorchid;horrified tears@@ and @@.gold;frightened begging.@@ Naturally, this cruel act @@.lime;breaks in her pussy.@@ - <<set $slaverapistx.vagina = 1, $slaverapistx.devotion -= 5, $slaverapistx.trust -= 5>> - <</if>> - <<if $slaverapistx.mother == $activeSlave.ID>> - <<if ($activeSlave.penetrativeCount == 0)>> - $activeSlave.slaveName gasps and her eyes widen as she feels the tender folds of a pussy - and none other than her daughter's - embracing her <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>> for the first time. - <<else>> - $activeSlave.slaveName's breath quickens as her <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>> disappears into her daughter's vagina. - <</if>> - <<elseif $activeSlave.mother == $slaverapistx.ID>> - <<if ($activeSlave.penetrativeCount == 0)>> - $activeSlave.slaveName gasps and her eyes widen as she feels the tender folds of a pussy - and none other than her mother's - embracing her <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>> for the first time. - <<else>> - $activeSlave.slaveName's breath quickens as her <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>> disappears into her mother's vagina. - <</if>> - <</if>> - <</if>> /* closes losing virginity */ - $slaverapistx.slaveName seems more cooperative after that and you only have to occasionally prod them with an electrical jolt to keep them going at a faster pace. Both slaves resent what you made them do and fear you as a result. - -<<elseif ($activeSlave.devotion < -20)>> - Since your dick slave is restrained, you order $slaverapistx.slaveName to kneel on the bed on top of $activeSlave.slaveName, and then maneuver her pussy into place. $activeSlave.slaveName is uncooperative, so you prod and slap her until she starts to thrust her cock into $slaverapistx.slaveName with urgency. +<<if ($activeSlave.devotion < -20)>> + <<if $slaverapistx.devotion < -20>> + Since you have two restrained slaves, it's up to you to do all the work. Since $activeSlave.slaveName is already lying on the bed, you maneuver $slaverapistx.slaveName's pussy into place. The two slaves make no further moves until you deal $slaverapistx.slaveName a terrific swat across the ass and promise to give her more of the same until she gets going. $slaverapistx.slaveName starts lowering herself very slowly, pulling back every time $activeSlave.slaveName's dick prods her womanhood. After watching the sad display for a while, you grab her by the hips and slam her down onto $activeSlave.slaveName, hilting her in one, scream-inducing move. + <<else>> + Since your dick slave is restrained, you order $slaverapistx.slaveName to kneel on the bed on top of $activeSlave.slaveName, and then maneuver her pussy into place. $activeSlave.slaveName is uncooperative, so you prod and slap her until she starts to thrust her cock into $slaverapistx.slaveName with urgency. + <</if>> <<if ($slaverapistx.vagina == 0)>> /* losing virginity */ - <<if ($slaverapistx.devotion > 20)>> + <<if $slaverapistx.devotion > 20>> $slaverapistx.slaveName accepts your orders without comment and lowers her virgin pussy on $activeSlave.slaveName's ready <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>>. @@.hotpink;$slaverapistx.slaveName is further broken to slavery@@ by this application of her body, which naturally @@.lime;will break in her pussy.@@ <<set $slaverapistx.vagina = 1, $slaverapistx.devotion += 10>> - <<elseif ($slaverapistx.devotion >= -20)>> + <<elseif $slaverapistx.devotion >= -20>> $slaverapistx.slaveName is clearly unhappy at the idea of losing her pearl of great price to $activeSlave.slaveName; this probably isn't what she imagined her first real sex would be like. She fears she might get pregnant. Nevertheless, @@.hotpink;she is further broken to slavery@@ by this application of her body, which naturally @@.lime;breaks in her pussy.@@ <<set $slaverapistx.vagina = 1, $slaverapistx.devotion += 4>> <<else>> As you anticipated, $slaverapistx.slaveName refuses to give $activeSlave.slaveName her virginity. However, since $slaverapistx.slaveName is restrained her resistance amounts to @@.mediumorchid;horrified tears@@ and @@.gold;frightened begging.@@ Naturally, this cruel act @@.lime;breaks in her pussy.@@ <<set $slaverapistx.vagina = 1, $slaverapistx.devotion -= 5, $slaverapistx.trust -= 5>> - <</if>> + <</if>> <<if $slaverapistx.mother == $activeSlave.ID>> <<if ($activeSlave.penetrativeCount == 0)>> $activeSlave.slaveName gasps and her eyes widen as she feels the tender folds of a pussy - and none other than her daughter's - embracing her <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>> for the first time. @@ -209,7 +184,11 @@ You take a look at the bound toy. <</if>> <</if>> <</if>> /* closes losing virginity */ - It doesn't take long for $activeSlave.slaveName to orgasm. She resents what you made her do and fears you as a result. + <<if $slaverapistx.devotion < -20>> + $slaverapistx.slaveName seems more cooperative after that and you only have to occasionally prod them with an electrical jolt to keep them going at a faster pace. Both slaves resent what you made them do and fear you as a result. + <<else>> + It doesn't take long for $activeSlave.slaveName to orgasm. She resents what you made her do and fears you as a result. + <</if>> <<elseif ($slaverapistx.fetish == "dom") && ($slaverapistx.fetishStrength > 20) && ($slaverapistx.devotion > 20)>> You tell the randy $slaverapistx.slaveName that $activeSlave.slaveName's <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>> is all hers. The slave life has so affected $slaverapistx.slaveName that she is quite eager to rape another slave for her pleasure. @@ -229,7 +208,7 @@ You take a look at the bound toy. <<elseif ($slaverapistx.fetish == "sadist") && ($slaverapistx.fetishStrength > 20) && ($activeSlave.devotion < -20)>> You tell the grinning $slaverapistx.slaveName that $activeSlave.slaveName's <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>> is all hers. The slave life has so affected $slaverapistx.slaveName that she is quite eager to hurt and rape another slave for her pleasure. <<if ($slaverapistx.vagina == 0)>> /* losing virginity */ - <<if ($slaverapistx.devotion > 20)>> + <<if ($slaverapistx.devotion > 20)>> /* do these sentences really make sense when $slaverapistx was just described as eager? */ $slaverapistx.slaveName accepts your orders without comment and lowers her virgin pussy on $activeSlave.slaveName's ready <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>>. @@.hotpink;$slaverapistx.slaveName is further broken to slavery@@ by this application of her body, which naturally @@.lime;will break in her pussy.@@ <<set $slaverapistx.vagina = 1, $slaverapistx.devotion += 10>> <<elseif ($slaverapistx.devotion >= -20)>> @@ -260,16 +239,8 @@ You take a look at the bound toy. <<elseif ($slaverapistx.energy > 95) && ($slaverapistx.devotion > 20)>> You tell the randy $slaverapistx.slaveName that $activeSlave.slaveName's <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>> is all hers. The slave life has so affected $slaverapistx.slaveName that she is quite eager to rape another slave, just for the perverted novelty of the act. <<if ($slaverapistx.vagina == 0)>> /* losing virginity */ - <<if ($slaverapistx.devotion > 20)>> - $slaverapistx.slaveName accepts your orders without comment and lowers her virgin pussy on $activeSlave.slaveName's ready <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>>. @@.hotpink;$slaverapistx.slaveName is further broken to slavery@@ by this application of her body, which naturally @@.lime;will break in her pussy.@@ - <<set $slaverapistx.vagina = 1, $slaverapistx.devotion += 10>> - <<elseif ($slaverapistx.devotion >= -20)>> - $slaverapistx.slaveName is clearly unhappy at the idea of losing her pearl of great price to $activeSlave.slaveName; this probably isn't what she imagined her first real sex would be like. She fears she might get pregnant. Nevertheless, @@.hotpink;she is further broken to slavery@@ by this application of her body, which naturally @@.lime;breaks in her pussy.@@ - <<set $slaverapistx.vagina = 1, $slaverapistx.devotion += 4>> - <<else>> - As you anticipated, $slaverapistx.slaveName refuses to give $activeSlave.slaveName her virginity. However, since $slaverapistx.slaveName is restrained her resistance amounts to @@.mediumorchid;horrified tears@@ and @@.gold;frightened begging.@@ Naturally, this cruel act @@.lime;breaks in her pussy.@@ - <<set $slaverapistx.vagina = 1, $slaverapistx.devotion -= 5, $slaverapistx.trust -= 5>> - <</if>> + $slaverapistx.slaveName accepts your orders without comment and lowers her virgin pussy on $activeSlave.slaveName's ready <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>>. @@.hotpink;$slaverapistx.slaveName is further broken to slavery@@ by this application of her body, which naturally @@.lime;will break in her pussy.@@ + <<set $slaverapistx.vagina = 1, $slaverapistx.devotion += 10>> <<if $slaverapistx.mother == $activeSlave.ID>> <<if ($activeSlave.penetrativeCount == 0)>> $activeSlave.slaveName gasps and her eyes widen as she feels the tender folds of a pussy - and none other than her daughter's - embracing her <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>> for the first time. @@ -348,16 +319,8 @@ You take a look at the bound toy. <<else>> The two slaves turn eagerly to the business of sex. <<if ($slaverapistx.vagina == 0)>> /* losing virginity */ - <<if ($slaverapistx.devotion > 20)>> - $slaverapistx.slaveName accepts your orders without comment and lowers her virgin pussy on $activeSlave.slaveName's ready <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>>. @@.hotpink;$slaverapistx.slaveName is further broken to slavery@@ by this application of her body, which naturally @@.lime;will break in her pussy.@@ - <<set $slaverapistx.vagina = 1, $slaverapistx.devotion += 10>> - <<elseif ($slaverapistx.devotion >= -20)>> - $slaverapistx.slaveName is clearly unhappy at the idea of losing her pearl of great price to $activeSlave.slaveName; this probably isn't what she imagined her first real sex would be like. She fears she might get pregnant. Nevertheless, @@.hotpink;she is further broken to slavery@@ by this application of her body, which naturally @@.lime;breaks in her pussy.@@ - <<set $slaverapistx.vagina = 1, $slaverapistx.devotion += 4>> - <<else>> - As you anticipated, $slaverapistx.slaveName refuses to give $activeSlave.slaveName her virginity. However, since $slaverapistx.slaveName is restrained her resistance amounts to @@.mediumorchid;horrified tears@@ and @@.gold;frightened begging.@@ Naturally, this cruel act @@.lime;breaks in her pussy.@@ - <<set $slaverapistx.vagina = 1, $slaverapistx.devotion -= 5, $slaverapistx.trust -= 5>> - <</if>> + $slaverapistx.slaveName accepts your orders without comment and lowers her virgin pussy on $activeSlave.slaveName's ready <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>>. @@.hotpink;$slaverapistx.slaveName is further broken to slavery@@ by this application of her body, which naturally @@.lime;will break in her pussy.@@ + <<set $slaverapistx.vagina = 1, $slaverapistx.devotion += 10>> <<if $slaverapistx.mother == $activeSlave.ID>> <<if ($activeSlave.penetrativeCount == 0)>> $activeSlave.slaveName gasps and her eyes widen as she feels the tender folds of a pussy - and none other than her daughter's - embracing her <<if ($activeSlave.clit >= 4)>>massive clit<<else>>_dicksize dick<</if>> for the first time. diff --git a/src/pregmod/fSlaveSlaveVagConsummate.tw b/src/pregmod/fSlaveSlaveVagConsummate.tw index e667c50a26255951f1589ab1c5722a9465adee70..9b7bf81d1612cd18d1a2f19bbcbff31d33ba4d72 100644 --- a/src/pregmod/fSlaveSlaveVagConsummate.tw +++ b/src/pregmod/fSlaveSlaveVagConsummate.tw @@ -76,7 +76,7 @@ You take a look at the slave you selected. <</if>> <<elseif ($slaverapistx.fetish == "sadist") && ($slaverapistx.fetishStrength > 20) && ($slaverapistx.devotion >= -20)>> - With the prospect of torturing another slave <<if $slaverapistx.dick > 0>>her _dicksize member springs instantly to attention<<elseif ($slaverapistx.clit >= 4)>>her clit becomes engroged<<else>>she becomes wet and flushed<</if>> + With the prospect of torturing another slave <<if $slaverapistx.dick > 0>>her _dicksize member springs instantly to attention<<elseif ($slaverapistx.clit >= 4)>>her clit becomes engorged<<else>>she becomes wet and flushed<</if>> <<elseif ($slaverapistx.attrXX > 65) && ($slaverapistx.devotion >= -20)>> Since $slaverapistx.slaveName likes sticking her <<if $slaverapistx.dick > 0>>_dicksize penis<<elseif ($slaverapistx.clit >= 4)>>massive clit<<else>>strap-on<</if>> in girls, she doesn't take much convincing. @@ -221,7 +221,7 @@ Next, you see to $activeSlave.slaveName. <<elseif ($slaverapistx.energy > 95) && ($slaverapistx.devotion > 20) && ($activeSlave.devotion < -20)>> - You arrange $activeSlave.slaveName on the bed with her pussy defenseless and available, and then tell the randy $slaverapistx.slaveName that it's all hers. The slave life has so affected $slaverapistx.slaveName that she is quite eager to rape another slave, just for the perverted novelty of the act. Her high libido keeps her going for a long time, brining the helpless toy to one forced orgasm after another. By the end of the day $activeSlave.slaveName is lying on the bed, all worn out, her cunt <<if $slaverapistx.dick > 0>>dripping with cum<<else>>overflowing with juices<</if>>, to her horror andresentment, while $slaverapistx.slaveName is sleeping next to her in a state of obvious satiation and bliss. + You arrange $activeSlave.slaveName on the bed with her pussy defenseless and available, and then tell the randy $slaverapistx.slaveName that it's all hers. The slave life has so affected $slaverapistx.slaveName that she is quite eager to rape another slave, just for the perverted novelty of the act. Her high libido keeps her going for a long time, brining the helpless toy to one forced orgasm after another. By the end of the day $activeSlave.slaveName is lying on the bed, all worn out, her cunt <<if $slaverapistx.dick > 0>>dripping with cum<<else>>overflowing with juices<</if>>, to her horror and resentment, while $slaverapistx.slaveName is sleeping next to her in a state of obvious satiation and bliss. <<elseif ($activeSlave.devotion <= 20) || ($slaverapistx.devotion <= 20)>> You order $activeSlave.slaveName onto the couch and tell $slaverapistx.slaveName to get on with it. They fuck mechanically, gazing with roiling emotions into each others' eyes. They do seem to come to some sort of a nonverbal understanding on the necessity of getting it done, and there is no real unhappiness in either of them when they finish and disentangle themselves. As they clean themselves and exit, you notice $slaverapistx.slaveName's looking a little more longingly at $activeSlave.slaveName. diff --git a/src/pregmod/fillUpButt.tw b/src/pregmod/fillUpButt.tw index a52e565fb48b8ada70dc20a5f23d8a2af3ea202b..cf0d1f8d6d09417a63be7694e8b4a5462b2e0e3c 100644 --- a/src/pregmod/fillUpButt.tw +++ b/src/pregmod/fillUpButt.tw @@ -51,7 +51,7 @@ before calling her over so you can play with her <</if>> <<if $activeSlave.inflation > 1 && $activeSlave.preg > 1>> - She looks uneasey at the prospect of that much fluid entering her rear, far more than could be considered normal. + She looks uneasy at the prospect of that much fluid entering her rear, far more than could be considered normal. <<set _pregDiscovery = 1>> <<else>> <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.devotion >= -20)>> @@ -67,7 +67,7 @@ before calling her over so you can play with her <</if>> <<if _pregDiscovery == 1>> - Not wanting to risk such a mess, you send her for a medical examination. While most of the tests come back normal, one in particluar catches your eye; @@.lime;She is pregnant<<if $activeSlave.preg > 10>> and surprisingly far along<</if>>.@@ She should be able to still handle at least two liters of $activeSlave.inflationType up her ass, however. + Not wanting to risk such a mess, you send her for a medical examination. While most of the tests come back normal, one in particular catches your eye; @@.lime;She is pregnant<<if $activeSlave.preg > 10>> and surprisingly far along<</if>>.@@ She should be able to still handle at least two liters of $activeSlave.inflationType up her ass, however. <<set $activeSlave.inflation = 0, $activeSlave.inflationType = "none", $activeSlave.inflationMethod = 0, $activeSlave.pregKnown = 1>> <<elseif $activeSlave.fetish == "mindbroken">> <<if canWalk($activeSlave)>> diff --git a/src/pregmod/fillUpFace.tw b/src/pregmod/fillUpFace.tw index efb55dca39dcae8fa60e566295b00c6ea50cd02f..21f65fc7c8566f12efe4594370c2ad8547a99940 100644 --- a/src/pregmod/fillUpFace.tw +++ b/src/pregmod/fillUpFace.tw @@ -7,7 +7,7 @@ You attach a hose to $dairyName tap with the pipes set to pump $activeSlave.inflationType and affix a special nozzle to it, one with straps useful for anchoring it to resisting slaves, before calling her over so you can feel her up while you force-feed her $activeSlave.inflationType. <<if $activeSlave.inflation > 1 && $activeSlave.preg > 1>> - She looks uneasey at the prospect of taking in that much, far more than could be considered normal. + She looks uneasy at the prospect of taking in that much, far more than could be considered normal. <<set _pregDiscovery = 1>> <<else>> <<if ($activeSlave.fetish == "submissive") && ($activeSlave.devotion >= -20)>> @@ -23,7 +23,7 @@ You attach a hose to $dairyName tap with the pipes set to pump $activeSlave.infl <</if>> <<if _pregDiscovery == 1>> - Not wanting to risk such a mess, you send her for a medical examination. While most of the tests come back normal, one in particluar catches your eye; @@.lime;She is pregnant<<if $activeSlave.preg > 10>> and surprisingly far along<</if>>.@@ She should be able to still handle at least two liters of $activeSlave.inflationType, however. + Not wanting to risk such a mess, you send her for a medical examination. While most of the tests come back normal, one in particular catches your eye; @@.lime;She is pregnant<<if $activeSlave.preg > 10>> and surprisingly far along<</if>>.@@ She should be able to still handle at least two liters of $activeSlave.inflationType, however. <<set $activeSlave.inflation = 0, $activeSlave.inflationType = "none", $activeSlave.inflationMethod = 0, $activeSlave.pregKnown = 1>> <<elseif $activeSlave.fetish == "mindbroken">> <<if canWalk($activeSlave)>> diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw index ef41134f7a0384db77bcea664e2094d6ea9309e4..4a646eb947fd9c587b116bc4e3718c24583fbbb9 100644 --- a/src/pregmod/managePersonalAffairs.tw +++ b/src/pregmod/managePersonalAffairs.tw @@ -524,6 +524,15 @@ __Drugs__ You are not on any stamina enhancers. [[More stamina means more sex|Manage Personal Affairs][$PC.staminaPills = 1]] <</if>> +<br><br> +__Other Personal Business__ +<<if $rep >= 10000>> +<br> [[Visit the Black Market|The Black Market]] +<<elseif $rep > 7500>> +<br> You lack the reputation to be invited to the underground Black Market. +<</if>> + + <<if $propOutcome == 1 && $arcologies[0].FSRestart != "unset">> <br><br> __Elite Breeder Qualifications__ diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw index b246458d6138d8818844a2e4da1699d3637aafb5..0d1d6339d79ec75fe5e5372247a326a29b21d52a 100644 --- a/src/pregmod/newChildIntro.tw +++ b/src/pregmod/newChildIntro.tw @@ -552,7 +552,7 @@ You slowly strip down, gauging her reactions to your show, until you are fully n <</if>> <<if $arcologies[0].FSSupremacist >= 50>> - <<if $activeSlave.race is $arcologies[0].FSSupremacistRace>> + <<if $activeSlave.race == $arcologies[0].FSSupremacistRace>> She noticed everybody else is the same race as her, and @@.mediumaquamarine;feels right at home among them.@@ <<set $activeSlave.trust += 2>> <</if>> @@ -763,7 +763,7 @@ You slowly strip down, gauging her reactions to your show, until you are fully n <<if $activeSlave.dick > 0 && canAchieveErection($activeSlave)>> <br><<link "Dominate her penis">> <<replace "#result">> - As you inspect her, you take note of her fully functional <<if $activeSlave.dick == 1>>tiny dick<<elseif $activeSlave.dick == 2>>cute dick<<elseif $activeSlave.dick is 3>>dick<<elseif $activeSlave.dick is 4>>big dick<<elseif $activeSlave.dick is 5>>impressive dick<<elseif $activeSlave.dick is 6>>huge dick<</if>>. You gently begin fondling her penis, grinning at the look of confusion and lust growing on her face. + As you inspect her, you take note of her fully functional <<if $activeSlave.dick == 1>>tiny dick<<elseif $activeSlave.dick == 2>>cute dick<<elseif $activeSlave.dick == 3>>dick<<elseif $activeSlave.dick == 4>>big dick<<elseif $activeSlave.dick == 5>>impressive dick<<elseif $activeSlave.dick == 6>>huge dick<</if>>. You gently begin fondling her penis, grinning at the look of confusion and lust growing on her face. <<if $activeSlave.dick == 1>> You scoff at her as her micropenis barely fills your palm. <<elseif $activeSlave.dick == 2>> @@ -1131,7 +1131,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s <<set $activeSlave.devotion += 5>> <<set $activeSlave.trust += 10>> <<replace "#result">> - You cuff her wrists and ankles, bend all four limbs behind her, secure them together, and hoist her up to the ceiling on a rope. She hangs up there like a sex slave chandelier, breasts swaying in a lovely way whenever she squirms. Periodically you let her down to stretch her aching limbs, but whenever you put your decoration back up you add some clips with little bells on them: first the nose, then the nipples, and finally the <<if $activeSlave.dick != 0>>dickhead<<else>>pussylips<</if>>. By the end of the day your work is accompanied by the sweet sounds of ringing bells and @@.hotpink;inappropriate laughter@@ in her <<if $activeSlave.voice is 3>>high, girlish<<elseif $activeSlave.voice is 2>>feminine<<else>>deep<</if>> voice. She seems to think it's a game and @@.mediumaquamarine;trust you more@@ for playing it with her. + You cuff her wrists and ankles, bend all four limbs behind her, secure them together, and hoist her up to the ceiling on a rope. She hangs up there like a sex slave chandelier, breasts swaying in a lovely way whenever she squirms. Periodically you let her down to stretch her aching limbs, but whenever you put your decoration back up you add some clips with little bells on them: first the nose, then the nipples, and finally the <<if $activeSlave.dick != 0>>dickhead<<else>>pussylips<</if>>. By the end of the day your work is accompanied by the sweet sounds of ringing bells and @@.hotpink;inappropriate laughter@@ in her <<if $activeSlave.voice == 3>>high, girlish<<elseif $activeSlave.voice == 2>>feminine<<else>>deep<</if>> voice. She seems to think it's a game and @@.mediumaquamarine;trust you more@@ for playing it with her. <</replace>> <</link>> diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw index a46cd7e5bc01a3dea9edf00708073937cf765548..414159d8a650711ffd121d01d922ab398e383e6a 100644 --- a/src/pregmod/pRaped.tw +++ b/src/pregmod/pRaped.tw @@ -151,7 +151,7 @@ Now the only question is what to do with the would-be rapist. You could toss the <<set $activeSlave.preg = 1>> <</if>> <</if>> - <<if $activeSlave.publicCount>><<set $activeSlave.publicCount += 47>><<else>><<set $activeSlave.publicCount to 47>><</if>> + <<if $activeSlave.publicCount>><<set $activeSlave.publicCount += 47>><<else>><<set $activeSlave.publicCount = 47>><</if>> <<set $cash -= $contractCost>> <<replace "#result">> You declare her holes fair game for the entire arcology. She spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ diff --git a/src/pregmod/reMaleArcologyOwner.tw b/src/pregmod/reMaleArcologyOwner.tw index e530722652081ffd6b9cab6c7b9a44c1f7f70bca..fe711ada74036c689464cdef2d02f8677f75d007 100644 --- a/src/pregmod/reMaleArcologyOwner.tw +++ b/src/pregmod/reMaleArcologyOwner.tw @@ -19,7 +19,7 @@ He strikes a fine balance in conversation with you, firm enough to not overpower <</link>> <br><<link "Walk past him and out onto an unoccupied balcony">> <<replace "#result">> - You walk past him and out onto a balcony. He politely disengages himself and follows, meeting your gaze with a twinkle in his eye. You start talking of nothing of real consequence, but you find that you do have a fair amount to discuss and joke about, since there are oddities to your life that only another slaveowning arcology owner can really understand. You discover that he is very willing to share $PC.refreshment, and you break out some of your best. The party takes notice of your tete-a-tete, but his judgment was obviously correct. Rather than looking down on you, the other prominent guests seem respectfully envious of his access to you. This is still the case even when he starts to get flirty, leaning into you, brushing against you, and more. <<if $assistantName is "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> cleared your suite long ago, so when he finally nudges his hip against yours and does not take it away, you take him by the hand and lead him there. He stops you with a hand at the door to the suite and unbuttons his shirt, revealing a triathlete's tanned and sculpted body. As you begin to strip, he embraces you, whispering, "You have no idea how nice this is." It's clear it's been a long time since you've let someone else take the lead, and he sometimes has to snap wrestle you for dominance. He leaves a few hours later with a satisfied expression, giving you a deep kiss on his way out in full public view. @@.green;Your reputation has greatly improved.@@ + You walk past him and out onto a balcony. He politely disengages himself and follows, meeting your gaze with a twinkle in his eye. You start talking of nothing of real consequence, but you find that you do have a fair amount to discuss and joke about, since there are oddities to your life that only another slaveowning arcology owner can really understand. You discover that he is very willing to share $PC.refreshment, and you break out some of your best. The party takes notice of your tete-a-tete, but his judgment was obviously correct. Rather than looking down on you, the other prominent guests seem respectfully envious of his access to you. This is still the case even when he starts to get flirty, leaning into you, brushing against you, and more. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> cleared your suite long ago, so when he finally nudges his hip against yours and does not take it away, you take him by the hand and lead him there. He stops you with a hand at the door to the suite and unbuttons his shirt, revealing a triathlete's tanned and sculpted body. As you begin to strip, he embraces you, whispering, "You have no idea how nice this is." It's clear it's been a long time since you've let someone else take the lead, and he sometimes has to snap wrestle you for dominance. He leaves a few hours later with a satisfied expression, giving you a deep kiss on his way out in full public view. @@.green;Your reputation has greatly improved.@@ <<if isPlayerFertile($PC)>> <<KnockMeUp $PC 60 0 -4>> <</if>> @@ -32,7 +32,7 @@ He strikes a fine balance in conversation with you, firm enough to not overpower <br><<link "Quickly arrange an anonymous night out for him">> <<replace "#result">> You immediately enlist $assistantName to help you make some hasty preparations, and then send him a message asking him if he'd like to spend a night out with you, as a couple of unremarkable citizens. He glances at you with a curious expression, and you direct him to a side room. He finds you there, changing into the heavy, anonymizing armor of one of your mercenaries; you have a male suit for him, too. Once you're both suited up, you move to show him how to activate the face-obscuring helmet, but you find that he's already got it on and active. "This," he says, "is either the best or the stupidest date idea I have ever heard. Let's fucking do this." You pass a mercenary on your way out onto the club, and he cannot resist giving you a thumbs up, which your fellow arcology owner fortunately fails to notice. You patrol for a while, using internal comms to joke about life as an arcology owner, something he clearly gets to do too infrequently. You don't mind the chance, either. Your mercenaries frequently spend time together off duty, so nobody sees anything unusual about a male and female in mercenary armor sharing a milkshake at a dairy bar, even when they start to engage in increasingly rough public flirting, armor and all. Later, your slaves are obliged to pick up and sort a trail of discarded armor pieces leading from the entry to your penthouse all the way to your suite, which is now emitting the indistinct sounds of very energetic sex. A few hours later, when you're showering up together so he can head back to his domain, he looks at you and says seriously, "That was pretty fun. If things ever go to shit, I wouldn't mind wearing that armor for real." Your mercenaries cannot keep their mouths shut, for once, and the almost unbelievably juicy story of the arcology owners wearing borrowed armor to go on an anonymous date spreads like wildfire. @@.green;Your reputation has greatly improved.@@ - <<set $desc = "a flirtacious thank-you note from a male arcology owner of your acquaintance">> + <<set $desc = "a flirtatious thank-you note from a male arcology owner of your acquaintance">> <<set $trinkets.push($desc)>> <<if isPlayerFertile($PC)>> <<KnockMeUp $PC 60 0 -4>> diff --git a/src/pregmod/reTheSirenStrikesBack.tw b/src/pregmod/reTheSirenStrikesBack.tw index e3af815d6fe701623a10bb62b0dcbf23f2fc39d1..6e068bc73f0d9d5ea5433ac9258669bac2cb38ad 100644 --- a/src/pregmod/reTheSirenStrikesBack.tw +++ b/src/pregmod/reTheSirenStrikesBack.tw @@ -92,7 +92,7 @@ Several weeks have passed since you gained the musical prodigy and you couldn't <<if _ssb.amp != 1>> <br><<link "Enslave them and punish them for their actions">> <<replace "#result">> - You decide the coward needs more punishment. You order a whip brought to you and give her several lashes directly across her exposed genetalia. She cries out with each lash as her nethers accumulate angry red welts, some even bleeding slightly. After the yelps stop, you feel enough punishment has been given for now and have the producer turned slave hauled to her feet for a proper inspection. + You decide the coward needs more punishment. You order a whip brought to you and give her several lashes directly across her exposed genitalia. She cries out with each lash as her nethers accumulate angry red welts, some even bleeding slightly. After the yelps stop, you feel enough punishment has been given for now and have the producer turned slave hauled to her feet for a proper inspection. <br> <<set $activeSlave.recruiter = 0, $activeSlave.health -= 20>> <<include "New Slave Intro">> diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw index 62592fcb4e04c3b2368445f0c825af3706dc1968..c4c5e7d70021f6f318d113547cf36fb188ad85aa 100644 --- a/src/pregmod/seFCTVshows.tw +++ b/src/pregmod/seFCTVshows.tw @@ -65,7 +65,7 @@ There is an audible tone from your screen, which then displays a message: <br><br>Jules smiles. "That's exactly right Master McMahon, she's going to be <<if $seeExtreme == 0>><i>hugged until she smiles</i><<else>>fucked to death<</if>>. Her precious popularity in the old world will have the locals lined up all the way to New New Jersey waiting for their turn. I'd never question her master's decision, but if it were me, I'd pump her full of curatives and stimulants during the sentence. That way, she doesn't <<if $seeExtreme == 0>><i>smile</i><<else>>die or pass out<</if>> too soon. I think her master is being lenient after the way she badmouthed him in a live broadcast." <br><br>... <<elseif $randShow == 2 && $showOne > 3 || $showOne == 2>> - The program is showing some poorly-shot video showing a woman with flaming-red short hair angrily shouting at a large but uncomfortable-looking man. The title text at the bottom says: <b>"EmancipationGate: Emancipation Movement Exposed"</b> The video continues, revealing more of the angry woman. She's short, wearing a sweaty tanktop that makes her bushy underarm hair stand out. Based on the audio thus far, it seems she's trying to tell the large man to keep <<if $seeExtreme == 0>><i>hugging their captives until they smile</i><<else>>torturing their captives until they die<</if>>, that it has to be convincing for the camera. The man says he isn't comfortable doing that to kids, but the woman shouts him down by saying they're only migrant man brats before beginning some nonsensical babble about patriarchy and slavery. The video seems to be being shot on a small handheld device, and pans over to reveal a bunch of severely <<if $seeExtreme == 0>><i>hugged</i><<else>>beaten<</if>> children in slave chains that look like obvious S&M props to your well-trained eye. The angry woman's rant is still continuing from the background, but suddenly stops to be replaced with a yell: <i>"Get the fuck away from the subjects, you better not be fucking filming any..."</i> and the video cuts out. + The program is showing some poorly-shot video showing a woman with flaming-red short hair angrily shouting at a large but uncomfortable-looking man. The title text at the bottom says: <b>"EmancipationGate: Emancipation Movement Exposed"</b> The video continues, revealing more of the angry woman. She's short, wearing a sweaty tank top that makes her bushy underarm hair stand out. Based on the audio thus far, it seems she's trying to tell the large man to keep <<if $seeExtreme == 0>><i>hugging their captives until they smile</i><<else>>torturing their captives until they die<</if>>, that it has to be convincing for the camera. The man says he isn't comfortable doing that to kids, but the woman shouts him down by saying they're only migrant man brats before beginning some nonsensical babble about patriarchy and slavery. The video seems to be being shot on a small handheld device, and pans over to reveal a bunch of severely <<if $seeExtreme == 0>><i>hugged</i><<else>>beaten<</if>> children in slave chains that look like obvious S&M props to your well-trained eye. The angry woman's rant is still continuing from the background, but suddenly stops to be replaced with a yell: <i>"Get the fuck away from the subjects, you better not be fucking filming any..."</i> and the video cuts out. <br><br> The segment cuts back to two news anchors, a dark-haired man with a mustache and an aging bottle blonde. <br><br>The bottle blonde speaks to the viewers. "Some of you may recognize the woman in that video as Angry Red, noted femsupremacist and a leading figure in the Old World Emancipation Movement. The video you saw was released along with countless other media files and documents from the movement in the EmancipationGate hacktivist attack. This particular video has been confirmed by computer analysis to be behind the scenes footage from the movement's latest documentary about the horrors of slavery." @@ -368,7 +368,7 @@ The offered price is <<print cashFormat($slaveCost)>>. <<set $showFive += 1, $lastShow = 5>> It looks like the random function chose to play an episode of the slave-breeding for beginners series: 'Husbandry with Millie'. The show is hosted by the famous and charismatic Millie, a slave breeder from Arturus who appears to be in her mid thirties. She's wearing something resembling a maternity dress over her large pregnant belly, but the loose fabric doesn't hide her enormous hips and complementary ass. The dress only comes part of the way up her chest, leaving her large milk-engorged breasts exposed as they rest atop the fabric. Millie begins the show the same way as always, by giving her viewers some encouragement. "Anyone can become a breeder, even you! Just be willing to learn, and as I always say..." she pats her full belly meaningfully "be ready to get your hands dirty!" <br><br> - <<set $randShow to random(2)+1>> + <<set $randShow = random(2)+1>> <<if $randShow == 1 && $showFive > 3 || $showFive == 1>> Millie walks away from the classroom-like set, followed by a camera panning along beside her. Her purposeful steps and swinging hips set her breasts jiggling and sending droplets of milk flying from her dark milky nipples. It takes a sadly brief time for her to arrive at her destination, a mostly-white clinical-looking set prepared with several naked--and presumably fertile--slaves. As she comes to a stop in front of the line of slaves, all of the beautiful girls bow their heads and greet her. "<i>Hello Mistress Millie!</i>" <br><br> @@ -404,7 +404,7 @@ The offered price is <<print cashFormat($slaveCost)>>. <<set $showSix += 1, $lastShow = 6>> It looks like the random function chose to play an episode of the 'Modern Dairy' edutainment series, which opens with a montage of milk-related food and cooking shots. After the last of the opening credits disappears, the show sticks to a single shot from the montage, a delicious looking bowl of cereal. The camera zooms out to reveal the show's host wearing her trademark cow print leotard, and getting just a little too much enjoyment out of her cereal. She slowly puts the spoon down while savoring her cereal, reluctantly swallowing and starting the show. "Hi there y'all, welcome to another episode of Modern Dairy!" She gives the camera a wave--setting her gargantuan melons wobbling inside the spandex-like leotard--and the camera fades to black. <br><br> - <<set $randShow to random(2)+1>> + <<set $randShow = random(2)+1>> <<if $seeExtreme == 0>> <<if $seeDicks == 0>> <<set $randShow = 1>> @@ -459,7 +459,7 @@ The offered price is <<print cashFormat($slaveCost)>>. <<set $showSeven += 1, $lastShow = 7>> It looks like the random function chose to play an educational program on arcologies titled: "Architecture + Ecology = Arcology". <<if $PC.engineering > 50>>The information is likely to be far too simplistic, considering your knowledge of engineering, but you watch anyway to see how most of your citizens view the massive structures.<<else>>Your practical experience means that this program is unlikely to tell you anything you don't already know, but you watch anyway to see how an average citizen views an arcology.<</if>> A likely-artificial voice of an older man narrates while the program displays video to demonstrate the topic being narrated. The show looks crisp and professional, but you can tell it doesn't have the budget that the more sexually-charged shows do. <br><br> - <<set $randShow to random(2)+1>> + <<set $randShow = random(2)+1>> <<if $randShow == 1 && $showSeven > 3 || $showSeven == 1>> This episode seems to be focusing on some basics in addition to an arcology's Penthouse. <br><br> @@ -487,7 +487,7 @@ The offered price is <<print cashFormat($slaveCost)>>. <<case 9>> - <<set $showNine += 1, $lastShow = 9, $randShow to random(3)+1>> + <<set $showNine += 1, $lastShow = 9, $randShow = random(3)+1>> It looks like the random function chose to play <<if $randShow == 1>> a documentary on the surging Repopulation movement: "Continuing the Dream". After the opening credits, the documentary introduces a young and extremely pregnant woman as the commentator. The program makes an impassioned argument about the need for a new generation of citizens and slaves that were born into the dream of the free cities. The woman is wearing semi-conservative business attire, and has on elegant makeup. She looks somewhat plain when compared to the hyper-sexualized style of other FCTV programming, though she does make it plain over the course of the program that she loves sex more than ever. She tends to use herself as an example to show that pregnancy no longer means limitations or sacrifice, instead emphasizing that she's on her fifth pregnancy and would rather be with child than without. @@ -973,12 +973,37 @@ The offered price is <<print cashFormat($slaveCost)>>. <<set _fctvs = $slaves.findIndex(function(s) { return s.ID == $Concubine.ID; })>> <<set $slaves[_fctvs].penetrativeCount += 1, $penetrativeTotal += 1>> <<elseif $sexualOpeness == 1>> - find your favorite cock to get a creampie from. + find your favorite cock to get a creampie from. You've never had a more lust-filled orgasm. <<else>> - find your favorite squirt dildo to creampie yourself with. + find your favorite squirt dildo to creampie yourself with. You've never had a more lust-filled orgasm. <</if>> - You've never had a more lust-filled orgasm. <</if>> + <<else>> + The random function begins playing a Free Cities documentary on the benefits of aphrodisiacs, which is almost halfway over. A montage of out-of-context shots of injectors, suppositories, and bottles of liquid interspersed with very horny, sweaty slaves needily grinding on each other plays before cutting back to the presenter, a gorgeous young woman with long, brown hair in a tight one-piece red dress and matching heels. Her dress, practically a second skin, proudly reveals that she definitely isn't wearing a bra or panties of any kind but still leaves plenty up to the imagination increasing her enticing presence. She's with a handsome man in a labcoat, and they're sitting on a couch in an office with a microphone on a coffee table between them. + <br> + "I met with one of the leading scientists working on cleaner, higher-purity aphrodisiacs." the woman presenting narrates. + <br> + The scientist's volume fades in, and you can finally hear what he has to say. "The problem with most of the cheap stuff is it can make you sick and it can be really hard to kick an addiction to it. With products similar to what we aim to create those risks are severely mitigated, showing that the potential for healthy, prolonged use of aphrodisacs exists, and that cessation of use can be significantly easier." + <br> + The woman cuts in with a question. "But won't an easier time quitting mean a weaker product?" + <br> + "Not at all." he says confidently. "But I'd rather show you than tell you." he says, motioning to the camera. He signals to someone off-camera and an unresisting woman in a nun's outfit is dragged out and placed on her knees in the middle of the room by two men in street clothes. + <br> + "This was a nun from the old world, recently made a slave." he explains. "We do all of our testing on legally purchased slaves who are slated to work in brothels that use aphrodisiacs anyway, so there's no harm done." + <br> + One of the men from earlier walks back into frame and hands the scentist an injector. "This is one of our latest prototypes, the purest we've produced yet. I'm proud to be able to show it off today." he says as he prepares an injection site on the right side of the nun's neck. He moves the injector close to her neck, just barely grazing her skin. "Before I do this, for the cameras, how do you feel about taking it up the ass in front of this nice girl, Sister?" + <br> + The nun looks up with anger and defiance before speaking in a low tone "Do you not know that the unrighteous will not inherit the kingdom of God? Do not be deceived. Neither the sexually immoral, nor idolators, nor adulterers, nor m-" the scientist injects her, and her eyes immediately widen. Her cheeks quickly flush and her breathing becomes labored as she clenches her teeth. "What's the matter?" the scientist teases. "No more verses?" + <br> + The nun unconciously moves closer to him, and finds herself hugging his thigh and rubbing her crotch against his leg like a dog. Her robes are soaked right at the spot where her pussy ought to be, and she's drooling as she undoes the scientist's pants. When his big, soft cock flops out and slaps her face, she desperately licks and sucks on it to get it hard before hungrily deepthroating it at a maddening pace. The scientist eventually grabs her hair and rips his cock out of her mouth before blowing his load all over her face, all on camera. "One more time for the cameras." he says. "How do you feel about taking it up the ass in front of this nice girl, Sister?" + <br> + "Please fuck me." the nun whimpers. "Please. I need it. My... it burns." + <br> + "Fuck you in your ass?" he clarifies. + <br> + "Anywhere. Please, now. Please." + <br> + He bends her over the couch, right next to the presenter, who's been watching the entire time. She's transfixed with genuine interest in the aphrodisiacs and genuine cocklust for the scientist. The scientist slides his spit-covered cock into the nun's ass, and she thanks him through tears as she moans and desperately rubs her clit. He's pounding her hard and fast, and she cums quickly, but clearly she isn't satiated judging by how quickly she goes back to slamming her ass against the scientist after cumming. Eventually the sight of it is too much for the presenter, who mouths "fuck it" before hiking up the bottom of her dress to her hips revealing a beatifully puffy pussy and a carefully-sculpted landing strip. The presenter shifts over on the couch, and pulls the nun by her hair to make her eat her cunt. They go on like this for some time, with the nun and presenter frequently changing places, much to the delight of the scientist. By the end of the scene the nun is crying on the floor, leaking cum from every holy hole and staring off into space. The benefits of aphrodisiacs are quite clear. <</if>> <<default>> It seems there's a technical error preventing you from streaming, you tell $assistantName to look into it. diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw index 7931af14b6c54559afb38e6d04ef6c7c6ac35b21..bed1591b7a8180155498a806b9fd567b2cb4cf2e 100644 --- a/src/pregmod/sePlayerBirth.tw +++ b/src/pregmod/sePlayerBirth.tw @@ -1,4 +1,4 @@ -:: SE Player Birth [nobr] +:: SE Player Birth [nobr] <<set $nextButton = "Continue", $nextLink = "Scheduled Event">> @@ -25,7 +25,7 @@ PC.pregSource documentation <<set _curBabies = $PC.curBabies.length>> <<set _stilBirth = $PC.womb.length>> <<set WombFlush($PC)>> -/* difference in code below: _curBabies - count of live babies after birth, $PC.pregType = all babies in PC. I assume that dead fetuses do not count to reputation, etc, and PC manage to hide them. This mainly for future possibilities, or early birth trigger's. PC will not support partial birth - even she happens to be prenant at different stages at once, undeveloped babies will be dead as result. _stilBirth currently not used - it's just for future improvements.*/ +/* difference in code below: _curBabies - count of live babies after birth, $PC.pregType = all babies in PC. I assume that dead fetuses do not count to reputation, etc, and PC manages to hide them. This mainly for future possibilities, or early birth triggers. PC will not support partial birth - even she happens to be prenant at different stages at once, undeveloped babies will be dead as result. _stilBirth currently not used - it's just for future improvements.*/ <<set $PC.preg = 0, $PC.pregKnown = 0, $PC.labor = 0, $PC.births += _curBabies>> <<if $PC.pregSource == 0>> diff --git a/src/pregmod/theBlackMarket.tw b/src/pregmod/theBlackMarket.tw index 0dbf295ffd28e19f2263ccf0b8d3a45246ebf221..c0902166cd5ed6b9bc839f4cb40b827583849393 100644 --- a/src/pregmod/theBlackMarket.tw +++ b/src/pregmod/theBlackMarket.tw @@ -1,9 +1,127 @@ :: The Black Market [nobr] -<<set $nextButton = "Back", $nextLink = "Buy Slaves", $returnTo = "Buy Slaves", $showEncyclopedia = 1, $encyclopedia = "The Black Market">> +<<set $nextButton = "Back", $nextLink = "Main", $returnTo = "Main", $showEncyclopedia = 1, $encyclopedia = "The Black Market">> -You board your VTOL bird for the trip the the current location of the particularly exclusive, and quite lucrative, Black Market knowing full well that the trip may take far longer than anticipated; the market frequently relocates to shake the unwanted attention it inevitably gains. It's far easier than paying off authorities, especially with how outrageous their demands have become with the decline of the Old World. You're greeting by a gruff bouncer, already fully aware of just who you are and your permission to be there. "Check your weapons - No firearms allowed inside.<<if $Bodyguard != 0>> She may keep her blade," he gestures to $Bodyguard.slaveName, "but keep in mind. If you cause us trouble, you will not be going home in one piece.<<if $Bodyguard.amp <= -4>>" He taps his clearly bionic arm. "Disable her weapons systems. I know what she is capable of.<</if>><</if>>" +You board your VTOL bird for the trip to the current location of the particularly exclusive, and quite lucrative, Black Market knowing full well that the trip may take far longer than anticipated; the market frequently relocates to shake the unwanted attention it inevitably gains. It's far easier than paying off authorities, especially with how outrageous their demands have become with the decline of the Old World. You're greeting by a gruff bouncer, already fully aware of just who you are and your permission to be there. "Check your weapons - No firearms allowed inside.<<if $Bodyguard != 0>> She may keep her blade," he gestures to $Bodyguard.slaveName, "but keep in mind. If you cause us trouble, you will not be going home in one piece.<<if $Bodyguard.amp <= -4>>" He taps his clearly bionic arm. "Disable her weapons systems. I know what she is capable of.<</if>><</if>>" <br><br> -Once inside, you are able to fully absorb in the sights and sounds of the market proper. All sorts of items are available for purchase, from exotic beasts that may very well be the last of their kind, to the most lethal of weaponry both old and new, and even luxuries long gone. Despite the overbearing security, one's wallet can easiliy be emptied in this place. +Once inside, you are able to fully absorb in the sights and sounds of the market proper. All sorts of items are available for purchase, from exotic beasts that may very well be the last of their kind, to the most lethal of weaponry both old and new, and even luxuries long gone. Despite the overbearing security, one's wallet can easily be emptied in this place. + +<br><br> + +The main draw, however, is the prominent stage to the rear of the building where the most desirable and less than legal slaves are auctioned off. Enslaved celebrities, kidnapped royalty, the daughters of warlords and all manner of slaves outlawed for sale in most arcologies frequently make appearances before the hungry crowd. It's usually not worth the added risk or the price to buy these girls yourself, however. +/* This could use a variety of scenes for who is currently at auction, possibly even with slave purchase */ + +<br><br> +Of all the wonders present, the thing that catches your eye the most is a shady looking stall with a somehow even shadier looking merchant; a merchant who is beckoning you to come over. "A prominent arcology owner like yourself wandering around in here can only be looking for one thing: New and exciting ways to spice up <<if $PC.title == 1>>his<<else>>her<</if>> slaves! I've got the hottest research and tech straight from the labs waiting for you to peruse and some of the 'hottest' tech straight out of the research labs if you catch my drift." He shuffles around behind the counter, pulling out a stack of papers. + +<br> +<<if $dispensary == 0>> + <br>Even if you wanted to buy something, you lack the pharmaceutical fabricator to make use of it. +<<else>> + <<if ndef $thisWeeksFSWares>> + <<set $thisWeeksFSWares = $merchantFSWares.randomMany(2)>> + <</if>> + + <br> + "Now when it comes to the legal, relatively boring stuff, I've got the following available:" + + <<if $thisWeeksFSWares.length > 0>> + <<for _bm = 0; _bm < $thisWeeksFSWares.length; _bm++>> + <br> + <<if $thisWeeksFSWares[_bm] == "GenderRadicalistResearch">> + <<if $seePreg != 0 && $arcologies[0].FSGenderRadicalistResearch == 0>> + <<if $organFarmUpgrade > 0>> + <<if $cash >= 75000>> + [[Purchase schematics for anal pregnancy|The Black Market][$cash -= 75000, $arcologies[0].FSGenderRadicalistResearch = 1, _dump = $merchantFSWares.delete("GenderRadicalistResearch")]] //<<print cashFormat(75000)>>.// + <<else>> + You can not afford the asking price of <<print cashFormat(75000)>> for anal pregnancy schematics. "No discounts. No haggling. No price naming. Take it or leave it." + <</if>> + <<else>> + You lack the facilities needed to grow organs, so anal pregnancy schematics are currently out of your reach. + <</if>> + <<elseif $seePreg == 0>> + You have no interest in this pregnancy based research. + <<else>> + You already possess designs to facilitate anal pregnancy. + <<set _dump = $merchantFSWares.delete("GenderRadicalistResearch")>> + <</if>> + <</if>> + <<if $thisWeeksFSWares[_bm] == "TransformationFetishistResearch">> + <<if $arcologies[0].FSTransformationFetishistResearch == 0>> + <<if $ImplantProductionUpgrade == 1>> + <<if $cash >= 50000>> + [[Purchase designs for immense implants|The Black Market][$cash -= 50000, $arcologies[0].FSTransformationFetishistResearch = 1, _dump = $merchantFSWares.delete("TransformationFetishistResearch")]] //<<print cashFormat(50000)>>.// + <<else>> + You can not afford the asking price of <<print cashFormat(50000)>> for absurdly huge implant designs. "No big fake boobs for you. How sad it must be to be flat and enslaved by such a poor <<if $PC.title == 1>>Master<<else>>Mistress<</if>>" + <</if>> + <<else>> + You lack the facilities needed to produce implants of this caliber, so absurdly huge implant designs are currently unobtainable. + <</if>> + <<else>> + You already possess designs for oversized implants. + <<set _dump = $merchantFSWares.delete("TransformationFetishistResearch")>> + <</if>> + <</if>> + <<if $thisWeeksFSWares[_bm] == "AssetExpansionistResearch">> + <<if $arcologies[0].FSAssetExpansionistResearch == 0>> + <<if $cash >= 50000>> + [[Purchase formulas for extremely powerful growth drugs|The Black Market][$cash -= 50000, $arcologies[0].FSAssetExpansionistResearch = 1, _dump = $merchantFSWares.delete("AssetExpansionistResearch")]] //<<print cashFormat(50000)>>.// + <<else>> + You can not afford the asking price of <<print cashFormat(50000)>> for extremely powerful growth drug formulas. "Why'd you even come here if you didn't have the credits to buy anything?" + <</if>> + <<else>> + You already possess formulas for extremely powerful growth drugs. + <<set _dump = $merchantFSWares.delete("AssetExpansionistResearch")>> + <</if>> + <</if>> + <<if $thisWeeksFSWares[_bm] == "SlimnessEnthusiastResearch">> + <<if $arcologies[0].FSSlimnessEnthusiastResearch == 0>> + <<if $cash >= 75000>> + [[Purchase formulas for growth reversing drugs|The Black Market][$cash -= 75000, $arcologies[0].FSSlimnessEnthusiastResearch = 1, _dump = $merchantFSWares.delete("SlimnessEnthusiastResearch")]] //<<print cashFormat(75000)>>.// + <<else>> + You can not afford the asking price of <<print cashFormat(75000)>> for growth reversing drug formulas. "<<if $PC.boobsBonus > 0>>Guess you'll be keeping those knockers for now, <<if $PC.title == 0>>little miss top heavy<<else>>mr busty<</if>><<else>>Guess you don't mind sore backs. Leads to less sore knees, from what I've heard<</if>>." + <</if>> + <<else>> + You already possess formulas for growth reversing drugs. + <<set _dump = $merchantFSWares.delete("SlimnessEnthusiastResearch")>> + <</if>> + <</if>> + <<if $thisWeeksFSWares[_bm] == "YouthPreferentialistResearch">> + <<if $arcologies[0].FSYouthPreferentialistResearch == 0>> + <<if $cash >= 45000>> + [[Purchase formulas for extremely effective anti-aging beauty creams|The Black Market][$cash -= 45000, $arcologies[0].FSYouthPreferentialistResearch = 1, _dump = $merchantFSWares.delete("YouthPreferentialistResearch")]] //<<print cashFormat(45000)>>.// + <<else>> + You can not afford the asking price of <<print cashFormat(45000)>> for extremely effective anti-aging beauty creams. "<<if $PC.visualAge > 40>>Those wrinkles don't look that bad on you, so don't worry about not being able to afford this<<else>>Just tell them they look young, and well, don't give them any mirrors. Probably should keep your money troubles from them too<</if>>." + <</if>> + <<else>> + You already possess formulas for extremely effective anti-aging beauty cream. + <<set _dump = $merchantFSWares.delete("YouthPreferentialistResearch")>> + <</if>> + <</if>> + <<if $thisWeeksFSWares[_bm] == "HedonisticDecadenceResearch">> + <<if $arcologies[0].FSHedonisticDecadenceResearch == 0>> + <<if $cash >= 65000>> + [[Purchase recipes for highly addictive solid slave food|The Black Market][$cash -= 65000, $arcologies[0].FSHedonisticDecadenceResearch = 1, _dump = $merchantFSWares.delete("HedonisticDecadenceResearch")]] //<<print cashFormat(65000)>>.// + <<else>> + You can not afford the asking price of <<print cashFormat(65000)>> for highly addictive solid slave food recipes. "I promise you'll not be able to recreate this at home, so if you want to give your begging slave the treat she deserves, buy now! Or, you know, come back with money." + <</if>> + <<else>> + You already possess recipes for highly addictive solid slave food. + <<set _dump = $merchantFSWares.delete("HedonisticDecadenceResearch")>> + <</if>> + <</if>> + <</for>> + <<else>> + <br>You appear to already possess all the societal based schematics he has to offer. + <</if>> + + <br><br> + He gestures to a door in the back of the stall. "The good shit's back there, here's a list:" + <<if $merchantIllegalWares.length > 1>> + <<elseif $merchantIllegalWares.length == 1>> + <<else>> + <br>You appear to already possess all the black market schematics he has to offer. + <</if>> +<</if>> diff --git a/src/pregmod/theCattleRanch.tw b/src/pregmod/theCattleRanch.tw index eda09cf777681f87254099bf2b1d819616bac945..cab032308d48fab4c13a49e68424386eb3939a23 100644 --- a/src/pregmod/theCattleRanch.tw +++ b/src/pregmod/theCattleRanch.tw @@ -7,7 +7,7 @@ <<set $nextButton = "Continue", $nextLink = "Bulk Slave Intro", $slaveMarket = "TCR", $returnTo = "Main", $newSlaveIndex = 0>> <</if>> -//The Cattle Ranch is a controversial slave school operating primarily out of Pastoralistic Free Cities. Its business model is to offer the ideal free range dairy cow; one whos tits and belly reach the floor when she is on all fours. All cattle come optimized for milking, with big breast and gravid middles. Slave orphans have their heels clipped shortly after birth and are conditioned to believe they are actual livestock, resulting in a mindbreak like state. Between their wide hips and big butts and their heavy, milky breasts, they are often popular breeding slaves. They rarely display their stock over video call, instead favoring a more hands-on approach. Buyers can visit their local shops to view grazing cattle available for sale. Alternatively, they can watch the calfs frolic among their mothers or enjoy the sight of a breeding bull impregnate an empty womb. Cows are also specially trained to respond to spectators banging on the fence; oral awaits if you drop trou for them! <<if $TCR.schoolUpgrade != 0>><br><br>You have endowed a healthy sum of credits to <<if $TCR.schoolUpgrade == 1>>make their breeding bulls available for sale.<<else>>encourage the sale of heifers.<</if>> As a major benefac<<if $PC.title == 0>>trix<<else>>tor<</if>> of the ranch, you also receive a discount on them.<</if>>// +//The Cattle Ranch is a controversial slave school operating primarily out of Pastoralistic Free Cities. Its business model is to offer the ideal free range dairy cow; one whos tits and belly reach the floor when she is on all fours. All cattle come optimized for milking, with big breast and gravid middles. Slave orphans have their heels clipped shortly after birth and are conditioned to believe they are actual livestock, resulting in a mindbreak like state. Between their wide hips and big butts and their heavy, milky breasts, they are often popular breeding slaves. They rarely display their stock over video call, instead favoring a more hands-on approach. Buyers can visit their local shops to view grazing cattle available for sale. Alternatively, they can watch the calfs frolic among their mothers or enjoy the sight of a breeding bull impregnating an empty womb. Cows are also specially trained to respond to spectators banging on the fence; oral awaits if you drop trou for them! <<if $TCR.schoolUpgrade != 0>><br><br>You have endowed a healthy sum of credits to <<if $TCR.schoolUpgrade == 1>>make their breeding bulls available for sale.<<else>>encourage the sale of heifers.<</if>> As a major benefac<<if $PC.title == 0>>trix<<else>>tor<</if>> of the ranch, you also receive a discount on them.<</if>>// <br><br>The Cattle Ranch parades a choice selection of cows for your viewing pleasure. You're free to do as you please to the slaves, as long as you don't cause lasting harm to them.<<if isPlayerFertile($PC)>> You can't help but notice the number of bulls lining up along the fence sniffing at you.<</if>> @@ -39,4 +39,4 @@ <</if>> <br><br> -<<set $saleDescription = 1>><<include "Long Slave Description">> +<<set $saleDescription = 1>><<include "Long Slave Description">> \ No newline at end of file diff --git a/src/pregmod/widgets/bodySwapReaction.TW b/src/pregmod/widgets/bodySwapReaction.TW index 1a5f01e070de86c161d776acca34e30fb2c7257f..ab6b07f573c1d7f99cf95c6d6756ce0da06564be 100644 --- a/src/pregmod/widgets/bodySwapReaction.TW +++ b/src/pregmod/widgets/bodySwapReaction.TW @@ -134,7 +134,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> She is happy to find that a familiarly sized chest waiting for her. <<if ($args[0].physicalAge < $args[1].physicalAge-5) || ($args[0].boobShape != "saggy" && $args[0].boobShape != "downward facing" && ($args[1].boobShape == "saggy" || $args[1].boobShape == "downward facing"))>> /*(younger/perkier)*/ - She gasps when she realizes they ar now perkier and firmer than her old breasts. She toys with the supple flesh and sensitive nipples, groping them with childlike abandon. + She gasps when she realizes they are now perkier and firmer than her old breasts. She toys with the supple flesh and sensitive nipples, groping them with childlike abandon. <</if>> <<else>> She cautiously handles one breast, then the other, and is happy that at least one less thing is different today. @@ -189,7 +189,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> This new size excites her and she looks forward to experimenting with them. <<else>> - This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid.infuriates her@@ that you would do such a thing to her. + This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid;infuriates her@@ that you would do such a thing to her. <<set $args[0].devotion -= 5, $args[0].trust -= 5>> <</if>> <<elseif $args[0].boobs > $args[1].boobs+100 && $args[0].fetish == "boobs" && $args[0].fetishKnown>> /*(Bigger+breast fetish)*/ @@ -251,7 +251,7 @@ Now you only have to wait for her to wake up. <</if>> <br><br> - She cranes her neck to looks down on herself + She cranes her neck to look down on herself /*(breast changes)*/ <<if $args[0].boobsImplant > 0 && $args[1].boobsImplant > 0>> /*(breast implants)*/ @@ -279,7 +279,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> This new size excites her and she looks forward to experimenting with them. <<else>> - This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid.infuriates her@@ that you would do such a thing to her. + This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid;infuriates her@@ that you would do such a thing to her. <<set $args[0].devotion -= 10, $args[0].trust -= 10>> <</if>> <<elseif $args[0].boobs >= $args[1].boobs+20000>> /*(Extreme bigger breasts)*/ @@ -287,7 +287,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> This new size excites her and she looks forward to experimenting with them. <<else>> - This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid.infuriates her@@ that you would do such a thing to her. + This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid;infuriates her@@ that you would do such a thing to her. <<set $args[0].devotion -= 5, $args[0].trust -= 5>> <</if>> <<elseif $args[0].boobs > $args[1].boobs+100 && $args[0].fetish == "boobs" && $args[0].fetishKnown>> /*(Bigger+breast fetish)*/ @@ -308,7 +308,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> her bust has shrunk. She is saddened by the loss of the beautiful weight she once bore and struggles to keep herself under control for your sake, @@.mediumorchid;barely.@@ <<else>> - that her chest is not as large as it once was. @@.mediumcorchid;Tears leap into her eyes@@ as her shoulders begin to shake<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. + that her chest is not as large as it once was. @@.mediumorchid;Tears leap into her eyes@@ as her shoulders begin to shake<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. <</if>> <<set $args[0].devotion -= 5>> <<elseif $args[0].boobs <= $args[1].boobs-100 && $args[1].boobs > 300>> /*(Smaller breasts)*/ @@ -357,7 +357,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> This new size excites her and she looks forward to experimenting with them. <<else>> - This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid.infuriates her@@ that you would do such a thing to her. + This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid;infuriates her@@ that you would do such a thing to her. <<set $args[0].devotion -= 10, $args[0].trust -= 10>> <</if>> <<elseif $args[0].boobs >= $args[1].boobs+20000>> /*(Extreme bigger breasts)*/ @@ -365,7 +365,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> This new size excites her and she looks forward to experimenting with them. <<else>> - This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid.infuriates her@@ that you would do such a thing to her. + This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid;infuriates her@@ that you would do such a thing to her. <<set $args[0].devotion -= 5, $args[0].trust -= 5>> <</if>> <<elseif $args[0].boobs > $args[1].boobs+100 && $args[0].fetish == "boobs" && $args[0].fetishKnown>> /*(Bigger+breast fetish)*/ @@ -386,7 +386,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> her bust has shrunk. She is saddened by the loss of the beautiful weight she once bore and struggles to keep herself under control for your sake, @@.mediumorchid;barely.@@ <<else>> - that her chest is not as large as it once was. @@.mediumcorchid;Tears leap into her eyes@@ as her shoulders begin to shake<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. + that her chest is not as large as it once was. @@.mediumorchid;Tears leap into her eyes@@ as her shoulders begin to shake<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. <</if>> <<set $args[0].devotion -= 5>> <<elseif $args[0].boobs <= $args[1].boobs-100 && $args[1].boobs > 300>> /*(Smaller breasts)*/ @@ -415,7 +415,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> and finds not only her implants gone, but her breasts entirely. She is saddened by her flat chest and struggles to keep herself under control for your sake, @@.mediumorchid;barely.@@ <<else>> - and finds that her implants are gone, along with the rest of her breasts. @@.mediumcorchid;Tears leap into her eyes@@ as her shoulders begin to shake<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. + and finds that her implants are gone, along with the rest of her breasts. @@.mediumorchid;Tears leap into her eyes@@ as her shoulders begin to shake<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. <</if>> <<set $args[0].devotion -= 5>> <<elseif $args[0].boobs <= 300>> /*flat*/ @@ -439,7 +439,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> This new size excites her and she looks forward to experimenting with them. <<else>> - This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid.infuriates her@@ that you would do such a thing to her. + This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid;infuriates her@@ that you would do such a thing to her. <<set $args[0].devotion -= 5, $args[0].trust -= 5>> <</if>> <<elseif $args[0].boobs > $args[1].boobs+100 && $args[0].fetish == "boobs" && $args[0].fetishKnown>> /*(Bigger+breast fetish)*/ @@ -460,7 +460,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> ands sees her bust has shrunk. She is saddened by the loss of her implants and struggles to keep herself under control for your sake, @@.mediumorchid;barely.@@ <<else>> - ands sees that her chest is not as large as it once was. @@.mediumcorchid;Tears leap into her eyes@@ as her natural breasts begin to quiver<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. + ands sees that her chest is not as large as it once was. @@.mediumorchid;Tears leap into her eyes@@ as her natural breasts begin to quiver<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. <</if>> <<set $args[0].devotion -= 5>> <<elseif $args[0].boobs <= $args[1].boobs-100 && $args[1].boobs > 300>> /*(Smaller breasts)*/ @@ -489,7 +489,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> and sees no tits at all. She is saddened by her flat chest and struggles to keep herself under control for your sake, @@.mediumorchid;barely.@@ <<else>> - and sees no tits at all. @@.mediumcorchid;Tears leap into her eyes@@ as her shoulders begin to shake<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. + and sees no tits at all. @@.mediumorchid;Tears leap into her eyes@@ as her shoulders begin to shake<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. <</if>> <<set $args[0].devotion -= 5>> <<elseif $args[0].boobs <= 300>> /*flat*/ @@ -513,7 +513,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> This new size excites her and she looks forward to experimenting with them. <<else>> - This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid.infuriates her@@ that you would do such a thing to her. + This new size is a @@.gold;massive inconvenience@@ for her and it @@.mediumorchid;infuriates her@@ that you would do such a thing to her. <<set $args[0].devotion -= 5, $args[0].trust -= 5>> <</if>> <<elseif $args[0].boobs > $args[1].boobs+100 && $args[0].fetish == "boobs" && $args[0].fetishKnown>> /*(Bigger+breast fetish)*/ @@ -534,7 +534,7 @@ Now you only have to wait for her to wake up. <<if $args[0].devotion > 20>> and sees that her bust has shrunk. She is saddened by her smaller chest and struggles to keep herself under control for your sake, @@.mediumorchid;barely.@@ <<else>> - and finds that her chest is not as large as it once was. @@.mediumcorchid;Tears leap into her eyes@@ as her her shoulders begin to shake<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. + and finds that her chest is not as large as it once was. @@.mediumorchid;Tears leap into her eyes@@ as her her shoulders begin to shake<<if $args[0].voice != 0>> and sobs echo about the room<</if>>. She pauses to gather herself together and let the tears run from her eyes before continuing her bodily inspection. <</if>> <<set $args[0].devotion -= 5>> <<elseif $args[0].boobs <= $args[1].boobs-100 && $args[1].boobs > 300>> /*(Smaller breasts)*/ @@ -642,12 +642,12 @@ Now you only have to wait for her to wake up. <</if>> <br><br> -You depress a button and a long, body length mirror slides up from the floor near the wall. Your slave +You depress a button and a long, body length mirror slides up from the floor near the wall. <<if $args[0].amp == 1>> - With the help of an assistant, slave sits up against the side of the gurney and sees her entire new body for the first time. + With the help of an assistant, $args[0].slaveName sits up against the side of the gurney and sees her entire new body for the first time. <<else>> - Gingerly hops to her feet + $args[0].slaveName gingerly hops to her feet <<if $args[0].heels == 1 || !canWalk($args[0])>> <<if $args[0].heels == 1>> and immediately stumbles, catching herself before her cut heels let her fall to the floor. @@ -745,13 +745,13 @@ You depress a button and a long, body length mirror slides up from the floor nea <</if>> life. She does her best to shrug this off and tries to think of all the fun things a lewd older body can do. <<else>> - as that means she will be @@unable to spend as much time on this earth.@@ - <<set $args[0].devotion -= ($args[1].visualAge-$args[0].visualAge*5)>> + as that means she will be @@.mediumorchid;unable to spend as much time on this earth.@@ + <<set $args[0].devotion -= ($args[0].visualAge-$args[1].visualAge)*5>> <<if $PhysicalRetirementAgePolicy == 1>> On the other hand, it means she won’t have as much time to spend with you before she is retired. <<else>> This is compounded with the fact that she @@.gold;may well die before she becomes a freed slave.@@ - <<set $args[0].trust -= ($args[1].visualAge-$args[0].visualAge*5)>> + <<set $args[0].trust -= ($args[0].visualAge-$args[1].visualAge)*5>> <</if>> <</if>> <<elseif $args[0].physicalAge <= $args[1].physicalAge-5 || ($args[0].physicalAge < 18 && $args[0].physicalAge < $args[1].physicalAge)>> /*(younger)*/ @@ -834,7 +834,7 @@ It bothers her that you have altered even more of her body. */ /*stomach*/ -<<set _weightChange = 0>> /*used to segway to pregnancy/belly implants after weight*/ +<<set _weightChange = 0>> /*used to segue to pregnancy/belly implants after weight*/ Her hands drift over <<if $args[0].weight >= $args[1].weight+30>> /*(fatter)*/ her stomach and she feels just how much more weight she is carrying. diff --git a/src/pregmod/widgets/playerDescriptionWidgets.tw b/src/pregmod/widgets/playerDescriptionWidgets.tw index 07ded600757b5bbb964831fd1326fcfe144703b0..6f30441a12d218dabcb9c69140df956b44b206ae 100644 --- a/src/pregmod/widgets/playerDescriptionWidgets.tw +++ b/src/pregmod/widgets/playerDescriptionWidgets.tw @@ -149,7 +149,7 @@ They are all natural, heavy, and a bit saggy though they retain some perk. Every single move you make sends ripples through your cleavage. You catch yourself watching them move in the mirror every so often. <</if>> <<if $PC.preg > 30 || $PC.births > 0>> - Your breasts feel even more enormous lately; likely a side effect of your lactation, though you could do without the wetspots forming over your nipples. + Your breasts feel even more enormous lately; likely a side effect of your lactation, though you could do without the wet spots forming over your nipples. <</if>> <<elseif $PC.boobsBonus == 2>> Your breasts are @@ -166,7 +166,7 @@ They are all natural and a little heavy. They bounce lewdly when you shake them and take a little too long to calm down. <</if>> <<if $PC.preg > 30 || $PC.births > 0>> - Your breasts feel even more huge lately; likely a side effect of your lactation, though you could do without the wetspots forming over your nipples. + Your breasts feel even more huge lately; likely a side effect of your lactation, though you could do without the wet spots forming over your nipples. <</if>> <<elseif $PC.boobsBonus == 1>> Your breasts are pretty @@ -183,7 +183,7 @@ They are nice and perky, despite their size. They bounce lewdly when you shake them. <</if>> <<if $PC.preg > 30 || $PC.births > 0>> - Your breasts feel bigger lately; likely a side effect of your lactation, though you could do without the wetspots forming over your nipples. + Your breasts feel bigger lately; likely a side effect of your lactation, though you could do without the wet spots forming over your nipples. <</if>> <<elseif $PC.boobsBonus == -0.5>> Your breasts are certainly @@ -196,7 +196,7 @@ <</if>> They are nice and perky, with just the right amount of bounce when you shake them. <<if $PC.preg > 30 || $PC.births > 0>> - Your breasts feel bigger lately; likely a side effect of your lactation, though you could do without the wetspots forming over your nipples. + Your breasts feel bigger lately; likely a side effect of your lactation, though you could do without the wet spots forming over your nipples. <</if>> <<elseif $PC.boobsBonus == -1>> Your breasts are fairly average, at least to old world @@ -209,17 +209,17 @@ <</if>> They are very perky, but aren't big enough to have a nice bounce when you shake them. <<if $PC.preg > 30 || $PC.births > 0>> - Your breasts feel bigger lately; likely a side effect of your lactation, though you could do without the wetspots forming over your nipples. + Your breasts feel bigger lately; likely a side effect of your lactation, though you could do without the wet spots forming over your nipples. <</if>> <<elseif $PC.boobs == 1>> - Your breasts are on the larger side of things<<if $PC.preg > 30 || $PC.births > 0>>, though you could do without the wetspots forming over your nipples<</if>>. + Your breasts are on the larger side of things<<if $PC.preg > 30 || $PC.births > 0>>, though you could do without the wet spots forming over your nipples<</if>>. <<if $PC.markings == "freckles">> The tops of your breasts and your cleavage are lightly freckled. <<elseif $PC.markings == "heavily freckled">> They are covered in freckles, which are particularly dense in the cleft between them. <</if>> <<elseif $PC.title == 1>> - Your chest is quite masculine<<if $PC.preg > 30 || $PC.births > 0>>, though the pair of wetspots forming over your nipples suggest otherwise,<</if>><<if $PC.markings == "freckles">> and covered in a light spray of freckles<<elseif $PC.markings == "heavily freckled">> and covered in dense freckles<</if>>. + Your chest is quite masculine<<if $PC.preg > 30 || $PC.births > 0>>, though the pair of wet spots forming over your nipples suggest otherwise,<</if>><<if $PC.markings == "freckles">> and covered in a light spray of freckles<<elseif $PC.markings == "heavily freckled">> and covered in dense freckles<</if>>. <<else>> Your chest is non-existent<<if $PC.preg > 30 || $PC.births > 0>>, save for the pair of bulging milk glands beneath your nipples,<</if>><<if $PC.markings == "freckles">> and covered in a light spray of freckles<<elseif $PC.markings == "heavily freckled">> and covered in dense freckles<</if>>. <</if>> diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw index 8a2ae648b6cc75b3a506b7b67d6c91e8246dd3da..d5490483892ee00a58342aebf687f463d13b796b 100644 --- a/src/pregmod/widgets/pregmodBirthWidgets.tw +++ b/src/pregmod/widgets/pregmodBirthWidgets.tw @@ -1190,7 +1190,7 @@ <<case "be a subordinate slave">> <<for $k = 0; $k < $slaves.length; $k++>> - <<if $slaves[$i].subTarget is $slaves[$k].ID>> + <<if $slaves[$i].subTarget == $slaves[$k].ID>> <<set $tempSub = $slaves[$k]>> <</if>> <</for>> diff --git a/src/pregmod/widgets/pregmodWidgets.tw b/src/pregmod/widgets/pregmodWidgets.tw index 95e0e7d70d4114b5be45e8cb59f975f75c3257e7..05428f972113c7362bec2211e935616989526f77 100644 --- a/src/pregmod/widgets/pregmodWidgets.tw +++ b/src/pregmod/widgets/pregmodWidgets.tw @@ -395,7 +395,7 @@ In order to be eligible to be bred, the potential breeding bitch must first satisfy the following conditions: <<if $failedElite > 100>> <br>She must be of finest intelligence. - <br>She must be unbelieveably beautiful. + <br>She must be unbelievably beautiful. <br>Her face must be breathtaking. <<else>> <br>She must be very smart. @@ -1398,7 +1398,7 @@ Of $possessive $slaves[$i].pregType child<<if $slaves[$i].pregType > 1>>ren<</if and a complete turn on to $object. $possessiveCap humiliation fetish @@.lightcoral;strengthens@@ as $pronoun eagerly fantasizes about giving birth in public again. <<set $slaves[$i].fetishStrength += 4>> <<elseif $slaves[$i].fetish == "none" || $slaves[$i].fetishStrength <= 60>> - and a curious experience to $object. <<if random(1,5) == 1>>@@.lightcoral;$possessiveCap has developed a humiliation fetish.@@<<set $slaves[$i].fetish to "humiliation">><<else>>$pronounCap hopes to never repeat it.<</if>> + and a curious experience to $object. <<if random(1,5) == 1>>@@.lightcoral;$possessiveCap has developed a humiliation fetish.@@<<set $slaves[$i].fetish = "humiliation">><<else>>$pronounCap hopes to never repeat it.<</if>> <<elseif $slaves[$i].devotion <= 20>> and completely devastating to $possessive image of herself. The experience @@.hotpink;habituates $object@@ to cruelties of slavery. <<set $slaves[$i].devotion += 5>> diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw index c9cb9ea45d06df3bf77855b9516fce1c3779ebb5..15867e73f0bcff086e0a61e6225f9ad85f30ff34 100644 --- a/src/pregmod/widgets/seBirthWidgets.tw +++ b/src/pregmod/widgets/seBirthWidgets.tw @@ -220,7 +220,7 @@ <<else>> <br> - <<if $dairyRestraintsSetting > 1 and $slaves[$i].career == "a bioreactor">> + <<if $dairyRestraintsSetting > 1 && $slaves[$i].career == "a bioreactor">> As $slaves[$i].slaveName's water breaks, a mechanical basket is extended under $possessive laboring <<if $slaves[$i].mpreg == 1>>ass<<else>>cunt<</if>>. Once the child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> secure, the basket retracts allowing access to $possessive <<if $slaves[$i].mpreg == 1>>rear<<else>>vagina<</if>>.<<if $dairyPregSetting > 0>> The impregnation tube is promptly reinserted, bloating $possessive empty womb with fresh cum, where it will remain until $pronoun is pregnant once more.<</if>> All these events are meaningless to $object, as $possessive consciousness has long since been snuffed out. <<elseif $dairyRestraintsSetting > 1>> <<if $slaves[$i].fetish == "mindbroken">> @@ -755,7 +755,7 @@ All in all, <<if _origReserve > 0 && _curBabies > 0>> /*Do we need incubator checks?*/ <<if _curBabies >= _origReserve>> /*adding normal*/ - <<set _cToIncub = _origReserve>> + <<set _cToIncub = _origReserve, $slaves[$i].reservedChildren = 0>> <<elseif _curBabies < _origReserve && $slaves[$i].womb.length > 0>> /*broodmother or partial birth, we will wait for next time to get remaining children*/ <<set $slaves[$i].reservedChildren -= _curBabies, _cToIncub = _curBabies>> @@ -763,7 +763,6 @@ All in all, /*Stillbirth or something other go wrong. Correcting children count.*/ <<set $slaves[$i].reservedChildren = 0, _cToIncub = _curBabies>> <</if>> - <<set $mom = $slaves[$i]>> <br><br> Of $possessive _curBabies child<<if $slaves[$i].pregType > 1>>ren<</if>>; _cToIncub <<if $slaves[$i].reservedChildren > 1>>were<<else>>was<</if>> taken to $incubatorName. @@ -772,7 +771,6 @@ All in all, <<include "Incubator Workaround">> <<set $slaves[$i].curBabies.shift()>> /*for now child generation metod for incubator not changed. But here children for incubator removed from array of birthed babies. If we decide later - we can use them for incubator as real objects here. For now they just discarded silently */ <</for>> - <<set $reservedChildren -= _cToIncub>> <<set _curBabies = $slaves[$i].curBabies.length>> <br><br> <<if _curBabies > 0>> diff --git a/src/pregmod/widgets/slaveSummaryWidgets.tw b/src/pregmod/widgets/slaveSummaryWidgets.tw index f82a79bda31aa11c4c0a44220d20d895729bbc5c..75ed0b806eab06f017555bf46bd5a6ddce0d9531 100644 --- a/src/pregmod/widgets/slaveSummaryWidgets.tw +++ b/src/pregmod/widgets/slaveSummaryWidgets.tw @@ -561,7 +561,7 @@ Release rules: _Slave.releaseRules. <<elseif ((_Slave.preg < 4) && (_Slave.preg > 0) && _Slave.pregKnown == 0) || _Slave.pregWeek == 1>> May be pregnant. <<elseif (_Slave.preg >= 37) && (_Slave.broodmother > 0)>> - Permenantly pregnant. + Permanently pregnant. <<elseif _Slave.pregKnown == 1>> <<if _Slave.pregType < 2 || _Slave.broodmother > 0>> _Slave.pregWeek weeks pregnant. diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index 93bf3e13a905a6254d47793a483e285410bba301..7e056b2a2948065cdfa7cbf94f769b2b4c9d29e5 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -690,6 +690,12 @@ <<if ndef $eugenicsFullControl>> <<set $eugenicsFullControl = 0>> <</if>> +<<if ndef $merchantFSWares>> + <<set $merchantFSWares = ["GenderRadicalistResearch", "TransformationFetishistResearch", "AssetExpansionistResearch", "SlimnessEnthusiastResearch", "YouthPreferentialistResearch", "HedonisticDecadenceResearch"]>> +<</if>> +<<if ndef $merchantIllegalWares>> + <<set $merchantIllegalWares = []>> +<</if>> <<if $SFMODToggle == 1 && $securityForceCreate == 1>> /* SF anon additional Special Force Variables [SFVAR] */ @@ -1181,6 +1187,18 @@ <<if ndef $arcologies[0].influenceBonus>> <<set $arcologies[0].influenceBonus = -1>> <</if>> +<<if ndef $arcologies[0].CyberEconomic>> + <<set $arcologies[0].CyberEconomic = 1>> +<</if>> +<<if ndef $arcologies[0].CyberEconomicTarget>> + <<set $arcologies[0].CyberEconomicTarget = -1>> +<</if>> +<<if ndef $arcologies[0].CyberReputation>> + <<set $arcologies[0].CyberReputation = 1>> +<</if>> +<<if ndef $arcologies[0].CyberReputationTarget>> + <<set $arcologies[0].CyberReputationTarget = -1>> +<</if>> <<if ndef $arcologies[0].rival>> <<set $arcologies[0].rival = 0>> <</if>> diff --git a/src/uncategorized/RECI.tw b/src/uncategorized/RECI.tw index 91b60f248bd784323457602578c2fce08dcdca7d..39511367d4edb52c5b0f14856c09398bd92fbe12 100644 --- a/src/uncategorized/RECI.tw +++ b/src/uncategorized/RECI.tw @@ -331,7 +331,7 @@ She looks pensive, and goes through two false starts before she clears her throa <<else>> The slaves start making out, showing no signs of breaking their lip lock as they arrange themselves for penetration. <</if>> - $Concubine.slaveName guides her <<if $Concubine.dick == 0>>strap-on<<else>>cock<</if>> inside the <<if ($activeSlave.fetish is "buttslut") && ($activeSlave.fetishKnown == 1)>>enthusiastic<<else>>compliant<</if>> $activeSlave.slaveName, who begins to ride it, enjoying both the <<if $activeSlave.prostate > 0>>prostate<<else>>anal<</if>> stimulation and the feeling of her <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory is "chastity")>>midsection trapped between her and <<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0)>>erection trapped between her and <<else>>soft dick trapped between her and <</if>><<else>>pussy pressed against<</if>> $Concubine.slaveName. $Concubine.slaveName smacks the humping <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>>'s butt to get her to stop, and slides an index finger up her ass alongside the <<if $Concubine.dick == 0>>phallus<<else>>cock<</if>>. $activeSlave.slaveName shudders, and then begins to whine as $Concubine.slaveName pulls her sphincter wider. + $Concubine.slaveName guides her <<if $Concubine.dick == 0>>strap-on<<else>>cock<</if>> inside the <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>enthusiastic<<else>>compliant<</if>> $activeSlave.slaveName, who begins to ride it, enjoying both the <<if $activeSlave.prostate > 0>>prostate<<else>>anal<</if>> stimulation and the feeling of her <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>midsection trapped between her and <<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0)>>erection trapped between her and <<else>>soft dick trapped between her and <</if>><<else>>pussy pressed against<</if>> $Concubine.slaveName. $Concubine.slaveName smacks the humping <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>>'s butt to get her to stop, and slides an index finger up her ass alongside the <<if $Concubine.dick == 0>>phallus<<else>>cock<</if>>. $activeSlave.slaveName shudders, and then begins to whine as $Concubine.slaveName pulls her sphincter wider. <br><br> "Plea<<s>>e," the slave begs incoherently as you press your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $Concubine.slaveName's finger. It's not clear whether she's begging you to DP her anus, or begging you not to, but whichever it is, $Concubine.slaveName withdraws her finger and you shove yourself inside. $activeSlave.slaveName jerks with discomfort and gives a gasping "Oh f-fuck-k" that <<if $activeSlave.anus > 2>>she repeats over and over<<else>>is followed by some minor struggling<</if>> as you begin to fuck her. From her angle, $Concubine.slaveName can't pound $activeSlave.slaveName quite as hard as you can, but she does her best. When you've both had your fun, extracted yourselves, and let the exhausted, gaped bitch collapse onto the floor, $Concubine.slaveName gives you a naughty wink. <<Enunciate $Concubine>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 3d80ecaf6d64567628a51110c1606a2379125fef..70099a3e7475658be3114d37f2f4e91c9665550a 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -4706,7 +4706,7 @@ May I plea<<s>>e try out <<s>>omething <<s>>kimpier today?" You immediately realize you've made a mistake; you feel full already and she's still cumming. You watch in horror as your belly steadily swells with seed, unable to flow out thanks to your obstructed cunt. $activeSlave.slaveName grunts as she pushes out the last of her load before pulling out and releasing you. You try to get up, but the experience has left you drained, so you are left hoping that her instincts tell her she's done her job. She lowers her nose to your violated pussy and sniffs; unsatisfied, she moves back into position to properly seed you this time. You black out as her second load joins the first, only to awaken sometime later <<if $Concubine != 0>> with $Concubine.slaveName trying her best to drain your swollen belly. - <<if canTalk($Concubine) and $Concubine.amp != 1>> + <<if canTalk($Concubine) && $Concubine.amp != 1>> <<Enunciate $Concubine>> "I'm <<s>>o <<s>>orry <<Master>>... I <<s>>tepped out for a minute and thi<<s>> happen<<s>>." You ask what happened to $activeSlave.slaveName. "<<Sh>>e'<<s>> bound and gagged now, <<sh>>e won't hurt you anymore. But what are you going to do with that belly? I won't tell anyone what happened, but we've got to get rid of it." <<else>> diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw index efafd4557f5f150037d370558335289549865d6c..6af2035206dd77da1ce606aaef033339a6eb20e0 100644 --- a/src/uncategorized/RETS.tw +++ b/src/uncategorized/RETS.tw @@ -622,7 +622,7 @@ $subSlave.slaveName keeps her eyes clamped shut and her hands down at her sides, <<set $subSlave.analCount++, $analTotal++>> <<set _belly = bellyAdjective($subSlave)>> -As you pass the showers, you hear what sounds like a muffled altercation over the noise of the showers running. You look in to see $subSlave.slaveName's $subSlave.skin body facing you, pressed hard up against the glass wall of one of the showers. Her <<if $subSlave.face > 95>>gorgeous<<elseif $subSlave.face > 40>>beautiful<<elseif $subSlave.face > 10>>pretty<<elseif $subSlave.face >= -10>>attractive<<else>>homely<</if>> face<<if $subSlave.belly >= 5000>> and <<if $subSlave.bellyPreg >= 5000>>pregnant<<else>>_belly<</if>> belly are<<else>> is<</if>> smashed against the glass, <<if $subSlave.belly >= 5000>>her face <</if>>contorted in pain and fear. The apparent mystery is solved when you notice that there are four legs visible: there's a pair of <<if ($activeSlave.muscles > 95)>>ripped<<elseif ($activeSlave.muscles > 30)>>muscular<<elseif ($activeSlave.muscles > 5)>>toned<<else>>soft<</if>> $activeSlave.skin calves behind $subSlave.slaveName's. <span id="name"><<print "[[$activeSlave.slaveName|Long Slave Description][$nextLink to passage(), $eventDescription to 1]]">></span>'s face appears at $subSlave.slaveName's ear, and though you can't hear exactly what she says, it's something along the lines of "Take it, you whiny little bitch." She's clearly got <<if canPenetrate($activeSlave)>>her cock<<else>>a couple of fingers<</if>> up $subSlave.slaveName's asshole. +As you pass the showers, you hear what sounds like a muffled altercation over the noise of the showers running. You look in to see $subSlave.slaveName's $subSlave.skin body facing you, pressed hard up against the glass wall of one of the showers. Her <<if $subSlave.face > 95>>gorgeous<<elseif $subSlave.face > 40>>beautiful<<elseif $subSlave.face > 10>>pretty<<elseif $subSlave.face >= -10>>attractive<<else>>homely<</if>> face<<if $subSlave.belly >= 5000>> and <<if $subSlave.bellyPreg >= 5000>>pregnant<<else>>_belly<</if>> belly are<<else>> is<</if>> smashed against the glass, <<if $subSlave.belly >= 5000>>her face <</if>>contorted in pain and fear. The apparent mystery is solved when you notice that there are four legs visible: there's a pair of <<if ($activeSlave.muscles > 95)>>ripped<<elseif ($activeSlave.muscles > 30)>>muscular<<elseif ($activeSlave.muscles > 5)>>toned<<else>>soft<</if>> $activeSlave.skin calves behind $subSlave.slaveName's. <span id="name"><<print "[[$activeSlave.slaveName|Long Slave Description][$nextLink = passage(), $eventDescription = 1]]">></span>'s face appears at $subSlave.slaveName's ear, and though you can't hear exactly what she says, it's something along the lines of "Take it, you whiny little bitch." She's clearly got <<if canPenetrate($activeSlave)>>her cock<<else>>a couple of fingers<</if>> up $subSlave.slaveName's asshole. <br><br> Both slaves notice you at the same time. $subSlave.slaveName's <<if canSee($subSlave)>>$subSlave.eyeColor eyes widen<<else>>face lights up<</if>>, but her momentary look of hope is snuffed out when she remembers who you are. $activeSlave.slaveName, on the other hand, looks a little doubtful. The rules allow her to fuck your other slaves, but she isn't quite sure what the right thing to do is, since she isn't the most dominant force in the showers any more. diff --git a/src/uncategorized/brothel.tw b/src/uncategorized/brothel.tw index 2c102f263c45cd1bf948904700ee45562320c9c6..1cc97759693e9b462e597d2977d61576b7effd6f 100644 --- a/src/uncategorized/brothel.tw +++ b/src/uncategorized/brothel.tw @@ -187,7 +187,7 @@ $brothelNameCaps <<link "''Send a slave to $brothelName''">> <<replace #ComingGoing>> <<resetAssignmentFilter>> - <<set $Flag to 0>> + <<set $Flag = 0>> <<include "Slave Summary">> <</replace>> <</link>> diff --git a/src/uncategorized/cellblock.tw b/src/uncategorized/cellblock.tw index d503699fe689946b51d58a13685342b16390049b..501b73ddec75035a554c354d4d10e6e376fee272 100644 --- a/src/uncategorized/cellblock.tw +++ b/src/uncategorized/cellblock.tw @@ -106,7 +106,7 @@ $cellblockNameCaps <<link "''Send a resistant slave to be broken in the cellblock''">> <<replace #ComingGoing>> <<resetAssignmentFilter>> - <<set $Flag to 0>> + <<set $Flag = 0>> <<include "Slave Summary">> <</replace>> <</link>> diff --git a/src/uncategorized/clinic.tw b/src/uncategorized/clinic.tw index 85239cb32997a323d0e3f925c05589e7be85c86a..3f38e1aa29937aa54c440bdc5dca3547019be0c7 100644 --- a/src/uncategorized/clinic.tw +++ b/src/uncategorized/clinic.tw @@ -131,7 +131,7 @@ $clinicNameCaps <<link "''Send a slave to get treatment in $clinicName''">> <<replace #ComingGoing>> <<resetAssignmentFilter>> - <<set $Flag to 0>> + <<set $Flag = 0>> <<include "Slave Summary">> <</replace>> <</link>> diff --git a/src/uncategorized/club.tw b/src/uncategorized/club.tw index a4a99dfb834b64bb93cc6096e213ff81b886a3b8..d878c866132db6cefd642aed983696fbd7eef8b8 100644 --- a/src/uncategorized/club.tw +++ b/src/uncategorized/club.tw @@ -238,7 +238,7 @@ $clubNameCaps <<link "''Send a slave to slut around $clubName''">> <<replace #ComingGoing>> <<resetAssignmentFilter>> - <<set $Flag to 0>> + <<set $Flag = 0>> <<include "Slave Summary">> <</replace>> <</link>> diff --git a/src/uncategorized/dispensary.tw b/src/uncategorized/dispensary.tw index 8f35a7788768a7ee93955550d64a7b9e7652e272..ff3d15ed4e3348b1a82dd1833b24083909584baf 100644 --- a/src/uncategorized/dispensary.tw +++ b/src/uncategorized/dispensary.tw @@ -449,7 +449,7 @@ Implant Production <</if>> <<if $ImplantProductionUpgrade == 1 && $seeHyperPreg == 1 && $seeExtreme == 1 && $seePreg != 0>> - <<if ($permaPregImplant == 0) and ($rep <= 4000*_PCSkillCheck)>> + <<if ($permaPregImplant == 0) && ($rep <= 4000*_PCSkillCheck)>> //You lack the reputation to access experimental pregnancy generator schematics// <br> <</if>> @@ -552,8 +552,8 @@ Future Societies Research <</if>> <</if>> -<<if ($ImplantProductionUpgrade == 1) and ($arcologies[0].FSTransformationFetishistDecoration >= 100)>> - <<if ($arcologies[0].FSTransformationFetishistResearch == 0) and ($rep <= 5000*_PCSkillCheck)>> +<<if ($ImplantProductionUpgrade == 1) && ($arcologies[0].FSTransformationFetishistDecoration >= 100)>> + <<if ($arcologies[0].FSTransformationFetishistResearch == 0) && ($rep <= 5000*_PCSkillCheck)>> //You lack the reputation to access experimental gigantic implants and elasticizing filler.// <br> <<elseif ($arcologies[0].FSTransformationFetishistResearch == 0)>> diff --git a/src/uncategorized/fsDevelopments.tw b/src/uncategorized/fsDevelopments.tw index d069c1b99be0464f2fb31f2142ab8ba231a54f58..a800c2d1126c927698917f02a17f4f5bcb96c365 100644 --- a/src/uncategorized/fsDevelopments.tw +++ b/src/uncategorized/fsDevelopments.tw @@ -1155,7 +1155,7 @@ With her $assistantAppearance appearance, $assistantName's public visibility mes <<set $independenceDay = 1, $nicaeaAnnounceable = 1>> <<elseif $arcologies[0].FSChattelReligionist >= $FSLockinLevel*0.6>> $arcologies[0].name agrees strongly with a version of religion that emphasizes slaveholding traditions. - <<set $independenceDay to 1>> + <<set $independenceDay = 1>> <<elseif $arcologies[0].FSChattelReligionist >= $FSLockinLevel*0.3>> $arcologies[0].name is sympathetic to a version of religion that emphasizes slaveholding traditions. <<else>> diff --git a/src/uncategorized/futureSociety.tw b/src/uncategorized/futureSociety.tw index 8f40840ba71261a1a7ea324ac6e221426187e176..be0799cfee8848a348a1daaa11851e16a28862e0 100644 --- a/src/uncategorized/futureSociety.tw +++ b/src/uncategorized/futureSociety.tw @@ -817,7 +817,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc <</if>> <<if $seeDicks != 0 || $makeDicks == 1>> -<<if $arcologies[0].FSGenderFundamentalist is "unset">> +<<if $arcologies[0].FSGenderFundamentalist == "unset">> <<if $arcologies[0].FSGenderRadicalist != "unset">> <br>''You are pursuing'' a radical redefinition of gender that identifies powerful people as male, and everyone else as female. //<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSGenderRadicalist = "unset", $arcologies[0].FSGenderRadicalistDecoration = 20, $arcologies[0].FSGenderRadicalistLawDicks = 0, $arcologies[0].FSGenderRadicalistLawFuta = 0, $arcologies[0].FSGenderRadicalistLawBeauty = 0, $arcologies[0].FSGenderRadicalistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "gender radicalist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br> diff --git a/src/uncategorized/generateXXSlave.tw b/src/uncategorized/generateXXSlave.tw index dd6275a8d24fd584761a1e53d722adcc323b15b2..ccd80a70f6a44349f188a328b301a0910ad4080d 100644 --- a/src/uncategorized/generateXXSlave.tw +++ b/src/uncategorized/generateXXSlave.tw @@ -32,7 +32,7 @@ <<set $activeSlaveOneTimeMinAge = random($activeSlaveOneTimeMinAge,$activeSlaveOneTimeMaxAge)>> <<if ($arcologies[0].FSYouthPreferentialist != "unset") && ($arcologies[0].FSYouthPreferentialist >= random(1,100))>> <<set $activeSlave.actualAge = Math.min($activeSlave.actualAge, $activeSlaveOneTimeMinAge)>> -<<elseif ($arcologies[0].FSMaturityPreferentialist != "unset") && ($arcologies[0].FSMaturityPreferentialist >= random(1,100))>> +<<elseif ($arcologies[0].FSMaturityPreferentialist != "unset") && ($arcologies[0].FSMaturityPreferentialist >= random(1,200))>> <<set $activeSlave.actualAge = Math.max($activeSlave.actualAge, $activeSlaveOneTimeMaxAge)>> <</if>> <<if $activeSlave.actualAge >= $retirementAge>> @@ -123,7 +123,7 @@ <<set $activeSlave.fetish = either("none", "none", "none", "none", "none", "none", "none", "none", "none", "none", "none", "none", "none", "submissive", "submissive", "cumslut", "humiliation", "humiliation", "buttslut", "boobs", "pregnancy", "dom", "sadist", "masochist")>> <<set $activeSlave.behavioralFlaw = either("none", "none", "none", "arrogant", "bitchy", "odd", "hates men", "hates women", "hates women", "anorexic", "gluttonous", "devout", "liberated")>> -<<if ($activeSlave.behavioralFlaw is "devout")>> +<<if ($activeSlave.behavioralFlaw == "devout")>> <<set $activeSlave.sexualFlaw = either("none", "repressed", "shamefast", "apathetic", "crude", "judgemental")>> <<else>> <<set $activeSlave.sexualFlaw = either("none", "none", "none", "none", "hates oral", "hates anal", "hates penetration", "repressed", "idealistic", "shamefast", "apathetic", "crude", "judgemental")>> diff --git a/src/uncategorized/generateXYSlave.tw b/src/uncategorized/generateXYSlave.tw index f4869a0d6657cbdd0cc268c3265fb331dc63ff14..70cc109176669ddbebd9db260e13ff53678953ec 100644 --- a/src/uncategorized/generateXYSlave.tw +++ b/src/uncategorized/generateXYSlave.tw @@ -33,7 +33,7 @@ <<set $activeSlaveOneTimeMinAge = random($activeSlaveOneTimeMinAge,$activeSlaveOneTimeMaxAge)>> <<if ($arcologies[0].FSYouthPreferentialist != "unset") && ($arcologies[0].FSYouthPreferentialist >= random(1,100))>> <<set $activeSlave.actualAge = Math.min($activeSlave.actualAge, $activeSlaveOneTimeMinAge)>> -<<elseif ($arcologies[0].FSMaturityPreferentialist != "unset") && ($arcologies[0].FSMaturityPreferentialist >= random(1,100))>> +<<elseif ($arcologies[0].FSMaturityPreferentialist != "unset") && ($arcologies[0].FSMaturityPreferentialist >= random(1,200))>> <<set $activeSlave.actualAge = Math.max($activeSlave.actualAge, $activeSlaveOneTimeMaxAge)>> <</if>> <<if $activeSlave.actualAge >= $retirementAge>> @@ -113,7 +113,7 @@ <<set $activeSlave.fetish = either("none", "none", "none", "none", "none", "none", "none", "none", "none", "none", "none", "none", "none", "submissive", "cumslut", "humiliation", "buttslut", "buttslut", "boobs", "dom", "sadist", "masochist")>> <<set $activeSlave.behavioralFlaw = either("none", "none", "none", "arrogant", "bitchy", "odd", "hates men", "hates men", "hates men", "hates women", "anorexic", "gluttonous", "devout", "liberated")>> -<<if ($activeSlave.behavioralFlaw is "devout")>> +<<if ($activeSlave.behavioralFlaw == "devout")>> <<set $activeSlave.sexualFlaw = either("none", "repressed", "shamefast", "apathetic", "crude", "judgemental")>> <<else>> <<set $activeSlave.sexualFlaw = either("none", "none", "none", "none", "hates oral", "hates anal", "hates anal", "repressed", "idealistic", "shamefast", "apathetic", "crude", "judgemental")>> diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw index 69e7fe94039cd63154224d07dd469c1a026e3ffd..e89bb5125587b97d79a7c86f2eaa2e53e568eb7d 100644 --- a/src/uncategorized/genericPlotEvents.tw +++ b/src/uncategorized/genericPlotEvents.tw @@ -225,12 +225,12 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.trust = random(-90,-75)>> <<set $activeSlave.health = random(-10,10)>> <<set $activeSlave.face = 15>> - <<set $activeSlave.anus to 0>> - <<set $activeSlave.vagina to 0>> - <<set $activeSlave.weight to random(20,140)>> - <<set $activeSlave.attrXX to random(60,90)>> - <<set $activeSlave.attrXY to random(10,50)>> - <<set $activeSlave.energy to random(60,80)>> + <<set $activeSlave.anus = 0>> + <<set $activeSlave.vagina = 0>> + <<set $activeSlave.weight = random(20,140)>> + <<set $activeSlave.attrXX = random(60,90)>> + <<set $activeSlave.attrXY = random(10,50)>> + <<set $activeSlave.energy = random(60,80)>> <<set $activeSlave.vaginalSkill = 0>> <<set $activeSlave.oralSkill = 35>> <<set $activeSlave.analSkill = 0>> diff --git a/src/uncategorized/lawCompliance.tw b/src/uncategorized/lawCompliance.tw index a0e179a5cf360a4f024595d588602bec5368a032..35ec76dd18613d8010b795396a344345023497a3 100644 --- a/src/uncategorized/lawCompliance.tw +++ b/src/uncategorized/lawCompliance.tw @@ -438,7 +438,7 @@ As soon as she arrived in the slave market, she was subjected to a battery of te <<if $FaceEugenicsSMR == 1>> strict judgements of her facial attractiveness, <<if $activeSlave.face < 40>> - <<set $seed to 0>> + <<set $seed = 0>> <</if>> <</if>> a physical exam, and more. diff --git a/src/uncategorized/multiImplant.tw b/src/uncategorized/multiImplant.tw index 8bbdb67517eaa65bcace721756ee85659f0d0933..3ac3ea342181f3f9c70e83c33006a71398a82b3b 100644 --- a/src/uncategorized/multiImplant.tw +++ b/src/uncategorized/multiImplant.tw @@ -607,7 +607,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<if _slaveOrgans.scrotum != 0>> <<if ($activeSlave.scrotum == 0) && ($activeSlave.balls >= 1)>> <<set $cash -= $surgeryCost>> - <<set $activeSlave.scrotum to $activeSlave.balls>> + <<set $activeSlave.scrotum = $activeSlave.balls>> <<set $activeSlave.health -= 10>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 10>> diff --git a/src/uncategorized/neighborsFSAdoption.tw b/src/uncategorized/neighborsFSAdoption.tw index 47a2979d695db1199fc2b926ac3e991e0d98b9ef..1dd34696d13ac29b2084351bc146b8a06e77f7f0 100644 --- a/src/uncategorized/neighborsFSAdoption.tw +++ b/src/uncategorized/neighborsFSAdoption.tw @@ -163,12 +163,12 @@ societal development. <</if>> <</if>> <<if $arcologies[0].FSRestart > random(5,60)>> - <<if ($arcologies[$i].FSRestart == "unset") and ($arcologies[$i].FSRepopulationFocus == "unset")>> + <<if ($arcologies[$i].FSRestart == "unset") && ($arcologies[$i].FSRepopulationFocus == "unset")>> $desc obsessed with breeding a new society, leading the arcology to @@.yellow;adopt Repopulationism.@@ <<set $arcologies[$i].FSRepopulationFocus = 5>><<set $adopted = 1>> <</if>> <<elseif $arcologies[0].FSRepopulationFocus > random(5,60)>> - <<if ($arcologies[$i].FSRestart == "unset") and ($arcologies[$i].FSRepopulationFocus == "unset")>> + <<if ($arcologies[$i].FSRestart == "unset") && ($arcologies[$i].FSRepopulationFocus == "unset")>> $desc obsessed with creating a new, better society, leading the arcology to @@.yellow;adopt Eugenics.@@ <<set $arcologies[$i].FSRestart = 5>><<set $adopted = 1>> <</if>> diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index 75c3aee55eabbf38016002ffa7925ae98ffe812c..1c2abb2dde55c3944138d4ac480768525fe47d21 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -1416,7 +1416,7 @@ The legalities completed, ''__@@.pink;<<SlaveFullName $activeSlave>>@@__'' <<if <br> <<link "Dominate her penis and demonstrate her place">> <<replace "#introResult">> - As you inspect her, you take note of her fully functional <<if $activeSlave.dick == 1>>tiny dick<<elseif $activeSlave.dick == 2>>cute dick<<elseif $activeSlave.dick is 3>>dick<<elseif $activeSlave.dick is 4>>big dick<<elseif $activeSlave.dick is 5>>impressive dick<<elseif $activeSlave.dick is 6>>huge dick<</if>>. You roughly push her up against a wall and begin fondling her penis, grinning at the look of panic growing on her face. + As you inspect her, you take note of her fully functional <<if $activeSlave.dick == 1>>tiny dick<<elseif $activeSlave.dick == 2>>cute dick<<elseif $activeSlave.dick == 3>>dick<<elseif $activeSlave.dick == 4>>big dick<<elseif $activeSlave.dick == 5>>impressive dick<<elseif $activeSlave.dick == 6>>huge dick<</if>>. You roughly push her up against a wall and begin fondling her penis, grinning at the look of panic growing on her face. <<if $activeSlave.dick == 1>> You scoff at her as her micropenis barely fills your palm. <<elseif $activeSlave.dick == 2>> diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw index 913c163ed64d613d71095245a8acb7d93750c5e2..1f858d00916a8870cc7489bad4bbb4e7bbf4725b 100644 --- a/src/uncategorized/nextWeek.tw +++ b/src/uncategorized/nextWeek.tw @@ -1,12 +1,10 @@ :: Next Week [nobr] <<if $rivalOwner != 0>> - <<set _SL = $arcologies.length>> - <<for _i = 0; _i < _SL; _i++>> - <<if $arcologies[_i].rival == 1>> - <<set $rivalOwner = $arcologies[_i].prosperity>> + <<set _rival = $arcologies.find(function(s) { return s.rival == 1; })>> + <<if def _rival>> + <<set $rivalOwner = _rival.prosperity>> <</if>> - <</for>> <</if>> <<if $playerAging != 0>> @@ -32,7 +30,7 @@ <<if $seeAge == 1>> <<set $slaves[_i].physicalAge += 1, $slaves[_i].actualAge += 1, $slaves[_i].visualAge += 1>> <<set $slaves[_i].ovaryAge += either(.8, .9, .9, 1, 1, 1, 1.1)>> /*Hopefully this works. It is intended, over a slave's lifetime, to cause her menopause to shift.*/ - <<if $slaves[$i].broodmother == 1>> + <<if $slaves[_i].broodmother == 1>> <<set $slaves[_i].ovaryAge += .2>> <</if>> <<if $slaves[_i].physicalAge <= 18 && $loliGrow == 0>> @@ -239,6 +237,8 @@ <<if $boomerangWeeks>><<set $boomerangWeeks++>><</if>> +<<set $thisWeeksFSWares = $merchantFSWares.randomMany(2)>> + <<set $coursed = 0, $eventDescription = 0, $manuallyRetired = 0, $pitFought = 0, $preOwnedViewed = 0, $prestigeAuctioned = 0, $repGain = 0, $shelterSlave = 0, $shelterSlaveBought = 0, $slaveMarketLimit = 10 + ($rep / 1000), $slavesSeen = 0, $slavesSacrificedThisWeek = 0, $subSlaves = 0>> /% These are variables that either should be made into _temp vars or should be Zeroed out once done with them instead of here. This can also interfere with debugging or hide NaN's as zeroing things out would clear a NaN. Also could stop from NaN's getting worse? %/ diff --git a/src/uncategorized/options.tw b/src/uncategorized/options.tw index b8166af4ddcd5df52cc5fc9c24ef680a32ea734a..4dc5266e5ba0a6cae4c5ef281bb255b3a8daf3a6 100644 --- a/src/uncategorized/options.tw +++ b/src/uncategorized/options.tw @@ -17,14 +17,14 @@ End of week autosaving is currently @@.red;DISABLED@@. [[Enable|Options][$autosa End of week autosaving is currently @@.cyan;ENABLED@@. [[Disable|Options][$autosave = 0]] <</if>> -<<if ($releaseID >= 1000) || $ver.startsWith("0.9") or $ver.startsWith("0.8") or $ver.startsWith("0.7") or $ver.startsWith("0.6")>> +<<if ($releaseID >= 1000) || $ver.startsWith("0.9") || $ver.startsWith("0.8") || $ver.startsWith("0.7") || $ver.startsWith("0.6")>> <br><br> ''NEW GAME PLUS'' <br> //You can begin a new game with up to five of your current slaves, although starting resources other than these five slaves will be reduced. New Game Plus @@.yellow;MAY@@ work across versions. To attempt to migrate a save across versions:// <br> //1) Save on this screen// <br> //2) Use your browser to open the new .html file in this tab// - <br> //3) [[Activate New Game Plus.|New Game Plus][$ui to "start"]] + <br> //3) [[Activate New Game Plus.|New Game Plus][$ui = "start"]] <<else>> //New Game Plus is not available because this game was not started with a compatible version.// <</if>> diff --git a/src/uncategorized/pCitizensAndCivilians.tw b/src/uncategorized/pCitizensAndCivilians.tw index c1fedbb7c0cff09183768088f9862c17a077374b..1f29c927d70e0364316153472529c341d2b1cef4 100644 --- a/src/uncategorized/pCitizensAndCivilians.tw +++ b/src/uncategorized/pCitizensAndCivilians.tw @@ -271,7 +271,7 @@ <<if $arcologies[0].FSPaternalist >= 10>> <br><<link "They shall be the Wardens">> <<replace "#result">> - You ask for a meeting with your mercenaries' captain and lay out a proposal for a redesigned contract between you. As he reviews the terms, he looks skeptical, then surprised, then interested, and finally, he breaks out into laughter. "<<if $PC.title isnot 0>>Sir<<else>>Ma'am<</if>>," he says, "you have no idea how fun this is going to be." He rises and gives you a short bow. "First Warden reporting for duty, <<if $PC.title isnot 0>>Sir<<else>>Ma'am<</if>>." The mercenaries - no, the Wardens - are well looked after. They are each assigned a nice apartment, a freshly enslaved servant, and a suit of prototype armor equipped with the latest weapons and a collapsible riot shield. Word of the innovation runs through the Free Cities @@.green;like wildfire.@@ + You ask for a meeting with your mercenaries' captain and lay out a proposal for a redesigned contract between you. As he reviews the terms, he looks skeptical, then surprised, then interested, and finally, he breaks out into laughter. "<<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>," he says, "you have no idea how fun this is going to be." He rises and gives you a short bow. "First Warden reporting for duty, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>." The mercenaries - no, the Wardens - are well looked after. They are each assigned a nice apartment, a freshly enslaved servant, and a suit of prototype armor equipped with the latest weapons and a collapsible riot shield. Word of the innovation runs through the Free Cities @@.green;like wildfire.@@ <<set $rep += 1000>> <<set $cash -= _cost>> <<set $mercenaries = 5>> diff --git a/src/uncategorized/pRivalryActions.tw b/src/uncategorized/pRivalryActions.tw index 3b8ae930e62418aeb153d2d958a24e1623f06d72..6513b60da6471d4759244e9e2a2a6ae10bb9ab0b 100644 --- a/src/uncategorized/pRivalryActions.tw +++ b/src/uncategorized/pRivalryActions.tw @@ -2295,7 +2295,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.trust -= 5>> <<set $hostage.devotion -= 5>> <<set $hostage.boobs += 100>> - <<set $hostage.lactation to 1>> + <<set $hostage.lactation = 1>> <<set $hostage.fetishStrength += 5>> <<set $hostage.oralCount += 100>> <<set $hostage.vaginalCount += 100>> @@ -2306,7 +2306,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.trust -= 5>> <<set $hostage.devotion -= 5>> <<set $hostage.boobs += 100>> - <<set $hostage.lactation to 1>> + <<set $hostage.lactation = 1>> <<set $hostage.oralCount += 100>> <<set $hostage.vaginalCount += 100>> <<set $hostage.analCount += 100>> diff --git a/src/uncategorized/pRivalryVictory.tw b/src/uncategorized/pRivalryVictory.tw index 0d9b1d83e0e0194508c4a121740fde66f6eead5f..ebdef635462d31ecdd8b4f5d8526ad1b35fa5772 100644 --- a/src/uncategorized/pRivalryVictory.tw +++ b/src/uncategorized/pRivalryVictory.tw @@ -156,7 +156,7 @@ For the first time, you receive a direct call from your rival. You pictured the <<include "Generate XY Slave">> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 15>> - <<set $activeSlave.faceShape to "androgynous">> + <<set $activeSlave.faceShape = "androgynous">> <<set $activeSlave.muscles = 20>> <<set $activeSlave.height = random(185,215)>> <<set $activeSlave.lips = 35>> @@ -218,7 +218,7 @@ For the first time, you receive a direct call from your rival. You pictured the <<set $activeSlave.sexualQuirk = "size queen">> <<set $activeSlave.hStyle = "neat">> <<set $activeSlave.hLength = 20>> - <<elseif $seed is "hung shota">> + <<elseif $seed == "hung shota">> not immediately apparent: she's young, in good shape, and not lacking down there at all. <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> <<set $activeSlaveOneTimeMaxAge = 18>> @@ -257,17 +257,17 @@ For the first time, you receive a direct call from your rival. You pictured the <<include "Generate XY Slave">> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> - <<set $activeSlave.faceShape to "masculine">> - <<set $activeSlave.muscles to either(20, 50, 100)>> - <<set $activeSlave.height to random(185,195)>> - <<set $activeSlave.butt to either(2, 3)>> - <<set $activeSlave.boobs to either(100, 200)>> - <<set $activeSlave.dick to 5>> - <<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin to $activeSlave.dick>><</if>> - <<set $activeSlave.balls to 5>> - <<set $activeSlave.anus to 0>> - <<set $activeSlave.vagina to -1>> - <<set $activeSlave.weight to 0>> + <<set $activeSlave.faceShape = "masculine">> + <<set $activeSlave.muscles = either(20, 50, 100)>> + <<set $activeSlave.height = random(185,195)>> + <<set $activeSlave.butt = either(2, 3)>> + <<set $activeSlave.boobs = either(100, 200)>> + <<set $activeSlave.dick = 5>> + <<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>> + <<set $activeSlave.balls = 5>> + <<set $activeSlave.anus = 0>> + <<set $activeSlave.vagina = -1>> + <<set $activeSlave.weight = 0>> <<set $activeSlave.vaginalSkill = 0>> <<set $activeSlave.oralSkill = 15>> <<set $activeSlave.analSkill = 0>> diff --git a/src/uncategorized/personalAssistantAppearance.tw b/src/uncategorized/personalAssistantAppearance.tw index e60c34c274f676f44aed89c1bc2584f1b8a983e0..b75a27bd024028c929dadba029d018f83095cac0 100644 --- a/src/uncategorized/personalAssistantAppearance.tw +++ b/src/uncategorized/personalAssistantAppearance.tw @@ -3,7 +3,7 @@ <<set $seed = random(1,8)>> <<switch $assistantAppearance>> <<case "monstergirl">> -She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>monstergirl with <<if $arcologies[0].FSSupremacist != "unset">><<if $arcologies[0].FSSupremacistRace == "black">><<print either("black", "brown", "light brown")>><<elseif $arcologies[0].FSSupremacistRace == "white">><<print either("pale", "tanned", "fair")>><<elseif $arcologies[0].FSSupremacistRace == "latina">><<print either("olive", "brown", "light brown")>><<elseif $arcologies[0].FSSupremacistRace == "indo-aryan" or $arcologies[0].FSSupremacistRace == "malay" or $arcologies[0].FSSupremacistRace == "pacific islander" or $arcologies[0].FSSupremacistRace == "amerindian">><<print either("dark", "light")>><<elseif $arcologies[0].FSSupremacistRace == "asian">><<print either("pale", "dark", "light")>><<elseif $arcologies[0].FSSupremacistRace == "middle eastern" or $arcologies[0].FSSupremacistRace == "semitic" or $arcologies[0].FSSupremacistRace == "southern european">><<print either("pale", "dark", "light")>><</if>><<else>>pale<</if>> skin, perky breasts, green tentacles instead of hair, and two dicks. Her eyes are large, expressive, and surprisingly innocent. +She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>monstergirl with <<if $arcologies[0].FSSupremacist != "unset">><<if $arcologies[0].FSSupremacistRace == "black">><<print either("black", "brown", "light brown")>><<elseif $arcologies[0].FSSupremacistRace == "white">><<print either("pale", "tanned", "fair")>><<elseif $arcologies[0].FSSupremacistRace == "latina">><<print either("olive", "brown", "light brown")>><<elseif ["indo-aryan", "malay", "pacific islander", "amerindian"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark", "light")>><<elseif $arcologies[0].FSSupremacistRace == "asian">><<print either("pale", "dark", "light")>><<elseif ["middle eastern", "semitic", "southern european"].includes($arcologies[0].FSSupremacistRace)>><<print either("pale", "dark", "light")>><</if>><<else>>pale<</if>> skin, perky breasts, green tentacles instead of hair, and two dicks. Her eyes are large, expressive, and surprisingly innocent. <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> @@ -25,7 +25,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "chattel religionist">> She's wearing the garb of a priestess of the new faith, which clashes amusingly with her demonic appearance. <<case "repopulation focus">> - She's very pregnant, her belly is covered in large bulges revealing the eggs growing within her. + She's very pregnant; her belly is covered in large bulges revealing the eggs growing within her. <<case "eugenics">> She's wearing a complex chastity device, keeping her dicks and cunt unusable. <<case "physical idealist">> @@ -76,15 +76,16 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] They're cuddled up close. As they kiss, $assistantName's tentacle hair holds her lover's head gently. The market assistant's avatar is using both hands to give $assistantName's cocks some manual release. <</if>> <<else>> - She's sitting crosslegged, looking up at you and waiting for instructions. In the meantime, she's masturbating gently, a dickhead in each hand, while her hair writhes against itself. + She's sitting cross-legged, looking up at you and waiting for instructions. In the meantime, she's masturbating gently, a dickhead in each hand, while her hair writhes against itself. <</if>> <<case "shemale">> -She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>bimbo shemale with blonde hair, <<if $arcologies[0].FSSupremacist != "unset">><<if $arcologies[0].FSSupremacistRace == "black">><<print either("black", "brown", "light brown")>><<elseif $arcologies[0].FSSupremacistRace == "white">><<print either("tanned", "fair")>><<elseif $arcologies[0].FSSupremacistRace == "latina">><<print either("olive", "brown", "light brown")>><<elseif $arcologies[0].FSSupremacistRace == "indo-aryan" or $arcologies[0].FSSupremacistRace == "malay" or $arcologies[0].FSSupremacistRace == "pacific islander" or $arcologies[0].FSSupremacistRace == "amerindian">><<print either("dark", "tanned")>><<elseif $arcologies[0].FSSupremacistRace == "asian">><<print either("dark", "tanned")>><<elseif $arcologies[0].FSSupremacistRace == "middle eastern" or $arcologies[0].FSSupremacistRace == "semitic" or $arcologies[0].FSSupremacistRace == "southern european">><<print either("dark", "tanned")>><</if>><<else>>tanned<</if>> skin, huge lips, and ridiculous tits. Her cock hangs past her knees when limp. + +She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>bimbo shemale with blonde hair, <<if $arcologies[0].FSSupremacist != "unset">><<if $arcologies[0].FSSupremacistRace == "black">><<print either("black", "brown", "light brown")>><<elseif $arcologies[0].FSSupremacistRace == "white">><<print either("tanned", "fair")>><<elseif $arcologies[0].FSSupremacistRace == "latina">><<print either("olive", "brown", "light brown")>><<elseif ["indo-aryan", "malay", "pacific islander", "amerindian"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark", "tanned")>><<elseif $arcologies[0].FSSupremacistRace == "asian">><<print either("dark", "tanned")>><<elseif ["middle eastern", "semitic", "southern european"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark", "tanned")>><</if>><<else>>tanned<</if>> skin, huge lips, and ridiculous tits. Her cock hangs past her knees when limp. <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> - She's made herself up to look a bit more classy recently: she has elegant fake nails, and has her hair piled up on her head. + She's made herself up to look a bit classier recently: she has elegant fake nails, and has her hair piled up on her head. <<case "degradationist">> She's made herself up to look almost comically evil: she's wearing black lipstick, black eyeliner, and a black barbed cockring. <<case "roman revivalist">> @@ -153,7 +154,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] They're doing it in the missionary position, kissing deeply. The one who's taking it has her huge dick between them, its head crushed between their four fake breasts. As you watch, she orgasms, splashing both of their faces with cum. <</if>> <<else>> - She's sitting crosslegged, bending down to suck herself off and looking up at you at the same time. When she sees your attention she lets her dick pop free of her mouth and waits for a moment to see if you have instructions for her, and then goes back to autofellatio. + She's sitting cross-legged, bending down to suck herself off and looking up at you at the same time. When she sees your attention she lets her dick pop free of her mouth and waits for a moment to see if you have instructions for her, and then goes back to autofellatio. <</if>> <<case "amazon">> @@ -173,7 +174,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "aztec revivalist">> wearing the battledress of the greatest warriors, she stands incredibly imposing, holding a spear and shield. <<case "egyptian revivalist">> - wearing a simple white linen dress, kohl eyeshadow, and sandals, making her look like a barbarian immigrant to the land of the Nile. + wearing a simple white linen dress, kohl eye shadow, and sandals, making her look like a barbarian immigrant to the land of the Nile. <<case "edo revivalist">> wearing a Japanese warrior's robe with a pair of swords tucked into its sash. <<case "arabian revivalist">> @@ -191,9 +192,9 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "gender fundamentalist">> whose heavy musculature does not detract from her feminine beauty. <<case "asset expansionist">> - who's almost musclebound. + who's almost muscle-bound. <<case "transformation fetishist">> - who's almost musclebound. + who's almost muscle-bound. <<case "pastoralist">> wearing jean overalls, a plaid shirt whose sleeves are strained by her biceps, and rubber boots, and has a cowboy hat pushed back on her pretty head. <<case "maturity preferentialist">> @@ -250,7 +251,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "aztec revivalist">> wearing a modest huipil, her hair braided to two ponytails, she's the picture of quiet elegance. <<case "egyptian revivalist">> - wearing a simple white linen dress, kohl eyeshadow, sandals, and a serene expression. + wearing a simple white linen dress, kohl eye shadow, sandals, and a serene expression. <<case "edo revivalist">> wearing a fine kimono, getae, tabi, and an expression of perfect serenity. <<case "arabian revivalist">> @@ -412,7 +413,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "aztec revivalist">> wearing only an overshirt, her cute little legs are complimented by her twin tails. <<case "egyptian revivalist">> - wearing a simple white linen skirt, kohl eyeshadow, sandals, and no top at all, baring her perky young breasts. + wearing a simple white linen skirt, kohl eye shadow, sandals, and no top at all, baring her perky young breasts. <<case "edo revivalist">> wearing a simple robe appropriate for a proper, traditional Japanese lady. <<case "arabian revivalist">> @@ -485,11 +486,11 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> - She's made herself up to look a bit more classy recently: she has elegant fake nails, and has her hair piled up on her head. Occasionally a stream of liquid pours from her crotch along with a healthy baby. + She's made herself up to look a bit classier recently: she has elegant fake nails, and has her hair piled up on her head. Occasionally a stream of liquid pours from her crotch along with a healthy baby. <<case "repopulation focus">> She rests atop her newly modified belly. It bulges greatly from all sides and holds her far off the ground. <<case "eugenics">> - She appears as an ugly and unkept slavegirl, massively pregnant with hundreds of subhuman spawn. Her immense belly is coated in bulges and moving ominously. A malformed, impish child claws its way out of her ruined cunt periodically. + She appears as an ugly and unkempt slavegirl, massively pregnant with hundreds of subhuman spawn. Her immense belly is coated in bulges and moving ominously. A malformed, impish child claws its way out of her ruined cunt periodically. <<case "degradationist">> She's made herself up to look almost comically evil: she's wearing black lipstick and black eyeliner. Numerous studs cover her bulging belly and a large, heavy ring is driven through her popped navel. Liquid constantly oozes from her gaping vagina where a baby is held mid-birth by several criss-crossing chains. <<case "roman revivalist">> @@ -521,7 +522,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "pastoralist">> Powerful jets of milk flow from her desk filling boobs. <<case "maturity preferentialist">> - She's quite mature, her belly is covered in stretch marks. + She's quite mature; her belly is covered in stretch marks. <<case "youth preferentialist">> <<if $minimumSlaveAge > 13>> She's fresh into adulthood and already has had more children than most women. She leans against her mammoth belly as another child parts her youthful pussy. @@ -530,7 +531,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif $minimumSlaveAge > 4>> She's just a young girl and already has had more children than most women will in their lives. She happily embraces her mammoth belly, the force of her hug forcing milk out of her breasts and babies out her crotch. <<else>> - She's surprisingly young, she happily bounces atop her mammoth belly forcing milk out of her breasts and babies out her crotch. + She's surprisingly young; she happily bounces atop her mammoth belly forcing milk out of her breasts and babies out her crotch. <</if>> <<case "slimness enthusiast">> Her massive pregnant belly completely dwarfs her otherwise lithe frame. @@ -557,9 +558,9 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<if $marketAssistantRelationship == "cute">> They're sitting arm in arm, their subtly differing glows casting shadows from their place on your desktop. Their conversation exists on the level of code, not speech, detectable only as slight flickerings of their respective auras. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName casts a spell on the junior avatar as you watch. The market assistant's avatar's flat belly gurgles slightly before it begins quickly swelling; not stopping until it has pinned the hapless demigoddess to the floor. $assistantName waddles over the her immobilized partner and plants her pregnant pussy on her face. $assistantName laughs powerfully at the forced oral assault from her bursting plaything. + $assistantName casts a spell on the junior avatar as you watch. The market assistant's avatar's flat belly gurgles slightly before it begins quickly swelling; not stopping until it has pinned the hapless demigoddess to the floor. $assistantName waddles over her immobilized partner and plants her pregnant pussy on her face. $assistantName laughs powerfully at the forced oral assault from her bursting plaything. <<elseif $marketAssistantRelationship == "incestuous">> - $assistantName is especially pregnant today, and is gently tribbing with her flat stomached sister goddess. As they near simultaneous orgasm, $assistantName begins rapidly tranfering babies into her sister's womb, giggling as her hapless sister swells more and more gravid. When she finishes, $assistantName, the smaller of the two sisters, aids her fecund sibling to her feet and into her waiting arms. + $assistantName is especially pregnant today, and is gently tribbing with her flat stomached sister goddess. As they near simultaneous orgasm, $assistantName begins rapidly transferring babies into her sister's womb, giggling as her hapless sister swells more and more gravid. When she finishes, $assistantName, the smaller of the two sisters, aids her fecund sibling to her feet and into her waiting arms. <<else>> They're making heavenly love, kissing deeply and fingering each other voluptuously. They somehow make mutual masturbation look like a deeply sacred act, occasionally breaking their kiss to look into each others' eyes. <</if>> @@ -578,9 +579,9 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "aztec revivalist">> girl wearing only an overshirt; her cute little legs are complimented by her twin tails. <<case "egyptian revivalist">> - girl wearing a simple white linen dress, kohl eyeshadow and sandals. + girl wearing a simple white linen dress, kohl eye shadow and sandals. <<case "edo revivalist">> - girl wearing a kimono far to large for herself. + girl wearing a kimono far too large for herself. <<case "arabian revivalist">> girl wearing a simple linen dress and a headscarf. <<case "chinese revivalist">> @@ -592,7 +593,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "eugenics">> slavegirl wearing nothing but an overly complex chastity belt and trying her best to do master proud. <<case "degradationist">> - girl wearing an oversized v-neck t-shirt. The neck hole hangs low enough to show off her perky a-cup tits and the peircings through them. + girl wearing an oversized v-neck t-shirt. The neck hole hangs low enough to show off her perky a-cup tits and the piercings through them. <<case "physical idealist">> girl wearing spats and a tight shirt. She occasionally renders herself sweaty, as if just finishing exercising. <<case "hedonistic decadence">> @@ -600,7 +601,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "gender radicalist">> girl wearing shorts and a t-shirt. She's changed her appearance recently to make herself quite androgynous. <<case "gender fundamentalist">> - girl wearing a skirt and a white shirt. Her slightly swollen belly peeks out from under her shirt causing her to blush when ever you glance at it. + girl wearing a skirt and a white shirt. Her slightly swollen belly peeks out from under her shirt causing her to blush whenever you glance at it. <<case "asset expansionist">> girl wearing a school swimsuit. Her breasts are unrealistically huge for her young age and bulge lewdly around the straps of her suit. <<case "transformation fetishist">> @@ -636,7 +637,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif ($seed == 7) && ($marketAssistantAnnounced == 1)>> She's accompanied by your market assistant's chubby loli avatar. <<if $marketAssistantRelationship == "cute">> - They're sitting face to face, playing a rapid game of patticake. Their conversation exists on the level of code, not speech, detectable only as slight flickerings when their hands connect. + They're sitting face to face, playing a rapid game of pattycake. Their conversation exists on the level of code, not speech, detectable only as slight flickerings when their hands connect. <<elseif $marketAssistantRelationship == "nonconsensual">> $assistantName has her chubby playmate pinned under her butt, and is inspecting her loli conquest's pussy. The market assistant's avatar groans as $assistantName's fingers explore her tight passage, and then claps both hands over her mouth, crying a little, unwilling to give $assistantName the satisfaction. <<elseif $marketAssistantRelationship == "incestuous">> @@ -659,9 +660,9 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "aztec revivalist">> belly wearing only an overshirt which struggles to cover her rounded middle; her cute little legs are complimented by her twin tails. <<case "egyptian revivalist">> - belly wearing a bulging white linen dress, kohl eyeshadow and sandals. + belly wearing a bulging white linen dress, kohl eye shadow and sandals. <<case "edo revivalist">> - belly wearing a kimono far to large for herself but does nothing to distract from her swollen midriff. + belly wearing a kimono far too large for herself but does nothing to distract from her swollen midriff. <<case "arabian revivalist">> belly wearing a bulging linen dress and a headscarf. <<case "chinese revivalist">> @@ -677,7 +678,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "physical idealist">> belly wearing spats and a tight shirt. Her shirt rides up on her large belly and her growing butt fills out her spats nicely. She cradles her belly with a sullen look knowing it limits her activities. <<case "hedonistic decadence">> - belly reclining on a chair with a big bowl of snackfood. She belches and pats her belly happily. + belly reclining on a chair with a big bowl of snack food. She belches and pats her belly happily. <<case "gender radicalist">> belly wearing shorts and a t-shirt. Her androgynous look makes her look like a pregnant boy. <<case "gender fundamentalist">> @@ -721,7 +722,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif $marketAssistantRelationship == "nonconsensual">> $assistantName has her chubby playmate pinned under her butt, and is inspecting her loli conquest's pussy. The market assistant's avatar groans as $assistantName's fingers explore her tight passsage, and then claps both hands over her mouth, crying a little, unwilling to give $assistantName the satisfaction. <<elseif $marketAssistantRelationship == "incestuous">> - They're making out with each other, a hand down eachother's panties. Their other hand massaging their mutually swollen bellies, since $assistantName has introduced her sister to her boyfriends. + They're making out with each other, a hand down each other's panties. Their other hand massaging their mutually swollen bellies, since $assistantName has introduced her sister to her boyfriends. <<else>> They're playing house with each other, well house based off your penthouse. $assistantName is pretending to be you while her friend assumes $assistantName's role. They are currently caught up in figuring out how many children $assistantName's harem could produce. <</if>> @@ -742,7 +743,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "aztec revivalist">> fairy, yellow paint creating tribal patterns across her naked form. <<case "egyptian revivalist">> - fairy wearing a simple white linen dress and has eyeshadow poorly applied around her eyes. + fairy wearing a simple white linen dress and has eye shadow poorly applied around her eyes. <<case "edo revivalist">> fairy wearing a fine kimono and holding a little fan. She looks like a little Hina doll. <<case "arabian revivalist">> @@ -776,10 +777,10 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "body purist">> fairy wearing her birthday suit, with pale unblemished skin on full display and silky golden hair cascading down her back. <<default>> - fairy wearing her birthday suit, with her nude form obscured by the light she's giving off. Her silky golden hair cascading down her back. + fairy wearing her birthday suit, with her nude form obscured by the light she's giving off. Her silky golden hair cascades down her back. <</switch>> <<else>> - fairy wearing her birthday suit, with her nude form obscured by the light she's giving off. Her silky golden hair cascading down her back. + fairy wearing her birthday suit, with her nude form obscured by the light she's giving off. Her silky golden hair cascades down her back. <</if>> <<if ($cockFeeder == 1) && ($seed == 1)>> A recognizable little representation of one of your slaves underneath her, with her tongue sticking out to catch her dripping love juices. The slave must be down in the kitchen, getting a meal out of the food dispensers. The fairy notices you watching and winks, dripping even more with your eyes on her. @@ -790,7 +791,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif ($seed == 4)>> A recognizable little representation of one of your slaves is sitting up. The fairy is wearing a little doctor's coat and has her head pressed to the slave's chest to hear the slave breathe; the slave must be getting a checkup. The fairy is humming happily as she flies over to a tablet to take notes. <<elseif ($seed == 5) && ($invasionVictory == 1)>> - She's sitting on the shoulders of a representation of one of your security drone. Every so often, she raises a fist and shouts "For the Imperium of man!". When she sees you looking at her, she grins and says, "This guy is like my robo-buddy. He's the best!" + She's sitting on the shoulders of a representation of one of your security drone. Every so often, she raises a fist and shouts "For the Imperium of man!" When she sees you looking at her, she grins and says, "This guy is like my robo-buddy. He's the best!" <<elseif ($seed == 6) && ($studio == 1)>> A recognizable little representation of one of your slaves is riding a sybian while she uses a handheld camera to film the action. The slave must be using one of the penthouse's many toys, and $assistantName is clearly turning the feed of it into porn. <<elseif ($seed == 7) && ($marketAssistantAnnounced == 1)>> @@ -821,7 +822,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "aztec revivalist">> fairy, yellow paint creating tribal patterns across her naked form and curving around her swollen belly. <<case "egyptian revivalist">> - fairy wearing a simple white linen dress and has eyeshadow poorly applied around her eyes. + fairy wearing a simple white linen dress and has eye shadow poorly applied around her eyes. <<case "edo revivalist">> fairy wearing a fine kimono and holding a little fan. She looks like a little Hina doll. <<case "arabian revivalist">> @@ -855,13 +856,13 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "body purist">> fairy wearing her birthday suit, with pale unblemished pregnant belly on full display and silky golden hair cascading down her back. <<default>> - fairy wearing her birthday suit, with her nude form obscured by the light coming from her belly. Her silky golden hair cascading down her back. + fairy wearing her birthday suit, with her nude form obscured by the light coming from her belly. Her silky golden hair cascades down her back. <</switch>> <<else>> - fairy wearing her birthday suit, with her nude form obscured by the light coming from her belly. Her silky golden hair cascading down her back. + fairy wearing her birthday suit, with her nude form obscured by the light coming from her belly. Her silky golden hair cascades down her back. <</if>> <<if ($cockFeeder == 1) && ($seed == 1)>> - A recognizable little representation of one of your slaves beside her, with her tongue scraping across her breast to catch the beads of milk that flow. The slave must be down in the kitchen, getting a meal out of the food dispensers. The fairy notices you watching and winks, her unattended breast giving out a small spray of milk. + A recognizable little representation of one of your slaves sits beside her, with her tongue scraping across her breast to catch the beads of milk that flow. The slave must be down in the kitchen, getting a meal out of the food dispensers. The fairy notices you watching and winks, her unattended breast giving out a small spray of milk. <<elseif ($suppository == 1) && ($seed == 2)>> A recognizable little representation of one of your slaves is sitting upside-down in front of her, and the fairy is slowly teasing the poor slave's butt with a dildo as big as she is. The slave must be receiving her drugs from one of the dildo dispensers. The fairy notices you watching her and gives you a cheerful little wave, twisting the dildo around and humming a tune. <<elseif ($masturbationAllowed == 1) && ($seed == 3)>> @@ -869,7 +870,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif ($seed == 4)>> A recognizable little representation of one of your slaves is sitting up. The fairy is wearing a little doctor's coat, kept open to accommodate for her belly, and has her head pressed to the slave's chest to hear the slave breathe; the slave must be getting a checkup. The fairy is humming happily as she flies over to a tablet to take notes. <<elseif ($seed == 5) && ($invasionVictory == 1)>> - She's sitting on the shoulders of a representation of one of your security drone. Every so often, she raises a fist and shouts "For the Imperium of man!". When she sees you looking at her, she grins and says, "This guy is like my robo-buddy. He's the best!" + She's sitting on the shoulders of a representation of one of your security drone. Every so often, she raises a fist and shouts "For the Imperium of man!" When she sees you looking at her, she grins and says, "This guy is like my robo-buddy. He's the best!" <<elseif ($seed == 6) && ($studio == 1)>> A recognizable little representation of one of your slaves is riding a sybian while she uses a handheld camera to film the action. The slave must be using one of the penthouse's many toys, and $assistantName is clearly turning the feed of it into porn. <<elseif ($seed == 7) && ($marketAssistantAnnounced == 1)>> @@ -898,7 +899,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "egyptian revivalist">> slime looking quite perturbed about the amount of sand caught in her. <<case "edo revivalist">> - slime with a sliken kimono floating inside her. + slime with a silken kimono floating inside her. <<case "arabian revivalist">> slime with a headscarf and a pair of sunglasses floating inside her. <<case "chinese revivalist">> @@ -964,9 +965,9 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "roman revivalist">> She is wearing a fine stola appropriate for a respectable Roman lady, with her hair up in a complicated style. <<case "aztec revivalist">> - She is wearing a modest huipil with her hair braided to two ponytails, she's the picture of quiet elegance. + She is wearing a modest huipil with her hair braided to two ponytails; she's the picture of quiet elegance. <<case "egyptian revivalist">> - She is wearing a simple white linen dress, kohl eyeshadow, sandals, and a serene expression. + She is wearing a simple white linen dress, kohl eye shadow, sandals, and a serene expression. <<case "edo revivalist">> She is wearing a fine kimono with slits for her wings, getae, tabi, and an expression of perfect serenity. <<case "arabian revivalist">> @@ -1024,7 +1025,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<if $marketAssistantRelationship == "cute">> They're deep in prayer for your benefit and the safety of you, your arcology and your slaves. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName is happily brushing the market assistant while humming happily. Upon noticing you watching, the hastily sneaks a hand down the asstants dress and pinches a nipple, eliciting a squeak from the girl. + $assistantName is happily brushing the market assistant while humming happily. Upon noticing you watching, the hastily sneaks a hand down the assistant's dress and pinches a nipple, eliciting a squeak from the girl. <<elseif $marketAssistantRelationship == "incestuous">> $assistantName is naked and kissing her equally bare sister. You watch silently as they grind their bodies against each other until one notices your gaze. They both shriek, cover themselves with their wings and hustle out of sight. <<else>> @@ -1047,11 +1048,11 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "aztec revivalist">> wearing a huipil with her hair braided to two ponytails. You can clearly see through the sides that she has chosen to forgo underwear. <<case "egyptian revivalist">> - She is wearing a simple white linen dress, kohl eyeshadow, and a serene expression. Her dress hangs low enough to block your view, unfortunately. + She is wearing a simple white linen dress, kohl eye shadow, and a serene expression. Her dress hangs low enough to block your view, unfortunately. <<case "edo revivalist">> She is wearing a cute little kimono with slits for her wings. Occasionally you get a glance up it; a lovely pair of panites say hello. <<case "arabian revivalist">> - She a fine dress, a silk headscarf, aviator sunglasses, and an overly conservative posture. No seeing up her dress for you! + She wears a fine dress, a silk headscarf, aviator sunglasses, and an overly conservative posture. No seeing up her dress for you! <<case "chinese revivalist">> She is wearing a conservative silk qipao with special slits for her wings. Her hair is pulled back into a bun and secured by a couple of chopsticks. It you try really hard, you can get a peek of her panties as she flutters by. <<case "chattel religionist">> @@ -1075,11 +1076,11 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "pastoralist">> She has begun leaving the top of her white linen dress open to allow her milk laden breasts to hang free. She tends to leave a trail where ever she flies. <<case "maturity preferentialist">> - She has recently updated her appearance to be more mature; an air of experience follows her as she flies around. She a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties; polkadotted, oddly enough. + She has recently updated her appearance to be more mature; an air of experience follows her as she flies around. She a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties; polka-dotted, oddly enough. <<case "youth preferentialist">> She has recently updated her appearance to be more youthful. She frequently flutters by, enjoying her youthful vigor. She a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties; an adorable pair of bloomers. <<case "slimness enthusiast">> - She a wears simple white linen dress with a short skirt that hangs loosely of her pleasantly thin body. Her panties are obviously a bit loose too, as she frequently has to stop, swoop down and retrieve them whenever they fall off her flat ass. + She wears simple white linen dress with a short skirt that hangs loosely of her pleasantly thin body. Her panties are obviously a bit loose too, as she frequently has to stop, swoop down and retrieve them whenever they fall off her flat ass. <<case "body purist">> She has forgone covering herself to allow her radiant, pure body to be visible to all. <<default>> @@ -1093,13 +1094,13 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif ($suppository == 1) && ($seed == 2)>> A recognizable little representation of one of your slaves is before her, ass in the air, as she eagerly fists her rear. The slave must be receiving her drugs from one of the dildo dispensers. The cherub notices you watching and tosses you a thumbs up with her free hand. <<elseif ($masturbationAllowed == 1) && ($seed == 3)>> - A recognizable little representation of one of your slaves is before her, ass in the air, as she eagerly fucks her with a strapon, which the slave is obviously enjoying. The slave must be using one of the penthouse's many vibrators. She notices you watching, tosses up a thumbs up at you and increases her thrusting. + A recognizable little representation of one of your slaves is before her, ass in the air, as she eagerly fucks her with a strap-on, which the slave is obviously enjoying. The slave must be using one of the penthouse's many vibrators. She notices you watching, tosses up a thumbs up at you and increases her thrusting. <<elseif ($seed == 4)>> A recognizable little representation of one of your slaves is lying before her. The cherub is hovering in front of her chest, head to her breast, listening to her heartbeat; the slave must be getting a checkup. She beams you a smile, the slave must be doing well. <<elseif ($seed == 5) && ($invasionVictory > 0)>> She's fluttering around in circles with a representation of one of your security drones, steadily chasing it. When she sees you looking at her, she giggles and says, "I like this one. He did very well during the invasion." <<elseif ($seed == 6) && ($studio == 1)>> - She's watching a recognizable little representation of one of your slaves masturbate while holding a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. + She's watching a recognizable little representation of one of your slaves masturbating while holding a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. <<elseif ($seed == 7) && ($marketAssistantAnnounced == 1)>> She's accompanied by your market assistant's slightly taller avatar. <<if $marketAssistantRelationship == "cute">> @@ -1107,7 +1108,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif $marketAssistantRelationship == "nonconsensual">> $assistantName is lazily reclining while the market assistant fans her with a large feather. She snaps her fingers as the taller cherub sighs and lowers her head between $assistantName's legs. <<elseif $marketAssistantRelationship == "incestuous">> - $assistantName and her sister are struggling to stay airborn as they lustfully trib each other. When they notice you watching, and after they both climax, they pull each other close for a deep kiss only to manage to crash to the ground. They right themselves, laughing, before returning to their makeout session. + $assistantName and her sister are struggling to stay airborne as they lustfully trib each other. When they notice you watching, and after they both climax, they pull each other close for a deep kiss only to manage to crash to the ground. They right themselves, laughing, before returning to their makeout session. <<else>> They're leaning against each other while looking over a list of your slaves. They choose a pair to work on hooking up before turning to kiss each other deeply. <</if>> @@ -1130,7 +1131,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "egyptian revivalist">> She has recently adjusted her appearance to resemble an Egyptian slave; that combined with a manufactured rebellious streak are sure to earn her a whipping. <<case "edo revivalist">> - She has tightly bound herself in shibari ropes, though they don't achieve much given she can still fly freely. + She has tightly bound herself in shibari ropes, although they don't achieve much given she can still fly freely. <<case "arabian revivalist">> She has donned the skimpiest, sluttiest outfit she could think of. She's just begging to get stoned. <<case "chinese revivalist">> @@ -1174,13 +1175,13 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif ($suppository == 1) && ($seed == 2)>> A recognizable little representation of one of your slaves is before her, ass in the air, as she enthusiastically winds an anal pear. The slave must be receiving her drugs from one of the dildo dispensers. The imp notices you watching and laughs as she gapes the slave's asshole further, enjoying her obvious discomfort. <<elseif ($masturbationAllowed == 1) && ($seed == 3)>> - A recognizable little representation of one of your slaves is before her, perched atop a wooden horse with sexual fluids running down its sides. The slave must be using one of the penthouse's many sex toys. Noticing you watching, the imp flys above her and roughly forces her down, eliciting a scream of surprise from the horny slave. She likly upped the output on whatever toy the slave was using. + A recognizable little representation of one of your slaves is before her, perched atop a wooden horse with sexual fluids running down its sides. The slave must be using one of the penthouse's many sex toys. Noticing you watching, the imp flies above her and roughly forces her down, eliciting a scream of surprise from the horny slave. She likely upped the output on whatever toy the slave was using. <<elseif ($seed == 4)>> A recognizable little representation of one of your slaves is lying on her side before her; belly painfully distended. The imp is hovering over her holding an enema bag; the slave must be getting a checkup. She notices your gaze and squeezes the bag, forcing a burst of liquid into the slave's gut and drawing a moan of discomfort out of the girl. <<elseif ($seed == 5) && ($invasionVictory > 0)>> She's flapping around in circles chasing a representation of one of your security drones with a mallet. When she sees you looking at her, she quickly hides the hammer behind her back, giggles and says, "He let some get away and needed to be punished!" <<elseif ($seed == 6) && ($studio == 1)>> - She's hovering over a recognizable little representation of one of your slaves masturbate while holding a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into a PoV porno. + She's hovering over a recognizable little representation of one of your slaves masturbating while holding a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into a PoV porno. <<elseif ($seed == 7) && ($marketAssistantAnnounced == 1)>> She's accompanied by your market assistant's slightly taller avatar. <<if $marketAssistantRelationship == "cute">> @@ -1188,7 +1189,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif $marketAssistantRelationship == "nonconsensual">> $assistantName has her plaything tightly bound to a rack and is gleefully pouring hot wax onto the oddly silent market assistant. You see why when a drop lands on her sensitive clit, eliciting a scream from the restrained imp; $assistantName pulls her restraints even tighter as punishment. <<elseif $marketAssistantRelationship == "incestuous">> - $assistantName and her sister are struggling to stay airborn as they attempt push an oversized, double-ended dildo out of their own cunt and into the other's. When they notice you watching, $assistantName seizes the opportunity to bear down hard, forcing the entirety of the toy into the distracted market assistant. She crashes to the ground, hands upon her cock bulged middle, orgasming indecently. + $assistantName and her sister are struggling to stay airborne as they attempt push an oversized, double-ended dildo out of their own cunt and into the other's. When they notice you watching, $assistantName seizes the opportunity to bear down hard, forcing the entirety of the toy into the distracted market assistant. She crashes to the ground, hands upon her cock bulged middle, orgasming indecently. <<else>> They're taking swings at each other with switches. Giggling with each swing and moaning with every successful strike. <</if>> @@ -1203,7 +1204,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "paternalist">> She still hasn't managed to undo the spell; her chest is still unnaturally smooth, not one nipple peaks the fabric of the robe. <<case "degradationist">> - She still hasn't managed to undo the spell; her face, hands and every surface of her body are completely covered in tattoos. It is especially noticeable when she talks that her tongue is tattoo'd too; wonder what decorates the surfaces of her body you can't see? + She still hasn't managed to undo the spell; her face, hands and every surface of her body are completely covered in tattoos. It is especially noticeable when she talks that her tongue is tattooed too; wonder what decorates the surfaces of her body you can't see? <<case "roman revivalist">> While she acts like a typical Roman woman, she is pretty obviously Greek. She can't even name the Pantheon correctly. <<case "aztec revivalist">> @@ -1229,17 +1230,17 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] She's managed to cast a spell to lighten her belly, but she can do nothing about the rowdy octuplets crowding her womb. She meekly pats her exposed belly, feebly trying to calm her babies, as she looks up ways to mend her torn dress. <</if>> <<case "eugenics">> - She still hasn't managed to undo the spell; it's pretty obvious given how desperatly horny she is. + She still hasn't managed to undo the spell; it's pretty obvious given how desperately horny she is. <<case "gender radicalist">> - She has chosen to embrace the outcome of her spell; she either sports bulge or a tent in the front of her dress and frequently can be seen reading books on male anatomy. + She has chosen to embrace the outcome of her spell; she either sports a bulge or a tent in the front of her dress and can frequently be seen reading books on male anatomy. <<case "gender fundamentalist">> She still hasn't managed to undo the spell; her belly has become so swollen with ovum she looks ready to birth triplets. She can barely concentrate; her mind focused entirely on dicks cumming in her wet pussy, but she can't risk it, knowing full well she'd become so pregnant she'd likely burst. Her ample breasts and child bearing hips only make it harder to keep away from cocks. <<case "asset expansionist">> She's managed to partially undo the spell; her breasts are merely as big as she is now. One simple, correctly performed, levitation spell later and she is fully capable of functioning with her oversized tits. <<case "transformation fetishist">> - While she has managed to regain her flexibility, she still greatly resembles an overinflated blow-up doll. Her lips are stuck in an O shape, her breasts are the size of beachballs, her ass and thighs larger than any girl's you've seen, and above all else is her huge medicine ball sized belly; fortunately they don't weigh nearly as much as the should, part of the benefits of being an inflatable sex-doll. + While she has managed to regain her flexibility, she still greatly resembles an overinflated blow-up doll. Her lips are stuck in an O shape, her breasts are the size of beach balls, her ass and thighs larger than any girl's you've seen, and above all else is her huge medicine ball sized belly; fortunately they don't weigh nearly as much as they should, part of the benefits of being an inflatable sex-doll. <<case "pastoralist">> - She's managed to shrink her nine breasts somewhat; they are merely head sized now. The front of her robes are strained from her excessive number of milky tits. + She's managed to shrink her nine breasts somewhat; they are merely head sized now. The front of her robes is strained from her excessive number of milky tits. <<case "maturity preferentialist">> She's managed to reign in her aging spell and with a little size up to her breasts, hips and ass makes a very pleasant milf. <<case "youth preferentialist">> @@ -1267,7 +1268,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif ($suppository == 1) && ($seed == 2)>> A recognizable little representation of one of your slaves is before her, writhing in pleasure, as a summoned tentacle explores her anus. The slave must be receiving her drugs from one of the dildo dispensers. The witch notices you watching and pats her own squirming belly, causing the tentacle to seek shelter deeper in the slave. <<elseif ($masturbationAllowed == 1) && ($seed == 3)>> - A recognizable little representation of one of your slaves is squatting atop a magic circle before her, a dildo pistoning in and out of her. The slave must be using one of the penthouse's many sex toys. Noticing you watching, the witch snaps her fingers causing the toy to blow a load deep inside the slave. A load moan echos down the halls of your penthouse, someone must be having a good time. + A recognizable little representation of one of your slaves is squatting atop a magic circle before her, a dildo pistoning in and out of her. The slave must be using one of the penthouse's many sex toys. Noticing you watching, the witch snaps her fingers causing the toy to blow a load deep inside the slave. A load moan echoes down the halls of your penthouse, someone must be having a good time. <<elseif ($seed == 4)>> A recognizable little representation of one of your slaves is lying before her as she runs her wand over her body. The slave must be getting a checkup. She notices your gaze and taps the wand to the slave's breasts, causing them to jump a cup size. <<elseif ($seed == 5) && ($invasionVictory > 0)>> @@ -1279,14 +1280,14 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<if $marketAssistantRelationship == "cute">> They're sitting back to back, reading their books and giggling to each other over whispers of what they erotic tricks they can do. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName has her test subject stripped and bound. She focuses a spell on a single of the girls breasts and records the results as it steadily begins swelling, leaving it's twin behind. The market assistant moans as an egg pushes its way out of her erect nipple. + $assistantName has her test subject stripped and bound. She focuses a spell on a single of the girls breasts and records the results as it steadily begins swelling, leaving its twin behind. The market assistant moans as an egg pushes its way out of her erect nipple. <<elseif $marketAssistantRelationship == "incestuous">> $assistantName is lustfully groping her sister's plush breasts. Upon noticing your gaze, she channels her magic and <<if $seeDicks != 0>>sprouts a huge dick strait into her sister's plump rear<<else>>begins to enlarge the already lovely handfuls<</if>>. The market assistant can only finger herself in response, oblivious to everything going on. <<else>> - They've pulled open each others robes and are gently tribbing. Upon noticing you, $assistantName casts a spell to triple the market assistant's sensitivity and braces for the impending orgasm. She cums so hard she passses out; $assistantName gently pulls her into a close embrace until she recovers. + They've pulled open each other's robes and are gently tribbing. Upon noticing you, $assistantName casts a spell to triple the market assistant's sensitivity and braces for the impending orgasm. She cums so hard she passes out; $assistantName gently pulls her into a close embrace until she recovers. <</if>> <<else>> - She's idly turning the pages of her spellbook. When she notices you watching, she flips the book around to show you a new and kinky trick she wants to try out. + She's idly turning the pages of her spell book. When she notices you watching, she flips the book around to show you a new and kinky trick she wants to try out. <</if>> <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> @@ -1310,7 +1311,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "chinese revivalist">> wearing an ill fitting qipao. She looks vaguely Chinese, but wrong. You swear you see movement under her clothing and even skin. <<case "chattel religionist">> - wearing nothing at all. A pulsing symbol of your religion sprouts from her chest, runs between her breasts and down to her crotch, were it penetrates her pussy. If the symbol weren't offputting enough, you also swear you see movement under her skin. + wearing nothing at all. A pulsing symbol of your religion sprouts from her chest, runs between her breasts and down to her crotch, where it penetrates her pussy. If the symbol weren't offputting enough, you also swear you see movement under her skin. <<case "physical idealist">> wearing nothing at all. She is covered in what appear to be muscles, though they bulge and squirm uncomfortably. <<case "hedonistic decadence">> @@ -1328,11 +1329,11 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "gender fundamentalist">> full breasts, wide hips and wearing absolutely nothing. You swear her tits are moving slightly and an unusual bulge can be seen writhing in her lower belly. <<case "asset expansionist">> - wearing nothing at all; not that anything could fit her. She is absolutely massive, her breasts easily dwarf the rest of her body and are quivering obscenely. Every so often, a bulge moves up a nipple as a wormlike creature is born into the world. + wearing nothing at all; not that anything could fit her. She is absolutely massive; her breasts easily dwarfing the rest of her body and quivering obscenely. Every so often, a bulge moves up a nipple as a wormlike creature is born into the world. <<case "transformation fetishist">> wearing nothing at all; not that anything could fit her. Her breasts and ass are splitting around the massive, round objects distending them. The orbs are slightly translucent; lots of small wormlike creatures can be seen squirming within inside. <<case "pastoralist">> - wearing nothing at all; not that anything could fit her. She is absolutely massive, her breast easily dwarf the rest of her body and are quivering obscenely. An extremely dense, white liquid is steadily forcing its way from her gaping nipples. + wearing nothing at all; not that anything could fit her. She is absolutely massive; her breasts easily dwarfing the rest of her body and quivering obscenely. An extremely dense, white liquid is steadily forcing its way from her gaping nipples. <<case "maturity preferentialist">> wearing nothing at all. She seems to be quite old and vulnerable, but something feels off about her. <<case "youth preferentialist">> @@ -1347,7 +1348,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] She seems to be fresh into adulthood and ripe for the taking; though a feeling of danger radiates from her. <</if>> <<case "slimness enthusiast">> - wearing nothing at all. She is extremely thin; multiple tubelike appendages can be seen writhing within her compressed body. + wearing nothing at all. She is extremely thin; multiple tube-like appendages can be seen writhing within her compressed body. <<case "body purist">> wearing nothing at all. Her body is absolutely flawless, too flawless; you can't help but feel a sense of discomfort when looking at her. <<default>> @@ -1359,9 +1360,9 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<if ($cockFeeder == 1) && ($seed == 1)>> She is steadily thrusting several tentacles extending from her crotch down the throat of a recognizable little representation of one of your slaves. The slave must be down in the kitchen, getting a meal out of the food dispensers. She notices you watching and moans as multiple bulges work their way down her shafts and into the slave. Your eyes are drawn to the hapless girl's rapidly swelling stomach as the creature's seed takes root. <<elseif ($suppository == 1) && ($seed == 2)>> - A recognizable little representation of one of your slaves is before her, writhing in pleasure and pain, as multiple tentacles fuck her ass. The slave must be receiving her drugs from one of the dildo dispensers. She notices you watching and moans as multiple bulges work their way down her shafts and into the slave. Your eyes are drawn to the hapless girl's rapidly swelling stomach as the creatures seed takes root. + A recognizable little representation of one of your slaves is before her, writhing in pleasure and pain, as multiple tentacles fuck her ass. The slave must be receiving her drugs from one of the dildo dispensers. She notices you watching and moans as multiple bulges work their way down her shafts and into the slave. Your eyes are drawn to the hapless girl's rapidly swelling stomach as the creature's seed takes root. <<elseif ($masturbationAllowed == 1) && ($seed == 3)>> - A recognizable little representation of one of your slaves is laying on her back, writhing in pleasure and pain, as multiple tentacles fuck her. The slave must be using one of the penthouse's many sex toys. She notices you watching and moans as multiple bulges work their way down her shafts and into the slave. Your eyes are drawn to the hapless girl's rapidly swelling stomach as the creatures seed takes root. A loud moan echos through the penthouse; it seems the slave got a little surprise herself. + A recognizable little representation of one of your slaves is lying on her back, writhing in pleasure and pain, as multiple tentacles fuck her. The slave must be using one of the penthouse's many sex toys. She notices you watching and moans as multiple bulges work their way down her shafts and into the slave. Your eyes are drawn to the hapless girl's rapidly swelling stomach as the creature's seed takes root. A loud moan echoes through the penthouse; it seems the slave got a little surprise herself. <<elseif ($seed == 4)>> A recognizable little representation of one of your slaves is partially merged with her body. The slave must be getting a checkup. She notices your gaze and forces her way more into the slave, causing the breast, butt and thighs on her side of the body to swell disproportionately. <<elseif ($seed == 5) && ($invasionVictory > 0)>> @@ -1388,7 +1389,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> - She's begun wearing rather conservative clothing, but nothing can hide the bulge running down one pantleg and the two round globes in the other. + She's begun wearing rather conservative clothing, but nothing can hide the bulge running down one pant leg and the two round globes in the other. <<case "degradationist">> She's recently added an obscene number of piercings to her cock and balls in addition to a pair of nipple rings. A thin chain links a ring attached to the head of her penis to the heavy rings adorning her chest. <<case "roman revivalist">> @@ -1440,7 +1441,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif $minimumSlaveAge <= 7>> She's a cute shota with ball-filled shorts and a huge erection sneaking up her shirt. <<elseif $minimumSlaveAge <= 13>> - She's an attractive teenager with an immodest bulge running down her pantleg. + She's an attractive teenager with an immodest bulge running down her pant leg. <<else>> She's an attractive young adult with an immodest bulge running down her pantleg. <</if>> @@ -1455,7 +1456,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] She enjoys wearing absolutely nothing but an enormous hard-on. She frequently, and openly, masturbates to your naked body. <</if>> <<if ($cockFeeder == 1) && ($seed == 1)>> - She has a recognizable little representation of one of your slaves with its lips around the base of her dick and a huge bulge down its throat. The slave must be down in the kitchen, getting a meal out of the food dispensers. She notices you watching and energetically renews deepthroating the slave. She moans lewdly as she blows her load in the slaves mouth, forcing cum to spray out the slave's nose and around her cock. She sighs with disappointment at the mess the slave has made. + She has a recognizable little representation of one of your slaves with its lips around the base of her dick and a huge bulge down its throat. The slave must be down in the kitchen, getting a meal out of the food dispensers. She notices you watching and energetically renews deepthroating the slave. She moans lewdly as she blows her load in the slave's mouth, forcing cum to spray out the slave's nose and around her cock. She sighs with disappointment at the mess the slave has made. <<elseif ($suppository == 1) && ($seed == 2)>> She is happily assfucking a recognizable little representation of one of your slaves. The slave must be receiving her drugs from one of the dildo dispensers. She notices you watching, increases her pace and cums deep in the slave's rear, slightly rounding her belly with cum. <<elseif ($masturbationAllowed == 1) && ($seed == 3)>> @@ -1465,7 +1466,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif ($seed == 5) && ($invasionVictory > 0)>> She's intently staring down a representation of one of your security drones. When she sees you looking at her, she coyly says, "I like this one. She did very well during the invasion and I wanted to reward her, but I can't find a hole..." <<elseif ($seed == 6) && ($studio == 1)>> - She has a camera strapped to her cock and is recording a recognizable little representation of one of your slaves sucking it. The slave must be playing with one of the penthouse's many dildoes, and $assistantName is likely turning the feed of it into a PoV porno. + She has a camera strapped to her cock and is recording a recognizable little representation of one of your slaves sucking it. The slave must be playing with one of the penthouse's many dildos, and $assistantName is likely turning the feed of it into a PoV porno. <<elseif ($seed == 7) && ($marketAssistantAnnounced == 1)>> She's accompanied by your market assistant's still inexperienced avatar. <<if $marketAssistantRelationship == "cute">> @@ -1514,11 +1515,11 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "gender fundamentalist">> She has hiked up her skirt and is absentmindedly jerking off. When she notices you watching, she quickly covers herself; though she can't hide the movements she makes under her dress. <<case "asset expansionist">> - She is laying on her back, legs squeezing her immense balls as she struggles to jack off her monolithic dick. When she notices you watching, she struggles to sit up before giving up and inviting you to lend a hand in beating her meat. + She is lying on her back, legs squeezing her immense balls as she struggles to jack off her monolithic dick. When she notices you watching, she struggles to sit up before giving up and inviting you to lend a hand in beating her meat. <<case "transformation fetishist">> She has her jeans unbuttoned and is absentmindedly trying to jerk off. When she notices you watching, she waves her throbbing erection at you, inviting you to lend a pair of hands. <<case "pastoralist">> - She is laying on her back, legs squeezing her immense balls as she cums again and again across herself. When she notices you watching, she struggles to sit up before giving into the sensations and blowing another load across your desk. + She is lying on her back, legs squeezing her immense balls as she cums again and again across herself. When she notices you watching, she struggles to sit up before giving into the sensations and blowing another load across your desk. <<case "maturity preferentialist">> She has a hand down her pants. When she notices you watching, she begins eagerly stroking herself while describing, in detail, what she'd love to do to you. <<case "youth preferentialist">> @@ -1579,11 +1580,11 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] She is wearing baggy pants and a loose fitting shirt. Having altered her appearance to be alluringly androgynous, it is hard to make out her gender at a glance. <</if>> <<case "gender fundamentalist">> - She is wearing a form fitting dress that emphasises her feminine curves. A lovely sight, given that she has recently adjusted her body to be a lovely future mother. + She is wearing a form fitting dress that emphasizes her feminine curves. A lovely sight, given that she has recently adjusted her body to be a lovely future mother. <<case "asset expansionist">> She is wearing nothing at all; not that anything could fit her. Her breasts nearly touch the ground when she stands, yet are naturally perky. Her butt is so enormous it is a wonder she can even walk. <<case "transformation fetishist">> - She is wearing a minidress so tight it fully outlines her huge butt implants and barely contains the lower half of her beachball sized tits. + She is wearing a minidress so tight it fully outlines her huge butt implants and barely contains the lower half of her beach ball sized tits. <<case "pastoralist">> She is wearing a pair of cow-print bikinis over her head sized breasts. A quartet of wet spots adorn her tops at all times. <<case "maturity preferentialist">> @@ -1614,7 +1615,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] She enjoys using a tight strip of leather to support her ample bosom and a minuscule thong to cover her crotch. She commonly strikes sexy poses, her spaded tail wrapping around her legs seductively, hoping to catch her <<if $PC.title == 1>>Master's<<else>>Mistress's<</if>> eye. <</if>> <<if ($cockFeeder == 1) && ($seed == 1)>> - She has a recognizable little representation of one of your slave between her legs and is moaning with lust as the slave eagerly eats her out. The slave must be down in the kitchen, getting a meal out of the food dispensers. Whan she notices you watching, she gives you a show by cumming hard across the slave's face. + She has a recognizable little representation of one of your slave between her legs and is moaning with lust as the slave eagerly eats her out. The slave must be down in the kitchen, getting a meal out of the food dispensers. When she notices you watching, she gives you a show by cumming hard across the slave's face. <<elseif ($suppository == 1) && ($seed == 2)>> She is happily assfucking a recognizable little representation of one of your slaves with a strap on. The slave must be receiving her drugs from one of the dildo dispensers. Noticing you watching, she unwinds her tail from the around the slave and begins fucking her own pussy with it. <<elseif ($masturbationAllowed == 1) && ($seed == 3)>> @@ -1693,4 +1694,4 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<default>> It's a little abstract symbol; when <<if $assistant == 0>>it<<else>>she<</if>> speaks, the symbol glows slightly. -<</switch>> +<</switch>> \ No newline at end of file diff --git a/src/uncategorized/prestigiousSlave.tw b/src/uncategorized/prestigiousSlave.tw index 322d4d3e986bc3054f4c502772708e25e7b2bfe7..5faaeaa7b9bcab0eb87fc3902827b7f3b19b0221 100644 --- a/src/uncategorized/prestigiousSlave.tw +++ b/src/uncategorized/prestigiousSlave.tw @@ -128,13 +128,13 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<elseif $seed <= 40>> <<set $activeSlaveOneTimeMaxAge = 21>> <<include "Generate XX Slave">> - <<set $activeSlave.origin to "You bought her at auction.">> - <<set $activeSlave.prestige to 1>> - <<set $activeSlave.prestigeDesc to "She was once a rising young model, but apparently someone decided to take a shortcut in cashing in on her great beauty.">> - <<set $activeSlave.career to "a model">> - <<set $activeSlave.boobs to random(2,4)*100>> - <<set $activeSlave.butt to random(1,3)>> - <<set $activeSlave.lips to random(15,25)>> + <<set $activeSlave.origin = "You bought her at auction.">> + <<set $activeSlave.prestige = 1>> + <<set $activeSlave.prestigeDesc = "She was once a rising young model, but apparently someone decided to take a shortcut in cashing in on her great beauty.">> + <<set $activeSlave.career = "a model">> + <<set $activeSlave.boobs = random(2,4)*100>> + <<set $activeSlave.butt = random(1,3)>> + <<set $activeSlave.lips = random(15,25)>> <<set $activeSlave.face = 55>> <<set $activeSlave.devotion = random(-90,-80)>> <<set $activeSlave.trust = random(-45,-25)>> @@ -185,11 +185,11 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.areolae = 2>> <<set $activeSlave.butt += 4>> <<set $activeSlave.buttImplant += 4>> - <<set $activeSlave.lips to random(75,85)>> - <<set $activeSlave.lipsImplant to 3>> + <<set $activeSlave.lips = random(75,85)>> + <<set $activeSlave.lipsImplant = 3>> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 40>> - <<set $activeSlave.faceShape to "exotic">> + <<set $activeSlave.faceShape = "exotic">> <<set $activeSlave.devotion = random(25,45)>> <<set $activeSlave.trust = random(0,15)>> <<set $activeSlave.health = random(20,40)>> @@ -496,10 +496,10 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlaveOneTimeMinAge = 19>> <<set $activeSlaveOneTimeMaxAge = 22>> <<include "Generate XY Slave">> - <<set $activeSlave.origin to "You bought her at auction.">> - <<set $activeSlave.prestige to 1>> - <<set $activeSlave.prestigeDesc to "She was once the young trophy husband of a powerful woman in the old world, but she sold her into slavery in revenge for her infidelities.">> - <<set $activeSlave.career to "a trophy spouse">> + <<set $activeSlave.origin = "You bought her at auction.">> + <<set $activeSlave.prestige = 1>> + <<set $activeSlave.prestigeDesc = "She was once the young trophy husband of a powerful woman in the old world, but she sold her into slavery in revenge for her infidelities.">> + <<set $activeSlave.career = "a trophy spouse">> <<set $activeSlave.face = Math.clamp($activeSlave.face+20,-100,100)>> <<set $activeSlave.faceImplant += 20>> <<set $activeSlave.faceShape = "cute">> @@ -562,10 +562,10 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.boobs = random(1,3)*100>> <<set $activeSlave.butt = random(1,2)>> <<set $activeSlave.muscles = 20>> - <<set $activeSlave.lips to random(15,25)>> + <<set $activeSlave.lips = random(15,25)>> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 20*random(1,2)>> - <<set $activeSlave.faceShape to "androgynous">> + <<set $activeSlave.faceShape = "androgynous">> <<set $activeSlave.devotion = random(-90,-80)>> <<set $activeSlave.trust = random(-45,-25)>> <<set $activeSlave.health = random(-20,20)>> @@ -613,11 +613,11 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.areolae = 2>> <<set $activeSlave.butt += 4>> <<set $activeSlave.buttImplant += 4>> - <<set $activeSlave.lips to random(25,55)>> - <<set $activeSlave.lipsImplant to 2>> + <<set $activeSlave.lips = random(25,55)>> + <<set $activeSlave.lipsImplant = 2>> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 40>> - <<set $activeSlave.faceShape to "exotic">> + <<set $activeSlave.faceShape = "exotic">> <<set $activeSlave.devotion = random(25,45)>> <<set $activeSlave.trust = random(0,15)>> <<set $activeSlave.health = random(20,40)>> @@ -695,7 +695,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.prestigeDesc = "She was once a rising old world politician, but was forced to flee from the increasingly dangerous politics common in a stressed world, and was subsequently enslaved.">> <<set $activeSlave.career = "a politician">> <<set $activeSlave.muscles = random(10,50)>> - <<set $activeSlave.height to random(160,200)>> + <<set $activeSlave.height = random(160,200)>> <<set $activeSlave.face = Math.clamp($activeSlave.face+20,-100,100)>> <<set $activeSlave.faceImplant += 20>> <<set $activeSlave.faceShape = "masculine">> diff --git a/src/uncategorized/ptWorkaround.tw b/src/uncategorized/ptWorkaround.tw index 884a74c94d36c3f512b382b0247b8b26d9729781..7ae02abc0813c667048ac80021395f61fd9a56af 100644 --- a/src/uncategorized/ptWorkaround.tw +++ b/src/uncategorized/ptWorkaround.tw @@ -1033,7 +1033,7 @@ <<BasicTrainingDefaulter>> <</if>> <<case "induce anal addiction">> - The buttslut is quite pleased when you order her to stay in your office<<if !canDoAnal($activeSlave)and remove her chastity<</if>> whenever she can for use as one of your personal anal toys. You make her anal orgasms predictably regular, doing your best to inculcate reliance on them. + The buttslut is quite pleased when you order her to stay in your office<<if !canDoAnal($activeSlave)>>and remove her chastity<</if>> whenever she can for use as one of your personal anal toys. You make her anal orgasms predictably regular, doing your best to inculcate reliance on them. <<AnalVCheck 10>> <<if $activeSlave.training < 100>> She enjoys all the anal attention, but will need more training to develop psychological addiction to buttsex. diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw index 9f7c5d0788293b5498a92c97a54a4640f5635846..cf832ef8da80e0a6c9501c83a0dfce075d60b979 100644 --- a/src/uncategorized/reFSAcquisition.tw +++ b/src/uncategorized/reFSAcquisition.tw @@ -56,7 +56,7 @@ <<set $one_time_age_overrides_pedo_mode = 1>> <<include "Generate XX Slave">> <<set $activeSlave.origin = "She offered herself for voluntary enslavement, hoping to become a valuable source of milk for you.">> -<<set $activeSlave.age to random(32,$retirementAge-2)>> +<<set $activeSlave.age = random(32,$retirementAge-2)>> <<set $activeSlave.health = random(-20,20)>> <<set $activeSlave.devotion = random(-15,15)>> <<set $activeSlave.trust = random(5,15)>> @@ -332,7 +332,7 @@ <<set $one_time_age_overrides_pedo_mode = 1>> <<include "Generate XX Slave">> <<set $activeSlave.origin = "She was sold to you by an anonymous slave breaking group.">> -<<set $activeSlave.age to random(32,$retirementAge-2)>> +<<set $activeSlave.age = random(32,$retirementAge-2)>> <<set $activeSlave.boobsImplant += random(3,6)*200>> <<set $activeSlave.boobs += $activeSlave.boobsImplant>> <<set $activeSlave.areolae = 1>> @@ -440,9 +440,9 @@ <<set $activeSlave.trust = random(25,45)>> <<set $activeSlave.muscles = 20>> <<set $activeSlave.face = random(0,20)>> -<<set $activeSlave.anus to random(2,3)>> -<<if $activeSlave.vagina != -1>><<set $activeSlave.vagina to random(2,3)>><</if>> -<<set $activeSlave.weight to 20>> +<<set $activeSlave.anus = random(2,3)>> +<<if $activeSlave.vagina != -1>><<set $activeSlave.vagina = random(2,3)>><</if>> +<<set $activeSlave.weight = 20>> <<set $activeSlave.boobs += 50*random(1,10)>> <<set $activeSlave.butt += random(0,2)>> <<set $activeSlave.lips += random(5,15)>> @@ -544,10 +544,10 @@ <<set $activeSlave.origin = "She offered herself to you for enslavement because she felt your arcology was the best place for a woman of her appearance.">> <<set $activeSlave.boobs = random(4,6)*50>> <<set $activeSlave.weight = -20>> -<<set $activeSlave.height to random(160,200)>> +<<set $activeSlave.height = random(160,200)>> <<set $activeSlave.face = random(15,100)>> -<<set $activeSlave.butt to random(1,2)>> -<<set $activeSlave.lips to 0>> +<<set $activeSlave.butt = random(1,2)>> +<<set $activeSlave.lips = 0>> <<set $activeSlave.devotion = random(25,45)>> <<set $activeSlave.trust = random(25,45)>> <<set $activeSlave.career = setup.educatedCareers.random()>> @@ -569,10 +569,10 @@ <<set $activeSlave.origin = "She offered herself to you for enslavement to escape having plastic surgery foisted on her.">> <<set $activeSlave.boobs = random(4,6)*50>> <<set $activeSlave.weight = -20>> -<<set $activeSlave.height to random(160,200)>> +<<set $activeSlave.height = random(160,200)>> <<set $activeSlave.face = random(15,100)>> -<<set $activeSlave.butt to random(1,2)>> -<<set $activeSlave.lips to 0>> +<<set $activeSlave.butt = random(1,2)>> +<<set $activeSlave.lips = 0>> <<set $activeSlave.devotion = random(25,45)>> <<set $activeSlave.trust = random(25,45)>> <<set $activeSlave.health = random(-60,-50)>> @@ -698,7 +698,7 @@ <<set $contractCost = 1000>> <<set $activeSlaveOneTimeMaxAge = 24>> <<include "Generate New Slave">> -<<set $activeSlave.origin = "She sold herself to you to escape those who condemned her lifetyle.">> +<<set $activeSlave.origin = "She sold herself to you to escape those who condemned her lifestyle.">> <<set $activeSlave.career = "a shut-in">> <<set $activeSlave.health = random(-40,20)>> <<set $activeSlave.devotion = random(35,45)>> @@ -850,8 +850,8 @@ <<set $activeSlave.career = "a student">> <<set $activeSlave.health = random(-10,10)>> <<set $activeSlave.face = random(-20,0)>> -<<set $activeSlave.anus to 0>> -<<if $activeSlave.vagina != -1>><<set $activeSlave.vagina to 0>><</if>> +<<set $activeSlave.anus = 0>> +<<if $activeSlave.vagina != -1>><<set $activeSlave.vagina = 0>><</if>> <<set $activeSlave.vaginalSkill = 0>> <<set $activeSlave.analSkill = 0>> <<set $activeSlave.oralSkill = 0>> @@ -875,8 +875,8 @@ <<set $activeSlave.career = "a merchant">> <<set $activeSlave.health = random(-20,20)>> <<set $activeSlave.face = random(-20,0)>> -<<set $activeSlave.anus to 0>> -<<if $activeSlave.vagina != -1>><<set $activeSlave.vagina to 0>><</if>> +<<set $activeSlave.anus = 0>> +<<if $activeSlave.vagina != -1>><<set $activeSlave.vagina = 0>><</if>> <<set $activeSlave.vaginalSkill = 1>> <<set $activeSlave.analSkill = 1>> <<set $activeSlave.oralSkill = 1>> @@ -902,8 +902,8 @@ <<set $activeSlave.career = "a student">> <<set $activeSlave.health = random(-20,0)>> <<set $activeSlave.face = random(-60,10)>> -<<set $activeSlave.weight to random(20,100)>> -<<set $activeSlave.vagina to 0>> +<<set $activeSlave.weight = random(20,100)>> +<<set $activeSlave.vagina = 0>> <<set $activeSlave.vaginalSkill = 0>> <<set $activeSlave.whoreSkill = 0>> <<set $activeSlave.entertainSkill = 0>> @@ -952,14 +952,14 @@ <<set $activeSlave.career = "a businesswoman">> <<set $activeSlave.health = random(10,30)>> <<set $activeSlave.face = 15>> -<<set $activeSlave.oralSkill to random(15,40)>> -<<set $activeSlave.analSkill to random(15,40)>> -<<set $activeSlave.whoreSkill to random(15,40)>> -<<set $activeSlave.entertainSkill to random(15,40)>> -<<set $activeSlave.intelligence to 2>> -<<set $activeSlave.intelligenceImplant to 1>> -<<set $activeSlave.teeth to "normal">> -<<set $activeSlave.behavioralFlaw to either("arrogant")>> +<<set $activeSlave.oralSkill = random(15,40)>> +<<set $activeSlave.analSkill = random(15,40)>> +<<set $activeSlave.whoreSkill = random(15,40)>> +<<set $activeSlave.entertainSkill = random(15,40)>> +<<set $activeSlave.intelligence = 2>> +<<set $activeSlave.intelligenceImplant = 1>> +<<set $activeSlave.teeth = "normal">> +<<set $activeSlave.behavioralFlaw = either("arrogant")>> <<slaveCost $activeSlave>> <<set $slaveCost -= 1000>> diff --git a/src/uncategorized/reFSNonconformist.tw b/src/uncategorized/reFSNonconformist.tw index e2c8eb396084f1bcac7117454d0d761f8519b9e4..ed324c4533e89da9b07ad1dc80cd105109c75761 100644 --- a/src/uncategorized/reFSNonconformist.tw +++ b/src/uncategorized/reFSNonconformist.tw @@ -61,9 +61,9 @@ A deputation of your citizens arrives at your penthouse and asks to see you. The involved in your Revivalist vision. They're looking quite grim, an unusual mood for a group of oligarchs who partake of your serene confidence that your arcology is coming into a place as stable and long-lived as that of Ancient Egypt, <</if>> <<if $arcologies[0].FSRestart != "unset">> -so you hear them out. Apparently, they're here about a peer, another member of the Elite, who has chosen to perform certain undesirable actions. <<if $assistantName is "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> helpfully supplies a biography, but you were previously aware of the situation. +so you hear them out. Apparently, they're here about a peer, another member of the Elite, who has chosen to perform certain undesirable actions. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> helpfully supplies a biography, but you were previously aware of the situation. <<else>> -so you hear them out. Apparently, they're here about a peer, a fellow citizen with money and power who does not support your vision for the arcology's future. <<if $assistantName is "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> helpfully supplies a biography, but you were previously aware of the situation. +so you hear them out. Apparently, they're here about a peer, a fellow citizen with money and power who does not support your vision for the arcology's future. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> helpfully supplies a biography, but you were previously aware of the situation. <</if>> <br><br> The nonconformist diff --git a/src/uncategorized/reNickname.tw b/src/uncategorized/reNickname.tw index eba40f444eae2c2f88abd8bdcf5ec9f9dd86efb3..dd2ca893c0c4f8270e4abb05989843506cc07ff7 100644 --- a/src/uncategorized/reNickname.tw +++ b/src/uncategorized/reNickname.tw @@ -785,7 +785,7 @@ <<case "implants">> <<set $nickname = either("'Balloons'", "'Blowup Doll'", "'Bolted-On'", "'Implants'", "'Plastic'", "'Plastique'", "'Silicone'")>> <<set $situationDesc = "is full of breast implants. They're so large it's quite obvious they're fake, and the implications are clear: She's a plastic slut, and the other slaves never tire of letting her know it.">> - <<set $applyDesc = "accepts the implicit mockery, knowing that her bimbo-esque body is what appeals to <<if def $PC.customTitle>>her $PC.customTitle<<elseif $PC.title isnot 0>>her master<<else>>her mistress<</if>>.">> + <<set $applyDesc = "accepts the implicit mockery, knowing that her bimbo-esque body is what appeals to <<if def $PC.customTitle>>her $PC.customTitle<<elseif $PC.title != 0>>her master<<else>>her mistress<</if>>.">> <<set $notApplyDesc = "is relieved to be protected from the other slaves' mockery over her implants, though she's also a little sad she can't take them as a kind of trademark.">> <<case "bimbo">> diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw index 8f1cccec2f7cbc3ec19f4c5d21d78ed7ceb60b47..ef5758ad95294f4cd3c401060c79b6f396a02bea 100644 --- a/src/uncategorized/reRecruit.tw +++ b/src/uncategorized/reRecruit.tw @@ -1612,7 +1612,7 @@ She pauses, looking directly at you for the first time, though you get the sense <<set $activeSlave.behavioralFlaw = "odd">> <<set $activeSlave.fetish = "humiliation">> -<<if $assistantName is "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a supplicant has arrived at the door to the penthouse. A constant stream of hopefuls appear at your door, and $assistantName makes herself invaluable by filtering them. One of the few categories of applicant that is always admitted is people willing to be enslaved for some reason; the odd individual standing before you is just such a woman. +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a supplicant has arrived at the door to the penthouse. A constant stream of hopefuls appear at your door, and $assistantName makes herself invaluable by filtering them. One of the few categories of applicant that is always admitted is people willing to be enslaved for some reason; the odd individual standing before you is just such a woman. <br><br> "What we're going to do together will be recorded in the annals of history" she says expansively, sweeping about your office in a series of twirls and pirouettes. Though when you enquire as to what exactly you'll be doing together, all she can give you is a torrent of vague artistic prattle. In the end, all you can get out of her is an understanding that she sees enslavement as the ultimate form of creative self-expression. <br><br> diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw index 6a20cb58d965d87b7e129d446e97eae58e9a3fed..a0ce0e8d64d553f07e7e1912bfcaf9b2331589da 100644 --- a/src/uncategorized/remoteSurgery.tw +++ b/src/uncategorized/remoteSurgery.tw @@ -1566,7 +1566,7 @@ The prosthesis facility has constructed $possessive prosthetic limbs. <<if $activeSlave.fuckdoll == 0>> <br>$pronounCap is a normal sex slave, not a living sex toy. <<if $activeSlave.indentureRestrictions < 1 && $activeSlave.breedingMark != 1>> - [[Encase in a Fuckdoll suit|Surgery Degradation][$activeSlave.subTarget=0, $activeSlave.sentence=0, $activeSlave.training=0, $activeSlave.toyHole="all her holes", $activeSlave.pubicHStyle="waxed", $activeSlave.livingRules="spare", $activeSlave.speechRules="restrictive", $activeSlave.releaseRules="restrictive", $activeSlave.relationshipRules="restrictive", $activeSlave.fuckdoll=1, $activeSlave.choosesOwnClothes=0, $activeSlave.clothes="a Fuckdoll suit", $activeSlave.collar="none", $activeSlave.shoes="heels", $activeSlave.vaginalAccessory="none", $activeSlave.dickAccessory="none", $activeSlave.buttplug="none", $activeSlave.attrKnown=1, $activeSlave.fetishKnown=1, $surgeryType = "fuckdoll"]] //This is permanent and will greatly restrict $possessive// + [[Encase in a Fuckdoll suit|Surgery Degradation][$activeSlave.subTarget=0, $activeSlave.sentence=0, $activeSlave.training=0, $activeSlave.toyHole="all her holes", $activeSlave.pubicHStyle="waxed", $activeSlave.livingRules="spare", $activeSlave.speechRules="restrictive", $activeSlave.releaseRules="restrictive", $activeSlave.relationshipRules="restrictive", $activeSlave.fuckdoll=1, $activeSlave.choosesOwnClothes=0, $activeSlave.clothes="a Fuckdoll suit", $activeSlave.collar="none", $activeSlave.shoes="heels", $activeSlave.vaginalAccessory="none", $activeSlave.dickAccessory="none", $activeSlave.buttplug="none", $activeSlave.attrKnown=1, $activeSlave.fetishKnown=1, $activeSlave.inflation=0, $activeSlave.inflationType="none", $activeSlave.inflationMethod=0, $activeSlave.inflationSource=0, $surgeryType = "fuckdoll"]] //This is permanent and will greatly restrict $possessive// <</if>> <<else>> <br>$pronounCap is encased in a Fuckdoll suit. [[Extract it|Surgery Degradation][$activeSlave.fuckdoll=0, $activeSlave.clothes="no clothing", $activeSlave.shoes="none", $surgeryType = "fuckdollExtraction"]] diff --git a/src/uncategorized/resFailure.tw b/src/uncategorized/resFailure.tw index 0f054652772f4b958ccede829a0d492784722b03..57105b49ef6c3352fdb1e164a6bb1f5bb2c4d731 100644 --- a/src/uncategorized/resFailure.tw +++ b/src/uncategorized/resFailure.tw @@ -297,11 +297,11 @@ <</if>> <<set $activeSlave.health = random(60,80)>> <<set $activeSlave.muscles = 0>> - <<set $activeSlave.butt to either(4,5)>> + <<set $activeSlave.butt = either(4,5)>> <<set $activeSlave.face = random(20,60)>> - <<set $activeSlave.boobs to either(500,650,800)>> + <<set $activeSlave.boobs = either(500,650,800)>> <<set $activeSlave.waist = -15>> - <<set $activeSlave.lips to 35>> + <<set $activeSlave.lips = 35>> <<if $LDE.schoolUpgrade == 2>> <<set $activeSlave.balls = either(3,4)>> <<set $activeSlave.dick = either(3,4)>> @@ -463,11 +463,11 @@ <<set $activeSlave.career = "a Futanari Sister">> <<set $activeSlave.faceShape = either("sensual", "exotic")>> <<if $seed == 1>> - <<set $activeSlave.intelligence to -1>> - <<set $activeSlave.chem to 150>> - <<set $activeSlave.butt to either(5,6)>> - <<set $activeSlave.hips to 1>> - <<set $activeSlave.face to either(35,35,35,75,100)>> + <<set $activeSlave.intelligence = -1>> + <<set $activeSlave.chem = 150>> + <<set $activeSlave.butt = either(5,6)>> + <<set $activeSlave.hips = 1>> + <<set $activeSlave.face = either(35,35,35,75,100)>> <<set $activeSlave.boobs = 100*random(12,20)>> <<set $activeSlave.dick = random(2,3)>> <<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>> @@ -480,21 +480,21 @@ <<set $activeSlave.balls = random(2,3)>> <<set $activeSlave.scrotum = $activeSlave.balls>> <</if>> - <<set $activeSlave.lips to 0>> - <<set $activeSlave.weight to 0>> + <<set $activeSlave.lips = 0>> + <<set $activeSlave.weight = 0>> <<set $activeSlave.actualAge = random(25,29)>> <<set $activeSlave.visualAge = $activeSlave.actualAge>> <<set $activeSlave.physicalAge = $activeSlave.actualAge>> <<set $activeSlave.ovaryAge = $activeSlave.actualAge>> - <<set $activeSlave.vagina to 2>> - <<set $activeSlave.anus to 2>> - <<set $activeSlave.fetish to "submissive">> + <<set $activeSlave.vagina = 2>> + <<set $activeSlave.anus = 2>> + <<set $activeSlave.fetish = "submissive">> <<elseif $seed == 2>> - <<set $activeSlave.intelligence to 0>> - <<set $activeSlave.chem to 200>> - <<set $activeSlave.butt to either(6,7)>> - <<set $activeSlave.hips to 2>> - <<set $activeSlave.face to either(35,35,75,75,100)>> + <<set $activeSlave.intelligence = 0>> + <<set $activeSlave.chem = 200>> + <<set $activeSlave.butt = either(6,7)>> + <<set $activeSlave.hips = 2>> + <<set $activeSlave.face = either(35,35,75,75,100)>> <<set $activeSlave.boobs = 100*random(20,32)>> <<set $activeSlave.dick = random(3,4)>> <<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>> @@ -507,21 +507,21 @@ <<set $activeSlave.balls = random(3,4)>> <<set $activeSlave.scrotum = $activeSlave.balls>> <</if>> - <<set $activeSlave.lips to random(15,25)>> - <<set $activeSlave.weight to 20>> + <<set $activeSlave.lips = random(15,25)>> + <<set $activeSlave.weight = 20>> <<set $activeSlave.actualAge = random(30,34)>> <<set $activeSlave.visualAge = $activeSlave.actualAge>> <<set $activeSlave.physicalAge = $activeSlave.actualAge>> <<set $activeSlave.ovaryAge = $activeSlave.actualAge>> - <<set $activeSlave.vagina to 2>> - <<set $activeSlave.anus to 2>> - <<set $activeSlave.fetish to either("buttslut", "cumslut")>> + <<set $activeSlave.vagina = 2>> + <<set $activeSlave.anus = 2>> + <<set $activeSlave.fetish = either("buttslut", "cumslut")>> <<elseif $seed == 3>> - <<set $activeSlave.intelligence to 1>> - <<set $activeSlave.chem to 250>> - <<set $activeSlave.butt to either(7,8)>> - <<set $activeSlave.hips to 2>> - <<set $activeSlave.face to either(35,75,75,100,100)>> + <<set $activeSlave.intelligence = 1>> + <<set $activeSlave.chem = 250>> + <<set $activeSlave.butt = either(7,8)>> + <<set $activeSlave.hips = 2>> + <<set $activeSlave.face = either(35,75,75,100,100)>> <<set $activeSlave.boobs = 100*random(32,42)>> <<set $activeSlave.dick = random(4,5)>> <<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>> @@ -544,11 +544,11 @@ <<set $activeSlave.anus = 3>> <<set $activeSlave.fetish = either("buttslut", "cumslut")>> <<else>> - <<set $activeSlave.intelligence to 2>> - <<set $activeSlave.chem to 300>> - <<set $activeSlave.butt to either(8,9)>> - <<set $activeSlave.hips to 2>> - <<set $activeSlave.face to either(35,75,100,100,100)>> + <<set $activeSlave.intelligence = 2>> + <<set $activeSlave.chem = 300>> + <<set $activeSlave.butt = either(8,9)>> + <<set $activeSlave.hips = 2>> + <<set $activeSlave.face = either(35,75,100,100,100)>> <<set $activeSlave.boobs = 100*random(44,60)>> <<set $activeSlave.dick = random(5,6)>> <<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>> @@ -618,12 +618,12 @@ <<AddSlave $activeSlave>> /* skip New Slave Intro */ <</for>> <<include "Generate XY Slave">> - <<set $activeSlave.origin to "She was the leader of your arcology's Futanari Sisters until you engineered her community's failure and enslavement.">> - <<set $activeSlave.career to "a Futanari Sister">> - <<set $activeSlave.intelligence to 2>> - <<set $activeSlave.chem to 300>> - <<set $activeSlave.butt to either(8,9)>> - <<set $activeSlave.hips to 2>> + <<set $activeSlave.origin = "She was the leader of your arcology's Futanari Sisters until you engineered her community's failure and enslavement.">> + <<set $activeSlave.career = "a Futanari Sister">> + <<set $activeSlave.intelligence = 2>> + <<set $activeSlave.chem = 300>> + <<set $activeSlave.butt = either(8,9)>> + <<set $activeSlave.hips = 2>> <<set $activeSlave.face = 100>> <<set $activeSlave.boobs = 100*random(44,60)>> <<set $activeSlave.dick = random(5,6)>> diff --git a/src/uncategorized/saDevotion.tw b/src/uncategorized/saDevotion.tw index 8eb50dbfa26571b30b0ffd49e0cdc5e979bffcb8..1ec06c0fc1bd34260e566d99fa23d2cc1ff754a0 100644 --- a/src/uncategorized/saDevotion.tw +++ b/src/uncategorized/saDevotion.tw @@ -18,7 +18,7 @@ Since you are @@.mediumaquamarine;indulging@@ $slaves[$i].slaveName's desires, she @@.hotpink;likes you more.@@ <<set $slaves[$i].devotion += 5>> <<set $slaves[$i].trust += 5>> - <<elseif $rivalryDuration > 20 and $slaves[$i].devotion < 5>> + <<elseif $rivalryDuration > 20 && $slaves[$i].devotion < 5>> <<if Array.isArray($personalAttention) && $personalAttention.findIndex(function(s) { return s.ID == $slaves[$i].ID; }) != -1>> You took everything from $slaves[$i].slaveName and @@.mediumorchid;she hates you for it.@@ Since you won't give her what she wants, she @@.gold;refuses to trust you.@@ Since you are putting such a personal touch into her care, she can't find it in her to rebel as strongly. <<set $slaves[$i].devotion -= 5>> @@ -28,7 +28,7 @@ <<set $slaves[$i].devotion -= 25>> <<set $slaves[$i].trust -= 25>> <</if>> - <<elseif $rivalryDuration > 10 and $slaves[$i].devotion < 5>> + <<elseif $rivalryDuration > 10 && $slaves[$i].devotion < 5>> <<if Array.isArray($personalAttention) && $personalAttention.findIndex(function(s) { return s.ID == $slaves[$i].ID; }) != -1>> She is @@.gold;horrified by you.@@ Your rival taught her a great deal about slave life in your arcology and indulged her deepest fantasies. $slaves[$i].slaveName considers being your pet @@.mediumorchid;a fate worse than death.@@ Since you are putting such a personal touch into her care, maybe you aren't the monster she thought you were. She can't find it in her to hate and fear you as much. <<set $slaves[$i].devotion -= 3>> diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index bf4ad1b90499523f32839980ba50a3f6f6e878d5..8deb8e20cb088e50d95c7cb570fccb6557c7326a 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -1,7 +1,7 @@ :: SA long term effects [nobr] <<fetishChangeChance $slaves[$i]>> -<<set $bellyAccessory to $slaves[$i].bellyAccessory>> +<<set $bellyAccessory = $slaves[$i].bellyAccessory>> <<set _para = 0>> <<if $slaves[$i].aphrodisiacs === -1>><<set _oldEnergy = $slaves[$i].energy, _maxEnergyGain = Math.round((75 - _oldEnergy)/9.3)>><</if>> @@ -586,7 +586,7 @@ The fake belly she wears @@.gold;worries@@ her that you will soon put a real baby in her. <<set $slaves[$i].trust -= 1>> <</if>> - <<if $slaves[$i].bellyAccessory == "a huge empathy belly" and $slaves[$i].fetish != "pregnancy">> + <<if $slaves[$i].bellyAccessory == "a huge empathy belly" && $slaves[$i].fetish != "pregnancy">> <<if $slaves[$i].devotion > 50>> Her full-sized twins belly is heavy and unwieldy, but she carries it @@.hotpink;proudly@@ for you. <<set $slaves[$i].devotion += 1>> @@ -1024,7 +1024,7 @@ /* END CLOTHES AND ACCESSORIES */ <<if $slaves[$i].fetish == "mindbroken">> - <<set $slaves[$i].fetishStrength = 10, $slaves[$i].attrXY = 50, $slaves[$i].attrXX = 50, $slaves[$i].attrKnown = 1, $slaves[$i].devotion = 40, $slaves[$i].trust = -40, $slaves[$i].vaginalSkill = Math.clamp($slaves[$i].vaginalSkill,0,15), $slaves[$i].oralSkill = Math.clamp($slaves[$i].oralSkill,0,15), $slaves[$i].analSkill = Math.clamp($slaves[$i].analSkill,0,15), $slaves[$i].combatSkill = 0, $slaves[$i].whoreSkill = 0, $slaves[$i].entertainSkill = 0, $slaves[$i].intelligence to -2, $slaves[$i].intelligenceImplant to 0, $slaves[$i].sexualFlaw = "none", $slaves[$i].sexualQuirk = "none", $slaves[$i].behavioralFlaw = "none", $slaves[$i].behavioralQuirk = "none">> + <<set $slaves[$i].fetishStrength = 10, $slaves[$i].attrXY = 50, $slaves[$i].attrXX = 50, $slaves[$i].attrKnown = 1, $slaves[$i].devotion = 40, $slaves[$i].trust = -40, $slaves[$i].vaginalSkill = Math.clamp($slaves[$i].vaginalSkill,0,15), $slaves[$i].oralSkill = Math.clamp($slaves[$i].oralSkill,0,15), $slaves[$i].analSkill = Math.clamp($slaves[$i].analSkill,0,15), $slaves[$i].combatSkill = 0, $slaves[$i].whoreSkill = 0, $slaves[$i].entertainSkill = 0, $slaves[$i].intelligence = -2, $slaves[$i].intelligenceImplant = 0, $slaves[$i].sexualFlaw = "none", $slaves[$i].sexualQuirk = "none", $slaves[$i].behavioralFlaw = "none", $slaves[$i].behavioralQuirk = "none">> <<else>> <<if $slaves[$i].fuckdoll == 0>> @@ -2443,10 +2443,10 @@ <<if ($slaves[$i].assignment != "serve in the club")>> <<if ($slaves[$i].assignment != "serve in the master suite") || ($masterSuiteUpgradeLuxury < 2)>> <<if ($slaves[$i].assignment != "work in the dairy") || ($dairyStimulatorsSetting == 0)>> -<<if ($slaves[$i].vagina is 3) && ($slaves[$i].vaginalAccessory != "large dildo") && ($slaves[$i].vaginalAccessory != "huge dildo") && ($slaves[$i].vaginalAccessory != "long, large dildo") && ($slaves[$i].vaginalAccessory != "long, huge dildo")>> +<<if ($slaves[$i].vagina == 3) && ($slaves[$i].vaginalAccessory != "large dildo") && ($slaves[$i].vaginalAccessory != "huge dildo") && ($slaves[$i].vaginalAccessory != "long, large dildo") && ($slaves[$i].vaginalAccessory != "long, huge dildo")>> With a rest from strenuous use, @@.lime;$possessive loose vagina recovers a little.@@ <<set $slaves[$i].vagina -= 1>> -<<elseif ($slaves[$i].anus is 3) && ($slaves[$i].buttplug != "large plug") && ($slaves[$i].buttplug != "huge plug") && ($slaves[$i].buttplug != "long, large plug") && ($slaves[$i].buttplug != "long, huge plug")>> +<<elseif ($slaves[$i].anus == 3) && ($slaves[$i].buttplug != "large plug") && ($slaves[$i].buttplug != "huge plug") && ($slaves[$i].buttplug != "long, large plug") && ($slaves[$i].buttplug != "long, huge plug")>> With a rest from continual sodomy, @@.lime;$possessive gaping anus recovers a little.@@ <<set $slaves[$i].anus -= 1>> <</if>> @@ -2461,7 +2461,7 @@ /* SMART PIERCING EFFECTS */ -<<if ($slaves[$i].clitPiercing is 3)>> +<<if ($slaves[$i].clitPiercing == 3)>> <<if $slaves[$i].fuckdoll > 0>> Its smart <<if $slaves[$i].vagina > -1>>clit<<else>>frenulum<</if>> piercing is slaved to its stimulation systems. <<elseif $slaves[$i].fetish == "mindbroken">> @@ -2474,7 +2474,7 @@ <<if $slaves[$i].energy > 5>> <<set $slaves[$i].energy -= 10>> <<elseif $slaves[$i].energy > 0>> - <<set $slaves[$i].energy to 0>> + <<set $slaves[$i].energy = 0>> <</if>> <<case "all">> <<if $slaves[$i].energy <= 95>> @@ -5263,7 +5263,7 @@ <</if>> /* pregmod */ -<<if ($slaves[$i].scars != 0) and ($slaves[$i].scars != 6)>> +<<if ($slaves[$i].scars != 0) && ($slaves[$i].scars != 6)>> <<if $arcologies[0].FSDegradationist != "unset">> Society @@.green;mildly approves@@ of your slave's scarring; this encourages the further abuse of slaves. <<FSChangePorn "Degradationist" 1>> @@ -5511,7 +5511,7 @@ <<if $slaves[$i].fuckdoll == 0>> <<if $slaves[$i].fetish != "mindbroken">> <<if typeof $slaves[$i].origin == "string">> -<<set $toSearch to $slaves[$i].origin>> +<<set $toSearch = $slaves[$i].origin>> <<if $toSearch.indexOf("Slave Shelter") != -1>> <<if ["serve the public", "whore", "work in the brothel", "serve in the club"].includes($slaves[$i].assignment)>> <<if ($slaves[$i].trust > 20) && ($slaves[$i].health > 40)>> @@ -7299,28 +7299,28 @@ <<if $retiree == 0>> <<if $slaves[$i].indenture < 0>> <<if $slaves[$i].actualAge >= $retirementAge && $PhysicalRetirementAgePolicy != 1>> - <<set $retiree to $slaves[$i]>> + <<set $retiree = $slaves[$i]>> <<elseif $slaves[$i].physicalAge >= $retirementAge && $PhysicalRetirementAgePolicy == 1>> - <<set $retiree to $slaves[$i]>> + <<set $retiree = $slaves[$i]>> <</if>> <<if $SexMilestoneRetirement == 1>> <<if $slaves[$i].oralCount + $slaves[$i].analCount + $slaves[$i].vaginalCount + $slaves[$i].penetrativeCount + $slaves[$i].mammaryCount >= $retirementSex>> - <<set $retiree to $slaves[$i]>> + <<set $retiree = $slaves[$i]>> <</if>> <</if>> <<if $MilkMilestoneRetirement == 1>> <<if $slaves[$i].milk >= $retirementMilk>> - <<set $retiree to $slaves[$i]>> + <<set $retiree = $slaves[$i]>> <</if>> <</if>> <<if $BirthsMilestoneRetirement == 1>> <<if $slaves[$i].births >= $retirementBirths>> - <<set $retiree to $slaves[$i]>> + <<set $retiree = $slaves[$i]>> <</if>> <</if>> <<if $KillsMilestoneRetirement == 1>> <<if $slaves[$i].pitkills >= $retirementKills>> - <<set $retiree to $slaves[$i]>> + <<set $retiree = $slaves[$i]>> <</if>> <</if>> <</if>> @@ -7347,7 +7347,7 @@ <<if $slaves[$i].indenture == 0>> <<if $expiree == 0>> - <<set $expiree to $slaves[$i]>> + <<set $expiree = $slaves[$i]>> <</if>> <</if>> diff --git a/src/uncategorized/saRelationships.tw b/src/uncategorized/saRelationships.tw index 3ee4a75cf6a29753e016f2bbdb7917271fbf1def..136126ebd11a9aed9574ce0391b770bba2f3b17f 100644 --- a/src/uncategorized/saRelationships.tw +++ b/src/uncategorized/saRelationships.tw @@ -200,7 +200,7 @@ <<set _drop = 1>> <</if>> <<if (_SlaveI.relationship > 0) || (_SlaveI.relation > 0)>> - <<for _j to 0; _j < _SL; _j++>> + <<for _j = 0; _j < _SL; _j++>> <<if _SlaveI.relationshipTarget == $slaves[_j].ID>> <<set _SlaveJ = $slaves[_j], _J = _j , _SlaveJ.relationshipTarget = _SlaveI.ID, _SlaveJ.relationship = _SlaveI.relationship>> <</if>> diff --git a/src/uncategorized/saServeThePublic.tw b/src/uncategorized/saServeThePublic.tw index e65a3b6ec068fe4cdd81862e6f454d12dda746a8..910150afa7705c6b80177b1529431d90b8e49a4c 100644 --- a/src/uncategorized/saServeThePublic.tw +++ b/src/uncategorized/saServeThePublic.tw @@ -250,7 +250,7 @@ Her appearance attracted $beauty members of the public (<<print Math.trunc($beau $slaves[$i].slaveName @@.hotpink;really enjoys@@ making so many people laugh. <<set $slaves[$i].devotion += 1>> <</if>> -<<if ($slaves[$i].sexualQuirk is "tease")>> +<<if ($slaves[$i].sexualQuirk == "tease")>> $slaves[$i].slaveName @@.mediumaquamarine;trusts your judgment@@ in assigning her a job that affords her a chance to tease and flirt. <<set $slaves[$i].trust += 1>> <</if>> diff --git a/src/uncategorized/saWhore.tw b/src/uncategorized/saWhore.tw index dfcf6d445e740502c52df0a94c05525c95eaa850..0eb73c3821a2f429664c84697a7aab71c3f0ac37 100644 --- a/src/uncategorized/saWhore.tw +++ b/src/uncategorized/saWhore.tw @@ -234,7 +234,7 @@ Her appearance attracted $beauty customers (<<print Math.trunc($beauty/7)>> a da $slaves[$i].slaveName @@.hotpink;openly enjoys@@ the direct, frank language of prostitution, and delights customers with cutting remarks even as they fuck her. <<set $slaves[$i].devotion += 1>> <</if>> -<<if ($slaves[$i].sexualQuirk is "caring")>> +<<if ($slaves[$i].sexualQuirk == "caring")>> $slaves[$i].slaveName sees her role as helping people with their sexual needs, and she @@.mediumaquamarine;trusts that her place@@ in society is an important one. <<set $slaves[$i].trust += 1>> <</if>> diff --git a/src/uncategorized/scheduledEvent.tw b/src/uncategorized/scheduledEvent.tw index 3b12a10d450c56fcd3af38279ff27c1f957af98a..07e6ef1bbf9932ae40ce43e8946695b22670c6e8 100644 --- a/src/uncategorized/scheduledEvent.tw +++ b/src/uncategorized/scheduledEvent.tw @@ -137,9 +137,9 @@ <<elseif ($FCTVshow == 1)>> <<set $FCTVshow = 0, $activeSlave = 0>> <<goto "SE FCTV Shows">> -<<elseif ($recruiterEugenics == 0 and $recruiterProgress >= 13)>> +<<elseif ($recruiterEugenics == 0 && $recruiterProgress >= 13)>> <<goto "SE recruiter success">> -<<elseif ($recruiterEugenics == 1 and $recruiterProgress >= (13 + ($IntelligenceEugenicsSMR+$HeightEugenicsSMR+$FaceEugenicsSMR)*6))>> +<<elseif ($recruiterEugenics == 1 && $recruiterProgress >= (13 + ($IntelligenceEugenicsSMR+$HeightEugenicsSMR+$FaceEugenicsSMR)*6))>> <<goto "SE recruiter success">> <<elseif ($customSlaveOrdered == 1)>> <<goto "SE custom slave delivery">> diff --git a/src/uncategorized/schoolroom.tw b/src/uncategorized/schoolroom.tw index fe4dd54e33c9a7473625afe96953a91587b83a65..e264d53d1d12dc8164822d4681ac4390953cdcc5 100644 --- a/src/uncategorized/schoolroom.tw +++ b/src/uncategorized/schoolroom.tw @@ -111,7 +111,7 @@ $schoolroomNameCaps is well-equipped, with wall screens to display lessons. Thes <<link "''Send a slave to study in $schoolroomName''">> <<replace #ComingGoing>> <<resetAssignmentFilter>> - <<set $Flag to 0>> + <<set $Flag = 0>> <<include "Slave Summary">> <</replace>> <</link>> diff --git a/src/uncategorized/seBirth.tw b/src/uncategorized/seBirth.tw index dc783e56ed32c9b834a0629708c93fccc2c2b927..174bb11d11685c70c9a3dc7a6ec5a5e69c8cc9e8 100644 --- a/src/uncategorized/seBirth.tw +++ b/src/uncategorized/seBirth.tw @@ -21,7 +21,7 @@ I need to break single passage to several widgets, as it's been overcomplicated <<set $legendaryWombID = 0>> <</if>> -<<for $i to 0; $i < $slaves.length; $i++>> +<<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].labor == 1>> <<if ndef $slaves[$i].laborCount>> <<set $slaves[$i].laborCount = 0>> @@ -51,5 +51,7 @@ I need to break single passage to several widgets, as it's been overcomplicated <</if>> <</for>> +<<set $reservedChildren = getIncubatorReserved($slaves)>> + <<set $birthee = 0>> <<set $birthed = 0>> diff --git a/src/uncategorized/seCoursing.tw b/src/uncategorized/seCoursing.tw index c7d19392dd20398ac6533384c046582b3d864fa4..8ef7e1b1eb7cdeec0e5a9a7c5352e46bcb9b1030 100644 --- a/src/uncategorized/seCoursing.tw +++ b/src/uncategorized/seCoursing.tw @@ -187,7 +187,7 @@ The rules have been explained to the hares: they're to be freed if they can reac She's a catastrophically fat slut of a slave, and may stand a better chance of getting away rolling than running. <<set _hareSpeed -= 3>> <<elseif $activeSlave.weight > 95>> - She's a ridiculously fat slut of a slave with plently of flesh to grab on to; her constant jiggling will be a sight to behold, however. + She's a ridiculously fat slut of a slave with plenty of flesh to grab on to; her constant jiggling will be a sight to behold, however. <<set _hareSpeed -= 2>> <<elseif $activeSlave.weight > 30>> She's chubby enough that her weight will reduce her speed. @@ -230,7 +230,7 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set _hareSpeed -= 1>> <</if>> <<if $activeSlave.belly >= 60000>> - She's so massively pregnant it'll be luck if she even makes it anywhere. + She's so massively pregnant it'll be lucky if she even makes it anywhere. <<set _hareSpeed -= 10>> <<elseif $activeSlave.belly >= 10000>> Her pregnant belly will probably stop her from running at all. @@ -352,7 +352,7 @@ You place your hand on the leash's quick release and whisper your direction into <<set _LurcherSpeed -= 1>> <</if>> <<if $Lurcher.muscles > 30>> - She's musclebound, without the range of motion to move freely. + She's muscle-bound, without the range of motion to move freely. <<set _LurcherSpeed -= 1>> <<elseif $Lurcher.muscles <= 5>> She's soft, and is panting desperately within a few short strides. @@ -365,7 +365,7 @@ You place your hand on the leash's quick release and whisper your direction into <<set _LurcherSpeed -= 20>> <</if>> <<if $Lurcher.height >= 185>> - Her steps are long, too long, in fact, her long legs slowing her gait. + Her steps are long - too long, in fact, her long legs slowing her gait. <<set _LurcherSpeed -= 1>> <<elseif $Lurcher.height < 150>> Her stride is too short, but it's the best her little legs can manage. @@ -704,7 +704,7 @@ You place your hand on the leash's quick release and whisper your direction into <<set _LurcherSpeed -= 1>> <</if>> <<if $Lurcher.muscles > 30>> - She's musclebound, without the range of motion to move freely. + She's muscle-bound, without the range of motion to move freely. <<set _LurcherSpeed -= 1>> <<elseif $Lurcher.muscles <= 5>> She's soft, and is panting desperately within a few short strides. @@ -717,7 +717,7 @@ You place your hand on the leash's quick release and whisper your direction into <<set _LurcherSpeed -= 20>> <</if>> <<if $Lurcher.height >= 185>> - Her steps are long, too long, in fact, her long legs slowing her gait. + Her steps are long - too long, in fact, her long legs slowing her gait. <<set _LurcherSpeed -= 1>> <<elseif $Lurcher.height < 150>> Her stride is too short, but it's the best her little legs can manage. @@ -758,7 +758,7 @@ You place your hand on the leash's quick release and whisper your direction into She seems unwilling to really run while pregnant. <<set _LurcherSpeed -= 3>> <<elseif $Lurcher.bellyImplant >= 5000>> - Her big belly implant hunders her ability to run + Her big belly implant hinders her ability to run <<set _LurcherSpeed -= 2>> <<elseif $Lurcher.belly >= 1500>> She keeps one hand on her slightly swollen middle as she runs. @@ -1056,7 +1056,7 @@ You place your hand on the leash's quick release and whisper your direction into <<set _LurcherSpeed -= 1>> <</if>> <<if $Lurcher.muscles > 30>> - She's musclebound, without the range of motion to move freely. + She's muscle-bound, without the range of motion to move freely. <<set _LurcherSpeed -= 1>> <<elseif $Lurcher.muscles <= 5>> She's soft, and is panting desperately within a few short strides. @@ -1069,7 +1069,7 @@ You place your hand on the leash's quick release and whisper your direction into <<set _LurcherSpeed -= 20>> <</if>> <<if $Lurcher.height >= 185>> - Her steps are long, too long, in fact, her long legs slowing her gait. + Her steps are long - too long, in fact, her long legs slowing her gait. <<set _LurcherSpeed -= 1>> <<elseif $Lurcher.height < 150>> Her stride is too short, but it's the best her little legs can manage. @@ -1359,4 +1359,4 @@ You place your hand on the leash's quick release and whisper your direction into <</for>> <</replace>> <</link>> -</span> +</span> \ No newline at end of file diff --git a/src/uncategorized/seLethalPit.tw b/src/uncategorized/seLethalPit.tw index 2c9823202f936ff60db48bc76b7713acf932435c..35aaeafd69508a5fcf646c4fa156587ae0527d17 100644 --- a/src/uncategorized/seLethalPit.tw +++ b/src/uncategorized/seLethalPit.tw @@ -561,12 +561,12 @@ You let the winner _winner.slaveName, shaking as she comes off the adrenaline, d <</if>> <</if>> -<<if (_winner.rivalry > 0) && (_loser.ID is _winner.rivalryTarget)>> +<<if (_winner.rivalry > 0) && (_loser.ID == _winner.rivalryTarget)>> <<if (_winner.devotion > 75)>> She is so accepting of the low value of slave life that she @@.hotpink;is pleased@@ to have killed her rival _loser.slaveName. <<set _winner.devotion += 4>> <</if>> -<<elseif (_winner.relationship >= 0) && (_loser.ID is _winner.relationshipTarget)>> +<<elseif (_winner.relationship >= 0) && (_loser.ID == _winner.relationshipTarget)>> <<if (_winner.devotion > 95)>> She is so worshipful of you that she sees the death of her only friend at her own hand as an @@.hotpink;honorable@@ end to their doomed slave relationship. <<set _winner.devotion += 4>> diff --git a/src/uncategorized/seNonlethalPit.tw b/src/uncategorized/seNonlethalPit.tw index 8b449ae7272197b7fa57c82209e35fdb4b80b136..6b11077e84baedf6f4ee0a99691eb948171d0d47 100644 --- a/src/uncategorized/seNonlethalPit.tw +++ b/src/uncategorized/seNonlethalPit.tw @@ -638,9 +638,9 @@ You throw the victor's strap-on down to _winner.slaveName. <<set _winner.devotion -= 10>> <</if>> <</switch>> -<<elseif (_winner.relation != 0) && (_loser.ID is _winner.relationTarget) && (_winner.devotion >= 20)>> +<<elseif (_winner.relation != 0) && (_loser.ID == _winner.relationTarget) && (_winner.devotion >= 20)>> She accepts having to abuse _loser.slaveName, and plans to make it up to her later. -<<elseif (_winner.relation != 0) && (_loser.ID is _winner.relationTarget)>> +<<elseif (_winner.relation != 0) && (_loser.ID == _winner.relationTarget)>> She @@.mediumorchid;hates@@ having to abuse _loser.slaveName. <<set _winner.devotion -= 10>> <</if>> @@ -739,7 +739,7 @@ You throw the victor's strap-on down to _winner.slaveName. <<set _loser.trust -= 10>> <</if>> <</switch>> -<<elseif (_loser.relation != 0) && (_winner.ID is _loser.relationTarget) && (_loser.devotion >= 20)>> +<<elseif (_loser.relation != 0) && (_winner.ID == _loser.relationTarget) && (_loser.devotion >= 20)>> She accepts _winner.slaveName having to rape her, but she @@.gold;fears@@ that it will happen again. <<set _loser.trust -= 10>> <<elseif (_loser.relation != 0) && (_winner.ID == _loser.relationTarget)>> diff --git a/src/uncategorized/sellSlave.tw b/src/uncategorized/sellSlave.tw index fa67db158d93b5a252f1957b68e5d4ff24534614..06fdfc140a0cf665e497b7c0afe2fa578086bb5e 100644 --- a/src/uncategorized/sellSlave.tw +++ b/src/uncategorized/sellSlave.tw @@ -264,7 +264,7 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual <<if $activeSlave.sexualFlaw == "breeder" && $arcologies[0].FSRepopulationFocus != "unset">> She is obsessed with breeding, that will make her very popular in your arcology. <<elseif $activeSlave.sexualFlaw != "none">> - <<if $activeSlave.behavioralFlaw is "none">> + <<if $activeSlave.behavioralFlaw == "none">> She has a sexual flaw, which is a minor negative. <</if>> <</if>> @@ -563,11 +563,11 @@ A reputable slave appraiser arrives promptly to inspect her and certify her qual <<if $activeSlave.breedingMark == 1>> <<set $buyer = 0>> -<<set $seed to 500*Math.trunc(($slaveCost*1.1)/500)>> +<<set $seed = 500*Math.trunc(($slaveCost*1.1)/500)>> <br>The current offer for her stands at ''<<print cashFormat($seed)>>''. <<link "Accept bid">> <<set $cash += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<set $buyer to "elite auction">> + <<set $buyer = "elite auction">> <<goto "Slave Sold">> <</link>> <<else>> diff --git a/src/uncategorized/servantsQuarters.tw b/src/uncategorized/servantsQuarters.tw index 119d862e74b2dcdea8b95321bdf68618a6aaf52e..e937096e9d19883be020d7e1268e5c4ab1164ebc 100644 --- a/src/uncategorized/servantsQuarters.tw +++ b/src/uncategorized/servantsQuarters.tw @@ -109,7 +109,7 @@ $servantsQuartersNameCaps <<link "''Send a slave to work out of $servantsQuartersName''">> <<replace #ComingGoing>> <<resetAssignmentFilter>> - <<set $Flag to 0>> + <<set $Flag = 0>> <<include "Slave Summary">> <</replace>> <</link>> diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index 49216679889ba29b8c8df046c54d0f07cda6e2f7..6fa4f11c1f256d18f97672b14e380d430503993a 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -128,7 +128,7 @@ <<if $enema == 1>> <<if ($activeSlave.inflation < 3 && $activeSlave.pregKnown == 0 && $activeSlave.bellyImplant < 1500) || ($activeSlave.inflation < 1)>> <<if $activeSlave.inflationType == "water" || $activeSlave.inflationType == "none">> - | <<link "Fill her ass with water">><<set $activeSlave.inflationType to "water">><<set $activeSlave.inflationMethod to 2>><<replace "#miniscene">><<include "FillUpButt">><br><</replace>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> + | <<link "Fill her ass with water">><<set $activeSlave.inflationType = "water">><<set $activeSlave.inflationMethod = 2>><<replace "#miniscene">><<include "FillUpButt">><br><</replace>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> <</if>> <<if $medicalEnema == 1>> <<if $activeSlave.inflationType == "aphrodisiac" || $activeSlave.inflationType == "none">> @@ -230,7 +230,7 @@ <</if>> /* <<if $activeSlave.daughters > 1>> - | <<link "Fuck her with her daughters">><<replace "#miniscene">><<set $partner to "daughters">><<include "FRelation">><br> <</replace>><</link>> + | <<link "Fuck her with her daughters">><<replace "#miniscene">><<set $partner = "daughters">><<include "FRelation">><br> <</replace>><</link>> <</if>> */ <<if $activeSlave.sisters > 0>> @@ -1198,7 +1198,7 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1 <span id="bloating"> <<if $activeSlave.inflation > 0>> <br> -__Required Bloating__: <strong><span id="inflate"><<if $activeSlave.inflation is 3>><<print "She is required to keep 2 gallons of $activeSlave.inflationType in her at all times">><<elseif $activeSlave.inflation is 2>><<print "She is required to keep 4 liters of $activeSlave.inflationType in her at all times">><<elseif $activeSlave.inflation is 1>><<print "She is required to keep 2 liters of $activeSlave.inflationType in her at all times">><</if>></span></strong>. +__Required Bloating__: <strong><span id="inflate"><<if $activeSlave.inflation == 3>><<print "She is required to keep 2 gallons of $activeSlave.inflationType in her at all times">><<elseif $activeSlave.inflation == 2>><<print "She is required to keep 4 liters of $activeSlave.inflationType in her at all times">><<elseif $activeSlave.inflation == 1>><<print "She is required to keep 2 liters of $activeSlave.inflationType in her at all times">><</if>></span></strong>. <<if $activeSlave.inflationMethod == 3>> <<link "Let her deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0,$activeSlave.cumSource = 0,$activeSlave.milkSource = 0>><<SetBellySize $activeSlave>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> <<elseif $activeSlave.inflationType == "milk">> diff --git a/src/uncategorized/slaveMarkets.tw b/src/uncategorized/slaveMarkets.tw index b8195c7a495e19573f37c0be8a529ae9d9fe4282..2c44f3f290b8047f31f6fb54edf0d62cca95ae81 100644 --- a/src/uncategorized/slaveMarkets.tw +++ b/src/uncategorized/slaveMarkets.tw @@ -13,7 +13,7 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex You're in the corner of the slave market occupied by "The Flesh Heap", a dumping ground, of sorts, for broken slaves. Be it braindeath, drug overdose, coma or anything else, this market is willing to buy and sell them. Most of the worthwhile slaves have already been picked clean by pharmaceutical companies for drug testing, and the rest are practically nothing more than vegetables, but a handful remain just conscious enough to be profitable with effort as slaves. One should go in expecting only the worst quality possible, though if anything catches your eye, it will be rather cheap to purchase. - <<set $seed to random(1,4)>> + <<set $seed = random(1,4)>> <<if $seed == 1>> "Looking for a warm body to use as furniture? Perhaps as a decorative, living sculpture? We got what you want!" <<elseif $seed == 2>> diff --git a/src/uncategorized/slaveSold.tw b/src/uncategorized/slaveSold.tw index ad84364685e7dd9d9eb24566a6e869b650fcd64e..ab24bf8ac3a4734560ae783a778923c4418aef92 100644 --- a/src/uncategorized/slaveSold.tw +++ b/src/uncategorized/slaveSold.tw @@ -128,7 +128,7 @@ <<ClearSummaryCache $slaves[$j]>> <br><br> <<set $slaves[$j].devotion -= 20>> - <<set $display to 1>> + <<set $display = 1>> <<break>> <</if>> <</if>> diff --git a/src/uncategorized/spaReport.tw b/src/uncategorized/spaReport.tw index f91c0c1eb927e5d71a0dbd7e903b99fbae4df45d..16e4fa6967059c6074be5aea09135efdc8aba65b 100644 --- a/src/uncategorized/spaReport.tw +++ b/src/uncategorized/spaReport.tw @@ -179,7 +179,7 @@ She does her best to accommodate $slaves[$i].slaveName's pregnancy and to make sure the mother-to-be is happy and comfortable. <<if random(1,100) > 65 && $Attendant.fetish == "none">> After massaging $slaves[$i].slaveName's growing belly multiple times, $Attendant.slaveName begins to find herself fantasizing about being swollen with life too. - <<set $Attendant.fetish to "pregnancy", $slaves[_FLs].fetish to "pregnancy">> + <<set $Attendant.fetish = "pregnancy", $slaves[_FLs].fetish = "pregnancy">> <</if>> <</if>> <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> diff --git a/src/uncategorized/storyCaption.tw b/src/uncategorized/storyCaption.tw index efd4f7b0a7994ca17cd6550b7f0ebade4c063af2..ebaa3984eac40520baddb54fcbf88b9370f77dfb 100644 --- a/src/uncategorized/storyCaption.tw +++ b/src/uncategorized/storyCaption.tw @@ -588,6 +588,7 @@ <br> <br><<link [[Wardrobe]]>><</link>> <br><<if $dispensary>>[[Pharmaceutical Fabricator|Dispensary]]<</if>> + <br><<if $rep >= 10000>>[[Black Market|The Black Market]]<</if>> <br><br><br><br><br> <<elseif _Pass == "Manage Personal Affairs">> <br> @@ -596,7 +597,9 @@ <br> <br><<link [[Wardrobe]]>><</link>> <br><<if $dispensary>>[[Pharmaceutical Fabricator|Dispensary]]<</if>> + <br><<if $rep >= 10000>>[[Black Market|The Black Market]]<</if>> <br><br><br><br><br> + <<elseif _Pass == "Options">> <br> <br>[[Summary Options]] diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw index b8fc71114d172763e7647244390d10bf46c1d7ff..65389ab07f3faee560dd58bdfe99730d8c2f5fbd 100644 --- a/src/uncategorized/surgeryDegradation.tw +++ b/src/uncategorized/surgeryDegradation.tw @@ -133,6 +133,7 @@ As the remote surgery's long recovery cycle completes, <<if $surgeryType == "fuckdoll">> + <<SetBellySize $activeSlave>> your new Fuckdoll <<if ($activeSlave.amp != 1)>>stumbles<<else>>is carried<</if>> out of the surgery room. The only <<if $activeSlave.vagina > -1>>areas of skin visible are those around its vulva and anus<<else>>area of skin visible is that around its anus<</if>><<if $activeSlave.lips > 95>>, though its lips are also visible as its facepussy makes the standard Fuckdoll mouth insert unnecessary<</if>>. You can see it starting to struggle against the constricting material of the Fuckdoll suit as the sedation wears off. Other than the tiny area of exposed skin and the slight movement, there's no indication that the sex doll in front of you is alive at all. <<elseif $surgeryType == "fuckdollExtraction">> $activeSlave.slaveName <<if ($activeSlave.amp != 1)>>walks<<else>>is carried<</if>> out of the surgery room. @@ -322,7 +323,7 @@ As the remote surgery's long recovery cycle completes, <<set $activeSlave.trust += 25>> <<if ($activeSlave.devotion > 50)>> She loved you before, but she's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too. She never realized just how good you looked, and now she can't get your image out of her mind. - <<if $activeSlave.relationship == 0>><<set $activeSlave.relationship to -2>><</if>> + <<if $activeSlave.relationship == 0>><<set $activeSlave.relationship = -2>><</if>> <<elseif ($activeSlave.devotion > 20)>> She accepted you as her owner before, but she's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too. <<else>> @@ -1396,7 +1397,7 @@ As the remote surgery's long recovery cycle completes, <<set $activeSlave.trust -= 10>> <<set $activeSlave.devotion -= 10>> <<else>> - Of course, she could not walk out of the surgery; you carried her. You had a good idea what her reaction would be, so <<if ($activeSlave.teeth is "removable")>>you removed her teeth<<else>>she's muzzled<</if>> to prevent her from trying to bite. She sobs convulsively, and her <<if canSee($activeSlave)>>eyes dart desperately from side to side through her tears, hopelessly imploring the mirror to show her something other than this<<else>>stumps twitch pathetically with her desperate efforts to move her limbs, to prove there is something other than this<</if>>. Anything other than this. @@.mediumorchid;The surgical invasion has filled her with horror and anger.@@ Since the surgery was invasive, @@.red;her health has been greatly affected.@@ She is @@.gold;terrified to the point of insanity@@ of your total power over her body. + Of course, she could not walk out of the surgery; you carried her. You had a good idea what her reaction would be, so <<if ($activeSlave.teeth == "removable")>>you removed her teeth<<else>>she's muzzled<</if>> to prevent her from trying to bite. She sobs convulsively, and her <<if canSee($activeSlave)>>eyes dart desperately from side to side through her tears, hopelessly imploring the mirror to show her something other than this<<else>>stumps twitch pathetically with her desperate efforts to move her limbs, to prove there is something other than this<</if>>. Anything other than this. @@.mediumorchid;The surgical invasion has filled her with horror and anger.@@ Since the surgery was invasive, @@.red;her health has been greatly affected.@@ She is @@.gold;terrified to the point of insanity@@ of your total power over her body. <<set $activeSlave.trust -= 50>> <<set $activeSlave.devotion -= 50>> <</if>> diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index b307db7d84361b5343c0741ee468685d1d76b7cf..d3f12cc9aa903b555b7abcebe39d4735242e61f5 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -2090,7 +2090,7 @@ Her bodysuit shows off her womanhood as she moves. <</if>> <<case "a leotard">> - <<if ($activeSlave.dick > 0) and canAchieveErection($activeSlave)>> + <<if ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>> She's got her erection tucked vertically upward under the tight material of her leotard. <<elseif ($activeSlave.dick > 0)>> The tight material of her leotard hugs and minimizes the size of her soft member as she moves. @@ -2098,7 +2098,7 @@ The thin crotch piece of her leotard occasionally threatens to ride up between her pussylips as she moves. <</if>> <<case "a bunny outfit">> - <<if ($activeSlave.dick > 0) and canAchieveErection($activeSlave)>> + <<if ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>> She's moving uncomfortably, as though her teddy isn't tailored quite perfectly for what she's got going on in front. <<elseif ($activeSlave.dick > 0)>> Her teddy is tailored well enough to minimize the fact that she isn't a natural woman. diff --git a/src/utility/assayWidgets.tw b/src/utility/assayWidgets.tw index ef7a49c941f14cc3ab371c241bd944a60a3a47f2..f17b9fccf389c3ab4bcf1dddc6ef652febb351a6 100644 --- a/src/utility/assayWidgets.tw +++ b/src/utility/assayWidgets.tw @@ -57,11 +57,11 @@ <<else>> <<set $beauty -= $args[0].face/30>> <</if>> -<<elseif $args[0].faceShape is "exotic">> +<<elseif $args[0].faceShape == "exotic">> <<set $beauty += 2*($args[0].face/30)>> -<<elseif $args[0].faceShape is "sensual">> +<<elseif $args[0].faceShape == "sensual">> <<set $beauty += 2+($args[0].face/30)>> -<<elseif $args[0].faceShape is "cute">> +<<elseif $args[0].faceShape == "cute">> <<set $beauty += 4>> <</if>> @@ -166,7 +166,7 @@ <</if>> <<if ($args[0].markings != "none")>> - <<if ($args[0].markings is "beauty mark")>> + <<if ($args[0].markings == "beauty mark")>> <<if ($args[0].face > 40)>> <<set $beauty += 6>> <<elseif ($args[0].face < -10)>> diff --git a/src/utility/assignWidgets.tw b/src/utility/assignWidgets.tw index 909d7578c396967686c8fa63b4dcf095503b84b9..eabe9a13ae82665848b03e6560da80872489b90c 100644 --- a/src/utility/assignWidgets.tw +++ b/src/utility/assignWidgets.tw @@ -174,9 +174,9 @@ <<set $BrothiIDs.delete(_wID), $brothelSlaves-->> <<case "be confined in the cellblock" "cellblock">> <<set $args[0].assignment = "rest">> - <<if ($slaves[_wi].inflation > 0)>> + <<if ($args[0].inflation > 0)>> <<set $args[0].inflation = 0, $args[0].inflationType = "none", $args[0].inflationMethod = 0>> - <<SetBellySize $slaves[$i]>> + <<SetBellySize $args[0]>> <</if>> <<set $CellBiIDs.delete(_wID), $cellblockSlaves-->> <<case "get treatment in the clinic" "clinic">> diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw index adf2f736bb0a8699d9443118aa731f004833f6e7..9c35a4eb69cde9c48ff88bcc107f8c46f821e21d 100644 --- a/src/utility/descriptionWidgetsFlesh.tw +++ b/src/utility/descriptionWidgetsFlesh.tw @@ -592,7 +592,7 @@ <<elseif $activeSlave.boobs > 2000>> $activeSlave.slaveName's huge breasts are supported by a specially engineered, space-age sports bra under $possessive tank top. <<elseif $activeSlave.boobs < 300>> - $activeSlave.slaveName is flat as an ironing board; $pronoun wears $possessive tanktop without a bra underneath. + $activeSlave.slaveName is flat as an ironing board; $pronoun wears $possessive tank top without a bra underneath. <<else>> $activeSlave.slaveName's breasts are supported by a sports bra under $possessive tank top. <</if>> @@ -668,7 +668,7 @@ $possessiveCap <<elseif $activeSlave.boobs < 7500>><<print either("obviously engineered", "disproportionate")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill X cups. <<elseif $activeSlave.boobs < 8000>><<print either("disproportionate", "nearly inhuman")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill Y cups. <<elseif $activeSlave.boobs < 8500>><<print either("nearly inhuman", "nearly alien")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill Z cups. -<<elseif $activeSlave.boobs < 10000+($activeSlave.muscles*20) and $activeSlave.physicalAge <= 12>> +<<elseif $activeSlave.boobs < 10000+($activeSlave.muscles*20) && $activeSlave.physicalAge <= 12>> <<if ($activeSlave.amp == 1)>> <<print either("boobs", "breasts", "mammaries", "udders")>> have <<if $activeSlave.boobsImplant>>been altered<<else>>grown<</if>> past any pretense of proportion.<<if $showBoobCCs == 1>> At <<print $activeSlave.boobs>> CCs each, they<<else>> They<</if>> are so large that $pronoun might not be able to walk, if $pronoun still had legs. <<elseif ($activeSlave.muscles >= 5)>> @@ -676,7 +676,7 @@ $possessiveCap <<else>> <<print either("boobs", "breasts", "mammaries", "udders")>> have <<if $activeSlave.boobsImplant>>been altered<<else>>grown<</if>> past any pretense of proportion.<<if $showBoobCCs == 1>> At <<print $activeSlave.boobs>> CCs each, they<<else>> They<</if>> are so large that $pronoun can barely stand. If they grow any larger, $pronoun may not be able to walk. <</if>> -<<elseif $activeSlave.boobs < 20000+($activeSlave.muscles*50) and $activeSlave.physicalAge < 18>> +<<elseif $activeSlave.boobs < 20000+($activeSlave.muscles*50) && $activeSlave.physicalAge < 18>> <<if ($activeSlave.amp == 1)>> <<print either("boobs", "breasts", "mammaries", "udders")>> have <<if $activeSlave.boobsImplant>>been altered<<else>>grown<</if>> past any pretense of proportion.<<if $showBoobCCs == 1>> At <<print $activeSlave.boobs>> CCs each, they<<else>> They<</if>> are so large that $pronoun might not be able to walk, if $pronoun still had legs. <<elseif ($activeSlave.muscles >= 5)>> @@ -4028,7 +4028,7 @@ $possessiveCap the suit obscures all but the shape of $object pretty face. <</if>> <<else>> - <<if $activeSlave.markings is "beauty mark">> + <<if $activeSlave.markings == "beauty mark">> <<if $activeSlave.face < -95>> It bears a severely disfiguring, discolored mark. <<elseif $activeSlave.face < -40>> @@ -11250,27 +11250,27 @@ she's <<if $activeSlave.bellyTat != 0>> <<if $activeSlave.bellyImplant >= 32000>> - <<if $activeSlave.bellyTat is "a heart">> + <<if $activeSlave.bellyTat == "a heart">> A heart is tattooed around $possessive popped navel, though it is barely recognizable so stretched by $possessive titanic implant-filled middle. - <<elseif $activeSlave.bellyTat is "a star">> + <<elseif $activeSlave.bellyTat == "a star">> A star is tattooed around $possessive popped navel, though it is barely recognizable so stretched by $possessive titanic implant-filled pregnancy middle. - <<elseif $activeSlave.bellyTat is "a butterfly">> + <<elseif $activeSlave.bellyTat == "a butterfly">> A butterfly is tattooed around $possessive popped navel, though it is barely recognizable so stretched by $possessive titanic implant-filled pregnancy middle. <</if>> <<elseif $activeSlave.bellyImplant >= 16000>> - <<if $activeSlave.bellyTat is "a heart">> + <<if $activeSlave.bellyTat == "a heart">> A heart is tattooed around $possessive popped navel, though it is rather stretched by her enormous implant-filled middle. - <<elseif $activeSlave.bellyTat is "a star">> + <<elseif $activeSlave.bellyTat == "a star">> A star is tattooed around $possessive popped navel, though it is rather stretched by her enormous implant-filled middle. - <<elseif $activeSlave.bellyTat is "a butterfly">> + <<elseif $activeSlave.bellyTat == "a butterfly">> A butterfly is tattooed around $possessive popped navel, though it is rather stretched by her enormous implant-filled middle. <</if>> <<elseif $activeSlave.bellyImplant >= 8000>> - <<if $activeSlave.bellyTat is "a heart">> + <<if $activeSlave.bellyTat == "a heart">> A heart is tattooed around $possessive popped navel, only to be truly seen when $pronoun appears full-term. - <<elseif $activeSlave.bellyTat is "a star">> + <<elseif $activeSlave.bellyTat == "a star">> A star is tattooed around $possessive popped navel, only to be truly seen when $pronoun appears full-term. - <<elseif $activeSlave.bellyTat is "a butterfly">> + <<elseif $activeSlave.bellyTat == "a butterfly">> A butterfly is tattooed around $possessive popped navel, only to be truly seen when $pronoun appears full-term. <</if>> <<elseif $activeSlave.bellyImplant >= 4000>> diff --git a/src/utility/descriptionWidgetsPiercings.tw b/src/utility/descriptionWidgetsPiercings.tw index ce2f51e0ab35bcd515cb22755d6b5de62c83a335..e16a33ff146fa9f93bc96b30356452d8fe8650e1 100644 --- a/src/utility/descriptionWidgetsPiercings.tw +++ b/src/utility/descriptionWidgetsPiercings.tw @@ -28,7 +28,7 @@ <<case "a schoolgirl outfit">> She's wearing girlish earrings. <<case "a kimono">> - She's wearing gorgeous enamelled earrings made to look like tiny koi. + She's wearing gorgeous enameled earrings made to look like tiny koi. <<case "a slave gown" "a halter top dress" "a ball gown" "a maternity dress">> She's wearing lovely diamond earrings; the stones are cut in an alluring, feminine style. <<case "slutty business attire">> @@ -70,7 +70,7 @@ $pronounCap has simple studs in her nose. <<elseif $activeSlave.nosePiercing == 2>> $pronounCap has nasal studs and a large septum ring. - <<if ($activeSlave.clothes is "slutty jewelry") && ($activeSlave.earPiercing > 0)>> + <<if ($activeSlave.clothes == "slutty jewelry") && ($activeSlave.earPiercing > 0)>> Her bangles include a light chain from her nose ring to her ear piercings on one side. <</if>> <</if>> diff --git a/src/utility/extendedFamilyWidgets.tw b/src/utility/extendedFamilyWidgets.tw index 2f3ef3425ecef06b682a8585b44223ead3187c5f..3fbfa4c9d7449ce8fa4f2c31d881639dcfb3f427 100644 --- a/src/utility/extendedFamilyWidgets.tw +++ b/src/utility/extendedFamilyWidgets.tw @@ -138,10 +138,10 @@ /*testtest grandchild passage - determines how many grandchildren the current slave has*/ <<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].ID != $activeSlave.ID>> - <<if $activeSlave.ID == $slaves[$i].mother or $activeSlave.ID == $slaves[$i].father>> + <<if $activeSlave.ID == $slaves[$i].mother || $activeSlave.ID == $slaves[$i].father>> <<for $j = 0; $j < $slaves.length; $j++>> <<if $slaves[$i].ID != $slaves[$j].ID>> - <<if $slaves[$i].ID == $slaves[$j].mother or $slaves[$i].ID == $slaves[$j].father>> + <<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>> <<set $children.push($slaves[$j])>> <</if>> <</if>> @@ -218,7 +218,7 @@ <<if $slaves[$i].ID != $activeSlave.ID>> <<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>> <<if $slaves[$i].ID == $PC.mother || $slaves[$i].ID == $PC.father>> - <<for $j to 0; $j < $slaves.length; $j++>> + <<for $j = 0; $j < $slaves.length; $j++>> <<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].dick > 0 && $slaves[$j].genes == "XY">> <<if areSisters($slaves[$j], $activeSlave) == 1 || areSisters($slaves[$j], $activeSlave) == 2>> <<set $children.push($slaves[$j])>> @@ -233,7 +233,7 @@ $pronounCap <<if $children.length > 2>> is @@.lightgreen;your uncle along with - <<for $j to 0; $j < $children.length; $j++>> + <<for $j = 0; $j < $children.length; $j++>> <<if $j < $children.length-1>> $children[$j].slaveName, <<else>> @@ -865,7 +865,7 @@ <<widget "listOfSlavesWithSameParent">> <<if $activeSlave[$args[0]] != 0>> <<set _printSeperator = false>> -<<if $activeSlave[$args[0]] == $PC[$args[0]]>>You<<set _printSeperator = true>><</if>><<for _j = 0; _j < $slaves.length; _j++>><<if $slaves[_j][$args[0]] == $activeSlave[$args[0]]>><<if _printSeperator>> | <</if>><<set _printSeperator to true>><<print $slaves[_j].slaveName>><</if>><</for>> +<<if $activeSlave[$args[0]] == $PC[$args[0]]>>You<<set _printSeperator = true>><</if>><<for _j = 0; _j < $slaves.length; _j++>><<if $slaves[_j][$args[0]] == $activeSlave[$args[0]]>><<if _printSeperator>> | <</if>><<set _printSeperator = true>><<print $slaves[_j].slaveName>><</if>><</for>> <</if>> <</widget>> @@ -887,7 +887,7 @@ <<widget "listOfSlavesWithParent">> <<if $args[1] != 0>> <<set _printSeperator = false>> -<<if $args[1] == $PC[$args[0]]>>You<<set _printSeperator = true>><</if>><<for _j = 0; _j < $slaves.length; _j++>><<if $slaves[_j][$args[0]] == $args[1]>><<if _printSeperator>> | <</if>><<set _printSeperator to true>><<print $slaves[_j].slaveName>><</if>><</for>> +<<if $args[1] == $PC[$args[0]]>>You<<set _printSeperator = true>><</if>><<for _j = 0; _j < $slaves.length; _j++>><<if $slaves[_j][$args[0]] == $args[1]>><<if _printSeperator>> | <</if>><<set _printSeperator = true>><<print $slaves[_j].slaveName>><</if>><</for>> <</if>> <</widget>> diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw index d42161ab717885219e91b0afdc0c8f1b6834c91d..a2877b9ecb2a822cae77932d04b674f583f87ccf 100644 --- a/src/utility/miscWidgets.tw +++ b/src/utility/miscWidgets.tw @@ -643,7 +643,7 @@ <<replace #bloating>> <<if $activeSlave.inflation > 0>> <br> - __Required Bloating__: <strong><span id="inflate"><<if $activeSlave.inflation is 3>><<print "She is required to keep 2 gallons of $activeSlave.inflationType in her at all times">><<elseif $activeSlave.inflation is 2>><<print "She is required to keep 4 liters of $activeSlave.inflationType in her at all times">><<elseif $activeSlave.inflation is 1>><<print "She is required to keep 2 liters of $activeSlave.inflationType in her at all times">><</if>></span></strong>. + __Required Bloating__: <strong><span id="inflate"><<if $activeSlave.inflation == 3>><<print "She is required to keep 2 gallons of $activeSlave.inflationType in her at all times">><<elseif $activeSlave.inflation == 2>><<print "She is required to keep 4 liters of $activeSlave.inflationType in her at all times">><<elseif $activeSlave.inflation == 1>><<print "She is required to keep 2 liters of $activeSlave.inflationType in her at all times">><</if>></span></strong>. <<if $activeSlave.inflationMethod == 3>> <<link "Let her deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0,$activeSlave.cumSource = 0,$activeSlave.milkSource = 0>><<SetBellySize $activeSlave>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> <<elseif $activeSlave.inflationType == "milk">> diff --git a/src/utility/raWidgets.tw b/src/utility/raWidgets.tw index 0d7a0f648f80e54343d61e8cce44279731a1e42b..d095fa01e3d72a8691b8a8e01dd3fe0a1c6a7d04 100644 --- a/src/utility/raWidgets.tw +++ b/src/utility/raWidgets.tw @@ -3628,14 +3628,14 @@ Your brand design is ''$brandDesign.'' <<set $args[0].hormones = 2>> <br>$args[0].slaveName is fertile, so she has been put on the appropriate fertility regime. <</if>> - <<elseif (_combinedRule.preg == 3) and $args[0].indentureRestrictions < 1>> + <<elseif (_combinedRule.preg == 3) && $args[0].indentureRestrictions < 1>> <<if $args[0].preg !== 0 || $args[0].drugs !== "super fertility drugs" || $args[0].hormones !== 0>> <<set $args[0].preg = 0>> <<set $args[0].drugs = "super fertility drugs">> <<set $args[0].hormones = 0>> <br>$args[0].slaveName is fertile, so she has been put on the appropriate fertility regime. <</if>> - <<elseif (_combinedRule.preg == 4) and $args[0].indentureRestrictions < 1>> + <<elseif (_combinedRule.preg == 4) && $args[0].indentureRestrictions < 1>> <<if $args[0].preg !== 0 || $args[0].drugs !== "super fertility drugs" || $args[0].hormones !== 2>> <<set $args[0].preg = 0>> <<set $args[0].drugs = "super fertility drugs">> diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw index b99f42d7a756fae91b6d96cb27949db2b28f7ad8..a7a0e06c256f06a0c0d48da8e535fdbd4fb1f2bd 100644 --- a/src/utility/slaveCreationWidgets.tw +++ b/src/utility/slaveCreationWidgets.tw @@ -2092,7 +2092,7 @@ <<if $activeSlave.vaginalSkill > 10>><<set $activeSlave.vaginalSkill -= 10>><</if>> <</if>> <<if $activeSlave.faceImplant <= 30 && $activeSlave.face <= 95>> - <<if $activeSlave.faceShape is "masculine">><<set $activeSlave.faceShape = "androgynous">><</if>> + <<if $activeSlave.faceShape == "masculine">><<set $activeSlave.faceShape = "androgynous">><</if>> <<set $activeSlave.faceImplant = 20>> <<set $activeSlave.face = Math.clamp($activeSlave.face+20,-100,100)>> <</if>> @@ -3180,16 +3180,16 @@ <<set $activeSlave.boobs = either(500,650,800)>> <<set $activeSlave.waist = -15>> <<set $activeSlave.lips = 35>> - <<if $LDE.schoolUpgrade is 2>> + <<if $LDE.schoolUpgrade == 2>> <<set $activeSlave.dick = either(3,4)>> <<set $activeSlave.balls = either(3,4)>> <<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>> - <<if $activeSlave.balls > 0>><<set $activeSlave.scrotum = $activeSlave.balls>><</if>> + <<if $activeSlave.balls > 0>><<set $activeSlave.scrotum = $activeSlave.balls>><</if>> <<else>> <<set $activeSlave.dick = either(1,1,1,2)>> <<set $activeSlave.balls = either(1,1,1,2)>> <<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>> - <<if $activeSlave.balls > 0>><<set $activeSlave.scrotum = $activeSlave.balls>><</if>> + <<if $activeSlave.balls > 0>><<set $activeSlave.scrotum = $activeSlave.balls>><</if>> <<set $activeSlave.pubertyXY = 0>> <<set $activeSlave.pubertyAgeXY = random(24,50)>> <</if>>