diff --git a/src/markets/specificMarkets/customSlaveMarket.js b/src/markets/specificMarkets/customSlaveMarket.js
index a828538f460270c76e10e68bb1e1fd809b54730d..b934d90c11052dee981ab9f9f294bf210440f655 100644
--- a/src/markets/specificMarkets/customSlaveMarket.js
+++ b/src/markets/specificMarkets/customSlaveMarket.js
@@ -133,14 +133,14 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "muscles";
 		const choices = new Map([
-			["96", "Ripped"],
-			["65", "Muscular"],
-			["45", "Well built"],
-			["20", "Toned"],
-			["0", "Normal"],
-			["-21", "Weak"],
-			["-51", "Very weak"],
-			["-97", "Frail"],
+			[96, "Ripped"],
+			[65, "Muscular"],
+			[45, "Well built"],
+			[20, "Toned"],
+			[0, "Normal"],
+			[-21, "Weak"],
+			[-51, "Very weak"],
+			[-97, "Frail"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -161,12 +161,12 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "lips";
 		const choices = new Map([
-			["100", "Facepussy"],
-			["85", "Enormous"],
-			["65", "Big"],
-			["35", "Plush"],
-			["15", "Normal"],
-			["5", "Thin"],
+			[100, "Facepussy"],
+			[85, "Enormous"],
+			[65, "Big"],
+			[35, "Plush"],
+			[15, "Normal"],
+			[5, "Thin"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -191,11 +191,11 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "voice";
 		const choices = new Map([
-			["3", "High, girly"],
-			["2", "Feminine"],
-			["1", "Deep"],
-			["0", "Mute"],
-			["-1", "Voice is unimportant"],
+			[3, "High, girly"],
+			[2, "Feminine"],
+			[1, "Deep"],
+			[0, "Mute"],
+			[-1, "Voice is unimportant"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -246,14 +246,14 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "weight";
 		const choices = new Map([
-			["200", "Immobile"],
-			["150", "Very Fat"],
-			["100", "Fat"],
-			["50", "Chubby"],
-			["15", "Plush"],
-			["0", "Average"],
-			["-15", "Thin"],
-			["-50", "Very thin"],
+			[200, "Immobile"],
+			[150, "Very Fat"],
+			[100, "Fat"],
+			[50, "Chubby"],
+			[15, "Plush"],
+			[0, "Average"],
+			[-15, "Thin"],
+			[-50, "Very thin"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -274,11 +274,11 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "face";
 		const choices = new Map([
-			["55", "Very attractive"],
-			["15", "Attractive"],
-			["0", "Average"],
-			["-15", "Unattractive"],
-			["-55", "Very unattractive"],
+			[55, "Very attractive"],
+			[15, "Attractive"],
+			[0, "Average"],
+			[-15, "Unattractive"],
+			[-55, "Very unattractive"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -314,7 +314,7 @@ App.Markets["Custom Slave"] = function() {
 			const option = document.createElement("option");
 			option.text = text;
 			option.value = value;
-			if (slave.race == option.value) {
+			if (slave.race === option.value) {
 				option.selected = true;
 			}
 			select.append(option);
@@ -361,7 +361,7 @@ App.Markets["Custom Slave"] = function() {
 			const option = document.createElement("option");
 			option.text = text;
 			option.value = value;
-			if (slave.skin == option.value) {
+			if (slave.skin === option.value) {
 				option.selected = true;
 			}
 			select.append(option);
@@ -395,12 +395,12 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "boobs";
 		const choices = new Map([
-			["6000", "Massive"],
-			["2100", "Giant"],
-			["1400", "Huge"],
-			["800", "Big"],
-			["500", "Healthy"],
-			["200", "Flat"],
+			[6000, "Massive"],
+			[2100, "Giant"],
+			[1400, "Huge"],
+			[800, "Big"],
+			[500, "Healthy"],
+			[200, "Flat"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -425,10 +425,10 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "butt";
 		const choices = new Map([
-			["8", "Massive"],
-			["5", "Huge"],
-			["3", "Healthy"],
-			["1", "Flat"],
+			[8, "Massive"],
+			[5, "Huge"],
+			[3, "Healthy"],
+			[1, "Flat"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -449,9 +449,9 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "sex";
 		const choices = new Map([
-			["3", "Both"],
-			["2", "Male"],
-			["1", "Female"],
+			[3, "Both"],
+			[2, "Male"],
+			[1, "Female"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -475,8 +475,8 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "virgin";
 		const choices = new Map([
-			["1", "Not Important"],
-			["0", "Vaginal virgin"],
+			[1, "Not Important"],
+			[0, "Vaginal virgin"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -498,9 +498,9 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "dick";
 		const choices = new Map([
-			["4", "Large penis"],
-			["2", "Small penis"],
-			["0", "No penis"],
+			[4, "Large penis"],
+			[2, "Small penis"],
+			[0, "No penis"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -521,10 +521,10 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "balls";
 		const choices = new Map([
-			["6", "Huge testicles"],
-			["4", "Large testicles"],
-			["2", "Small testicles"],
-			["0", "No testicles"],
+			[6, "Huge testicles"],
+			[4, "Large testicles"],
+			[2, "Small testicles"],
+			[0, "No testicles"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -545,10 +545,10 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "clit";
 		const choices = new Map([
-			["5", "Clit dick"],
-			["3", "Enormous clitoris"],
-			["1", "Big clitoris"],
-			["0", "Normal clitoris"],
+			[5, "Clit dick"],
+			[3, "Enormous clitoris"],
+			[1, "Big clitoris"],
+			[0, "Normal clitoris"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -573,10 +573,10 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "labia";
 		const choices = new Map([
-			["3", "Enormous labia"],
-			["2", "Huge labia"],
-			["1", "Big labia"],
-			["0", "Normal labia"],
+			[3, "Enormous labia"],
+			[2, "Huge labia"],
+			[1, "Big labia"],
+			[0, "Normal labia"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -597,9 +597,9 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "vaginaLube";
 		const choices = new Map([
-			["2", "Sopping wet vagina"],
-			["1", "Wet vagina"],
-			["0", "Dry vagina"],
+			[2, "Sopping wet vagina"],
+			[1, "Wet vagina"],
+			[0, "Dry vagina"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -620,8 +620,8 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "analVirgin";
 		const choices = new Map([
-			["1", "Anal virginity is not important"],
-			["0", "Anal virgin"],
+			[1, "Anal virginity is not important"],
+			[0, "Anal virgin"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -642,9 +642,9 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "skills";
 		const choices = new Map([
-			["65", "Expert"],
-			["35", "Skilled"],
-			["0", "Unskilled"],
+			[65, "Expert"],
+			[35, "Skilled"],
+			[0, "Unskilled"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -667,9 +667,9 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "skill.whore";
 		const choices = new Map([
-			["35", "Expert"],
-			["15", "Skilled"],
-			["0", "Unskilled"],
+			[35, "Expert"],
+			[15, "Skilled"],
+			[0, "Unskilled"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -692,8 +692,8 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "skill.combat";
 		const choices = new Map([
-			["1", "Skilled"],
-			["0", "Unskilled"],
+			[1, "Skilled"],
+			[0, "Unskilled"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -714,13 +714,13 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "intelligence";
 		const choices = new Map([
-			["-3", "Moronic"],
-			["-2", "Very stupid"],
-			["-1", "Stupid"],
-			["0", "Average intelligence"],
-			["1", "Smart"],
-			["2", "Very smart"],
-			["3", "Brilliant"],
+			[-3, "Moronic"],
+			[-2, "Very stupid"],
+			[-1, "Stupid"],
+			[0, "Average intelligence"],
+			[1, "Smart"],
+			[2, "Very smart"],
+			[3, "Brilliant"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -822,11 +822,11 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "hears";
 		const choices = new Map([
-			["0", "Normal Hearing"],
-			["-1", "Hard of Hearing"],
+			[0, "Normal Hearing"],
+			[-1, "Hard of Hearing"],
 		]);
 		if (V.seeExtreme) {
-			choices.set("-2", "Deaf");
+			choices.set(-2, "Deaf");
 		}
 
 		createDescription(el, description, slaveProperty);
@@ -848,8 +848,8 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "smells";
 		const choices = new Map([
-			["0", "Normal Sense of smell"],
-			["-1", "No Sense of smell"],
+			[0, "Normal Sense of smell"],
+			[-1, "No Sense of smell"],
 		]);
 
 		createDescription(el, description, slaveProperty);
@@ -871,8 +871,8 @@ App.Markets["Custom Slave"] = function() {
 		const el = document.createElement("div");
 		const slaveProperty = "tastes";
 		const choices = new Map([
-			["0", "Normal Sense of taste"],
-			["-1", "No Sense of taste"],
+			[0, "Normal Sense of taste"],
+			[-1, "No Sense of taste"],
 		]);
 
 		createDescription(el, description, slaveProperty);