diff --git a/devTools/canvasmodel/model.d.ts b/devTools/canvasmodel/model.d.ts
index 0a186715981d22320cb89819f27c9337471a8f6b..077f79ddf49fc42371b40cf41d007500fa83c139 100644
--- a/devTools/canvasmodel/model.d.ts
+++ b/devTools/canvasmodel/model.d.ts
@@ -39,6 +39,7 @@ declare interface BlendPatternSpec {
 declare type BlendSpec = string | BlendGradientSpec | BlendPatternSpec;
 
 declare interface CompositeLayerParams {
+	model?: any;
 	/**
 	 * Render the layer. Default true, only exact `false` value disables rendering
 	 */
@@ -70,7 +71,7 @@ declare interface CompositeLayerParams {
 	/**
 	 * Mask, a stencil image to cut out and display only select parts of this layer.
 	 */
-	masksrc?: string;
+	masksrc?: string | HTMLCanvasElement | (string | HTMLCanvasElement)[];
 	/**
 	 * Alpha, 0-1. Default 1
 	 */
@@ -101,13 +102,14 @@ declare interface CompositeLayerParams {
 	 * Animation name
 	 */
 	animation?: string;
+	scale?: boolean;
 }
 declare interface CompositeLayerSpec extends CompositeLayerParams {
 	name?: string;
 	/**
 	 * Image URL
 	 */
-	src: string;
+	src: string | HTMLCanvasElement;
 }
 
 declare interface KeyframeSpec {
@@ -158,7 +160,7 @@ declare interface CompositeLayer extends CompositeLayerSpec {
 	/**
 	 * Value of `masksrc` corresponding to current `mask` (if masksrc changes mask will be reloaded)
 	 */
-	cachedMaskSrc?: string;
+	cachedMaskSrc?: string | HTMLCanvasElement | (string | HTMLCanvasElement)[];
 	/**
 	 * Encoded processing options used to display cachedImage
 	 */
diff --git a/devTools/canvasmodel/renderer.d.ts b/devTools/canvasmodel/renderer.d.ts
index 4713d4bec0f64ba2cfd140001e5df71e7b9378db..dff16002b448e1fe9a2c616d4d2bba175f7beff6 100644
--- a/devTools/canvasmodel/renderer.d.ts
+++ b/devTools/canvasmodel/renderer.d.ts
@@ -1,8 +1,6 @@
-/// <reference path="model.d.ts" />
-/// <reference types="tinycolor2" />
 declare namespace Renderer {
     export interface LayerImageLoader {
-        loadImage(src: string, layer: CompositeLayer, successCallback: (src: string, layer: CompositeLayer, image: HTMLImageElement) => any, errorCallback: (src: string, layer: CompositeLayer, error: any) => any): any;
+        loadImage(src: string, layer: CompositeLayer, successCallback: (src: string, layer: CompositeLayer, image: HTMLImageElement | HTMLCanvasElement) => any, errorCallback: (src: string, layer: CompositeLayer, error: any) => any): any;
     }
     export const DefaultImageLoader: LayerImageLoader;
     export let ImageLoader: LayerImageLoader;
@@ -52,7 +50,7 @@ declare namespace Renderer {
     /**
      * Creates a cutout of color in shape of sourceImage
      */
-    export function cutout(sourceImage: CanvasImageSource, color: string | CanvasGradient | CanvasPattern, canvas?: CanvasRenderingContext2D): CanvasRenderingContext2D;
+    export function cutout(sourceImage: CanvasImageSource, color: string, canvas?: CanvasRenderingContext2D): CanvasRenderingContext2D;
     /**
      * Cuts out from base a shape in form of stencil.
      * Modifies and returns base.
@@ -61,7 +59,7 @@ declare namespace Renderer {
     /**
      * Paints sourceImage over cutout of it filled with color.
      */
-    export function composeOverCutout(sourceImage: CanvasImageSource, color: string | CanvasGradient | CanvasPattern, blendMode?: GlobalCompositeOperation, canvas?: CanvasRenderingContext2D): CanvasRenderingContext2D;
+    export function composeOverCutout(sourceImage: CanvasImageSource, color: string, blendMode?: GlobalCompositeOperation, canvas?: CanvasRenderingContext2D): CanvasRenderingContext2D;
     /**
      * Repeatedly fill all sub-frames of canvas with same style.
      * (Makes sense with gradient and pattern fills, to keep consistents across all sub-frames)
@@ -216,6 +214,10 @@ declare namespace Renderer {
         start(): void;
         stop(): void;
     }
+    export function refresh(model: {
+        layerList: CompositeLayerSpec[];
+        redraw: () => void;
+    }): void;
     export function invalidateLayerCaches(layers: CompositeLayer[]): void;
     export function animateLayersAgain(): any;
     export let Animations: Dict<AnimationSpec>;
diff --git a/devTools/canvasmodel/renderer.ts b/devTools/canvasmodel/renderer.ts
index bff18cb37550ce49c89e9237d5d52160e1eff15c..30fad211b4174214a17824f94dc091f64cbc7cd0 100644
--- a/devTools/canvasmodel/renderer.ts
+++ b/devTools/canvasmodel/renderer.ts
@@ -4,33 +4,45 @@
  * Created by aimozg on 29.08.2020.
  */
 namespace Renderer {
-	const millitime = (typeof performance === 'object' && typeof performance.now === 'function') ?
-		function () {
-			return performance.now()
-		} : function () {
-			return new Date().getTime()
-		};
+	const millitime = function () {
+		return performance.now()
+	};
+
+	function rescaleImageToCanvasHeight(image: HTMLImageElement, targetHeight: number): HTMLCanvasElement {
+		const aspectRatio = image.width / image.height;
+		const scaledWidth = targetHeight * aspectRatio;
+		const i2 = createCanvas(scaledWidth, targetHeight);
+		i2.imageSmoothingEnabled = false;
+		i2.drawImage(image, 0, 0, scaledWidth, targetHeight);
+		return i2.canvas;
+	}
 
 	export interface LayerImageLoader {
 		loadImage(src: string,
-		          layer: CompositeLayer,
-		          successCallback: (src: string, layer: CompositeLayer, image: HTMLImageElement) => any,
-		          errorCallback: (src: string, layer: CompositeLayer, error: any) => any
+			layer: CompositeLayer,
+			successCallback: (src: string, layer: CompositeLayer, image: HTMLImageElement | HTMLCanvasElement) => any,
+			errorCallback: (src: string, layer: CompositeLayer, error: any) => any
 		);
 	}
 	export const DefaultImageLoader: LayerImageLoader = {
 		loadImage(src: string,
-		          layer: CompositeLayer,
-		          successCallback: (src: string, layer: CompositeLayer, image: HTMLImageElement) => any,
-		          errorCallback: (src: string, layer: CompositeLayer, error: any) => any) {
-			const image = new Image();
-			image.onload = () => {
-				successCallback(src, layer, image);
-			}
-			image.onerror = (event) => {
-				errorCallback(src, layer, event);
+			layer: CompositeLayer,
+			successCallback: (src: string, layer: CompositeLayer, image: HTMLImageElement | HTMLCanvasElement) => any,
+			errorCallback: (src: string, layer: CompositeLayer, error: any) => any) {
+			if (src instanceof HTMLCanvasElement) {
+				successCallback(src, layer, src);
+			} else {
+				const image = new Image();
+				image.onload = () => {
+					// Rescale the image to the canvas height, if layer.scale is true
+					const rescaledImage = layer.scale ? rescaleImageToCanvasHeight(image, layer.model.height) : image;
+					successCallback(src, layer, rescaledImage);
+				};
+				image.onerror = (event) => {
+					errorCallback(src, layer, event);
+				};
+				image.src = src;
 			}
-			image.src = src;
 		}
 	}
 	export let ImageLoader: LayerImageLoader = DefaultImageLoader;
@@ -779,7 +791,19 @@ namespace Renderer {
 		},
 
 		render(image: CanvasImageSource, layer: CompositeLayer, context: Renderer.RenderPipelineContext): HTMLCanvasElement {
-			return cutoutFrom(ensureCanvas(image).getContext('2d'), layer.mask).canvas;
+			if (Array.isArray(layer.mask)) {
+				let combinedCtx = Renderer.createCanvas(image.width as number, image.height as number);
+				combinedCtx.fillRect(0, 0, combinedCtx.canvas.width, combinedCtx.canvas.height);
+				combinedCtx.globalCompositeOperation = 'destination-in';
+				layer.mask.forEach(mask => {
+					if(!mask) return Renderer.ensureCanvas(image).getContext('2d').canvas;
+					combinedCtx.drawImage(mask as CanvasImageSource, 0, 0);
+				});
+	
+				return Renderer.cutoutFrom(Renderer.ensureCanvas(image).getContext('2d'), combinedCtx.canvas).canvas;
+			} else {
+				return Renderer.cutoutFrom(Renderer.ensureCanvas(image).getContext('2d'), layer.mask as CanvasImageSource).canvas;
+			}
 		}
 	}
 
@@ -969,6 +993,7 @@ namespace Renderer {
 			for (const layer of layers) {
 				if (layer.show !== false && !layer.image) return;
 				if (layer.masksrc && !layer.mask) return;
+				if((Array.isArray(layer.masksrc) && layer.masksrc.length < 1) && !layer.mask) return;
 			}
 			if (listener && listener.loadingDone) listener.loadingDone(millitime() - t0, layersLoaded);
 			try {
@@ -989,7 +1014,9 @@ namespace Renderer {
 					}
 					layer.image = image;
 					layer.imageSrc = src;
-					ImageCaches[src] = image;
+					if (!(layer.src instanceof HTMLCanvasElement)) {
+						ImageCaches[src] = image as HTMLImageElement;
+					}
 					maybeRenderResult();
 				},
 				(src,layer,error)=>{
@@ -1006,37 +1033,47 @@ namespace Renderer {
 			)
 		}
 		function loadLayerMask(layer: CompositeLayer) {
-			ImageLoader.loadImage(
-				layer.masksrc,
-				layer,
-				(src,layer,image)=>{
-					layersLoaded++;
-					if (listener && listener.loaded) {
-						listener.loaded(layer.name || 'unnamed', src);
-					}
-					layer.mask = image;
-					layer.cachedMaskSrc = src;
-					ImageCaches[src] = image;
-					maybeRenderResult();
-				},
-				(src,layer,error)=>{
-					// Mark this src as erroneous to avoid blinking due to reload attempts
-					ImageErrors[src] = true;
-					if (listener && listener.loadError) {
-						listener.loadError(layer.name || 'unnamed', src);
-					} else {
+			if (!Array.isArray(layer.masksrc)) {
+				if (layer.masksrc == null) return;
+				layer.masksrc = [layer.masksrc];
+			}
+		
+			const masksLoaded: (HTMLImageElement | HTMLCanvasElement)[] = [];
+			let masksToLoad = layer.masksrc.length;
+		
+			layer.masksrc.forEach((src, index) => {
+				ImageLoader.loadImage(
+					src,
+					layer,
+					(src, layer, image) => {
+						masksLoaded[index] = image;
+						masksToLoad--;
+		
+						if (!(src instanceof HTMLCanvasElement)) {
+							ImageCaches[src] = image as HTMLImageElement;
+						}
+		
+						if (masksToLoad === 0) {
+							layer.mask = masksLoaded.length === 1 ? masksLoaded[0] : masksLoaded;
+							layer.cachedMaskSrc = layer.masksrc;
+							maybeRenderResult();
+						}
+					},
+					(src, layer, error) => {
 						console.error('Failed to load mask ' + src + (layer.name ? ' for layer ' + layer.name : ''));
+						layer.show = false;
+						ImageErrors[src] = true;
+						layer.masksrc = null;
+						maybeRenderResult();
 					}
-					delete layer.masksrc;
-					maybeRenderResult();
-				}
-			)
+				);
+			});
 		}
 
 		for (const layer of layers) {
 			let needImage = true;
 			if (layer.image) {
-				if (layer.imageSrc === layer.src) {
+				if (layer.imageSrc === layer.src || layer.src instanceof HTMLCanvasElement) {
 					needImage = false;
 				} else {
 					// Layer was loaded in previous render, but then its src was changed - purge cache
@@ -1055,9 +1092,15 @@ namespace Renderer {
 					loadLayerImage(layer);
 				}
 			}
+			if (Array.isArray(layer.masksrc)) {
+				layer.masksrc = layer.masksrc.filter(value => value != null);
+				if (layer.masksrc.length === 0 || layer.masksrc.every(value => value == null)) {
+					layer.masksrc = null;
+				}
+			}
 			let needMask = !!layer.masksrc;
 			if (layer.mask) {
-				if (layer.cachedMaskSrc === layer.masksrc) {
+				if (layer.cachedMaskSrc === layer.masksrc || layer.masksrc instanceof HTMLCanvasElement) {
 					needMask = false;
 				} else {
 					// Layer mask was loaded in previous render, but then its masksrc was changed - purge cache
@@ -1066,13 +1109,27 @@ namespace Renderer {
 				}
 			}
 			if (needMask) {
-				if (ImageErrors[layer.masksrc]) {
-					delete layer.masksrc;
-				} else if (layer.masksrc in ImageCaches) {
-					layer.mask = ImageCaches[layer.masksrc];
-					layer.cachedMaskSrc = layer.masksrc;
+				if (Array.isArray(layer.masksrc)) {
+					layer.mask = [];
+					layer.masksrc.forEach(src => {
+						if (ImageErrors[src]) {
+							layer.masksrc = null;
+						} else if (src in ImageCaches) {
+							layer.mask.push(ImageCaches[src]);
+							layer.cachedMaskSrc = layer.masksrc;
+						} else {
+							loadLayerMask(layer);
+						}
+					});
 				} else {
-					loadLayerMask(layer);
+					if (ImageErrors[layer.masksrc]) {
+						layer.masksrc = null;
+					} else if (layer.masksrc in ImageCaches) {
+						layer.mask = ImageCaches[layer.masksrc];
+						layer.cachedMaskSrc = layer.masksrc;
+					} else {
+						loadLayerMask(layer);
+					}
 				}
 			}
 		}
@@ -1129,6 +1186,13 @@ namespace Renderer {
 		stop(): void;
 	}
 
+	export function refresh(model: { layerList: CompositeLayerSpec[], redraw: () => void }) {
+		ImageCaches = {};
+		ImageErrors = {};
+		invalidateLayerCaches(model.layerList);
+		model.redraw();
+	}
+
 	export function invalidateLayerCaches(layers: CompositeLayer[]) {
 		for (let layer of layers) {
 			delete layer.image;
diff --git a/devTools/canvasmodel/tinycolor.js b/devTools/canvasmodel/tinycolor.js
index 1e3be9863a9ffea5a4f4b7fd3d3f39738edcbbae..349807584ca88f53e0596aa823abb5bd5d281be1 100644
--- a/devTools/canvasmodel/tinycolor.js
+++ b/devTools/canvasmodel/tinycolor.js
@@ -1,1195 +1,1184 @@
-// TinyColor v1.4.1
+// TinyColor v1.6.0
 // https://github.com/bgrins/TinyColor
 // Brian Grinstead, MIT License
 
-(function(Math) {
-
-    var trimLeft = /^\s+/,
-        trimRight = /\s+$/,
-        tinyCounter = 0,
-        mathRound = Math.round,
-        mathMin = Math.min,
-        mathMax = Math.max,
-        mathRandom = Math.random;
-    
-    function tinycolor (color, opts) {
-    
-        color = (color) ? color : '';
-        opts = opts || { };
-    
-        // If input is already a tinycolor, return itself
-        if (color instanceof tinycolor) {
-           return color;
-        }
-        // If we are called as a function, call using new instead
-        if (!(this instanceof tinycolor)) {
-            return new tinycolor(color, opts);
-        }
-    
-        var rgb = inputToRGB(color);
-        this._originalInput = color,
-        this._r = rgb.r,
-        this._g = rgb.g,
-        this._b = rgb.b,
-        this._a = rgb.a,
-        this._roundA = mathRound(100*this._a) / 100,
-        this._format = opts.format || rgb.format;
-        this._gradientType = opts.gradientType;
-    
-        // Don't let the range of [0,255] come back in [0,1].
-        // Potentially lose a little bit of precision here, but will fix issues where
-        // .5 gets interpreted as half of the total, instead of half of 1
-        // If it was supposed to be 128, this was already taken care of by `inputToRgb`
-        if (this._r < 1) { this._r = mathRound(this._r); }
-        if (this._g < 1) { this._g = mathRound(this._g); }
-        if (this._b < 1) { this._b = mathRound(this._b); }
-    
-        this._ok = rgb.ok;
-        this._tc_id = tinyCounter++;
-    }
-    
-    tinycolor.prototype = {
-        isDark: function() {
-            return this.getBrightness() < 128;
-        },
-        isLight: function() {
-            return !this.isDark();
-        },
-        isValid: function() {
-            return this._ok;
-        },
-        getOriginalInput: function() {
-          return this._originalInput;
-        },
-        getFormat: function() {
-            return this._format;
-        },
-        getAlpha: function() {
-            return this._a;
-        },
-        getBrightness: function() {
-            //http://www.w3.org/TR/AERT#color-contrast
-            var rgb = this.toRgb();
-            return (rgb.r * 299 + rgb.g * 587 + rgb.b * 114) / 1000;
-        },
-        getLuminance: function() {
-            //http://www.w3.org/TR/2008/REC-WCAG20-20081211/#relativeluminancedef
-            var rgb = this.toRgb();
-            var RsRGB, GsRGB, BsRGB, R, G, B;
-            RsRGB = rgb.r/255;
-            GsRGB = rgb.g/255;
-            BsRGB = rgb.b/255;
-    
-            if (RsRGB <= 0.03928) {R = RsRGB / 12.92;} else {R = Math.pow(((RsRGB + 0.055) / 1.055), 2.4);}
-            if (GsRGB <= 0.03928) {G = GsRGB / 12.92;} else {G = Math.pow(((GsRGB + 0.055) / 1.055), 2.4);}
-            if (BsRGB <= 0.03928) {B = BsRGB / 12.92;} else {B = Math.pow(((BsRGB + 0.055) / 1.055), 2.4);}
-            return (0.2126 * R) + (0.7152 * G) + (0.0722 * B);
-        },
-        setAlpha: function(value) {
-            this._a = boundAlpha(value);
-            this._roundA = mathRound(100*this._a) / 100;
-            return this;
-        },
-        toHsv: function() {
-            var hsv = rgbToHsv(this._r, this._g, this._b);
-            return { h: hsv.h * 360, s: hsv.s, v: hsv.v, a: this._a };
-        },
-        toHsvString: function() {
-            var hsv = rgbToHsv(this._r, this._g, this._b);
-            var h = mathRound(hsv.h * 360), s = mathRound(hsv.s * 100), v = mathRound(hsv.v * 100);
-            return (this._a == 1) ?
-              "hsv("  + h + ", " + s + "%, " + v + "%)" :
-              "hsva(" + h + ", " + s + "%, " + v + "%, "+ this._roundA + ")";
-        },
-        toHsl: function() {
-            var hsl = rgbToHsl(this._r, this._g, this._b);
-            return { h: hsl.h * 360, s: hsl.s, l: hsl.l, a: this._a };
-        },
-        toHslString: function() {
-            var hsl = rgbToHsl(this._r, this._g, this._b);
-            var h = mathRound(hsl.h * 360), s = mathRound(hsl.s * 100), l = mathRound(hsl.l * 100);
-            return (this._a == 1) ?
-              "hsl("  + h + ", " + s + "%, " + l + "%)" :
-              "hsla(" + h + ", " + s + "%, " + l + "%, "+ this._roundA + ")";
-        },
-        toHex: function(allow3Char) {
-            return rgbToHex(this._r, this._g, this._b, allow3Char);
-        },
-        toHexString: function(allow3Char) {
-            return '#' + this.toHex(allow3Char);
-        },
-        toHex8: function(allow4Char) {
-            return rgbaToHex(this._r, this._g, this._b, this._a, allow4Char);
-        },
-        toHex8String: function(allow4Char) {
-            return '#' + this.toHex8(allow4Char);
-        },
-        toRgb: function() {
-            return { r: mathRound(this._r), g: mathRound(this._g), b: mathRound(this._b), a: this._a };
-        },
-        toRgbString: function() {
-            return (this._a == 1) ?
-              "rgb("  + mathRound(this._r) + ", " + mathRound(this._g) + ", " + mathRound(this._b) + ")" :
-              "rgba(" + mathRound(this._r) + ", " + mathRound(this._g) + ", " + mathRound(this._b) + ", " + this._roundA + ")";
-        },
-        toPercentageRgb: function() {
-            return { r: mathRound(bound01(this._r, 255) * 100) + "%", g: mathRound(bound01(this._g, 255) * 100) + "%", b: mathRound(bound01(this._b, 255) * 100) + "%", a: this._a };
-        },
-        toPercentageRgbString: function() {
-            return (this._a == 1) ?
-              "rgb("  + mathRound(bound01(this._r, 255) * 100) + "%, " + mathRound(bound01(this._g, 255) * 100) + "%, " + mathRound(bound01(this._b, 255) * 100) + "%)" :
-              "rgba(" + mathRound(bound01(this._r, 255) * 100) + "%, " + mathRound(bound01(this._g, 255) * 100) + "%, " + mathRound(bound01(this._b, 255) * 100) + "%, " + this._roundA + ")";
-        },
-        toName: function() {
-            if (this._a === 0) {
-                return "transparent";
-            }
-    
-            if (this._a < 1) {
-                return false;
-            }
-    
-            return hexNames[rgbToHex(this._r, this._g, this._b, true)] || false;
-        },
-        toFilter: function(secondColor) {
-            var hex8String = '#' + rgbaToArgbHex(this._r, this._g, this._b, this._a);
-            var secondHex8String = hex8String;
-            var gradientType = this._gradientType ? "GradientType = 1, " : "";
-    
-            if (secondColor) {
-                var s = tinycolor(secondColor);
-                secondHex8String = '#' + rgbaToArgbHex(s._r, s._g, s._b, s._a);
-            }
-    
-            return "progid:DXImageTransform.Microsoft.gradient("+gradientType+"startColorstr="+hex8String+",endColorstr="+secondHex8String+")";
-        },
-        toString: function(format) {
-            var formatSet = !!format;
-            format = format || this._format;
-    
-            var formattedString = false;
-            var hasAlpha = this._a < 1 && this._a >= 0;
-            var needsAlphaFormat = !formatSet && hasAlpha && (format === "hex" || format === "hex6" || format === "hex3" || format === "hex4" || format === "hex8" || format === "name");
-    
-            if (needsAlphaFormat) {
-                // Special case for "transparent", all other non-alpha formats
-                // will return rgba when there is transparency.
-                if (format === "name" && this._a === 0) {
-                    return this.toName();
-                }
-                return this.toRgbString();
-            }
-            if (format === "rgb") {
-                formattedString = this.toRgbString();
-            }
-            if (format === "prgb") {
-                formattedString = this.toPercentageRgbString();
-            }
-            if (format === "hex" || format === "hex6") {
-                formattedString = this.toHexString();
-            }
-            if (format === "hex3") {
-                formattedString = this.toHexString(true);
-            }
-            if (format === "hex4") {
-                formattedString = this.toHex8String(true);
-            }
-            if (format === "hex8") {
-                formattedString = this.toHex8String();
-            }
-            if (format === "name") {
-                formattedString = this.toName();
-            }
-            if (format === "hsl") {
-                formattedString = this.toHslString();
-            }
-            if (format === "hsv") {
-                formattedString = this.toHsvString();
-            }
-    
-            return formattedString || this.toHexString();
-        },
-        clone: function() {
-            return tinycolor(this.toString());
-        },
-    
-        _applyModification: function(fn, args) {
-            var color = fn.apply(null, [this].concat([].slice.call(args)));
-            this._r = color._r;
-            this._g = color._g;
-            this._b = color._b;
-            this.setAlpha(color._a);
-            return this;
-        },
-        lighten: function() {
-            return this._applyModification(lighten, arguments);
-        },
-        brighten: function() {
-            return this._applyModification(brighten, arguments);
-        },
-        darken: function() {
-            return this._applyModification(darken, arguments);
-        },
-        desaturate: function() {
-            return this._applyModification(desaturate, arguments);
-        },
-        saturate: function() {
-            return this._applyModification(saturate, arguments);
-        },
-        greyscale: function() {
-            return this._applyModification(greyscale, arguments);
-        },
-        spin: function() {
-            return this._applyModification(spin, arguments);
-        },
-    
-        _applyCombination: function(fn, args) {
-            return fn.apply(null, [this].concat([].slice.call(args)));
-        },
-        analogous: function() {
-            return this._applyCombination(analogous, arguments);
-        },
-        complement: function() {
-            return this._applyCombination(complement, arguments);
-        },
-        monochromatic: function() {
-            return this._applyCombination(monochromatic, arguments);
-        },
-        splitcomplement: function() {
-            return this._applyCombination(splitcomplement, arguments);
-        },
-        triad: function() {
-            return this._applyCombination(triad, arguments);
-        },
-        tetrad: function() {
-            return this._applyCombination(tetrad, arguments);
-        }
-    };
-    
-    // If input is an object, force 1 into "1.0" to handle ratios properly
-    // String input requires "1.0" as input, so 1 will be treated as 1
-    tinycolor.fromRatio = function(color, opts) {
-        if (typeof color == "object") {
-            var newColor = {};
-            for (var i in color) {
-                if (color.hasOwnProperty(i)) {
-                    if (i === "a") {
-                        newColor[i] = color[i];
-                    }
-                    else {
-                        newColor[i] = convertToPercentage(color[i]);
-                    }
-                }
-            }
-            color = newColor;
-        }
-    
-        return tinycolor(color, opts);
-    };
-    
-    // Given a string or object, convert that input to RGB
-    // Possible string inputs:
-    //
-    //     "red"
-    //     "#f00" or "f00"
-    //     "#ff0000" or "ff0000"
-    //     "#ff000000" or "ff000000"
-    //     "rgb 255 0 0" or "rgb (255, 0, 0)"
-    //     "rgb 1.0 0 0" or "rgb (1, 0, 0)"
-    //     "rgba (255, 0, 0, 1)" or "rgba 255, 0, 0, 1"
-    //     "rgba (1.0, 0, 0, 1)" or "rgba 1.0, 0, 0, 1"
-    //     "hsl(0, 100%, 50%)" or "hsl 0 100% 50%"
-    //     "hsla(0, 100%, 50%, 1)" or "hsla 0 100% 50%, 1"
-    //     "hsv(0, 100%, 100%)" or "hsv 0 100% 100%"
-    //
-    function inputToRGB(color) {
-    
-        var rgb = { r: 0, g: 0, b: 0 };
-        var a = 1;
-        var s = null;
-        var v = null;
-        var l = null;
-        var ok = false;
-        var format = false;
-    
-        if (typeof color == "string") {
-            color = stringInputToObject(color);
-        }
-    
-        if (typeof color == "object") {
-            if (isValidCSSUnit(color.r) && isValidCSSUnit(color.g) && isValidCSSUnit(color.b)) {
-                rgb = rgbToRgb(color.r, color.g, color.b);
-                ok = true;
-                format = String(color.r).substr(-1) === "%" ? "prgb" : "rgb";
-            }
-            else if (isValidCSSUnit(color.h) && isValidCSSUnit(color.s) && isValidCSSUnit(color.v)) {
-                s = convertToPercentage(color.s);
-                v = convertToPercentage(color.v);
-                rgb = hsvToRgb(color.h, s, v);
-                ok = true;
-                format = "hsv";
-            }
-            else if (isValidCSSUnit(color.h) && isValidCSSUnit(color.s) && isValidCSSUnit(color.l)) {
-                s = convertToPercentage(color.s);
-                l = convertToPercentage(color.l);
-                rgb = hslToRgb(color.h, s, l);
-                ok = true;
-                format = "hsl";
-            }
-    
-            if (color.hasOwnProperty("a")) {
-                a = color.a;
-            }
-        }
-    
-        a = boundAlpha(a);
-    
-        return {
-            ok: ok,
-            format: color.format || format,
-            r: mathMin(255, mathMax(rgb.r, 0)),
-            g: mathMin(255, mathMax(rgb.g, 0)),
-            b: mathMin(255, mathMax(rgb.b, 0)),
-            a: a
-        };
-    }
-    
-    
-    // Conversion Functions
-    // --------------------
-    
-    // `rgbToHsl`, `rgbToHsv`, `hslToRgb`, `hsvToRgb` modified from:
-    // <http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript>
-    
-    // `rgbToRgb`
-    // Handle bounds / percentage checking to conform to CSS color spec
-    // <http://www.w3.org/TR/css3-color/>
-    // *Assumes:* r, g, b in [0, 255] or [0, 1]
-    // *Returns:* { r, g, b } in [0, 255]
-    function rgbToRgb(r, g, b){
-        return {
-            r: bound01(r, 255) * 255,
-            g: bound01(g, 255) * 255,
-            b: bound01(b, 255) * 255
-        };
-    }
-    
-    // `rgbToHsl`
-    // Converts an RGB color value to HSL.
-    // *Assumes:* r, g, and b are contained in [0, 255] or [0, 1]
-    // *Returns:* { h, s, l } in [0,1]
-    function rgbToHsl(r, g, b) {
-    
-        r = bound01(r, 255);
-        g = bound01(g, 255);
-        b = bound01(b, 255);
-    
-        var max = mathMax(r, g, b), min = mathMin(r, g, b);
-        var h, s, l = (max + min) / 2;
-    
-        if(max == min) {
-            h = s = 0; // achromatic
-        }
-        else {
-            var d = max - min;
-            s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
-            switch(max) {
-                case r: h = (g - b) / d + (g < b ? 6 : 0); break;
-                case g: h = (b - r) / d + 2; break;
-                case b: h = (r - g) / d + 4; break;
-            }
-    
-            h /= 6;
-        }
-    
-        return { h: h, s: s, l: l };
-    }
-    
-    // `hslToRgb`
-    // Converts an HSL color value to RGB.
-    // *Assumes:* h is contained in [0, 1] or [0, 360] and s and l are contained [0, 1] or [0, 100]
-    // *Returns:* { r, g, b } in the set [0, 255]
-    function hslToRgb(h, s, l) {
-        var r, g, b;
-    
-        h = bound01(h, 360);
-        s = bound01(s, 100);
-        l = bound01(l, 100);
-    
-        function hue2rgb(p, q, t) {
-            if(t < 0) t += 1;
-            if(t > 1) t -= 1;
-            if(t < 1/6) return p + (q - p) * 6 * t;
-            if(t < 1/2) return q;
-            if(t < 2/3) return p + (q - p) * (2/3 - t) * 6;
-            return p;
-        }
-    
-        if(s === 0) {
-            r = g = b = l; // achromatic
-        }
-        else {
-            var q = l < 0.5 ? l * (1 + s) : l + s - l * s;
-            var p = 2 * l - q;
-            r = hue2rgb(p, q, h + 1/3);
-            g = hue2rgb(p, q, h);
-            b = hue2rgb(p, q, h - 1/3);
-        }
-    
-        return { r: r * 255, g: g * 255, b: b * 255 };
-    }
-    
-    // `rgbToHsv`
-    // Converts an RGB color value to HSV
-    // *Assumes:* r, g, and b are contained in the set [0, 255] or [0, 1]
-    // *Returns:* { h, s, v } in [0,1]
-    function rgbToHsv(r, g, b) {
-    
-        r = bound01(r, 255);
-        g = bound01(g, 255);
-        b = bound01(b, 255);
-    
-        var max = mathMax(r, g, b), min = mathMin(r, g, b);
-        var h, s, v = max;
-    
-        var d = max - min;
-        s = max === 0 ? 0 : d / max;
-    
-        if(max == min) {
-            h = 0; // achromatic
-        }
-        else {
-            switch(max) {
-                case r: h = (g - b) / d + (g < b ? 6 : 0); break;
-                case g: h = (b - r) / d + 2; break;
-                case b: h = (r - g) / d + 4; break;
-            }
-            h /= 6;
-        }
-        return { h: h, s: s, v: v };
-    }
-    
-    // `hsvToRgb`
-    // Converts an HSV color value to RGB.
-    // *Assumes:* h is contained in [0, 1] or [0, 360] and s and v are contained in [0, 1] or [0, 100]
-    // *Returns:* { r, g, b } in the set [0, 255]
-     function hsvToRgb(h, s, v) {
-    
-        h = bound01(h, 360) * 6;
-        s = bound01(s, 100);
-        v = bound01(v, 100);
-    
-        var i = Math.floor(h),
-            f = h - i,
-            p = v * (1 - s),
-            q = v * (1 - f * s),
-            t = v * (1 - (1 - f) * s),
-            mod = i % 6,
-            r = [v, q, p, p, t, v][mod],
-            g = [t, v, v, q, p, p][mod],
-            b = [p, p, t, v, v, q][mod];
-    
-        return { r: r * 255, g: g * 255, b: b * 255 };
-    }
-    
-    // `rgbToHex`
-    // Converts an RGB color to hex
-    // Assumes r, g, and b are contained in the set [0, 255]
-    // Returns a 3 or 6 character hex
-    function rgbToHex(r, g, b, allow3Char) {
-    
-        var hex = [
-            pad2(mathRound(r).toString(16)),
-            pad2(mathRound(g).toString(16)),
-            pad2(mathRound(b).toString(16))
-        ];
-    
-        // Return a 3 character hex if possible
-        if (allow3Char && hex[0].charAt(0) == hex[0].charAt(1) && hex[1].charAt(0) == hex[1].charAt(1) && hex[2].charAt(0) == hex[2].charAt(1)) {
-            return hex[0].charAt(0) + hex[1].charAt(0) + hex[2].charAt(0);
-        }
-    
-        return hex.join("");
-    }
-    
-    // `rgbaToHex`
-    // Converts an RGBA color plus alpha transparency to hex
-    // Assumes r, g, b are contained in the set [0, 255] and
-    // a in [0, 1]. Returns a 4 or 8 character rgba hex
-    function rgbaToHex(r, g, b, a, allow4Char) {
-    
-        var hex = [
-            pad2(mathRound(r).toString(16)),
-            pad2(mathRound(g).toString(16)),
-            pad2(mathRound(b).toString(16)),
-            pad2(convertDecimalToHex(a))
-        ];
-    
-        // Return a 4 character hex if possible
-        if (allow4Char && hex[0].charAt(0) == hex[0].charAt(1) && hex[1].charAt(0) == hex[1].charAt(1) && hex[2].charAt(0) == hex[2].charAt(1) && hex[3].charAt(0) == hex[3].charAt(1)) {
-            return hex[0].charAt(0) + hex[1].charAt(0) + hex[2].charAt(0) + hex[3].charAt(0);
-        }
-    
-        return hex.join("");
-    }
-    
-    // `rgbaToArgbHex`
-    // Converts an RGBA color to an ARGB Hex8 string
-    // Rarely used, but required for "toFilter()"
-    function rgbaToArgbHex(r, g, b, a) {
-    
-        var hex = [
-            pad2(convertDecimalToHex(a)),
-            pad2(mathRound(r).toString(16)),
-            pad2(mathRound(g).toString(16)),
-            pad2(mathRound(b).toString(16))
-        ];
-    
-        return hex.join("");
-    }
-    
-    // `equals`
-    // Can be called with any tinycolor input
-    tinycolor.equals = function (color1, color2) {
-        if (!color1 || !color2) { return false; }
-        return tinycolor(color1).toRgbString() == tinycolor(color2).toRgbString();
-    };
-    
-    tinycolor.random = function() {
-        return tinycolor.fromRatio({
-            r: mathRandom(),
-            g: mathRandom(),
-            b: mathRandom()
-        });
-    };
-    
-    
-    // Modification Functions
-    // ----------------------
-    // Thanks to less.js for some of the basics here
-    // <https://github.com/cloudhead/less.js/blob/master/lib/less/functions.js>
-    
-    function desaturate(color, amount) {
-        amount = (amount === 0) ? 0 : (amount || 10);
-        var hsl = tinycolor(color).toHsl();
-        hsl.s -= amount / 100;
-        hsl.s = clamp01(hsl.s);
-        return tinycolor(hsl);
-    }
-    
-    function saturate(color, amount) {
-        amount = (amount === 0) ? 0 : (amount || 10);
-        var hsl = tinycolor(color).toHsl();
-        hsl.s += amount / 100;
-        hsl.s = clamp01(hsl.s);
-        return tinycolor(hsl);
-    }
-    
-    function greyscale(color) {
-        return tinycolor(color).desaturate(100);
-    }
-    
-    function lighten (color, amount) {
-        amount = (amount === 0) ? 0 : (amount || 10);
-        var hsl = tinycolor(color).toHsl();
-        hsl.l += amount / 100;
-        hsl.l = clamp01(hsl.l);
-        return tinycolor(hsl);
-    }
-    
-    function brighten(color, amount) {
-        amount = (amount === 0) ? 0 : (amount || 10);
-        var rgb = tinycolor(color).toRgb();
-        rgb.r = mathMax(0, mathMin(255, rgb.r - mathRound(255 * - (amount / 100))));
-        rgb.g = mathMax(0, mathMin(255, rgb.g - mathRound(255 * - (amount / 100))));
-        rgb.b = mathMax(0, mathMin(255, rgb.b - mathRound(255 * - (amount / 100))));
-        return tinycolor(rgb);
-    }
-    
-    function darken (color, amount) {
-        amount = (amount === 0) ? 0 : (amount || 10);
-        var hsl = tinycolor(color).toHsl();
-        hsl.l -= amount / 100;
-        hsl.l = clamp01(hsl.l);
-        return tinycolor(hsl);
-    }
-    
-    // Spin takes a positive or negative amount within [-360, 360] indicating the change of hue.
-    // Values outside of this range will be wrapped into this range.
-    function spin(color, amount) {
-        var hsl = tinycolor(color).toHsl();
-        var hue = (hsl.h + amount) % 360;
-        hsl.h = hue < 0 ? 360 + hue : hue;
-        return tinycolor(hsl);
-    }
-    
-    // Combination Functions
-    // ---------------------
-    // Thanks to jQuery xColor for some of the ideas behind these
-    // <https://github.com/infusion/jQuery-xcolor/blob/master/jquery.xcolor.js>
-    
-    function complement(color) {
-        var hsl = tinycolor(color).toHsl();
-        hsl.h = (hsl.h + 180) % 360;
-        return tinycolor(hsl);
-    }
-    
-    function triad(color) {
-        var hsl = tinycolor(color).toHsl();
-        var h = hsl.h;
-        return [
-            tinycolor(color),
-            tinycolor({ h: (h + 120) % 360, s: hsl.s, l: hsl.l }),
-            tinycolor({ h: (h + 240) % 360, s: hsl.s, l: hsl.l })
-        ];
-    }
-    
-    function tetrad(color) {
-        var hsl = tinycolor(color).toHsl();
-        var h = hsl.h;
-        return [
-            tinycolor(color),
-            tinycolor({ h: (h + 90) % 360, s: hsl.s, l: hsl.l }),
-            tinycolor({ h: (h + 180) % 360, s: hsl.s, l: hsl.l }),
-            tinycolor({ h: (h + 270) % 360, s: hsl.s, l: hsl.l })
-        ];
-    }
-    
-    function splitcomplement(color) {
-        var hsl = tinycolor(color).toHsl();
-        var h = hsl.h;
-        return [
-            tinycolor(color),
-            tinycolor({ h: (h + 72) % 360, s: hsl.s, l: hsl.l}),
-            tinycolor({ h: (h + 216) % 360, s: hsl.s, l: hsl.l})
-        ];
-    }
-    
-    function analogous(color, results, slices) {
-        results = results || 6;
-        slices = slices || 30;
-    
-        var hsl = tinycolor(color).toHsl();
-        var part = 360 / slices;
-        var ret = [tinycolor(color)];
-    
-        for (hsl.h = ((hsl.h - (part * results >> 1)) + 720) % 360; --results; ) {
-            hsl.h = (hsl.h + part) % 360;
-            ret.push(tinycolor(hsl));
-        }
-        return ret;
-    }
-    
-    function monochromatic(color, results) {
-        results = results || 6;
-        var hsv = tinycolor(color).toHsv();
-        var h = hsv.h, s = hsv.s, v = hsv.v;
-        var ret = [];
-        var modification = 1 / results;
-    
-        while (results--) {
-            ret.push(tinycolor({ h: h, s: s, v: v}));
-            v = (v + modification) % 1;
-        }
-    
-        return ret;
-    }
-    
-    // Utility Functions
-    // ---------------------
-    
-    tinycolor.mix = function(color1, color2, amount) {
-        amount = (amount === 0) ? 0 : (amount || 50);
-    
-        var rgb1 = tinycolor(color1).toRgb();
-        var rgb2 = tinycolor(color2).toRgb();
-    
-        var p = amount / 100;
-    
-        var rgba = {
-            r: ((rgb2.r - rgb1.r) * p) + rgb1.r,
-            g: ((rgb2.g - rgb1.g) * p) + rgb1.g,
-            b: ((rgb2.b - rgb1.b) * p) + rgb1.b,
-            a: ((rgb2.a - rgb1.a) * p) + rgb1.a
-        };
-    
-        return tinycolor(rgba);
-    };
-    
-    
-    // Readability Functions
-    // ---------------------
-    // <http://www.w3.org/TR/2008/REC-WCAG20-20081211/#contrast-ratiodef (WCAG Version 2)
-    
-    // `contrast`
-    // Analyze the 2 colors and returns the color contrast defined by (WCAG Version 2)
-    tinycolor.readability = function(color1, color2) {
-        var c1 = tinycolor(color1);
-        var c2 = tinycolor(color2);
-        return (Math.max(c1.getLuminance(),c2.getLuminance())+0.05) / (Math.min(c1.getLuminance(),c2.getLuminance())+0.05);
-    };
-    
-    // `isReadable`
-    // Ensure that foreground and background color combinations meet WCAG2 guidelines.
-    // The third argument is an optional Object.
-    //      the 'level' property states 'AA' or 'AAA' - if missing or invalid, it defaults to 'AA';
-    //      the 'size' property states 'large' or 'small' - if missing or invalid, it defaults to 'small'.
-    // If the entire object is absent, isReadable defaults to {level:"AA",size:"small"}.
-    
-    // *Example*
-    //    tinycolor.isReadable("#000", "#111") => false
-    //    tinycolor.isReadable("#000", "#111",{level:"AA",size:"large"}) => false
-    tinycolor.isReadable = function(color1, color2, wcag2) {
-        var readability = tinycolor.readability(color1, color2);
-        var wcag2Parms, out;
-    
-        out = false;
-    
-        wcag2Parms = validateWCAG2Parms(wcag2);
-        switch (wcag2Parms.level + wcag2Parms.size) {
-            case "AAsmall":
-            case "AAAlarge":
-                out = readability >= 4.5;
-                break;
-            case "AAlarge":
-                out = readability >= 3;
-                break;
-            case "AAAsmall":
-                out = readability >= 7;
-                break;
-        }
-        return out;
-    
-    };
-    
-    // `mostReadable`
-    // Given a base color and a list of possible foreground or background
-    // colors for that base, returns the most readable color.
-    // Optionally returns Black or White if the most readable color is unreadable.
-    // *Example*
-    //    tinycolor.mostReadable(tinycolor.mostReadable("#123", ["#124", "#125"],{includeFallbackColors:false}).toHexString(); // "#112255"
-    //    tinycolor.mostReadable(tinycolor.mostReadable("#123", ["#124", "#125"],{includeFallbackColors:true}).toHexString();  // "#ffffff"
-    //    tinycolor.mostReadable("#a8015a", ["#faf3f3"],{includeFallbackColors:true,level:"AAA",size:"large"}).toHexString(); // "#faf3f3"
-    //    tinycolor.mostReadable("#a8015a", ["#faf3f3"],{includeFallbackColors:true,level:"AAA",size:"small"}).toHexString(); // "#ffffff"
-    tinycolor.mostReadable = function(baseColor, colorList, args) {
-        var bestColor = null;
-        var bestScore = 0;
-        var readability;
-        var includeFallbackColors, level, size ;
-        args = args || {};
-        includeFallbackColors = args.includeFallbackColors ;
-        level = args.level;
-        size = args.size;
-    
-        for (var i= 0; i < colorList.length ; i++) {
-            readability = tinycolor.readability(baseColor, colorList[i]);
-            if (readability > bestScore) {
-                bestScore = readability;
-                bestColor = tinycolor(colorList[i]);
-            }
-        }
-    
-        if (tinycolor.isReadable(baseColor, bestColor, {"level":level,"size":size}) || !includeFallbackColors) {
-            return bestColor;
-        }
-        else {
-            args.includeFallbackColors=false;
-            return tinycolor.mostReadable(baseColor,["#fff", "#000"],args);
-        }
-    };
-    
-    
-    // Big List of Colors
-    // ------------------
-    // <http://www.w3.org/TR/css3-color/#svg-color>
-    var names = tinycolor.names = {
-        aliceblue: "f0f8ff",
-        antiquewhite: "faebd7",
-        aqua: "0ff",
-        aquamarine: "7fffd4",
-        azure: "f0ffff",
-        beige: "f5f5dc",
-        bisque: "ffe4c4",
-        black: "000",
-        blanchedalmond: "ffebcd",
-        blue: "00f",
-        blueviolet: "8a2be2",
-        brown: "a52a2a",
-        burlywood: "deb887",
-        burntsienna: "ea7e5d",
-        cadetblue: "5f9ea0",
-        chartreuse: "7fff00",
-        chocolate: "d2691e",
-        coral: "ff7f50",
-        cornflowerblue: "6495ed",
-        cornsilk: "fff8dc",
-        crimson: "dc143c",
-        cyan: "0ff",
-        darkblue: "00008b",
-        darkcyan: "008b8b",
-        darkgoldenrod: "b8860b",
-        darkgray: "a9a9a9",
-        darkgreen: "006400",
-        darkgrey: "a9a9a9",
-        darkkhaki: "bdb76b",
-        darkmagenta: "8b008b",
-        darkolivegreen: "556b2f",
-        darkorange: "ff8c00",
-        darkorchid: "9932cc",
-        darkred: "8b0000",
-        darksalmon: "e9967a",
-        darkseagreen: "8fbc8f",
-        darkslateblue: "483d8b",
-        darkslategray: "2f4f4f",
-        darkslategrey: "2f4f4f",
-        darkturquoise: "00ced1",
-        darkviolet: "9400d3",
-        deeppink: "ff1493",
-        deepskyblue: "00bfff",
-        dimgray: "696969",
-        dimgrey: "696969",
-        dodgerblue: "1e90ff",
-        firebrick: "b22222",
-        floralwhite: "fffaf0",
-        forestgreen: "228b22",
-        fuchsia: "f0f",
-        gainsboro: "dcdcdc",
-        ghostwhite: "f8f8ff",
-        gold: "ffd700",
-        goldenrod: "daa520",
-        gray: "808080",
-        green: "008000",
-        greenyellow: "adff2f",
-        grey: "808080",
-        honeydew: "f0fff0",
-        hotpink: "ff69b4",
-        indianred: "cd5c5c",
-        indigo: "4b0082",
-        ivory: "fffff0",
-        khaki: "f0e68c",
-        lavender: "e6e6fa",
-        lavenderblush: "fff0f5",
-        lawngreen: "7cfc00",
-        lemonchiffon: "fffacd",
-        lightblue: "add8e6",
-        lightcoral: "f08080",
-        lightcyan: "e0ffff",
-        lightgoldenrodyellow: "fafad2",
-        lightgray: "d3d3d3",
-        lightgreen: "90ee90",
-        lightgrey: "d3d3d3",
-        lightpink: "ffb6c1",
-        lightsalmon: "ffa07a",
-        lightseagreen: "20b2aa",
-        lightskyblue: "87cefa",
-        lightslategray: "789",
-        lightslategrey: "789",
-        lightsteelblue: "b0c4de",
-        lightyellow: "ffffe0",
-        lime: "0f0",
-        limegreen: "32cd32",
-        linen: "faf0e6",
-        magenta: "f0f",
-        maroon: "800000",
-        mediumaquamarine: "66cdaa",
-        mediumblue: "0000cd",
-        mediumorchid: "ba55d3",
-        mediumpurple: "9370db",
-        mediumseagreen: "3cb371",
-        mediumslateblue: "7b68ee",
-        mediumspringgreen: "00fa9a",
-        mediumturquoise: "48d1cc",
-        mediumvioletred: "c71585",
-        midnightblue: "191970",
-        mintcream: "f5fffa",
-        mistyrose: "ffe4e1",
-        moccasin: "ffe4b5",
-        navajowhite: "ffdead",
-        navy: "000080",
-        oldlace: "fdf5e6",
-        olive: "808000",
-        olivedrab: "6b8e23",
-        orange: "ffa500",
-        orangered: "ff4500",
-        orchid: "da70d6",
-        palegoldenrod: "eee8aa",
-        palegreen: "98fb98",
-        paleturquoise: "afeeee",
-        palevioletred: "db7093",
-        papayawhip: "ffefd5",
-        peachpuff: "ffdab9",
-        peru: "cd853f",
-        pink: "ffc0cb",
-        plum: "dda0dd",
-        powderblue: "b0e0e6",
-        purple: "800080",
-        rebeccapurple: "663399",
-        red: "f00",
-        rosybrown: "bc8f8f",
-        royalblue: "4169e1",
-        saddlebrown: "8b4513",
-        salmon: "fa8072",
-        sandybrown: "f4a460",
-        seagreen: "2e8b57",
-        seashell: "fff5ee",
-        sienna: "a0522d",
-        silver: "c0c0c0",
-        skyblue: "87ceeb",
-        slateblue: "6a5acd",
-        slategray: "708090",
-        slategrey: "708090",
-        snow: "fffafa",
-        springgreen: "00ff7f",
-        steelblue: "4682b4",
-        tan: "d2b48c",
-        teal: "008080",
-        thistle: "d8bfd8",
-        tomato: "ff6347",
-        turquoise: "40e0d0",
-        violet: "ee82ee",
-        wheat: "f5deb3",
-        white: "fff",
-        whitesmoke: "f5f5f5",
-        yellow: "ff0",
-        yellowgreen: "9acd32"
-    };
-    
-    // Make it easy to access colors via `hexNames[hex]`
-    var hexNames = tinycolor.hexNames = flip(names);
-    
-    
-    // Utilities
-    // ---------
-    
-    // `{ 'name1': 'val1' }` becomes `{ 'val1': 'name1' }`
-    function flip(o) {
-        var flipped = { };
-        for (var i in o) {
-            if (o.hasOwnProperty(i)) {
-                flipped[o[i]] = i;
-            }
-        }
-        return flipped;
-    }
-    
-    // Return a valid alpha value [0,1] with all invalid values being set to 1
-    function boundAlpha(a) {
-        a = parseFloat(a);
-    
-        if (isNaN(a) || a < 0 || a > 1) {
-            a = 1;
-        }
-    
-        return a;
-    }
-    
-    // Take input from [0, n] and return it as [0, 1]
-    function bound01(n, max) {
-        if (isOnePointZero(n)) { n = "100%"; }
-    
-        var processPercent = isPercentage(n);
-        n = mathMin(max, mathMax(0, parseFloat(n)));
-    
-        // Automatically convert percentage into number
-        if (processPercent) {
-            n = parseInt(n * max, 10) / 100;
-        }
-    
-        // Handle floating point rounding errors
-        if ((Math.abs(n - max) < 0.000001)) {
-            return 1;
-        }
-    
-        // Convert into [0, 1] range if it isn't already
-        return (n % max) / parseFloat(max);
-    }
-    
-    // Force a number between 0 and 1
-    function clamp01(val) {
-        return mathMin(1, mathMax(0, val));
-    }
-    
-    // Parse a base-16 hex value into a base-10 integer
-    function parseIntFromHex(val) {
-        return parseInt(val, 16);
-    }
-    
-    // Need to handle 1.0 as 100%, since once it is a number, there is no difference between it and 1
-    // <http://stackoverflow.com/questions/7422072/javascript-how-to-detect-number-as-a-decimal-including-1-0>
-    function isOnePointZero(n) {
-        return typeof n == "string" && n.indexOf('.') != -1 && parseFloat(n) === 1;
-    }
-    
-    // Check to see if string passed in is a percentage
-    function isPercentage(n) {
-        return typeof n === "string" && n.indexOf('%') != -1;
-    }
-    
-    // Force a hex value to have 2 characters
-    function pad2(c) {
-        return c.length == 1 ? '0' + c : '' + c;
-    }
-    
-    // Replace a decimal with it's percentage value
-    function convertToPercentage(n) {
-        if (n <= 1) {
-            n = (n * 100) + "%";
-        }
-    
-        return n;
-    }
-    
-    // Converts a decimal to a hex value
-    function convertDecimalToHex(d) {
-        return Math.round(parseFloat(d) * 255).toString(16);
-    }
-    // Converts a hex value to a decimal
-    function convertHexToDecimal(h) {
-        return (parseIntFromHex(h) / 255);
-    }
-    
-    var matchers = (function() {
-    
-        // <http://www.w3.org/TR/css3-values/#integers>
-        var CSS_INTEGER = "[-\\+]?\\d+%?";
-    
-        // <http://www.w3.org/TR/css3-values/#number-value>
-        var CSS_NUMBER = "[-\\+]?\\d*\\.\\d+%?";
-    
-        // Allow positive/negative integer/number.  Don't capture the either/or, just the entire outcome.
-        var CSS_UNIT = "(?:" + CSS_NUMBER + ")|(?:" + CSS_INTEGER + ")";
-    
-        // Actual matching.
-        // Parentheses and commas are optional, but not required.
-        // Whitespace can take the place of commas or opening paren
-        var PERMISSIVE_MATCH3 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
-        var PERMISSIVE_MATCH4 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
-    
-        return {
-            CSS_UNIT: new RegExp(CSS_UNIT),
-            rgb: new RegExp("rgb" + PERMISSIVE_MATCH3),
-            rgba: new RegExp("rgba" + PERMISSIVE_MATCH4),
-            hsl: new RegExp("hsl" + PERMISSIVE_MATCH3),
-            hsla: new RegExp("hsla" + PERMISSIVE_MATCH4),
-            hsv: new RegExp("hsv" + PERMISSIVE_MATCH3),
-            hsva: new RegExp("hsva" + PERMISSIVE_MATCH4),
-            hex3: /^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
-            hex6: /^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,
-            hex4: /^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
-            hex8: /^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/
-        };
-    })();
-    
-    // `isValidCSSUnit`
-    // Take in a single string / number and check to see if it looks like a CSS unit
-    // (see `matchers` above for definition).
-    function isValidCSSUnit(color) {
-        return !!matchers.CSS_UNIT.exec(color);
-    }
-    
-    // `stringInputToObject`
-    // Permissive string parsing.  Take in a number of formats, and output an object
-    // based on detected format.  Returns `{ r, g, b }` or `{ h, s, l }` or `{ h, s, v}`
-    function stringInputToObject(color) {
-    
-        color = color.replace(trimLeft,'').replace(trimRight, '').toLowerCase();
-        var named = false;
-        if (names[color]) {
-            color = names[color];
-            named = true;
-        }
-        else if (color == 'transparent') {
-            return { r: 0, g: 0, b: 0, a: 0, format: "name" };
-        }
-    
-        // Try to match string input using regular expressions.
-        // Keep most of the number bounding out of this function - don't worry about [0,1] or [0,100] or [0,360]
-        // Just return an object and let the conversion functions handle that.
-        // This way the result will be the same whether the tinycolor is initialized with string or object.
-        var match;
-        if ((match = matchers.rgb.exec(color))) {
-            return { r: match[1], g: match[2], b: match[3] };
-        }
-        if ((match = matchers.rgba.exec(color))) {
-            return { r: match[1], g: match[2], b: match[3], a: match[4] };
-        }
-        if ((match = matchers.hsl.exec(color))) {
-            return { h: match[1], s: match[2], l: match[3] };
-        }
-        if ((match = matchers.hsla.exec(color))) {
-            return { h: match[1], s: match[2], l: match[3], a: match[4] };
-        }
-        if ((match = matchers.hsv.exec(color))) {
-            return { h: match[1], s: match[2], v: match[3] };
-        }
-        if ((match = matchers.hsva.exec(color))) {
-            return { h: match[1], s: match[2], v: match[3], a: match[4] };
-        }
-        if ((match = matchers.hex8.exec(color))) {
-            return {
-                r: parseIntFromHex(match[1]),
-                g: parseIntFromHex(match[2]),
-                b: parseIntFromHex(match[3]),
-                a: convertHexToDecimal(match[4]),
-                format: named ? "name" : "hex8"
-            };
-        }
-        if ((match = matchers.hex6.exec(color))) {
-            return {
-                r: parseIntFromHex(match[1]),
-                g: parseIntFromHex(match[2]),
-                b: parseIntFromHex(match[3]),
-                format: named ? "name" : "hex"
-            };
-        }
-        if ((match = matchers.hex4.exec(color))) {
-            return {
-                r: parseIntFromHex(match[1] + '' + match[1]),
-                g: parseIntFromHex(match[2] + '' + match[2]),
-                b: parseIntFromHex(match[3] + '' + match[3]),
-                a: convertHexToDecimal(match[4] + '' + match[4]),
-                format: named ? "name" : "hex8"
-            };
-        }
-        if ((match = matchers.hex3.exec(color))) {
-            return {
-                r: parseIntFromHex(match[1] + '' + match[1]),
-                g: parseIntFromHex(match[2] + '' + match[2]),
-                b: parseIntFromHex(match[3] + '' + match[3]),
-                format: named ? "name" : "hex"
-            };
-        }
-    
-        return false;
-    }
-    
-    function validateWCAG2Parms(parms) {
-        // return valid WCAG2 parms for isReadable.
-        // If input parms are invalid, return {"level":"AA", "size":"small"}
-        var level, size;
-        parms = parms || {"level":"AA", "size":"small"};
-        level = (parms.level || "AA").toUpperCase();
-        size = (parms.size || "small").toLowerCase();
-        if (level !== "AA" && level !== "AAA") {
-            level = "AA";
-        }
-        if (size !== "small" && size !== "large") {
-            size = "small";
-        }
-        return {"level":level, "size":size};
-    }
-    
-    // Node: Export function
-    if (typeof module !== "undefined" && module.exports) {
-        module.exports = tinycolor;
-    }
-    // AMD/requirejs: Define the module
-    else if (typeof define === 'function' && define.amd) {
-        define(function () {return tinycolor;});
-    }
-    // Browser: Expose to window
-    else {
-        window.tinycolor = tinycolor;
-    }
-    
-    })(Math);
\ No newline at end of file
+function _typeof(obj) {
+	"@babel/helpers - typeof";
+  
+	return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
+	  return typeof obj;
+	} : function (obj) {
+	  return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
+	}, _typeof(obj);
+  }
+  
+  // https://github.com/bgrins/TinyColor
+  // Brian Grinstead, MIT License
+  
+  var trimLeft = /^\s+/;
+  var trimRight = /\s+$/;
+  function tinycolor(color, opts) {
+	color = color ? color : "";
+	opts = opts || {};
+  
+	// If input is already a tinycolor, return itself
+	if (color instanceof tinycolor) {
+	  return color;
+	}
+	// If we are called as a function, call using new instead
+	if (!(this instanceof tinycolor)) {
+	  return new tinycolor(color, opts);
+	}
+	var rgb = inputToRGB(color);
+	this._originalInput = color, this._r = rgb.r, this._g = rgb.g, this._b = rgb.b, this._a = rgb.a, this._roundA = Math.round(100 * this._a) / 100, this._format = opts.format || rgb.format;
+	this._gradientType = opts.gradientType;
+  
+	// Don't let the range of [0,255] come back in [0,1].
+	// Potentially lose a little bit of precision here, but will fix issues where
+	// .5 gets interpreted as half of the total, instead of half of 1
+	// If it was supposed to be 128, this was already taken care of by `inputToRgb`
+	if (this._r < 1) this._r = Math.round(this._r);
+	if (this._g < 1) this._g = Math.round(this._g);
+	if (this._b < 1) this._b = Math.round(this._b);
+	this._ok = rgb.ok;
+  }
+  tinycolor.prototype = {
+	isDark: function isDark() {
+	  return this.getBrightness() < 128;
+	},
+	isLight: function isLight() {
+	  return !this.isDark();
+	},
+	isValid: function isValid() {
+	  return this._ok;
+	},
+	getOriginalInput: function getOriginalInput() {
+	  return this._originalInput;
+	},
+	getFormat: function getFormat() {
+	  return this._format;
+	},
+	getAlpha: function getAlpha() {
+	  return this._a;
+	},
+	getBrightness: function getBrightness() {
+	  //http://www.w3.org/TR/AERT#color-contrast
+	  var rgb = this.toRgb();
+	  return (rgb.r * 299 + rgb.g * 587 + rgb.b * 114) / 1000;
+	},
+	getLuminance: function getLuminance() {
+	  //http://www.w3.org/TR/2008/REC-WCAG20-20081211/#relativeluminancedef
+	  var rgb = this.toRgb();
+	  var RsRGB, GsRGB, BsRGB, R, G, B;
+	  RsRGB = rgb.r / 255;
+	  GsRGB = rgb.g / 255;
+	  BsRGB = rgb.b / 255;
+	  if (RsRGB <= 0.03928) R = RsRGB / 12.92;else R = Math.pow((RsRGB + 0.055) / 1.055, 2.4);
+	  if (GsRGB <= 0.03928) G = GsRGB / 12.92;else G = Math.pow((GsRGB + 0.055) / 1.055, 2.4);
+	  if (BsRGB <= 0.03928) B = BsRGB / 12.92;else B = Math.pow((BsRGB + 0.055) / 1.055, 2.4);
+	  return 0.2126 * R + 0.7152 * G + 0.0722 * B;
+	},
+	setAlpha: function setAlpha(value) {
+	  this._a = boundAlpha(value);
+	  this._roundA = Math.round(100 * this._a) / 100;
+	  return this;
+	},
+	toHsv: function toHsv() {
+	  var hsv = rgbToHsv(this._r, this._g, this._b);
+	  return {
+		h: hsv.h * 360,
+		s: hsv.s,
+		v: hsv.v,
+		a: this._a
+	  };
+	},
+	toHsvString: function toHsvString() {
+	  var hsv = rgbToHsv(this._r, this._g, this._b);
+	  var h = Math.round(hsv.h * 360),
+		s = Math.round(hsv.s * 100),
+		v = Math.round(hsv.v * 100);
+	  return this._a == 1 ? "hsv(" + h + ", " + s + "%, " + v + "%)" : "hsva(" + h + ", " + s + "%, " + v + "%, " + this._roundA + ")";
+	},
+	toHsl: function toHsl() {
+	  var hsl = rgbToHsl(this._r, this._g, this._b);
+	  return {
+		h: hsl.h * 360,
+		s: hsl.s,
+		l: hsl.l,
+		a: this._a
+	  };
+	},
+	toHslString: function toHslString() {
+	  var hsl = rgbToHsl(this._r, this._g, this._b);
+	  var h = Math.round(hsl.h * 360),
+		s = Math.round(hsl.s * 100),
+		l = Math.round(hsl.l * 100);
+	  return this._a == 1 ? "hsl(" + h + ", " + s + "%, " + l + "%)" : "hsla(" + h + ", " + s + "%, " + l + "%, " + this._roundA + ")";
+	},
+	toHex: function toHex(allow3Char) {
+	  return rgbToHex(this._r, this._g, this._b, allow3Char);
+	},
+	toHexString: function toHexString(allow3Char) {
+	  return "#" + this.toHex(allow3Char);
+	},
+	toHex8: function toHex8(allow4Char) {
+	  return rgbaToHex(this._r, this._g, this._b, this._a, allow4Char);
+	},
+	toHex8String: function toHex8String(allow4Char) {
+	  return "#" + this.toHex8(allow4Char);
+	},
+	toRgb: function toRgb() {
+	  return {
+		r: Math.round(this._r),
+		g: Math.round(this._g),
+		b: Math.round(this._b),
+		a: this._a
+	  };
+	},
+	toRgbString: function toRgbString() {
+	  return this._a == 1 ? "rgb(" + Math.round(this._r) + ", " + Math.round(this._g) + ", " + Math.round(this._b) + ")" : "rgba(" + Math.round(this._r) + ", " + Math.round(this._g) + ", " + Math.round(this._b) + ", " + this._roundA + ")";
+	},
+	toPercentageRgb: function toPercentageRgb() {
+	  return {
+		r: Math.round(bound01(this._r, 255) * 100) + "%",
+		g: Math.round(bound01(this._g, 255) * 100) + "%",
+		b: Math.round(bound01(this._b, 255) * 100) + "%",
+		a: this._a
+	  };
+	},
+	toPercentageRgbString: function toPercentageRgbString() {
+	  return this._a == 1 ? "rgb(" + Math.round(bound01(this._r, 255) * 100) + "%, " + Math.round(bound01(this._g, 255) * 100) + "%, " + Math.round(bound01(this._b, 255) * 100) + "%)" : "rgba(" + Math.round(bound01(this._r, 255) * 100) + "%, " + Math.round(bound01(this._g, 255) * 100) + "%, " + Math.round(bound01(this._b, 255) * 100) + "%, " + this._roundA + ")";
+	},
+	toName: function toName() {
+	  if (this._a === 0) {
+		return "transparent";
+	  }
+	  if (this._a < 1) {
+		return false;
+	  }
+	  return hexNames[rgbToHex(this._r, this._g, this._b, true)] || false;
+	},
+	toFilter: function toFilter(secondColor) {
+	  var hex8String = "#" + rgbaToArgbHex(this._r, this._g, this._b, this._a);
+	  var secondHex8String = hex8String;
+	  var gradientType = this._gradientType ? "GradientType = 1, " : "";
+	  if (secondColor) {
+		var s = tinycolor(secondColor);
+		secondHex8String = "#" + rgbaToArgbHex(s._r, s._g, s._b, s._a);
+	  }
+	  return "progid:DXImageTransform.Microsoft.gradient(" + gradientType + "startColorstr=" + hex8String + ",endColorstr=" + secondHex8String + ")";
+	},
+	toString: function toString(format) {
+	  var formatSet = !!format;
+	  format = format || this._format;
+	  var formattedString = false;
+	  var hasAlpha = this._a < 1 && this._a >= 0;
+	  var needsAlphaFormat = !formatSet && hasAlpha && (format === "hex" || format === "hex6" || format === "hex3" || format === "hex4" || format === "hex8" || format === "name");
+	  if (needsAlphaFormat) {
+		// Special case for "transparent", all other non-alpha formats
+		// will return rgba when there is transparency.
+		if (format === "name" && this._a === 0) {
+		  return this.toName();
+		}
+		return this.toRgbString();
+	  }
+	  if (format === "rgb") {
+		formattedString = this.toRgbString();
+	  }
+	  if (format === "prgb") {
+		formattedString = this.toPercentageRgbString();
+	  }
+	  if (format === "hex" || format === "hex6") {
+		formattedString = this.toHexString();
+	  }
+	  if (format === "hex3") {
+		formattedString = this.toHexString(true);
+	  }
+	  if (format === "hex4") {
+		formattedString = this.toHex8String(true);
+	  }
+	  if (format === "hex8") {
+		formattedString = this.toHex8String();
+	  }
+	  if (format === "name") {
+		formattedString = this.toName();
+	  }
+	  if (format === "hsl") {
+		formattedString = this.toHslString();
+	  }
+	  if (format === "hsv") {
+		formattedString = this.toHsvString();
+	  }
+	  return formattedString || this.toHexString();
+	},
+	clone: function clone() {
+	  return tinycolor(this.toString());
+	},
+	_applyModification: function _applyModification(fn, args) {
+	  var color = fn.apply(null, [this].concat([].slice.call(args)));
+	  this._r = color._r;
+	  this._g = color._g;
+	  this._b = color._b;
+	  this.setAlpha(color._a);
+	  return this;
+	},
+	lighten: function lighten() {
+	  return this._applyModification(_lighten, arguments);
+	},
+	brighten: function brighten() {
+	  return this._applyModification(_brighten, arguments);
+	},
+	darken: function darken() {
+	  return this._applyModification(_darken, arguments);
+	},
+	desaturate: function desaturate() {
+	  return this._applyModification(_desaturate, arguments);
+	},
+	saturate: function saturate() {
+	  return this._applyModification(_saturate, arguments);
+	},
+	greyscale: function greyscale() {
+	  return this._applyModification(_greyscale, arguments);
+	},
+	spin: function spin() {
+	  return this._applyModification(_spin, arguments);
+	},
+	_applyCombination: function _applyCombination(fn, args) {
+	  return fn.apply(null, [this].concat([].slice.call(args)));
+	},
+	analogous: function analogous() {
+	  return this._applyCombination(_analogous, arguments);
+	},
+	complement: function complement() {
+	  return this._applyCombination(_complement, arguments);
+	},
+	monochromatic: function monochromatic() {
+	  return this._applyCombination(_monochromatic, arguments);
+	},
+	splitcomplement: function splitcomplement() {
+	  return this._applyCombination(_splitcomplement, arguments);
+	},
+	// Disabled until https://github.com/bgrins/TinyColor/issues/254
+	// polyad: function (number) {
+	//   return this._applyCombination(polyad, [number]);
+	// },
+	triad: function triad() {
+	  return this._applyCombination(polyad, [3]);
+	},
+	tetrad: function tetrad() {
+	  return this._applyCombination(polyad, [4]);
+	}
+  };
+  
+  // If input is an object, force 1 into "1.0" to handle ratios properly
+  // String input requires "1.0" as input, so 1 will be treated as 1
+  tinycolor.fromRatio = function (color, opts) {
+	if (_typeof(color) == "object") {
+	  var newColor = {};
+	  for (var i in color) {
+		if (color.hasOwnProperty(i)) {
+		  if (i === "a") {
+			newColor[i] = color[i];
+		  } else {
+			newColor[i] = convertToPercentage(color[i]);
+		  }
+		}
+	  }
+	  color = newColor;
+	}
+	return tinycolor(color, opts);
+  };
+  
+  // Given a string or object, convert that input to RGB
+  // Possible string inputs:
+  //
+  //     "red"
+  //     "#f00" or "f00"
+  //     "#ff0000" or "ff0000"
+  //     "#ff000000" or "ff000000"
+  //     "rgb 255 0 0" or "rgb (255, 0, 0)"
+  //     "rgb 1.0 0 0" or "rgb (1, 0, 0)"
+  //     "rgba (255, 0, 0, 1)" or "rgba 255, 0, 0, 1"
+  //     "rgba (1.0, 0, 0, 1)" or "rgba 1.0, 0, 0, 1"
+  //     "hsl(0, 100%, 50%)" or "hsl 0 100% 50%"
+  //     "hsla(0, 100%, 50%, 1)" or "hsla 0 100% 50%, 1"
+  //     "hsv(0, 100%, 100%)" or "hsv 0 100% 100%"
+  //
+  function inputToRGB(color) {
+	var rgb = {
+	  r: 0,
+	  g: 0,
+	  b: 0
+	};
+	var a = 1;
+	var s = null;
+	var v = null;
+	var l = null;
+	var ok = false;
+	var format = false;
+	if (typeof color == "string") {
+	  color = stringInputToObject(color);
+	}
+	if (_typeof(color) == "object") {
+	  if (isValidCSSUnit(color.r) && isValidCSSUnit(color.g) && isValidCSSUnit(color.b)) {
+		rgb = rgbToRgb(color.r, color.g, color.b);
+		ok = true;
+		format = String(color.r).substr(-1) === "%" ? "prgb" : "rgb";
+	  } else if (isValidCSSUnit(color.h) && isValidCSSUnit(color.s) && isValidCSSUnit(color.v)) {
+		s = convertToPercentage(color.s);
+		v = convertToPercentage(color.v);
+		rgb = hsvToRgb(color.h, s, v);
+		ok = true;
+		format = "hsv";
+	  } else if (isValidCSSUnit(color.h) && isValidCSSUnit(color.s) && isValidCSSUnit(color.l)) {
+		s = convertToPercentage(color.s);
+		l = convertToPercentage(color.l);
+		rgb = hslToRgb(color.h, s, l);
+		ok = true;
+		format = "hsl";
+	  }
+	  if (color.hasOwnProperty("a")) {
+		a = color.a;
+	  }
+	}
+	a = boundAlpha(a);
+	return {
+	  ok: ok,
+	  format: color.format || format,
+	  r: Math.min(255, Math.max(rgb.r, 0)),
+	  g: Math.min(255, Math.max(rgb.g, 0)),
+	  b: Math.min(255, Math.max(rgb.b, 0)),
+	  a: a
+	};
+  }
+  
+  // Conversion Functions
+  // --------------------
+  
+  // `rgbToHsl`, `rgbToHsv`, `hslToRgb`, `hsvToRgb` modified from:
+  // <http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript>
+  
+  // `rgbToRgb`
+  // Handle bounds / percentage checking to conform to CSS color spec
+  // <http://www.w3.org/TR/css3-color/>
+  // *Assumes:* r, g, b in [0, 255] or [0, 1]
+  // *Returns:* { r, g, b } in [0, 255]
+  function rgbToRgb(r, g, b) {
+	return {
+	  r: bound01(r, 255) * 255,
+	  g: bound01(g, 255) * 255,
+	  b: bound01(b, 255) * 255
+	};
+  }
+  
+  // `rgbToHsl`
+  // Converts an RGB color value to HSL.
+  // *Assumes:* r, g, and b are contained in [0, 255] or [0, 1]
+  // *Returns:* { h, s, l } in [0,1]
+  function rgbToHsl(r, g, b) {
+	r = bound01(r, 255);
+	g = bound01(g, 255);
+	b = bound01(b, 255);
+	var max = Math.max(r, g, b),
+	  min = Math.min(r, g, b);
+	var h,
+	  s,
+	  l = (max + min) / 2;
+	if (max == min) {
+	  h = s = 0; // achromatic
+	} else {
+	  var d = max - min;
+	  s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
+	  switch (max) {
+		case r:
+		  h = (g - b) / d + (g < b ? 6 : 0);
+		  break;
+		case g:
+		  h = (b - r) / d + 2;
+		  break;
+		case b:
+		  h = (r - g) / d + 4;
+		  break;
+	  }
+	  h /= 6;
+	}
+	return {
+	  h: h,
+	  s: s,
+	  l: l
+	};
+  }
+  
+  // `hslToRgb`
+  // Converts an HSL color value to RGB.
+  // *Assumes:* h is contained in [0, 1] or [0, 360] and s and l are contained [0, 1] or [0, 100]
+  // *Returns:* { r, g, b } in the set [0, 255]
+  function hslToRgb(h, s, l) {
+	var r, g, b;
+	h = bound01(h, 360);
+	s = bound01(s, 100);
+	l = bound01(l, 100);
+	function hue2rgb(p, q, t) {
+	  if (t < 0) t += 1;
+	  if (t > 1) t -= 1;
+	  if (t < 1 / 6) return p + (q - p) * 6 * t;
+	  if (t < 1 / 2) return q;
+	  if (t < 2 / 3) return p + (q - p) * (2 / 3 - t) * 6;
+	  return p;
+	}
+	if (s === 0) {
+	  r = g = b = l; // achromatic
+	} else {
+	  var q = l < 0.5 ? l * (1 + s) : l + s - l * s;
+	  var p = 2 * l - q;
+	  r = hue2rgb(p, q, h + 1 / 3);
+	  g = hue2rgb(p, q, h);
+	  b = hue2rgb(p, q, h - 1 / 3);
+	}
+	return {
+	  r: r * 255,
+	  g: g * 255,
+	  b: b * 255
+	};
+  }
+  
+  // `rgbToHsv`
+  // Converts an RGB color value to HSV
+  // *Assumes:* r, g, and b are contained in the set [0, 255] or [0, 1]
+  // *Returns:* { h, s, v } in [0,1]
+  function rgbToHsv(r, g, b) {
+	r = bound01(r, 255);
+	g = bound01(g, 255);
+	b = bound01(b, 255);
+	var max = Math.max(r, g, b),
+	  min = Math.min(r, g, b);
+	var h,
+	  s,
+	  v = max;
+	var d = max - min;
+	s = max === 0 ? 0 : d / max;
+	if (max == min) {
+	  h = 0; // achromatic
+	} else {
+	  switch (max) {
+		case r:
+		  h = (g - b) / d + (g < b ? 6 : 0);
+		  break;
+		case g:
+		  h = (b - r) / d + 2;
+		  break;
+		case b:
+		  h = (r - g) / d + 4;
+		  break;
+	  }
+	  h /= 6;
+	}
+	return {
+	  h: h,
+	  s: s,
+	  v: v
+	};
+  }
+  
+  // `hsvToRgb`
+  // Converts an HSV color value to RGB.
+  // *Assumes:* h is contained in [0, 1] or [0, 360] and s and v are contained in [0, 1] or [0, 100]
+  // *Returns:* { r, g, b } in the set [0, 255]
+  function hsvToRgb(h, s, v) {
+	h = bound01(h, 360) * 6;
+	s = bound01(s, 100);
+	v = bound01(v, 100);
+	var i = Math.floor(h),
+	  f = h - i,
+	  p = v * (1 - s),
+	  q = v * (1 - f * s),
+	  t = v * (1 - (1 - f) * s),
+	  mod = i % 6,
+	  r = [v, q, p, p, t, v][mod],
+	  g = [t, v, v, q, p, p][mod],
+	  b = [p, p, t, v, v, q][mod];
+	return {
+	  r: r * 255,
+	  g: g * 255,
+	  b: b * 255
+	};
+  }
+  
+  // `rgbToHex`
+  // Converts an RGB color to hex
+  // Assumes r, g, and b are contained in the set [0, 255]
+  // Returns a 3 or 6 character hex
+  function rgbToHex(r, g, b, allow3Char) {
+	var hex = [pad2(Math.round(r).toString(16)), pad2(Math.round(g).toString(16)), pad2(Math.round(b).toString(16))];
+  
+	// Return a 3 character hex if possible
+	if (allow3Char && hex[0].charAt(0) == hex[0].charAt(1) && hex[1].charAt(0) == hex[1].charAt(1) && hex[2].charAt(0) == hex[2].charAt(1)) {
+	  return hex[0].charAt(0) + hex[1].charAt(0) + hex[2].charAt(0);
+	}
+	return hex.join("");
+  }
+  
+  // `rgbaToHex`
+  // Converts an RGBA color plus alpha transparency to hex
+  // Assumes r, g, b are contained in the set [0, 255] and
+  // a in [0, 1]. Returns a 4 or 8 character rgba hex
+  function rgbaToHex(r, g, b, a, allow4Char) {
+	var hex = [pad2(Math.round(r).toString(16)), pad2(Math.round(g).toString(16)), pad2(Math.round(b).toString(16)), pad2(convertDecimalToHex(a))];
+  
+	// Return a 4 character hex if possible
+	if (allow4Char && hex[0].charAt(0) == hex[0].charAt(1) && hex[1].charAt(0) == hex[1].charAt(1) && hex[2].charAt(0) == hex[2].charAt(1) && hex[3].charAt(0) == hex[3].charAt(1)) {
+	  return hex[0].charAt(0) + hex[1].charAt(0) + hex[2].charAt(0) + hex[3].charAt(0);
+	}
+	return hex.join("");
+  }
+  
+  // `rgbaToArgbHex`
+  // Converts an RGBA color to an ARGB Hex8 string
+  // Rarely used, but required for "toFilter()"
+  function rgbaToArgbHex(r, g, b, a) {
+	var hex = [pad2(convertDecimalToHex(a)), pad2(Math.round(r).toString(16)), pad2(Math.round(g).toString(16)), pad2(Math.round(b).toString(16))];
+	return hex.join("");
+  }
+  
+  // `equals`
+  // Can be called with any tinycolor input
+  tinycolor.equals = function (color1, color2) {
+	if (!color1 || !color2) return false;
+	return tinycolor(color1).toRgbString() == tinycolor(color2).toRgbString();
+  };
+  tinycolor.random = function () {
+	return tinycolor.fromRatio({
+	  r: Math.random(),
+	  g: Math.random(),
+	  b: Math.random()
+	});
+  };
+  
+  // Modification Functions
+  // ----------------------
+  // Thanks to less.js for some of the basics here
+  // <https://github.com/cloudhead/less.js/blob/master/lib/less/functions.js>
+  
+  function _desaturate(color, amount) {
+	amount = amount === 0 ? 0 : amount || 10;
+	var hsl = tinycolor(color).toHsl();
+	hsl.s -= amount / 100;
+	hsl.s = clamp01(hsl.s);
+	return tinycolor(hsl);
+  }
+  function _saturate(color, amount) {
+	amount = amount === 0 ? 0 : amount || 10;
+	var hsl = tinycolor(color).toHsl();
+	hsl.s += amount / 100;
+	hsl.s = clamp01(hsl.s);
+	return tinycolor(hsl);
+  }
+  function _greyscale(color) {
+	return tinycolor(color).desaturate(100);
+  }
+  function _lighten(color, amount) {
+	amount = amount === 0 ? 0 : amount || 10;
+	var hsl = tinycolor(color).toHsl();
+	hsl.l += amount / 100;
+	hsl.l = clamp01(hsl.l);
+	return tinycolor(hsl);
+  }
+  function _brighten(color, amount) {
+	amount = amount === 0 ? 0 : amount || 10;
+	var rgb = tinycolor(color).toRgb();
+	rgb.r = Math.max(0, Math.min(255, rgb.r - Math.round(255 * -(amount / 100))));
+	rgb.g = Math.max(0, Math.min(255, rgb.g - Math.round(255 * -(amount / 100))));
+	rgb.b = Math.max(0, Math.min(255, rgb.b - Math.round(255 * -(amount / 100))));
+	return tinycolor(rgb);
+  }
+  function _darken(color, amount) {
+	amount = amount === 0 ? 0 : amount || 10;
+	var hsl = tinycolor(color).toHsl();
+	hsl.l -= amount / 100;
+	hsl.l = clamp01(hsl.l);
+	return tinycolor(hsl);
+  }
+  
+  // Spin takes a positive or negative amount within [-360, 360] indicating the change of hue.
+  // Values outside of this range will be wrapped into this range.
+  function _spin(color, amount) {
+	var hsl = tinycolor(color).toHsl();
+	var hue = (hsl.h + amount) % 360;
+	hsl.h = hue < 0 ? 360 + hue : hue;
+	return tinycolor(hsl);
+  }
+  
+  // Combination Functions
+  // ---------------------
+  // Thanks to jQuery xColor for some of the ideas behind these
+  // <https://github.com/infusion/jQuery-xcolor/blob/master/jquery.xcolor.js>
+  
+  function _complement(color) {
+	var hsl = tinycolor(color).toHsl();
+	hsl.h = (hsl.h + 180) % 360;
+	return tinycolor(hsl);
+  }
+  function polyad(color, number) {
+	if (isNaN(number) || number <= 0) {
+	  throw new Error("Argument to polyad must be a positive number");
+	}
+	var hsl = tinycolor(color).toHsl();
+	var result = [tinycolor(color)];
+	var step = 360 / number;
+	for (var i = 1; i < number; i++) {
+	  result.push(tinycolor({
+		h: (hsl.h + i * step) % 360,
+		s: hsl.s,
+		l: hsl.l
+	  }));
+	}
+	return result;
+  }
+  function _splitcomplement(color) {
+	var hsl = tinycolor(color).toHsl();
+	var h = hsl.h;
+	return [tinycolor(color), tinycolor({
+	  h: (h + 72) % 360,
+	  s: hsl.s,
+	  l: hsl.l
+	}), tinycolor({
+	  h: (h + 216) % 360,
+	  s: hsl.s,
+	  l: hsl.l
+	})];
+  }
+  function _analogous(color, results, slices) {
+	results = results || 6;
+	slices = slices || 30;
+	var hsl = tinycolor(color).toHsl();
+	var part = 360 / slices;
+	var ret = [tinycolor(color)];
+	for (hsl.h = (hsl.h - (part * results >> 1) + 720) % 360; --results;) {
+	  hsl.h = (hsl.h + part) % 360;
+	  ret.push(tinycolor(hsl));
+	}
+	return ret;
+  }
+  function _monochromatic(color, results) {
+	results = results || 6;
+	var hsv = tinycolor(color).toHsv();
+	var h = hsv.h,
+	  s = hsv.s,
+	  v = hsv.v;
+	var ret = [];
+	var modification = 1 / results;
+	while (results--) {
+	  ret.push(tinycolor({
+		h: h,
+		s: s,
+		v: v
+	  }));
+	  v = (v + modification) % 1;
+	}
+	return ret;
+  }
+  
+  // Utility Functions
+  // ---------------------
+  
+  tinycolor.mix = function (color1, color2, amount) {
+	amount = amount === 0 ? 0 : amount || 50;
+	var rgb1 = tinycolor(color1).toRgb();
+	var rgb2 = tinycolor(color2).toRgb();
+	var p = amount / 100;
+	var rgba = {
+	  r: (rgb2.r - rgb1.r) * p + rgb1.r,
+	  g: (rgb2.g - rgb1.g) * p + rgb1.g,
+	  b: (rgb2.b - rgb1.b) * p + rgb1.b,
+	  a: (rgb2.a - rgb1.a) * p + rgb1.a
+	};
+	return tinycolor(rgba);
+  };
+  
+  // Readability Functions
+  // ---------------------
+  // <http://www.w3.org/TR/2008/REC-WCAG20-20081211/#contrast-ratiodef (WCAG Version 2)
+  
+  // `contrast`
+  // Analyze the 2 colors and returns the color contrast defined by (WCAG Version 2)
+  tinycolor.readability = function (color1, color2) {
+	var c1 = tinycolor(color1);
+	var c2 = tinycolor(color2);
+	return (Math.max(c1.getLuminance(), c2.getLuminance()) + 0.05) / (Math.min(c1.getLuminance(), c2.getLuminance()) + 0.05);
+  };
+  
+  // `isReadable`
+  // Ensure that foreground and background color combinations meet WCAG2 guidelines.
+  // The third argument is an optional Object.
+  //      the 'level' property states 'AA' or 'AAA' - if missing or invalid, it defaults to 'AA';
+  //      the 'size' property states 'large' or 'small' - if missing or invalid, it defaults to 'small'.
+  // If the entire object is absent, isReadable defaults to {level:"AA",size:"small"}.
+  
+  // *Example*
+  //    tinycolor.isReadable("#000", "#111") => false
+  //    tinycolor.isReadable("#000", "#111",{level:"AA",size:"large"}) => false
+  tinycolor.isReadable = function (color1, color2, wcag2) {
+	var readability = tinycolor.readability(color1, color2);
+	var wcag2Parms, out;
+	out = false;
+	wcag2Parms = validateWCAG2Parms(wcag2);
+	switch (wcag2Parms.level + wcag2Parms.size) {
+	  case "AAsmall":
+	  case "AAAlarge":
+		out = readability >= 4.5;
+		break;
+	  case "AAlarge":
+		out = readability >= 3;
+		break;
+	  case "AAAsmall":
+		out = readability >= 7;
+		break;
+	}
+	return out;
+  };
+  
+  // `mostReadable`
+  // Given a base color and a list of possible foreground or background
+  // colors for that base, returns the most readable color.
+  // Optionally returns Black or White if the most readable color is unreadable.
+  // *Example*
+  //    tinycolor.mostReadable(tinycolor.mostReadable("#123", ["#124", "#125"],{includeFallbackColors:false}).toHexString(); // "#112255"
+  //    tinycolor.mostReadable(tinycolor.mostReadable("#123", ["#124", "#125"],{includeFallbackColors:true}).toHexString();  // "#ffffff"
+  //    tinycolor.mostReadable("#a8015a", ["#faf3f3"],{includeFallbackColors:true,level:"AAA",size:"large"}).toHexString(); // "#faf3f3"
+  //    tinycolor.mostReadable("#a8015a", ["#faf3f3"],{includeFallbackColors:true,level:"AAA",size:"small"}).toHexString(); // "#ffffff"
+  tinycolor.mostReadable = function (baseColor, colorList, args) {
+	var bestColor = null;
+	var bestScore = 0;
+	var readability;
+	var includeFallbackColors, level, size;
+	args = args || {};
+	includeFallbackColors = args.includeFallbackColors;
+	level = args.level;
+	size = args.size;
+	for (var i = 0; i < colorList.length; i++) {
+	  readability = tinycolor.readability(baseColor, colorList[i]);
+	  if (readability > bestScore) {
+		bestScore = readability;
+		bestColor = tinycolor(colorList[i]);
+	  }
+	}
+	if (tinycolor.isReadable(baseColor, bestColor, {
+	  level: level,
+	  size: size
+	}) || !includeFallbackColors) {
+	  return bestColor;
+	} else {
+	  args.includeFallbackColors = false;
+	  return tinycolor.mostReadable(baseColor, ["#fff", "#000"], args);
+	}
+  };
+  
+  // Big List of Colors
+  // ------------------
+  // <https://www.w3.org/TR/css-color-4/#named-colors>
+  var names = tinycolor.names = {
+	aliceblue: "f0f8ff",
+	antiquewhite: "faebd7",
+	aqua: "0ff",
+	aquamarine: "7fffd4",
+	azure: "f0ffff",
+	beige: "f5f5dc",
+	bisque: "ffe4c4",
+	black: "000",
+	blanchedalmond: "ffebcd",
+	blue: "00f",
+	blueviolet: "8a2be2",
+	brown: "a52a2a",
+	burlywood: "deb887",
+	burntsienna: "ea7e5d",
+	cadetblue: "5f9ea0",
+	chartreuse: "7fff00",
+	chocolate: "d2691e",
+	coral: "ff7f50",
+	cornflowerblue: "6495ed",
+	cornsilk: "fff8dc",
+	crimson: "dc143c",
+	cyan: "0ff",
+	darkblue: "00008b",
+	darkcyan: "008b8b",
+	darkgoldenrod: "b8860b",
+	darkgray: "a9a9a9",
+	darkgreen: "006400",
+	darkgrey: "a9a9a9",
+	darkkhaki: "bdb76b",
+	darkmagenta: "8b008b",
+	darkolivegreen: "556b2f",
+	darkorange: "ff8c00",
+	darkorchid: "9932cc",
+	darkred: "8b0000",
+	darksalmon: "e9967a",
+	darkseagreen: "8fbc8f",
+	darkslateblue: "483d8b",
+	darkslategray: "2f4f4f",
+	darkslategrey: "2f4f4f",
+	darkturquoise: "00ced1",
+	darkviolet: "9400d3",
+	deeppink: "ff1493",
+	deepskyblue: "00bfff",
+	dimgray: "696969",
+	dimgrey: "696969",
+	dodgerblue: "1e90ff",
+	firebrick: "b22222",
+	floralwhite: "fffaf0",
+	forestgreen: "228b22",
+	fuchsia: "f0f",
+	gainsboro: "dcdcdc",
+	ghostwhite: "f8f8ff",
+	gold: "ffd700",
+	goldenrod: "daa520",
+	gray: "808080",
+	green: "008000",
+	greenyellow: "adff2f",
+	grey: "808080",
+	honeydew: "f0fff0",
+	hotpink: "ff69b4",
+	indianred: "cd5c5c",
+	indigo: "4b0082",
+	ivory: "fffff0",
+	khaki: "f0e68c",
+	lavender: "e6e6fa",
+	lavenderblush: "fff0f5",
+	lawngreen: "7cfc00",
+	lemonchiffon: "fffacd",
+	lightblue: "add8e6",
+	lightcoral: "f08080",
+	lightcyan: "e0ffff",
+	lightgoldenrodyellow: "fafad2",
+	lightgray: "d3d3d3",
+	lightgreen: "90ee90",
+	lightgrey: "d3d3d3",
+	lightpink: "ffb6c1",
+	lightsalmon: "ffa07a",
+	lightseagreen: "20b2aa",
+	lightskyblue: "87cefa",
+	lightslategray: "789",
+	lightslategrey: "789",
+	lightsteelblue: "b0c4de",
+	lightyellow: "ffffe0",
+	lime: "0f0",
+	limegreen: "32cd32",
+	linen: "faf0e6",
+	magenta: "f0f",
+	maroon: "800000",
+	mediumaquamarine: "66cdaa",
+	mediumblue: "0000cd",
+	mediumorchid: "ba55d3",
+	mediumpurple: "9370db",
+	mediumseagreen: "3cb371",
+	mediumslateblue: "7b68ee",
+	mediumspringgreen: "00fa9a",
+	mediumturquoise: "48d1cc",
+	mediumvioletred: "c71585",
+	midnightblue: "191970",
+	mintcream: "f5fffa",
+	mistyrose: "ffe4e1",
+	moccasin: "ffe4b5",
+	navajowhite: "ffdead",
+	navy: "000080",
+	oldlace: "fdf5e6",
+	olive: "808000",
+	olivedrab: "6b8e23",
+	orange: "ffa500",
+	orangered: "ff4500",
+	orchid: "da70d6",
+	palegoldenrod: "eee8aa",
+	palegreen: "98fb98",
+	paleturquoise: "afeeee",
+	palevioletred: "db7093",
+	papayawhip: "ffefd5",
+	peachpuff: "ffdab9",
+	peru: "cd853f",
+	pink: "ffc0cb",
+	plum: "dda0dd",
+	powderblue: "b0e0e6",
+	purple: "800080",
+	rebeccapurple: "663399",
+	red: "f00",
+	rosybrown: "bc8f8f",
+	royalblue: "4169e1",
+	saddlebrown: "8b4513",
+	salmon: "fa8072",
+	sandybrown: "f4a460",
+	seagreen: "2e8b57",
+	seashell: "fff5ee",
+	sienna: "a0522d",
+	silver: "c0c0c0",
+	skyblue: "87ceeb",
+	slateblue: "6a5acd",
+	slategray: "708090",
+	slategrey: "708090",
+	snow: "fffafa",
+	springgreen: "00ff7f",
+	steelblue: "4682b4",
+	tan: "d2b48c",
+	teal: "008080",
+	thistle: "d8bfd8",
+	tomato: "ff6347",
+	turquoise: "40e0d0",
+	violet: "ee82ee",
+	wheat: "f5deb3",
+	white: "fff",
+	whitesmoke: "f5f5f5",
+	yellow: "ff0",
+	yellowgreen: "9acd32"
+  };
+  
+  // Make it easy to access colors via `hexNames[hex]`
+  var hexNames = tinycolor.hexNames = flip(names);
+  
+  // Utilities
+  // ---------
+  
+  // `{ 'name1': 'val1' }` becomes `{ 'val1': 'name1' }`
+  function flip(o) {
+	var flipped = {};
+	for (var i in o) {
+	  if (o.hasOwnProperty(i)) {
+		flipped[o[i]] = i;
+	  }
+	}
+	return flipped;
+  }
+  
+  // Return a valid alpha value [0,1] with all invalid values being set to 1
+  function boundAlpha(a) {
+	a = parseFloat(a);
+	if (isNaN(a) || a < 0 || a > 1) {
+	  a = 1;
+	}
+	return a;
+  }
+  
+  // Take input from [0, n] and return it as [0, 1]
+  function bound01(n, max) {
+	if (isOnePointZero(n)) n = "100%";
+	var processPercent = isPercentage(n);
+	n = Math.min(max, Math.max(0, parseFloat(n)));
+  
+	// Automatically convert percentage into number
+	if (processPercent) {
+	  n = parseInt(n * max, 10) / 100;
+	}
+  
+	// Handle floating point rounding errors
+	if (Math.abs(n - max) < 0.000001) {
+	  return 1;
+	}
+  
+	// Convert into [0, 1] range if it isn't already
+	return n % max / parseFloat(max);
+  }
+  
+  // Force a number between 0 and 1
+  function clamp01(val) {
+	return Math.min(1, Math.max(0, val));
+  }
+  
+  // Parse a base-16 hex value into a base-10 integer
+  function parseIntFromHex(val) {
+	return parseInt(val, 16);
+  }
+  
+  // Need to handle 1.0 as 100%, since once it is a number, there is no difference between it and 1
+  // <http://stackoverflow.com/questions/7422072/javascript-how-to-detect-number-as-a-decimal-including-1-0>
+  function isOnePointZero(n) {
+	return typeof n == "string" && n.indexOf(".") != -1 && parseFloat(n) === 1;
+  }
+  
+  // Check to see if string passed in is a percentage
+  function isPercentage(n) {
+	return typeof n === "string" && n.indexOf("%") != -1;
+  }
+  
+  // Force a hex value to have 2 characters
+  function pad2(c) {
+	return c.length == 1 ? "0" + c : "" + c;
+  }
+  
+  // Replace a decimal with it's percentage value
+  function convertToPercentage(n) {
+	if (n <= 1) {
+	  n = n * 100 + "%";
+	}
+	return n;
+  }
+  
+  // Converts a decimal to a hex value
+  function convertDecimalToHex(d) {
+	return Math.round(parseFloat(d) * 255).toString(16);
+  }
+  // Converts a hex value to a decimal
+  function convertHexToDecimal(h) {
+	return parseIntFromHex(h) / 255;
+  }
+  var matchers = function () {
+	// <http://www.w3.org/TR/css3-values/#integers>
+	var CSS_INTEGER = "[-\\+]?\\d+%?";
+  
+	// <http://www.w3.org/TR/css3-values/#number-value>
+	var CSS_NUMBER = "[-\\+]?\\d*\\.\\d+%?";
+  
+	// Allow positive/negative integer/number.  Don't capture the either/or, just the entire outcome.
+	var CSS_UNIT = "(?:" + CSS_NUMBER + ")|(?:" + CSS_INTEGER + ")";
+  
+	// Actual matching.
+	// Parentheses and commas are optional, but not required.
+	// Whitespace can take the place of commas or opening paren
+	var PERMISSIVE_MATCH3 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
+	var PERMISSIVE_MATCH4 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
+	return {
+	  CSS_UNIT: new RegExp(CSS_UNIT),
+	  rgb: new RegExp("rgb" + PERMISSIVE_MATCH3),
+	  rgba: new RegExp("rgba" + PERMISSIVE_MATCH4),
+	  hsl: new RegExp("hsl" + PERMISSIVE_MATCH3),
+	  hsla: new RegExp("hsla" + PERMISSIVE_MATCH4),
+	  hsv: new RegExp("hsv" + PERMISSIVE_MATCH3),
+	  hsva: new RegExp("hsva" + PERMISSIVE_MATCH4),
+	  hex3: /^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
+	  hex6: /^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,
+	  hex4: /^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
+	  hex8: /^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/
+	};
+  }();
+  
+  // `isValidCSSUnit`
+  // Take in a single string / number and check to see if it looks like a CSS unit
+  // (see `matchers` above for definition).
+  function isValidCSSUnit(color) {
+	return !!matchers.CSS_UNIT.exec(color);
+  }
+  
+  // `stringInputToObject`
+  // Permissive string parsing.  Take in a number of formats, and output an object
+  // based on detected format.  Returns `{ r, g, b }` or `{ h, s, l }` or `{ h, s, v}`
+  function stringInputToObject(color) {
+	color = color.replace(trimLeft, "").replace(trimRight, "").toLowerCase();
+	var named = false;
+	if (names[color]) {
+	  color = names[color];
+	  named = true;
+	} else if (color == "transparent") {
+	  return {
+		r: 0,
+		g: 0,
+		b: 0,
+		a: 0,
+		format: "name"
+	  };
+	}
+  
+	// Try to match string input using regular expressions.
+	// Keep most of the number bounding out of this function - don't worry about [0,1] or [0,100] or [0,360]
+	// Just return an object and let the conversion functions handle that.
+	// This way the result will be the same whether the tinycolor is initialized with string or object.
+	var match;
+	if (match = matchers.rgb.exec(color)) {
+	  return {
+		r: match[1],
+		g: match[2],
+		b: match[3]
+	  };
+	}
+	if (match = matchers.rgba.exec(color)) {
+	  return {
+		r: match[1],
+		g: match[2],
+		b: match[3],
+		a: match[4]
+	  };
+	}
+	if (match = matchers.hsl.exec(color)) {
+	  return {
+		h: match[1],
+		s: match[2],
+		l: match[3]
+	  };
+	}
+	if (match = matchers.hsla.exec(color)) {
+	  return {
+		h: match[1],
+		s: match[2],
+		l: match[3],
+		a: match[4]
+	  };
+	}
+	if (match = matchers.hsv.exec(color)) {
+	  return {
+		h: match[1],
+		s: match[2],
+		v: match[3]
+	  };
+	}
+	if (match = matchers.hsva.exec(color)) {
+	  return {
+		h: match[1],
+		s: match[2],
+		v: match[3],
+		a: match[4]
+	  };
+	}
+	if (match = matchers.hex8.exec(color)) {
+	  return {
+		r: parseIntFromHex(match[1]),
+		g: parseIntFromHex(match[2]),
+		b: parseIntFromHex(match[3]),
+		a: convertHexToDecimal(match[4]),
+		format: named ? "name" : "hex8"
+	  };
+	}
+	if (match = matchers.hex6.exec(color)) {
+	  return {
+		r: parseIntFromHex(match[1]),
+		g: parseIntFromHex(match[2]),
+		b: parseIntFromHex(match[3]),
+		format: named ? "name" : "hex"
+	  };
+	}
+	if (match = matchers.hex4.exec(color)) {
+	  return {
+		r: parseIntFromHex(match[1] + "" + match[1]),
+		g: parseIntFromHex(match[2] + "" + match[2]),
+		b: parseIntFromHex(match[3] + "" + match[3]),
+		a: convertHexToDecimal(match[4] + "" + match[4]),
+		format: named ? "name" : "hex8"
+	  };
+	}
+	if (match = matchers.hex3.exec(color)) {
+	  return {
+		r: parseIntFromHex(match[1] + "" + match[1]),
+		g: parseIntFromHex(match[2] + "" + match[2]),
+		b: parseIntFromHex(match[3] + "" + match[3]),
+		format: named ? "name" : "hex"
+	  };
+	}
+	return false;
+  }
+  function validateWCAG2Parms(parms) {
+	// return valid WCAG2 parms for isReadable.
+	// If input parms are invalid, return {"level":"AA", "size":"small"}
+	var level, size;
+	parms = parms || {
+	  level: "AA",
+	  size: "small"
+	};
+	level = (parms.level || "AA").toUpperCase();
+	size = (parms.size || "small").toLowerCase();
+	if (level !== "AA" && level !== "AAA") {
+	  level = "AA";
+	}
+	if (size !== "small" && size !== "large") {
+	  size = "small";
+	}
+	return {
+	  level: level,
+	  size: size
+	};
+  }
+  
+  export { tinycolor as default };
+  
\ No newline at end of file
diff --git a/devTools/canvasmodel/tsconfig.json b/devTools/canvasmodel/tsconfig.json
index 387538205dbd4a87fc4cb368e5c8dc74173390c2..ee91c9ca13969e7b512269d41e20219117846fc4 100644
--- a/devTools/canvasmodel/tsconfig.json
+++ b/devTools/canvasmodel/tsconfig.json
@@ -1,7 +1,6 @@
 {
   "compilerOptions": {
-    "target": "ES2015",
-    "lib": ["DOM", "ES2015", "ES2017.Object"],
+    "target": "ES2020",
     "module": "None",
     "moduleResolution": "Node",
     "outDir": ".",
diff --git a/devTools/grayscaler/index.js b/devTools/grayscaler/index.js
index af4f3f17bb73c44cbbf4c4020511e4125330bf34..c803c590d123ca8bf23424976560928b73b5ec66 100644
--- a/devTools/grayscaler/index.js
+++ b/devTools/grayscaler/index.js
@@ -220,39 +220,7 @@ function convertAllClothes() {
 	processSlot("game/base-clothing/clothing-under-upper.twee", "img/clothes/under_upper/", "setup.clothes.under_upper", true);
 }
 
-function convertAllHair() {
-	let lengths = ["short","shoulder","chest","navel","thighs","feet"];
-	let sidedir = baseurl+"img/hair/sides";
-	let fringedir = baseurl+"img/hair/fringe";
-	let files = [];
-	for (let sidestyle of fs.readdirSync(sidedir)) {
-		for (let l of lengths) {
-			let path = sidedir+"/"+sidestyle+"/"+l+".png";
-			files.push(path);
-		}
-	}
-	for (let fringestyle of fs.readdirSync(fringedir)) {
-		for (let l of lengths) {
-			let path = fringedir+"/"+fringestyle+"/"+l+".png";
-			files.push(path);
-		}
-	}
-	files.push(baseurl+"img/hair/red/backhairthighsred.png");
-	files.push(baseurl+"img/hair/red/backhairfeetred.png");
-	for (let path of files) {
-		if (!fs.existsSync(path)) continue;
-		console.log("Processing ",path);
-		try {
-			desaturateFile(path,hairpreset)
-		} catch (e) {
-			console.error(e.message);
-			failedFiles.push(path);
-		}
-	}
-}
-
 convertAllClothes();
-// convertAllHair();
 
 
 if (failedFiles.length>0) {
diff --git a/game/01-config/sugarcubeConfig.js b/game/01-config/sugarcubeConfig.js
index b152abdcdbe7cc29ddca497897e5e85c74f1cfc3..62c8f7c31f104741b87853f82956d5788b0b007a 100644
--- a/game/01-config/sugarcubeConfig.js
+++ b/game/01-config/sugarcubeConfig.js
@@ -614,6 +614,20 @@ Config.navigation.override = function (dest) {
 		return passageArgs.name;
 	}
 
+	// Scene viewer redirect
+	if (V.replayScene) {
+		if (passageArgs.name === V.replayScene.startPassage) {
+			return false;
+		}
+		if (passageArgs.name === "Scene Viewer End") {
+			delete V.replayScene.startPassage;
+			return false;
+		}
+		if (!V.replayScene.passages.includes(passageArgs.name)) {
+			return "Scene Viewer End";
+		}
+	}
+
 	if (pageLoading) {
 		pageLoading = false;
 		const passageOverride = checkPassages(dest);
diff --git a/game/03-JavaScript/00-libs/renderer.js b/game/03-JavaScript/00-libs/renderer.js
index ef92a59fa943c4cc424b46434e70f3db2bb3b28e..c69994ad1cbaa16d2025ae68ac4e8ff0c59d74fc 100644
--- a/game/03-JavaScript/00-libs/renderer.js
+++ b/game/03-JavaScript/00-libs/renderer.js
@@ -4,22 +4,34 @@
  */
 var Renderer;
 (function (Renderer) {
-    const millitime = (typeof performance === 'object' && typeof performance.now === 'function') ?
-        function () {
-            return performance.now();
-        } : function () {
-            return new Date().getTime();
-        };
+    const millitime = function () {
+        return performance.now();
+    };
+    function rescaleImageToCanvasHeight(image, targetHeight) {
+        const aspectRatio = image.width / image.height;
+        const scaledWidth = targetHeight * aspectRatio;
+        const i2 = createCanvas(scaledWidth, targetHeight);
+        i2.imageSmoothingEnabled = false;
+        i2.drawImage(image, 0, 0, scaledWidth, targetHeight);
+        return i2.canvas;
+    }
     Renderer.DefaultImageLoader = {
         loadImage(src, layer, successCallback, errorCallback) {
-            const image = new Image();
-            image.onload = () => {
-                successCallback(src, layer, image);
-            };
-            image.onerror = (event) => {
-                errorCallback(src, layer, event);
-            };
-            image.src = src;
+            if (src instanceof HTMLCanvasElement) {
+                successCallback(src, layer, src);
+            }
+            else {
+                const image = new Image();
+                image.onload = () => {
+                    // Rescale the image to the canvas height, if layer.scale is true
+                    const rescaledImage = layer.scale ? rescaleImageToCanvasHeight(image, layer.model.height) : image;
+                    successCallback(src, layer, rescaledImage);
+                };
+                image.onerror = (event) => {
+                    errorCallback(src, layer, event);
+                };
+                image.src = src;
+            }
         }
     };
     Renderer.ImageLoader = Renderer.DefaultImageLoader;
@@ -302,7 +314,7 @@ var Renderer;
                 }
                 else if (typeof target.brightness === 'number' && typeof source.brightness === 'object') {
                     const brightnessToAdd = target.brightness;
-                    target.brightness = Object.assign({}, source.brightness);
+                    target.brightness = { ...source.brightness };
                     for (const [adjustmentIndex, adjustment] of target.brightness.adjustments.entries()) {
                         if (typeof adjustment === 'number') {
                             target.brightness.adjustments[adjustmentIndex] += brightnessToAdd;
@@ -401,24 +413,26 @@ var Renderer;
         if (gradientInitializations[0].blendMode != gradientInitializations[1].blendMode) {
             const gradients = [];
             for (const [i, gradientInit] of gradientInitializations.entries()) {
-                gradients.push(createGradient(Object.assign(Object.assign({}, brightness), {
+                gradients.push(createGradient({
+                    ...brightness,
                     colors: [
                         [gradientInitializations[0].offset, i === 0 ? gradientInit.grey : gradientInit.neutral],
                         [gradientInitializations[1].offset, i === 0 ? gradientInit.neutral : gradientInit.grey]
                     ]
-                })));
+                }));
             }
             const firstGradientApplied = composeUnderSpecialRect(image, gradients[0], gradientInitializations[0].blendMode, frameCount);
             const secondGradientApplied = composeUnderSpecialRect(firstGradientApplied.canvas, gradients[1], gradientInitializations[1].blendMode, frameCount, resultCanvas);
             return secondGradientApplied.canvas;
         }
         else {
-            const brightnessGradient = createGradient(Object.assign(Object.assign({}, brightness), {
+            const brightnessGradient = createGradient({
+                ...brightness,
                 colors: [
                     [gradientInitializations[0].offset, gradientInitializations[0].grey],
                     [gradientInitializations[1].offset, gradientInitializations[1].grey]
                 ]
-            }));
+            });
             return composeUnderSpecialRect(image, brightnessGradient, gradientInitializations[0].blendMode, frameCount, resultCanvas).canvas;
         }
     }
@@ -441,15 +455,15 @@ var Renderer;
         }
     }
     Renderer.adjustBrightness = adjustBrightness;
-    function adjustLevels(image,
-        /**
-         * scale factor, 1 - no change, >1 - higher contrast, <1 - lower contrast.
-         */
-        factor,
-        /**
-         * shift, 0 - no change, >0 - brighter, <0 - darker
-         */
-        shift, resultCanvas) {
+    function adjustLevels(image, 
+    /**
+     * scale factor, 1 - no change, >1 - higher contrast, <1 - lower contrast.
+     */
+    factor, 
+    /**
+     * shift, 0 - no change, >0 - brighter, <0 - darker
+     */
+    shift, resultCanvas) {
         if (factor >= 1) {
             /*
              color-dodge ( color, X ) = color / (1 - X) ; 0..(1-X) -> 0..1, (1-X) and brighter become white
@@ -589,7 +603,20 @@ var Renderer;
             return !!layer.mask;
         },
         render(image, layer, context) {
-            return cutoutFrom(ensureCanvas(image).getContext('2d'), layer.mask).canvas;
+            if (Array.isArray(layer.mask)) {
+                let combinedCtx = Renderer.createCanvas(image.width, image.height);
+                combinedCtx.fillRect(0, 0, combinedCtx.canvas.width, combinedCtx.canvas.height);
+                combinedCtx.globalCompositeOperation = 'destination-in';
+                layer.mask.forEach(mask => {
+                    if (!mask)
+                        return Renderer.ensureCanvas(image).getContext('2d').canvas;
+                    combinedCtx.drawImage(mask, 0, 0);
+                });
+                return Renderer.cutoutFrom(Renderer.ensureCanvas(image).getContext('2d'), combinedCtx.canvas).canvas;
+            }
+            else {
+                return Renderer.cutoutFrom(Renderer.ensureCanvas(image).getContext('2d'), layer.mask).canvas;
+            }
         }
     };
     const RenderingStepCutout = {
@@ -683,20 +710,20 @@ var Renderer;
         // Sort layers by z-index, then array index
         const layers = layerSpecs
             .filter(layer => layer.show !== false
-                && !(typeof layer.alpha === 'number' && layer.alpha <= 0.0))
+            && !(typeof layer.alpha === 'number' && layer.alpha <= 0.0))
             .map((layer, i) => {
-                if (isNaN(layer.z)) {
-                    console.error("Layer " + (layer.name || layer.src) + " has z-index NaN");
-                    layer.z = 0;
-                }
-                return [layer, i];
-            }) // map to pairs [element, index]
+            if (isNaN(layer.z)) {
+                console.error("Layer " + (layer.name || layer.src) + " has z-index NaN");
+                layer.z = 0;
+            }
+            return [layer, i];
+        }) // map to pairs [element, index]
             .sort((a, b) => {
-                if (a[0].z === b[0].z)
-                    return a[1] - b[1];
-                else
-                    return a[0].z - b[0].z;
-            })
+            if (a[0].z === b[0].z)
+                return a[1] - b[1];
+            else
+                return a[0].z - b[0].z;
+        })
             .map(e => e[0]); // unwrap values;
         if (listener && listener.composeLayers)
             listener.composeLayers(layers);
@@ -752,6 +779,8 @@ var Renderer;
                     return;
                 if (layer.masksrc && !layer.mask)
                     return;
+                if ((Array.isArray(layer.masksrc) && layer.masksrc.length < 1) && !layer.mask)
+                    return;
             }
             if (listener && listener.loadingDone)
                 listener.loadingDone(millitime() - t0, layersLoaded);
@@ -770,7 +799,9 @@ var Renderer;
                 }
                 layer.image = image;
                 layer.imageSrc = src;
-                Renderer.ImageCaches[src] = image;
+                if (!(layer.src instanceof HTMLCanvasElement)) {
+                    Renderer.ImageCaches[src] = image;
+                }
                 maybeRenderResult();
             }, (src, layer, error) => {
                 // Mark this src as erroneous to avoid blinking due to reload attempts
@@ -786,32 +817,38 @@ var Renderer;
             });
         }
         function loadLayerMask(layer) {
-            Renderer.ImageLoader.loadImage(layer.masksrc, layer, (src, layer, image) => {
-                layersLoaded++;
-                if (listener && listener.loaded) {
-                    listener.loaded(layer.name || 'unnamed', src);
-                }
-                layer.mask = image;
-                layer.cachedMaskSrc = src;
-                Renderer.ImageCaches[src] = image;
-                maybeRenderResult();
-            }, (src, layer, error) => {
-                // Mark this src as erroneous to avoid blinking due to reload attempts
-                Renderer.ImageErrors[src] = true;
-                if (listener && listener.loadError) {
-                    listener.loadError(layer.name || 'unnamed', src);
-                }
-                else {
+            if (!Array.isArray(layer.masksrc)) {
+                if (layer.masksrc == null)
+                    return;
+                layer.masksrc = [layer.masksrc];
+            }
+            const masksLoaded = [];
+            let masksToLoad = layer.masksrc.length;
+            layer.masksrc.forEach((src, index) => {
+                Renderer.ImageLoader.loadImage(src, layer, (src, layer, image) => {
+                    masksLoaded[index] = image;
+                    masksToLoad--;
+                    if (!(src instanceof HTMLCanvasElement)) {
+                        Renderer.ImageCaches[src] = image;
+                    }
+                    if (masksToLoad === 0) {
+                        layer.mask = masksLoaded.length === 1 ? masksLoaded[0] : masksLoaded;
+                        layer.cachedMaskSrc = layer.masksrc;
+                        maybeRenderResult();
+                    }
+                }, (src, layer, error) => {
                     console.error('Failed to load mask ' + src + (layer.name ? ' for layer ' + layer.name : ''));
-                }
-                delete layer.masksrc;
-                maybeRenderResult();
+                    layer.show = false;
+                    Renderer.ImageErrors[src] = true;
+                    layer.masksrc = null;
+                    maybeRenderResult();
+                });
             });
         }
         for (const layer of layers) {
             let needImage = true;
             if (layer.image) {
-                if (layer.imageSrc === layer.src) {
+                if (layer.imageSrc === layer.src || layer.src instanceof HTMLCanvasElement) {
                     needImage = false;
                 }
                 else {
@@ -833,9 +870,15 @@ var Renderer;
                     loadLayerImage(layer);
                 }
             }
+            if (Array.isArray(layer.masksrc)) {
+                layer.masksrc = layer.masksrc.filter(value => value != null);
+                if (layer.masksrc.length === 0 || layer.masksrc.every(value => value == null)) {
+                    layer.masksrc = null;
+                }
+            }
             let needMask = !!layer.masksrc;
             if (layer.mask) {
-                if (layer.cachedMaskSrc === layer.masksrc) {
+                if (layer.cachedMaskSrc === layer.masksrc || layer.masksrc instanceof HTMLCanvasElement) {
                     needMask = false;
                 }
                 else {
@@ -845,21 +888,45 @@ var Renderer;
                 }
             }
             if (needMask) {
-                if (Renderer.ImageErrors[layer.masksrc]) {
-                    delete layer.masksrc;
-                }
-                else if (layer.masksrc in Renderer.ImageCaches) {
-                    layer.mask = Renderer.ImageCaches[layer.masksrc];
-                    layer.cachedMaskSrc = layer.masksrc;
+                if (Array.isArray(layer.masksrc)) {
+                    layer.mask = [];
+                    layer.masksrc.forEach(src => {
+                        if (Renderer.ImageErrors[src]) {
+                            layer.masksrc = null;
+                        }
+                        else if (src in Renderer.ImageCaches) {
+                            layer.mask.push(Renderer.ImageCaches[src]);
+                            layer.cachedMaskSrc = layer.masksrc;
+                        }
+                        else {
+                            loadLayerMask(layer);
+                        }
+                    });
                 }
                 else {
-                    loadLayerMask(layer);
+                    if (Renderer.ImageErrors[layer.masksrc]) {
+                        layer.masksrc = null;
+                    }
+                    else if (layer.masksrc in Renderer.ImageCaches) {
+                        layer.mask = Renderer.ImageCaches[layer.masksrc];
+                        layer.cachedMaskSrc = layer.masksrc;
+                    }
+                    else {
+                        loadLayerMask(layer);
+                    }
                 }
             }
         }
         maybeRenderResult();
     }
     Renderer.composeLayers = composeLayers;
+    function refresh(model) {
+        Renderer.ImageCaches = {};
+        Renderer.ImageErrors = {};
+        invalidateLayerCaches(model.layerList);
+        model.redraw();
+    }
+    Renderer.refresh = refresh;
     function invalidateLayerCaches(layers) {
         for (let layer of layers) {
             delete layer.image;
@@ -970,10 +1037,8 @@ var Renderer;
                     if (listener && listener.keyframe)
                         listener.keyframe(animation.name, animation.keyframeIndex, animation.keyframe);
                 }
-                compose().catch((e) => {
-                    if (e)
-                        console.error(e);
-                });
+                compose().catch((e) => { if (e)
+                    console.error(e); });
             },
             stop() {
                 if (!this.playing)
@@ -993,10 +1058,8 @@ var Renderer;
             invalidateCaches,
             time: 0,
             redraw() {
-                compose().catch((e) => {
-                    if (e)
-                        console.error(e);
-                });
+                compose().catch((e) => { if (e)
+                    console.error(e); });
             }
         };
         function genAnimationSpec() {
@@ -1024,10 +1087,8 @@ var Renderer;
                         animatingCanvas.time = Math.max(t1, animatingCanvas.time);
                         for (let task of tasks)
                             task();
-                        compose().catch((e) => {
-                            if (e)
-                                console.error(e);
-                        });
+                        compose().catch((e) => { if (e)
+                            console.error(e); });
                     }
                     catch (e) {
                         rendererError(listener, e);
diff --git a/game/03-JavaScript/canvasmodel-editor.js b/game/03-JavaScript/canvasmodel-editor.js
index e918dcc8c48bc54e0fad03900bafd8b0f3f550b6..75f56b2a99031967f33cb14b0f5ead88bbd384c6 100644
--- a/game/03-JavaScript/canvasmodel-editor.js
+++ b/game/03-JavaScript/canvasmodel-editor.js
@@ -320,20 +320,26 @@ Macro.add("canvasLayersEditor", {
 									"a",
 									{
 										onclick() {
-											delete Renderer.ImageCaches[layer.src];
-											layer.src = layer.src.split("#")[0] + "#" + new Date().getTime();
-											redraw();
+											if (typeof layer.src === "string") {
+												delete Renderer.ImageCaches[layer.src];
+												layer.src = layer.src.split("#")[0] + "#" + new Date().getTime();
+												redraw();
+											}
 										},
+										disabled: typeof layer.src !== "string",
 									},
 									"↺"
 								),
 								eInput({
 									class: "editlayer-src",
-									value: layer.src.split("#")[0],
+									value: typeof layer.src === "string" ? layer.src.split("#")[0] : "",
 									set(value) {
-										layer.src = value;
-										redraw();
+										if (typeof value === "string") {
+											layer.src = value;
+											redraw();
+										}
 									},
+									disabled: typeof layer.src !== "string",
 								}),
 							]),
 							element(
diff --git a/game/03-JavaScript/canvasmodel.js b/game/03-JavaScript/canvasmodel.js
index 35cfbd26c251ac35d33597c7949b98d5080cebf0..1bfb1170687edea3edae6a29a0ea6ac5d058b6dd 100644
--- a/game/03-JavaScript/canvasmodel.js
+++ b/game/03-JavaScript/canvasmodel.js
@@ -42,7 +42,7 @@
  * @property {number} [contrast] Adjust contrast (before recoloring), default 1.
  * @property {string} [blendMode] Recoloring mode (see docs for globalCompositeOperation; "hard-light", "multiply" and "screen" ), default none.
  * @property {string|object} [blend] Color for recoloring, CSS color string or gradient spec (see model.d.ts).
- * @property {string} [masksrc] Mask image path. If present, only parts where mask is opaque will be displayed.
+ * @property {string|string[]} [masksrc] Single mask image path or array of mask image paths. If present, only parts where mask(s) are opaque will be displayed.
  * @property {string} [animation] Name of animation to apply, default none.
  * @property {number} [frames] Frame numbers used to display static images, array of subsprite indices. For example, if model frame count is 6 but layer has only 3 subsprites, default frames would be [0, 0, 1, 1, 2, 2].
  * @property {string[]} [filters] Names of filters that should be applied to the layer; filters themselves are taken from model options.
@@ -61,7 +61,7 @@
  * @property {Function} [contrastftn] (options)=>number.
  * @property {Function} [blendModefn] (options)=>(string|object).
  * @property {Function} [blendfn] (options)=>string.
- * @property {Function} [masksrcfn] (options)=>string.
+ * @property {Function} [masksrcfn] (options)=>string|string[].
  * @property {Function} [animationfn] (options)=>string.
  * @property {Function} [framesfn] (options)=>number[].
  * @property {Function} [filtersfn] (options)=>string[].
@@ -77,6 +77,7 @@
  * @property {number} width Frame width.
  * @property {number} height Frame height.
  * @property {number} frames Number of frames for CSS animation.
+ * @property {boolean} scale Set to true to scale layers to the canvas size, if smaller.
  * @property {Object<string, CanvasModelLayer>} layers Layers (by name).
  * @property {Function} [generatedOptions] Function ()=>string[] names of generated options.
  * @property {Function} [defaultOptions] Function ()=>object returning default options.
@@ -89,6 +90,7 @@
  * @property {number} width Frame width.
  * @property {number} height Frame height.
  * @property {number} frames Number of frames for CSS animation.
+  * @property {boolean} scale Set to true to scale layers to the canvas size, if smaller.
  * @property {Function} defaultOptions Function ()=>object returning default options.
  * @property {string[]} generatedOptions Names of generated options.
  * @property {Object<string, CanvasModelLayer>} layers Layers (by name).
@@ -104,6 +106,7 @@ window.CanvasModel = class CanvasModel {
 		this.width = options.width;
 		this.height = options.height;
 		this.frames = options.frames || 1;
+		this.scale = options.scale || false;
 		if ("generatedOptions" in options) this.generatedOptions = options.generatedOptions;
 		if ("defaultOptions" in options) this.defaultOptions = options.defaultOptions;
 		if ("preprocess" in options) this.preprocess = options.preprocess;
@@ -286,6 +289,7 @@ window.CanvasModel = class CanvasModel {
 		}
 
 		for (const layer of this.layerList) {
+			layer.model = this;
 			layer.show || propeval(layer, "show");
 			propeval(layer, "src");
 			if (!layer.src) {
@@ -307,6 +311,8 @@ window.CanvasModel = class CanvasModel {
 			propeval(layer, "dy");
 			propeval(layer, "width");
 			propeval(layer, "height");
+			propeval(layer, "scale");
+			if (!layer.scale) layer.scale = this.scale;
 			if (layer.show !== false && layer.filters) {
 				for (const filterName of layer.filters) {
 					const filter = options.filters[filterName];
diff --git a/game/03-JavaScript/domutils.js b/game/03-JavaScript/domutils.js
index 7c73edcbf50c66689d2a41324d640a39ba9307be..a199d6a6967fd27a295d44dcf7783c4d4800b0bf 100644
--- a/game/03-JavaScript/domutils.js
+++ b/game/03-JavaScript/domutils.js
@@ -96,6 +96,7 @@ function customElement(tag, baseProps, props, children, customProps) {
 /**
  * Extra props:
  * - set(newValue:(string|number)) - input listener.
+ * - disabled:boolean - disables the input.
  *
  * @param {object} props
  */
@@ -112,6 +113,9 @@ function eInput(props) {
 				set(value);
 			});
 		},
+		disabled(e, disabled) {
+			e.disabled = disabled;
+		},
 	});
 }
 
diff --git a/game/03-JavaScript/ingame.js b/game/03-JavaScript/ingame.js
index 78edff865f728b212f8e1438a3d904ed3bf4ab12..b67556d11fe216167f3c2867ecab3ca30b9c2294 100644
--- a/game/03-JavaScript/ingame.js
+++ b/game/03-JavaScript/ingame.js
@@ -643,7 +643,7 @@ function isInPark(name) {
 			return ["active", "rescued"].includes(C.npc.Whitney.state)
 				&& C.npc.Whitney.init === 1 && Weather.precipitation !== "none"
 				&& Time.dayState === "day" && !Time.schoolTime
-				&& V.daily.whitney.park === undefined && V.pillory_tenant.special.name !== "Whitney";
+				&& V.daily.whitney.park === undefined && V.pillory.tenant.special.name !== "Whitney";
 		default:
 			return false;
 	}
diff --git a/game/03-JavaScript/time.js b/game/03-JavaScript/time.js
index 838407d97e9a15972eb45322c7ab084c07246e6b..0e5ae916a6b5971ba17f4e4e53fa3f8a7cafb26e 100644
--- a/game/03-JavaScript/time.js
+++ b/game/03-JavaScript/time.js
@@ -910,7 +910,7 @@ function hourPassed(hours) {
 	else if (V.wolfpatrolsent >= 1) V.wolfpatrolsent++;
 
 	if (V.robinPillory && V.robinPillory.danger !== undefined) fragment.append(wikifier("robinPilloryHour"));
-	if (V.pillory_tenant.exists && V.pillory_tenant.endTime < V.timeStamp) fragment.append(wikifier("clear_pillory"));
+	if (V.pillory.tenant.exists && V.pillory.tenant.endTime < V.timeStamp) fragment.append(wikifier("clear_pillory"));
 
 	if (C.npc.Sydney.init === 1) {
 		fragment.append(wikifier("sydneySchedule"));
diff --git a/game/03-JavaScript/ui.js b/game/03-JavaScript/ui.js
index c05ccb1a8214ac7076e5211bbe72b8c9c48a30ef..80ce12b12c895d0b31f56d5ca157507a86cfc7d4 100644
--- a/game/03-JavaScript/ui.js
+++ b/game/03-JavaScript/ui.js
@@ -624,6 +624,7 @@ function closeOverlay() {
 	delete V.tempDisable;
 	T.buttons.reset();
 	$("#customOverlay").addClass("hidden").parent().addClass("hidden");
+	$.event.trigger(":oncloseoverlay");
 }
 window.closeOverlay = closeOverlay;
 
diff --git a/game/03-JavaScript/weather/01-setup/location-images.js b/game/03-JavaScript/weather/01-setup/location-images.js
index 2d2f8755f77dfda2146bd946ea6b4ba6ff22c250..f3ff0c7c9c23ad8219a45fcc246e76ef008877a1 100644
--- a/game/03-JavaScript/weather/01-setup/location-images.js
+++ b/game/03-JavaScript/weather/01-setup/location-images.js
@@ -586,7 +586,7 @@ setup.LocationImages = {
 				},
 			},
 			snow: {
-				condition: () => !Weather.bloodMoon && Weather.isSnow,
+				condition: () => Weather.isSnow,
 				image: "snow.png",
 			},
 		},
diff --git a/game/03-JavaScript/weather/03-canvas/01-src/00-classes/sky-canvas.js b/game/03-JavaScript/weather/03-canvas/01-src/00-classes/sky-canvas.js
index af4a9f7324dad37f859ad465df0c13b7819a92a6..831499baff9e6a6b671c2a905eb50b7e5e100d25 100644
--- a/game/03-JavaScript/weather/03-canvas/01-src/00-classes/sky-canvas.js
+++ b/game/03-JavaScript/weather/03-canvas/01-src/00-classes/sky-canvas.js
@@ -190,38 +190,6 @@ Weather.Renderer.Sky = class {
 		V.weatherObj.overcast = round(this.fadables.overcast.factor, 2);
 	}
 
-	updateTooltip() {
-		// Maybe not hardcode this here
-		const key = V.location === "tentworld" ? "tentaclePlains" : Weather.name;
-		const weatherState = Weather.TooltipDescriptions.type[key];
-
-		if (!weatherState) return;
-		const transition = weatherState.transition ? weatherState.transition() : null;
-		const weatherDescription = transition || (typeof weatherState === "string" ? weatherState : resolveValue(weatherState[Weather.skyState], ""));
-
-		const tempDescription = Weather.TooltipDescriptions.temperature();
-		const debug = V.debug
-			? `<br><br><span class="teal">DEBUG:</span>
-			<br><span class="blue">Passage:</span> <span class="yellow">${V.passage}</span>
-			<br><span class="blue">Time:</span> <span class="yellow">${ampm()}</span>
-			<br><span class="blue">Weather:</span> <span class="yellow">${Weather.name}</span>
-			<br><span class="blue">Outside temperature:</span> <span class="yellow">${Weather.toSelectedString(Weather.temperature)}</span>
-			<br><span class="blue">Inside temperature:</span> <span class="yellow">${Weather.toSelectedString(Weather.insideTemperature)}</span>
-			<br><span class="blue">Water temperature:</span> <span class="yellow">${Weather.toSelectedString(Weather.waterTemperature)}</span>
-			<br><span class="blue">Body temperature:</span> <span class="yellow">${Weather.toSelectedString(Weather.bodyTemperature)}</span>
-			<br><span class="blue">Sun intensity:</span> <span class="yellow">${round(Weather.sunIntensity * 100, 2)}% (${V.outside ? "outside" : "inside"})</span>
-			<br><span class="blue">Overcast amount:</span> <span class="yellow">${round(Weather.overcast * 100, 2)}%</span>
-			<br><span class="blue">Fog amount:</span> <span class="yellow">${round(Weather.fog * 100, 2)}%</span>
-			<br><span class="blue">Snow ground accumulation:</span> <span class="yellow">${V.weatherObj.snow}mm</span>
-			<br><span class="blue">Lake ice thickness:</span> <span class="yellow">${V.weatherObj.ice.lake ?? 0}mm</span>`
-			: "";
-		this.skybox.tooltip({
-			message: `${weatherDescription}<br>${tempDescription}${debug}`,
-			delay: 200,
-			position: "cursor",
-		});
-	}
-
 	get dayFactor() {
 		return this.orbitals.sun?.factor ?? 0;
 	}
diff --git a/game/04-Variables/canvasmodel-00-data.js b/game/04-Variables/canvasmodel-00-data.js
index 21db840b37a0f13747bf8c560bd2fc10e48c9bdd..7ade0a7b4dc10caaaa61fbd87e0050584a4cdc51 100644
--- a/game/04-Variables/canvasmodel-00-data.js
+++ b/game/04-Variables/canvasmodel-00-data.js
@@ -1,6 +1,9 @@
 const ZIndices = {
+	flatlight: -4,
+	gradientlight: -3,
+	glowlight: -2,
+	spotlight: -1,
 	bg: 0,
-
 	over_head_back: 0,
 	head_back: 1,
 	basehead: 5,
diff --git a/game/04-Variables/canvasmodel-main.js b/game/04-Variables/canvasmodel-main.js
index 02fa29fded338922bf4142f4d99e22d63a1a1bdf..a577d4a52816cb04d9864ea29848fdc841b1943c 100644
--- a/game/04-Variables/canvasmodel-main.js
+++ b/game/04-Variables/canvasmodel-main.js
@@ -239,9 +239,10 @@ Renderer.CanvasModels["main"] = {
 	width: 256,
 	height: 256,
 	frames: 2,
+	scale: true, // Can be overriden for each layer
 	generatedOptions() {
 		return [
-			"blink_animation",
+			"blink_animation",	
 			"genitals_chastity",
 			"handheld_position",
 			"handheld_overhead",
@@ -513,7 +514,36 @@ Renderer.CanvasModels["main"] = {
 			"zupperleft": ZIndices.upper_arms, // generated options
 			"zupperright": ZIndices.upper_arms, // generated options
 			// filters
-			"filters": {}
+			"filters": {},
+			"lights": {
+				yOffset: 59,
+				xOffset: -7,
+				spotlight: {
+					maxAlpha: 0.6,
+					radiusX: 50,
+					radiusY: 15,
+				},
+				glow: {
+					maxAlpha: 0.6,
+					radiusX: 55,
+					radiusY: 100,
+					yOffset: -82,
+				},
+				gradient: {
+					enabled: true,
+					height: 200,
+					maxAlpha: 0.6,
+				},
+				flat: {
+					enabled: true,
+					maxAlpha: 0.6,
+				},
+				colors: {
+					default: "#ffffff",
+					angel: "#ffd700",
+					demon: "#8B008B",
+				}
+			},
 		}
 	},
 	preprocess(options) {
@@ -918,6 +948,118 @@ Renderer.CanvasModels["main"] = {
 		}
 	},
 	layers: {
+		"spotlight": {
+			srcfn(options) {
+				if (!options.lights) return "";
+				const spotlightCanvas = new BaseCanvas(Renderer.CanvasModels["main"].width, Renderer.CanvasModels["main"].height, 1);
+
+				const centerX = spotlightCanvas.element.width / 2;
+				const centerY = spotlightCanvas.element.height / 2;
+
+				drawRadialGradient(
+					spotlightCanvas.ctx,
+					centerX,
+					centerY,
+					options.lights.xOffset,
+					options.lights.yOffset,
+					options.lights.spotlight.radiusX,
+					options.lights.spotlight.radiusY,
+					options.lights.spotlight.maxAlpha,
+					V.options.lightSpotlight,
+				);
+
+				return spotlightCanvas.element;
+			},
+			blendfn(options) {
+				return lightBlendColor(options);
+			},
+			blendMode: "screen",
+			showfn(options) {
+				return V.options.characterLightEnabled;
+			},
+			z: ZIndices.spotlight,
+		},
+		"glow": {
+			srcfn(options) {
+				if (!options.lights) return "";
+				const glowCanvas = new BaseCanvas(Renderer.CanvasModels["main"].width, Renderer.CanvasModels["main"].height, 1);
+
+				const centerX = glowCanvas.element.width / 2;
+				const centerY = glowCanvas.element.height / 2;
+
+				drawRadialGradient(
+					glowCanvas.ctx,
+					centerX,
+					centerY,
+					options.lights.xOffset,
+					options.lights.yOffset + options.lights.glow.yOffset,
+					options.lights.glow.radiusX,
+					options.lights.glow.radiusY,
+					options.lights.glow.maxAlpha,
+					V.options.lightGlow,
+				);
+
+				return glowCanvas.element;
+			},
+			blendfn(options) {
+				return lightBlendColor(options);
+			},
+			blendMode: "screen",
+			showfn() {
+				return V.options.characterLightEnabled;
+			},
+			z: ZIndices.glowlight,
+		},
+		"linearGradient": {
+			srcfn(options) {
+				if (!options.lights) return "";
+				const linearGradientCanvas = new BaseCanvas(Renderer.CanvasModels["main"].width, Renderer.CanvasModels["main"].height, 1);
+
+				// Draw linear gradient
+				drawLinearGradient(
+					linearGradientCanvas.ctx,
+					options.lights.gradient.maxAlpha,
+					V.options.lightGradient,
+					options.lights.gradient.height
+				);
+
+				return linearGradientCanvas.element;
+			},
+			blendfn(options) {
+				return lightBlendColor(options);
+			},
+			blendMode: "screen",
+			showfn(options) {
+				return V.options.characterLightEnabled && options.lights.gradient.enabled;
+			},
+			z: ZIndices.gradientlight,
+		},
+		"flatColorOverlay": {
+			srcfn(options) {
+				if (!options.lights) return "";
+				const flatColorCanvas = new BaseCanvas(Renderer.CanvasModels["main"].width, Renderer.CanvasModels["main"].height, 1);
+
+				const flatColor = "#ffffff";
+
+				// Draw flat color overlay
+				drawColorOverlay(
+					flatColorCanvas.ctx,
+					flatColor,
+					options.lights.flat.maxAlpha,
+					V.options.lightFlat
+				);
+
+				return flatColorCanvas.element;
+			},
+			blendfn(options) {
+				return lightBlendColor(options);
+			},
+			blendMode: "screen",
+			showfn(options) {
+				return V.options.characterLightEnabled && options.lights.flat.enabled;
+			},
+			z: ZIndices.flatlight,
+		},
 		// banner comments generated in http://patorjk.com/software/taag/#p=display&c=c&f=ANSI%20Regular&t=base
 		/***
 		 *    ██████   █████  ███████ ███████
@@ -2931,15 +3073,6 @@ Renderer.CanvasModels["main"] = {
 				return options.belly_mask_src;
 			},
 		}),
-		/*** Did not work ***/
-		// "upper_belly_shadow": genlayer_clothing_belly_highlight("upper", {
-		// 	zfn(options) {
-		// 		return options.zupper;
-		// 	},
-		// 	masksrcfn(options) {
-		// 		return options.belly_mask_upper_shadow_src;
-		// 	},
-		// }),
 		"upper_belly_acc": genlayer_clothing_belly_acc("upper", {
 			zfn(options) {
 				return options.zupper;
@@ -4014,6 +4147,53 @@ function getWritingImgPathArrow(area_name, writing) {
 	return '';
 }
 
+function drawRadialGradient(ctx, centerX, centerY, xOffset, yOffset, radiusX, radiusY, maxAlpha, intensity) {
+	const alpha = intensity * maxAlpha;
+	ctx.save();
+	ctx.scale(radiusX / radiusY, 1);
+
+	const gradient = ctx.createRadialGradient(
+		(centerX + xOffset) * (radiusY / radiusX),
+		(centerY + yOffset),
+		0,
+		(centerX + xOffset) * (radiusY / radiusX),
+		(centerY + yOffset),
+		radiusY
+	);
+
+	gradient.addColorStop(0, `rgba(255, 255, 255, ${alpha})`);
+	gradient.addColorStop(0.5, `rgba(255, 255, 255, ${alpha * 0.33})`);
+	gradient.addColorStop(1, 'rgba(255, 255, 255, 0)');
+	ctx.fillStyle = gradient;
+	ctx.filter = "blur(1px)";
+	ctx.imageSmoothingEnabled = true;
+	ctx.fillRect(0, 0, ctx.canvas.width * (radiusY / radiusX), ctx.canvas.height);
+	ctx.restore();
+}
+
+function drawLinearGradient(ctx, maxAlpha, intensity, height) {
+	const alpha = intensity * maxAlpha;
+	const gradient = ctx.createLinearGradient(0, 0, 0, height);
+	gradient.addColorStop(0, `rgba(255, 255, 255, ${alpha})`);
+	gradient.addColorStop(1, 'rgba(255, 255, 255, 0)');
+	ctx.fillStyle = gradient;
+	ctx.fillRect(0, 0, ctx.canvas.width, height);
+}
+
+function drawColorOverlay(ctx, color, maxAlpha, intensity) {
+	const alpha = Math.round((intensity * maxAlpha) * 255).toString(16).padStart(2, "0")
+	const rgbaColor = tinycolor(color + alpha).toRgbString();
+	ctx.fillStyle = rgbaColor;
+	ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height);
+}
+
+function lightBlendColor(options) {
+	if(!V.angel && !V.demon) return false;
+	const baseColor = V.angel ? options.lights.colors.angel : options.lights.colors.demon;
+	const factor = Math.abs((V.angel / 6 - V.demon / 6) * V.options.lightTFColor);
+	return ColourUtils.interpolateColor("#ffffff", baseColor, factor);
+}
+
 // Layer generating functions.
 function getClothingPathBreastsAcc(slot, options) {
 	const worn = `worn_${slot}`;
@@ -4364,23 +4544,6 @@ function genlayer_clothing_belly_shadow(slot, overrideOptions) {
 	}, overrideOptions));
 }
 
-/*** Did not work ***/
-// function genlayer_clothing_belly_highlight(slot, overrideOptions) {
-// 	return genlayer_clothing_belly_shadow(slot, Object.assign({
-// 		dxfn(options) {
-// 			if (options.belly >= 24) return 10;
-// 			if (options.belly >= 23) return 8;
-// 			if (options.belly >= 22) return 6;
-// 			if (options.belly >= 19) return 4;
-// 			if (options.belly >= 15) return 2;
-// 			return 0;
-// 		},
-// 		brightnessfn(options) {
-// 			return between(options.belly, 11, 24) ? 0.15 : 0;
-// 		},
-// 	}, overrideOptions));
-// }
-
 function genlayer_clothing_belly_acc(slot, overrideOptions) {
 	const worn = `worn_${slot}`;
 
@@ -4679,3 +4842,13 @@ function genlayer_clothing_arm_acc_fitted(arm, slot, overrideOptions) {
 		},
 	}, overrideOptions))
 }
+
+/* Events */
+$(document).on(":onloadsave", () => {
+	if (!Renderer.lastModel) return;
+	Renderer.refresh(Renderer.lastModel);
+});
+$(document).on(":oncloseoverlay", () => {
+	if (!Renderer.lastModel) return;
+	Renderer.refresh(Renderer.lastModel);
+});
diff --git a/game/04-Variables/variables-passageFooter.twee b/game/04-Variables/variables-passageFooter.twee
index 975eee494773df6c8b5759853e2086eee020ae00..909620ecc68d298384b326723be6e10999d999bd 100644
--- a/game/04-Variables/variables-passageFooter.twee
+++ b/game/04-Variables/variables-passageFooter.twee
@@ -28,17 +28,7 @@
 		<<link "Ignore for now">><<set $saveDetails.exported.days to Math.floor(Time.days - ($saveDetails.exported.frequency * 0.5))>><<addclass #exportWarning "hidden">><</link>>
 	</div>
 <</if>>
-<<if $replayScene isnot undefined>>
-	<<if $replayScene.startPassage is $passage or $passage is "Scene Viewer End">>
-	<<elseif !$replayScene.passages.includes($passage)>>
-		<!-- todo: replace goto with something that doesn't have a potential to fuck up the history -->
-		<<goto "Scene Viewer End">>
-	<</if>>
-	<<if $replayScene is undefined>>
-	<<elseif $replayScene.startPassage>>
-		<<run delete $replayScene.startPassage>>
-	<</if>>
-<</if>>
+
 <div id="customOverlayContainer" class="customOverlayContainer no-numberify hidden" onclick="closeOverlay()">
 	<div id="customOverlay" @class="'customOverlay hidden' + ($options.overlayFontSize ? ' fontSize' + $options.overlayFontSize : '') + ($options.overlayLineHeight ? ' lineHeight' + $options.overlayLineHeight.toString().replace('.','') : '')" onclick="event.stopPropagation()">
 		<div id="customOverlayTitle"></div>
diff --git a/game/04-Variables/variables-start.twee b/game/04-Variables/variables-start.twee
index 6b74e3b338fba1f6d3ede6570bdf0b784a004571..72769152fa8da559be31b9e5bd96eec209f79a8b 100644
--- a/game/04-Variables/variables-start.twee
+++ b/game/04-Variables/variables-start.twee
@@ -868,7 +868,8 @@
 	<<bodywriting_init>>
 
 	/*pillory related*/
-	<<if ndef $pillory_tenant>><<setup_pillory>><</if>>
+	<<set $pillory to {}>>
+	<<if ndef $pillory.tenant>><<setup_pillory>><</if>>
 	<<set $police_access_card to 0>>
 	<<set $police_intro to 0>>
 	<<set $police_hack to 0>>
diff --git a/game/04-Variables/variables-versionUpdate.twee b/game/04-Variables/variables-versionUpdate.twee
index c37decf44166014297f1fb286f0de888f56d49a5..2c004666366acdc275e3928981f513c98a0c1594 100644
--- a/game/04-Variables/variables-versionUpdate.twee
+++ b/game/04-Variables/variables-versionUpdate.twee
@@ -961,7 +961,10 @@
 		<<set $chef_sus to 0>>
 	<</if>>
 
-	<<if ndef $pillory_tenant>> /* Pillory related */
+	<<if $pillory is undefined>>
+		<<set $pillory to {}>>
+	<</if>>
+	<<if $pillory.tenant is undefined>> /* Pillory related */
 		<<setup_pillory>>
 	<</if>>
 	<<if ndef $police_intro>>							/* Police hack related*/
@@ -3959,7 +3962,7 @@
 		<<set $whitneyrescued to true>>
 		<<set C.npc.Whitney.state to "active">>
 	<</if>>
-	<<if $pillory_tenant.special.name is "Whitney" and C.npc.Whitney.state isnot "pillory">>
+	<<if $pillory_tenant isnot undefined and ($pillory_tenant.special.name is "Whitney" and C.npc.Whitney.state isnot "pillory")>>
 		<!-- Making "pillory" a state means that whitney's state shouldn't be anything but "pillory" when they're locked up -->
 		<<set C.npc.Whitney.state to "pillory">>
 	<</if>>
@@ -4676,7 +4679,7 @@
 	<</if>>
 
 	<!-- V.pillory_tenant.endDate update -->
-	<<if !$pillory_tenant.endDate and $pillory_tenant.endday>>
+	<<if $pillory_tenant isnot undefined and (!$pillory_tenant.endDate and $pillory_tenant.endday)>>
 		<<set $pillory_tenant.endDate to ($pillory_tenant.endday * TimeConstants.secondsPerDay + ($pillory_tenant.endhour - 7) * TimeConstants.secondsPerHour)>>
 		<<run delete $pillory_tenant.endday>>
 	<</if>>
@@ -5164,7 +5167,7 @@
     <</if>>
 
 	<!-- Pillory time fixes -->
-	<<if $pillory_tenant.starthour isnot undefined or $pillory_tenant.startday isnot undefined>>
+	<<if $pillory_tenant isnot undefined and ($pillory_tenant.starthour isnot undefined or $pillory_tenant.startday isnot undefined)>>
 		<!-- The start day / hour are broken anyways - so resetting the starttime to current time -->
 		<<set $_newTime to new DateTime(Time.date)>>
 		<<set $_endTime to new DateTime($_newTime.timeStamp).addHours($pillory_tenant.duration)>>
@@ -5265,4 +5268,31 @@
 	<<if !Number.isFinite($money)>>
 		<<set $money to 0>>
 	<</if>>
+
+	<!-- 5.0.6 -->
+	<<if $pillory is undefined>>
+		<<set $pillory to {}>>
+	<</if>>
+	<<if $pillorytime isnot undefined>>
+		<<set _pilloryStartTime to new DateTime(Time.date)>>
+		<<set _pilloryEndTime to new DateTime(Time.date).addMinutes(60 - Time.date.minute)>>
+		<<if !isNaN($pillorytime) and $pillorytime gte 0>>
+			<<set _pilloryEndTime.addHours($pillortime)>>
+		<</if>>
+		<<set $pillory.time to {
+			start: _pilloryStartTime.timeStamp,
+			end: _pilloryEndTime.timeStamp,
+		}>>
+		<<unset $pillorytime>>
+	<</if>>
+	<<if $pilloryaudience isnot undefined>>
+		<<if !isNaN($pilloryaudience) and $pilloryaudience gte 0>>
+			<<set $pillory.audience to $pilloryaudience>>
+		<</if>>
+		<<unset $pilloryaudience>>
+	<</if>>
+	<<if $pillory_tenant isnot undefined>>
+		<<set $pillory.tenant to $pillory_tenant>>
+		<<unset $pillory_tenant>>
+	<</if>>
 <</widget>>
diff --git a/game/base-clothing/canvasmodel-img.twee b/game/base-clothing/canvasmodel-img.twee
index 8d15221adca109baf4b41e03e8ceaa2cc0dfab55..688fd3cd12e13d6e2a711b3b91724917bdd09e3f 100644
--- a/game/base-clothing/canvasmodel-img.twee
+++ b/game/base-clothing/canvasmodel-img.twee
@@ -700,7 +700,8 @@ Set model options & filters for player clothes
 		<<set _modeloptions.worn_under_lower to $worn.under_lower.index>>
 		<<set _modeloptions.worn_under_lower_colour to ($worn.under_lower.colourCustom ? $worn.under_lower.colourCustom : $worn.under_lower.colour)>>
 	<</if>>
-
+	<<set _modeloptions.lights.gradient.enabled = false>>
+	<<set _modeloptions.lights.flat.enabled = false>>
 	<<rendermodel>>
 <</widget>>
 
diff --git a/game/base-clothing/images.twee b/game/base-clothing/images.twee
index 4dcfc3b0378f3e951ab859f1b0f39fdcfe1fd6f6..bd930b28867d75a6ca862027b9356849fb7fb100 100644
--- a/game/base-clothing/images.twee
+++ b/game/base-clothing/images.twee
@@ -4,7 +4,7 @@
 	<<if !_thermoDisable>>
 		<<thermometer>>
 	<</if>>
-	<<charLight "118px" "183px">>
+
 	<div id="imgInv">
 		<<if $condoms>>
 			<div><<condomsSidebar>></div>
@@ -16,7 +16,7 @@
 		<</if>>
 	</div>
 	<div id="img" @class="limitedColourContainerClasses() + ($options.sidebarAnimations isnot false ? '':' noAnimations') + ' offset-sidebar-img'">
-	<<canvasimg>>
+	<<canvasimg "mainCanvas">>
 	<div id="characterTooltip"></div>
 	</div>
 <</widget>>
@@ -2983,7 +2983,6 @@
 <<widget "player-base-body">>
 	<<set _filters to $skinColor.current>>
 	<div id="img" @class="limitedColourContainerClasses() + ' noAnimations'">
-		<<charLight "118px" "187px" "limited">>
 		<<canvas-player-base-body>>
 	</div>
 <</widget>>
diff --git a/game/base-clothing/lighting.twee b/game/base-clothing/lighting.twee
index 8120f6f8cc028dab4d1448cd318d60d25023d933..b749833a4e79bbf97ff5b4bb4df688558e026baa 100644
--- a/game/base-clothing/lighting.twee
+++ b/game/base-clothing/lighting.twee
@@ -1,30 +1,4 @@
 :: Character lighting widgets [widget]
-<<widget "charLight">>
-	<<if $options.characterLightEnabled and $options.images is 1>>
-		/* Position glow and spotlight */
-		<<set _offsetX = _args[0]>>
-		<<set _offsetY = _args[1]>>
-
-		/* If _class == "limited" then only show spotlight and glow */
-		<<set _class = _args[2] || "">>
-
-		<<set _angelDemonBalance = ($angel / 6 - $demon / 6) * $options.lightTFColor>>
-		<<set _sliderMult = 0.5>>
-
-		<div @class="'char-light ' + _class" @style="
-			'--offset-x: ' + _offsetX +
-			'; --offset-y: ' + _offsetY +
-			'; --spotlight: ' + ($options.lightSpotlight * _sliderMult) +
-			'; --gradient: ' + ($options.lightGradient * _sliderMult) +
-			'; --glow: ' + ($options.lightGlow * _sliderMult) +
-			'; --flat: ' + ($options.lightFlat * _sliderMult)
-			">
-			<div class="angel" @style="'opacity: ' + _angelDemonBalance"></div>
-			<div class="demon" @style="'opacity: ' + -_angelDemonBalance"></div>
-		</div>
-	<</if>>
-<</widget>>
-
 <<widget "charLightCombat">>
 	<<if $options.characterLightEnabled and $options.images is 1 and $options.combatImages is 1>>
 		<<set _position = _args[0] || "">>
diff --git a/game/base-combat/doggy-images.twee b/game/base-combat/doggy-images.twee
index 745e9659fbd4389da1828686eb00299fc9cc7dea..6ab2b9acbae7b5cc3329f644c762f907fa5fc597 100644
--- a/game/base-combat/doggy-images.twee
+++ b/game/base-combat/doggy-images.twee
@@ -451,13 +451,13 @@
 				<<elseif $walltype is "horse_pillory">>
 					<img class="layer-apparatus anim-idle-2f" src="img/sex/doggy/active/pillory/horse_pillory.png">
 				<<elseif $walltype is "pillory">>
-					<<if $pilloryaudience gte 5>>
+					<<if $pillory.audience gte 5>>
 						<img class="layer-frontapparatus anim-idle-2f" src="img/sex/doggy/active/pillory/pillorytomatoes4_active.png">
-					<<elseif $pilloryaudience gte 4>>
+					<<elseif $pillory.audience gte 4>>
 						<img class="layer-frontapparatus anim-idle-2f" src="img/sex/doggy/active/pillory/pillorytomatoes3_active.png">
-					<<elseif $pilloryaudience gte 3>>
+					<<elseif $pillory.audience gte 3>>
 						<img class="layer-frontapparatus anim-idle-2f" src="img/sex/doggy/active/pillory/pillorytomatoes2_active.png">
-					<<elseif $pilloryaudience gte 2>>
+					<<elseif $pillory.audience gte 2>>
 						<img class="layer-frontapparatus anim-idle-2f" src="img/sex/doggy/active/pillory/pillorytomatoes1_active.png">
 					<</if>>
 					<img class="layer-apparatus anim-idle-2f" src="img/sex/doggy/active/pillory/pillorydirty_active.png">
@@ -810,13 +810,13 @@
 				<<elseif $walltype is "horse_pillory">>
 					<img @class="'layer-midapparatus anim-doggy-4f-'+_animspeed" src="img/sex/doggy/active/pillory/horse_pillory.png">
 				<<elseif $walltype is "pillory">>
-					<<if $pilloryaudience gte 5>>
+					<<if $pillory.audience gte 5>>
 						<img @class="'layer-frontapparatus anim-doggy-4f-'+_animspeed" src="img/sex/doggy/active/pillory/pillorytomatoes4_active.png">
-					<<elseif $pilloryaudience gte 4>>
+					<<elseif $pillory.audience gte 4>>
 						<img @class="'layer-frontapparatus anim-doggy-4f-'+_animspeed" src="img/sex/doggy/active/pillory/pillorytomatoes3_active.png">
-					<<elseif $pilloryaudience gte 3>>
+					<<elseif $pillory.audience gte 3>>
 						<img @class="'layer-frontapparatus anim-doggy-4f-'+_animspeed" src="img/sex/doggy/active/pillory/pillorytomatoes2_active.png">
-					<<elseif $pilloryaudience gte 2>>
+					<<elseif $pillory.audience gte 2>>
 						<img @class="'layer-frontapparatus anim-doggy-4f-'+_animspeed" src="img/sex/doggy/active/pillory/pillorytomatoes1_active.png">
 					<</if>>
 					<img @class="'layer-apparatus anim-doggy-4f-'+_animspeed" src="img/sex/doggy/active/pillory/pillorydirty_active.png">
diff --git a/game/base-combat/ejaculation.twee b/game/base-combat/ejaculation.twee
index f8cf0d789a76b749fe2300c74a9b6083cc136cbb..5323e0b16c5b25f88082d9a446d254cc33c0bb72 100644
--- a/game/base-combat/ejaculation.twee
+++ b/game/base-combat/ejaculation.twee
@@ -2848,7 +2848,7 @@
 		<<else>>
 			having pleasured yourself with a
 		<</if>>
-		<<if $audience gte 6 or $pilloryaudience gte 6>> <<beasttype>> in front of a crowd.<<elseif $audiencepresent gte 1 or $pilloryaudience gte 1>> <<beasttype>> in front of others.<<else>><<beasttype>>.<</if>>
+		<<if $audience gte 6 or $pillory.audience gte 6>> <<beasttype>> in front of a crowd.<<elseif $audiencepresent gte 1 or $pillory.audience gte 1>> <<beasttype>> in front of others.<<else>><<beasttype>>.<</if>>
 	<<else>>
 		<<if $deviancy gte 75>>
 			<<print either("You feel ashamed,", "You feel embarrassed,", "You feel distraught,")>>
@@ -2866,7 +2866,7 @@
 			<<else>>
 				having pleasured a <<beasttype>>
 			<</if>>
-		<<if $audience gte 6 or $pilloryaudience gte 6>> in front of a crowd.<<elseif $audiencepresent gte 1 or $pilloryaudience gte 1>> in front of others.<<else>> against your will.<</if>>
+		<<if $audience gte 6 or $pillory.audience gte 6>> in front of a crowd.<<elseif $audiencepresent gte 1 or $pillory.audience gte 1>> in front of others.<<else>> against your will.<</if>>
 	<</if>>
 
 	<<if $options.images is 1 and $options.combatImages is 1>>
diff --git a/game/base-debug/scene-viewer.twee b/game/base-debug/scene-viewer.twee
index 23701af4c484859657c82c515cc1caab1fa7b7a1..f9f1fc97b901ebf446b4a90b4c5aee5a89002929 100644
--- a/game/base-debug/scene-viewer.twee
+++ b/game/base-debug/scene-viewer.twee
@@ -45,8 +45,8 @@ End of '<<print $replayScene.name>>' scene.
 		Error occurred in scene viewer. <<print $replayScene.name>>. Please report.
 		<br><br>
 		<<set _exitpassage to clone($replayScene.exitpassage)>>
-		<<unset $replayScene>>
 		<<unfreezePlayerStats>>
+		<<unset $replayScene>>
 		<<link [[Back|_exitpassage]]>>
 		<</link>>
 <</switch>>
@@ -657,15 +657,11 @@ End of '<<print $replayScene.name>>' scene.
 
 <<widget "freezePlayerStats">>
 	<<script>>
+		setup.skipKeysOnFreeze = ["replayScene", "frozenValues", "statFreeze", "passage", "debug", "debugMenu", "options"];
 		V.statFreeze = true;
-		const skipKeys = ["replayScene", "frozenValues", "statFreeze", "passage", "debug", "options"];
 		V.frozenValues = {};
-
 		V.frozenValues.deepMerge(V, (key, value, depth) => {
-			if ((depth === 1 && skipKeys.includes(key)) || typeof value === "function") {
-				return false;
-			}
-			return true;
+			return !(depth === 1 && setup.skipKeysOnFreeze.includes(key)) && typeof value !== "function";
 		});
 	<</script>>
 <</widget>>
@@ -674,12 +670,18 @@ End of '<<print $replayScene.name>>' scene.
 	<<script>>
 		delete V.statFreeze;
 		if (V.frozenValues) {
-			V.deepMerge(V.frozenValues);
+			const retainedKeys = Object.fromEntries(
+				Object.entries(V).filter(([key]) => setup.skipKeysOnFreeze.includes(key))
+			);
+			V.deepMerge(V.frozenValues, "strict-replace");
+			Object.assign(V, retainedKeys);
 			delete V.frozenValues;
 			Time.set();
 		}
 	<</script>>
-	<<doVersionCheck>>
+	<<if $replayScene is undefined>>
+		<<doVersionCheck>>
+	<</if>>
 <</widget>>
 
 <!-- False passages to initiate scene viewer scenes, for cases where starting passages have too many potential roadblocks -->
diff --git a/game/base-system/caption.twee b/game/base-system/caption.twee
index 5e319261a46b588a156278f4e75db6eb1b33f598..847d71ca5cc9a2d064022bf1fab3cc915c9824f7 100644
--- a/game/base-system/caption.twee
+++ b/game/base-system/caption.twee
@@ -340,7 +340,7 @@
 	<<if StartConfig.enableImages is true>>
 		<div id="startingPlayerImage" class="hidden"></div>
 	<</if>>
-	<div id="overlayButtons">
+	<div id="startCaption">
 		<<startCaption>>
 	</div>
 <</if>>
@@ -555,8 +555,7 @@
 		<<set _clothesType to (_clothesType is "male" ? "female" : "male")>>
 	<</if>>
 
-	<div id="img" @class="'hair-'+ $hairselect + ' noAnimations'">
-		<<charLight "118px" "187px" "limited">>
+	<div id="startImg" @class="'hair-'+ $hairselect + ' noAnimations'">
 		/*Prep for image checks*/
 		<<switch $player.breastsize>>
 		<<case 12>>
@@ -643,6 +642,8 @@
 				}
 			}
 			_modeloptions.crotch_visible = !_showClothes && !_showUnderwear;
+			_modeloptions.lights.gradient.enabled = false;
+			_modeloptions.lights.flat.enabled = false;
 		<</twinescript>>
 		<<rendermodel>>
 	</div>
diff --git a/game/base-system/overlays/options.twee b/game/base-system/overlays/options.twee
index 4cc70ddabc994cd524aa259205b2bef759ac185b..4b5f8f10b57ee8e63b9b2f5d981e57f30f178bf5 100644
--- a/game/base-system/overlays/options.twee
+++ b/game/base-system/overlays/options.twee
@@ -480,13 +480,13 @@ IMPORTANT:
 		<br>
 		<span class="gold">Character Lighting</span>
 		<div>
-			<div class="settingsToggle" onchange="new Wikifier(null, '<<updatesidebarimg>>')">
+			<div class="settingsToggle" onchange="Renderer.refresh(Renderer.lastModel);">
 				<label data-target="options.images" data-disabledif="V.options.images===0">
 					<<checkbox "$options.characterLightEnabled" false true autocheck>> Enable character lighting
 				</label>
 			</div>
 			<div style="clear:both;">/*Keep at end of toggles*/</div>
-			<div data-target='["images", "characterLightEnabled"]' data-disabledif="V.options.images===0||V.options.characterLightEnabled===false" oninput="new Wikifier(null, '<<updatesidebarimg>>')">
+			<div data-target='["images", "characterLightEnabled"]' data-disabledif="V.options.images===0||V.options.characterLightEnabled===false" oninput="Renderer.refresh(Renderer.lastModel);">
 				<div class="settingsToggle">
 					<label>
 						Spotlight<br>
diff --git a/game/base-system/widgets.js b/game/base-system/widgets.js
index 799fa5284dac8f0922ced6b4da3ddbf5ed555bb9..1a65528cfb6362b2f2a5510660b82fc8a3adcb5e 100644
--- a/game/base-system/widgets.js
+++ b/game/base-system/widgets.js
@@ -164,8 +164,8 @@ function genderappearancecheck() {
 	addfemininityfromfactor(Math.trunc(((V.physique + V.physiquesize / 2) / V.physiquesize) * -100), "Toned muscles");
 	/* Behaviour */
 	setfemininitymultiplierfromgender(V.player.gender_posture);
-	T.acting_multiplier = V.englishtrait + 1;
-	addfemininityfromfactor(T.femininity_multiplier * 100 * T.acting_multiplier, "Posture (x" + T.acting_multiplier + " effectiveness due to English skill)");
+	const actingMultiplier = V.englishtrait + 1;
+	addfemininityfromfactor(T.femininity_multiplier * 100 * actingMultiplier, "Posture (x" + actingMultiplier + " effectiveness due to English skill)");
 	/* Special handling for calculating topless gender */
 	T.over_lower_protected = V.worn.over_lower.exposed < 2;
 	T.lower_protected = V.worn.lower.exposed < 2;
diff --git a/game/base-system/widgets.twee b/game/base-system/widgets.twee
index 87eaad76777a791b0f14645883528e8bf8c66a72..23d303d80cafd3e34106bda48d18b9b68ea658d0 100644
--- a/game/base-system/widgets.twee
+++ b/game/base-system/widgets.twee
@@ -3907,7 +3907,7 @@
 <</widget>>
 
 <<widget "setup_pillory">>
-	<<set $pillory_tenant to {person : clone($baseNPC), exists : 0, duration : 0, served : 0, startTime: 0, endTime : 0,
+	<<set $pillory.tenant to {person : clone($baseNPC), exists : 0, duration : 0, served : 0, startTime: 0, endTime : 0,
 		crowd : 0, wet : 0, upperexposed : 0 , lowerexposed : 0, fruit : 0, fruitstock: 0, face : 0, ass : 0, genital : 0, broken : 0,
 		lastviewed : 0, special : {name : "", desc : ""}}>>
 <</widget>>
@@ -3919,30 +3919,30 @@
 	<<else>>
 		<<set $_already_served to 0>>
 	<</if>>
-	<<set $pillory_tenant.exists to 1>>
-	<<set $pillory_tenant.person to clone($NPCList[0])>>
-	<<set $pillory_tenant.duration to random(4,27)>>
+	<<set $pillory.tenant.exists to 1>>
+	<<set $pillory.tenant.person to clone($NPCList[0])>>
+	<<set $pillory.tenant.duration to random(4,27)>>
 
 	<<set $_duration to random(4,27)>>
 	<<set $_endTime to new DateTime(Time.date).addHours($_duration)>>
-	<<set $pillory_tenant.startTime to Time.date.timeStamp>>
-	<<set $pillory_tenant.endTime to $_endTime.timeStamp>>
-
-	<<set $pillory_tenant.crowd to 1>>
-	<<set $pillory_tenant.wet to 0>>
-	<<set $pillory_tenant.upperexposed to 0>>
-	<<set $pillory_tenant.lowerexposed to 0>>
-	<<set $pillory_tenant.fruit to 0>>
-	<<set $pillory_tenant.fruitstock to 3>>
-	<<set $pillory_tenant.spank to 0>>
-	<<set $pillory_tenant.face to 0>>
-	<<set $pillory_tenant.ass to 0>>
-	<<set $pillory_tenant.genital to 0>>
-	<<set $pillory_tenant.broken to 0>>
-	<<set $pillory_tenant.lastViewed to Time.date.timeStamp>>
+	<<set $pillory.tenant.startTime to Time.date.timeStamp>>
+	<<set $pillory.tenant.endTime to $_endTime.timeStamp>>
+
+	<<set $pillory.tenant.crowd to 1>>
+	<<set $pillory.tenant.wet to 0>>
+	<<set $pillory.tenant.upperexposed to 0>>
+	<<set $pillory.tenant.lowerexposed to 0>>
+	<<set $pillory.tenant.fruit to 0>>
+	<<set $pillory.tenant.fruitstock to 3>>
+	<<set $pillory.tenant.spank to 0>>
+	<<set $pillory.tenant.face to 0>>
+	<<set $pillory.tenant.ass to 0>>
+	<<set $pillory.tenant.genital to 0>>
+	<<set $pillory.tenant.broken to 0>>
+	<<set $pillory.tenant.lastViewed to Time.date.timeStamp>>
 
 	<<person1>>
-	<<if $pillory_tenant.special.name is "">>
+	<<if $pillory.tenant.special.name is "">>
 		A <<person>> <<if $_already_served is 0>>is currently being locked into the pillory.<<else>>has recently been locked in the pillory.<</if>>
 		<<endevent>>
 		<<npc_pillory_release_schedule>>
@@ -3958,8 +3958,8 @@
 	<<clear_pillory>>
 	<<npc Whitney>>
 	<<set C.npc.Whitney.state to "pillory">>
-	<<set $pillory_tenant.special.name to "Whitney">>
-	<<set $pillory_tenant.special.desc to C.npc.Whitney.title>>
+	<<set $pillory.tenant.special.name to "Whitney">>
+	<<set $pillory.tenant.special.desc to C.npc.Whitney.title>>
 	<<new_npc_pillory $NPCList[0]>>
 	<<endevent>>
 	<<set $framed to 0>>
@@ -3968,8 +3968,8 @@
 <<widget "imprison_leighton">>
 	<<clear_pillory>>
 	<<npc Leighton>>
-	<<set $pillory_tenant.special.name to "Leighton">>
-	<<set $pillory_tenant.special.desc to C.npc.Leighton.title>>
+	<<set $pillory.tenant.special.name to "Leighton">>
+	<<set $pillory.tenant.special.desc to C.npc.Leighton.title>>
 	<<new_npc_pillory $NPCList[0]>>
 	<<endevent>>
 	<<set $framed to 0>>
@@ -3983,23 +3983,23 @@
 		<<set _id to _args[0]>>
 	<</if>>
 	<<if _args[1]>>
-		<<set $pillory_tenant.special.desc to _args[1]>>
+		<<set $pillory.tenant.special.desc to _args[1]>>
 	<</if>>
 	<<new_npc_pillory $NPCList[_id]>>
 	<<endevent>>
 <</widget>>
 
 <<widget "get_pillory_npc">>
-	<<set $NPCList[0] to clone($pillory_tenant.person)>><<person1>>
+	<<set $NPCList[0] to clone($pillory.tenant.person)>><<person1>>
 <</widget>>
 
 <<widget "A_pillory_person">>  /* Can't simplify to <<pillory_person>> because: 'a thin man', but not 'a Whitney') */
 	<<silently>><<set _out to "">>
 	<<get_pillory_npc>>
-	<<if $pillory_tenant.special.name is "">>
+	<<if $pillory.tenant.special.name is "">>
 		<<set _out += "A <<person>>">>
 	<<else>>
-		<<set _out += $pillory_tenant.special.name>>
+		<<set _out += $pillory.tenant.special.name>>
 	<</if>>
 	<</silently>><<print _out>>
 <</widget>>
@@ -4007,10 +4007,10 @@
 <<widget "The_pillory_person">>
 	<<silently>><<set _out to "">>
 	<<get_pillory_npc>>
-	<<if $pillory_tenant.special.name is "">>
+	<<if $pillory.tenant.special.name is "">>
 		<<set _out += "The <<person>>">>
 	<<else>>
-		<<set _out += $pillory_tenant.special.name>>
+		<<set _out += $pillory.tenant.special.name>>
 	<</if>>
 	<</silently>><<print _out>>
 <</widget>>
@@ -4018,10 +4018,10 @@
 <<widget "a_pillory_person">>
 	<<silently>><<set _out to "">>
 	<<get_pillory_npc>>
-	<<if $pillory_tenant.special.name is "">>
+	<<if $pillory.tenant.special.name is "">>
 		<<set _out += "a <<person>>">>
 	<<else>>
-		<<set _out += $pillory_tenant.special.name>>
+		<<set _out += $pillory.tenant.special.name>>
 	<</if>>
 	<</silently>><<print _out>>
 <</widget>>
@@ -4029,10 +4029,10 @@
 <<widget "the_pillory_person">>
 	<<silently>><<set _out to "">>
 	<<get_pillory_npc>>
-	<<if $pillory_tenant.special.name is "">>
+	<<if $pillory.tenant.special.name is "">>
 		<<set _out += "the <<person>>">>
 	<<else>>
-		<<set _out += $pillory_tenant.special.name>>
+		<<set _out += $pillory.tenant.special.name>>
 	<</if>>
 	<</silently>><<print _out>>
 <</widget>>
@@ -4040,10 +4040,10 @@
 <<widget "pillory_type">>
 	<<silently>><<set _out to "">>
 	<<get_pillory_npc>>
-	<<if $pillory_tenant.special.name is "">>
+	<<if $pillory.tenant.special.name is "">>
 		<<set _out += "<<person>>">>
 	<<else>>
-		<<set _out += $pillory_tenant.special.desc>>
+		<<set _out += $pillory.tenant.special.desc>>
 	<</if>>
 	<</silently>><<print _out>>
 <</widget>>
@@ -4069,143 +4069,143 @@
 	<<update_npc_pillory_appearance>>
 	/*Desc*/
 	<<if Time.dayState is "night">>
-		<<if $pillory_tenant.crowd gte 10>>A huge, drunken mob surround
-		<<elseif $pillory_tenant.crowd gte 6>>A large, rowdy mob crowd around
-		<<elseif $pillory_tenant.crowd gte 4>>A sinister crowd huddle around
+		<<if $pillory.tenant.crowd gte 10>>A huge, drunken mob surround
+		<<elseif $pillory.tenant.crowd gte 6>>A large, rowdy mob crowd around
+		<<elseif $pillory.tenant.crowd gte 4>>A sinister crowd huddle around
 		<<else>>A small but sinister group lurk around
 		<</if>>
 	<<else>>
-		<<if $pillory_tenant.crowd gte 10>>An excited, jeering crowd surround
-		<<elseif $pillory_tenant.crowd gte 6>>A large crowd press around
-		<<elseif $pillory_tenant.crowd gte 4>>A curious group hang around
+		<<if $pillory.tenant.crowd gte 10>>An excited, jeering crowd surround
+		<<elseif $pillory.tenant.crowd gte 6>>A large crowd press around
+		<<elseif $pillory.tenant.crowd gte 4>>A curious group hang around
 		<<else>>A small group watch
 		<</if>>
 	<</if>>the <<pillory_type>> locked prone in the pillory.
-	<<if $pillory_tenant.broken gte 32>><<He>> looks traumatised, perhaps permanently broken by the abuse <<hes>> already suffered.
-	<<elseif $pillory_tenant.broken gte 16>><<He>> is weeping from the abuse <<hes>> already suffered.
-	<<elseif $pillory_tenant.broken gte 8>><<He>> is sobbing from the abuse.
-	<<elseif $pillory_tenant.broken gte 4>><<He>> is visibly upset, but trying hard to hide it.
+	<<if $pillory.tenant.broken gte 32>><<He>> looks traumatised, perhaps permanently broken by the abuse <<hes>> already suffered.
+	<<elseif $pillory.tenant.broken gte 16>><<He>> is weeping from the abuse <<hes>> already suffered.
+	<<elseif $pillory.tenant.broken gte 8>><<He>> is sobbing from the abuse.
+	<<elseif $pillory.tenant.broken gte 4>><<He>> is visibly upset, but trying hard to hide it.
 	<<else>><<He>> is defiant, showing a brave face.
 	<</if>>
 	<br>
 
 	/*describe exposure*/
-	<<if $pillory_tenant.upperexposed gte 3>>
-		<<His>> $pillory_tenant.person.breastsdesc are fully exposed to the crowd.
-		<<if $pillory_tenant.spank gte 8>><<His>> nipples are red from being pinched, slapped, sucked, bitten and pulled.
-		<<elseif $pillory_tenant.spank gte 4>><<His>> nipples looks sore from abuse.
+	<<if $pillory.tenant.upperexposed gte 3>>
+		<<His>> $pillory.tenant.person.breastsdesc are fully exposed to the crowd.
+		<<if $pillory.tenant.spank gte 8>><<His>> nipples are red from being pinched, slapped, sucked, bitten and pulled.
+		<<elseif $pillory.tenant.spank gte 4>><<His>> nipples looks sore from abuse.
 		<</if>>
-	<<elseif $pillory_tenant.upperexposed gte 2>>
+	<<elseif $pillory.tenant.upperexposed gte 2>>
 		<<if $pronoun is "f">>
-			<<His>> top has been bared, with only <<his>> bra hiding <<his>> $pillory_tenant.person.breastsdesc from the crowd.
+			<<His>> top has been bared, with only <<his>> bra hiding <<his>> $pillory.tenant.person.breastsdesc from the crowd.
 		<<else>>
-			<<His>> top has been bared, fully exposing <<his>> $pillory_tenant.person.breastsdesc to the crowd.
-			<<if $pillory_tenant.spank gte 8>><<His>> nipples are red from being pinched, slapped, bitten and pulled.
-			<<elseif $pillory_tenant.spank gte 4>><<His>> nipples looks sore from abuse.
+			<<His>> top has been bared, fully exposing <<his>> $pillory.tenant.person.breastsdesc to the crowd.
+			<<if $pillory.tenant.spank gte 8>><<His>> nipples are red from being pinched, slapped, bitten and pulled.
+			<<elseif $pillory.tenant.spank gte 4>><<His>> nipples looks sore from abuse.
 			<</if>>
 		<</if>>
-	<<elseif $pillory_tenant.upperexposed gte 1>><<His>> upper clothes have been mauled, partially exposing <<his>> <<if $pronoun is "f">>bra<<else>>$pillory_tenant.person.breastsdesc<</if>> to the crowd.
+	<<elseif $pillory.tenant.upperexposed gte 1>><<His>> upper clothes have been mauled, partially exposing <<his>> <<if $pronoun is "f">>bra<<else>>$pillory.tenant.person.breastsdesc<</if>> to the crowd.
 	<</if>>
-	<<if $pillory_tenant.lowerexposed gte 2>><<His>> ass has <<if $pillory_tenant.upperexposed gte 1>>also<</if>> been exposed, making
-		<<if $pillory_tenant.person.gender is "f">><<his>> pussy
-		<<else>><<his>> $pillory_tenant.person.penisdesc
+	<<if $pillory.tenant.lowerexposed gte 2>><<His>> ass has <<if $pillory.tenant.upperexposed gte 1>>also<</if>> been exposed, making
+		<<if $pillory.tenant.person.gender is "f">><<his>> pussy
+		<<else>><<his>> $pillory.tenant.person.penisdesc
 		<</if>>visible to all.
-		<<if $pillory_tenant.spank gte 5>><<His>> ass shows signs of rough
-			<<if $pillory_tenant.fruit gte 5>>spanking, and <<his>> <<if $pillory_tenant.face gte 2>>cum<<if $pillory_tenant.face gte 4>>-coated<<else>>-stained<</if>><</if>> face is a mess of bruises and broken fruit.
+		<<if $pillory.tenant.spank gte 5>><<His>> ass shows signs of rough
+			<<if $pillory.tenant.fruit gte 5>>spanking, and <<his>> <<if $pillory.tenant.face gte 2>>cum<<if $pillory.tenant.face gte 4>>-coated<<else>>-stained<</if>><</if>> face is a mess of bruises and broken fruit.
 			<<else>>spanking.
 			<</if>>
-		<<elseif $pillory_tenant.fruit gte 6>><<His>> <<if $pillory_tenant.face gte 2>>cum<<if $pillory_tenant.face gte 4>>-coated<<else>>-stained<</if>><</if>> face is a mess of bruises and broken fruit.
-		<<elseif $pillory_tenant.fruit gte 2>><<His>> <<if $pillory_tenant.face gte 2>>cum<<if $pillory_tenant.face gte 4>>-coated<<else>>-stained<</if>><</if>> face is marked by bruises and broken fruit.
+		<<elseif $pillory.tenant.fruit gte 6>><<His>> <<if $pillory.tenant.face gte 2>>cum<<if $pillory.tenant.face gte 4>>-coated<<else>>-stained<</if>><</if>> face is a mess of bruises and broken fruit.
+		<<elseif $pillory.tenant.fruit gte 2>><<His>> <<if $pillory.tenant.face gte 2>>cum<<if $pillory.tenant.face gte 4>>-coated<<else>>-stained<</if>><</if>> face is marked by bruises and broken fruit.
 		<</if>>
-		<<if $pillory_tenant.ass gte 2>><<His>> ass has been raped more than
-			<<if $pillory_tenant.genital gte 2>>once, and
-				<<if $pillory_tenant.person.gender is "m">>slime coats <<his>> <<print either("raw","abused","sorry")>> penis.
-				<<else>>semen <<if $pillory_tenant.genital gte 4>>pours<<else>>drips<</if>> from <<his>> <<print either("raw","reddened","abused")>> pussy.
+		<<if $pillory.tenant.ass gte 2>><<His>> ass has been raped more than
+			<<if $pillory.tenant.genital gte 2>>once, and
+				<<if $pillory.tenant.person.gender is "m">>slime coats <<his>> <<print either("raw","abused","sorry")>> penis.
+				<<else>>semen <<if $pillory.tenant.genital gte 4>>pours<<else>>drips<</if>> from <<his>> <<print either("raw","reddened","abused")>> pussy.
 				<</if>>
 			<<else>>once.
 			<</if>>
-		<<elseif $pillory_tenant.genital gte 5>><<His>> <<if $pillory_tenant.person.gender is "m">>penis<<else>>pussy<</if>> has been raped raw.
-		<<elseif $pillory_tenant.genital gte 2>><<He>> has been raped more than once.
+		<<elseif $pillory.tenant.genital gte 5>><<His>> <<if $pillory.tenant.person.gender is "m">>penis<<else>>pussy<</if>> has been raped raw.
+		<<elseif $pillory.tenant.genital gte 2>><<He>> has been raped more than once.
 		<</if>>
-	<<elseif $pillory_tenant.lowerexposed gte 1>>
+	<<elseif $pillory.tenant.lowerexposed gte 1>>
 		<<His>> <<if $pronoun is "f">>dress has been pulled up over <<his>> waist,<<else>>trousers have been pulled down,<</if>>
 		exposing <<his>> underwear to the crowd.
-	<<elseif $pillory_tenant.wet is 2>><<His>> clothes are see-through from the rain.
-	<<elseif $pillory_tenant.wet is 1>><<His>> clothes are semi-translucent from damp, but are drying out.
+	<<elseif $pillory.tenant.wet is 2>><<His>> clothes are see-through from the rain.
+	<<elseif $pillory.tenant.wet is 1>><<His>> clothes are semi-translucent from damp, but are drying out.
 	<</if>>
-	<<if $pillory_tenant.upperexposed is 0 and $pillory_tenant.lowerexposed is 0 and $pillory_tenant.face is 0 and $pillory_tenant.fruit gte 1>>
-		<<if $pillory_tenant.fruit gte 6>><<His>> face is a mess of bruises and broken fruit.
-		<<elseif $pillory_tenant.fruit gte 2>><<His>> face is marked by bruises and broken fruit.
+	<<if $pillory.tenant.upperexposed is 0 and $pillory.tenant.lowerexposed is 0 and $pillory.tenant.face is 0 and $pillory.tenant.fruit gte 1>>
+		<<if $pillory.tenant.fruit gte 6>><<His>> face is a mess of bruises and broken fruit.
+		<<elseif $pillory.tenant.fruit gte 2>><<His>> face is marked by bruises and broken fruit.
 		<</if>>
 	<</if>>
 <</widget>>
 
 <<widget "update_npc_pillory_appearance">>
-	<<set $_lastViewed to new DateTime($pillory_tenant.lastViewed)>>
+	<<set $_lastViewed to new DateTime($pillory.tenant.lastViewed)>>
 	<<set $_timeLeft to Time.date.compareWith($_lastViewed, true)>>
 	<<if $_timeLeft / TimeConstants.secondsPerHour lte -2>>
 		/* last viewed time tracked to avoid this firing on every viewing */
-		<<set $pillory_tenant.lastViewed to Time.date.timeStamp>>
+		<<set $pillory.tenant.lastViewed to Time.date.timeStamp>>
 
 		/*Weather effects*/
 		<<if Weather.precipitation is "rain">>
-			<<set $pillory_tenant.wet to 2>>
-		<<elseif $pillory_tenant.wet is 2>>
-			<<set $pillory_tenant.wet to 1>>
+			<<set $pillory.tenant.wet to 2>>
+		<<elseif $pillory.tenant.wet is 2>>
+			<<set $pillory.tenant.wet to 1>>
 		<<else>>
-			<<set $pillory_tenant.wet to 0>>
+			<<set $pillory.tenant.wet to 0>>
 		<</if>>
 
 		/*Chance of abuse based on crowd and time passed*/
-		<<set _totalSeconds to Time.date.compareWith(new DateTime($pillory_tenant.startTime), true) / TimeConstants.secondsPerHour>>
+		<<set _totalSeconds to Time.date.compareWith(new DateTime($pillory.tenant.startTime), true) / TimeConstants.secondsPerHour>>
 		<<set $_chance to Math.clamp(_totalSeconds / TimeConstants.secondsPerHour, 0, 24)>>
-		<<set $_chance *= $pillory_tenant.crowd>>
+		<<set $_chance *= $pillory.tenant.crowd>>
 
 		/*increased by spectacle*/
-		<<set $_factor to ($pillory_tenant.upperexposed + $pillory_tenant.lowerexposed + $pillory_tenant.fruit
-			+ $pillory_tenant.spank + $pillory_tenant.face + $pillory_tenant.ass + $pillory_tenant.genital)>>
+		<<set $_factor to ($pillory.tenant.upperexposed + $pillory.tenant.lowerexposed + $pillory.tenant.fruit
+			+ $pillory.tenant.spank + $pillory.tenant.face + $pillory.tenant.ass + $pillory.tenant.genital)>>
 
 		<<if Time.dayState is "night">>
 			<<set $_factor += 3>>
 		<</if>>
-		<<if $pillory_tenant.wet is 2>>
+		<<if $pillory.tenant.wet is 2>>
 			<<set $_factor += 4>>
 		<</if>>
 		<<set $_prob to ($_chance * $_factor)>>
 
 		/*Out of sight changes to tenant */
 		<<rng>>
-		<<if $rng gte (40 - $_prob)>><<set $pillory_tenant.fruit += 1>><</if>>
+		<<if $rng gte (40 - $_prob)>><<set $pillory.tenant.fruit += 1>><</if>>
 		<<rng>>
-		<<if $rng gte (60 - $_prob)>><<set $pillory_tenant.crowd += 2>><</if>>
+		<<if $rng gte (60 - $_prob)>><<set $pillory.tenant.crowd += 2>><</if>>
 		<<rng>>
-		<<if $rng gte (60 - $_prob)>><<set $pillory_tenant.upperexposed += 1>><</if>>
+		<<if $rng gte (60 - $_prob)>><<set $pillory.tenant.upperexposed += 1>><</if>>
 		<<rng>>
-		<<if $rng gte (80 - $_prob)>><<set $pillory_tenant.lowerexposed += 1>><</if>>
+		<<if $rng gte (80 - $_prob)>><<set $pillory.tenant.lowerexposed += 1>><</if>>
 		<<rng>>
-		<<if $rng gte (100 - $_prob)>><<set $pillory_tenant.crowd += 2>><</if>>
+		<<if $rng gte (100 - $_prob)>><<set $pillory.tenant.crowd += 2>><</if>>
 		<<rng>>
-		<<if $rng gte (100 - $_prob)>><<set $pillory_tenant.fruit += 2>><<set $pillory_tenant.face += 1>><</if>>
+		<<if $rng gte (100 - $_prob)>><<set $pillory.tenant.fruit += 2>><<set $pillory.tenant.face += 1>><</if>>
 		<<rng>>
-		<<if $rng gte (100 - $_prob) and $pillory_tenant.lowerexposed gte 2>><<set $pillory_tenant.spank += 2>><<else>><<set $pillory_tenant.spank += 1>><</if>>
+		<<if $rng gte (100 - $_prob) and $pillory.tenant.lowerexposed gte 2>><<set $pillory.tenant.spank += 2>><<else>><<set $pillory.tenant.spank += 1>><</if>>
 		<<rng>>
-		<<if $rng gte (100 - $_prob) and $pillory_tenant.lowerexposed gte 2>><<set $pillory_tenant.genital += 1>><</if>>
+		<<if $rng gte (100 - $_prob) and $pillory.tenant.lowerexposed gte 2>><<set $pillory.tenant.genital += 1>><</if>>
 		<<rng>>
-		<<if $rng gte (100 - $_prob) and $pillory_tenant.lowerexposed gte 2>><<set $pillory_tenant.ass += 1>><</if>>
+		<<if $rng gte (100 - $_prob) and $pillory.tenant.lowerexposed gte 2>><<set $pillory.tenant.ass += 1>><</if>>
 
 		/*lock down exposure and replenish fruit */
-		<<if $pillory_tenant.upperexposed gte 3>><<if $pillory_tenant.person.gender is "f" or $pillory_tenant.person.pronoun is "f">><<set $pillory_tenant.upperexposed to 3>><<else>><<set $pillory_tenant.upperexposed to 2>><</if>><</if>>
-		<<if $pillory_tenant.lowerexposed gt 2>><<set $pillory_tenant.lowerexposed to 2>><</if>>
-		<<set $pillory_tenant.fruitstock to 3>>
-		<<set $pillory_tenant.broken += ($pillory_tenant.ass + $pillory_tenant.genital + $pillory_tenant.face + $pillory_tenant.fruit + $pillory_tenant.spank)>>
+		<<if $pillory.tenant.upperexposed gte 3>><<if $pillory.tenant.person.gender is "f" or $pillory.tenant.person.pronoun is "f">><<set $pillory.tenant.upperexposed to 3>><<else>><<set $pillory.tenant.upperexposed to 2>><</if>><</if>>
+		<<if $pillory.tenant.lowerexposed gt 2>><<set $pillory.tenant.lowerexposed to 2>><</if>>
+		<<set $pillory.tenant.fruitstock to 3>>
+		<<set $pillory.tenant.broken += ($pillory.tenant.ass + $pillory.tenant.genital + $pillory.tenant.face + $pillory.tenant.fruit + $pillory.tenant.spank)>>
 	<</if>>
 <</widget>>
 
 <<widget "npc_pillory_abuse">>
-	<<set $_lastViewed to new DateTime($pillory_tenant.lastViewed)>>
+	<<set $_lastViewed to new DateTime($pillory.tenant.lastViewed)>>
 	<<set $_timeLeft to Time.date.compareWith($_lastViewed, true)>>
 	<<if $_timeLeft / TimeConstants.secondsPerHour lte -2>>
-		<<set $pillory_tenant.lastViewed to Time.date.timeStamp>>
+		<<set $pillory.tenant.lastViewed to Time.date.timeStamp>>
 		<<rng>><<generate2>><<person2>>
 		<<set $_ly to either("violently","openly","angrily","furiously","cheekily","repeatedly","clumsily","roughly","theatrically","dutifully","merrily","gleefully","drunkenly","ineptly")>>
 		<<if Time.dayState isnot "night">>
@@ -4213,49 +4213,49 @@
 				A number of people, led by a <<person>> jeer and shout abuse at the prisoner.
 			<<elseif $rng gte 41>> /* 15% */
 				<<rng>>
-				<<if $pillory_tenant.person.pronoun is "f" and $rng gte 40>> /* 60% if upper-exposed F */
+				<<if $pillory.tenant.person.pronoun is "f" and $rng gte 40>> /* 60% if upper-exposed F */
 					A <<person>> in rough farmer clothes approaches the pillory with a bucket.
 					Setting the bucket underneath the <<pillory_type>>'s chest, <<person2>><<he>>
-					<<if $pillory_tenant.upperexposed lte 1>>displaces the prisoner's top,<</if>>
-					<<if $pillory_tenant.upperexposed lte 2>><<set $pillory_tenant.upperexposed to 3>> slips off her bra,<</if>>
-					grabs the <<pillory_type>>'s $pillory_tenant.person.breastsdesc and sets about trying to milk her into the bucket.
+					<<if $pillory.tenant.upperexposed lte 1>>displaces the prisoner's top,<</if>>
+					<<if $pillory.tenant.upperexposed lte 2>><<set $pillory.tenant.upperexposed to 3>> slips off her bra,<</if>>
+					grabs the <<pillory_type>>'s $pillory.tenant.person.breastsdesc and sets about trying to milk her into the bucket.
 					<br><br>
 					<<if $rng % 3 is 0>>
 						<<if $rng % 2>>
 							Milk bursts from her breasts. Smiling, the farmer soon builds up a rhythm, adeptly milking both breasts.
 							<br>
 							"Good cow," the farmer ruffles <<the_pillory_person>>'s hair before leaving with an almost full bucket.
-						<<else>><<set $pillory_tenant.spank += 1>>
+						<<else>><<set $pillory.tenant.spank += 1>>
 							Milk dribbles from the <<pillory_type>>'s breasts. With a lot of persistent squeezing and nipple pulling the farmer is eventually
-							able to	get a fair amount of milk from the prisoner. Her $pillory_tenant.person.breastsdesc look raw and painful afterward.
+							able to	get a fair amount of milk from the prisoner. Her $pillory.tenant.person.breastsdesc look raw and painful afterward.
 							<br>
 							The farmer pats the prisoner's head before leaving with <<person2>><<his>> half-filled bucket.
 						<</if>>
-					<<else>><<set $pillory_tenant.spank += 1>>
+					<<else>><<set $pillory.tenant.spank += 1>>
 						Despite increasingly rough squeezing and pulling on her nipples, no milk is forthcoming.
 						<<if $rng % 2>>
 							Finally giving up, the <<person2>><<person>> pats her head. "Poor girl. You're all dried up."
 							<br>
 							<<He>> walks behind the <<pillory_type>> and
-							<<if $pillory_tenant.lowerexposed lte 1>>strips <<his>> <<print either("silk panties","plain panties","tattered undies","boyshorts")>>,
-							<<else>>holds <<his>> butt-cheeks spread apart<</if>> exposing <<if $pillory_tenant.person.gender is "f">><<his>> pussy <<else>><<his>> ass <</if>>to all.
+							<<if $pillory.tenant.lowerexposed lte 1>>strips <<his>> <<print either("silk panties","plain panties","tattered undies","boyshorts")>>,
+							<<else>>holds <<his>> butt-cheeks spread apart<</if>> exposing <<if $pillory.tenant.person.gender is "f">><<his>> pussy <<else>><<his>> ass <</if>>to all.
 							<br>
-							"This cow's dry," <<person2>><<he>> calls out to the crowd. <<if $pillory_tenant.person.gender is "f">>"Wants someone to put a calf in her."<<else>>"Wants someone to fill her up."<</if>>
+							"This cow's dry," <<person2>><<he>> calls out to the crowd. <<if $pillory.tenant.person.gender is "f">>"Wants someone to put a calf in her."<<else>>"Wants someone to fill her up."<</if>>
 							<br>
 							<<He>> walks away with <<his>> empty bucket.
-							<<set $pillory_tenant.lowerexposed to 2>>
+							<<set $pillory.tenant.lowerexposed to 2>>
 						<<else>>
 							Finally giving up, the farmer walks away with <<his>> empty bucket.
 						<</if>>
 						<br>
 					<</if>>
-				<<elseif $pillory_tenant.person.gender is "m" and $rng gte 40>>
+				<<elseif $pillory.tenant.person.gender is "m" and $rng gte 40>>
 					A <<person>> in rough farmer clothes approaches the pillory with a clear glass.
 					<br>
 					Setting the glass underneath the <<pillory_type>>'s groin, <<person2>><<he>>
-					<<if $pillory_tenant.lowerexposed lte 0>><<if $pillory_tenant.person.pronoun is "m">>pulls down the prisoner's trousers,<<else>>hitches up the prisoner's skirt,<</if>><</if>>
-					<<if $pillory_tenant.lowerexposed lte 1>><<set $pillory_tenant.lowerexposed to 2>><<if $pillory_tenant.person.pronoun is "m">> removes his underpants, <<else>> pulls down her panties, <</if>><</if>>
-					grabs the prisoner's $pillory_tenant.person.penisdesc and starts to rub.
+					<<if $pillory.tenant.lowerexposed lte 0>><<if $pillory.tenant.person.pronoun is "m">>pulls down the prisoner's trousers,<<else>>hitches up the prisoner's skirt,<</if>><</if>>
+					<<if $pillory.tenant.lowerexposed lte 1>><<set $pillory.tenant.lowerexposed to 2>><<if $pillory.tenant.person.pronoun is "m">> removes his underpants, <<else>> pulls down her panties, <</if>><</if>>
+					grabs the prisoner's $pillory.tenant.person.penisdesc and starts to rub.
 					The prisoner looks shocked, then angry, then conflicted, and then shocked again as <<person1>><<he>> cums into a glass in front of a jeering crowd.
 					<<person2>>
 					<<if $rng % 3>>
@@ -4264,7 +4264,7 @@
 						<br>
 						Ten minutes later, the farmer is walking off with a glassful of ejaculate, while <<the_pillory_person>> hangs in the pillory, <<his>> face
 						flickering between shock, shame, pain and satiation.
-					<<else>><<set $pillory_tenant.spank += 1>>
+					<<else>><<set $pillory.tenant.spank += 1>>
 						The farmer browses <<his>> phone with one hand, while trying to bring the <<pillory_type>> back to orgasm with the other.
 						<br>
 						After a minute or so, the farmer looks confused, then annoyed at <<the_pillory_person>>'s lack of response.
@@ -4279,12 +4279,12 @@
 						glassful of ejaculate, while <<the_pillory_person>> hangs limp in the pillory, <<his>> face twitching with pain, shame and a strange satiation.
 					<</if>>
 					<br>
-				<<elseif $pillory_tenant.person.gender is "f" and $rng gte 20>>
+				<<elseif $pillory.tenant.person.gender is "f" and $rng gte 20>>
 					A <<person>> in rough farmer clothes approaches the pillory with a glass beaker.
 					<br>
 					Setting the beaker underneath the <<pillory_type>>'s groin, <<person2>><<he>>
-					<<if $pillory_tenant.lowerexposed lte 0>><<if $pillory_tenant.person.pronoun is "f">>hitches up the prisoner's skirt,<<else>>pulls down the prisoner's trousers,<</if>><</if>>
-					<<if $pillory_tenant.lowerexposed lte 1>><<set $pillory_tenant.lowerexposed to 2>><<if $pillory_tenant.person.pronoun is "f">> pulls down her panties,<<else>> removes his underpants,<</if>><</if>>
+					<<if $pillory.tenant.lowerexposed lte 0>><<if $pillory.tenant.person.pronoun is "f">>hitches up the prisoner's skirt,<<else>>pulls down the prisoner's trousers,<</if>><</if>>
+					<<if $pillory.tenant.lowerexposed lte 1>><<set $pillory.tenant.lowerexposed to 2>><<if $pillory.tenant.person.pronoun is "f">> pulls down her panties,<<else>> removes his underpants,<</if>><</if>>
 					grabs the prisoner's pussy and starts to rub.
 					After a moment's shock, <<the_pillory_person>> pouts and resigns <<himself>> to this debasement. That's when <<he>> feels cold metal shoved up
 					<<his>> pussy. A moment later panic crosses <<his>> face as something is clamped to <<his>> clit, and almost instantly waves of electricity hit <<him>>.
@@ -4305,13 +4305,13 @@
 						<<elseif $rng % 3 is 1>>
 							The crowd jeer and laugh. Eventually the _bug loses interest and flies away.
 						<<else>>
-							<<if $pillory_tenant.lowerexposed is 2 and $rng % 2>>
+							<<if $pillory.tenant.lowerexposed is 2 and $rng % 2>>
 								<<if $pronoun is "m">><<set _part to either("butt","upper leg","inner thigh","dick","balls","hip")>>
 								<<else>><<set _part to either("ass","leg","inner thigh","pussy","hip")>>
 								<</if>>
-							<<elseif $pillory_tenant.upperexposed gte 3 and $pronoun is "f">>
+							<<elseif $pillory.tenant.upperexposed gte 3 and $pronoun is "f">>
 								<<set _part to either("breast","nipple","armpit","ribs","midriff","back")>>
-							<<elseif $pillory_tenant.upperexposed gte 2>>
+							<<elseif $pillory.tenant.upperexposed gte 2>>
 								<<set _part to either("chest","armpit","ribs","belly","back")>>
 							<<else>>
 								<<set _part to either("arm","shoulder","cheek","leg","waist","wrist","elbow")>>
@@ -4321,9 +4321,9 @@
 					<<else>>
 						A furious <<monk>> from the temple scolds the crowd for preying on the morally sick.
 						Many people look ashamed and some leave.
-						<<set $pillory_tenant.crowd -= 1>>
-						<<if $pillory_tenant.upperexposed + $pillory_tenant.lowerexposed gte 1>>
-							<<set $pillory_tenant.upperexposed to 0>><<set $pillory_tenant.lowerexposed to 0>>
+						<<set $pillory.tenant.crowd -= 1>>
+						<<if $pillory.tenant.upperexposed + $pillory.tenant.lowerexposed gte 1>>
+							<<set $pillory.tenant.upperexposed to 0>><<set $pillory.tenant.lowerexposed to 0>>
 							The <<monk>> finally restores the <<pillory_type>>'s dignity by replacing <<his>> clothes.
 						<</if>>
 					<</if>>
@@ -4331,25 +4331,25 @@
 			<<elseif $rng gte 36>> /* 5% */
 				A <<person>> throws fruit at the <<pillory_type>>. Unable to move or defend, it hits <<him>> directly in the face.
 				It looks painful, especially as <<he>> cannot wipe the acids out of <<his>> eyes.
-				<<set $pillory_tenant.fruit += 1>>
+				<<set $pillory.tenant.fruit += 1>>
 			<<elseif $rng gte 26>> /* 10% */
 				A <<person>> throws fruit at the <<pillory_type>> but misses completely.
 			<<elseif $rng gte 16>> /* 10% */
 				A <<person>> walks up to the pillory and $_ly fondles the <<pillory_type>>'s <<if $pronoun is "f">>breasts.<<else>>balls.<</if>>
-			<<elseif $rng gte 11 and $pillory_tenant.upperexposed lt 3>>/* 5% */
+			<<elseif $rng gte 11 and $pillory.tenant.upperexposed lt 3>>/* 5% */
 				A <<person>> walks up to the <<pillory_type>> and
-				<<if $pillory_tenant.upperexposed is 2>>
+				<<if $pillory.tenant.upperexposed is 2>>
 					<<if $pronoun is "f">>
-					$_ly removes <<his>> bra, fully exposing <<his>> $pillory_tenant.person.breastsdesc to a jeering crowd.
+					$_ly removes <<his>> bra, fully exposing <<his>> $pillory.tenant.person.breastsdesc to a jeering crowd.
 					<<else>>
 					$_ly twists <<his>> nipples.
-					<<set $pillory_tenant.spank += 1>>
+					<<set $pillory.tenant.spank += 1>>
 					<</if>>
-				<<elseif $pillory_tenant.upperexposed is 1>>
+				<<elseif $pillory.tenant.upperexposed is 1>>
 					<<if $pronoun is "f">>
 					fully removes <<his>> top, leaving <<him>> with <<his>> bra exposed to the jeering crowd.
 					<<else>>
-					fully removes <<his>> top, exposing <<his>> naked $pillory_tenant.person.breastsdesc to the jeering crowd.
+					fully removes <<his>> top, exposing <<his>> naked $pillory.tenant.person.breastsdesc to the jeering crowd.
 					<</if>>
 				<<else>>
 					<<if $pronoun is "f">>
@@ -4357,17 +4357,17 @@
 					<<else>>
 					lifts <<his>> top, exposing much of <<his>> chest to the jeering crowd.
 					<</if>>
-				<</if>><<set $pillory_tenant.upperexposed += 1>>
-			<<elseif $rng gte 6 and $pillory_tenant.lowerexposed lt 2>>/* 5% */
+				<</if>><<set $pillory.tenant.upperexposed += 1>>
+			<<elseif $rng gte 6 and $pillory.tenant.lowerexposed lt 2>>/* 5% */
 				A <<person>> walks up to <<the_pillory_person>> and
-				<<if $pillory_tenant.lowerexposed is 1>>
-					<<if $pillory_tenant.person.gender is "f">>removes the <<pillory_type>>'s underwear, fully exposing <<his>> ass and pussy to the jeering crowd.
-					<<else>>fully removes the <<pillory_type>>'s underwear, exposing <<his>> ass and <<his>> $pillory_tenant.person.penisdesc to the jeering crowd.
+				<<if $pillory.tenant.lowerexposed is 1>>
+					<<if $pillory.tenant.person.gender is "f">>removes the <<pillory_type>>'s underwear, fully exposing <<his>> ass and pussy to the jeering crowd.
+					<<else>>fully removes the <<pillory_type>>'s underwear, exposing <<his>> ass and <<his>> $pillory.tenant.person.penisdesc to the jeering crowd.
 					<</if>>
 				<<else>>
 					<<if $pronoun is "f">>lifts the <<pillory_type>>'s skirt,<<else>>pulls down <<his>> trousers,<</if>> exposing <<his>> underwear to a jeering crowd.
-				<</if>><<set $pillory_tenant.lowerexposed += 1>>
-			<<else>><<set $pillory_tenant.spank += 1>>/* 5% */
+				<</if>><<set $pillory.tenant.lowerexposed += 1>>
+			<<else>><<set $pillory.tenant.spank += 1>>/* 5% */
 				A <<person>> walks up to the <<pillory_type>> and spanks <<him>> hard on the ass. The thwack echoes across the street.
 			<</if>>
 		<<else>> /*night*/
@@ -4376,34 +4376,34 @@
 			<<elseif $rng gte 81>> /* 5% */
 				A <<person>> throws fruit at the <<pillory_type>>. Unable to move or defend <<himself>>, it hits <<the_pillory_person>> directly in the face. There is a loud cheer.
 				It looks painful, especially as <<he>> cannot wipe the acids out of <<his>> eyes.
-				<<set $pillory_tenant.fruit += 1>>
+				<<set $pillory.tenant.fruit += 1>>
 			<<elseif $rng gte 76>> /* 5% */
 				A <<person>> throws fruit at the <<pillory_type>> but misses completely.
-			<<elseif $pillory_tenant.person.pronoun is "f" and $pillory_tenant.upperexposed lt 3>>
-				<<set $pillory_tenant.upperexposed to 3>>
-				A <<person>> walks up to the helpless <<pillory_type>> and displaces all <<his>> upper clothes, fully baring <<his>> <<if $pronoun is "f">>$pillory_tenant.person.breastsdesc<<else>>chest<</if>> to the crowd.
-			<<elseif $pillory_tenant.person.pronoun is "m" and $pillory_tenant.upperexposed lt 2>>
-				<<set $pillory_tenant.upperexposed to 2>>
-				A <<person>> walks up to the helpless <<pillory_type>> and displaces all <<his>> upper clothes, fully baring <<his>> <<if $pronoun is "f">>$pillory_tenant.person.breastsdesc<<else>>chest<</if>> to the crowd.
-			<<elseif $pillory_tenant.lowerexposed lt 2>>
-				<<set $pillory_tenant.lowerexposed to 2>>
-				A <<person>> walks up to the helpless <<pillory_type>> and displaces all <<his>> lower clothes, fully baring <<his>> <<if $pillory_tenant.person.gender is "f">>pussy<<else>>$pillory_tenant.person.penisdesc<</if>> to the crowd. There is a loud cheer.
+			<<elseif $pillory.tenant.person.pronoun is "f" and $pillory.tenant.upperexposed lt 3>>
+				<<set $pillory.tenant.upperexposed to 3>>
+				A <<person>> walks up to the helpless <<pillory_type>> and displaces all <<his>> upper clothes, fully baring <<his>> <<if $pronoun is "f">>$pillory.tenant.person.breastsdesc<<else>>chest<</if>> to the crowd.
+			<<elseif $pillory.tenant.person.pronoun is "m" and $pillory.tenant.upperexposed lt 2>>
+				<<set $pillory.tenant.upperexposed to 2>>
+				A <<person>> walks up to the helpless <<pillory_type>> and displaces all <<his>> upper clothes, fully baring <<his>> <<if $pronoun is "f">>$pillory.tenant.person.breastsdesc<<else>>chest<</if>> to the crowd.
+			<<elseif $pillory.tenant.lowerexposed lt 2>>
+				<<set $pillory.tenant.lowerexposed to 2>>
+				A <<person>> walks up to the helpless <<pillory_type>> and displaces all <<his>> lower clothes, fully baring <<his>> <<if $pillory.tenant.person.gender is "f">>pussy<<else>>$pillory.tenant.person.penisdesc<</if>> to the crowd. There is a loud cheer.
 			<<elseif $rng gte 66>> /* 10% */
 				A <<person>> tries to incite a nearby dog to mount the prisoner's naked backside. It
 				<<if $rng % 2>>gives <<the_pillory_person>>'s ass a few tentative sniffs, but
 				<</if>>is not interested.
 			<<elseif $rng gte 58>> /* 8% */
-				<<set $pillory_tenant.spank += 1>>
-				A <<person>> sneaks up behind the pillory and $_ly slaps the <<pillory_type>>'s exposed <<if $pillory_tenant.person.gender is "f">>cunt.<<else>>balls.<</if>> The crowd jeer and laugh as <<he>> howls in pain.
+				<<set $pillory.tenant.spank += 1>>
+				A <<person>> sneaks up behind the pillory and $_ly slaps the <<pillory_type>>'s exposed <<if $pillory.tenant.person.gender is "f">>cunt.<<else>>balls.<</if>> The crowd jeer and laugh as <<he>> howls in pain.
 			<<elseif $rng gte 51>> /* 7% */
-				<<set $pillory_tenant.spank += 2>><br>
+				<<set $pillory.tenant.spank += 2>><br>
 				Some teacher you've seen around the school but never had classes with, walks drunkenly toward the pillory.
-				<<if $pillory_tenant.special.name is "Whitney">>
-					<br><<set $pillory_tenant.spank += 1>>
+				<<if $pillory.tenant.special.name is "Whitney">>
+					<br><<set $pillory.tenant.spank += 1>>
 					"Well, hello, Whitney! <<print either("Fancy seeing you here!","Look who it is!","Are you stuck there? How unfortunate!","Isn't this quite the turnaround!?","Such a nice surprise to see you here!")>>" <<he>> slurs, grinning.
 					"<<print either("We both know that you've earned this.","We both know how richly you deserve this.","And today's lesson will be about consequences.","Do remember that mean little nickname you made up for me?","Do remember what you did in my class the other day?")>>"
-				<<elseif $pillory_tenant.special.name is "Leighton">>
-					<br><<set $pillory_tenant.spank += 1>>
+				<<elseif $pillory.tenant.special.name is "Leighton">>
+					<br><<set $pillory.tenant.spank += 1>>
 					"Well, hello there. Is that you, boss?" <<he>> says, staying out of sight behind the pillory.
 					"<<print either("I think it's time for some 'anonymous staff feedback'.","Remember what you said about 'cruel to be kind?'","So I guess it's your turn for some 'frank and honest feedback'?","So is this the 'right forum' to air staff grievances?")>>"
 				<<else>><br>
@@ -4412,32 +4412,32 @@
 				<</if>><br>
 				<<He>> spanks the <<pillory_type>>'s ass until <<person2>><<his>> arm tires. The crowd jeer and laugh as the <<person1>><<person>> howls in pain.
 			<<elseif $rng gte 41>> /* 10% */
-				<<set $pillory_tenant.face += 1>>
+				<<set $pillory.tenant.face += 1>>
 				A <<person>> walks in front of the pillory and $_ly masturbates in front of the <<pillory_type>>.
 				<<person2>><<if $pronoun is "m">>Cum soon splatters across <<the_pillory_person>>'s face.
 				<<else>><<He>> grinds <<his>> cunt against <<the_pillory_person>>'s<<person2>> face as <<he>> orgasms.
 				<</if>> The crowd cheer and laugh.
 			<<elseif $rng gte 31>> /* 10% */
-				<<set $pillory_tenant.ass += 1>>
+				<<set $pillory.tenant.ass += 1>>
 				A <<person>> walks behind the pillory and $_ly <<if $pronoun is "m">>rapes<<else>>fingers<</if>> the <<pillory_type>>'s asshole. The crowd cheer <<person2>><<him>> on.
 			<<elseif $rng gte 21>> /* 10% */
-				<<set $pillory_tenant.genital += 1>>
+				<<set $pillory.tenant.genital += 1>>
 				A <<person>> walks behind the pillory and $_ly rapes <<if $pronoun is "m">><<the_pillory_person>>.<<else>><<the_pillory_person>> with a strap-on.<</if>><<person2>> The crowd take pictures and cheer <<him>> on.
 			<<elseif $rng gte 11>> /* 10% */
-				<<set $pillory_tenant.genital += 1>><<set $pillory_tenant.ass += 1>>
+				<<set $pillory.tenant.genital += 1>><<set $pillory.tenant.ass += 1>>
 				The crowd watch and photograph as a stray dog rapes <<the_pillory_person>>. A <<person2>><<person>> rewards the dog with a <<print either("biscuit.","pat on the head.","sweet.","cream bun.")>>
 				<br>
 				The crowd enjoys such a perverted spectacle.
-			<<elseif $rng gte 6 and maleChance() gt 0 and (maleChance() lt 100 or $pillory_tenant.person.gender isnot "m")>> /* 5% - with men allowed */
-				<<set $pillory_tenant.ass += 1>><<set $pillory_tenant.face += 1>>
+			<<elseif $rng gte 6 and maleChance() gt 0 and (maleChance() lt 100 or $pillory.tenant.person.gender isnot "m")>> /* 5% - with men allowed */
+				<<set $pillory.tenant.ass += 1>><<set $pillory.tenant.face += 1>>
 				<<if $rng % 3 is 0>>A couple of off-duty policemen approach. They make a <<person>> record as they<<else>>Two men approach. Together they<</if>>
-				<<if $pillory_tenant.person.gender is "m">>anally-<<else>>$_ly <</if>>spit-roast <<the_pillory_person>>. The crowd enjoys the spectacle.
-			<<elseif $rng gte 6 and maleChance() lt 100 and (maleChance() gt 0 or $pillory_tenant.person.gender isnot "f")>> /* 5% - with women allowed */
-				<<set $pillory_tenant.ass += 1>><<set $pillory_tenant.face += 1>>
+				<<if $pillory.tenant.person.gender is "m">>anally-<<else>>$_ly <</if>>spit-roast <<the_pillory_person>>. The crowd enjoys the spectacle.
+			<<elseif $rng gte 6 and maleChance() lt 100 and (maleChance() gt 0 or $pillory.tenant.person.gender isnot "f")>> /* 5% - with women allowed */
+				<<set $pillory.tenant.ass += 1>><<set $pillory.tenant.face += 1>>
 				<<if $rng % 3 is 0>>A couple of off-duty policewomen approach. They make a <<person>> record as they<<else>>Two women approach. Together they<</if>>
-				<<if $pillory_tenant.person.gender is "m">>anally-<<else>>$_ly <</if>>spit-roast <<the_pillory_person>> with strap-ons. The crowd enjoys the spectacle.
+				<<if $pillory.tenant.person.gender is "m">>anally-<<else>>$_ly <</if>>spit-roast <<the_pillory_person>> with strap-ons. The crowd enjoys the spectacle.
 			<<else>> /* 5% */
-				<<set $pillory_tenant.spank += 1>>
+				<<set $pillory.tenant.spank += 1>>
 				A <<person>> walks up to the <<pillory_type>> and spanks <<him>> hard on the ass. The thwack echoes across the street.
 			<</if>>
 		<</if>>
@@ -4445,10 +4445,10 @@
 		The people around <<print either("jeer at","laugh at","point at","shout abuse at","taunt","mock","leer at")>>
 		<<if Time.schoolDay and ((Time.hour gte 7 and Time.hour lte 8) or Time.hour is 15) and $rng lte 34>>
 			the <<pillory_type>>. A group of students from the nearby school pass by, gaping at
-			<<if $pillory_tenant.lowerexposed gte 2 or $pillory_tenant.upperexposed gte 3>>the lewdly exposed prisoner.
+			<<if $pillory.tenant.lowerexposed gte 2 or $pillory.tenant.upperexposed gte 3>>the lewdly exposed prisoner.
 				<<if $rng % 3 is 0>>
 				An outraged bystander runs up to the pillory and replaces the <<pillory_type>>'s clothes.
-				<<set $pillory_tenant.lowerexposed to 0>><<set $pillory_tenant.upperexposed to 0>><</if>>
+				<<set $pillory.tenant.lowerexposed to 0>><<set $pillory.tenant.upperexposed to 0>><</if>>
 			<<else>>the prisoner.
 			<</if>>
 		<<elseif Time.dayState isnot "night">>
@@ -4456,33 +4456,33 @@
 				the <<pillory_type>> and <<print either("mutter among themselves.","take photos.","amuse themselves.")>>
 			<<elseif $rng lte 93>>
 				the <<pillory_type>>. Some get bored and leave.
-				<<set $pillory_tenant.crowd -= 1>>
+				<<set $pillory.tenant.crowd -= 1>>
 			<<else>>
 				the <<pillory_type>>. A bus drops some people off nearby. A few join the crowd around the pillory.
-				<<set $pillory_tenant.crowd += 1>>
+				<<set $pillory.tenant.crowd += 1>>
 			<</if>>
 		<<else>>
 			<<if $rng lte 67>>
-				<<if $pillory_tenant.lowerexposed gte 2 and $rng % 4 is 0>>the <<pillory_type>> and take selfies posing around <<his>> exposed, naked ass.
+				<<if $pillory.tenant.lowerexposed gte 2 and $rng % 4 is 0>>the <<pillory_type>> and take selfies posing around <<his>> exposed, naked ass.
 				<<else>>the <<pillory_type>> and <<print either("mutter darkly.","drink.","throw empty beer cans.","make sinister threats.","take selfies with the prisoner.","tell dirty jokes.")>>
 				<</if>>
 			<<elseif $rng lte 85>>
 				the <<pillory_type>>. Some get tired and leave.
-				<<set $pillory_tenant.crowd -= 1>>
+				<<set $pillory.tenant.crowd -= 1>>
 			<<else>>
 				the <<pillory_type>>. A few people passing by join the crowd around the pillory.
-				<<set $pillory_tenant.crowd += 1>>
+				<<set $pillory.tenant.crowd += 1>>
 			<</if>>
 		<</if>>
 	<</if>>
-	<<if $pillory_tenant.upperexposed gte 3>><<if $pillory_tenant.person.gender is "f" or $pillory_tenant.person.pronoun is "f">><<set $pillory_tenant.upperexposed to 3>><<else>><<set $pillory_tenant.upperexposed to 2>><</if>><</if>>
-	<<if $pillory_tenant.lowerexposed gt 2>><<set $pillory_tenant.lowerexposed to 2>><</if>>
+	<<if $pillory.tenant.upperexposed gte 3>><<if $pillory.tenant.person.gender is "f" or $pillory.tenant.person.pronoun is "f">><<set $pillory.tenant.upperexposed to 3>><<else>><<set $pillory.tenant.upperexposed to 2>><</if>><</if>>
+	<<if $pillory.tenant.lowerexposed gt 2>><<set $pillory.tenant.lowerexposed to 2>><</if>>
 <</widget>>
 
 <<widget "npc_pillory_release_schedule">>
 	<<get_pillory_npc>>
 	<br>
-	<<set $_endTime to new DateTime($pillory_tenant.endTime)>>
+	<<set $_endTime to new DateTime($pillory.tenant.endTime)>>
 	<<set $_timeLeft to Time.date.compareWith($_endTime)>>
 	<<if $_timeLeft.days lt 1>>
 		<<He>> will be released
@@ -4513,7 +4513,7 @@
 	<<else>>
 		<<The_pillory_person>> was released and has left. A couple of civil servants clean the pillory.
 	<</if>>
-	<<set _totalSeconds to Time.date.compareWith(new DateTime($pillory_tenant.startTime), true) / TimeConstants.secondsPerHour>>
+	<<set _totalSeconds to Time.date.compareWith(new DateTime($pillory.tenant.startTime), true) / TimeConstants.secondsPerHour>>
 	<<set $_hours to _totalSeconds / TimeConstants.secondsPerHour>>
 	<<set $rng += $_hours>>
 	<<if $rng gte 67 or $rng gte 33 and Weather.precipitation is "rain">>A large crowd jeers and shouts.<</if>>
@@ -4523,7 +4523,7 @@
 <</widget>>
 
 <<widget "clear_pillory">>
-	<<if $pillory_tenant and $pillory_tenant.special.name is "Whitney">>
+	<<if $pillory.tenant and $pillory.tenant.special.name is "Whitney">>
 		<<set C.npc.Whitney.state to "active">>
 	<</if>>
 	<<setup_pillory>>
diff --git a/game/overworld-town/loc-brothel/main.twee b/game/overworld-town/loc-brothel/main.twee
index ed9283ee147ac180cea502b9ce148f56a4c58fb9..261c7009a8f87b6973aac69fd1df97767a2e6f55 100644
--- a/game/overworld-town/loc-brothel/main.twee
+++ b/game/overworld-town/loc-brothel/main.twee
@@ -49,7 +49,7 @@ You are in the brothel. Several stages dot the crowded room. The staff look flus
 	<<link [[Refuse|Brothel Pay Refuse]]>><<npcincr Briar dom -1>><<def 1>><</link>>
 	<br>
 
-<<elseif C.npc.Leighton.init is 1 and $leightonbrothel is undefined and $brotheljob is 1 and Time.weekDay gte 6 and $pillory_tenant.special.name isnot "Leighton">><<set $leightonbrothel to 1>>
+<<elseif C.npc.Leighton.init is 1 and $leightonbrothel is undefined and $brotheljob is 1 and Time.weekDay gte 6 and $pillory.tenant.special.name isnot "Leighton">><<set $leightonbrothel to 1>>
 	<<npc Leighton>><<person1>>
 	"You look like one of my students," says an amused voice from your right. It's Leighton.
 	<<if playerBellyVisible()>>
@@ -96,7 +96,7 @@ You are in the brothel. Several stages dot the crowded room. The staff look flus
 		<<brothelicon "stage">><<link [[Go behind the stage|Brothel Stage]]>><</link>>
 		<br>
 	<</if>>
-	<<if $weekly.leightonDanceRefused and $headblackmailed is 1 and $pillory_tenant.special.name isnot "Leighton">>
+	<<if $weekly.leightonDanceRefused and $headblackmailed is 1 and $pillory.tenant.special.name isnot "Leighton">>
 		<<icon "adultclothing.png">><<link [[Dressing room (0:01)|Leighton Club Ignore]]>><<pass 1>><<set $weekly.leightonDanceRefused to false>><</link>>
 		<br>
 	<<else>>
diff --git a/game/overworld-town/loc-park/widgets.twee b/game/overworld-town/loc-park/widgets.twee
index ceb28e3db10b32ca05e51bb59f39ee3889e4565c..a66b8f9ad4cc84e472cb1000cafe72bbaf0a6083 100644
--- a/game/overworld-town/loc-park/widgets.twee
+++ b/game/overworld-town/loc-park/widgets.twee
@@ -162,12 +162,12 @@
 		<<elseif $rng gte 15>>
 			<<rng>>
 			<<if ndef $park_run_seen_by>><<set $park_run_seen_by to []>><</if>>
-			<<if $rng gte 81 and C.npc.Whitney.init is 1 and C.npc.Whitney.state isnot "dungeon" and $pillory_tenant.special.name isnot "Whitney">>
+			<<if $rng gte 81 and C.npc.Whitney.init is 1 and C.npc.Whitney.state isnot "dungeon" and $pillory.tenant.special.name isnot "Whitney">>
 				You almost run straight into a group of students smoking under an old shelter. As the central figure lights up, you recognise them. It's Whitney.
 				<br>
 				<<npc Whitney>><<person1>>Eyes closed, <<he>> exhales a cloud of smoke.
 				<<set $phase to 1>>
-			<<elseif $rng gte 61 and C.npc.Leighton.init is 1 and $pillory_tenant.special.name isnot "Leighton">>
+			<<elseif $rng gte 61 and C.npc.Leighton.init is 1 and $pillory.tenant.special.name isnot "Leighton">>
 				A figure lurks in the shadows near some kind of gazebo. As they move near a light you recognise them. It's Leighton.
 				<br>
 				<<npc Leighton>><<person1>><<He>> seems to be looking for something. Or someone.
diff --git a/game/overworld-town/loc-police/pillory.twee b/game/overworld-town/loc-police/pillory.twee
index 36dad854ece4a1837d953af94ac8f249c4d1b73d..e8412cee3df7be0f15f8e579e27d9d8e16b314f5 100644
--- a/game/overworld-town/loc-police/pillory.twee
+++ b/game/overworld-town/loc-police/pillory.twee
@@ -40,33 +40,18 @@ You have an opportunity to escape, but the <<person>> is aware of that, and keep
 
 <<set $outside to 1>><<set $location to "town">><<effects>>
 <<earnFeat "You're the Laughingstock">>
-<<if crimeSumCurrent() gte 4500>>
-	<<set $pillorytime to 27>>
-<<elseif crimeSumCurrent() gte 4000>>
-	<<set $pillorytime to 24>>
-<<elseif crimeSumCurrent() gte 3500>>
-	<<set $pillorytime to 21>>
-<<elseif crimeSumCurrent() gte 3000>>
-	<<set $pillorytime to 18>>
-<<elseif crimeSumCurrent() gte 2500>>
-	<<set $pillorytime to 15>>
-<<elseif crimeSumCurrent() gte 2000>>
-	<<set $pillorytime to 13>>
-<<elseif crimeSumCurrent() gte 1500>>
-	<<set $pillorytime to 11>>
-<<else>>
-	<<set $pillorytime to 9>>
-<</if>>
+<<set _hours to Math.round(Math.clamp(8, 30, ((crimeSumCurrent() - 500) / 250) * 2))>>
+<<set $pillory.time.end to new DateTime(Time.date).addHours(_hours).addMinutes(60 - Time.date.minute).timeStamp>>
 <<crimeDown 5000>>
 
-The <<person>> moves your arms and head into position before lifting the top into place, restraining you. <<He>> locks it shut and attaches the key to a chain on <<his>> belt. "Someone will be over to release you in $pillorytime hours." <<if $worn.handheld.name isnot "naked">><<He>> looks at your $worn.handheld.name. "You'll get that back when you're released.<</if>><<bindtemp>><<He>> leaves without looking back.
+The <<person>> moves your arms and head into position before lifting the top into place, restraining you. <<He>> locks it shut and attaches the key to a chain on <<his>> belt. "Someone will be over to release you in _hours hours." <<if $worn.handheld.name isnot "naked">><<He>> looks at your $worn.handheld.name. "You'll get that back when you're released.<</if>><<bindtemp>><<He>> leaves without looking back.
 <br><br>
 
 With <<him>> gone, some onlookers lose interest and return to their routines. Others still gawk however. If any tried to abuse you there'd be little you could do to stop them, but people seem hesitant to make the first move. You hope it stays that way.
 <br><br>
 <<endcombat>>
 
-<<link [[Next|Pillory]]>><<endevent>><<set $pilloryaudience to 1>><</link>>
+<<link [[Next|Pillory]]>><<endevent>><<set $pillory.audience to 1>><</link>>
 <br>
 
 :: Police Pillory Fight Finish
@@ -107,35 +92,38 @@ In too much pain to resist, you're helpless as the <<person>> continues <<his>>
 :: Pillory
 <<set $outside to 1>><<set $location to "town">><<effects>>
 
-<<if $pilloryaudience lte 1>>
-<<set $pilloryaudience to 1>>
+<<if $pillory.audience lte 1>>
+<<set $pillory.audience to 1>>
 <</if>>
 
+<<set _endTime to new DateTime($pillory.time.end)>>
+<<set _timeLeft to Math.round(Time.date.compareWith(_endTime, true) / TimeConstants.secondsPerHour)>>
+
 You are stuck in a pillory on Cliff Street, in front of the town hall.
 
-<<if $pillorytime gte 1>>
-You have <<number $pillorytime>> hours left until release.
+<<if _timeLeft gte 1>>
+You have <<number _timeLeft>> hours left until release.
 <<else>>
 You should be released any moment from now.
 <</if>>
 
-<<if $pilloryaudience + $exposed is 1>>
+<<if $pillory.audience + $exposed is 1>>
 
 <span class="teal">A few people stop to look at you but most just glance then continue their business.</span>
 
-<<elseif $pilloryaudience + $exposed is 2>>
+<<elseif $pillory.audience + $exposed is 2>>
 
 <span class="lblue">You've attracted a small crowd of onlookers.</span>
 
-<<elseif $pilloryaudience + $exposed is 3>>
+<<elseif $pillory.audience + $exposed is 3>>
 
 <span class="blue">You've attracted a growing crowd of onlookers.</span>
 
-<<elseif $pilloryaudience + $exposed is 4>>
+<<elseif $pillory.audience + $exposed is 4>>
 
 <span class="purple">A large group has gathered around you, big enough that the crowd itself is attracting more people to see what the fuss is about.</span>
 
-<<elseif $pilloryaudience + $exposed is 5>>
+<<elseif $pillory.audience + $exposed is 5>>
 
 <span class="pink">A large crowd has gathered around you. People throw jeers and insults your way.</span>
 
@@ -151,38 +139,19 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 <<if $exposed gte 2>> <<trauma 1>><<gtrauma>><</if>>
 
 	<<if $exposed is 1>>
-		<<if $pilloryaudience is 1>>
-		<<fameexhibitionism 1>>
-		<<elseif $pilloryaudience is 2>>
-		<<fameexhibitionism 2>>
-		<<elseif $pilloryaudience is 3>>
-		<<fameexhibitionism 3>>
-		<<elseif $pilloryaudience is 4>>
-		<<fameexhibitionism 4>>
-		<<elseif $pilloryaudience is 5>>
-		<<fameexhibitionism 5>>
-		<<else>>
-		<<fameexhibitionism 10>>
+		<<if $pillory.audience gte 1>>
+			<<fameexhibitionism $pillory.audience>>
 		<</if>>
 	<</if>>
 	<<if $exposed is 2>>
-		<<if $pilloryaudience is 1>>
-		<<fameexhibitionism 3>>
-		<<elseif $pilloryaudience is 2>>
-		<<fameexhibitionism 6>>
-		<<elseif $pilloryaudience is 3>>
-		<<fameexhibitionism 9>>
-		<<elseif $pilloryaudience is 4>>
-		<<fameexhibitionism 12>>
-		<<elseif $pilloryaudience is 5>>
-		<<fameexhibitionism 15>>
-		<<else>>
-		<<fameexhibitionism 30>>
+		<<if $pillory.audience gte 1>>
+			<<set _audienceFactor to $pillory.audience * 2>>
+			<<fameexhibitionism _audienceFactor>>
 		<</if>>
 	<</if>>
 <</if>>
 
-<<if $exposed gte 1 and $pilloryaudience and random(0, 9) gte 7>>
+<<if $exposed gte 1 and $pillory.audience and random(0, 9) gte 7>>
 	A person pulls out their <<print ["camera", "phone"].pluck()>> and takes a photo.
 	"<<print [
 		"Now your <<undies>> can be exposed forever.",
@@ -207,17 +176,16 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 	<</if>>
 	<<fameexhibitionism 10 "pic">>
 <</if>>
-<<if $exposed gte 2 and $pilloryaudience and $player.penisExist and random(0, 9) gte 7>><<pillorypeniscomment>><</if>>
+<<if $exposed gte 2 and $pillory.audience and $player.penisExist and random(0, 9) gte 7>><<pillorypeniscomment>><</if>>
 
 <br><br>
 
-<<if $pillorytime lte 0>>
-
+<<if _endTime.timeStamp lte Time.date.timeStamp>>
 	A <<generatePolice 1>><<person1>><<person>> in a police uniform arrives. <<He>> removes your collar and unlocks the pillory, freeing you. The crowd boos its disappointment as the officer disperses them.
 	<br><br>
 	<<set $worn.neck.cursed to 0>><<neckruined>>
 	<<set $worn.neck.collaredpolice to 0>>
-	<<set $pilloryaudience to 0>>
+	<<set $pillory.audience to 0>>
 	<<unbindtemp>>
 	<<clotheson>>
 	<<set $stress -= 1000>>
@@ -225,9 +193,8 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 	<<cliffeventend>>
 	<br>
 <<else>>
-
 	<<rng 5>>
-	<<if $pilloryaudience + $exposed + $rng gte 10>>
+	<<if $pillory.audience + $exposed + $rng gte 10>>
 	<<rng>>
 		<<beastNEWinit 1 dog>>
 		<<if $rng gte 51 and ($monster is 1 or $bestialitydisable is "f")>><!-- Modified for Monster People -->
@@ -245,14 +212,14 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 			<br>
 		<</if>>
 
-	<<elseif $pilloryaudience + $exposed + $rng gte 6>>
+	<<elseif $pillory.audience + $exposed + $rng gte 6>>
 	<<rng>>
 		<<if $rng gte 85>>
 			<<if $worn.upper.exposed gte 2 and $worn.under_upper.exposed gte 1>>
 				A <<generate1>><<person1>><<person>> crouches beside you, and reaches for your <<breasts>>.
 				<br><br>
 
-				<<link [[Spit on them|Pillory Spit]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pilloryaudience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
+				<<link [[Spit on them|Pillory Spit]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pillory.audience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
 				<br>
 				<<link [[Stay still|Pillory Chest]]>><<trauma 6>><<stress 6>><<arousal 600 "breasts">><</link>><<gtrauma>><<gstress>><<garousal>>
 				<br>
@@ -262,7 +229,7 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 					A <<generate1>><<person1>><<person>> approaches, and grasps your $worn.under_upper.name.
 					<br><br>
 
-					<<link [[Spit on them|Pillory Spit]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pilloryaudience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
+					<<link [[Spit on them|Pillory Spit]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pillory.audience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
 					<br>
 					<<link [[Stay still|Pillory Under Upper]]>><<trauma 6>><<stress 6>><<arousal 600>><</link>><<gtrauma>><<gstress>><<garousal>>
 					<br>
@@ -276,7 +243,7 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 						<<fameexhibitionism 1 "pic">>
 					<</if>>
 					<<endevent>>
-					<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+					<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 					<br>
 				<</if>>
 			<<elseif $worn.upper.exposed lte 1>>
@@ -284,7 +251,7 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 					A <<generate1>><<person1>><<person>> approaches, and grasps your $worn.upper.name.
 					<br><br>
 
-					<<link [[Spit on them|Pillory Spit]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pilloryaudience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
+					<<link [[Spit on them|Pillory Spit]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pillory.audience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
 					<br>
 					<<link [[Stay still|Pillory Upper]]>><<trauma 6>><<stress 6>><<arousal 600>><</link>><<gtrauma>><<gstress>><<garousal>>
 					<br>
@@ -298,7 +265,7 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 						<<fameexhibitionism 1 "pic">>
 					<</if>>
 					<<endevent>>
-					<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+					<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 					<br>
 				<</if>>
 			<<else>>
@@ -311,7 +278,7 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 					<<fameexhibitionism 1 "pic">>
 				<</if>>
 				<<endevent>>
-				<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+				<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 				<br>
 			<</if>>
 		<<elseif $rng gte 60>>
@@ -343,21 +310,21 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 				A <<generate1>><<person1>><<person>> walks behind you and grabs the hem of your $worn.lower.name.
 				<br><br>
 
-				<<link [[Kick them|Pillory Kick]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pilloryaudience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
+				<<link [[Kick them|Pillory Kick]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pillory.audience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
 				<br>
 				<<link [[Stay still|Pillory Skirt]]>><<trauma 6>><<stress 6>><</link>><<gtrauma>><<gstress>>
 				<br>
 			<<elseif $worn.lower.exposed lte 1 and $worn.lower.set isnot "upperset" and setup.clothes.lower[clothesIndex('lower', $worn.lower)].skirt isnot 1>>
 				A <<generate1>><<person1>><<person>> walks behind you and grabs the hem of your $worn.lower.name.
 				<br><br>
-				<<link [[Kick them|Pillory Kick]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pilloryaudience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
+				<<link [[Kick them|Pillory Kick]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pillory.audience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
 				<br>
 				<<link [[Stay still|Pillory Lower]]>><<trauma 6>><<stress 6>><</link>><<gtrauma>><<gstress>>
 				<br>
 			<<elseif $worn.lower.exposed gte 2 and $worn.under_lower.exposed is 0>>
 				A <<generate1>><<person1>><<person>> walks behind you and grabs the hem of your $worn.under_lower.name.
 				<br><br>
-				<<link [[Kick them|Pillory Kick]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pilloryaudience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
+				<<link [[Kick them|Pillory Kick]]>><<stress -12>><<trauma -6>><<attackstat>><<set $pillory.audience += 1>><</link>><<ltrauma>><<llstress>><<gattention>>
 				<br>
 				<<link [[Stay still|Pillory Under]]>><<trauma 6>><<stress 6>><</link>><<gtrauma>><<gstress>>
 				<br>
@@ -369,7 +336,7 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 				<br><br>
 
 				<<endevent>>
-				<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+				<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 				<br>
 
 			<</if>>
@@ -397,10 +364,10 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 			A number of people disembark from a bus nearby. Some of them gather round to gawk. <span class="pink">The crowd becomes larger and bolder.</span>
 			<br><br>
 
-			<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+			<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 			<br>
 		<</if>>
-	<<elseif $pilloryaudience + $exposed + $rng gte 3 and $bodywritingLvl gte 2>>
+	<<elseif $pillory.audience + $exposed + $rng gte 3 and $bodywritingLvl gte 2>>
 		<<generate1>><<person1>>
 		<<if $rng gte 81>>
 			<<set $phase to 1>>
@@ -411,7 +378,7 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 			A <<person>> approaches you, and <span class="purple">pulls the lid off a pen.</span>
 			<br><br>
 		<</if>>
-		<<link [[Warn them off|Pillory Pen Warn]]>><<set $pilloryaudience += 1>><</link>><<gattention>>
+		<<link [[Warn them off|Pillory Pen Warn]]>><<set $pillory.audience += 1>><</link>><<gattention>>
 		<br>
 		<<link [[Brace|Pillory Pen]]>><</link>><<gbodywriting>>
 		<br>
@@ -424,13 +391,13 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 		Without warning, <<he>> begins to urinate on your face. The crowd watches in excitement.<<ggtrauma>><<trauma 12>><<gstress>><<stress 6>><<urinestat>>
 		<br><br>
 		<<endevent>>
-		<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+		<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 		<br>
 		<<elseif $rng gte 65>>
 		<<generatey1>><<generatey2>>A <<person1>><<person>> whispers something to <<his>> friend, a <<person2>><<person>>, who laughs and produces a piece of fruit from <<his>> bag.
 		<br><br>
 
-		<<link [[Warn them off|Pillory Warn]]>><<set $pilloryaudience += 1>><</link>><<gattention>>
+		<<link [[Warn them off|Pillory Warn]]>><<set $pillory.audience += 1>><</link>><<gattention>>
 		<br>
 		<<link [[Brace yourself|Pillory Brace]]>><</link>>
 		<br>
@@ -438,13 +405,13 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 		<<generate1>><<person1>>A <<person>> takes a picture of you with <<his>> phone.
 		<br><br>
 		<<endevent>>
-		<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+		<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 		<br>
 		<<else>>
 		A number of people disembark from a bus nearby. Some of them gather round to gawk. <span class="pink">The crowd becomes larger and bolder.</span>
 		<br><br>
 
-		<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+		<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 		<br>
 		<</if>>
 	<</if>>
@@ -489,20 +456,10 @@ You can do nothing about your <<lewdness>> displayed for everyone to see, humili
 
 The <<beasttype>> barks in satisfaction, and wanders into the crowd.
 <br><br>
-
-	<<if $pilloryaudience is 1>>
-	<<famebestiality 10>>
-	<<elseif $pilloryaudience is 2>>
-	<<famebestiality 20>>
-	<<elseif $pilloryaudience is 3>>
-	<<famebestiality 30>>
-	<<elseif $pilloryaudience is 4>>
-	<<famebestiality 40>>
-	<<elseif $pilloryaudience is 5>>
-	<<famebestiality 50>>
-	<<else>>
-	<<famebestiality 60>>
-	<</if>>
+<<if $pillory.audience gte 1>>
+	<<set _audienceFactor to $pillory.audience * 10>>
+	<<famebestiality _audienceFactor>>
+<</if>>
 
 "Serves you right, bitch," you hear someone shout.
 <br>
@@ -511,12 +468,12 @@ The <<beasttype>> barks in satisfaction, and wanders into the crowd.
 "Not even a punishment, I bet <<pshe>> enjoyed it, the filthy slut."
 <br>
 <span class="pink">The crowd becomes larger and bolder.</span>
-<<set $pilloryaudience += 1>>
+<<set $pillory.audience += 1>>
 <br>
 
 <<endcombat>>
 
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 <<elseif $enemyhealth lte 0>>
 
@@ -526,12 +483,12 @@ The <<beasttype>> gives up and flees into the crowd.
 "<<pShe>> beats innocent <<beastsplural>>. <<pShe>> belongs up there." You hear someone shout.
 <br>
 <span class="teal">The crowd becomes smaller and more cautious.</span>
-<<set $pilloryaudience -= 1>>
+<<set $pillory.audience -= 1>>
 <br>
 
 <<endcombat>>
 
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 <</if>>
 
@@ -572,20 +529,10 @@ The <<beasttype>> gives up and flees into the crowd.
 
 The <<person>> slaps your <<bottom>> then steps away from the pillory.
 <br><br>
-
-	<<if $pilloryaudience is 1>>
-	<<famerape 10>>
-	<<elseif $pilloryaudience is 2>>
-	<<famerape 20>>
-	<<elseif $pilloryaudience is 3>>
-	<<famerape 30>>
-	<<elseif $pilloryaudience is 4>>
-	<<famerape 40>>
-	<<elseif $pilloryaudience is 5>>
-	<<famerape 50>>
-	<<else>>
-	<<famerape 60>>
-	<</if>>
+<<if $pillory.audience gte 1>>
+	<<set _audienceFactor to $pillory.audience * 10>>
+	<<famerape _audienceFactor>>
+<</if>>
 
 "Serves you right, bitch," you hear someone shout.
 <br>
@@ -594,12 +541,12 @@ The <<person>> slaps your <<bottom>> then steps away from the pillory.
 "Not even a punishment, I bet <<pshe>> enjoyed it, the filthy slut."
 <br>
 <span class="pink">The crowd becomes larger and bolder.</span>
-<<set $pilloryaudience += 1>>
+<<set $pillory.audience += 1>>
 <br>
 
 <<endcombat>>
 
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 <<elseif $enemyhealth lte 0>>
 
@@ -609,12 +556,12 @@ The <<person>> steps away from the pillory.
 "So violent. <<pShe>> belongs up there." You hear someone shout.
 <br>
 <span class="teal">The crowd becomes smaller and more cautious.</span>
-<<set $pilloryaudience -= 1>>
+<<set $pillory.audience -= 1>>
 <br>
 
 <<endcombat>>
 
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 <</if>>
 
@@ -632,7 +579,7 @@ The <<person>> steps away from the pillory.
 		<br><br>
 
 		<<endevent>>
-		<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+		<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 	<<else>>
 		<span class="red">You're unable to dodge <<his>> blows.</span> You try to stifle your cries as the lashes strike your <<bottom>>.
 		Behind you, the ringmaster draws in a sharp breath. Your clumsy movements seem to be making things worse than <<he>> intended.
@@ -676,7 +623,7 @@ The ringmaster bows in front of your exposed lower half, scoops up <<his>> earni
 
 <br><br>
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 :: Pillory Butt Plug
@@ -726,7 +673,7 @@ The ringmaster bows in front of your exposed lower half, scoops up <<his>> earni
 <br><br>
 
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 
@@ -736,7 +683,7 @@ The ringmaster bows in front of your exposed lower half, scoops up <<his>> earni
 You kick the <<person>> in the shin. "Ow!" <<he>> says. "Fucking bitch." <<He>> hobbles away from you.
 <br><br>
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 :: Pillory Skirt
@@ -752,7 +699,7 @@ You kick the <<person>> in the shin. "Ow!" <<he>> says. "Fucking bitch." <<He>>
 
 <<set $worn.lower.skirt_down to 0>><<set $worn.lower.vagina_exposed to 1>><<set $worn.lower.anus_exposed to 1>><<set $worn.lower.exposed to 2>>
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 <<else>>
@@ -787,7 +734,7 @@ You kick the <<person>> in the shin. "Ow!" <<he>> says. "Fucking bitch." <<He>>
 	<</if>>
 
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 <</if>>
@@ -809,7 +756,7 @@ You kick the <<person>> in the shin. "Ow!" <<he>> says. "Fucking bitch." <<He>>
 
 <<set $worn.lower.vagina_exposed to 1>><<set $worn.lower.anus_exposed to 1>><<set $worn.lower.exposed to 2>><<set $worn.lower.state to "thighs">>
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 <<elseif $rng gte 1>>
@@ -837,7 +784,7 @@ You kick the <<person>> in the shin. "Ow!" <<he>> says. "Fucking bitch." <<He>>
 <<He>> pulls up your $worn.lower.name before returning to the crowd.
 <br><br>
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 <</if>>
@@ -855,7 +802,7 @@ You kick the <<person>> in the shin. "Ow!" <<he>> says. "Fucking bitch." <<He>>
 
 <<set $worn.under_lower.vagina_exposed to 1>><<set $worn.under_lower.anus_exposed to 1>><<set $worn.under_lower.exposed to 1>><<set $worn.under_lower.state to "thighs">>
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 <<elseif $rng gte 1>>
@@ -863,7 +810,7 @@ You kick the <<person>> in the shin. "Ow!" <<he>> says. "Fucking bitch." <<He>>
 <<He>> pulls up your $worn.under_lower.name, stretching them taut and emphasising your <<bottom>> cheeks. <<He>> gives you a firm spank before returning to the crowd.
 <br><br>
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 <</if>>
@@ -890,7 +837,7 @@ You kick the <<person>> in the shin. "Ow!" <<he>> says. "Fucking bitch." <<He>>
 
 <<endevent>>
 
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 :: Pillory Brace
@@ -913,7 +860,7 @@ You brace for the impact as the fruit comes flying towards you.
 
 <<endevent>>
 
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 :: Pillory Analingus
@@ -947,7 +894,7 @@ You brace for the impact as the fruit comes flying towards you.
 <br><br>
 
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 :: Pillory Oral
@@ -985,20 +932,10 @@ You brace for the impact as the fruit comes flying towards you.
 
 The <<person>> pats your head then steps away from the pillory.
 <br><br>
-
-	<<if $pilloryaudience is 1>>
-	<<famerape 10>>
-	<<elseif $pilloryaudience is 2>>
-	<<famerape 20>>
-	<<elseif $pilloryaudience is 3>>
-	<<famerape 30>>
-	<<elseif $pilloryaudience is 4>>
-	<<famerape 40>>
-	<<elseif $pilloryaudience is 5>>
-	<<famerape 50>>
-	<<else>>
-	<<famerape 60>>
-	<</if>>
+<<if $pillory.audience gte 1>>
+	<<set _audienceFactor to $pillory.audience * 10>>
+	<<famerape _audienceFactor>>
+<</if>>
 
 "Serves you right, bitch," you hear someone shout.
 <br>
@@ -1007,12 +944,12 @@ The <<person>> pats your head then steps away from the pillory.
 "Not even a punishment, I bet <<pshe>> enjoyed it, the filthy slut."
 <br>
 <span class="pink">The crowd becomes larger and bolder.</span>
-<<set $pilloryaudience += 1>>
+<<set $pillory.audience += 1>>
 <br>
 
 <<endcombat>>
 
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 <<elseif $enemyhealth lte 0>>
 
@@ -1022,12 +959,12 @@ Pride wounded, the <<person>> leaves the pillory.
 "So violent. <<pShe>> belongs up there." You hear someone shout.
 <br>
 <span class="teal">The crowd becomes smaller and more cautious.</span>
-<<set $pilloryaudience -= 1>>
+<<set $pillory.audience -= 1>>
 <br>
 
 <<endcombat>>
 
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 <</if>>
 
@@ -1044,7 +981,7 @@ Pride wounded, the <<person>> leaves the pillory.
 <</if>>
 <br><br>
 
-<<link [[Next (1:00)|Pillory]]>><<endevent>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<endevent>><<pass 1 hour>><</link>>
 <br>
 
 
@@ -1142,7 +1079,7 @@ The <<person>> approaches you,
 <br><br>
 
 
-<<link [[Next (1:00)|Pillory]]>><<endevent>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<endevent>><<pass 1 hour>><</link>>
 <br>
 
 :: Pillory Spit
@@ -1153,7 +1090,7 @@ You spit on the <<persons>> face. <<He>> flinches in surprise, and almost tumble
 
 <<endevent>>
 
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 
@@ -1191,12 +1128,12 @@ The <<person>> grasps your <<breasts>>, and squeezes. You endure <<his>> fondlin
 		It's too much. <<orgasm>>
 
 		The audience jeer and mock, attracting more attention. You feel humiliated. <span class="red">The crowd becomes much larger and bolder.</span>
-		<<set $pilloryaudience += 2>><<ggtrauma>><<trauma 12>>
+		<<set $pillory.audience += 2>><<ggtrauma>><<trauma 12>>
 		<br><br>
 	<<else>>
 
 		<span class="pink">The crowd becomes larger and bolder.</span>
-		<<set $pilloryaudience += 1>>
+		<<set $pillory.audience += 1>>
 		<br><br>
 	<</if>>
 
@@ -1223,13 +1160,13 @@ The <<person>> grasps your <<breasts>>, and squeezes. You endure <<his>> fondlin
 	<br><br>
 
 	You feel humiliated. <span class="pink">The crowd becomes larger and bolder.</span>
-	<<set $pilloryaudience += 1>><<ggtrauma>><<trauma 12>>
+	<<set $pillory.audience += 1>><<ggtrauma>><<trauma 12>>
 	<br><br>
 <</if>>
 
 <<endevent>>
 
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 
@@ -1258,7 +1195,7 @@ The <<person>> grasps your <<breasts>>, and squeezes. You endure <<his>> fondlin
 <</if>>
 
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
 
 
@@ -1286,5 +1223,5 @@ The <<person>> grasps your <<breasts>>, and squeezes. You endure <<his>> fondlin
 <</if>>
 
 <<endevent>>
-<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><<set $pillorytime -= 1>><</link>>
+<<link [[Next (1:00)|Pillory]]>><<pass 1 hour>><</link>>
 <br>
diff --git a/game/overworld-town/loc-school/classes/maths-events.twee b/game/overworld-town/loc-school/classes/maths-events.twee
index 452ff064ac335b3e8ed8792959b1dbaa990ece78..80db38e03ebde86aac53b05ee2a0ba824289b3ac 100644
--- a/game/overworld-town/loc-school/classes/maths-events.twee
+++ b/game/overworld-town/loc-school/classes/maths-events.twee
@@ -399,7 +399,7 @@ You deliver the note without incident, but on the way back to class you are houn
 	<br><br>
 
 	The <<group>> share nervous glances with each other, weighing their odds.
-	<<if $delinquency lt 400 and $pillory_tenant.special.name isnot "Leighton">>
+	<<if $delinquency lt 400 and $pillory.tenant.special.name isnot "Leighton">>
 		Before they can reach a decision, a second voice breaks the silence, scaring them into a sprint. They leave you on the ground.
 		<br><br>
 
diff --git a/game/overworld-town/loc-school/classes/science-events.twee b/game/overworld-town/loc-school/classes/science-events.twee
index 4bd608ea60c81b0c6991d6f96c713e44740361fb..b8bf0e4be14b986e137799c7061cfbb542beb6d1 100644
--- a/game/overworld-town/loc-school/classes/science-events.twee
+++ b/game/overworld-town/loc-school/classes/science-events.twee
@@ -906,7 +906,7 @@ It's all just too much for you. You pass out.
 	<br><br>
 
 	The <<group>> share nervous glances with each other, weighing their odds.
-	<<if $delinquency lt 400 and $pillory_tenant.special.name isnot "Leighton">>
+	<<if $delinquency lt 400 and $pillory.tenant.special.name isnot "Leighton">>
 		Before they can reach a decision, a second voice breaks the silence, scaring them into a sprint. They leave you on the ground.
 		<br><br>
 
diff --git a/game/overworld-town/loc-school/hallways.twee b/game/overworld-town/loc-school/hallways.twee
index 181af17552299b2156d0031af1ccc64319b6b5da..36cb1a89811c38c0d0c5c76a7a5874536c1a31dd 100644
--- a/game/overworld-town/loc-school/hallways.twee
+++ b/game/overworld-town/loc-school/hallways.twee
@@ -136,7 +136,7 @@
 		<<bathroomicon "toilet">><<link [[Sneak to toilets (0:05)|School Toilets]]>><<pass 5>><</link>>
 		<br>
 	<<else>>
-		<<if $schoolstate is "afternoon" and $detention gte 1 and $daily.school.detentionAttended isnot 1 and $pillory_tenant.special.name isnot "Leighton">>
+		<<if $schoolstate is "afternoon" and $detention gte 1 and $daily.school.detentionAttended isnot 1 and $pillory.tenant.special.name isnot "Leighton">>
 		<<schoolicon "headdesk">><<link [[Go to detention|School Detention]]>><</link>>
 		<br>
 			<<if $headdrive gte 1 and $headnodetention isnot 1 and $headmoney isnot 1 and $headphotoshoot isnot 1>>
diff --git a/game/overworld-town/loc-school/library.twee b/game/overworld-town/loc-school/library.twee
index 687d561b09dca65dba0d5c5884c9ee4d47232cc8..929c51daa87fe1080e227e36db07923e6d57041b 100644
--- a/game/overworld-town/loc-school/library.twee
+++ b/game/overworld-town/loc-school/library.twee
@@ -174,7 +174,7 @@ Next to it is a small basket with returned and not yet sorted books.
 <<sydneySchedule>>
 <<if $stress gte $stressmax>>
 	<<link [[Everything fades to black...|School Passout]]>><</link>>
-<<elseif _sydney_location is "library" and ($sydneyLeightonConfront is 1 or $leightonAssaulted is 1) and $exposed lte 0 and C.npc.Leighton.init is 1 and $pillory_tenant.special.name isnot "Leighton" and !$sydneyLeightonConfrontTimer>>
+<<elseif _sydney_location is "library" and ($sydneyLeightonConfront is 1 or $leightonAssaulted is 1) and $exposed lte 0 and C.npc.Leighton.init is 1 and $pillory.tenant.special.name isnot "Leighton" and !$sydneyLeightonConfrontTimer>>
 	<<unset $sydneyLeightonConfront>><<set $sydneyLeightonConfrontTimer to 7>><<set $corruptionEvent to 1>>
 	<<if ($bookStolenKnown isnot undefined and $bookStolenKnown gte 3) or $libraryMoneyStolen gte 1000 or $leightonAssaulted is 1>>
 		<<if $leightonAssaulted is 1>>
diff --git a/game/overworld-town/loc-school/lockers.twee b/game/overworld-town/loc-school/lockers.twee
index da0ecb8729a88d10ee2519f2b18305a852b45e7f..b8b2f0eac6968db819af73016dd71aa763c64869 100644
--- a/game/overworld-town/loc-school/lockers.twee
+++ b/game/overworld-town/loc-school/lockers.twee
@@ -218,7 +218,7 @@ You feign confusion. "Your locker? I thought this was mine. Silly me."
 	<<clotheson>>
 	<<endcombat>>
 <<elseif $timer lte 0>>
-	<<if $pillory_tenant.special.name isnot "Leighton">>
+	<<if $pillory.tenant.special.name isnot "Leighton">>
 		Leighton storms onto the scene, and physically separates the two of you.
 		<<endevent>><<npc Leighton>><<person1>>
 		"This is completely unacceptable," <<he>> says, looking at you. "I'll see you in my office after school, perhaps I can teach you how to act civil."
diff --git a/game/overworld-town/loc-school/main.twee b/game/overworld-town/loc-school/main.twee
index 3bc3d8de4aa7187aae69d46e581394804f4ec1bd..03a6484905f25a2c734dc249fc3181e06a504a13 100644
--- a/game/overworld-town/loc-school/main.twee
+++ b/game/overworld-town/loc-school/main.twee
@@ -10,10 +10,10 @@
 		<<if Time.weekDay is 6 and $framed is "whitney" and C.npc.Whitney.state isnot "pillory">>
 			<br>
 			You hear some shouts and arrive just in time to see a scuffle as <span class="gold">Whitney is dragged out of the school in handcuffs by several police officers.</span><<imprison_whitney>>
-		<<elseif Time.weekDay is 6 and $framed is "leighton" and $pillory_tenant.special.name isnot "Leighton">>
+		<<elseif Time.weekDay is 6 and $framed is "leighton" and $pillory.tenant.special.name isnot "Leighton">>
 			<br>
 			You hear some loud protests and arrive just in time to see <span class="gold">Leighton being led away by police.</span><<imprison_leighton>>
-		<<elseif $detention gte 1 and $daily.school.detentionAttended isnot 1 and $headnodetention isnot 1 and $pillory_tenant.special.name isnot "Leighton">>
+		<<elseif $detention gte 1 and $daily.school.detentionAttended isnot 1 and $headnodetention isnot 1 and $pillory.tenant.special.name isnot "Leighton">>
 			<span class="purple">You see the head guarding the gate.</span> You're meant to be in detention, so if you leave that way, you'll be apprehended.
 		<<elseif $bullytimer gte 1 and $bullytimeroutside gte 1 and $daily.whitney.bullyGate isnot 1 and C.npc.Whitney.init is 1 and !["dungeon", "pillory"].includes(C.npc.Whitney.state)>>
 			<span class="purple">You see Whitney hanging out by the gate.</span>
@@ -70,7 +70,7 @@
 		<br>
 		<<schoolicon "courtyard">><<link [[Rear courtyard (0:02)|School Rear Courtyard]]>><<pass 2>><</link>>
 		<br><br>
-		<<if $schoolstate is "afternoon" and $detention gte 1 and $daily.school.detentionAttended isnot 1 and $headnodetention isnot 1 and $pillory_tenant.special.name isnot "Leighton">>
+		<<if $schoolstate is "afternoon" and $detention gte 1 and $daily.school.detentionAttended isnot 1 and $headnodetention isnot 1 and $pillory.tenant.special.name isnot "Leighton">>
 			<<oxfordicon>><<link [[Leave the school|School Leave Stop]]>><<schoolclothesreset>><</link>>
 			<br>
 		<<elseif $schoolstate is "afternoon" and $bullytimer gte 1 and $bullytimeroutside gte 1 and $daily.whitney.bullyGate isnot 1 and C.npc.Whitney.init is 1 and !["dungeon", "pillory"].includes(C.npc.Whitney.state)>>
@@ -646,7 +646,7 @@ You haul yourself over the fence and drop down on the other side.
 :: Head's Office
 <<set $outside to 0>><<set $location to "school">><<schooleffects>><<effects>>
 
-<<if Time.schoolDay and $schoolstate isnot "early" and $schoolstate isnot "late" and $pillory_tenant.special.name isnot "Leighton">>
+<<if Time.schoolDay and $schoolstate isnot "early" and $schoolstate isnot "late" and $pillory.tenant.special.name isnot "Leighton">>
 
 	<<npc Leighton>><<person1>>
 	You knock on the <<nnpc_title "Leighton">>'s door. You hear <<his>> voice on the other side. "Enter."
@@ -1144,7 +1144,7 @@ The <<group>> recoil in pain. <<tearful>> you seize the opportunity and escape f
 <<elseif $rescue gte 1 and $alarm is 1>><<set $rescued += 1>>
 	<<if $rescue is 2>>
 		The door flies open. Whitney barges in, <<nnpc_his "Whitney">> buddies stood behind <<nnpc_him "Whitney">>.
-		<<if $pillory_tenant.special.name isnot "Leighton">>
+		<<if $pillory.tenant.special.name isnot "Leighton">>
 			<<nnpc_He "Whitney">> looks between you and the two students, then scowls. You can't tell who <<nnpc_his "Whitney">> anger is directed at.<<status 1>><<gcool>>
 			<br><br>
 
diff --git a/game/overworld-town/loc-school/widgets-events.twee b/game/overworld-town/loc-school/widgets-events.twee
index f9a3e605653fbc60d65ea54b08493dafde74f4bb..8b13b6845cb0836f696a45f4170245bad6be3c6f 100644
--- a/game/overworld-town/loc-school/widgets-events.twee
+++ b/game/overworld-town/loc-school/widgets-events.twee
@@ -1625,7 +1625,7 @@
 		<br>
 
 	<<elseif $bullyevent is 6>>
-		<<if $pillory_tenant.special.name is "Leighton">>
+		<<if $pillory.tenant.special.name is "Leighton">>
 			<!-- does not increase bullyevent counter -->
 			You're not sure why, but you feel like Whitney and <<his>> gang might be taking advantage of Leighton's absence to do something that will land at least one of them in detention once the headteacher returns.
 			<br><br>
diff --git a/game/overworld-town/loc-school/widgets.twee b/game/overworld-town/loc-school/widgets.twee
index bb9310e85dc46edf4780dc146fb7f74c397fe8ed..3366de6ee0b21641e0a09eb3749b1e7b54902abf 100644
--- a/game/overworld-town/loc-school/widgets.twee
+++ b/game/overworld-town/loc-school/widgets.twee
@@ -3875,11 +3875,11 @@
 		<</if>>
 
 		/* There are no cases where Leighton being present and low delinquency are separate conditions for rescue, but there are some where both are required. ex: "Maths Note Molestation" */
-		<<if _args.includesAll("delinquency", "Leighton") and $delinquency lt 400 and $pillory_tenant.special.name isnot "Leighton">>
+		<<if _args.includesAll("delinquency", "Leighton") and $delinquency lt 400 and $pillory.tenant.special.name isnot "Leighton">>
 			<<set $_rescue.push("Leighton")>>
 		<<elseif _args.includes("delinquency") and $delinquency lt 400>>
 			<<set $_rescue.push("delinquency")>>
-		<<elseif _args.includes("Leighton") and $pillory_tenant.special.name isnot "Leighton">>
+		<<elseif _args.includes("Leighton") and $pillory.tenant.special.name isnot "Leighton">>
 			<<set $_rescue.push("Leighton")>>
 		<</if>>
 
diff --git a/game/overworld-town/loc-street/cliff.twee b/game/overworld-town/loc-street/cliff.twee
index 31c2d66f03b0729061f7257df8ad5600d8bc1461..3777e5e02bf5f9d65bff6fd3ca142c449a0a47fa 100644
--- a/game/overworld-town/loc-street/cliff.twee
+++ b/game/overworld-town/loc-street/cliff.twee
@@ -71,15 +71,15 @@ There's a path leading down to the beach.
 		<br><br>
 	<</if>>
 <<else>>
-	<<if ndef $pillory_tenant>><<setup_pillory>><</if>>
-	<<set _endTime to new DateTime($pillory_tenant.endTime)>>
+	<<if ndef $pillory.tenant>><<setup_pillory>><</if>>
+	<<set _endTime to new DateTime($pillory.tenant.endTime)>>
 	<<set _timeLeft to Time.date.compareWith(_endTime)>>
 
-	<<if $pillory_tenant.exists is 1>> /* If someone is in pillory... */
+	<<if $pillory.tenant.exists is 1>> /* If someone is in pillory... */
 		<<if _endTime.hours lt -2>> /* If sentence finished before today. */
 			<<clear_pillory>>
 		<<elseif _timeLeft.days lt 1>>
-			<<if $pillory_tenant.endTime <= Time.date.timeStamp>> /* If ending now? */
+			<<if $pillory.tenant.endTime <= Time.date.timeStamp>> /* If ending now? */
 				<<end_npc_pillory>>
 			<<else>> /* Sentence ongoing. */
 				<<npc_pillory>>
@@ -159,8 +159,8 @@ There's a path leading down to the beach.
 				<<pilloryicon>><<link [[Watch pillory (0:10)|Robin Pillory Failure]]>><<pass 10>><</link>>
 			<</if>>
 			<br>
-		<<elseif $pillory_tenant.exists is 1 and $exposed lte 0>>
-			<<set _timeLeft to Time.date.compareWith($pillory_tenant.endTime)>>
+		<<elseif $pillory.tenant.exists is 1 and $exposed lte 0>>
+			<<set _timeLeft to Time.date.compareWith($pillory.tenant.endTime)>>
 			<<if _timeLeft.hours eq 0 and _timeLeft.minutes lte 10>>
 				<span class="blue">A police officer starts trying to disperse the crowd.</span>
 				<br>
@@ -365,7 +365,7 @@ You shudder and pocket the money.
 
 :: Cliff Street Pillory
 <<set $outside to 1>><<set $location to "town">><<effects>><<set $bus to "cliff">>
-<<if $pillory_tenant.exists>>
+<<if $pillory.tenant.exists>>
 	You join the crowd around the pillory on Cliff Street.
 	<<npc_pillory_detail>>
 	<<if $stress gte ($stressmax / 10) * 3>>
@@ -379,35 +379,35 @@ You shudder and pocket the money.
 	<</if>>
 	<<if Time.dayState is "night">>
 		<<if $stress gte ($stressmax / 10) * 3>>
-			<<if $pillory_tenant.fruitstock gte 1>>
-				<<link [[Throw fruit (0:02)|Cliff Street Prisoner]]>><<pass 2>><<set $phase to 0>><<stress -6>><<set $pillory_tenant.fruitstock -= 1>><</link>><<lstress>>
+			<<if $pillory.tenant.fruitstock gte 1>>
+				<<link [[Throw fruit (0:02)|Cliff Street Prisoner]]>><<pass 2>><<set $phase to 0>><<stress -6>><<set $pillory.tenant.fruitstock -= 1>><</link>><<lstress>>
 				<br>
 			<<else>>
 				<span class="red">There is no fruit left to throw right now.</span>
 				<br>
 			<</if>>
 		<</if>>
-		<<if $cat gte 6 and ($pillory_tenant.ass + $pillory_tenant.genital) gte 2>>
+		<<if $cat gte 6 and ($pillory.tenant.ass + $pillory.tenant.genital) gte 2>>
 			<<link [[Groom prisoner (0:05)|Cliff Street Prisoner]]>><<pass 5>><<set $phase to 1>><</link>>
 			<br>
 		<</if>>
-		<<if $pillory_tenant.lowerexposed gte 2 and $stress gte 4000 and $trauma gte (($traumamax / 5) * 1)>>
+		<<if $pillory.tenant.lowerexposed gte 2 and $stress gte 4000 and $trauma gte (($traumamax / 5) * 1)>>
 			<<link [[Spank prisoner (0:05)|Cliff Street Prisoner]]>><<pass 5>><<set $phase to 2>><</link>><<llstress>><<ltrauma>>
 			<br>
 		<</if>>
-		<<if $pillory_tenant.lowerexposed lte 1 or (($pronoun is "m" and $pillory_tenant.upperexposed lte 1) or ($pronoun is "f" and $pillory_tenant.upperexposed lte 2)) and $stress gte 7000 and $trauma gte (($traumamax / 5) * 2)>>
+		<<if $pillory.tenant.lowerexposed lte 1 or (($pronoun is "m" and $pillory.tenant.upperexposed lte 1) or ($pronoun is "f" and $pillory.tenant.upperexposed lte 2)) and $stress gte 7000 and $trauma gte (($traumamax / 5) * 2)>>
 			<<link [[Expose prisoner (0:02)|Cliff Street Prisoner]]>><<pass 2>><<set $phase to 3>><</link>><<llstress>>
 			<br>
 		<</if>>
 		<<if $submissive lte 1000 or $fame.good gte 50 or $stat_police.pillory gte 1 or (($awareness + $purity) gte 1050)>>
-			<<if ($pillory_tenant.lowerexposed + $pillory_tenant.upperexposed) gte 1>>
+			<<if ($pillory.tenant.lowerexposed + $pillory.tenant.upperexposed) gte 1>>
 				<<link [[Cover prisoner (0:05)|Cliff Street Prisoner Night Help]]>><<pass 5>><<set $phase to 0>><</link>><<gstress>>
 				<br>
 			<</if>>
 			<<if $speech_attitude is "bratty" or $fame.good gte 150 or $stat_police.pillory gte 1 or (($awareness + $purity) gte 1400)>>
-				<<if $pillory_tenant.crowd gte 8>><<set $skulduggerydifficulty to 1350>> /* 50% chance of failure, even at max skulduggery */
-				<<elseif $pillory_tenant.crowd gte 6>><<set $skulduggerydifficulty to 1250>> /* 30% fail at max skul */
-				<<elseif $pillory_tenant.crowd gte 4>><<set $skulduggerydifficulty to 1100>> /* 10% chance of success, even at max skulduggery */
+				<<if $pillory.tenant.crowd gte 8>><<set $skulduggerydifficulty to 1350>> /* 50% chance of failure, even at max skulduggery */
+				<<elseif $pillory.tenant.crowd gte 6>><<set $skulduggerydifficulty to 1250>> /* 30% fail at max skul */
+				<<elseif $pillory.tenant.crowd gte 4>><<set $skulduggerydifficulty to 1100>> /* 10% chance of success, even at max skulduggery */
 				<<else>><<set $skulduggerydifficulty to 875>>
 				<</if>>
 				<<link [[Free prisoner (0:05)|Cliff Street Prisoner Night Help]]>><<pass 5>><<set $phase to 1>><</link>> <<crime "obstruction">><<skulduggerydifficulty>><<dangerousText>>
@@ -419,20 +419,20 @@ You shudder and pocket the money.
 		<</if>>
 	<<else>> /* day */
 		<<if $stress gte ($stressmax / 5) * 2>>
-			<<if $pillory_tenant.fruitstock gte 1>>
-				<<link [[Throw fruit (0:02)|Cliff Street Prisoner]]>><<pass 2>><<set $phase to 0>><<stress -6>><<set $pillory_tenant.fruitstock -= 1>><</link>><<lstress>>
+			<<if $pillory.tenant.fruitstock gte 1>>
+				<<link [[Throw fruit (0:02)|Cliff Street Prisoner]]>><<pass 2>><<set $phase to 0>><<stress -6>><<set $pillory.tenant.fruitstock -= 1>><</link>><<lstress>>
 				<br>
 			<<else>>
 				<span class="red">There is no fruit left to throw right now.</span>
 				<br>
 			<</if>>
 		<</if>>
-		<<if $pillory_tenant.lowerexposed lte 1 and $pillory_tenant.wedgied isnot 1 and ($stress gte 6000 or $trauma gte (($traumamax / 5) * 2))>>
-			<<link [[Wedgie (0:05)|Cliff Street Prisoner]]>><<set $pillory_tenant.wedgied to 1>><<pass 5>><<set $phase to 4>><<stress -12>><</link>><<llstress>><<ltrauma>>
+		<<if $pillory.tenant.lowerexposed lte 1 and $pillory.tenant.wedgied isnot 1 and ($stress gte 6000 or $trauma gte (($traumamax / 5) * 2))>>
+			<<link [[Wedgie (0:05)|Cliff Street Prisoner]]>><<set $pillory.tenant.wedgied to 1>><<pass 5>><<set $phase to 4>><<stress -12>><</link>><<llstress>><<ltrauma>>
 			<br>
 		<</if>>
 		<<if $submissive lte 1000 or $fame.good gte 50 or $stat_police.pillory gte 1 or (($awareness + $purity) gte 1050)>>
-			<<if ($pillory_tenant.lowerexposed + $pillory_tenant.upperexposed) gte 1>>
+			<<if ($pillory.tenant.lowerexposed + $pillory.tenant.upperexposed) gte 1>>
 				<<link [[Cover prisoner (0:05)|Cliff Street Prisoner]]>><<pass 5>><<set $phase to 5>><</link>><<gstress>>
 				<br>
 				<span class="teal">In broad daylight, you don't dare help more. Maybe under the cover of night.</span>
@@ -460,7 +460,7 @@ You shudder and pocket the money.
 	<br>
 	You throw it at <<the_pillory_person>>
 	<<if $rng gte 75>>
-	<<set $pillory_tenant.fruit += 1>>
+	<<set $pillory.tenant.fruit += 1>>
 		<span class="teal">hitting <<him>> full in the face.</span> <<His>> expression is hilarious.
 		<<if currentSkillValue('physique') gte ($physiquesize / 7) * 4>>You put a lot of strength behind it, it must have hurt.<</if>>
 		<<llstress>><<stress -12>>
@@ -473,7 +473,7 @@ You shudder and pocket the money.
 	You slurp up the cream from <<the_pillory_person>>'s ass and groin. The crowd watch, awed.
 	<<famesex 20>>
 <<elseif $phase is 2>>
-<<set $pillory_tenant.spank += 1>><<control 10>><<stress -24>><<trauma -12>>
+<<set $pillory.tenant.spank += 1>><<control 10>><<stress -24>><<trauma -12>>
 	You <<print either("viciously","resentfully","grimly","self-righteously","maniacally")>> spank <<the_pillory_person>>'s ass. Somehow,
 	<<print either("it gives you a sense of control and well-being.","it brings a growing sense of calm.","it makes the shadows draw back.")>>
 	<br>
@@ -481,38 +481,38 @@ You shudder and pocket the money.
 <<elseif $phase is 3>><<control 10>><<stress -24>><<trauma -12>>
 	Approaching <<the_pillory_person>> from behind, you <<print either("smoothly","awkwardly","quickly")>>
 	<<if $pronoun is "m">>
-		<<if $pillory_tenant.upperexposed lte 1>>
-			<<set $pillory_tenant.upperexposed to 2>>displace <<his>> top, fully exposing <<his>> chest
-			<<if $pillory_tenant.lowerexposed lte 1>>and then<</if>>
+		<<if $pillory.tenant.upperexposed lte 1>>
+			<<set $pillory.tenant.upperexposed to 2>>displace <<his>> top, fully exposing <<his>> chest
+			<<if $pillory.tenant.lowerexposed lte 1>>and then<</if>>
 		<</if>>
-		<<if $pillory_tenant.lowerexposed lte 1>>pull <<his>>
-			<<if $pillory_tenant.lowerexposed is 0>>trousers and<</if>>
+		<<if $pillory.tenant.lowerexposed lte 1>>pull <<his>>
+			<<if $pillory.tenant.lowerexposed is 0>>trousers and<</if>>
 			underpants to the floor, exposing <<his>> ass and <<his>>
-			<<if $pillory_tenant.person.gender is "m">>
-				$pillory_tenant.person.penisdesc
+			<<if $pillory.tenant.person.gender is "m">>
+				$pillory.tenant.person.penisdesc
 			<<else>>
 				pussy
 			<</if>>
-			<<set $pillory_tenant.lowerexposed to 2>>
+			<<set $pillory.tenant.lowerexposed to 2>>
 		<</if>>
 	<<elseif $pronoun is "f">>
-		<<if $pillory_tenant.upperexposed lte 2>>
-			<<if $pillory_tenant.upperexposed lte 0>>displace <<his>> top and<</if>>
-			remove <<his>> bra, fully exposing <<his>> $pillory_tenant.person.breastsdesc
-			<<if $pillory_tenant.lowerexposed lte 1>>to all. Without hesitation, you then<</if>>
-			<<set $pillory_tenant.upperexposed to 3>>
+		<<if $pillory.tenant.upperexposed lte 2>>
+			<<if $pillory.tenant.upperexposed lte 0>>displace <<his>> top and<</if>>
+			remove <<his>> bra, fully exposing <<his>> $pillory.tenant.person.breastsdesc
+			<<if $pillory.tenant.lowerexposed lte 1>>to all. Without hesitation, you then<</if>>
+			<<set $pillory.tenant.upperexposed to 3>>
 		<</if>>
-		<<if $pillory_tenant.lowerexposed lte 1>>
-			<<if $pillory_tenant.lowerexposed lte 0>>hitch up <<his>> skirt and pull <<his>> panties to the floor,
+		<<if $pillory.tenant.lowerexposed lte 1>>
+			<<if $pillory.tenant.lowerexposed lte 0>>hitch up <<his>> skirt and pull <<his>> panties to the floor,
 			<<else>>pull <<the_pillory_person>>'s panties to the floor,<</if>>
 			fully exposing <<his>>
-			<<if $pillory_tenant.person.gender is "m">>
-				$pillory_tenant.person.penisdesc
+			<<if $pillory.tenant.person.gender is "m">>
+				$pillory.tenant.person.penisdesc
 			<<else>>
 				pussy
 			<</if>>
 			and ass
-			<<set $pillory_tenant.lowerexposed to 2>>
+			<<set $pillory.tenant.lowerexposed to 2>>
 		<</if>>
 	<<else>> /* in case the game goes fully non binary */
 		tear off all their clothes, fully exposing them
@@ -520,7 +520,7 @@ You shudder and pocket the money.
 	<br><br>
 
 	Some people <<print either("gasp, but","laugh, and","complain, but","fall silent, but","whistle, and","jeer, and","make lewd threats, and")>> more than a few cheer.
-<<elseif $phase is 4>><<control 5>><<stress -20>><<trauma -4>><<set $pillory_tenant.broken += 1>>
+<<elseif $phase is 4>><<control 5>><<stress -20>><<trauma -4>><<set $pillory.tenant.broken += 1>>
 	Approaching from behind, you <<print either("cheekily","aggressively","quickly","vindictively","stealthily")>>
 	grab <<the_pillory_person>>'s <<if $pronoun is "m">>underpants<<else>>panties<</if>> and hoist them up hard.
 	<br>
@@ -528,7 +528,7 @@ You shudder and pocket the money.
 	stuck in the pillory, <<he>> can't even fix it. <<He>> knows this and so does everyone watching.
 	<br>
 	Many in the crowd seem to share in your amusement.
-<<elseif $phase is 5>><<stress 6>><<famegood 10>><<trauma -10>><<set $pillory_tenant.upperexposed to 0>><<set $pillory_tenant.lowerexposed to 0>>
+<<elseif $phase is 5>><<stress 6>><<famegood 10>><<trauma -10>><<set $pillory.tenant.upperexposed to 0>><<set $pillory.tenant.lowerexposed to 0>>
 	The people watching fall quiet as they see you approach the pillory. <<The_pillory_person>> watches you warily, but relaxes when you start to restore <<his>> clothes
 	along with some fragment of <<his>> dignity.
 	<br><br>
@@ -557,14 +557,14 @@ You shudder and pocket the money.
 
 :: Cliff Street Prisoner Night Help
 <<set $outside to 1>><<set $location to "town">><<effects>><<set $bus to "cliff">>
-<<if $phase is 0>><<stress 6>><<famegood 10>><<trauma -10>><<set $pillory_tenant.upperexposed to 0>><<set $pillory_tenant.lowerexposed to 0>>
+<<if $phase is 0>><<stress 6>><<famegood 10>><<trauma -10>><<set $pillory.tenant.upperexposed to 0>><<set $pillory.tenant.lowerexposed to 0>>
 	The people watching fall quiet as they see you approach the pillory. <<The_pillory_person>> watches you warily, but relaxes when you start to restore <<his>> clothes
 	along with some fragment of <<his>> dignity.
 	<br><br>
 	When they realise what you are doing, the crowd turn. You hear sinister grumbling behind, while you quickly finish putting <<his>> clothes back in place.
 	<br><br>
 	<<rng 12>>
-	<<if $rng gte $pillory_tenant.crowd>>
+	<<if $rng gte $pillory.tenant.crowd>>
 		Before anyone can get too brazen, you quickly move away.<br>
 		You sense lingering hostility from some in the crowd,
 		<<if $speech_attitude is "bratty">>
@@ -580,7 +580,7 @@ You shudder and pocket the money.
 		<<link [[Next| Cliff Street]]>><</link>>
 		<br>
 	<<else>>
-		<<if $pillory_tenant.crowd gt 6>><<athleticsdifficulty 400 1000 f>><<else>><<athleticsdifficulty 0 500 f>><</if>>
+		<<if $pillory.tenant.crowd gt 6>><<athleticsdifficulty 400 1000 f>><<else>><<athleticsdifficulty 0 500 f>><</if>>
 		"Watch out!" <<The_pillory_person>> says suddenly.
 		<<if $athleticsSuccess>>
 			Someone tries to grab you, but you slip their grip and dash away.<br>
@@ -713,8 +713,8 @@ The locks swiftly come open under your skillful touch, and the crowd nearby are
 <br><br>
 "Okay, up you get, criminal," you bark, as you throw open the pillory mechanism and drag <<the_pillory_person>> to <<his>> feet.
 
-<<if ($pillory_tenant.lowerexposed + $pillory_tenant.upperexposed) gte 1>>
-	<<if $pillory_tenant.person.pronoun is "f">>
+<<if ($pillory.tenant.lowerexposed + $pillory.tenant.upperexposed) gte 1>>
+	<<if $pillory.tenant.person.pronoun is "f">>
 		"Come on, this isn't a titty bar. No one want to see all that. Sort those clothes out. ... Good.
 	<<else>>
 		"What are you a flasher? Cover that up! No one want to see that. Sort those clothes out. ... Good.
@@ -726,10 +726,10 @@ You know where the station is: get walking."
 <br><br>
 Once out of sight of the crowd, you disappear together into an alley.
 <br><br>
-<<if $pillory_tenant.special.name is "Leighton">>
+<<if $pillory.tenant.special.name is "Leighton">>
 	"That was disgusting. I was framed," says <<the_pillory_person>> heatedly. "But thanks for getting me out."
 	<<npcincr Leighton love 10>>
-<<elseif $pillory_tenant.special.name is "Whitney">>
+<<elseif $pillory.tenant.special.name is "Whitney">>
 	"Th- Thanks," <<the_pillory_person>> scowls. "I'm gonna find the fucker who set me up for this."
 	<<npcincr Whitney love 5>>
 <<else>>
@@ -856,10 +856,10 @@ You turn around slowly. Three uniformed police stand behind you.
 	<br><br>
 	You can't quite believe it as they release the prisoner for you, and let you both walk away - unaccompanied - toward the station. Once out of sight, you disappear together into an alley.
 	<br><br>
-	<<if $pillory_tenant.special.name is "Leighton">>
+	<<if $pillory.tenant.special.name is "Leighton">>
 		"That was disgusting. I was framed," says <<the_pillory_person>> heatedly. "But thanks for getting me out."
 		<<npcincr Leighton love 10>>
-	<<elseif $pillory_tenant.special.name is "Whitney">>
+	<<elseif $pillory.tenant.special.name is "Whitney">>
 		"Th- Thanks," <<the_pillory_person>> scowls. "I'm gonna find the fucker who set me up for this."
 		<<npcincr Whitney love 5>>
 	<<else>>
@@ -977,9 +977,9 @@ or whatever and let you off with community service. But it's your call. What'll
 <<effects>>
 <<earnFeat "You're the Laughingstock">>
 
-<<set _endTime to new DateTime($pillory_tenant.endTime)>>
+<<set _endTime to new DateTime($pillory.tenant.endTime)>>
 <<set _timeLeft to Time.date.compareWith(_endTime, true)>>
-<<set _hours to Math.clamp(_timeLeft / TimeConstants.secondsPerHour, 2, 27)>>
+<<set _hours to round(Math.clamp(_timeLeft / TimeConstants.secondsPerHour, 2, 27), 0)>>
 
 <<person2>>
 <<if $phase lte 1>>
@@ -1000,8 +1000,11 @@ The <<person2>><<person>> gently pats your bare butt. "Have fun in there. Someon
 <<else>>If we remember."
 <</if>><br><br>
 The police officers walk away. The <<person4>><<person>> <<if $phase is 3>>who chased you down<</if>> blows you a kiss.
-<<set $pillorytime to _hours>>
-<<set $pilloryaudience to ($pillory_tenant.crowd/2)>>
+<<set $pillory.time to {
+	start: Time.date.timeStamp,
+	end: $pillory.tenant.endTime
+}>>
+<<set $pillory.audience to $pillory.tenant.crowd / 2>>
 <<crimeDown 5000>>
 <<clear_pillory>>
 <<endevent>>
diff --git a/game/overworld-town/special-sydney/walk.twee b/game/overworld-town/special-sydney/walk.twee
index f3258359e82c610fc9e0186cbbd64e7e551db5a7..bb7af5d33abe8200d0b8aa9a8b047e9fe6348034 100644
--- a/game/overworld-town/special-sydney/walk.twee
+++ b/game/overworld-town/special-sydney/walk.twee
@@ -47,7 +47,7 @@
 		"You look like you could use a break and some fresh air," you say.
 	<</if>>
 	<br><br>
-	<<if $location is "school" and $detention gte 1 and $daily.school.detentionAttended isnot 1 and $headnodetention isnot 1 and $pillory_tenant.special.name isnot "Leighton">>
+	<<if $location is "school" and $detention gte 1 and $daily.school.detentionAttended isnot 1 and $headnodetention isnot 1 and $pillory.tenant.special.name isnot "Leighton">>
 		<<He>> perks up for a moment, but <<he>> frowns at you. "The <<nnpc_title "Leighton">> said you're not allowed to leave the premises until you serve your detention at the end of the day. Sorry."
 		<br>
 	<<else>>
diff --git a/game/overworld-town/special-sydney/widgets.twee b/game/overworld-town/special-sydney/widgets.twee
index 59a5a9701ccc3dfcf5187a6206a3937d507d18f7..cb1a031aed3b17c52b310c5f310b3d73cfc3b681 100644
--- a/game/overworld-town/special-sydney/widgets.twee
+++ b/game/overworld-town/special-sydney/widgets.twee
@@ -314,7 +314,7 @@
 				<br>
 			<<case "temple">>
 				Sydney stands up, yawning.
-				<<if $detention gte 1 and $daily.school.detentionAttended isnot 1 and $headnodetention isnot 1 and $pillory_tenant.special.name isnot "Leighton">>
+				<<if $detention gte 1 and $daily.school.detentionAttended isnot 1 and $headnodetention isnot 1 and $pillory.tenant.special.name isnot "Leighton">>
 					"It's closing time. The <<nnpc_title "Leighton">> said you're not allowed to leave the premises until you serve your detention at the end of the day. Sorry."
 					<br><br>
 				<<elseif $sydneySeen.includes("mass") or $sydneySeen.includes("initiate")>>
diff --git a/game/special-dance/actions.twee b/game/special-dance/actions.twee
index 03966df4bf7a94f486b7a5eb5ec17682347f2716..745ad2d2710ab2ae347c05e61923390784fda704 100644
--- a/game/special-dance/actions.twee
+++ b/game/special-dance/actions.twee
@@ -445,7 +445,7 @@
 						<<dancestrip>>
 					<<elseif $rng gte 31 and $privatedanceoffered isnot 1>>
 						<<danceprivate>>
-					<<elseif $rng gte 21 and $daily.leightonDanceOffered isnot 1 and Time.weekDay gte 6 and $leightonbrothel is 1 and $pillory_tenant.special.name isnot "Leighton">>
+					<<elseif $rng gte 21 and $daily.leightonDanceOffered isnot 1 and Time.weekDay gte 6 and $leightonbrothel is 1 and $pillory.tenant.special.name isnot "Leighton">>
 						<<danceleighton>>
 					<<elseif $rng gte 11 and $robinBrothel>>
 						<<dancebrothelrobin>>
@@ -463,7 +463,7 @@
 						<<dancestrip>>
 					<<elseif $rng gte 51 and $privatedanceoffered isnot 1>>
 						<<danceprivate>>
-					<<elseif $rng gte 41 and $daily.leightonDanceOffered isnot 1 and Time.weekDay gte 6 and $leightonbrothel is 1 and $pillory_tenant.special.name isnot "Leighton">>
+					<<elseif $rng gte 41 and $daily.leightonDanceOffered isnot 1 and Time.weekDay gte 6 and $leightonbrothel is 1 and $pillory.tenant.special.name isnot "Leighton">>
 						<<danceleighton>>
 					<<elseif $rng gte 31 and $robinBrothel>>
 						<<dancebrothelrobin>>
@@ -479,7 +479,7 @@
 						<<dancevip>>
 					<<elseif $rng gte 71 and $privatedanceoffered isnot 1>>
 						<<danceprivate>>
-					<<elseif $rng gte 61 and $daily.leightonDanceOffered isnot 1 and Time.weekDay gte 6 and $leightonbrothel is 1 and $pillory_tenant.special.name isnot "Leighton">>
+					<<elseif $rng gte 61 and $daily.leightonDanceOffered isnot 1 and Time.weekDay gte 6 and $leightonbrothel is 1 and $pillory.tenant.special.name isnot "Leighton">>
 						<<danceleighton>>
 					<<elseif $rng gte 51 and $robinBrothel>>
 						<<dancebrothelrobin>>
diff --git a/img/body/base.gif b/img/body/base.gif
deleted file mode 100644
index 3b8fd6233cfc33d6d99fbe79a9cd27887385419a..0000000000000000000000000000000000000000
Binary files a/img/body/base.gif and /dev/null differ
diff --git a/img/body/basehead.png b/img/body/basehead.png
index a7c352a8eb170ba10d8e4c6d36d8cd0a4ffdd15f..f27d1c44a4c31329c3ef5506f5e78b61d0960947 100644
Binary files a/img/body/basehead.png and b/img/body/basehead.png differ
diff --git a/img/body/basenoarms-a.png b/img/body/basenoarms-a.png
index 1132706894dee38483bc23114fb7c70382ef7173..2002d159530747653abf17f8686bb4bc4e6b8c77 100644
Binary files a/img/body/basenoarms-a.png and b/img/body/basenoarms-a.png differ
diff --git a/img/body/basenoarms-f.png b/img/body/basenoarms-f.png
index 5e56bb1d3b444bdb1f46141015d48d792fe830ca..8a5907b1bff85e04ed1ee87d0cab059464e222db 100644
Binary files a/img/body/basenoarms-f.png and b/img/body/basenoarms-f.png differ
diff --git a/img/body/basenoarms-m.png b/img/body/basenoarms-m.png
index f1bfb6192551a365b36e0077db4165674d58f38e..76909d869564d136cf94e05376642468099f4aa0 100644
Binary files a/img/body/basenoarms-m.png and b/img/body/basenoarms-m.png differ
diff --git a/img/body/basenoarms.gif b/img/body/basenoarms.gif
deleted file mode 100644
index 9f04ef5183f0f06acf2e68f635554eaad0a837a2..0000000000000000000000000000000000000000
Binary files a/img/body/basenoarms.gif and /dev/null differ
diff --git a/img/body/basenoarms.png b/img/body/basenoarms.png
deleted file mode 100644
index b78aa18d7c058e348a0fc75fbbc573075b509b27..0000000000000000000000000000000000000000
Binary files a/img/body/basenoarms.png and /dev/null differ
diff --git a/img/body/basenoleftarm.gif b/img/body/basenoleftarm.gif
deleted file mode 100644
index e15d73f963dd433dbf47a023dbaeddf96ddaccd5..0000000000000000000000000000000000000000
Binary files a/img/body/basenoleftarm.gif and /dev/null differ
diff --git a/img/body/basenorightarm.gif b/img/body/basenorightarm.gif
deleted file mode 100644
index 98c39adfb6a25faf00ae1eb0bbaf0b27a819011c..0000000000000000000000000000000000000000
Binary files a/img/body/basenorightarm.gif and /dev/null differ
diff --git a/img/body/blush1.png b/img/body/blush1.png
index b7e256dc45c416a0ca38b05e28581a36e11b725f..89c8bda973f171002adc5728b64fb59eecdaa7bb 100644
Binary files a/img/body/blush1.png and b/img/body/blush1.png differ
diff --git a/img/body/blush2.png b/img/body/blush2.png
index 681386cc955dee58b394d6e9bd8c8c74fcc01366..9f4235d39d27247e22b3aed3847fa5abd356de3a 100644
Binary files a/img/body/blush2.png and b/img/body/blush2.png differ
diff --git a/img/body/blush3.png b/img/body/blush3.png
index c4dd5bbbe7355a61e3db896d39906f191eaf6ec6..23947d8b4bf070d0c5d478612e9195f51b63e7a0 100644
Binary files a/img/body/blush3.png and b/img/body/blush3.png differ
diff --git a/img/body/blush4.png b/img/body/blush4.png
index 9fd447e064d5ea4a419883db5925dbc174023025..0a9a48eb642e6cc4336ec26e6496fe9beac55794 100644
Binary files a/img/body/blush4.png and b/img/body/blush4.png differ
diff --git a/img/body/blush5.gif b/img/body/blush5.gif
deleted file mode 100644
index afd4d2dd5fb4fbb5dd1e89464a26dbb7eb2a8e3a..0000000000000000000000000000000000000000
Binary files a/img/body/blush5.gif and /dev/null differ
diff --git a/img/body/blush5.png b/img/body/blush5.png
index 6deae353e2553c2ec65db6b0d39fe57de6329692..b909f91718790646f7d9318d9be71072d8106cb4 100644
Binary files a/img/body/blush5.png and b/img/body/blush5.png differ
diff --git a/img/body/breasts/breasts-a-mid.png b/img/body/breasts/breasts-a-mid.png
index c2d311eec998079e665355761a99af6631036f03..9261a35ba12351309e68cc393aad3a03c533cf6e 100644
Binary files a/img/body/breasts/breasts-a-mid.png and b/img/body/breasts/breasts-a-mid.png differ
diff --git a/img/body/breasts/breasts-a.png b/img/body/breasts/breasts-a.png
index 2b70c4639304618dd6f74e2b1ecfd97fee1ad8d8..53e915a71a27ecba20bcc944a3a3020b13078e00 100644
Binary files a/img/body/breasts/breasts-a.png and b/img/body/breasts/breasts-a.png differ
diff --git a/img/body/breasts/breasts-f-mid.png b/img/body/breasts/breasts-f-mid.png
index 8b81a8bd315b327023292a4e59f2d489605afb18..4dbfe1a189c7fdf8be4fe90a8d961d2e84de62d3 100644
Binary files a/img/body/breasts/breasts-f-mid.png and b/img/body/breasts/breasts-f-mid.png differ
diff --git a/img/body/breasts/breasts-f.png b/img/body/breasts/breasts-f.png
index fd07892ea84adccb0223fec1ceaa81ca5b5e9b95..8c8299cba132a107ca467973cda273614881abf0 100644
Binary files a/img/body/breasts/breasts-f.png and b/img/body/breasts/breasts-f.png differ
diff --git a/img/body/breasts/breasts1.png b/img/body/breasts/breasts1.png
index 7d6f9daa4888f0538abaa930688e0029524b8377..cd999ba4b575de1e7881c7f7cda88668c3c14da6 100644
Binary files a/img/body/breasts/breasts1.png and b/img/body/breasts/breasts1.png differ
diff --git a/img/body/breasts/breasts2.png b/img/body/breasts/breasts2.png
index b2484f10de8df91be1f140fbc944d4645bbacd9d..4d9267cf7ddab963c1e668adb3d3123b299b0d24 100644
Binary files a/img/body/breasts/breasts2.png and b/img/body/breasts/breasts2.png differ
diff --git a/img/body/breasts/breasts3.png b/img/body/breasts/breasts3.png
index 0a09478c6adf8d443f7773a389face5959388e9b..1768fffb24bccb1febd589a6588f6b789a87cb70 100644
Binary files a/img/body/breasts/breasts3.png and b/img/body/breasts/breasts3.png differ
diff --git a/img/body/breasts/breasts3_clothed.png b/img/body/breasts/breasts3_clothed.png
index b4706354d36ac04822ac9d58af38b5508f34a658..e102edfe6f1c44498d4e8c8773ce9389c8c05087 100644
Binary files a/img/body/breasts/breasts3_clothed.png and b/img/body/breasts/breasts3_clothed.png differ
diff --git a/img/body/breasts/breasts4.png b/img/body/breasts/breasts4.png
index 869dd14937716e688962aaef9471f5ae6d251487..4540b3083a2f258e0139240c990d078211a9ab1c 100644
Binary files a/img/body/breasts/breasts4.png and b/img/body/breasts/breasts4.png differ
diff --git a/img/body/breasts/breasts4_clothed.png b/img/body/breasts/breasts4_clothed.png
index fa437efb1c2fdb6d64ccaf7c304a044414143e79..67beb9a61b237f68d0d701838acc4ee8c9ed385d 100644
Binary files a/img/body/breasts/breasts4_clothed.png and b/img/body/breasts/breasts4_clothed.png differ
diff --git a/img/body/breasts/breasts5.png b/img/body/breasts/breasts5.png
index 90be5a180f2fe8151ed2565e102df647db1ca911..7fcbbd02dba9157187a2d11d608cc206245befae 100644
Binary files a/img/body/breasts/breasts5.png and b/img/body/breasts/breasts5.png differ
diff --git a/img/body/breasts/breasts5_clothed.png b/img/body/breasts/breasts5_clothed.png
index dcb62b6841c0e6080088aa2b9bebe6f87ad2b9c2..c59072908a6c9d40bb01f14facf42c6d4f27fa95 100644
Binary files a/img/body/breasts/breasts5_clothed.png and b/img/body/breasts/breasts5_clothed.png differ
diff --git a/img/body/breasts/breasts6.png b/img/body/breasts/breasts6.png
index d90ac2ca7ba5538edec7dbef70aec7307f75665f..9a369500b2668fbd1bba980acb84bd5ba4e37511 100644
Binary files a/img/body/breasts/breasts6.png and b/img/body/breasts/breasts6.png differ
diff --git a/img/body/breasts/breasts6_clothed.png b/img/body/breasts/breasts6_clothed.png
index 2826c72b8297560ff310cbe136ec78cc85ca612f..e4592b3f9fc47b2b39cebab3899faec70203e717 100644
Binary files a/img/body/breasts/breasts6_clothed.png and b/img/body/breasts/breasts6_clothed.png differ
diff --git a/img/body/breasts/breastsparasite0.png b/img/body/breasts/breastsparasite0.png
index e1a97df7a56e899d823883834c794bf2fcb3398f..bf4761bb63326640505212bde55566f809a01821 100644
Binary files a/img/body/breasts/breastsparasite0.png and b/img/body/breasts/breastsparasite0.png differ
diff --git a/img/body/breasts/breastsparasite1.png b/img/body/breasts/breastsparasite1.png
index e1a97df7a56e899d823883834c794bf2fcb3398f..bf4761bb63326640505212bde55566f809a01821 100644
Binary files a/img/body/breasts/breastsparasite1.png and b/img/body/breasts/breastsparasite1.png differ
diff --git a/img/body/breasts/breastsparasite2.png b/img/body/breasts/breastsparasite2.png
index 0d83b5afdf8cf3ade836ef52406e671bb69e84a2..5658a67f78a144627a8bd87c0a5b4e315496909e 100644
Binary files a/img/body/breasts/breastsparasite2.png and b/img/body/breasts/breastsparasite2.png differ
diff --git a/img/body/breasts/breastsparasite3.png b/img/body/breasts/breastsparasite3.png
index d6d05fd21670b46909970d0e06366c7537109da2..f12eef09335e7c42f87053a95e0757e1f8579417 100644
Binary files a/img/body/breasts/breastsparasite3.png and b/img/body/breasts/breastsparasite3.png differ
diff --git a/img/body/breasts/breastsparasite4.png b/img/body/breasts/breastsparasite4.png
index 1389a504f5e4862b3d57af96ed8362709100df4a..1e2a196fc02068241f0a358a5cb56f153f5cc86c 100644
Binary files a/img/body/breasts/breastsparasite4.png and b/img/body/breasts/breastsparasite4.png differ
diff --git a/img/body/breasts/breastsparasite5.png b/img/body/breasts/breastsparasite5.png
index 0978738556403819dc9ba47a624b522fb8c8c292..f5e570d3251fcc75fc26fccde3c3ed03f8111621 100644
Binary files a/img/body/breasts/breastsparasite5.png and b/img/body/breasts/breastsparasite5.png differ
diff --git a/img/body/breasts/breastsparasite6.png b/img/body/breasts/breastsparasite6.png
index a3389e26e68bde58d7a5253770048f894399baf1..da19a29773e04b98299d192bf3c971d36f82db73 100644
Binary files a/img/body/breasts/breastsparasite6.png and b/img/body/breasts/breastsparasite6.png differ
diff --git a/img/body/breasts/chestparasite0.png b/img/body/breasts/chestparasite0.png
index c8f160d4ac9d99f61d3086b83c80ac13457b7607..9cee2ec5c1f9f260b4351ab129bebe33d04d48be 100644
Binary files a/img/body/breasts/chestparasite0.png and b/img/body/breasts/chestparasite0.png differ
diff --git a/img/body/breasts/chestparasite1.png b/img/body/breasts/chestparasite1.png
index c8f160d4ac9d99f61d3086b83c80ac13457b7607..9cee2ec5c1f9f260b4351ab129bebe33d04d48be 100644
Binary files a/img/body/breasts/chestparasite1.png and b/img/body/breasts/chestparasite1.png differ
diff --git a/img/body/breasts/chestparasite2.png b/img/body/breasts/chestparasite2.png
index c8f160d4ac9d99f61d3086b83c80ac13457b7607..9cee2ec5c1f9f260b4351ab129bebe33d04d48be 100644
Binary files a/img/body/breasts/chestparasite2.png and b/img/body/breasts/chestparasite2.png differ
diff --git a/img/body/breasts/chestparasite3.png b/img/body/breasts/chestparasite3.png
index 232c39c9b2746cbb8955b103114367ba333ccd29..13c407bff4bb7434e8b1ec860acede7f15de307a 100644
Binary files a/img/body/breasts/chestparasite3.png and b/img/body/breasts/chestparasite3.png differ
diff --git a/img/body/breasts/chestparasite4.png b/img/body/breasts/chestparasite4.png
index 007a71b66f0c5aa1103398906a3c31338c74aabf..6ec652c096f05529a13f06dfabbca8115c87bc9a 100644
Binary files a/img/body/breasts/chestparasite4.png and b/img/body/breasts/chestparasite4.png differ
diff --git a/img/body/breasts/chestparasite5.png b/img/body/breasts/chestparasite5.png
index 2cf64d025c699dc183c4a4b0f2610fddd4be3eb4..9d695de6e87510c4fdbf852f325a748201754e4a 100644
Binary files a/img/body/breasts/chestparasite5.png and b/img/body/breasts/chestparasite5.png differ
diff --git a/img/body/breasts/chestparasite6.png b/img/body/breasts/chestparasite6.png
index 03a215889bfb568e45ee267e8e88e540a802787b..0101a366980a26ac64bff643bb4c8c115469f262 100644
Binary files a/img/body/breasts/chestparasite6.png and b/img/body/breasts/chestparasite6.png differ
diff --git a/img/body/breasts/chestslime0.png b/img/body/breasts/chestslime0.png
index 4c3c55c2d8d47b87169054bbc4977f1ef239fc4d..e031335ca18db9cac7094e7a0a3449541ab41924 100644
Binary files a/img/body/breasts/chestslime0.png and b/img/body/breasts/chestslime0.png differ
diff --git a/img/body/breasts/chestslime1.png b/img/body/breasts/chestslime1.png
index 4c3c55c2d8d47b87169054bbc4977f1ef239fc4d..e031335ca18db9cac7094e7a0a3449541ab41924 100644
Binary files a/img/body/breasts/chestslime1.png and b/img/body/breasts/chestslime1.png differ
diff --git a/img/body/breasts/chestslime2.png b/img/body/breasts/chestslime2.png
index 4c3c55c2d8d47b87169054bbc4977f1ef239fc4d..e031335ca18db9cac7094e7a0a3449541ab41924 100644
Binary files a/img/body/breasts/chestslime2.png and b/img/body/breasts/chestslime2.png differ
diff --git a/img/body/breasts/chestslime3.png b/img/body/breasts/chestslime3.png
index 4d4c1e647bf44e3419b146228f3ab6000ce99681..503f88876f700ae409083e9273eafaa336db0e2f 100644
Binary files a/img/body/breasts/chestslime3.png and b/img/body/breasts/chestslime3.png differ
diff --git a/img/body/breasts/chestslime4.png b/img/body/breasts/chestslime4.png
index 6ff8e319a9514fc8cdfca7ec522587ed0f228a20..88099eacf696d664c7267cb7e8700c29fef2d5a2 100644
Binary files a/img/body/breasts/chestslime4.png and b/img/body/breasts/chestslime4.png differ
diff --git a/img/body/breasts/chestslime5.png b/img/body/breasts/chestslime5.png
index 821bccfcd128533c324147d50918456dfe756e32..887976c5ef12b2394437c2aa5858b54dc28ddd09 100644
Binary files a/img/body/breasts/chestslime5.png and b/img/body/breasts/chestslime5.png differ
diff --git a/img/body/breasts/chestslime6.png b/img/body/breasts/chestslime6.png
index 3d38619664917c023ffa0cb53f7ae6438ab11ac1..b1a30b46208452e4f3f1c399750632ba52693500 100644
Binary files a/img/body/breasts/chestslime6.png and b/img/body/breasts/chestslime6.png differ
diff --git a/img/body/chestparasite.gif b/img/body/chestparasite.gif
deleted file mode 100644
index 996c4bf93d9f0a91c72eaefce2c8e7848dcd63ed..0000000000000000000000000000000000000000
Binary files a/img/body/chestparasite.gif and /dev/null differ
diff --git a/img/body/chestparasite.png b/img/body/chestparasite.png
index c8f160d4ac9d99f61d3086b83c80ac13457b7607..9cee2ec5c1f9f260b4351ab129bebe33d04d48be 100644
Binary files a/img/body/chestparasite.png and b/img/body/chestparasite.png differ
diff --git a/img/body/clitslime.png b/img/body/clitslime.png
index f306a06e6bbe3c69667dafc4582a243d4f4d50c1..0cc145ec3e3756d5e127fc8fe5b13ded3f8d4474 100644
Binary files a/img/body/clitslime.png and b/img/body/clitslime.png differ
diff --git a/img/body/cliturchin.png b/img/body/cliturchin.png
index b90b657c7d341aa259a289f75fe9b87c601f5ffd..053b27541ba58445726e968b543a1a30cceb3ec8 100644
Binary files a/img/body/cliturchin.png and b/img/body/cliturchin.png differ
diff --git a/img/body/cum/AnalCumDripFast.gif b/img/body/cum/AnalCumDripFast.gif
deleted file mode 100644
index 6fa5b9b08c90d50fabe2a364cce122a66c9d0df8..0000000000000000000000000000000000000000
Binary files a/img/body/cum/AnalCumDripFast.gif and /dev/null differ
diff --git a/img/body/cum/AnalCumDripFast.png b/img/body/cum/AnalCumDripFast.png
index bc8c9583d9b4f7e7e734aa474dea41654c635621..92fea1cdba217d5d1326f553e8c2b768720d95b6 100644
Binary files a/img/body/cum/AnalCumDripFast.png and b/img/body/cum/AnalCumDripFast.png differ
diff --git a/img/body/cum/AnalCumDripSlow.gif b/img/body/cum/AnalCumDripSlow.gif
deleted file mode 100644
index 08583aebdab71f1f34a6f97efa9ac403bc972b5b..0000000000000000000000000000000000000000
Binary files a/img/body/cum/AnalCumDripSlow.gif and /dev/null differ
diff --git a/img/body/cum/AnalCumDripSlow.png b/img/body/cum/AnalCumDripSlow.png
index e57cf35332fb73581d479c8cb397c2d2d5661ade..45f779c581c828488c80c0e1c24ed2b67caa96e9 100644
Binary files a/img/body/cum/AnalCumDripSlow.png and b/img/body/cum/AnalCumDripSlow.png differ
diff --git a/img/body/cum/AnalCumDripStart.gif b/img/body/cum/AnalCumDripStart.gif
deleted file mode 100644
index 8649198f2e27626e60c7b18aef625f51e59335ec..0000000000000000000000000000000000000000
Binary files a/img/body/cum/AnalCumDripStart.gif and /dev/null differ
diff --git a/img/body/cum/AnalCumDripStart.png b/img/body/cum/AnalCumDripStart.png
index f2c424db5fcffbd70625ce151a74f1cb91644ae9..185d2ae58042b63ff4bb144ec823fecee5b8133a 100644
Binary files a/img/body/cum/AnalCumDripStart.png and b/img/body/cum/AnalCumDripStart.png differ
diff --git a/img/body/cum/AnalCumDripVeryFast.gif b/img/body/cum/AnalCumDripVeryFast.gif
deleted file mode 100644
index fc05e7d80211f5a5f55848ee4c1e7ebceda1929a..0000000000000000000000000000000000000000
Binary files a/img/body/cum/AnalCumDripVeryFast.gif and /dev/null differ
diff --git a/img/body/cum/AnalCumDripVeryFast.png b/img/body/cum/AnalCumDripVeryFast.png
index 5b3b4df3b9e816871cde1edfdb9637d2f14c0415..a2ce0515848acd55f6c1075d0db45e710f4398b8 100644
Binary files a/img/body/cum/AnalCumDripVeryFast.png and b/img/body/cum/AnalCumDripVeryFast.png differ
diff --git a/img/body/cum/AnalCumDripVerySlow.gif b/img/body/cum/AnalCumDripVerySlow.gif
deleted file mode 100644
index d56f7fc4b66da06e447d50d9f7ff6dc63855f3de..0000000000000000000000000000000000000000
Binary files a/img/body/cum/AnalCumDripVerySlow.gif and /dev/null differ
diff --git a/img/body/cum/AnalCumDripVerySlow.png b/img/body/cum/AnalCumDripVerySlow.png
index 52894fc06a7f3c0514f55310bacab4bd56d985d4..ce27a857963a9105ef89ad21c1996b1a3a4d026c 100644
Binary files a/img/body/cum/AnalCumDripVerySlow.png and b/img/body/cum/AnalCumDripVerySlow.png differ
diff --git a/img/body/cum/Chest 1.png b/img/body/cum/Chest 1.png
index 05b58d6d2b9c09cce92e63c0c9ba8854254a9a45..85d86c9b4412efcbaf301b6ca1e360e3197c1739 100644
Binary files a/img/body/cum/Chest 1.png and b/img/body/cum/Chest 1.png differ
diff --git a/img/body/cum/Chest 2.png b/img/body/cum/Chest 2.png
index 9cf7f2e18ad30495787d86b1b32e7ec33d4c0ac4..d576d8b194464285eea95bcfb9290268ab886538 100644
Binary files a/img/body/cum/Chest 2.png and b/img/body/cum/Chest 2.png differ
diff --git a/img/body/cum/Chest 3.png b/img/body/cum/Chest 3.png
index 3d94eec9902d2a9ec204ac7b2a461ddda9534419..c02c593fd590fa54e4342c86632ea125fb40b663 100644
Binary files a/img/body/cum/Chest 3.png and b/img/body/cum/Chest 3.png differ
diff --git a/img/body/cum/Chest 4,5.png b/img/body/cum/Chest 4,5.png
index eb00060761cbbb259705fdea7bd0272bd1f382b5..50a066df27b9aed249405d71033077ed167c75d8 100644
Binary files a/img/body/cum/Chest 4,5.png and b/img/body/cum/Chest 4,5.png differ
diff --git a/img/body/cum/Face 1,2.png b/img/body/cum/Face 1,2.png
index c914d8f44507d6c39d02333b8c1cd929708c4511..49f00461a228012b24c68db6b4cd3adbd5aa6138 100644
Binary files a/img/body/cum/Face 1,2.png and b/img/body/cum/Face 1,2.png differ
diff --git a/img/body/cum/Face 3,4.png b/img/body/cum/Face 3,4.png
index 6479ca04e7707e5431d29f6025034107292c15e6..20fc484bd80301845dbc480ee3ff278573754525 100644
Binary files a/img/body/cum/Face 3,4.png and b/img/body/cum/Face 3,4.png differ
diff --git a/img/body/cum/Face 5.png b/img/body/cum/Face 5.png
index f5b405190f30956a6c5d374056aab5949548037e..e796ac70a0cd7f9146e6c055737db9c96332a715 100644
Binary files a/img/body/cum/Face 5.png and b/img/body/cum/Face 5.png differ
diff --git a/img/body/cum/Feet 2,3.png b/img/body/cum/Feet 2,3.png
index 054ae6223649521f63fb54f22a1b746f068ef67d..a11e5e9d2884f454ec932e0829db13493f7553d5 100644
Binary files a/img/body/cum/Feet 2,3.png and b/img/body/cum/Feet 2,3.png differ
diff --git a/img/body/cum/Feet 4,5.png b/img/body/cum/Feet 4,5.png
index bf6e493290d8c67aa35d13a1e831a0a9cf4e0151..58af9f4f70447bd6b1e42273cd09920bd2040ef2 100644
Binary files a/img/body/cum/Feet 4,5.png and b/img/body/cum/Feet 4,5.png differ
diff --git a/img/body/cum/Left Arm 1,2,3.png b/img/body/cum/Left Arm 1,2,3.png
index 00388ebbe446dd8991f4b0b5977a68feb953deb3..e4143ebcb718b0fbb8983ae57e28f7ef85385738 100644
Binary files a/img/body/cum/Left Arm 1,2,3.png and b/img/body/cum/Left Arm 1,2,3.png differ
diff --git a/img/body/cum/Left Arm 4,5.png b/img/body/cum/Left Arm 4,5.png
index c0879cb19414a54c727de3df3bb7e8449dc86b43..50dc5ce4abdd3199d1e3e9f5c587a254bbc29043 100644
Binary files a/img/body/cum/Left Arm 4,5.png and b/img/body/cum/Left Arm 4,5.png differ
diff --git a/img/body/cum/MouthCumDripFast.gif b/img/body/cum/MouthCumDripFast.gif
deleted file mode 100644
index 9870729c71f1d36fc6183b9822e066daf3b2e510..0000000000000000000000000000000000000000
Binary files a/img/body/cum/MouthCumDripFast.gif and /dev/null differ
diff --git a/img/body/cum/MouthCumDripFast.png b/img/body/cum/MouthCumDripFast.png
index a74ef47fafe76316b2e2b304abd3b778b190cd86..aa89b068d374233c4cf01b4b745c320907c5eb23 100644
Binary files a/img/body/cum/MouthCumDripFast.png and b/img/body/cum/MouthCumDripFast.png differ
diff --git a/img/body/cum/MouthCumDripSlow.gif b/img/body/cum/MouthCumDripSlow.gif
deleted file mode 100644
index c07a986d0bf38253b0bf905afa0c58b9684bea04..0000000000000000000000000000000000000000
Binary files a/img/body/cum/MouthCumDripSlow.gif and /dev/null differ
diff --git a/img/body/cum/MouthCumDripSlow.png b/img/body/cum/MouthCumDripSlow.png
index 2749fb6089ec5b9397584f3b579909797412c3f9..942f5e967fa22de687d4229934b285ca47e9c76b 100644
Binary files a/img/body/cum/MouthCumDripSlow.png and b/img/body/cum/MouthCumDripSlow.png differ
diff --git a/img/body/cum/MouthCumDripStart.png b/img/body/cum/MouthCumDripStart.png
index 57c7348d81a933f77327c7a066569f1d750cff33..77efb4f381b5718e497aa29149d1be6cac48f57d 100644
Binary files a/img/body/cum/MouthCumDripStart.png and b/img/body/cum/MouthCumDripStart.png differ
diff --git a/img/body/cum/MouthCumDripVeryFast.gif b/img/body/cum/MouthCumDripVeryFast.gif
deleted file mode 100644
index 59c166855efb6e4a244baac1fba79516983eab38..0000000000000000000000000000000000000000
Binary files a/img/body/cum/MouthCumDripVeryFast.gif and /dev/null differ
diff --git a/img/body/cum/MouthCumDripVeryFast.png b/img/body/cum/MouthCumDripVeryFast.png
index 18e033ed74ad0e96737d2107fc47504dfcfd4eb6..20ddff4ec6da8c16ba7b6e36ed0467be90de7450 100644
Binary files a/img/body/cum/MouthCumDripVeryFast.png and b/img/body/cum/MouthCumDripVeryFast.png differ
diff --git a/img/body/cum/MouthCumDripVerySlow.gif b/img/body/cum/MouthCumDripVerySlow.gif
deleted file mode 100644
index b56869a98a9e22448c5351622ce37c14d5c8fd07..0000000000000000000000000000000000000000
Binary files a/img/body/cum/MouthCumDripVerySlow.gif and /dev/null differ
diff --git a/img/body/cum/MouthCumDripVerySlow.png b/img/body/cum/MouthCumDripVerySlow.png
index 1320caf7cb1d4d4ae531331e37bc6ffae2854a85..5fb018e5032d1ac29062d71f47235579f728e6ce 100644
Binary files a/img/body/cum/MouthCumDripVerySlow.png and b/img/body/cum/MouthCumDripVerySlow.png differ
diff --git a/img/body/cum/Neck 1,2.png b/img/body/cum/Neck 1,2.png
index 54a213dee58874b8e0e5483455478765a6b259ef..c0ef8d57470b8dd4faf9b37c95bbfa34047b3289 100644
Binary files a/img/body/cum/Neck 1,2.png and b/img/body/cum/Neck 1,2.png differ
diff --git a/img/body/cum/Neck 3,4.png b/img/body/cum/Neck 3,4.png
index 09036b992decd38c987d03514a91bbce66659b19..ff69176b36eed7b82e59265a27a4c0d4fb09adb3 100644
Binary files a/img/body/cum/Neck 3,4.png and b/img/body/cum/Neck 3,4.png differ
diff --git a/img/body/cum/Neck 5.png b/img/body/cum/Neck 5.png
index ecdd17f2784bea051806af59c75853d532a4865f..2a9971449c9a55a35d3b0452871d7dc980f51e0a 100644
Binary files a/img/body/cum/Neck 5.png and b/img/body/cum/Neck 5.png differ
diff --git a/img/body/cum/Right Arm 1,2,3.png b/img/body/cum/Right Arm 1,2,3.png
index 90cad7b74e37a1a7acaab4fe369be5180eaa8307..1fc0efa70ce7031a2e7a171251ca9d151c7cd820 100644
Binary files a/img/body/cum/Right Arm 1,2,3.png and b/img/body/cum/Right Arm 1,2,3.png differ
diff --git a/img/body/cum/Right Arm 4,5.png b/img/body/cum/Right Arm 4,5.png
index bde22752f720904931898f9790e57b793bfbbd13..13a9c4f2c7a359ed27304dbe1e8c69b4e33c9631 100644
Binary files a/img/body/cum/Right Arm 4,5.png and b/img/body/cum/Right Arm 4,5.png differ
diff --git a/img/body/cum/Thighs 1.png b/img/body/cum/Thighs 1.png
index 8f3c0f3700942ecee490a018938c9058ba321356..d135464b57ae1499d6098bf4370a119e6e658775 100644
Binary files a/img/body/cum/Thighs 1.png and b/img/body/cum/Thighs 1.png differ
diff --git a/img/body/cum/Thighs 2.png b/img/body/cum/Thighs 2.png
index 6e53b45ce2a8c5a9b338ba90f056a0d20fa27c46..15d74df7d639514349937d3dac7f7d933b9b80c1 100644
Binary files a/img/body/cum/Thighs 2.png and b/img/body/cum/Thighs 2.png differ
diff --git a/img/body/cum/Thighs 3.png b/img/body/cum/Thighs 3.png
index d8028755e19b6ab6d3c7ddb05425d6ce03454b68..44f653e25d29de4b983ff657b284c6976c58dc4f 100644
Binary files a/img/body/cum/Thighs 3.png and b/img/body/cum/Thighs 3.png differ
diff --git a/img/body/cum/Thighs 4.png b/img/body/cum/Thighs 4.png
index 4d9d50cd27e06e74f0d5106c777136afae785fc4..53a79ae859e195b66dc32f282ff9743858419354 100644
Binary files a/img/body/cum/Thighs 4.png and b/img/body/cum/Thighs 4.png differ
diff --git a/img/body/cum/Thighs 5.png b/img/body/cum/Thighs 5.png
index 357677d6aaeed2ab5b8d22416b0537548971e826..fdd631627a6b36632a4ad72b3854e39b92cdaf4b 100644
Binary files a/img/body/cum/Thighs 5.png and b/img/body/cum/Thighs 5.png differ
diff --git a/img/body/cum/Tummy 1.png b/img/body/cum/Tummy 1.png
index 843f708547e426c1ce2691327e264fbd1f6a9361..14813d8b94ec099de7d7e9fa4dadf7b1aebd5be1 100644
Binary files a/img/body/cum/Tummy 1.png and b/img/body/cum/Tummy 1.png differ
diff --git a/img/body/cum/Tummy 2.png b/img/body/cum/Tummy 2.png
index 2fc746a63c364e087f35ca9d48db3bd9503a3c8b..10c766f7f2796d05a9f8142ecde3dbd8cdd10934 100644
Binary files a/img/body/cum/Tummy 2.png and b/img/body/cum/Tummy 2.png differ
diff --git a/img/body/cum/Tummy 3.png b/img/body/cum/Tummy 3.png
index c6a5b090bd8ea3e7322027e10171fe9488cbc822..93fa977231fee49e9ae643e4e3dd5981de73e019 100644
Binary files a/img/body/cum/Tummy 3.png and b/img/body/cum/Tummy 3.png differ
diff --git a/img/body/cum/Tummy 4.png b/img/body/cum/Tummy 4.png
index b73de904b49f5132a38ef24e96f33754a81e0f12..0792dbfcd9ad6d2f201cfb285e6d114a2ac571a1 100644
Binary files a/img/body/cum/Tummy 4.png and b/img/body/cum/Tummy 4.png differ
diff --git a/img/body/cum/Tummy 5.png b/img/body/cum/Tummy 5.png
index 2de7a3edb76449fea82a32a3869453fed4fd90f7..a70720c2195a8aba4da3f148e0a7e4f17f512d5d 100644
Binary files a/img/body/cum/Tummy 5.png and b/img/body/cum/Tummy 5.png differ
diff --git a/img/body/cum/VaginalCumDripFast.gif b/img/body/cum/VaginalCumDripFast.gif
deleted file mode 100644
index c3eded370e2b3c89fc5b380609e63fdc8bca7892..0000000000000000000000000000000000000000
Binary files a/img/body/cum/VaginalCumDripFast.gif and /dev/null differ
diff --git a/img/body/cum/VaginalCumDripFast.png b/img/body/cum/VaginalCumDripFast.png
index c94d519a7b7b2509919784222570f8da98078734..f482e83cb49dfd361afe9e5c568985e9210f64ff 100644
Binary files a/img/body/cum/VaginalCumDripFast.png and b/img/body/cum/VaginalCumDripFast.png differ
diff --git a/img/body/cum/VaginalCumDripSlow.gif b/img/body/cum/VaginalCumDripSlow.gif
deleted file mode 100644
index 2b82beab7d24d6bcba0ea03f40a5ae8abf702367..0000000000000000000000000000000000000000
Binary files a/img/body/cum/VaginalCumDripSlow.gif and /dev/null differ
diff --git a/img/body/cum/VaginalCumDripSlow.png b/img/body/cum/VaginalCumDripSlow.png
index 6991a33a13d5a21915eb07fa676dda402ed25280..e290b3b1177e474d7cd0bfcfc3ccc60b3b2a93c9 100644
Binary files a/img/body/cum/VaginalCumDripSlow.png and b/img/body/cum/VaginalCumDripSlow.png differ
diff --git a/img/body/cum/VaginalCumDripStart.gif b/img/body/cum/VaginalCumDripStart.gif
deleted file mode 100644
index 4e3085784648a47d541b7dfbdc315e3cc4cdbd26..0000000000000000000000000000000000000000
Binary files a/img/body/cum/VaginalCumDripStart.gif and /dev/null differ
diff --git a/img/body/cum/VaginalCumDripStart.png b/img/body/cum/VaginalCumDripStart.png
index 5a7ab3fde843bb7b42330a829b00616d30672184..3c2b446fb9c8f7fe005e19f60e51b68c98cc259e 100644
Binary files a/img/body/cum/VaginalCumDripStart.png and b/img/body/cum/VaginalCumDripStart.png differ
diff --git a/img/body/cum/VaginalCumDripVeryFast.gif b/img/body/cum/VaginalCumDripVeryFast.gif
deleted file mode 100644
index fe0a753a77b7536115e0ad86dc3ce60f3bd3393e..0000000000000000000000000000000000000000
Binary files a/img/body/cum/VaginalCumDripVeryFast.gif and /dev/null differ
diff --git a/img/body/cum/VaginalCumDripVeryFast.png b/img/body/cum/VaginalCumDripVeryFast.png
index 9940667bad22274bd7d67062a0b655cc71e9a808..f79170afb941bdcde07096184181d5b94b3d7098 100644
Binary files a/img/body/cum/VaginalCumDripVeryFast.png and b/img/body/cum/VaginalCumDripVeryFast.png differ
diff --git a/img/body/cum/VaginalCumDripVerySlow.gif b/img/body/cum/VaginalCumDripVerySlow.gif
deleted file mode 100644
index 7b62cf8d558b03b63ff91fa66bbe987207b0c2b6..0000000000000000000000000000000000000000
Binary files a/img/body/cum/VaginalCumDripVerySlow.gif and /dev/null differ
diff --git a/img/body/cum/VaginalCumDripVerySlow.png b/img/body/cum/VaginalCumDripVerySlow.png
index 633e4aac4faacb2b23a978fbe8e71a33af552605..d70fe3ef3d45d0c9291cfca632a912e833dc22ea 100644
Binary files a/img/body/cum/VaginalCumDripVerySlow.png and b/img/body/cum/VaginalCumDripVerySlow.png differ
diff --git a/img/body/leftarm.gif b/img/body/leftarm.gif
deleted file mode 100644
index 418503df7ccbf956fc697279e915784703546b6a..0000000000000000000000000000000000000000
Binary files a/img/body/leftarm.gif and /dev/null differ
diff --git a/img/body/leftarm.png b/img/body/leftarm.png
index d756fb7c582fe34e4d85296b0f6fb3fa205a88a7..23fe86f7a2a15f52ab482eff397f1e86b472d9e2 100644
Binary files a/img/body/leftarm.png and b/img/body/leftarm.png differ
diff --git a/img/body/leftarmidle-a.png b/img/body/leftarmidle-a.png
index a761278dc5e4b407e2af723da14575703bc7f77c..8f5f024e3ea0bc773ed8de58b804594a15f4f19b 100644
Binary files a/img/body/leftarmidle-a.png and b/img/body/leftarmidle-a.png differ
diff --git a/img/body/leftarmidle-f.png b/img/body/leftarmidle-f.png
index a761278dc5e4b407e2af723da14575703bc7f77c..8f5f024e3ea0bc773ed8de58b804594a15f4f19b 100644
Binary files a/img/body/leftarmidle-f.png and b/img/body/leftarmidle-f.png differ
diff --git a/img/body/leftarmidle-m.png b/img/body/leftarmidle-m.png
index eb39b59f1af0b00b332a4ff4250965d5b1fa14d4..638879f0b7cbef2f79f4763096db47820238684a 100644
Binary files a/img/body/leftarmidle-m.png and b/img/body/leftarmidle-m.png differ
diff --git a/img/body/leftarmidle.png b/img/body/leftarmidle.png
index 2618c7c5efb6f75b511b42a52549a035f45e9509..638879f0b7cbef2f79f4763096db47820238684a 100644
Binary files a/img/body/leftarmidle.png and b/img/body/leftarmidle.png differ
diff --git a/img/body/mannequin/basehead.png b/img/body/mannequin/basehead.png
index 36adf42acbea06fb5f815107b329b2d4d4a0d9d9..a02c2df7f4e8bffec6ae6abf029943fef0d20bab 100644
Binary files a/img/body/mannequin/basehead.png and b/img/body/mannequin/basehead.png differ
diff --git a/img/body/mannequin/basenoarms.png b/img/body/mannequin/basenoarms.png
index 88d700658232c1d56e764e3b65c9ee346dfb2ce4..612be4243507224a2f2da625405f22bb5d7e07f8 100644
Binary files a/img/body/mannequin/basenoarms.png and b/img/body/mannequin/basenoarms.png differ
diff --git a/img/body/mannequin/breasts/breasts0.png b/img/body/mannequin/breasts/breasts0.png
index 78c3a1607c1d7aa15c24015056c61caa3c88afda..33817b86ece3c8bddc36dd8d4d2f652a57180ede 100644
Binary files a/img/body/mannequin/breasts/breasts0.png and b/img/body/mannequin/breasts/breasts0.png differ
diff --git a/img/body/mannequin/breasts/breasts1.png b/img/body/mannequin/breasts/breasts1.png
index 0a24d6460afe2d71c86ba3b06d029100db045e2c..74d459cb500e0e002d3852e38ee5c7cfd18d80ee 100644
Binary files a/img/body/mannequin/breasts/breasts1.png and b/img/body/mannequin/breasts/breasts1.png differ
diff --git a/img/body/mannequin/breasts/breasts2.png b/img/body/mannequin/breasts/breasts2.png
index 1490688af367c3763da77932762949966eee6f2f..45ccc56098021cf2f5fed0f48c3e74184cec0678 100644
Binary files a/img/body/mannequin/breasts/breasts2.png and b/img/body/mannequin/breasts/breasts2.png differ
diff --git a/img/body/mannequin/breasts/breasts2_clothed.png b/img/body/mannequin/breasts/breasts2_clothed.png
index c62cde45ad1b8e81294098db1e68c50de4a2f68d..0b27fcb9e2a812fc12bd5a211df9daa1c905d280 100644
Binary files a/img/body/mannequin/breasts/breasts2_clothed.png and b/img/body/mannequin/breasts/breasts2_clothed.png differ
diff --git a/img/body/mannequin/breasts/breasts3.png b/img/body/mannequin/breasts/breasts3.png
index d86b964129d5f68f857e1cf360f1e686a290de1b..5e23756ed9ee6f2fff8cc6ec041ad33866fc49d2 100644
Binary files a/img/body/mannequin/breasts/breasts3.png and b/img/body/mannequin/breasts/breasts3.png differ
diff --git a/img/body/mannequin/breasts/breasts3_clothed.png b/img/body/mannequin/breasts/breasts3_clothed.png
index 77e1d7b4a5ef7761d96324d1bec07bf8e978e574..22cd71fe2d742bb751877628393af791884e16cb 100644
Binary files a/img/body/mannequin/breasts/breasts3_clothed.png and b/img/body/mannequin/breasts/breasts3_clothed.png differ
diff --git a/img/body/mannequin/breasts/breasts4.png b/img/body/mannequin/breasts/breasts4.png
index 4ef9df1f4276d6ed58ba3ee586950abe754c644d..41e2b98868211d25bf0236a8bfb6db7c688f81d0 100644
Binary files a/img/body/mannequin/breasts/breasts4.png and b/img/body/mannequin/breasts/breasts4.png differ
diff --git a/img/body/mannequin/breasts/breasts4_clothed.png b/img/body/mannequin/breasts/breasts4_clothed.png
index f3ea3bb7663379deee46edb5e7532fb104c411c8..9ddb03904f6d41504d72e87089a3abd9b320875b 100644
Binary files a/img/body/mannequin/breasts/breasts4_clothed.png and b/img/body/mannequin/breasts/breasts4_clothed.png differ
diff --git a/img/body/mannequin/breasts/breasts5.png b/img/body/mannequin/breasts/breasts5.png
index 9749901329a1a8bd0a043ca1a72aa48d0ffe4915..92e6369e027675e5b81a73f2c3ecc148621b8bc2 100644
Binary files a/img/body/mannequin/breasts/breasts5.png and b/img/body/mannequin/breasts/breasts5.png differ
diff --git a/img/body/mannequin/breasts/breasts5_clothed.png b/img/body/mannequin/breasts/breasts5_clothed.png
index f3ea3bb7663379deee46edb5e7532fb104c411c8..9ddb03904f6d41504d72e87089a3abd9b320875b 100644
Binary files a/img/body/mannequin/breasts/breasts5_clothed.png and b/img/body/mannequin/breasts/breasts5_clothed.png differ
diff --git a/img/body/mannequin/breasts/breasts6.png b/img/body/mannequin/breasts/breasts6.png
index 9749901329a1a8bd0a043ca1a72aa48d0ffe4915..92e6369e027675e5b81a73f2c3ecc148621b8bc2 100644
Binary files a/img/body/mannequin/breasts/breasts6.png and b/img/body/mannequin/breasts/breasts6.png differ
diff --git a/img/body/mannequin/breasts/breasts6_clothed.png b/img/body/mannequin/breasts/breasts6_clothed.png
index f3ea3bb7663379deee46edb5e7532fb104c411c8..9ddb03904f6d41504d72e87089a3abd9b320875b 100644
Binary files a/img/body/mannequin/breasts/breasts6_clothed.png and b/img/body/mannequin/breasts/breasts6_clothed.png differ
diff --git a/img/body/mannequin/leftarmidle.png b/img/body/mannequin/leftarmidle.png
index ffd43a206a7e62670cc1e113b42a268c6753e79e..6abf25eb598bbebc4579f93e340bbaa21cb59b22 100644
Binary files a/img/body/mannequin/leftarmidle.png and b/img/body/mannequin/leftarmidle.png differ
diff --git a/img/body/mannequin/penis.png b/img/body/mannequin/penis.png
index 45098cb50ad63bfa4d182b8ab5f70e79ac709202..6ae16185f8544600676103928639869a92e162ba 100644
Binary files a/img/body/mannequin/penis.png and b/img/body/mannequin/penis.png differ
diff --git a/img/body/mannequin/rightarmhold.png b/img/body/mannequin/rightarmhold.png
index 5f723efc4bbd7ee1340408575586aea4f259ddff..d3dd9c82a2b7a91f1262778a5596414a1714b696 100644
Binary files a/img/body/mannequin/rightarmhold.png and b/img/body/mannequin/rightarmhold.png differ
diff --git a/img/body/mannequin/rightarmidle.png b/img/body/mannequin/rightarmidle.png
index 0dfe28ac8d019de46205796e4cfde87c0e39d051..c6d94ac94371b3cd51ca802cb120cae12e689ba6 100644
Binary files a/img/body/mannequin/rightarmidle.png and b/img/body/mannequin/rightarmidle.png differ
diff --git a/img/body/masturbation/LeftArmAss.gif b/img/body/masturbation/LeftArmAss.gif
deleted file mode 100644
index afa14677e48a12024f4fd859ea8138fc41a66f20..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmAss.gif and /dev/null differ
diff --git a/img/body/masturbation/LeftArmBalls.gif b/img/body/masturbation/LeftArmBalls.gif
deleted file mode 100644
index 919932e6a1bc81c232c30b86e838cfeb65d1faed..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmBalls.gif and /dev/null differ
diff --git a/img/body/masturbation/LeftArmChest.gif b/img/body/masturbation/LeftArmChest.gif
deleted file mode 100644
index 7463f307dd788add507756c16ac9071c12468e44..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmChest.gif and /dev/null differ
diff --git a/img/body/masturbation/LeftArmClit.gif b/img/body/masturbation/LeftArmClit.gif
deleted file mode 100644
index 1aadc0993a2553fc656c13cf9b70d0f779b805b0..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmClit.gif and /dev/null differ
diff --git a/img/body/masturbation/LeftArmDildoAss.gif b/img/body/masturbation/LeftArmDildoAss.gif
deleted file mode 100644
index 9fe39a5587cc927a1e645d39359d662816681466..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmDildoAss.gif and /dev/null differ
diff --git a/img/body/masturbation/LeftArmDildoClit.gif b/img/body/masturbation/LeftArmDildoClit.gif
deleted file mode 100644
index 9dcf6ad922379751d278cca8398f7fd025b5d32a..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmDildoClit.gif and /dev/null differ
diff --git a/img/body/masturbation/LeftArmDildoPussy.gif b/img/body/masturbation/LeftArmDildoPussy.gif
deleted file mode 100644
index 995668f226e91264c3f86c06c10a7cca4bd2d1ab..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmDildoPussy.gif and /dev/null differ
diff --git a/img/body/masturbation/LeftArmGlans.gif b/img/body/masturbation/LeftArmGlans.gif
deleted file mode 100644
index 9b8c311e40ab3ae65456cd4088a03aec33469ec6..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmGlans.gif and /dev/null differ
diff --git a/img/body/masturbation/LeftArmOnahole.gif b/img/body/masturbation/LeftArmOnahole.gif
deleted file mode 100644
index f2cf927a6e5eedf99b49f6ded418e66efd68256b..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmOnahole.gif and /dev/null differ
diff --git a/img/body/masturbation/LeftArmPussy.gif b/img/body/masturbation/LeftArmPussy.gif
deleted file mode 100644
index 3c67d5fdd4ec2e2aa3d839497dbc9b40929b4950..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmPussy.gif and /dev/null differ
diff --git a/img/body/masturbation/LeftArmShaft.gif b/img/body/masturbation/LeftArmShaft.gif
deleted file mode 100644
index b0ae6a84080d7e85870594ed6968181f0ea857ac..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmShaft.gif and /dev/null differ
diff --git a/img/body/masturbation/LeftArmShaftLOOKSOFF.gif b/img/body/masturbation/LeftArmShaftLOOKSOFF.gif
deleted file mode 100644
index 8b19acf02903249769d3b3d22b45a3a521c86e69..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/LeftArmShaftLOOKSOFF.gif and /dev/null differ
diff --git a/img/body/masturbation/RightArmAss.gif b/img/body/masturbation/RightArmAss.gif
deleted file mode 100644
index 6fa4febb75a033fb6ec4b5e00e4930abcb40cafc..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/RightArmAss.gif and /dev/null differ
diff --git a/img/body/masturbation/RightArmBalls.gif b/img/body/masturbation/RightArmBalls.gif
deleted file mode 100644
index 03937acbca7bc26387e687abadd13eeb5ca14cb6..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/RightArmBalls.gif and /dev/null differ
diff --git a/img/body/masturbation/RightArmChest.gif b/img/body/masturbation/RightArmChest.gif
deleted file mode 100644
index ef614be595a9b935d382e12c2e06023a286d0f06..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/RightArmChest.gif and /dev/null differ
diff --git a/img/body/masturbation/RightArmClit.gif b/img/body/masturbation/RightArmClit.gif
deleted file mode 100644
index ca0772d025a816ae2d40ecb114a159a8b3eb49ab..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/RightArmClit.gif and /dev/null differ
diff --git a/img/body/masturbation/RightArmDildoAss.gif b/img/body/masturbation/RightArmDildoAss.gif
deleted file mode 100644
index 931873166a1c5bdfd8e7e1ca57ba419d6092e87e..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/RightArmDildoAss.gif and /dev/null differ
diff --git a/img/body/masturbation/RightArmDildoClit.gif b/img/body/masturbation/RightArmDildoClit.gif
deleted file mode 100644
index bf7d3a89642d8f2a031ed4ac43ddd50dcb308db0..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/RightArmDildoClit.gif and /dev/null differ
diff --git a/img/body/masturbation/RightArmDildoPussy.gif b/img/body/masturbation/RightArmDildoPussy.gif
deleted file mode 100644
index ca04546c296b3efb0220350b5aa16b25ad3c87e5..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/RightArmDildoPussy.gif and /dev/null differ
diff --git a/img/body/masturbation/RightArmGlans.gif b/img/body/masturbation/RightArmGlans.gif
deleted file mode 100644
index a1b41c94e3bfc6a1e5ac72f95e6e3584593dc5fc..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/RightArmGlans.gif and /dev/null differ
diff --git a/img/body/masturbation/RightArmOnahole.gif b/img/body/masturbation/RightArmOnahole.gif
deleted file mode 100644
index b4075550d565401ab1f5f20468aa1da9bfc0cf40..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/RightArmOnahole.gif and /dev/null differ
diff --git a/img/body/masturbation/RightArmPussy.gif b/img/body/masturbation/RightArmPussy.gif
deleted file mode 100644
index 8727077da41392eb0123024b93bce8b0db11e7c8..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/RightArmPussy.gif and /dev/null differ
diff --git a/img/body/masturbation/RightArmShaft.gif b/img/body/masturbation/RightArmShaft.gif
deleted file mode 100644
index 73ad03832816b1c71b536ae344a759b91b254bc3..0000000000000000000000000000000000000000
Binary files a/img/body/masturbation/RightArmShaft.gif and /dev/null differ
diff --git a/img/body/mouthcry.png b/img/body/mouthcry.png
index f3fb450401a9be9a4143d0c46bf74653d2214f3f..242ad297e04dfac124ebf4bf123d272d61c9e302 100644
Binary files a/img/body/mouthcry.png and b/img/body/mouthcry.png differ
diff --git a/img/body/mouthfrown.png b/img/body/mouthfrown.png
index 3864ce0963c0b20d8bb69e0b5f6b48629e4ea541..9d80ba5c20cf66c39964749e14ae6fb8a5e2e060 100644
Binary files a/img/body/mouthfrown.png and b/img/body/mouthfrown.png differ
diff --git a/img/body/mouthneutral.png b/img/body/mouthneutral.png
index 142822cd4b1d0855fc0c34cce9f0eddc0e464f20..b30db94c3c44e50fe31f909526cfe277efd463f8 100644
Binary files a/img/body/mouthneutral.png and b/img/body/mouthneutral.png differ
diff --git a/img/body/mouthsmile.png b/img/body/mouthsmile.png
index dd7a9c2a3f8f06ebfb02b52ba741366a4e39eed6..50f7c8181b7c486878a916e0a7ec75e5c25d68e1 100644
Binary files a/img/body/mouthsmile.png and b/img/body/mouthsmile.png differ
diff --git a/img/body/parasitepanty.png b/img/body/parasitepanty.png
index 025f673685d09813b02892d881738bea0d12234a..3e2818c2e82a8622c3324a1659dc54b0b13270b3 100644
Binary files a/img/body/parasitepanty.png and b/img/body/parasitepanty.png differ
diff --git a/img/body/parasiteshorts.png b/img/body/parasiteshorts.png
index 0fbb244d09ef0d1c8c997fbc83a2ec29482e9805..d1b9d1a379c60fa2c7fb0a72db991a788c112350 100644
Binary files a/img/body/parasiteshorts.png and b/img/body/parasiteshorts.png differ
diff --git a/img/body/penis.gif b/img/body/penis.gif
deleted file mode 100644
index 111a803ca6544a134a229aa1be54008d6b2d6c28..0000000000000000000000000000000000000000
Binary files a/img/body/penis.gif and /dev/null differ
diff --git a/img/body/penis.png b/img/body/penis.png
index d61e835be6fff47d7f87eff8b2f76b5dcb13cb0b..0606b069e9db5e81d64effc612de4628a2cc6aae 100644
Binary files a/img/body/penis.png and b/img/body/penis.png differ
diff --git a/img/body/penis/condom-1.png b/img/body/penis/condom-1.png
index bdb8468e47ea9304830fb8e1b15917aac93304d5..ea4c4c75159d8ecef3ddd710494c6d83b8ce4bce 100644
Binary files a/img/body/penis/condom-1.png and b/img/body/penis/condom-1.png differ
diff --git a/img/body/penis/condom-2.png b/img/body/penis/condom-2.png
index ef32692de14722d88da62fc8b516174db20710e4..a0441ad3863bb3a3cbd24a019e288aa8ba97e498 100644
Binary files a/img/body/penis/condom-2.png and b/img/body/penis/condom-2.png differ
diff --git a/img/body/penis/condom0.png b/img/body/penis/condom0.png
index d67ca0566f1793836ae27737b2a6503c0fbae38b..095c459c2341194169a6894ac81882212743d618 100644
Binary files a/img/body/penis/condom0.png and b/img/body/penis/condom0.png differ
diff --git a/img/body/penis/condom1.png b/img/body/penis/condom1.png
index 538dda625a3ca9901977b308e2549731a19e7abb..0e4750fdae97da6195fee8fdc5340615af32abf6 100644
Binary files a/img/body/penis/condom1.png and b/img/body/penis/condom1.png differ
diff --git a/img/body/penis/condom2.png b/img/body/penis/condom2.png
index f5b32f07ba6c1ea68c609c1ae84bfb71dd7e8784..e5687d43d4103d4c9c7ae9c72d8e0fb3746d3a63 100644
Binary files a/img/body/penis/condom2.png and b/img/body/penis/condom2.png differ
diff --git a/img/body/penis/condom3.png b/img/body/penis/condom3.png
index 0ac7cae4dbc772397a4be89a9641d7652f41a135..181a8e058f9867cff0269ac60450d53938b45aa2 100644
Binary files a/img/body/penis/condom3.png and b/img/body/penis/condom3.png differ
diff --git a/img/body/penis/condom4.png b/img/body/penis/condom4.png
index f856f7062f0286f17e188075a18d75c84e1a8de3..b2f739e421c30a6632d60f5433d89716112386db 100644
Binary files a/img/body/penis/condom4.png and b/img/body/penis/condom4.png differ
diff --git a/img/body/penis/penis-1.png b/img/body/penis/penis-1.png
index 2abb36e9dbe59bdfd3e4075ad81cecb3652ec823..cf28830443d3c2e12f263fa2d3ceace49dfa5d7c 100644
Binary files a/img/body/penis/penis-1.png and b/img/body/penis/penis-1.png differ
diff --git a/img/body/penis/penis-2.png b/img/body/penis/penis-2.png
index 7c26892a02fdae741432efab94df732726b1457f..c11bd0d25f4d75b299d7af4eef9c74fe3057eeff 100644
Binary files a/img/body/penis/penis-2.png and b/img/body/penis/penis-2.png differ
diff --git a/img/body/penis/penis0.png b/img/body/penis/penis0.png
index ee72e702b278d98c79d7f4d453c7f80bcee6c497..38e2860de076abd94b75ee1b3711e318e2dc79af 100644
Binary files a/img/body/penis/penis0.png and b/img/body/penis/penis0.png differ
diff --git a/img/body/penis/penis1.png b/img/body/penis/penis1.png
index fdf57695a9715a769a97c0fe6f85f10404b67a43..dc1a34e85f5c372358af29f61545f04f94d8e42f 100644
Binary files a/img/body/penis/penis1.png and b/img/body/penis/penis1.png differ
diff --git a/img/body/penis/penis2.png b/img/body/penis/penis2.png
index adf35c142c44223f4efe1bcd477a0d3471c8ba8f..3d36b7da71644f2de1504508bfe3c2504e8d45e0 100644
Binary files a/img/body/penis/penis2.png and b/img/body/penis/penis2.png differ
diff --git a/img/body/penis/penis3.png b/img/body/penis/penis3.png
index 25276833fff724fae033362d18b7ab1791e12991..7c787685571b128cb1d1cb389748c03f75b6c219 100644
Binary files a/img/body/penis/penis3.png and b/img/body/penis/penis3.png differ
diff --git a/img/body/penis/penis4.png b/img/body/penis/penis4.png
index b553feb6f10310bf61b77690c79f5736de9021b6..3194c045b598ca065519a2dcc5954a5e8ca2c5a8 100644
Binary files a/img/body/penis/penis4.png and b/img/body/penis/penis4.png differ
diff --git a/img/body/penis/penis_chastity.png b/img/body/penis/penis_chastity.png
index 4a051c60c4fd3a1a2909cd421df573056524f597..2acb893a95bc42dba66ab31b05927952c28df379 100644
Binary files a/img/body/penis/penis_chastity.png and b/img/body/penis/penis_chastity.png differ
diff --git a/img/body/penis/penis_chastityflat.png b/img/body/penis/penis_chastityflat.png
index 32548397e488e8cdd3cebe3f7f7c0d3d1965c5a3..3d0b1c4a136f1286e796907a5bf35303f1fce02a 100644
Binary files a/img/body/penis/penis_chastityflat.png and b/img/body/penis/penis_chastityflat.png differ
diff --git a/img/body/penis/penis_chastitysmall.png b/img/body/penis/penis_chastitysmall.png
index 4a051c60c4fd3a1a2909cd421df573056524f597..2acb893a95bc42dba66ab31b05927952c28df379 100644
Binary files a/img/body/penis/penis_chastitysmall.png and b/img/body/penis/penis_chastitysmall.png differ
diff --git a/img/body/penis/penis_virgin-1.png b/img/body/penis/penis_virgin-1.png
index 013d61e049f1b061aa798dbeb7b65c19550ef35e..2cf2dca7fe3998764773174c461a0537bcf8e9b1 100644
Binary files a/img/body/penis/penis_virgin-1.png and b/img/body/penis/penis_virgin-1.png differ
diff --git a/img/body/penis/penis_virgin-2.png b/img/body/penis/penis_virgin-2.png
index b87b8e75791daa711afb3102e5d6850f52fd5a83..b6fecc21dc548a602236f25f778c027a48f9f6c5 100644
Binary files a/img/body/penis/penis_virgin-2.png and b/img/body/penis/penis_virgin-2.png differ
diff --git a/img/body/penis/penis_virgin0.png b/img/body/penis/penis_virgin0.png
index 85c6f6b90c38f28693bc9d045b384f4cb28ebc47..547e98b39f6171c47fb3bac9c53eccb9dc4e5aba 100644
Binary files a/img/body/penis/penis_virgin0.png and b/img/body/penis/penis_virgin0.png differ
diff --git a/img/body/penis/penis_virgin1.png b/img/body/penis/penis_virgin1.png
index df52147af8c1977bb74642214cc13225e86a1730..5df51c42528921232e5517ca0ebf6cdfac6c8a18 100644
Binary files a/img/body/penis/penis_virgin1.png and b/img/body/penis/penis_virgin1.png differ
diff --git a/img/body/penis/penis_virgin2.png b/img/body/penis/penis_virgin2.png
index 14cbd182492f79331bce09b1c677615332f42040..8797eb8d7a3252250c82089c61c4bf442ec5b155 100644
Binary files a/img/body/penis/penis_virgin2.png and b/img/body/penis/penis_virgin2.png differ
diff --git a/img/body/penis/penis_virgin3.png b/img/body/penis/penis_virgin3.png
index d4dcd363631497fb51c500396bfe64d624910d23..fc66f76851de1419d0baa4820b12f4bac7488f32 100644
Binary files a/img/body/penis/penis_virgin3.png and b/img/body/penis/penis_virgin3.png differ
diff --git a/img/body/penis/penis_virgin4.png b/img/body/penis/penis_virgin4.png
index 848db5b60d43116919a54a6644fce60ca134c97a..f9ba6ecd2174d8fa11068a77cfa93fedba608f7d 100644
Binary files a/img/body/penis/penis_virgin4.png and b/img/body/penis/penis_virgin4.png differ
diff --git a/img/body/penis/penisparasite-1.png b/img/body/penis/penisparasite-1.png
index aa53ba45ea45e437de90a30722a9b2bde5319fd4..28e9b0ae4919954fcd304c2525979fb8f587acfc 100644
Binary files a/img/body/penis/penisparasite-1.png and b/img/body/penis/penisparasite-1.png differ
diff --git a/img/body/penis/penisparasite-2.png b/img/body/penis/penisparasite-2.png
index 6570911c3904197b8dcdf8df99744ee8b1d4dbc8..fb2b4b941cbd88057bdc9d5d3891a7bfd5f8fdfb 100644
Binary files a/img/body/penis/penisparasite-2.png and b/img/body/penis/penisparasite-2.png differ
diff --git a/img/body/penis/penisparasite0.png b/img/body/penis/penisparasite0.png
index dd7032a4f258206aef1f78afcc0ebdbe159c92d7..392ea3c60f9c07e5aed0bb9a70c8deb1b78c9bba 100644
Binary files a/img/body/penis/penisparasite0.png and b/img/body/penis/penisparasite0.png differ
diff --git a/img/body/penis/penisparasite1.png b/img/body/penis/penisparasite1.png
index 5d009becbea045e89096567622c7f54c3ee71447..ba7cf823c089c990d74034da242d95be2ca0b66c 100644
Binary files a/img/body/penis/penisparasite1.png and b/img/body/penis/penisparasite1.png differ
diff --git a/img/body/penis/penisparasite2.png b/img/body/penis/penisparasite2.png
index 732677763a5565be27e41da66dddba3100e34616..0ca3f1e61f228354c02a5bbfeae17c96755fe791 100644
Binary files a/img/body/penis/penisparasite2.png and b/img/body/penis/penisparasite2.png differ
diff --git a/img/body/penis/penisparasite3.png b/img/body/penis/penisparasite3.png
index 732677763a5565be27e41da66dddba3100e34616..0ca3f1e61f228354c02a5bbfeae17c96755fe791 100644
Binary files a/img/body/penis/penisparasite3.png and b/img/body/penis/penisparasite3.png differ
diff --git a/img/body/penis/penisparasite4.png b/img/body/penis/penisparasite4.png
index 247a61e68d1eda4b3b6741bdf10fd85c7262ac50..d8808f02a1855a15d94abf07909d4e312b3db853 100644
Binary files a/img/body/penis/penisparasite4.png and b/img/body/penis/penisparasite4.png differ
diff --git a/img/body/penis/penisparasiteballs-1.png b/img/body/penis/penisparasiteballs-1.png
index b57a2ac0152a3ec91e5e53245d93c207239520db..4b672622d44fef2ddf76222e76892f06c51598a9 100644
Binary files a/img/body/penis/penisparasiteballs-1.png and b/img/body/penis/penisparasiteballs-1.png differ
diff --git a/img/body/penis/penisparasiteballs-2.png b/img/body/penis/penisparasiteballs-2.png
index cb6e03d5b8d8977a089983c16a8e8d7b736ee2a1..59a58d976891d1f86f129d5c078c0c1a6c167a2d 100644
Binary files a/img/body/penis/penisparasiteballs-2.png and b/img/body/penis/penisparasiteballs-2.png differ
diff --git a/img/body/penis/penisparasiteballs0.png b/img/body/penis/penisparasiteballs0.png
index 698a5a2c11909e28b760e6e1cf5eb5db27831076..52398507028a326e1ef4ea3dbde98609d2891152 100644
Binary files a/img/body/penis/penisparasiteballs0.png and b/img/body/penis/penisparasiteballs0.png differ
diff --git a/img/body/penis/penisparasiteballs1.png b/img/body/penis/penisparasiteballs1.png
index 8f5f1255990cd59298a71d5aee1654ec58998ee8..574ac2a3d1a4ef1becc29b9ca5f79de76812e362 100644
Binary files a/img/body/penis/penisparasiteballs1.png and b/img/body/penis/penisparasiteballs1.png differ
diff --git a/img/body/penis/penisparasiteballs2.png b/img/body/penis/penisparasiteballs2.png
index 99826a7e724b65336df6e642d80549cecc6e6bb9..8ed88db59aa3c56070b705ac163cee5a2a0263a4 100644
Binary files a/img/body/penis/penisparasiteballs2.png and b/img/body/penis/penisparasiteballs2.png differ
diff --git a/img/body/penis/penisparasiteballs3.png b/img/body/penis/penisparasiteballs3.png
index 87cb6eed924798f795925a4f53b421d5adf5314b..5c24a8042ea1549f2a209f4c401c101491fef738 100644
Binary files a/img/body/penis/penisparasiteballs3.png and b/img/body/penis/penisparasiteballs3.png differ
diff --git a/img/body/penis/penisparasiteballs4.png b/img/body/penis/penisparasiteballs4.png
index 15a27901fd96f1df19b75eaacc6245b8692afcdc..7e9da7b4a3463dfa96af90cd3c1f18c1c5a14592 100644
Binary files a/img/body/penis/penisparasiteballs4.png and b/img/body/penis/penisparasiteballs4.png differ
diff --git a/img/body/penis/penisslime-1.png b/img/body/penis/penisslime-1.png
index 65c95af605cac6ffe8381b758a7c96dee6e9cf28..8561436a36b94afda4004a845b98870917a764f9 100644
Binary files a/img/body/penis/penisslime-1.png and b/img/body/penis/penisslime-1.png differ
diff --git a/img/body/penis/penisslime-2.png b/img/body/penis/penisslime-2.png
index 690afdfb33ac126019f3edea85f1b30d3d027e6e..e7f449b139fcca00a8b765dda4cd68b9e4808c9a 100644
Binary files a/img/body/penis/penisslime-2.png and b/img/body/penis/penisslime-2.png differ
diff --git a/img/body/penis/penisslime0.png b/img/body/penis/penisslime0.png
index df99bfe6bffa0972e9489ce6ea9478c33b39b4ff..82fb4ef1890679dbe061b3b34061048d83246a92 100644
Binary files a/img/body/penis/penisslime0.png and b/img/body/penis/penisslime0.png differ
diff --git a/img/body/penis/penisslime1.png b/img/body/penis/penisslime1.png
index 5acfe6a2c517b232d5a4b8735c80a095d657fcbd..ee3e6d577ae035b11c82488c6e1847a7cfe4e0d5 100644
Binary files a/img/body/penis/penisslime1.png and b/img/body/penis/penisslime1.png differ
diff --git a/img/body/penis/penisslime2.png b/img/body/penis/penisslime2.png
index aa2c582c6e025e7dc25195897a8adbdcc40cc3aa..bba494af8bb5800a988066171e14c7274e430c63 100644
Binary files a/img/body/penis/penisslime2.png and b/img/body/penis/penisslime2.png differ
diff --git a/img/body/penis/penisslime3.png b/img/body/penis/penisslime3.png
index a27ab4259f19ca91f0dcd4417f490a71a9a92c16..f85063d70e5938707152b729069b2914feaa4c78 100644
Binary files a/img/body/penis/penisslime3.png and b/img/body/penis/penisslime3.png differ
diff --git a/img/body/penis/penisslime4.png b/img/body/penis/penisslime4.png
index 9e78afda77ed6916c6b219be90cc611b3a17ed23..b5dc815349c49b5d7966cea7023abdaf2b0758f6 100644
Binary files a/img/body/penis/penisslime4.png and b/img/body/penis/penisslime4.png differ
diff --git a/img/body/penis/penisurchin-1.png b/img/body/penis/penisurchin-1.png
index 35db98f96e542cdb998e99aaebe64ab4dc4aa911..1588ab27f693a5766c089a78c97ff26a3dc4ff8d 100644
Binary files a/img/body/penis/penisurchin-1.png and b/img/body/penis/penisurchin-1.png differ
diff --git a/img/body/penis/penisurchin-2.png b/img/body/penis/penisurchin-2.png
index 76b59ce40483417035ce891c01334640de1e1cac..281c53bcc9e1a9c0ddccce5aa33384ec0af40a70 100644
Binary files a/img/body/penis/penisurchin-2.png and b/img/body/penis/penisurchin-2.png differ
diff --git a/img/body/penis/penisurchin0.png b/img/body/penis/penisurchin0.png
index 57a77911539ce41e26872ea343099445caf5364b..4a9ee6a56d4fd8fa192c45872294a03b5407b07e 100644
Binary files a/img/body/penis/penisurchin0.png and b/img/body/penis/penisurchin0.png differ
diff --git a/img/body/penis/penisurchin1.png b/img/body/penis/penisurchin1.png
index edb731b1a837d18bc93ab015b054fdf685574f8c..51b8784b3fb511eeaa851a4baa03d651bd3c7d38 100644
Binary files a/img/body/penis/penisurchin1.png and b/img/body/penis/penisurchin1.png differ
diff --git a/img/body/penis/penisurchin2.png b/img/body/penis/penisurchin2.png
index 936f6586fd88b03e5f7bc30051d519dc05624797..da927201acc0cd130998abf5c02ea8dd91541e39 100644
Binary files a/img/body/penis/penisurchin2.png and b/img/body/penis/penisurchin2.png differ
diff --git a/img/body/penis/penisurchin3.png b/img/body/penis/penisurchin3.png
index 9c499a47bac671718bda5f222a73ea91fa89bb79..df62ce31dda2e85ff0c3c36fdae67116bf8b4385 100644
Binary files a/img/body/penis/penisurchin3.png and b/img/body/penis/penisurchin3.png differ
diff --git a/img/body/penis/penisurchin4.png b/img/body/penis/penisurchin4.png
index 5e3df0e9de67e02d2c3d5d98fa94d49ec7e272ec..ce9a0a84c665133819215f2e71abb38cf70cfde7 100644
Binary files a/img/body/penis/penisurchin4.png and b/img/body/penis/penisurchin4.png differ
diff --git a/img/body/penisnoballs/penis-1.png b/img/body/penisnoballs/penis-1.png
index be493164cef8556b24139054a284515570c52361..cef7a07c9c5ef5908ee33e9ebb7e6fcccfe4bf24 100644
Binary files a/img/body/penisnoballs/penis-1.png and b/img/body/penisnoballs/penis-1.png differ
diff --git a/img/body/penisnoballs/penis-2.png b/img/body/penisnoballs/penis-2.png
index 2e925e3bbd2781e6e2d52c4a0b4021a1fdaab750..cadff77518eb32bc224a0aa9f5da4de85985b493 100644
Binary files a/img/body/penisnoballs/penis-2.png and b/img/body/penisnoballs/penis-2.png differ
diff --git a/img/body/penisnoballs/penis0.png b/img/body/penisnoballs/penis0.png
index 4ccb2c08476940f539d51417683fbbb4806a538d..931531e9033df9a34deb914c5c26c695cb6f3d0f 100644
Binary files a/img/body/penisnoballs/penis0.png and b/img/body/penisnoballs/penis0.png differ
diff --git a/img/body/penisnoballs/penis1.png b/img/body/penisnoballs/penis1.png
index 1dc62eec9e14ace792c92ba81d7eb60c7ea87001..d3019d8b45ffcf47d8b92147068e4a70b3f6a681 100644
Binary files a/img/body/penisnoballs/penis1.png and b/img/body/penisnoballs/penis1.png differ
diff --git a/img/body/penisnoballs/penis2.png b/img/body/penisnoballs/penis2.png
index 41a01d594ec67d2e5987ff2e9f1c93cdb3c694bd..10a640ea7edee73c8b33fa6b1cfa28d4d4aec205 100644
Binary files a/img/body/penisnoballs/penis2.png and b/img/body/penisnoballs/penis2.png differ
diff --git a/img/body/penisnoballs/penis3.png b/img/body/penisnoballs/penis3.png
index 0ca44fb801ff0c9ddd7b55e464c2ea2835dce20e..58718aae278458017bfe5aaa89b3afe9661429a0 100644
Binary files a/img/body/penisnoballs/penis3.png and b/img/body/penisnoballs/penis3.png differ
diff --git a/img/body/penisnoballs/penis4.png b/img/body/penisnoballs/penis4.png
index c031203b0c8dc69fe95f8f7d2964453049b9dce4..e963a07d020aeae843bcb28b9701928a233ce953 100644
Binary files a/img/body/penisnoballs/penis4.png and b/img/body/penisnoballs/penis4.png differ
diff --git a/img/body/penisnoballs/penis_virgin-1.png b/img/body/penisnoballs/penis_virgin-1.png
index 276e2f24926f5069a4b18c9e05b4e9a91a785542..3ced382c1e65aa286ad591aa560b7b60ba102743 100644
Binary files a/img/body/penisnoballs/penis_virgin-1.png and b/img/body/penisnoballs/penis_virgin-1.png differ
diff --git a/img/body/penisnoballs/penis_virgin-2.png b/img/body/penisnoballs/penis_virgin-2.png
index 4b2e14b53b88f90504f0440f8b80ef705f0c64ed..3643a3677867f0ee3064e9ff8171a02ff3187cab 100644
Binary files a/img/body/penisnoballs/penis_virgin-2.png and b/img/body/penisnoballs/penis_virgin-2.png differ
diff --git a/img/body/penisnoballs/penis_virgin0.png b/img/body/penisnoballs/penis_virgin0.png
index 371eb8346d78e16dc5cc207ec716f41789fac0e6..4a893765b5f49813066d541c15e3859e1389cb98 100644
Binary files a/img/body/penisnoballs/penis_virgin0.png and b/img/body/penisnoballs/penis_virgin0.png differ
diff --git a/img/body/penisnoballs/penis_virgin1.png b/img/body/penisnoballs/penis_virgin1.png
index 7b20e83cca9f93ac7d1ab8fc1c7afd2902cbeedc..142d1d7f7f7409f0784db67d6deabb660f435e42 100644
Binary files a/img/body/penisnoballs/penis_virgin1.png and b/img/body/penisnoballs/penis_virgin1.png differ
diff --git a/img/body/penisnoballs/penis_virgin2.png b/img/body/penisnoballs/penis_virgin2.png
index 983c0a06fa980efdb832749bc30ac4b4fecee8b5..1496fb5809b0f0ec064931e8f83ac457841dd781 100644
Binary files a/img/body/penisnoballs/penis_virgin2.png and b/img/body/penisnoballs/penis_virgin2.png differ
diff --git a/img/body/penisnoballs/penis_virgin3.png b/img/body/penisnoballs/penis_virgin3.png
index 9a51b84ed78e9683ca16b025f4d4240f22b179bb..18346b0c59edcb391e6f5053af3d261dddb5340b 100644
Binary files a/img/body/penisnoballs/penis_virgin3.png and b/img/body/penisnoballs/penis_virgin3.png differ
diff --git a/img/body/penisnoballs/penis_virgin4.png b/img/body/penisnoballs/penis_virgin4.png
index 6efcee422b6c9f3e980aed20d55363a64f69bbae..c18b232ce82f3f932df8ccb8d82ace980f1c7d31 100644
Binary files a/img/body/penisnoballs/penis_virgin4.png and b/img/body/penisnoballs/penis_virgin4.png differ
diff --git a/img/body/penisparasite.png b/img/body/penisparasite.png
index f55e92aa6ad1dd1532e0bac98d92e04d3434614a..10beaeaceaf59cf9887c3fc53edcfeb31fb93049 100644
Binary files a/img/body/penisparasite.png and b/img/body/penisparasite.png differ
diff --git a/img/body/penisvirgin.gif b/img/body/penisvirgin.gif
deleted file mode 100644
index b2903caa273325ad6099c25448f48ffe74adaf78..0000000000000000000000000000000000000000
Binary files a/img/body/penisvirgin.gif and /dev/null differ
diff --git a/img/body/penisvirgin.png b/img/body/penisvirgin.png
index ed6b63054d00c7116843ea5d2904f65f2ad46ed9..cb2d0287cf12f4b9dde917ed439ba6a023fc273b 100644
Binary files a/img/body/penisvirgin.png and b/img/body/penisvirgin.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_1.png b/img/body/preggyBelly/pregnancy_belly_1.png
index ea65a265e441e584fad2f7f73afc25a84bdd73e9..2989f725ad0f1c89676bf704768d4fc85e1728b4 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_1.png and b/img/body/preggyBelly/pregnancy_belly_1.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_10.png b/img/body/preggyBelly/pregnancy_belly_10.png
index 07b89a11fae9bd5cfca79657498457035e364154..675a930d5e3b73375a73006102d2d9a8f8e836ad 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_10.png and b/img/body/preggyBelly/pregnancy_belly_10.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_11.png b/img/body/preggyBelly/pregnancy_belly_11.png
index 51d0c4ef192fbd440e97af3e3250576145d1cfe8..61958e6577ad0fdb3802d4b2bb3ce445a6cb7863 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_11.png and b/img/body/preggyBelly/pregnancy_belly_11.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_12.png b/img/body/preggyBelly/pregnancy_belly_12.png
index d8563917c00399498c88d7a6fa9be608b36a0aa2..ba0d13da4c35981b091fa1c8adf96c6f6a922078 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_12.png and b/img/body/preggyBelly/pregnancy_belly_12.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_13.png b/img/body/preggyBelly/pregnancy_belly_13.png
index f79a977ecae6b34d19f3bb11a27c48b1dc0f3f23..97ade8944ad188822c8387ff5342637255a05010 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_13.png and b/img/body/preggyBelly/pregnancy_belly_13.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_14.png b/img/body/preggyBelly/pregnancy_belly_14.png
index e3f6e96bec5e4d7202ee597803a77f96443745ca..6c633fcfb7f31d05b93bc97aef21b8ca52e63a7a 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_14.png and b/img/body/preggyBelly/pregnancy_belly_14.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_15.png b/img/body/preggyBelly/pregnancy_belly_15.png
index 9da7f89383616069ca5470c6db3621b91e5f619c..8154b9696f3e4e84faf4a7aac5f13c876b4406d5 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_15.png and b/img/body/preggyBelly/pregnancy_belly_15.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_16.png b/img/body/preggyBelly/pregnancy_belly_16.png
index f7e40dbd5ea5a09b952e71b9558e689232f0dbe3..6066fc72f26f70178a8628351fb75aa6040f1053 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_16.png and b/img/body/preggyBelly/pregnancy_belly_16.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_17.png b/img/body/preggyBelly/pregnancy_belly_17.png
index 38cb4e116d4de097911a56a256a7b8842d288c12..ae58606e863d3532356b865a98688f1c6ebdf148 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_17.png and b/img/body/preggyBelly/pregnancy_belly_17.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_18.png b/img/body/preggyBelly/pregnancy_belly_18.png
index be0fa32d62de4339dc039d796797b524329a364e..3de55504f3faadaafe5baef7d9bbcacd52615aa5 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_18.png and b/img/body/preggyBelly/pregnancy_belly_18.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_19.png b/img/body/preggyBelly/pregnancy_belly_19.png
index 57e4cb4286a59ff447445232fb6997a5c9762e48..a0325beb3e1fdedcbee166ae5d1a2373819c2fc4 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_19.png and b/img/body/preggyBelly/pregnancy_belly_19.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_2.png b/img/body/preggyBelly/pregnancy_belly_2.png
index 3eca89b426d2568613bc08f42bf90a3757f9288c..b14e8f371b9772c617def95366d9c7fab45d6fc7 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_2.png and b/img/body/preggyBelly/pregnancy_belly_2.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_20.png b/img/body/preggyBelly/pregnancy_belly_20.png
index a7f452b5d4501a1f40d87f3aa622bb573c934148..4ad6d2fce85c85240ce47a580063658f5aef612a 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_20.png and b/img/body/preggyBelly/pregnancy_belly_20.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_21.png b/img/body/preggyBelly/pregnancy_belly_21.png
index 34c490ffca0bad15d6daeda2be59fd4bb8d570ba..34321d400f3fe6a8c8c5626925993430a38daf39 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_21.png and b/img/body/preggyBelly/pregnancy_belly_21.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_22.png b/img/body/preggyBelly/pregnancy_belly_22.png
index 7c780bbcf42097c68b4a70e1853072b18a7dc407..2e99e4ce8eb0a82ad16fcfc990bb3e5fcc12acaa 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_22.png and b/img/body/preggyBelly/pregnancy_belly_22.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_23.png b/img/body/preggyBelly/pregnancy_belly_23.png
index d314d2502f5fc40795d0062e86c7f710b9858af9..00da0c11bb861915db19ebe1fe897ae52aed5ef0 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_23.png and b/img/body/preggyBelly/pregnancy_belly_23.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_24.png b/img/body/preggyBelly/pregnancy_belly_24.png
index ec680864b218cd337a3c56d0324ac7a4771602e6..4c6498171129e6287335471eb879a353d954ede8 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_24.png and b/img/body/preggyBelly/pregnancy_belly_24.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_3.png b/img/body/preggyBelly/pregnancy_belly_3.png
index 8e53e0527e9a1779352ea3b1ab0a495f952e2185..9d3afd33c29e37d619dd7d8efed4903c2773fbe8 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_3.png and b/img/body/preggyBelly/pregnancy_belly_3.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_4.png b/img/body/preggyBelly/pregnancy_belly_4.png
index 14d002b346d1c53abc83b96f70f5ba3f376d1ad5..54e75e97e1cbcacbc1c7dcc78310c9429dfb1d1a 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_4.png and b/img/body/preggyBelly/pregnancy_belly_4.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_5.png b/img/body/preggyBelly/pregnancy_belly_5.png
index 1a6c74eabb1d9c70e3e3d5c6e53de975c9016d6c..bab26312c80d11b959234f83561556d052fe7164 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_5.png and b/img/body/preggyBelly/pregnancy_belly_5.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_6.png b/img/body/preggyBelly/pregnancy_belly_6.png
index 9696a93de6b69cc5d1c9eaecbb1d67a35162832a..5fc791acec69af1869c6fc542765714e81c456f0 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_6.png and b/img/body/preggyBelly/pregnancy_belly_6.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_7.png b/img/body/preggyBelly/pregnancy_belly_7.png
index 3d6527da325843500bd563755464b04cd2ad891d..21523ef50022c549752611fa397b426131853dcd 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_7.png and b/img/body/preggyBelly/pregnancy_belly_7.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_8.png b/img/body/preggyBelly/pregnancy_belly_8.png
index c97bb0cb0592df490e60615829ad320212a08bfb..93abb6b891124ab1d9fd43ce40337d9e9437a451 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_8.png and b/img/body/preggyBelly/pregnancy_belly_8.png differ
diff --git a/img/body/preggyBelly/pregnancy_belly_9.png b/img/body/preggyBelly/pregnancy_belly_9.png
index 1ce1eec3b2227dccdd7f401068856cf355222aa5..e6d1d5448f12d7ed8c9789ee5bbb2c2f7a2d1fad 100644
Binary files a/img/body/preggyBelly/pregnancy_belly_9.png and b/img/body/preggyBelly/pregnancy_belly_9.png differ
diff --git a/img/body/rightarm.png b/img/body/rightarm.png
index 12b1d7f503e76f8811f8f403e5b68cc7896c1389..57daf0ea7046079f14777932aed8341dbf21f79c 100644
Binary files a/img/body/rightarm.png and b/img/body/rightarm.png differ
diff --git a/img/body/rightarmhold.png b/img/body/rightarmhold.png
index 7b4d295cf5a1f50de13e3a3d4dec95ef77b75748..c02370ccf3c974b4125943c1c58a1c18f59a3dd0 100644
Binary files a/img/body/rightarmhold.png and b/img/body/rightarmhold.png differ
diff --git a/img/body/rightarmidle-a.png b/img/body/rightarmidle-a.png
index d80da3f28f04ebdaed90e458ecb22d5b4c7a51f9..ef5bbb8338d6472ca50b25033cd13a88bc772d2e 100644
Binary files a/img/body/rightarmidle-a.png and b/img/body/rightarmidle-a.png differ
diff --git a/img/body/rightarmidle-f.png b/img/body/rightarmidle-f.png
index d80da3f28f04ebdaed90e458ecb22d5b4c7a51f9..ef5bbb8338d6472ca50b25033cd13a88bc772d2e 100644
Binary files a/img/body/rightarmidle-f.png and b/img/body/rightarmidle-f.png differ
diff --git a/img/body/rightarmidle-m.png b/img/body/rightarmidle-m.png
index e1ec6506951a44e6d4e6306f05d40c2d387c612d..a97003b6c6ed4ad9d29d47fe7aa0019530045997 100644
Binary files a/img/body/rightarmidle-m.png and b/img/body/rightarmidle-m.png differ
diff --git a/img/body/rightarmidle.png b/img/body/rightarmidle.png
index e533432d752c43b789c87a3444af0de91e068332..538210294c1b450212ef5c5c30b35890c925567d 100644
Binary files a/img/body/rightarmidle.png and b/img/body/rightarmidle.png differ
diff --git a/img/body/tan/under_lower/bikini.png b/img/body/tan/under_lower/bikini.png
index 354201e126b41c6965c7db73bb3e9e139b2c575d..c17a42894c050b5e70a28ecceb3ef34d07b82f5e 100644
Binary files a/img/body/tan/under_lower/bikini.png and b/img/body/tan/under_lower/bikini.png differ
diff --git a/img/body/tan/under_lower/swimshorts.png b/img/body/tan/under_lower/swimshorts.png
index 80e0ab9451b41dc41782bf74597f678011aa7a41..efd72cff6a4d923d7a8aa7c6df0a9fb47dd11a44 100644
Binary files a/img/body/tan/under_lower/swimshorts.png and b/img/body/tan/under_lower/swimshorts.png differ
diff --git a/img/body/tan/under_lower/swimsuit.png b/img/body/tan/under_lower/swimsuit.png
index d9b23d7eb1673ff0fe2583e967289fdd95117861..3337879f5f6291ae8861abf85580a0e255112a52 100644
Binary files a/img/body/tan/under_lower/swimsuit.png and b/img/body/tan/under_lower/swimsuit.png differ
diff --git a/img/body/tan/under_upper/bikini/0.png b/img/body/tan/under_upper/bikini/0.png
index 06d937c0ce1edd14e646a5367ab7a1574dc8c244..43a25538c2b48abf61484d6fb9e1a173b7e95bf7 100644
Binary files a/img/body/tan/under_upper/bikini/0.png and b/img/body/tan/under_upper/bikini/0.png differ
diff --git a/img/body/tan/under_upper/bikini/1.png b/img/body/tan/under_upper/bikini/1.png
index 29ffd99a7266720c46330e55a72f80a4a72eadc6..83d3ede69409766e7c3f0d1b49511256131a7fa6 100644
Binary files a/img/body/tan/under_upper/bikini/1.png and b/img/body/tan/under_upper/bikini/1.png differ
diff --git a/img/body/tan/under_upper/bikini/2.png b/img/body/tan/under_upper/bikini/2.png
index 1029b7c88398c7ae4d80c4acc171cb9abcc25a81..734e7b8222add7610bfb5b2729a91b5be45ce487 100644
Binary files a/img/body/tan/under_upper/bikini/2.png and b/img/body/tan/under_upper/bikini/2.png differ
diff --git a/img/body/tan/under_upper/bikini/3.png b/img/body/tan/under_upper/bikini/3.png
index f9903213fe47c4911a86930f8eff8644653d420b..d707984a8eab182bb88f6ec5a90b09276a8aa365 100644
Binary files a/img/body/tan/under_upper/bikini/3.png and b/img/body/tan/under_upper/bikini/3.png differ
diff --git a/img/body/tan/under_upper/bikini/4.png b/img/body/tan/under_upper/bikini/4.png
index e07957bbe8eb18e44e927b178bf697431297a80f..4729dc1e72c7a4804a196cd261161834807979d6 100644
Binary files a/img/body/tan/under_upper/bikini/4.png and b/img/body/tan/under_upper/bikini/4.png differ
diff --git a/img/body/tan/under_upper/bikini/5.png b/img/body/tan/under_upper/bikini/5.png
index 80ee290b0e84aa7d527acec403e42eebfae585e8..fbf34aa374503a5e1510daee3e517971e71dc235 100644
Binary files a/img/body/tan/under_upper/bikini/5.png and b/img/body/tan/under_upper/bikini/5.png differ
diff --git a/img/body/tan/under_upper/bikini/6.png b/img/body/tan/under_upper/bikini/6.png
index 07d5c9ca115ee01931f2fbc4ecbe0b0882ba0f5a..22e09f0818f39a317b5921d288ae6cc1649e13e8 100644
Binary files a/img/body/tan/under_upper/bikini/6.png and b/img/body/tan/under_upper/bikini/6.png differ
diff --git a/img/body/tan/under_upper/swimsuit/swimsuit.png b/img/body/tan/under_upper/swimsuit/swimsuit.png
index c051b93f8c12195f4cc48688f0076ab4e1cfd11c..c40dfeff5f74fd0b07f359d762cf197071d8c54b 100644
Binary files a/img/body/tan/under_upper/swimsuit/swimsuit.png and b/img/body/tan/under_upper/swimsuit/swimsuit.png differ
diff --git a/img/body/tear1.png b/img/body/tear1.png
index d0cab91fc31631218738b1f445d70b37c26678a8..b8a21975877a777d44da918512636d49fa87b39d 100644
Binary files a/img/body/tear1.png and b/img/body/tear1.png differ
diff --git a/img/body/tear2.gif b/img/body/tear2.gif
deleted file mode 100644
index b4a335511ba0ae89c5d8347dc6ee8d9224c8f925..0000000000000000000000000000000000000000
Binary files a/img/body/tear2.gif and /dev/null differ
diff --git a/img/body/tear2.png b/img/body/tear2.png
index 15dc8e11b8b08fbbeee6c95e92981cedf02beebf..d254155a617a226c5aac9756ada0056514768d46 100644
Binary files a/img/body/tear2.png and b/img/body/tear2.png differ
diff --git a/img/body/tear3.gif b/img/body/tear3.gif
deleted file mode 100644
index 8aea51792b0499a9e003c326d0c438890bec62b2..0000000000000000000000000000000000000000
Binary files a/img/body/tear3.gif and /dev/null differ
diff --git a/img/body/tear3.png b/img/body/tear3.png
index f219cebbac12990135e154e50192f1f073970571..7ca8c5aea9d12e5bdbbe7bf2b76eb985a7c44d33 100644
Binary files a/img/body/tear3.png and b/img/body/tear3.png differ
diff --git a/img/body/tear4.gif b/img/body/tear4.gif
deleted file mode 100644
index 23b44aa5c0de5576fea59042e31a03d3f67e106c..0000000000000000000000000000000000000000
Binary files a/img/body/tear4.gif and /dev/null differ
diff --git a/img/body/tear4.png b/img/body/tear4.png
index 4bded72eaa4470108adb58b33eca13e885fbbf8f..69ff4f7cd9d19e908b3616203e530d5de35b7cf3 100644
Binary files a/img/body/tear4.png and b/img/body/tear4.png differ
diff --git a/img/body/wraith_scars.png b/img/body/wraith_scars.png
index 40498178bf97d7b83eac6bfab4fec425037d128b..d9e9afe31c4b5e5376fdf8f58a11d29536e6ba07 100644
Binary files a/img/body/wraith_scars.png and b/img/body/wraith_scars.png differ
diff --git a/img/bodywriting/butterfly/breasts0.png b/img/bodywriting/butterfly/breasts0.png
index a41baafa361ad02b783958ffe9041042566db001..eb3d8a785f0481bf1ae4658527dc8ce2860f4581 100644
Binary files a/img/bodywriting/butterfly/breasts0.png and b/img/bodywriting/butterfly/breasts0.png differ
diff --git a/img/bodywriting/butterfly/breasts1.png b/img/bodywriting/butterfly/breasts1.png
index a41baafa361ad02b783958ffe9041042566db001..eb3d8a785f0481bf1ae4658527dc8ce2860f4581 100644
Binary files a/img/bodywriting/butterfly/breasts1.png and b/img/bodywriting/butterfly/breasts1.png differ
diff --git a/img/bodywriting/butterfly/breasts2.png b/img/bodywriting/butterfly/breasts2.png
index a41baafa361ad02b783958ffe9041042566db001..eb3d8a785f0481bf1ae4658527dc8ce2860f4581 100644
Binary files a/img/bodywriting/butterfly/breasts2.png and b/img/bodywriting/butterfly/breasts2.png differ
diff --git a/img/bodywriting/butterfly/breasts3.png b/img/bodywriting/butterfly/breasts3.png
index a41baafa361ad02b783958ffe9041042566db001..eb3d8a785f0481bf1ae4658527dc8ce2860f4581 100644
Binary files a/img/bodywriting/butterfly/breasts3.png and b/img/bodywriting/butterfly/breasts3.png differ
diff --git a/img/bodywriting/butterfly/breasts4.png b/img/bodywriting/butterfly/breasts4.png
index a41baafa361ad02b783958ffe9041042566db001..eb3d8a785f0481bf1ae4658527dc8ce2860f4581 100644
Binary files a/img/bodywriting/butterfly/breasts4.png and b/img/bodywriting/butterfly/breasts4.png differ
diff --git a/img/bodywriting/butterfly/breasts5.png b/img/bodywriting/butterfly/breasts5.png
index a41baafa361ad02b783958ffe9041042566db001..eb3d8a785f0481bf1ae4658527dc8ce2860f4581 100644
Binary files a/img/bodywriting/butterfly/breasts5.png and b/img/bodywriting/butterfly/breasts5.png differ
diff --git a/img/bodywriting/butterfly/breasts6.png b/img/bodywriting/butterfly/breasts6.png
index a41baafa361ad02b783958ffe9041042566db001..eb3d8a785f0481bf1ae4658527dc8ce2860f4581 100644
Binary files a/img/bodywriting/butterfly/breasts6.png and b/img/bodywriting/butterfly/breasts6.png differ
diff --git a/img/bodywriting/butterfly/forehead.png b/img/bodywriting/butterfly/forehead.png
index 7db81af9928f75183c8a1c5c1f43586ced1c65f0..45e9dedcc6bda6772fca16fae3813991b61d4c87 100644
Binary files a/img/bodywriting/butterfly/forehead.png and b/img/bodywriting/butterfly/forehead.png differ
diff --git a/img/bodywriting/butterfly/left_cheek.png b/img/bodywriting/butterfly/left_cheek.png
index 7d8356affad325f9e32e2290601b6473f3718003..2334316212d2775c672ccf99fc3c0e70a507f3a5 100644
Binary files a/img/bodywriting/butterfly/left_cheek.png and b/img/bodywriting/butterfly/left_cheek.png differ
diff --git a/img/bodywriting/butterfly/left_shoulder.png b/img/bodywriting/butterfly/left_shoulder.png
index 50c7787a3dceb4d508f5d6a6a024eeac945be1ad..ce733eb0d8afb5fea1eb8d5b1b6a0e49eb4c8c0c 100644
Binary files a/img/bodywriting/butterfly/left_shoulder.png and b/img/bodywriting/butterfly/left_shoulder.png differ
diff --git a/img/bodywriting/butterfly/left_thigh.png b/img/bodywriting/butterfly/left_thigh.png
index 03ba2f889f86de1e6daee88fe1c3658cdc4868e5..bde5dc5ca8dddfd72b32ddc972b6d31bd92bbfd2 100644
Binary files a/img/bodywriting/butterfly/left_thigh.png and b/img/bodywriting/butterfly/left_thigh.png differ
diff --git a/img/bodywriting/butterfly/pubic.png b/img/bodywriting/butterfly/pubic.png
index ea6fa6b9c9ed94464cea3691177570fd357b3d8f..a2812d9920ceaf55f939cf6b820bdf15688a01f1 100644
Binary files a/img/bodywriting/butterfly/pubic.png and b/img/bodywriting/butterfly/pubic.png differ
diff --git a/img/bodywriting/butterfly/right_cheek.png b/img/bodywriting/butterfly/right_cheek.png
index 6a49ebd5eb2bf71291da363923c2d01e65b6d1f6..91192b6257e5af2de5daf5a83569ec4fd145c2ad 100644
Binary files a/img/bodywriting/butterfly/right_cheek.png and b/img/bodywriting/butterfly/right_cheek.png differ
diff --git a/img/bodywriting/butterfly/right_shoulder.png b/img/bodywriting/butterfly/right_shoulder.png
index 6c90d94a43c699405891ee0adc5a9a2a914c7559..16ceebb763e4f8151c755b2d2adfcbbe0d4ddce3 100644
Binary files a/img/bodywriting/butterfly/right_shoulder.png and b/img/bodywriting/butterfly/right_shoulder.png differ
diff --git a/img/bodywriting/butterfly/right_thigh.png b/img/bodywriting/butterfly/right_thigh.png
index df2d4bebdc810ad4eafeca0d19f34c58fab8d124..5f04bc2ec57b59b41720f15d497cadcd6c48fdcc 100644
Binary files a/img/bodywriting/butterfly/right_thigh.png and b/img/bodywriting/butterfly/right_thigh.png differ
diff --git a/img/bodywriting/circle/breasts0.png b/img/bodywriting/circle/breasts0.png
index 3c3226f50e77534edc155c7f53a7718698f140fb..464a8d02b2924d331e29daa8787731675d07090a 100644
Binary files a/img/bodywriting/circle/breasts0.png and b/img/bodywriting/circle/breasts0.png differ
diff --git a/img/bodywriting/circle/breasts1.png b/img/bodywriting/circle/breasts1.png
index 3c3226f50e77534edc155c7f53a7718698f140fb..464a8d02b2924d331e29daa8787731675d07090a 100644
Binary files a/img/bodywriting/circle/breasts1.png and b/img/bodywriting/circle/breasts1.png differ
diff --git a/img/bodywriting/circle/breasts2.png b/img/bodywriting/circle/breasts2.png
index 3c3226f50e77534edc155c7f53a7718698f140fb..464a8d02b2924d331e29daa8787731675d07090a 100644
Binary files a/img/bodywriting/circle/breasts2.png and b/img/bodywriting/circle/breasts2.png differ
diff --git a/img/bodywriting/circle/breasts3.png b/img/bodywriting/circle/breasts3.png
index 3c3226f50e77534edc155c7f53a7718698f140fb..464a8d02b2924d331e29daa8787731675d07090a 100644
Binary files a/img/bodywriting/circle/breasts3.png and b/img/bodywriting/circle/breasts3.png differ
diff --git a/img/bodywriting/circle/breasts4.png b/img/bodywriting/circle/breasts4.png
index 3c3226f50e77534edc155c7f53a7718698f140fb..464a8d02b2924d331e29daa8787731675d07090a 100644
Binary files a/img/bodywriting/circle/breasts4.png and b/img/bodywriting/circle/breasts4.png differ
diff --git a/img/bodywriting/circle/breasts5.png b/img/bodywriting/circle/breasts5.png
index 3c3226f50e77534edc155c7f53a7718698f140fb..464a8d02b2924d331e29daa8787731675d07090a 100644
Binary files a/img/bodywriting/circle/breasts5.png and b/img/bodywriting/circle/breasts5.png differ
diff --git a/img/bodywriting/circle/breasts6.png b/img/bodywriting/circle/breasts6.png
index 3c3226f50e77534edc155c7f53a7718698f140fb..464a8d02b2924d331e29daa8787731675d07090a 100644
Binary files a/img/bodywriting/circle/breasts6.png and b/img/bodywriting/circle/breasts6.png differ
diff --git a/img/bodywriting/circle/forehead.png b/img/bodywriting/circle/forehead.png
index 1df8774ce29c1ddfec81f51796eac8beb06bef88..fb23724541d5971e19fafd1a4e725bbcaf2090aa 100644
Binary files a/img/bodywriting/circle/forehead.png and b/img/bodywriting/circle/forehead.png differ
diff --git a/img/bodywriting/circle/left_cheek.png b/img/bodywriting/circle/left_cheek.png
index 3ec669988117c282119f4aa7547ecc335ca87888..af5bf5eed7d53bc19c09ccc397f6fa55ec961ec5 100644
Binary files a/img/bodywriting/circle/left_cheek.png and b/img/bodywriting/circle/left_cheek.png differ
diff --git a/img/bodywriting/circle/left_shoulder.png b/img/bodywriting/circle/left_shoulder.png
index fde0755cf512202b6791c0cb4b86efe79a122b49..379ef873661da266d5429ba056ab701864e2726c 100644
Binary files a/img/bodywriting/circle/left_shoulder.png and b/img/bodywriting/circle/left_shoulder.png differ
diff --git a/img/bodywriting/circle/left_thigh.png b/img/bodywriting/circle/left_thigh.png
index 7a00cac29c373d2595d92e9d8941f44ff25aa0d2..80adf346c4f14413ad5e09de92ecf4731b5aa1e4 100644
Binary files a/img/bodywriting/circle/left_thigh.png and b/img/bodywriting/circle/left_thigh.png differ
diff --git a/img/bodywriting/circle/pubic.png b/img/bodywriting/circle/pubic.png
index 9673e23fd1e02711243830fbe75e2b31159e4498..bad5366af344d0318a8942ef082b9ddfaf184ddf 100644
Binary files a/img/bodywriting/circle/pubic.png and b/img/bodywriting/circle/pubic.png differ
diff --git a/img/bodywriting/circle/right_cheek.png b/img/bodywriting/circle/right_cheek.png
index 791273bb85075583b0ffd4657a45f9accf3d7eaf..5844a98718865a273cc49f01df1ec925c712382e 100644
Binary files a/img/bodywriting/circle/right_cheek.png and b/img/bodywriting/circle/right_cheek.png differ
diff --git a/img/bodywriting/circle/right_shoulder.png b/img/bodywriting/circle/right_shoulder.png
index 7eb7bf37de6a187b3f49572edc0cf2f7b3dafbe1..7d2f951b385fe39e694f87af74bb708af52ad53f 100644
Binary files a/img/bodywriting/circle/right_shoulder.png and b/img/bodywriting/circle/right_shoulder.png differ
diff --git a/img/bodywriting/circle/right_thigh.png b/img/bodywriting/circle/right_thigh.png
index e7a90dd4d4fb401d20549b53116187586f7ed7de..59ea99a49194c5e26a1ad99e8af20d7246c92ee9 100644
Binary files a/img/bodywriting/circle/right_thigh.png and b/img/bodywriting/circle/right_thigh.png differ
diff --git a/img/bodywriting/cross/breasts0.png b/img/bodywriting/cross/breasts0.png
index 1dcdcf1227f0e4dcaef6c951374c323ddcc1fa19..a274a95caf916d20fa337979f3f6df5d909e192b 100644
Binary files a/img/bodywriting/cross/breasts0.png and b/img/bodywriting/cross/breasts0.png differ
diff --git a/img/bodywriting/cross/breasts1.png b/img/bodywriting/cross/breasts1.png
index 1dcdcf1227f0e4dcaef6c951374c323ddcc1fa19..a274a95caf916d20fa337979f3f6df5d909e192b 100644
Binary files a/img/bodywriting/cross/breasts1.png and b/img/bodywriting/cross/breasts1.png differ
diff --git a/img/bodywriting/cross/breasts2.png b/img/bodywriting/cross/breasts2.png
index 1dcdcf1227f0e4dcaef6c951374c323ddcc1fa19..a274a95caf916d20fa337979f3f6df5d909e192b 100644
Binary files a/img/bodywriting/cross/breasts2.png and b/img/bodywriting/cross/breasts2.png differ
diff --git a/img/bodywriting/cross/breasts3.png b/img/bodywriting/cross/breasts3.png
index 1dcdcf1227f0e4dcaef6c951374c323ddcc1fa19..a274a95caf916d20fa337979f3f6df5d909e192b 100644
Binary files a/img/bodywriting/cross/breasts3.png and b/img/bodywriting/cross/breasts3.png differ
diff --git a/img/bodywriting/cross/breasts4.png b/img/bodywriting/cross/breasts4.png
index 1dcdcf1227f0e4dcaef6c951374c323ddcc1fa19..a274a95caf916d20fa337979f3f6df5d909e192b 100644
Binary files a/img/bodywriting/cross/breasts4.png and b/img/bodywriting/cross/breasts4.png differ
diff --git a/img/bodywriting/cross/breasts5.png b/img/bodywriting/cross/breasts5.png
index 1dcdcf1227f0e4dcaef6c951374c323ddcc1fa19..a274a95caf916d20fa337979f3f6df5d909e192b 100644
Binary files a/img/bodywriting/cross/breasts5.png and b/img/bodywriting/cross/breasts5.png differ
diff --git a/img/bodywriting/cross/breasts6.png b/img/bodywriting/cross/breasts6.png
index 1dcdcf1227f0e4dcaef6c951374c323ddcc1fa19..a274a95caf916d20fa337979f3f6df5d909e192b 100644
Binary files a/img/bodywriting/cross/breasts6.png and b/img/bodywriting/cross/breasts6.png differ
diff --git a/img/bodywriting/cross/forehead.png b/img/bodywriting/cross/forehead.png
index 5409ec9d450197af2c7bdd153ab3e5e7074ab238..7a34561c222506f356977c5004930a6dea0dc6d8 100644
Binary files a/img/bodywriting/cross/forehead.png and b/img/bodywriting/cross/forehead.png differ
diff --git a/img/bodywriting/cross/left_cheek.png b/img/bodywriting/cross/left_cheek.png
index be39ed72d58d53cb85e27e13e0d38a000fdfd41d..44722f29d5d41369121d5a3dc8976908f2d09226 100644
Binary files a/img/bodywriting/cross/left_cheek.png and b/img/bodywriting/cross/left_cheek.png differ
diff --git a/img/bodywriting/cross/left_shoulder.png b/img/bodywriting/cross/left_shoulder.png
index d07d926ad9187ee7ac170e862c0b955087c828dc..f8f32869c7dc5eeb7948d096bea6489d0f758a4b 100644
Binary files a/img/bodywriting/cross/left_shoulder.png and b/img/bodywriting/cross/left_shoulder.png differ
diff --git a/img/bodywriting/cross/left_thigh.png b/img/bodywriting/cross/left_thigh.png
index cbef2d96fd58bc92113dd0621815a2439252dcaf..b2f7595356a893b9ef97c5be1006a67c86199345 100644
Binary files a/img/bodywriting/cross/left_thigh.png and b/img/bodywriting/cross/left_thigh.png differ
diff --git a/img/bodywriting/cross/pubic.png b/img/bodywriting/cross/pubic.png
index 293ed844642fcb7e25481875bc1a33c6fb5c3444..aeadc3f9f27c8935bfc68291655771a622760b36 100644
Binary files a/img/bodywriting/cross/pubic.png and b/img/bodywriting/cross/pubic.png differ
diff --git a/img/bodywriting/cross/right_cheek.png b/img/bodywriting/cross/right_cheek.png
index 52bd641683fc9c841483e1135258012f168d42d5..a5dbcc0a5a593e0545250d4f58a09370612ee346 100644
Binary files a/img/bodywriting/cross/right_cheek.png and b/img/bodywriting/cross/right_cheek.png differ
diff --git a/img/bodywriting/cross/right_shoulder.png b/img/bodywriting/cross/right_shoulder.png
index fb6d7d2e408581b9abc2b95e8b84a62ff93aba51..56f97370f1792f92171329c6afe7a19e9731f39b 100644
Binary files a/img/bodywriting/cross/right_shoulder.png and b/img/bodywriting/cross/right_shoulder.png differ
diff --git a/img/bodywriting/cross/right_thigh.png b/img/bodywriting/cross/right_thigh.png
index d6d597a2967a2e4350f5dd16409d85470aa7aa72..de099b1693b17991637db5335c64ab6abfa7f4b9 100644
Binary files a/img/bodywriting/cross/right_thigh.png and b/img/bodywriting/cross/right_thigh.png differ
diff --git a/img/bodywriting/flame/breasts0.png b/img/bodywriting/flame/breasts0.png
index 0ac26f3e9a7de66f766edb5f200850e4cd02cd12..990d1f4e804e1fcb0dc692f1bec1de7a062913f8 100644
Binary files a/img/bodywriting/flame/breasts0.png and b/img/bodywriting/flame/breasts0.png differ
diff --git a/img/bodywriting/flame/breasts1.png b/img/bodywriting/flame/breasts1.png
index 0ac26f3e9a7de66f766edb5f200850e4cd02cd12..990d1f4e804e1fcb0dc692f1bec1de7a062913f8 100644
Binary files a/img/bodywriting/flame/breasts1.png and b/img/bodywriting/flame/breasts1.png differ
diff --git a/img/bodywriting/flame/breasts2.png b/img/bodywriting/flame/breasts2.png
index 0ac26f3e9a7de66f766edb5f200850e4cd02cd12..990d1f4e804e1fcb0dc692f1bec1de7a062913f8 100644
Binary files a/img/bodywriting/flame/breasts2.png and b/img/bodywriting/flame/breasts2.png differ
diff --git a/img/bodywriting/flame/breasts3.png b/img/bodywriting/flame/breasts3.png
index 0ac26f3e9a7de66f766edb5f200850e4cd02cd12..990d1f4e804e1fcb0dc692f1bec1de7a062913f8 100644
Binary files a/img/bodywriting/flame/breasts3.png and b/img/bodywriting/flame/breasts3.png differ
diff --git a/img/bodywriting/flame/breasts4.png b/img/bodywriting/flame/breasts4.png
index 0ac26f3e9a7de66f766edb5f200850e4cd02cd12..990d1f4e804e1fcb0dc692f1bec1de7a062913f8 100644
Binary files a/img/bodywriting/flame/breasts4.png and b/img/bodywriting/flame/breasts4.png differ
diff --git a/img/bodywriting/flame/breasts5.png b/img/bodywriting/flame/breasts5.png
index 0ac26f3e9a7de66f766edb5f200850e4cd02cd12..990d1f4e804e1fcb0dc692f1bec1de7a062913f8 100644
Binary files a/img/bodywriting/flame/breasts5.png and b/img/bodywriting/flame/breasts5.png differ
diff --git a/img/bodywriting/flame/breasts6.png b/img/bodywriting/flame/breasts6.png
index 0ac26f3e9a7de66f766edb5f200850e4cd02cd12..990d1f4e804e1fcb0dc692f1bec1de7a062913f8 100644
Binary files a/img/bodywriting/flame/breasts6.png and b/img/bodywriting/flame/breasts6.png differ
diff --git a/img/bodywriting/flame/forehead.png b/img/bodywriting/flame/forehead.png
index 6af3a117d98a4bb3c981d1ba7aade20fdb9ae905..22c50217221cef90ed326253dc8e57eba2942e4b 100644
Binary files a/img/bodywriting/flame/forehead.png and b/img/bodywriting/flame/forehead.png differ
diff --git a/img/bodywriting/flame/left_cheek.png b/img/bodywriting/flame/left_cheek.png
index 07fe951e48cbf4d0b82f03faea334a27bd83b5eb..6f4bbe5fe68f59f6e8a7c724ee447e7f9ded6dd7 100644
Binary files a/img/bodywriting/flame/left_cheek.png and b/img/bodywriting/flame/left_cheek.png differ
diff --git a/img/bodywriting/flame/left_shoulder.png b/img/bodywriting/flame/left_shoulder.png
index fb205f59bd2ef9b2f896f2b6c822cbb95a14f710..bb3226ef62ab82b39396ec604c1dc17f3e46218c 100644
Binary files a/img/bodywriting/flame/left_shoulder.png and b/img/bodywriting/flame/left_shoulder.png differ
diff --git a/img/bodywriting/flame/left_thigh.png b/img/bodywriting/flame/left_thigh.png
index 5af2811d9290e94d4bcfc2c2a6392feb9a0241d2..546720f6098ed2f8d89ace3c924be8fbe0176e62 100644
Binary files a/img/bodywriting/flame/left_thigh.png and b/img/bodywriting/flame/left_thigh.png differ
diff --git a/img/bodywriting/flame/pubic.png b/img/bodywriting/flame/pubic.png
index 34978a11c30f619cfb100edb6c5baf65bbd2ce32..fa592d21deb265aedcb04120c72f8ffc3668e6d7 100644
Binary files a/img/bodywriting/flame/pubic.png and b/img/bodywriting/flame/pubic.png differ
diff --git a/img/bodywriting/flame/right_cheek.png b/img/bodywriting/flame/right_cheek.png
index e66014a4e6b7257cf170ca1c1677fd8006c272b1..f2382e322b31471fd53a0a892616a4ca1de90b67 100644
Binary files a/img/bodywriting/flame/right_cheek.png and b/img/bodywriting/flame/right_cheek.png differ
diff --git a/img/bodywriting/flame/right_shoulder.png b/img/bodywriting/flame/right_shoulder.png
index 3c40f512debbf424765458e97fa0ce45d425c13c..2205c40cb4440bc8091203ec8bc479e3c5492b48 100644
Binary files a/img/bodywriting/flame/right_shoulder.png and b/img/bodywriting/flame/right_shoulder.png differ
diff --git a/img/bodywriting/flame/right_thigh.png b/img/bodywriting/flame/right_thigh.png
index a77a5f5561a72836a1c6b0fe2ab3ce50d1dd68bf..05cd2bdeace973ab7bba4085be32f07eefc73050 100644
Binary files a/img/bodywriting/flame/right_thigh.png and b/img/bodywriting/flame/right_thigh.png differ
diff --git a/img/bodywriting/flower/breasts0.png b/img/bodywriting/flower/breasts0.png
index 1c6d9cca5452ca41f8d170b649a946be3b622ba8..ccf61f38c6079c2ce44c66642e56e2333c3b40d5 100644
Binary files a/img/bodywriting/flower/breasts0.png and b/img/bodywriting/flower/breasts0.png differ
diff --git a/img/bodywriting/flower/breasts1.png b/img/bodywriting/flower/breasts1.png
index 1c6d9cca5452ca41f8d170b649a946be3b622ba8..ccf61f38c6079c2ce44c66642e56e2333c3b40d5 100644
Binary files a/img/bodywriting/flower/breasts1.png and b/img/bodywriting/flower/breasts1.png differ
diff --git a/img/bodywriting/flower/breasts2.png b/img/bodywriting/flower/breasts2.png
index 1c6d9cca5452ca41f8d170b649a946be3b622ba8..ccf61f38c6079c2ce44c66642e56e2333c3b40d5 100644
Binary files a/img/bodywriting/flower/breasts2.png and b/img/bodywriting/flower/breasts2.png differ
diff --git a/img/bodywriting/flower/breasts3.png b/img/bodywriting/flower/breasts3.png
index 1c6d9cca5452ca41f8d170b649a946be3b622ba8..ccf61f38c6079c2ce44c66642e56e2333c3b40d5 100644
Binary files a/img/bodywriting/flower/breasts3.png and b/img/bodywriting/flower/breasts3.png differ
diff --git a/img/bodywriting/flower/breasts4.png b/img/bodywriting/flower/breasts4.png
index 1c6d9cca5452ca41f8d170b649a946be3b622ba8..ccf61f38c6079c2ce44c66642e56e2333c3b40d5 100644
Binary files a/img/bodywriting/flower/breasts4.png and b/img/bodywriting/flower/breasts4.png differ
diff --git a/img/bodywriting/flower/breasts5.png b/img/bodywriting/flower/breasts5.png
index 1c6d9cca5452ca41f8d170b649a946be3b622ba8..ccf61f38c6079c2ce44c66642e56e2333c3b40d5 100644
Binary files a/img/bodywriting/flower/breasts5.png and b/img/bodywriting/flower/breasts5.png differ
diff --git a/img/bodywriting/flower/breasts6.png b/img/bodywriting/flower/breasts6.png
index 1c6d9cca5452ca41f8d170b649a946be3b622ba8..ccf61f38c6079c2ce44c66642e56e2333c3b40d5 100644
Binary files a/img/bodywriting/flower/breasts6.png and b/img/bodywriting/flower/breasts6.png differ
diff --git a/img/bodywriting/flower/forehead.png b/img/bodywriting/flower/forehead.png
index a2f6dfacbfa8d5ee2a5415f20a792dade1b0b109..f537d17cc502c67518a06ec433bacb05330dbaaf 100644
Binary files a/img/bodywriting/flower/forehead.png and b/img/bodywriting/flower/forehead.png differ
diff --git a/img/bodywriting/flower/left_cheek.png b/img/bodywriting/flower/left_cheek.png
index 53dcc6da2a6eabba98a5c8691a353dd59fbbb2c0..561dfd31cb5d034d1ef381fbd082bf73fed7b909 100644
Binary files a/img/bodywriting/flower/left_cheek.png and b/img/bodywriting/flower/left_cheek.png differ
diff --git a/img/bodywriting/flower/left_shoulder.png b/img/bodywriting/flower/left_shoulder.png
index 02218a7244da63615cef9f87f8bea41b1c519528..3c5458a8712e05900cda35d83da30aa3b0800a16 100644
Binary files a/img/bodywriting/flower/left_shoulder.png and b/img/bodywriting/flower/left_shoulder.png differ
diff --git a/img/bodywriting/flower/left_thigh.png b/img/bodywriting/flower/left_thigh.png
index 240324ccc3543d294cfbb9227a612fd51f82acd2..4389d4bc801aff9abac541b5c696619ff89ee095 100644
Binary files a/img/bodywriting/flower/left_thigh.png and b/img/bodywriting/flower/left_thigh.png differ
diff --git a/img/bodywriting/flower/pubic.png b/img/bodywriting/flower/pubic.png
index d75d8004d6edf66278bd1146b4d4289b5f4dcec5..dc8c86186f8f88b8ac3f36211906f5d609f07e65 100644
Binary files a/img/bodywriting/flower/pubic.png and b/img/bodywriting/flower/pubic.png differ
diff --git a/img/bodywriting/flower/right_cheek.png b/img/bodywriting/flower/right_cheek.png
index f230e72d6401df4707f3a907519abe2dacb89122..1bc522d13607c6acd76007af3971804022e8695c 100644
Binary files a/img/bodywriting/flower/right_cheek.png and b/img/bodywriting/flower/right_cheek.png differ
diff --git a/img/bodywriting/flower/right_shoulder.png b/img/bodywriting/flower/right_shoulder.png
index 3fe27bc9a384da89cc94b35108506442b18c58e0..91ce0db1d47157a2a1d9c28ea81feda7743d585b 100644
Binary files a/img/bodywriting/flower/right_shoulder.png and b/img/bodywriting/flower/right_shoulder.png differ
diff --git a/img/bodywriting/flower/right_thigh.png b/img/bodywriting/flower/right_thigh.png
index 73edbc14e770cf3e2d0d106d2dc0527186c4ee44..237d1c7638c932b30663835617e405d2051a46be 100644
Binary files a/img/bodywriting/flower/right_thigh.png and b/img/bodywriting/flower/right_thigh.png differ
diff --git a/img/bodywriting/heart/breasts0.png b/img/bodywriting/heart/breasts0.png
index d9ba3d4d7a42704ada282e19bafb7d4c96a747ea..cd9b09be0a45a8337949742901efdb6b6b64d990 100644
Binary files a/img/bodywriting/heart/breasts0.png and b/img/bodywriting/heart/breasts0.png differ
diff --git a/img/bodywriting/heart/breasts1.png b/img/bodywriting/heart/breasts1.png
index d9ba3d4d7a42704ada282e19bafb7d4c96a747ea..cd9b09be0a45a8337949742901efdb6b6b64d990 100644
Binary files a/img/bodywriting/heart/breasts1.png and b/img/bodywriting/heart/breasts1.png differ
diff --git a/img/bodywriting/heart/breasts2.png b/img/bodywriting/heart/breasts2.png
index 779d511f395da0edad7c9a2566891038232aea54..57b3234badbe71adf54d0a93334422b473df3e79 100644
Binary files a/img/bodywriting/heart/breasts2.png and b/img/bodywriting/heart/breasts2.png differ
diff --git a/img/bodywriting/heart/breasts3.png b/img/bodywriting/heart/breasts3.png
index 779d511f395da0edad7c9a2566891038232aea54..57b3234badbe71adf54d0a93334422b473df3e79 100644
Binary files a/img/bodywriting/heart/breasts3.png and b/img/bodywriting/heart/breasts3.png differ
diff --git a/img/bodywriting/heart/breasts4.png b/img/bodywriting/heart/breasts4.png
index 779d511f395da0edad7c9a2566891038232aea54..57b3234badbe71adf54d0a93334422b473df3e79 100644
Binary files a/img/bodywriting/heart/breasts4.png and b/img/bodywriting/heart/breasts4.png differ
diff --git a/img/bodywriting/heart/breasts5.png b/img/bodywriting/heart/breasts5.png
index 779d511f395da0edad7c9a2566891038232aea54..57b3234badbe71adf54d0a93334422b473df3e79 100644
Binary files a/img/bodywriting/heart/breasts5.png and b/img/bodywriting/heart/breasts5.png differ
diff --git a/img/bodywriting/heart/breasts6.png b/img/bodywriting/heart/breasts6.png
index 779d511f395da0edad7c9a2566891038232aea54..57b3234badbe71adf54d0a93334422b473df3e79 100644
Binary files a/img/bodywriting/heart/breasts6.png and b/img/bodywriting/heart/breasts6.png differ
diff --git a/img/bodywriting/heart/forehead.png b/img/bodywriting/heart/forehead.png
index 6c744ac99aebc436648ea9fa855893b10ec3a0c0..501beff2bc668b510ba4cd1f9acb4cce564d7abd 100644
Binary files a/img/bodywriting/heart/forehead.png and b/img/bodywriting/heart/forehead.png differ
diff --git a/img/bodywriting/heart/left_cheek.png b/img/bodywriting/heart/left_cheek.png
index 896d3387b8346c95ab6fd9e20162bd50ffe97f8c..3691f259ac555a26ab812e3c630267610d385c1e 100644
Binary files a/img/bodywriting/heart/left_cheek.png and b/img/bodywriting/heart/left_cheek.png differ
diff --git a/img/bodywriting/heart/left_shoulder.png b/img/bodywriting/heart/left_shoulder.png
index d2ac05027119b6b73e06e797378588613ff2f5ee..ca4c5996a47387ee7a6564e16425fbdb773725ee 100644
Binary files a/img/bodywriting/heart/left_shoulder.png and b/img/bodywriting/heart/left_shoulder.png differ
diff --git a/img/bodywriting/heart/left_thigh.png b/img/bodywriting/heart/left_thigh.png
index 011b71e4d1ae67e986d5b3fd022091aece3964e0..49cec1bfc6c1a8b39a1071330647340fec8e5a1d 100644
Binary files a/img/bodywriting/heart/left_thigh.png and b/img/bodywriting/heart/left_thigh.png differ
diff --git a/img/bodywriting/heart/pubic.png b/img/bodywriting/heart/pubic.png
index 92faec7d90e673b96abdfa5b6009cd66d75683f8..439d005f0ecf30e14443134aa77c2f6027ac14b5 100644
Binary files a/img/bodywriting/heart/pubic.png and b/img/bodywriting/heart/pubic.png differ
diff --git a/img/bodywriting/heart/right_cheek.png b/img/bodywriting/heart/right_cheek.png
index 1f7314b9872faac85b696b5be81d11a13f423a15..9dcae16d5f1ba4308110566154f59f54136048bd 100644
Binary files a/img/bodywriting/heart/right_cheek.png and b/img/bodywriting/heart/right_cheek.png differ
diff --git a/img/bodywriting/heart/right_shoulder.png b/img/bodywriting/heart/right_shoulder.png
index 015aa49e0aa2d376bf549ceda1c23e332754f905..7a285ea3cd93fc64b2c30068de9e701b8efddbad 100644
Binary files a/img/bodywriting/heart/right_shoulder.png and b/img/bodywriting/heart/right_shoulder.png differ
diff --git a/img/bodywriting/heart/right_thigh.png b/img/bodywriting/heart/right_thigh.png
index 53d8d3b393a4f2820492ef8196260c4794d9ca51..5ac32533b3741aafe6f775c99d8c3ff64ebcd7bf 100644
Binary files a/img/bodywriting/heart/right_thigh.png and b/img/bodywriting/heart/right_thigh.png differ
diff --git a/img/bodywriting/paw print/breasts0.png b/img/bodywriting/paw print/breasts0.png
index 1b59d14a62f9c45a05f8eb373ae6e13bd367467b..a07fdc84f17d4b4133aa6faaff213f0821cc7162 100644
Binary files a/img/bodywriting/paw print/breasts0.png and b/img/bodywriting/paw print/breasts0.png differ
diff --git a/img/bodywriting/paw print/breasts1.png b/img/bodywriting/paw print/breasts1.png
index 1b59d14a62f9c45a05f8eb373ae6e13bd367467b..a07fdc84f17d4b4133aa6faaff213f0821cc7162 100644
Binary files a/img/bodywriting/paw print/breasts1.png and b/img/bodywriting/paw print/breasts1.png differ
diff --git a/img/bodywriting/paw print/breasts2.png b/img/bodywriting/paw print/breasts2.png
index 1b59d14a62f9c45a05f8eb373ae6e13bd367467b..a07fdc84f17d4b4133aa6faaff213f0821cc7162 100644
Binary files a/img/bodywriting/paw print/breasts2.png and b/img/bodywriting/paw print/breasts2.png differ
diff --git a/img/bodywriting/paw print/breasts3.png b/img/bodywriting/paw print/breasts3.png
index b922ca719bc69f65346137e67fee5caabbd4e378..59ad960a7e289e924ad499979cd68329c04708fa 100644
Binary files a/img/bodywriting/paw print/breasts3.png and b/img/bodywriting/paw print/breasts3.png differ
diff --git a/img/bodywriting/paw print/breasts4.png b/img/bodywriting/paw print/breasts4.png
index d31fbdd5aadaffe83ab348e169313d1d67e551e5..b12237aa9a7696bb4024508b5529ad0ee2a640b3 100644
Binary files a/img/bodywriting/paw print/breasts4.png and b/img/bodywriting/paw print/breasts4.png differ
diff --git a/img/bodywriting/paw print/breasts5.png b/img/bodywriting/paw print/breasts5.png
index c5e520fcdb8d4e30841c455cd2e0c94207a6e860..0c10760cfd935ffecbd769134d820c3284913706 100644
Binary files a/img/bodywriting/paw print/breasts5.png and b/img/bodywriting/paw print/breasts5.png differ
diff --git a/img/bodywriting/paw print/breasts6.png b/img/bodywriting/paw print/breasts6.png
index c5e520fcdb8d4e30841c455cd2e0c94207a6e860..0c10760cfd935ffecbd769134d820c3284913706 100644
Binary files a/img/bodywriting/paw print/breasts6.png and b/img/bodywriting/paw print/breasts6.png differ
diff --git a/img/bodywriting/paw print/forehead.png b/img/bodywriting/paw print/forehead.png
index 30eec6e3b76d6c9c348bdea6f363ae363900c289..1d54c68dfcf183c44623bc8b08bb539e43b8a40d 100644
Binary files a/img/bodywriting/paw print/forehead.png and b/img/bodywriting/paw print/forehead.png differ
diff --git a/img/bodywriting/paw print/left_cheek.png b/img/bodywriting/paw print/left_cheek.png
index ea21f490cbb389e032ece6fc4e4db9059db73cfa..6f8cdd636bd992adfe5d696908fd794344c8360a 100644
Binary files a/img/bodywriting/paw print/left_cheek.png and b/img/bodywriting/paw print/left_cheek.png differ
diff --git a/img/bodywriting/paw print/left_shoulder.png b/img/bodywriting/paw print/left_shoulder.png
index 54cd479be2dd753c6b05365f5cdabe1ea07f64b4..75ba5de3d6f005591423ad5014ad973e0d718617 100644
Binary files a/img/bodywriting/paw print/left_shoulder.png and b/img/bodywriting/paw print/left_shoulder.png differ
diff --git a/img/bodywriting/paw print/left_thigh.png b/img/bodywriting/paw print/left_thigh.png
index 7c8ea2e60ab7fe396a5c6ce31dc136b59ffdee5b..ff120fa44b6fd249cc5fdd5efbd95f610cbea32e 100644
Binary files a/img/bodywriting/paw print/left_thigh.png and b/img/bodywriting/paw print/left_thigh.png differ
diff --git a/img/bodywriting/paw print/pubic.png b/img/bodywriting/paw print/pubic.png
index 3c6bedba9b2a818ece951351df3bf2aef1c3e266..40ce845229dcd0604ca0294a5046f100279e6f41 100644
Binary files a/img/bodywriting/paw print/pubic.png and b/img/bodywriting/paw print/pubic.png differ
diff --git a/img/bodywriting/paw print/right_cheek.png b/img/bodywriting/paw print/right_cheek.png
index 928728b4fec89e570097fb3ca4284a6601cf9150..36e48e74d031618953e04f9cfd6ae8818c1c7208 100644
Binary files a/img/bodywriting/paw print/right_cheek.png and b/img/bodywriting/paw print/right_cheek.png differ
diff --git a/img/bodywriting/paw print/right_shoulder.png b/img/bodywriting/paw print/right_shoulder.png
index ef635914a42aa082df7a9d0e483af3c928eaf27e..ed4d2c6f25dd4ec538018bc077d512874089b573 100644
Binary files a/img/bodywriting/paw print/right_shoulder.png and b/img/bodywriting/paw print/right_shoulder.png differ
diff --git a/img/bodywriting/paw print/right_thigh.png b/img/bodywriting/paw print/right_thigh.png
index 58d26c584170d0844be6ae8be5d2e544d271c86d..8c3b0e23f76fe458c0d3e287308256f9deef7cd0 100644
Binary files a/img/bodywriting/paw print/right_thigh.png and b/img/bodywriting/paw print/right_thigh.png differ
diff --git a/img/bodywriting/skull/breasts0.png b/img/bodywriting/skull/breasts0.png
index b68acd2d4a9db7ecd6c923913f2f642bd5347556..2f4a3efac9bcdf1a95f679358961dd9a5ea35451 100644
Binary files a/img/bodywriting/skull/breasts0.png and b/img/bodywriting/skull/breasts0.png differ
diff --git a/img/bodywriting/skull/breasts1.png b/img/bodywriting/skull/breasts1.png
index b68acd2d4a9db7ecd6c923913f2f642bd5347556..2f4a3efac9bcdf1a95f679358961dd9a5ea35451 100644
Binary files a/img/bodywriting/skull/breasts1.png and b/img/bodywriting/skull/breasts1.png differ
diff --git a/img/bodywriting/skull/breasts2.png b/img/bodywriting/skull/breasts2.png
index b68acd2d4a9db7ecd6c923913f2f642bd5347556..2f4a3efac9bcdf1a95f679358961dd9a5ea35451 100644
Binary files a/img/bodywriting/skull/breasts2.png and b/img/bodywriting/skull/breasts2.png differ
diff --git a/img/bodywriting/skull/breasts3.png b/img/bodywriting/skull/breasts3.png
index b68acd2d4a9db7ecd6c923913f2f642bd5347556..2f4a3efac9bcdf1a95f679358961dd9a5ea35451 100644
Binary files a/img/bodywriting/skull/breasts3.png and b/img/bodywriting/skull/breasts3.png differ
diff --git a/img/bodywriting/skull/breasts4.png b/img/bodywriting/skull/breasts4.png
index b68acd2d4a9db7ecd6c923913f2f642bd5347556..2f4a3efac9bcdf1a95f679358961dd9a5ea35451 100644
Binary files a/img/bodywriting/skull/breasts4.png and b/img/bodywriting/skull/breasts4.png differ
diff --git a/img/bodywriting/skull/breasts5.png b/img/bodywriting/skull/breasts5.png
index b68acd2d4a9db7ecd6c923913f2f642bd5347556..2f4a3efac9bcdf1a95f679358961dd9a5ea35451 100644
Binary files a/img/bodywriting/skull/breasts5.png and b/img/bodywriting/skull/breasts5.png differ
diff --git a/img/bodywriting/skull/breasts6.png b/img/bodywriting/skull/breasts6.png
index b68acd2d4a9db7ecd6c923913f2f642bd5347556..2f4a3efac9bcdf1a95f679358961dd9a5ea35451 100644
Binary files a/img/bodywriting/skull/breasts6.png and b/img/bodywriting/skull/breasts6.png differ
diff --git a/img/bodywriting/skull/forehead.png b/img/bodywriting/skull/forehead.png
index 4e853b5fd5a6299bf9ddf0af759355f0c25ac843..fef4c52ba5e181585f9b067b3d7301a18fa8adc8 100644
Binary files a/img/bodywriting/skull/forehead.png and b/img/bodywriting/skull/forehead.png differ
diff --git a/img/bodywriting/skull/left_cheek.png b/img/bodywriting/skull/left_cheek.png
index fcf457e74f90427f4982c3a71feeee20eb0b6e2c..129eedd4968293a8aeaa7362776e0f0270f441c0 100644
Binary files a/img/bodywriting/skull/left_cheek.png and b/img/bodywriting/skull/left_cheek.png differ
diff --git a/img/bodywriting/skull/left_shoulder.png b/img/bodywriting/skull/left_shoulder.png
index 7e832fe76c2477ae065d1a44f4e2134daa4a18d5..96bd62768775ec91e0cd54357193b4aca4390770 100644
Binary files a/img/bodywriting/skull/left_shoulder.png and b/img/bodywriting/skull/left_shoulder.png differ
diff --git a/img/bodywriting/skull/left_thigh.png b/img/bodywriting/skull/left_thigh.png
index 0b4624a75c6acd38157135aa70f55686df1285fd..23e636e22b38b9bc09460ce6090e12d4a0e0f49d 100644
Binary files a/img/bodywriting/skull/left_thigh.png and b/img/bodywriting/skull/left_thigh.png differ
diff --git a/img/bodywriting/skull/pubic.png b/img/bodywriting/skull/pubic.png
index 942ed167732bb34591c1eae74d78e5509ac6087d..607331e59044b3f6b5a5dc2d53a4eb6881742772 100644
Binary files a/img/bodywriting/skull/pubic.png and b/img/bodywriting/skull/pubic.png differ
diff --git a/img/bodywriting/skull/right_cheek.png b/img/bodywriting/skull/right_cheek.png
index d69fcff5576da25b09fedcee42cb218ce2d93ee0..85dc1157f1ec1017629f95679bc06376d4903fb4 100644
Binary files a/img/bodywriting/skull/right_cheek.png and b/img/bodywriting/skull/right_cheek.png differ
diff --git a/img/bodywriting/skull/right_shoulder.png b/img/bodywriting/skull/right_shoulder.png
index 82baccfd0880e60b4569c5f4843d76107f891b8c..a0425aac8df485370c3fbc37f0984306b0bc0bb4 100644
Binary files a/img/bodywriting/skull/right_shoulder.png and b/img/bodywriting/skull/right_shoulder.png differ
diff --git a/img/bodywriting/skull/right_thigh.png b/img/bodywriting/skull/right_thigh.png
index 1f0c823c538a7269f01a1ef253648aa42ab129a3..25f6e759d9784a6455ec5f31451b1f62ef767e12 100644
Binary files a/img/bodywriting/skull/right_thigh.png and b/img/bodywriting/skull/right_thigh.png differ
diff --git a/img/bodywriting/square/breasts0.png b/img/bodywriting/square/breasts0.png
index 2823a3b8bb6df9661a41b0b97d21861003d1e2b7..0f7b18aed8f33e3b07f3dc0eea5735e5efbf8646 100644
Binary files a/img/bodywriting/square/breasts0.png and b/img/bodywriting/square/breasts0.png differ
diff --git a/img/bodywriting/square/breasts1.png b/img/bodywriting/square/breasts1.png
index 2823a3b8bb6df9661a41b0b97d21861003d1e2b7..0f7b18aed8f33e3b07f3dc0eea5735e5efbf8646 100644
Binary files a/img/bodywriting/square/breasts1.png and b/img/bodywriting/square/breasts1.png differ
diff --git a/img/bodywriting/square/breasts2.png b/img/bodywriting/square/breasts2.png
index 2823a3b8bb6df9661a41b0b97d21861003d1e2b7..0f7b18aed8f33e3b07f3dc0eea5735e5efbf8646 100644
Binary files a/img/bodywriting/square/breasts2.png and b/img/bodywriting/square/breasts2.png differ
diff --git a/img/bodywriting/square/breasts3.png b/img/bodywriting/square/breasts3.png
index 2823a3b8bb6df9661a41b0b97d21861003d1e2b7..0f7b18aed8f33e3b07f3dc0eea5735e5efbf8646 100644
Binary files a/img/bodywriting/square/breasts3.png and b/img/bodywriting/square/breasts3.png differ
diff --git a/img/bodywriting/square/breasts4.png b/img/bodywriting/square/breasts4.png
index 2823a3b8bb6df9661a41b0b97d21861003d1e2b7..0f7b18aed8f33e3b07f3dc0eea5735e5efbf8646 100644
Binary files a/img/bodywriting/square/breasts4.png and b/img/bodywriting/square/breasts4.png differ
diff --git a/img/bodywriting/square/breasts5.png b/img/bodywriting/square/breasts5.png
index 2823a3b8bb6df9661a41b0b97d21861003d1e2b7..0f7b18aed8f33e3b07f3dc0eea5735e5efbf8646 100644
Binary files a/img/bodywriting/square/breasts5.png and b/img/bodywriting/square/breasts5.png differ
diff --git a/img/bodywriting/square/breasts6.png b/img/bodywriting/square/breasts6.png
index 2823a3b8bb6df9661a41b0b97d21861003d1e2b7..0f7b18aed8f33e3b07f3dc0eea5735e5efbf8646 100644
Binary files a/img/bodywriting/square/breasts6.png and b/img/bodywriting/square/breasts6.png differ
diff --git a/img/bodywriting/square/forehead.png b/img/bodywriting/square/forehead.png
index 3adc4f303eae3ef8c44f072b3982514c48e30f23..a8f20c2204707e90fbb96f60f453b01f0a0efbb0 100644
Binary files a/img/bodywriting/square/forehead.png and b/img/bodywriting/square/forehead.png differ
diff --git a/img/bodywriting/square/left_cheek.png b/img/bodywriting/square/left_cheek.png
index 3ec669988117c282119f4aa7547ecc335ca87888..af5bf5eed7d53bc19c09ccc397f6fa55ec961ec5 100644
Binary files a/img/bodywriting/square/left_cheek.png and b/img/bodywriting/square/left_cheek.png differ
diff --git a/img/bodywriting/square/left_shoulder.png b/img/bodywriting/square/left_shoulder.png
index f57bd6508c8ddff9e8126d6a35b21c26919e9eb1..7b43b071b52d237ac40f402a3f68f166332ef44b 100644
Binary files a/img/bodywriting/square/left_shoulder.png and b/img/bodywriting/square/left_shoulder.png differ
diff --git a/img/bodywriting/square/left_thigh.png b/img/bodywriting/square/left_thigh.png
index 8c436757a9b3359a42063bd78defe80e9317901d..986b3785b6b4bd533c0aa6a899ead17339772fff 100644
Binary files a/img/bodywriting/square/left_thigh.png and b/img/bodywriting/square/left_thigh.png differ
diff --git a/img/bodywriting/square/pubic.png b/img/bodywriting/square/pubic.png
index 9d0dd88d1e6e46065d3aca86b28e99be989b1ce8..d460de30c0bad3fec9f9d22d695b29610cb3980d 100644
Binary files a/img/bodywriting/square/pubic.png and b/img/bodywriting/square/pubic.png differ
diff --git a/img/bodywriting/square/right_cheek.png b/img/bodywriting/square/right_cheek.png
index 60d81ef6ebacbcaba9cab0172bb28bf632db893e..5cbb0778b3bcbd39eb5fba7e7a646be6128b514f 100644
Binary files a/img/bodywriting/square/right_cheek.png and b/img/bodywriting/square/right_cheek.png differ
diff --git a/img/bodywriting/square/right_shoulder.png b/img/bodywriting/square/right_shoulder.png
index 0765256d0c5bd7cf659bc7b890f69e4a41a510c2..4795e01866286fec06b645f18b5e1b6fcf90b367 100644
Binary files a/img/bodywriting/square/right_shoulder.png and b/img/bodywriting/square/right_shoulder.png differ
diff --git a/img/bodywriting/square/right_thigh.png b/img/bodywriting/square/right_thigh.png
index 3a7c753b5bebd8b1d8e60455db21160c0a98ef08..8953149e439ecea309435e9593aaa50f7a846af1 100644
Binary files a/img/bodywriting/square/right_thigh.png and b/img/bodywriting/square/right_thigh.png differ
diff --git a/img/bodywriting/star/breasts0.png b/img/bodywriting/star/breasts0.png
index 23a65e93d3eca81c79089ab76dfaf96970a19232..b98ee1c2bb679a81b79e6d73bf95b0bfb9068a4e 100644
Binary files a/img/bodywriting/star/breasts0.png and b/img/bodywriting/star/breasts0.png differ
diff --git a/img/bodywriting/star/breasts1.png b/img/bodywriting/star/breasts1.png
index 23a65e93d3eca81c79089ab76dfaf96970a19232..b98ee1c2bb679a81b79e6d73bf95b0bfb9068a4e 100644
Binary files a/img/bodywriting/star/breasts1.png and b/img/bodywriting/star/breasts1.png differ
diff --git a/img/bodywriting/star/breasts2.png b/img/bodywriting/star/breasts2.png
index 23a65e93d3eca81c79089ab76dfaf96970a19232..b98ee1c2bb679a81b79e6d73bf95b0bfb9068a4e 100644
Binary files a/img/bodywriting/star/breasts2.png and b/img/bodywriting/star/breasts2.png differ
diff --git a/img/bodywriting/star/breasts3.png b/img/bodywriting/star/breasts3.png
index 23a65e93d3eca81c79089ab76dfaf96970a19232..b98ee1c2bb679a81b79e6d73bf95b0bfb9068a4e 100644
Binary files a/img/bodywriting/star/breasts3.png and b/img/bodywriting/star/breasts3.png differ
diff --git a/img/bodywriting/star/breasts4.png b/img/bodywriting/star/breasts4.png
index 23a65e93d3eca81c79089ab76dfaf96970a19232..b98ee1c2bb679a81b79e6d73bf95b0bfb9068a4e 100644
Binary files a/img/bodywriting/star/breasts4.png and b/img/bodywriting/star/breasts4.png differ
diff --git a/img/bodywriting/star/breasts5.png b/img/bodywriting/star/breasts5.png
index 23a65e93d3eca81c79089ab76dfaf96970a19232..b98ee1c2bb679a81b79e6d73bf95b0bfb9068a4e 100644
Binary files a/img/bodywriting/star/breasts5.png and b/img/bodywriting/star/breasts5.png differ
diff --git a/img/bodywriting/star/breasts6.png b/img/bodywriting/star/breasts6.png
index 23a65e93d3eca81c79089ab76dfaf96970a19232..b98ee1c2bb679a81b79e6d73bf95b0bfb9068a4e 100644
Binary files a/img/bodywriting/star/breasts6.png and b/img/bodywriting/star/breasts6.png differ
diff --git a/img/bodywriting/star/forehead.png b/img/bodywriting/star/forehead.png
index 59ac9af6f440ebc038acaa471f4c2bdc2abc855c..73d35a55ccc0a05733fff91c22d1ff1b9e989912 100644
Binary files a/img/bodywriting/star/forehead.png and b/img/bodywriting/star/forehead.png differ
diff --git a/img/bodywriting/star/left_cheek.png b/img/bodywriting/star/left_cheek.png
index bad715c54e761f2d8216d655e37c84446f793aac..7fc46be860d3a46fd432cf75e008a8295136b523 100644
Binary files a/img/bodywriting/star/left_cheek.png and b/img/bodywriting/star/left_cheek.png differ
diff --git a/img/bodywriting/star/left_shoulder.png b/img/bodywriting/star/left_shoulder.png
index 2a7ba67f94838738b5d319e19b1963b27c3fded2..a37572e0f797eb1183af13868fcc4c0331f9fe5c 100644
Binary files a/img/bodywriting/star/left_shoulder.png and b/img/bodywriting/star/left_shoulder.png differ
diff --git a/img/bodywriting/star/left_thigh.png b/img/bodywriting/star/left_thigh.png
index 216dd4d937195f249c9339c4e09a081c46cd3475..521ca17366e9bccfa2069d750c0a5d81c4e14d3d 100644
Binary files a/img/bodywriting/star/left_thigh.png and b/img/bodywriting/star/left_thigh.png differ
diff --git a/img/bodywriting/star/pubic.png b/img/bodywriting/star/pubic.png
index cdcc54b152c3b17eff9362fbf82f0eed19ccb057..9054768f1a0714af7f4c6436dc0caada0735a216 100644
Binary files a/img/bodywriting/star/pubic.png and b/img/bodywriting/star/pubic.png differ
diff --git a/img/bodywriting/star/right_cheek.png b/img/bodywriting/star/right_cheek.png
index ca9874b4ee6f75a13bd1e5db8a772d6c05ae12d0..9d0c1091971b8286a0dbf329189c4b9e7655f46a 100644
Binary files a/img/bodywriting/star/right_cheek.png and b/img/bodywriting/star/right_cheek.png differ
diff --git a/img/bodywriting/star/right_shoulder.png b/img/bodywriting/star/right_shoulder.png
index 3f6bbf2bf92a2cbb8d889805c61674e9bf8ae103..5c1bd66b87745748eaddcd9125ca4dbb0dc78465 100644
Binary files a/img/bodywriting/star/right_shoulder.png and b/img/bodywriting/star/right_shoulder.png differ
diff --git a/img/bodywriting/star/right_thigh.png b/img/bodywriting/star/right_thigh.png
index b734168d040632422ab59a3cef7668577ecc071e..d9eb5983574d14070bf28a6f95c3477a45816799 100644
Binary files a/img/bodywriting/star/right_thigh.png and b/img/bodywriting/star/right_thigh.png differ
diff --git a/img/bodywriting/text/bitch/breasts.png b/img/bodywriting/text/bitch/breasts.png
index 50744dc08e4a10a219ce0873b1e1f36b1dc4440a..490e1d6ea4ed32b1e28e26bf4165d5cb2e78ae23 100644
Binary files a/img/bodywriting/text/bitch/breasts.png and b/img/bodywriting/text/bitch/breasts.png differ
diff --git a/img/bodywriting/text/bitch/forehead.png b/img/bodywriting/text/bitch/forehead.png
index ab9832c40f1d2948d4e6b33e84fb207dd41f27f0..a3150134639d05e509368083baaad672c8b07e4b 100644
Binary files a/img/bodywriting/text/bitch/forehead.png and b/img/bodywriting/text/bitch/forehead.png differ
diff --git a/img/bodywriting/text/bitch/left_thigh.png b/img/bodywriting/text/bitch/left_thigh.png
index d7e35de4d0628e64550628f842f1e8d1a34f89ff..8f22517994beae7da523aa201065cb81245a794a 100644
Binary files a/img/bodywriting/text/bitch/left_thigh.png and b/img/bodywriting/text/bitch/left_thigh.png differ
diff --git a/img/bodywriting/text/bitch/pubic.png b/img/bodywriting/text/bitch/pubic.png
index b8a67d80854eeae8b3dacda2e6d50eeb5de0b275..5cff91ca269e2c7211629bdce6d55d1894179865 100644
Binary files a/img/bodywriting/text/bitch/pubic.png and b/img/bodywriting/text/bitch/pubic.png differ
diff --git a/img/bodywriting/text/bitch/right_thigh.png b/img/bodywriting/text/bitch/right_thigh.png
index c263f54ed3ba3d894cae1c5c25ee8cdfc4a99bdd..933d8ccb1b9a1109eabfd8c6bac5db56d0e7f72f 100644
Binary files a/img/bodywriting/text/bitch/right_thigh.png and b/img/bodywriting/text/bitch/right_thigh.png differ
diff --git a/img/bodywriting/text/book_criminal_frown/forehead.png b/img/bodywriting/text/book_criminal_frown/forehead.png
index 5e014f85c8e44291a738a0ba58b75e00840e34d4..d2972ec70f4e3e10fc86c212555c701898207280 100644
Binary files a/img/bodywriting/text/book_criminal_frown/forehead.png and b/img/bodywriting/text/book_criminal_frown/forehead.png differ
diff --git a/img/bodywriting/text/book_criminal_frown/left_cheek.png b/img/bodywriting/text/book_criminal_frown/left_cheek.png
index 3c04c1dfce35245f997b8cbd4f5df756cedbf31b..6ca4c750562e6271594b47b4d5dae10473e27e63 100644
Binary files a/img/bodywriting/text/book_criminal_frown/left_cheek.png and b/img/bodywriting/text/book_criminal_frown/left_cheek.png differ
diff --git a/img/bodywriting/text/book_criminal_frown/right_cheek.png b/img/bodywriting/text/book_criminal_frown/right_cheek.png
index 85d86364d724e9f0ae6a44b8c2a79a1fd685c39c..96521c8d64c918d18fe513cd3d3136ad375cacfa 100644
Binary files a/img/bodywriting/text/book_criminal_frown/right_cheek.png and b/img/bodywriting/text/book_criminal_frown/right_cheek.png differ
diff --git a/img/bodywriting/text/book_criminal_heart/forehead.png b/img/bodywriting/text/book_criminal_heart/forehead.png
index 710613ca06118289b53ffd1ec5db924ac61d399c..45bfeebacd383a990265f18197b18ff36055536d 100644
Binary files a/img/bodywriting/text/book_criminal_heart/forehead.png and b/img/bodywriting/text/book_criminal_heart/forehead.png differ
diff --git a/img/bodywriting/text/book_criminal_heart/left_cheek.png b/img/bodywriting/text/book_criminal_heart/left_cheek.png
index 69bc2c1ce79206b5e231ab3d11693ac001adfc4c..d83fed0eb8e6df285ded1f4c55f19a4f205aa7c3 100644
Binary files a/img/bodywriting/text/book_criminal_heart/left_cheek.png and b/img/bodywriting/text/book_criminal_heart/left_cheek.png differ
diff --git a/img/bodywriting/text/book_criminal_heart/right_cheek.png b/img/bodywriting/text/book_criminal_heart/right_cheek.png
index 745342814f9ce1307c5c10e92bf40748e9ab4ee0..7055ea403739a9370a3dc0c90d4bcc1a45e2215d 100644
Binary files a/img/bodywriting/text/book_criminal_heart/right_cheek.png and b/img/bodywriting/text/book_criminal_heart/right_cheek.png differ
diff --git a/img/bodywriting/text/cum_rag/breasts.png b/img/bodywriting/text/cum_rag/breasts.png
index 85b0e8badcf919a6b8a18ff2531545dafdc14a49..508b1c4c29d0849c986d5b7002f92e3a832a877a 100644
Binary files a/img/bodywriting/text/cum_rag/breasts.png and b/img/bodywriting/text/cum_rag/breasts.png differ
diff --git a/img/bodywriting/text/cum_rag/forehead.png b/img/bodywriting/text/cum_rag/forehead.png
index 3b754826877924a19c6d15f05168329db64a9b78..3857dc32a3464eb5cdfcdee34f5b5c1b237dee7a 100644
Binary files a/img/bodywriting/text/cum_rag/forehead.png and b/img/bodywriting/text/cum_rag/forehead.png differ
diff --git a/img/bodywriting/text/cum_rag/left_thigh.png b/img/bodywriting/text/cum_rag/left_thigh.png
index acc08981cd67765b2cce5fc6f5f3abd50a7cf8fb..79379d62da0245bf12ad03c062358150e62b7aab 100644
Binary files a/img/bodywriting/text/cum_rag/left_thigh.png and b/img/bodywriting/text/cum_rag/left_thigh.png differ
diff --git a/img/bodywriting/text/cum_rag/pubic.png b/img/bodywriting/text/cum_rag/pubic.png
index a8e789d0e07d85c44240745b88eea6c6581455cf..92d512e3dc308b6574d43db07afd88ff910cec67 100644
Binary files a/img/bodywriting/text/cum_rag/pubic.png and b/img/bodywriting/text/cum_rag/pubic.png differ
diff --git a/img/bodywriting/text/cum_rag/right_thigh.png b/img/bodywriting/text/cum_rag/right_thigh.png
index d57a2d46531966205ef7c16c6c6a7c89732a75ae..1239dbd894a056c343e9eff1bae989a6d42a3324 100644
Binary files a/img/bodywriting/text/cum_rag/right_thigh.png and b/img/bodywriting/text/cum_rag/right_thigh.png differ
diff --git a/img/bodywriting/text/cute_boy/breasts.png b/img/bodywriting/text/cute_boy/breasts.png
index 1831ad0eb6c7ee0fde434c7e4cb5c03e1ea6f8eb..68aa9c8bbf4bf89e32619a1d18778bf5a89393e1 100644
Binary files a/img/bodywriting/text/cute_boy/breasts.png and b/img/bodywriting/text/cute_boy/breasts.png differ
diff --git a/img/bodywriting/text/cute_boy/forehead.png b/img/bodywriting/text/cute_boy/forehead.png
index 6e95a3635a42c6c67bc3d1b9a47cc30016afcf31..c87764416a0e451b628a1acd1b81a2ea9cf092ea 100644
Binary files a/img/bodywriting/text/cute_boy/forehead.png and b/img/bodywriting/text/cute_boy/forehead.png differ
diff --git a/img/bodywriting/text/cute_boy/left_thigh.png b/img/bodywriting/text/cute_boy/left_thigh.png
index d86b28e2d38e1af2c007d8a63419cb336025b2c4..70cd58223e905ab0ed8e020ffad4d996923bcef6 100644
Binary files a/img/bodywriting/text/cute_boy/left_thigh.png and b/img/bodywriting/text/cute_boy/left_thigh.png differ
diff --git a/img/bodywriting/text/cute_boy/pubic.png b/img/bodywriting/text/cute_boy/pubic.png
index 7834cd9f3085d3c2e8fa4f52518c9c05a9d4a3e1..68312f8c557e1f54b2223de75bbd98a694f5c479 100644
Binary files a/img/bodywriting/text/cute_boy/pubic.png and b/img/bodywriting/text/cute_boy/pubic.png differ
diff --git a/img/bodywriting/text/cute_boy/right_thigh.png b/img/bodywriting/text/cute_boy/right_thigh.png
index df49e9cd54f3b0ba766b6fa1d4e33472c415bfdb..c7cfe318b04e7badcb9742fd1b5aa48c98557bf9 100644
Binary files a/img/bodywriting/text/cute_boy/right_thigh.png and b/img/bodywriting/text/cute_boy/right_thigh.png differ
diff --git a/img/bodywriting/text/cute_girl/breasts.png b/img/bodywriting/text/cute_girl/breasts.png
index 86e62d8c49099060a71461fa461f83d83ece7d1b..ad696263758f1a0abc4d540e7d27bf53b9caefa0 100644
Binary files a/img/bodywriting/text/cute_girl/breasts.png and b/img/bodywriting/text/cute_girl/breasts.png differ
diff --git a/img/bodywriting/text/cute_girl/forehead.png b/img/bodywriting/text/cute_girl/forehead.png
index 6e95a3635a42c6c67bc3d1b9a47cc30016afcf31..c87764416a0e451b628a1acd1b81a2ea9cf092ea 100644
Binary files a/img/bodywriting/text/cute_girl/forehead.png and b/img/bodywriting/text/cute_girl/forehead.png differ
diff --git a/img/bodywriting/text/cute_girl/left_thigh.png b/img/bodywriting/text/cute_girl/left_thigh.png
index 04944764ac2028463b73c15f272155e1e740138f..1d8474a11a853ad4bb89f0ad9c51e9a7d8fc4c2f 100644
Binary files a/img/bodywriting/text/cute_girl/left_thigh.png and b/img/bodywriting/text/cute_girl/left_thigh.png differ
diff --git a/img/bodywriting/text/cute_girl/pubic.png b/img/bodywriting/text/cute_girl/pubic.png
index 254384b23818a2c296d47b274a4f3cd76c9ce8c5..d4b71235d81388b416faf9cf37eb8fd765830faa 100644
Binary files a/img/bodywriting/text/cute_girl/pubic.png and b/img/bodywriting/text/cute_girl/pubic.png differ
diff --git a/img/bodywriting/text/cute_girl/right_thigh.png b/img/bodywriting/text/cute_girl/right_thigh.png
index d23681f5b0af980115e12a09709fe8c5e793c84d..664bfc572736360ea473c243efc8922a55c9159b 100644
Binary files a/img/bodywriting/text/cute_girl/right_thigh.png and b/img/bodywriting/text/cute_girl/right_thigh.png differ
diff --git a/img/bodywriting/text/default/breasts1.png b/img/bodywriting/text/default/breasts1.png
index eedbad4ab85c1921e21ee16082bb22cc763d9c94..88263959c6dc9438928c1f897b7207186ab8d960 100644
Binary files a/img/bodywriting/text/default/breasts1.png and b/img/bodywriting/text/default/breasts1.png differ
diff --git a/img/bodywriting/text/default/breasts2.png b/img/bodywriting/text/default/breasts2.png
index fe4632b45e141924f36c73f8b18bb596bb5b338a..1645d550198a76f5e8d352e4088f9ecae6436e0c 100644
Binary files a/img/bodywriting/text/default/breasts2.png and b/img/bodywriting/text/default/breasts2.png differ
diff --git a/img/bodywriting/text/default/breasts3.png b/img/bodywriting/text/default/breasts3.png
index 0ee8c3001704c7d34954b17532266ce16a7504f1..0763e382044016093892f5208d31f87de16441ea 100644
Binary files a/img/bodywriting/text/default/breasts3.png and b/img/bodywriting/text/default/breasts3.png differ
diff --git a/img/bodywriting/text/default/breasts4.png b/img/bodywriting/text/default/breasts4.png
index 85fab93a774007501a7045dcaa727eadeb651af0..63e92746227ecafb37ee1629ffb2ef10e70247e4 100644
Binary files a/img/bodywriting/text/default/breasts4.png and b/img/bodywriting/text/default/breasts4.png differ
diff --git a/img/bodywriting/text/default/breasts5.png b/img/bodywriting/text/default/breasts5.png
index b77f56f5f7a9091a1e164c948f7b0f1a1f143591..166d387df202174215fa13eaad3fba138872f196 100644
Binary files a/img/bodywriting/text/default/breasts5.png and b/img/bodywriting/text/default/breasts5.png differ
diff --git a/img/bodywriting/text/default/breasts6.png b/img/bodywriting/text/default/breasts6.png
index 53dfb8bf5dad51021f93425ef90bad72e8c92c83..59fd88b797fcb2bb2c95830f38d9a88c038f26bc 100644
Binary files a/img/bodywriting/text/default/breasts6.png and b/img/bodywriting/text/default/breasts6.png differ
diff --git a/img/bodywriting/text/default/forehead.png b/img/bodywriting/text/default/forehead.png
index da3cef9a45b5b85ebeece4e1652760bd57b12c02..c37cac1f34888eba7bc421de03a12c983ed00ed3 100644
Binary files a/img/bodywriting/text/default/forehead.png and b/img/bodywriting/text/default/forehead.png differ
diff --git a/img/bodywriting/text/default/left_cheek.png b/img/bodywriting/text/default/left_cheek.png
index f0fdef0c7291718024e304c9da9d4cd628fc2276..4d6472803f2808121d3d2977a6470c12f03d7173 100644
Binary files a/img/bodywriting/text/default/left_cheek.png and b/img/bodywriting/text/default/left_cheek.png differ
diff --git a/img/bodywriting/text/default/left_shoulder.png b/img/bodywriting/text/default/left_shoulder.png
index b11e74afef8947bcda230fbdd55e6d83da9f35c4..ac4995c52e8b6ad9b6aba181dca0473b3b648a22 100644
Binary files a/img/bodywriting/text/default/left_shoulder.png and b/img/bodywriting/text/default/left_shoulder.png differ
diff --git a/img/bodywriting/text/default/left_thigh.png b/img/bodywriting/text/default/left_thigh.png
index 84c563c892f448c184ab8605d624784766db212f..e42572bb259bfcd8f40e361fc619fac07e2f68d3 100644
Binary files a/img/bodywriting/text/default/left_thigh.png and b/img/bodywriting/text/default/left_thigh.png differ
diff --git a/img/bodywriting/text/default/left_thigh_arrow.png b/img/bodywriting/text/default/left_thigh_arrow.png
index 032eba96cf948c8796ebdf34140e2e238bd7864e..66a429f0984d01b6ef1f91ab1809697ca05ba943 100644
Binary files a/img/bodywriting/text/default/left_thigh_arrow.png and b/img/bodywriting/text/default/left_thigh_arrow.png differ
diff --git a/img/bodywriting/text/default/pubic.png b/img/bodywriting/text/default/pubic.png
index ed7f176f6441772664eff13a7f87ee0a63eb3e39..d2a484d55984d58955a7774a34e3589ef206e199 100644
Binary files a/img/bodywriting/text/default/pubic.png and b/img/bodywriting/text/default/pubic.png differ
diff --git a/img/bodywriting/text/default/pubic_arrow.png b/img/bodywriting/text/default/pubic_arrow.png
index c95301af1248e1db9c62030ab19650230998cc6a..63b2d0a2219a87f933840363b3768e7fa761b440 100644
Binary files a/img/bodywriting/text/default/pubic_arrow.png and b/img/bodywriting/text/default/pubic_arrow.png differ
diff --git a/img/bodywriting/text/default/pubic_heart.png b/img/bodywriting/text/default/pubic_heart.png
index e4f9311b7e7d0614d545c6664930c8926a74a36f..b845c845307e2e5bbbc64dba13d22334e09ffd07 100644
Binary files a/img/bodywriting/text/default/pubic_heart.png and b/img/bodywriting/text/default/pubic_heart.png differ
diff --git a/img/bodywriting/text/default/right_cheek.png b/img/bodywriting/text/default/right_cheek.png
index 137178373a78e414801296b2a292e92b10fe5685..62216d02e4ea514a532904327e36bd16474ee9b6 100644
Binary files a/img/bodywriting/text/default/right_cheek.png and b/img/bodywriting/text/default/right_cheek.png differ
diff --git a/img/bodywriting/text/default/right_cheek_arrow.png b/img/bodywriting/text/default/right_cheek_arrow.png
index 2eaa7f78c2e7d1207775d8b1fb37557054a46c84..f562e54fbdb52158ab049152238ad68823203c0e 100644
Binary files a/img/bodywriting/text/default/right_cheek_arrow.png and b/img/bodywriting/text/default/right_cheek_arrow.png differ
diff --git a/img/bodywriting/text/default/right_shoulder.png b/img/bodywriting/text/default/right_shoulder.png
index 246e15e32c256c1424f8a21a49df3f3e4873a74a..6021d5c352e02032025387c9632ee9a86ed028e8 100644
Binary files a/img/bodywriting/text/default/right_shoulder.png and b/img/bodywriting/text/default/right_shoulder.png differ
diff --git a/img/bodywriting/text/default/right_thigh.png b/img/bodywriting/text/default/right_thigh.png
index 264455822afa1a9f47014ad2991f31780d1f0758..ac6d6afa636b5eb65b0f19e97b27a3742828cac8 100644
Binary files a/img/bodywriting/text/default/right_thigh.png and b/img/bodywriting/text/default/right_thigh.png differ
diff --git a/img/bodywriting/text/default/right_thigh_arrow.png b/img/bodywriting/text/default/right_thigh_arrow.png
index f5b416ee2100bf2858e27165fee727a49a3263f8..b22dd696ec631bc281d49c50281ac1045c1eab70 100644
Binary files a/img/bodywriting/text/default/right_thigh_arrow.png and b/img/bodywriting/text/default/right_thigh_arrow.png differ
diff --git a/img/bodywriting/text/five_pound_whore/breasts.png b/img/bodywriting/text/five_pound_whore/breasts.png
index 7e320b1dbdf484b3511a7e83934fcaa66de78214..2a407dbb264f3a5b59c48d72a31411efedabdc5a 100644
Binary files a/img/bodywriting/text/five_pound_whore/breasts.png and b/img/bodywriting/text/five_pound_whore/breasts.png differ
diff --git a/img/bodywriting/text/five_pound_whore/forehead.png b/img/bodywriting/text/five_pound_whore/forehead.png
index f1011f611d9f3edfeba127edb596c697b7f2fcd9..a8fce006c819e3dd4335e427c0e0844345ad2a87 100644
Binary files a/img/bodywriting/text/five_pound_whore/forehead.png and b/img/bodywriting/text/five_pound_whore/forehead.png differ
diff --git a/img/bodywriting/text/five_pound_whore/left_thigh.png b/img/bodywriting/text/five_pound_whore/left_thigh.png
index 6d8cc3f0eebe2ae2fc911f71f13d2c2f36b6e699..ca2d5e4f3c9cd3ed72d9a122a6dce388aae61407 100644
Binary files a/img/bodywriting/text/five_pound_whore/left_thigh.png and b/img/bodywriting/text/five_pound_whore/left_thigh.png differ
diff --git a/img/bodywriting/text/five_pound_whore/pubic.png b/img/bodywriting/text/five_pound_whore/pubic.png
index a95aa74ae743a2a41f02a9830603b5d1631af2b1..013b2d3f4a9ea1cb92a1e89c26453505ea58484e 100644
Binary files a/img/bodywriting/text/five_pound_whore/pubic.png and b/img/bodywriting/text/five_pound_whore/pubic.png differ
diff --git a/img/bodywriting/text/five_pound_whore/right_thigh.png b/img/bodywriting/text/five_pound_whore/right_thigh.png
index 4084ed3b01be80d19a20a67ec31ef418f667ac36..fba13d6950ef5c76294e4424955c6710f88d360e 100644
Binary files a/img/bodywriting/text/five_pound_whore/right_thigh.png and b/img/bodywriting/text/five_pound_whore/right_thigh.png differ
diff --git a/img/bodywriting/text/free_use/breasts.png b/img/bodywriting/text/free_use/breasts.png
index fd35468b1ed9d065bf18484ad052b550f2418f78..24ce13115c786125323fc298f53c26e4e45d5677 100644
Binary files a/img/bodywriting/text/free_use/breasts.png and b/img/bodywriting/text/free_use/breasts.png differ
diff --git a/img/bodywriting/text/free_use/forehead.png b/img/bodywriting/text/free_use/forehead.png
index 74f3af86745ab016109183efe99ed0e2e98d4b54..1661245bc852dc50f3c1d31e2031191140aac120 100644
Binary files a/img/bodywriting/text/free_use/forehead.png and b/img/bodywriting/text/free_use/forehead.png differ
diff --git a/img/bodywriting/text/free_use/left_thigh.png b/img/bodywriting/text/free_use/left_thigh.png
index b717fc8de58fb8f53dca2f92abd207fde1210aa3..c6a756f6f42c7dc82b396cedaff26ab1ee95ae56 100644
Binary files a/img/bodywriting/text/free_use/left_thigh.png and b/img/bodywriting/text/free_use/left_thigh.png differ
diff --git a/img/bodywriting/text/free_use/pubic.png b/img/bodywriting/text/free_use/pubic.png
index 6ecdef6a0444768be36a2db6d5eca95d594d31bf..612c57649c1821052d0b2bf1ad2bfa594ce884e9 100644
Binary files a/img/bodywriting/text/free_use/pubic.png and b/img/bodywriting/text/free_use/pubic.png differ
diff --git a/img/bodywriting/text/free_use/right_thigh.png b/img/bodywriting/text/free_use/right_thigh.png
index 54e8d1a047d92bcae152d3318bb8e7fabe0282a9..36c74c6c01969f157df2114360f386afd7aa47d0 100644
Binary files a/img/bodywriting/text/free_use/right_thigh.png and b/img/bodywriting/text/free_use/right_thigh.png differ
diff --git a/img/bodywriting/text/fuck_me/breasts.png b/img/bodywriting/text/fuck_me/breasts.png
index f6a50bc4f4977307aef3fa9c9a7f9d11a2e70f05..14f3ace3d1389a6c930c786eb2b0689da80ef352 100644
Binary files a/img/bodywriting/text/fuck_me/breasts.png and b/img/bodywriting/text/fuck_me/breasts.png differ
diff --git a/img/bodywriting/text/fuck_me/forehead.png b/img/bodywriting/text/fuck_me/forehead.png
index 623db16ebf958bae0e901270cf9fd6e1b96f10a3..8fe0c60817195cd83703c03c6970662b79ae5147 100644
Binary files a/img/bodywriting/text/fuck_me/forehead.png and b/img/bodywriting/text/fuck_me/forehead.png differ
diff --git a/img/bodywriting/text/fuck_me/left_thigh.png b/img/bodywriting/text/fuck_me/left_thigh.png
index 3af2ad405c5dc4c7d786068fe3ccf25b45ddef8f..367c96516df4f1be533aa7d0aa9ff6a268f07f05 100644
Binary files a/img/bodywriting/text/fuck_me/left_thigh.png and b/img/bodywriting/text/fuck_me/left_thigh.png differ
diff --git a/img/bodywriting/text/fuck_me/pubic.png b/img/bodywriting/text/fuck_me/pubic.png
index 2d70c2eac5b4ca9d4b876bd70cb042247e6d8654..09091fa9bba2d64db55ce200c70249f8a11b95da 100644
Binary files a/img/bodywriting/text/fuck_me/pubic.png and b/img/bodywriting/text/fuck_me/pubic.png differ
diff --git a/img/bodywriting/text/fuck_me/right_thigh.png b/img/bodywriting/text/fuck_me/right_thigh.png
index 7a3fdee72fe311ee63664b5a2e3046957af116af..5fe0606f4c705a6a8debd05133dcbac5b3fa62c5 100644
Binary files a/img/bodywriting/text/fuck_me/right_thigh.png and b/img/bodywriting/text/fuck_me/right_thigh.png differ
diff --git a/img/bodywriting/text/fucktoy/breasts.png b/img/bodywriting/text/fucktoy/breasts.png
index 5d9cc37365089b30358f83820f851fa3f2ca4195..1552c89c15fa147e69cfcccde8f6cc414ccd7109 100644
Binary files a/img/bodywriting/text/fucktoy/breasts.png and b/img/bodywriting/text/fucktoy/breasts.png differ
diff --git a/img/bodywriting/text/fucktoy/forehead.png b/img/bodywriting/text/fucktoy/forehead.png
index 0e01f8eca896fe81d759d8957c73c4929a326d57..1ef35828c6787658246ba7b0a24fcb7ae06be608 100644
Binary files a/img/bodywriting/text/fucktoy/forehead.png and b/img/bodywriting/text/fucktoy/forehead.png differ
diff --git a/img/bodywriting/text/fucktoy/left_thigh.png b/img/bodywriting/text/fucktoy/left_thigh.png
index 2bd6d0030c1ed7684952915f38c491e53c9c3740..436387e0bd38781de81e6e5e2a9e31b90967adcc 100644
Binary files a/img/bodywriting/text/fucktoy/left_thigh.png and b/img/bodywriting/text/fucktoy/left_thigh.png differ
diff --git a/img/bodywriting/text/fucktoy/pubic.png b/img/bodywriting/text/fucktoy/pubic.png
index e2d4c6784a77fa4226c9d7b04724d790fa8c40c0..310ca8a285e7c3feec0db843930ddb2f039702d6 100644
Binary files a/img/bodywriting/text/fucktoy/pubic.png and b/img/bodywriting/text/fucktoy/pubic.png differ
diff --git a/img/bodywriting/text/fucktoy/right_thigh.png b/img/bodywriting/text/fucktoy/right_thigh.png
index 6f8b32efebed3e002f806f57e8c945dd6ba52482..65a1f3dccd39814b3b6fdbba3b489b8e946a9c73 100644
Binary files a/img/bodywriting/text/fucktoy/right_thigh.png and b/img/bodywriting/text/fucktoy/right_thigh.png differ
diff --git a/img/bodywriting/text/hit_me/breasts.png b/img/bodywriting/text/hit_me/breasts.png
index 62feb0786e0c2af22bfc2ffd03a8265ea095f7f8..17b82f0f4e47cf6f1b97ec64856a86b7c684b438 100644
Binary files a/img/bodywriting/text/hit_me/breasts.png and b/img/bodywriting/text/hit_me/breasts.png differ
diff --git a/img/bodywriting/text/hit_me/forehead.png b/img/bodywriting/text/hit_me/forehead.png
index 3be9bba14b4d7e214d401c8b4cb357b8dd5759e6..58c8e103300aae6188b709ba5c6f44c3754243d0 100644
Binary files a/img/bodywriting/text/hit_me/forehead.png and b/img/bodywriting/text/hit_me/forehead.png differ
diff --git a/img/bodywriting/text/hit_me/left_thigh.png b/img/bodywriting/text/hit_me/left_thigh.png
index df038238b3d798b2104f493d8aadbaabb733125b..2871feb989be754b3a797c67b73d141b5c800e96 100644
Binary files a/img/bodywriting/text/hit_me/left_thigh.png and b/img/bodywriting/text/hit_me/left_thigh.png differ
diff --git a/img/bodywriting/text/hit_me/pubic.png b/img/bodywriting/text/hit_me/pubic.png
index 357cb2f63c8a158c41364fb98b891356eb50e1e9..9cecf24063925c8e69b867d4f4b9c56ad7dc00df 100644
Binary files a/img/bodywriting/text/hit_me/pubic.png and b/img/bodywriting/text/hit_me/pubic.png differ
diff --git a/img/bodywriting/text/hit_me/right_thigh.png b/img/bodywriting/text/hit_me/right_thigh.png
index 35246cf809f4e6c55f683e5f9562a384967907bd..dccc541b204df55370dc690e4371af4a9c2534c8 100644
Binary files a/img/bodywriting/text/hit_me/right_thigh.png and b/img/bodywriting/text/hit_me/right_thigh.png differ
diff --git a/img/bodywriting/text/hot/breasts.png b/img/bodywriting/text/hot/breasts.png
index e7e557253e7dcac48d135b04c9d363c1f93979a2..8af291c85598c14ab054c1033ecb48889f572aaf 100644
Binary files a/img/bodywriting/text/hot/breasts.png and b/img/bodywriting/text/hot/breasts.png differ
diff --git a/img/bodywriting/text/hot/forehead.png b/img/bodywriting/text/hot/forehead.png
index 830b888087e70ac73545649e75440b7ac751bb25..a97fe224536721e4dc68ca282057c661dfc8e6e7 100644
Binary files a/img/bodywriting/text/hot/forehead.png and b/img/bodywriting/text/hot/forehead.png differ
diff --git a/img/bodywriting/text/hot/left_thigh.png b/img/bodywriting/text/hot/left_thigh.png
index 17b18f906f8c6afdf583a496228217471fae7d4b..536b5b4c8705d58247b2bcbc9c58871ca9efdd09 100644
Binary files a/img/bodywriting/text/hot/left_thigh.png and b/img/bodywriting/text/hot/left_thigh.png differ
diff --git a/img/bodywriting/text/hot/pubic.png b/img/bodywriting/text/hot/pubic.png
index 390c9cd46441959e26bdd1cc9fac25a2b0fafdfb..d965f4c4462c3641d2098dd056ad5c8bab7be1e9 100644
Binary files a/img/bodywriting/text/hot/pubic.png and b/img/bodywriting/text/hot/pubic.png differ
diff --git a/img/bodywriting/text/hot/right_thigh.png b/img/bodywriting/text/hot/right_thigh.png
index fb22bdb0750ff4f0c7e3b6ecd858b1fce25476ab..6ae5ba48a9c032925436d377632875e571a634f9 100644
Binary files a/img/bodywriting/text/hot/right_thigh.png and b/img/bodywriting/text/hot/right_thigh.png differ
diff --git a/img/bodywriting/text/hurt_me/breasts.png b/img/bodywriting/text/hurt_me/breasts.png
index b0b9b301df431de0d1cb67a9670600b3fc375618..6bdaa99beacbbc785f79b17b8a94cb06ec26b235 100644
Binary files a/img/bodywriting/text/hurt_me/breasts.png and b/img/bodywriting/text/hurt_me/breasts.png differ
diff --git a/img/bodywriting/text/hurt_me/forehead.png b/img/bodywriting/text/hurt_me/forehead.png
index d6dc265c5aec166dcd87a7f8a0de5d2bb034a76f..4f22444e5cb882cbee645717f8a1b6bc90293927 100644
Binary files a/img/bodywriting/text/hurt_me/forehead.png and b/img/bodywriting/text/hurt_me/forehead.png differ
diff --git a/img/bodywriting/text/hurt_me/left_thigh.png b/img/bodywriting/text/hurt_me/left_thigh.png
index a2f6ef5541352d3e88088cac4be146bd3dacff66..e432a562a1973c09dcc9f4d5b8f3b319dc45f27a 100644
Binary files a/img/bodywriting/text/hurt_me/left_thigh.png and b/img/bodywriting/text/hurt_me/left_thigh.png differ
diff --git a/img/bodywriting/text/hurt_me/pubic.png b/img/bodywriting/text/hurt_me/pubic.png
index e24ec9761ddaf5e18b36cac26799789dff217716..90a2fbc614cd903b293b47c12e1fe3b45e4cbff9 100644
Binary files a/img/bodywriting/text/hurt_me/pubic.png and b/img/bodywriting/text/hurt_me/pubic.png differ
diff --git a/img/bodywriting/text/hurt_me/right_thigh.png b/img/bodywriting/text/hurt_me/right_thigh.png
index 2ec17eede1dfbe095a802693790b5d1ca4380abe..f1bd59e845801712fc7d77914c361ec1724bc57e 100644
Binary files a/img/bodywriting/text/hurt_me/right_thigh.png and b/img/bodywriting/text/hurt_me/right_thigh.png differ
diff --git a/img/bodywriting/text/no_means_yes/breasts.png b/img/bodywriting/text/no_means_yes/breasts.png
index 995afbf23ec11bf10b90fbcdad72852225aa0000..123ef0811e8ffa5733e05505c4761f5d568e6241 100644
Binary files a/img/bodywriting/text/no_means_yes/breasts.png and b/img/bodywriting/text/no_means_yes/breasts.png differ
diff --git a/img/bodywriting/text/no_means_yes/forehead.png b/img/bodywriting/text/no_means_yes/forehead.png
index f3c0f745c85d723a4dea16c467f55ed420026046..614b6b8a661a42ebd568d5e18a6543002ab32b8f 100644
Binary files a/img/bodywriting/text/no_means_yes/forehead.png and b/img/bodywriting/text/no_means_yes/forehead.png differ
diff --git a/img/bodywriting/text/no_means_yes/left_thigh.png b/img/bodywriting/text/no_means_yes/left_thigh.png
index eec53301d34fc55300834149eb572dc6e77b2876..62b268fb6d55eb0d3006ea0b45b722579ef7f730 100644
Binary files a/img/bodywriting/text/no_means_yes/left_thigh.png and b/img/bodywriting/text/no_means_yes/left_thigh.png differ
diff --git a/img/bodywriting/text/no_means_yes/pubic.png b/img/bodywriting/text/no_means_yes/pubic.png
index c1f073f1c0dd412d47b1505c5b66eff0f24227ac..86b969b4f0521cb65f2a181825eeee79e3d8a2bd 100644
Binary files a/img/bodywriting/text/no_means_yes/pubic.png and b/img/bodywriting/text/no_means_yes/pubic.png differ
diff --git a/img/bodywriting/text/no_means_yes/right_thigh.png b/img/bodywriting/text/no_means_yes/right_thigh.png
index d32317e9d4dca36aae274c13f899d31e5f5db015..b1eea538f2e4d40aaa4de9b22a0870e6ce9d9ea7 100644
Binary files a/img/bodywriting/text/no_means_yes/right_thigh.png and b/img/bodywriting/text/no_means_yes/right_thigh.png differ
diff --git a/img/bodywriting/text/one_hundred_pound/breasts.png b/img/bodywriting/text/one_hundred_pound/breasts.png
index fc050cb5455c3e10c95c8795181430426afab9a8..51a577df1902105c8d1dfe8159c946df7c3ab886 100644
Binary files a/img/bodywriting/text/one_hundred_pound/breasts.png and b/img/bodywriting/text/one_hundred_pound/breasts.png differ
diff --git a/img/bodywriting/text/one_hundred_pound/forehead.png b/img/bodywriting/text/one_hundred_pound/forehead.png
index 5f64f913f51d8fd734822a6a32f4c1c7eccd4f21..4666a964c06d68a36cc307bf8f7ef0e743a82044 100644
Binary files a/img/bodywriting/text/one_hundred_pound/forehead.png and b/img/bodywriting/text/one_hundred_pound/forehead.png differ
diff --git a/img/bodywriting/text/one_hundred_pound/left_thigh.png b/img/bodywriting/text/one_hundred_pound/left_thigh.png
index acbf61d840db2e4a7389a8e2e6202288a2f42692..0f683ad7e880f4ce9fc3e99a8cf1f3226442a674 100644
Binary files a/img/bodywriting/text/one_hundred_pound/left_thigh.png and b/img/bodywriting/text/one_hundred_pound/left_thigh.png differ
diff --git a/img/bodywriting/text/one_hundred_pound/pubic.png b/img/bodywriting/text/one_hundred_pound/pubic.png
index 46fa0129a3c341c4170ae970484ce730bc41df22..f41dd551cbea4776c8d769f2c77e2c9ee15e74f1 100644
Binary files a/img/bodywriting/text/one_hundred_pound/pubic.png and b/img/bodywriting/text/one_hundred_pound/pubic.png differ
diff --git a/img/bodywriting/text/one_hundred_pound/right_thigh.png b/img/bodywriting/text/one_hundred_pound/right_thigh.png
index a23140185cddd8ff3183bbe36691929b437017e6..89526f12d5a40bc1aa25b450285133cf40f19b8e 100644
Binary files a/img/bodywriting/text/one_hundred_pound/right_thigh.png and b/img/bodywriting/text/one_hundred_pound/right_thigh.png differ
diff --git a/img/bodywriting/text/public_toy/breasts.png b/img/bodywriting/text/public_toy/breasts.png
index 7486c068c1eb2cf60e0ab85729530d7afed1c1a0..baab0b1505453354615ed12c4fec0a6008393aa0 100644
Binary files a/img/bodywriting/text/public_toy/breasts.png and b/img/bodywriting/text/public_toy/breasts.png differ
diff --git a/img/bodywriting/text/public_toy/forehead.png b/img/bodywriting/text/public_toy/forehead.png
index 1a2ad2d0e2a04e025905ad2540ee83b41ef5ef3b..be96c6468ed8d7aedf0973c76943e521964b08a3 100644
Binary files a/img/bodywriting/text/public_toy/forehead.png and b/img/bodywriting/text/public_toy/forehead.png differ
diff --git a/img/bodywriting/text/public_toy/left_thigh.png b/img/bodywriting/text/public_toy/left_thigh.png
index 142366bfd6e2a287c1c7144a35a89fc0193893e0..f464ec6236a09025f143efc437388385e4bd3ae3 100644
Binary files a/img/bodywriting/text/public_toy/left_thigh.png and b/img/bodywriting/text/public_toy/left_thigh.png differ
diff --git a/img/bodywriting/text/public_toy/pubic.png b/img/bodywriting/text/public_toy/pubic.png
index 66f809ed58c8be8659ac4c98d8e8962592491abd..c2768f0c810f39c3a1d2a5672cc253a953aae4f5 100644
Binary files a/img/bodywriting/text/public_toy/pubic.png and b/img/bodywriting/text/public_toy/pubic.png differ
diff --git a/img/bodywriting/text/public_toy/right_thigh.png b/img/bodywriting/text/public_toy/right_thigh.png
index c2186b38bbc797619d02e6d0e97d03f8b9c3f167..63e343e568d2a0d04a26816cd0d5fc6ff9382d5c 100644
Binary files a/img/bodywriting/text/public_toy/right_thigh.png and b/img/bodywriting/text/public_toy/right_thigh.png differ
diff --git a/img/bodywriting/text/rape_bait/breasts.png b/img/bodywriting/text/rape_bait/breasts.png
index f29d8583a92af6d91e6e28f7518a69b8b85d7b1e..9911435e44ee7f005d30f5159b8586f92ce8426d 100644
Binary files a/img/bodywriting/text/rape_bait/breasts.png and b/img/bodywriting/text/rape_bait/breasts.png differ
diff --git a/img/bodywriting/text/rape_bait/forehead.png b/img/bodywriting/text/rape_bait/forehead.png
index dd0cec5669d50e4d9c2b06c16152df5c2bafb6a9..866f2bddb0a3c100b2bac1035b328d88b45bd435 100644
Binary files a/img/bodywriting/text/rape_bait/forehead.png and b/img/bodywriting/text/rape_bait/forehead.png differ
diff --git a/img/bodywriting/text/rape_bait/left_thigh.png b/img/bodywriting/text/rape_bait/left_thigh.png
index 5da864ac90b6f0a17c2a62c24bfc99f05c590743..6ce9ea0b04a5bf97045c8e146eae2f5c9117b71e 100644
Binary files a/img/bodywriting/text/rape_bait/left_thigh.png and b/img/bodywriting/text/rape_bait/left_thigh.png differ
diff --git a/img/bodywriting/text/rape_bait/pubic.png b/img/bodywriting/text/rape_bait/pubic.png
index b82d70c12f6b502ce667469bf32ce52e795dd303..cc0bf87d6cb8c655b050035fa69314c957b3a864 100644
Binary files a/img/bodywriting/text/rape_bait/pubic.png and b/img/bodywriting/text/rape_bait/pubic.png differ
diff --git a/img/bodywriting/text/rape_bait/right_thigh.png b/img/bodywriting/text/rape_bait/right_thigh.png
index 8f524ac8ca6bac8b7fe943e10c389b68adcd2d2c..77ef2380a7b250b71a9f084e3cd7daf0a2187859 100644
Binary files a/img/bodywriting/text/rape_bait/right_thigh.png and b/img/bodywriting/text/rape_bait/right_thigh.png differ
diff --git a/img/bodywriting/text/rape_me/breasts.png b/img/bodywriting/text/rape_me/breasts.png
index 5aec4cf934a2754eb6d2765884f3996b22d576ff..f2fdf50c9c6e73c28afa948c2323810d39f8d02f 100644
Binary files a/img/bodywriting/text/rape_me/breasts.png and b/img/bodywriting/text/rape_me/breasts.png differ
diff --git a/img/bodywriting/text/rape_me/forehead.png b/img/bodywriting/text/rape_me/forehead.png
index 88d11c6603ca6a2ef54a37e8c04d168bba467ad0..cd290276b59f0abd3a5e2c5adcd4319098d6d4f9 100644
Binary files a/img/bodywriting/text/rape_me/forehead.png and b/img/bodywriting/text/rape_me/forehead.png differ
diff --git a/img/bodywriting/text/rape_me/left_thigh.png b/img/bodywriting/text/rape_me/left_thigh.png
index e490f8fa8b96863c68bf843849eb0405b7eaeb64..de69ded893f5662f5afd35288dd8ce0a9c853202 100644
Binary files a/img/bodywriting/text/rape_me/left_thigh.png and b/img/bodywriting/text/rape_me/left_thigh.png differ
diff --git a/img/bodywriting/text/rape_me/pubic.png b/img/bodywriting/text/rape_me/pubic.png
index d8a20129c6030f1902df27bace5c4d8c1589b753..c9cca0dc88c446ad21ccec500d52f4e6261625ff 100644
Binary files a/img/bodywriting/text/rape_me/pubic.png and b/img/bodywriting/text/rape_me/pubic.png differ
diff --git a/img/bodywriting/text/rape_me/right_thigh.png b/img/bodywriting/text/rape_me/right_thigh.png
index b247772edcd1e68e2f10479afc3297e6501b7678..323fab71f312a1522f292d510afbe18c02782b32 100644
Binary files a/img/bodywriting/text/rape_me/right_thigh.png and b/img/bodywriting/text/rape_me/right_thigh.png differ
diff --git a/img/bodywriting/text/rapetoy/breasts.png b/img/bodywriting/text/rapetoy/breasts.png
index 02f37bba531e3664d09aa82cf6aaa84daa1dafb8..17d3951a7f56aae657078d20776d0a9cbab8f11a 100644
Binary files a/img/bodywriting/text/rapetoy/breasts.png and b/img/bodywriting/text/rapetoy/breasts.png differ
diff --git a/img/bodywriting/text/rapetoy/forehead.png b/img/bodywriting/text/rapetoy/forehead.png
index da58e6c216d86cdef26c9ec247ccbaef1bc219a0..cd290276b59f0abd3a5e2c5adcd4319098d6d4f9 100644
Binary files a/img/bodywriting/text/rapetoy/forehead.png and b/img/bodywriting/text/rapetoy/forehead.png differ
diff --git a/img/bodywriting/text/rapetoy/left_thigh.png b/img/bodywriting/text/rapetoy/left_thigh.png
index 38bbdde5771ca7f2ddc9e8e21cce3c5ad2bfb2f3..6ce9ea0b04a5bf97045c8e146eae2f5c9117b71e 100644
Binary files a/img/bodywriting/text/rapetoy/left_thigh.png and b/img/bodywriting/text/rapetoy/left_thigh.png differ
diff --git a/img/bodywriting/text/rapetoy/pubic.png b/img/bodywriting/text/rapetoy/pubic.png
index 3f780efab968daad3cb3b655aea05d0cacd63b59..4ffe630930ad35412d5b49e7e7be4c8a7c7f8c3b 100644
Binary files a/img/bodywriting/text/rapetoy/pubic.png and b/img/bodywriting/text/rapetoy/pubic.png differ
diff --git a/img/bodywriting/text/rapetoy/right_thigh.png b/img/bodywriting/text/rapetoy/right_thigh.png
index fb882dd339d8b6bec791ee67051250364654b0ff..f63233c11ae777903f097832b248821944473a5c 100644
Binary files a/img/bodywriting/text/rapetoy/right_thigh.png and b/img/bodywriting/text/rapetoy/right_thigh.png differ
diff --git a/img/bodywriting/text/robin_and_i/breasts.png b/img/bodywriting/text/robin_and_i/breasts.png
index d69a418752f14c90e5c02afc7f85734553a3d7fd..8ba25830785083ddf7a2ec96f68de5470ad0ca87 100644
Binary files a/img/bodywriting/text/robin_and_i/breasts.png and b/img/bodywriting/text/robin_and_i/breasts.png differ
diff --git a/img/bodywriting/text/robin_and_i/forehead.png b/img/bodywriting/text/robin_and_i/forehead.png
index ab7b2e7f69c2f6964abe16cbcf861a46b8bd530c..c0997d7675b793eca156ccc7b4eaedc62a12ae48 100644
Binary files a/img/bodywriting/text/robin_and_i/forehead.png and b/img/bodywriting/text/robin_and_i/forehead.png differ
diff --git a/img/bodywriting/text/robin_and_i/left_thigh.png b/img/bodywriting/text/robin_and_i/left_thigh.png
index 55d9c135112e73519d609ab8a91d8138d7ecc709..0e4e3e7a9e251724ce2d0689976d965368d12101 100644
Binary files a/img/bodywriting/text/robin_and_i/left_thigh.png and b/img/bodywriting/text/robin_and_i/left_thigh.png differ
diff --git a/img/bodywriting/text/robin_and_i/pubic.png b/img/bodywriting/text/robin_and_i/pubic.png
index 6850a1fa53698947abe85b2ac476bba93e323d13..ba3df035d88f9950c0a69a4e61defe79090b1bb6 100644
Binary files a/img/bodywriting/text/robin_and_i/pubic.png and b/img/bodywriting/text/robin_and_i/pubic.png differ
diff --git a/img/bodywriting/text/robin_and_i/right_thigh.png b/img/bodywriting/text/robin_and_i/right_thigh.png
index c65d8b807499d45212065db29ef9394acf618c01..d11d959873088cfd639f456d33925e04a650a0db 100644
Binary files a/img/bodywriting/text/robin_and_i/right_thigh.png and b/img/bodywriting/text/robin_and_i/right_thigh.png differ
diff --git a/img/bodywriting/text/robins_boyfriend/breasts.png b/img/bodywriting/text/robins_boyfriend/breasts.png
index f9785077279f77f5e7ff049017373cc054303b2a..6bdf5bc3690359115115a443db36e99d768964d1 100644
Binary files a/img/bodywriting/text/robins_boyfriend/breasts.png and b/img/bodywriting/text/robins_boyfriend/breasts.png differ
diff --git a/img/bodywriting/text/robins_boyfriend/forehead.png b/img/bodywriting/text/robins_boyfriend/forehead.png
index 2d255a399a85b43e4dd3c53f467237b5890564fc..778e0ad7ebc13097525d5a868d036798e885334f 100644
Binary files a/img/bodywriting/text/robins_boyfriend/forehead.png and b/img/bodywriting/text/robins_boyfriend/forehead.png differ
diff --git a/img/bodywriting/text/robins_boyfriend/left_thigh.png b/img/bodywriting/text/robins_boyfriend/left_thigh.png
index 12e74b24bbc0821cc42f5425187a2693ca703c4e..4910ee3b551784fd263666a715db509ca0462352 100644
Binary files a/img/bodywriting/text/robins_boyfriend/left_thigh.png and b/img/bodywriting/text/robins_boyfriend/left_thigh.png differ
diff --git a/img/bodywriting/text/robins_boyfriend/pubic.png b/img/bodywriting/text/robins_boyfriend/pubic.png
index 099ae998368f37b8abc56b777d6c168049ca7701..ccd7ac5dfb2aa2a273faf09d58b17d4a9593ecbb 100644
Binary files a/img/bodywriting/text/robins_boyfriend/pubic.png and b/img/bodywriting/text/robins_boyfriend/pubic.png differ
diff --git a/img/bodywriting/text/robins_boyfriend/right_thigh.png b/img/bodywriting/text/robins_boyfriend/right_thigh.png
index 5c6497ed633e2da4bad257470e50101d79bce621..d1e9219c21058df441a5b53ee4dbc47e9cb49b28 100644
Binary files a/img/bodywriting/text/robins_boyfriend/right_thigh.png and b/img/bodywriting/text/robins_boyfriend/right_thigh.png differ
diff --git a/img/bodywriting/text/robins_girlfriend/breasts.png b/img/bodywriting/text/robins_girlfriend/breasts.png
index a13e4c543e060047fdeaa6b9c8fb868f306c40d0..9e544f458d2ffb51bb1af87b7988e50440717eec 100644
Binary files a/img/bodywriting/text/robins_girlfriend/breasts.png and b/img/bodywriting/text/robins_girlfriend/breasts.png differ
diff --git a/img/bodywriting/text/robins_girlfriend/forehead.png b/img/bodywriting/text/robins_girlfriend/forehead.png
index 27dc0f402c9d92284da7d415b9cdf0104dea31ca..5bb2796721fc9d088ab675b5b627ff85cd1cc446 100644
Binary files a/img/bodywriting/text/robins_girlfriend/forehead.png and b/img/bodywriting/text/robins_girlfriend/forehead.png differ
diff --git a/img/bodywriting/text/robins_girlfriend/left_thigh.png b/img/bodywriting/text/robins_girlfriend/left_thigh.png
index f6f28d7ee07fe29a98ef61f6aa5f9b330e0f1894..52a8ffe7cb1bcced81b07dc11cb8b213df057121 100644
Binary files a/img/bodywriting/text/robins_girlfriend/left_thigh.png and b/img/bodywriting/text/robins_girlfriend/left_thigh.png differ
diff --git a/img/bodywriting/text/robins_girlfriend/pubic.png b/img/bodywriting/text/robins_girlfriend/pubic.png
index 62eb25fa886670e6b7d9a89b95cd7b155ddef3ba..dc89cb7523db9757de5b6606e5ea68fd83445c8a 100644
Binary files a/img/bodywriting/text/robins_girlfriend/pubic.png and b/img/bodywriting/text/robins_girlfriend/pubic.png differ
diff --git a/img/bodywriting/text/robins_girlfriend/right_thigh.png b/img/bodywriting/text/robins_girlfriend/right_thigh.png
index 5454e56e5bc432b569d6a80079172627c4deada9..f7d271e758e93f59b3c2d6e35629ab2dd2b6b82b 100644
Binary files a/img/bodywriting/text/robins_girlfriend/right_thigh.png and b/img/bodywriting/text/robins_girlfriend/right_thigh.png differ
diff --git a/img/bodywriting/text/sinner/breasts.png b/img/bodywriting/text/sinner/breasts.png
index 68f316e1dc584f82cc2595e2610673719754b654..f07ece78475605307716af4924f4fbd378d473ee 100644
Binary files a/img/bodywriting/text/sinner/breasts.png and b/img/bodywriting/text/sinner/breasts.png differ
diff --git a/img/bodywriting/text/sinner/forehead.png b/img/bodywriting/text/sinner/forehead.png
index bfe14a50bcedab1e5482715ea2b9316bff1ae80a..d0ffb103004c554a4068d01af16eb71b0c23201f 100644
Binary files a/img/bodywriting/text/sinner/forehead.png and b/img/bodywriting/text/sinner/forehead.png differ
diff --git a/img/bodywriting/text/sinner/left_thigh.png b/img/bodywriting/text/sinner/left_thigh.png
index b23826a4f9893e6d9f0d40095d623bec5f4ef479..f51c779645025c93324a24b77a05f3d7aac215de 100644
Binary files a/img/bodywriting/text/sinner/left_thigh.png and b/img/bodywriting/text/sinner/left_thigh.png differ
diff --git a/img/bodywriting/text/sinner/pubic.png b/img/bodywriting/text/sinner/pubic.png
index e501844324af8f0e94dbc52dffb20746cb3dfb62..4a3e83998868cee6e8ae51c88441525c20556f75 100644
Binary files a/img/bodywriting/text/sinner/pubic.png and b/img/bodywriting/text/sinner/pubic.png differ
diff --git a/img/bodywriting/text/sinner/right_thigh.png b/img/bodywriting/text/sinner/right_thigh.png
index eac12284a61816c803755687e52b091aa22292fa..dc85a7cf72ba7aab75aae804fd405c6b14899d1c 100644
Binary files a/img/bodywriting/text/sinner/right_thigh.png and b/img/bodywriting/text/sinner/right_thigh.png differ
diff --git a/img/bodywriting/text/slave/breasts.png b/img/bodywriting/text/slave/breasts.png
index 489411ed8c68a58220e40e2a7612ff846a5b1954..665418d5d89a9ee18d25396f68dcdb28cf5be7a8 100644
Binary files a/img/bodywriting/text/slave/breasts.png and b/img/bodywriting/text/slave/breasts.png differ
diff --git a/img/bodywriting/text/slave/forehead.png b/img/bodywriting/text/slave/forehead.png
index f46171ffd0462324d881e2bdfbd621623455e974..dfb7543911888f5ec87006411d7baa7c45037bf6 100644
Binary files a/img/bodywriting/text/slave/forehead.png and b/img/bodywriting/text/slave/forehead.png differ
diff --git a/img/bodywriting/text/slave/left_thigh.png b/img/bodywriting/text/slave/left_thigh.png
index a81b52c3961ce9faf884c00f1328cc59d77731cb..4cad80ecb6b5ef36fa4616d564a9674b00218b67 100644
Binary files a/img/bodywriting/text/slave/left_thigh.png and b/img/bodywriting/text/slave/left_thigh.png differ
diff --git a/img/bodywriting/text/slave/pubic.png b/img/bodywriting/text/slave/pubic.png
index ba333326835c36b9fd9ad144dd556fc43c10c57c..55561657d404f0603e0d1265aebde8d480f0970d 100644
Binary files a/img/bodywriting/text/slave/pubic.png and b/img/bodywriting/text/slave/pubic.png differ
diff --git a/img/bodywriting/text/slave/right_thigh.png b/img/bodywriting/text/slave/right_thigh.png
index 08eb147edc98dc708406c40b7da6a6f4051744c7..00b12d0c2a2e8dce98267ea9e306f801d32d3c04 100644
Binary files a/img/bodywriting/text/slave/right_thigh.png and b/img/bodywriting/text/slave/right_thigh.png differ
diff --git a/img/bodywriting/text/slut/breasts.png b/img/bodywriting/text/slut/breasts.png
index 197e71232e5aef9b162ec3f88ff30eebd1fc7979..6e760cd771e0bea6b1463a1b01503a4ebefe5e3c 100644
Binary files a/img/bodywriting/text/slut/breasts.png and b/img/bodywriting/text/slut/breasts.png differ
diff --git a/img/bodywriting/text/slut/forehead.png b/img/bodywriting/text/slut/forehead.png
index ca2b44bbc892139affb4205cf1bbcbcab746b0f9..43d0beee1766a561513d8f78c3ae3ba6a98c9dc5 100644
Binary files a/img/bodywriting/text/slut/forehead.png and b/img/bodywriting/text/slut/forehead.png differ
diff --git a/img/bodywriting/text/slut/left_thigh.png b/img/bodywriting/text/slut/left_thigh.png
index 3c387ecb3a2995ad5c08cf87f4e36c4c250e860b..98b9f6ea57d785522751cbbb475e2b890915893a 100644
Binary files a/img/bodywriting/text/slut/left_thigh.png and b/img/bodywriting/text/slut/left_thigh.png differ
diff --git a/img/bodywriting/text/slut/pubic.png b/img/bodywriting/text/slut/pubic.png
index 82e7c65eed3ba2ff89e048b899f7151e536f0990..e8db6da566e2ad28b64a2509e258755c67071c21 100644
Binary files a/img/bodywriting/text/slut/pubic.png and b/img/bodywriting/text/slut/pubic.png differ
diff --git a/img/bodywriting/text/slut/right_thigh.png b/img/bodywriting/text/slut/right_thigh.png
index aac3327b2781bdaffd069d313c0072551b4a7724..7edf3a84890787b20d61104ab93d9171b3438d62 100644
Binary files a/img/bodywriting/text/slut/right_thigh.png and b/img/bodywriting/text/slut/right_thigh.png differ
diff --git a/img/bodywriting/text/ten_pound_a_pop/breasts.png b/img/bodywriting/text/ten_pound_a_pop/breasts.png
index 88ae22dc86368ddbebff03ed7bc1dd076eb858b8..66f7870e03c4f2b885d3f20c97dfe2b54418359f 100644
Binary files a/img/bodywriting/text/ten_pound_a_pop/breasts.png and b/img/bodywriting/text/ten_pound_a_pop/breasts.png differ
diff --git a/img/bodywriting/text/ten_pound_a_pop/forehead.png b/img/bodywriting/text/ten_pound_a_pop/forehead.png
index 3651898d164016dafc679b1c208ac7fa891698b1..985e7e8203a90817cd4c73dd01feac0d60d8dd15 100644
Binary files a/img/bodywriting/text/ten_pound_a_pop/forehead.png and b/img/bodywriting/text/ten_pound_a_pop/forehead.png differ
diff --git a/img/bodywriting/text/ten_pound_a_pop/left_thigh.png b/img/bodywriting/text/ten_pound_a_pop/left_thigh.png
index 3f518efd92aefd4fb4f1218f11af32fc75dc6d2b..65fc6043f8cd319211a0c7385d650081a6eaeb0e 100644
Binary files a/img/bodywriting/text/ten_pound_a_pop/left_thigh.png and b/img/bodywriting/text/ten_pound_a_pop/left_thigh.png differ
diff --git a/img/bodywriting/text/ten_pound_a_pop/pubic.png b/img/bodywriting/text/ten_pound_a_pop/pubic.png
index ea35a9df0ec0bfff0d7bf699e3adacff7bea0340..3de350309a7a43cfb229ed39caadcb5f7a33bbc6 100644
Binary files a/img/bodywriting/text/ten_pound_a_pop/pubic.png and b/img/bodywriting/text/ten_pound_a_pop/pubic.png differ
diff --git a/img/bodywriting/text/ten_pound_a_pop/right_thigh.png b/img/bodywriting/text/ten_pound_a_pop/right_thigh.png
index 52fbc7c0a91a38b376605771f701e5c14d9e27fd..734c1b13d9ba560ecbb37770ed9338f742724b0e 100644
Binary files a/img/bodywriting/text/ten_pound_a_pop/right_thigh.png and b/img/bodywriting/text/ten_pound_a_pop/right_thigh.png differ
diff --git a/img/bodywriting/text/twenty_five_pound_per_fuck/breasts.png b/img/bodywriting/text/twenty_five_pound_per_fuck/breasts.png
index a7877878931a7fffe4f64ae1df9441ee9dd689bf..6690442a800c176e3a4a3701b483cc9e5d183077 100644
Binary files a/img/bodywriting/text/twenty_five_pound_per_fuck/breasts.png and b/img/bodywriting/text/twenty_five_pound_per_fuck/breasts.png differ
diff --git a/img/bodywriting/text/twenty_five_pound_per_fuck/forehead.png b/img/bodywriting/text/twenty_five_pound_per_fuck/forehead.png
index 0eb125b1419d027d255f31b858c97f907da7aa9f..4efc1684a0b51fddd451aa8a7edb15eb48c6d2ca 100644
Binary files a/img/bodywriting/text/twenty_five_pound_per_fuck/forehead.png and b/img/bodywriting/text/twenty_five_pound_per_fuck/forehead.png differ
diff --git a/img/bodywriting/text/twenty_five_pound_per_fuck/left_thigh.png b/img/bodywriting/text/twenty_five_pound_per_fuck/left_thigh.png
index 9ef951edde31c03a6b32aea21728d360782771dd..5c6dba5d25ce5a7caccff5bb9dcd2baaf641fe40 100644
Binary files a/img/bodywriting/text/twenty_five_pound_per_fuck/left_thigh.png and b/img/bodywriting/text/twenty_five_pound_per_fuck/left_thigh.png differ
diff --git a/img/bodywriting/text/twenty_five_pound_per_fuck/pubic.png b/img/bodywriting/text/twenty_five_pound_per_fuck/pubic.png
index 18904137c09ee03dfe46e94fd10da22034d11fc6..4f6f0b7205ce5a9b9e4704fa2ddfce3b1c6daac0 100644
Binary files a/img/bodywriting/text/twenty_five_pound_per_fuck/pubic.png and b/img/bodywriting/text/twenty_five_pound_per_fuck/pubic.png differ
diff --git a/img/bodywriting/text/twenty_five_pound_per_fuck/right_thigh.png b/img/bodywriting/text/twenty_five_pound_per_fuck/right_thigh.png
index 5eec9ef3bf1a3508b5d524a78dfa58ef47817584..2b81d6d91baa93ab29dfd85e6b301ccce123c246 100644
Binary files a/img/bodywriting/text/twenty_five_pound_per_fuck/right_thigh.png and b/img/bodywriting/text/twenty_five_pound_per_fuck/right_thigh.png differ
diff --git a/img/bodywriting/text/use_me/breasts.png b/img/bodywriting/text/use_me/breasts.png
index fcac301e2461077ad112f666802be129299886dc..5bd5fce5c7b3dbe23419a85513e47591d6b873fa 100644
Binary files a/img/bodywriting/text/use_me/breasts.png and b/img/bodywriting/text/use_me/breasts.png differ
diff --git a/img/bodywriting/text/use_me/forehead.png b/img/bodywriting/text/use_me/forehead.png
index fe21088a4465ec21ffbbb3ebc850d73c91b72c99..6f577ad3306b28fb2a5afe02e463c281f0979d16 100644
Binary files a/img/bodywriting/text/use_me/forehead.png and b/img/bodywriting/text/use_me/forehead.png differ
diff --git a/img/bodywriting/text/use_me/left_thigh.png b/img/bodywriting/text/use_me/left_thigh.png
index 188061ae81c18a4aad5b85b31f91ce835bc92b9b..7ca79bfb51c208d5797b5f7d227153170df4ae89 100644
Binary files a/img/bodywriting/text/use_me/left_thigh.png and b/img/bodywriting/text/use_me/left_thigh.png differ
diff --git a/img/bodywriting/text/use_me/pubic.png b/img/bodywriting/text/use_me/pubic.png
index 78e5d48eff83ff9733018026a822de4ecae13249..023aea0d4283ed792f379aef2966b0174502b921 100644
Binary files a/img/bodywriting/text/use_me/pubic.png and b/img/bodywriting/text/use_me/pubic.png differ
diff --git a/img/bodywriting/text/use_me/right_thigh.png b/img/bodywriting/text/use_me/right_thigh.png
index 7f58a6b7638bd6ab68382fb6b116356231ea0c31..6c949dc66cfbb4605e4f52e3aa138d8b327c4ac0 100644
Binary files a/img/bodywriting/text/use_me/right_thigh.png and b/img/bodywriting/text/use_me/right_thigh.png differ
diff --git a/img/bodywriting/text/walking_dildo/breasts.png b/img/bodywriting/text/walking_dildo/breasts.png
index 294385147462df36213599320939362530c80c06..1d0d50437b24a995cb6c8f414bcdd29b66a132db 100644
Binary files a/img/bodywriting/text/walking_dildo/breasts.png and b/img/bodywriting/text/walking_dildo/breasts.png differ
diff --git a/img/bodywriting/text/walking_dildo/forehead.png b/img/bodywriting/text/walking_dildo/forehead.png
index 3243bc8a7e43a8a93e041be60e4e69fac4525917..2484a610dc7c3835bb276d81967a0a616f4f7fbc 100644
Binary files a/img/bodywriting/text/walking_dildo/forehead.png and b/img/bodywriting/text/walking_dildo/forehead.png differ
diff --git a/img/bodywriting/text/walking_dildo/left_thigh.png b/img/bodywriting/text/walking_dildo/left_thigh.png
index b1058f3a7641b5e15370ef2b39e0e6093502cfe3..f6893f0b78f054859013fc691cb933ed2a9010ef 100644
Binary files a/img/bodywriting/text/walking_dildo/left_thigh.png and b/img/bodywriting/text/walking_dildo/left_thigh.png differ
diff --git a/img/bodywriting/text/walking_dildo/pubic.png b/img/bodywriting/text/walking_dildo/pubic.png
index 1037316cf22df5d77d23b3cec9e0010a3132753f..54f74b74c027b53045fbb1fd00411e255ebb1493 100644
Binary files a/img/bodywriting/text/walking_dildo/pubic.png and b/img/bodywriting/text/walking_dildo/pubic.png differ
diff --git a/img/bodywriting/text/walking_dildo/right_thigh.png b/img/bodywriting/text/walking_dildo/right_thigh.png
index 47badffd8adcc2892b9689f41b8f4f83e3609dcc..2ce098e7eba2d02de8f090e7edcf30a1a315596f 100644
Binary files a/img/bodywriting/text/walking_dildo/right_thigh.png and b/img/bodywriting/text/walking_dildo/right_thigh.png differ
diff --git a/img/bodywriting/text/whitneys_pet/breasts.png b/img/bodywriting/text/whitneys_pet/breasts.png
index c8e2f995c7c261e06cffcafc4157fe7ee027443b..b9eda388d33f9d785a84191c64a3f819afead1a0 100644
Binary files a/img/bodywriting/text/whitneys_pet/breasts.png and b/img/bodywriting/text/whitneys_pet/breasts.png differ
diff --git a/img/bodywriting/text/whitneys_pet/forehead.png b/img/bodywriting/text/whitneys_pet/forehead.png
index 6d23d4dd1c58edfb3eb19ac02013b631006cfcee..7b7a8510916de03d4f8d40ea0d4808cbedeb0287 100644
Binary files a/img/bodywriting/text/whitneys_pet/forehead.png and b/img/bodywriting/text/whitneys_pet/forehead.png differ
diff --git a/img/bodywriting/text/whitneys_pet/left_thigh.png b/img/bodywriting/text/whitneys_pet/left_thigh.png
index dc35c2777148784c45d9ee6f04e6888666f896df..41d4228791bfb6881759bbaf5e9480f0288c1fd8 100644
Binary files a/img/bodywriting/text/whitneys_pet/left_thigh.png and b/img/bodywriting/text/whitneys_pet/left_thigh.png differ
diff --git a/img/bodywriting/text/whitneys_pet/pubic.png b/img/bodywriting/text/whitneys_pet/pubic.png
index 4e766939fae04f9ab9af0c98229c04f72793a36a..e4625dbc276be73ae3547e75b87fd3d44d8352f1 100644
Binary files a/img/bodywriting/text/whitneys_pet/pubic.png and b/img/bodywriting/text/whitneys_pet/pubic.png differ
diff --git a/img/bodywriting/text/whitneys_pet/right_thigh.png b/img/bodywriting/text/whitneys_pet/right_thigh.png
index 5baac48e4efcaf1e4465271d5db78945f9f11a2d..66174b23cf61e7e7bee00e4839755607f1acf64c 100644
Binary files a/img/bodywriting/text/whitneys_pet/right_thigh.png and b/img/bodywriting/text/whitneys_pet/right_thigh.png differ
diff --git a/img/bodywriting/text/worthless/breasts.png b/img/bodywriting/text/worthless/breasts.png
index 538e9729153947e7fa494182532ea089ec5ec6f9..623d20a6d67f0245ad84d4b54621f37d34d08d4b 100644
Binary files a/img/bodywriting/text/worthless/breasts.png and b/img/bodywriting/text/worthless/breasts.png differ
diff --git a/img/bodywriting/text/worthless/left_thigh.png b/img/bodywriting/text/worthless/left_thigh.png
index 911b1136a839896bd9cec768ad1b1a71e6a98e75..81bf93ce69378fa9ef117b030333da03c1a975dd 100644
Binary files a/img/bodywriting/text/worthless/left_thigh.png and b/img/bodywriting/text/worthless/left_thigh.png differ
diff --git a/img/bodywriting/text/worthless/pubic.png b/img/bodywriting/text/worthless/pubic.png
index d9b07417a9c8b94dccfc64b75357a887c2603bff..0588fe72b36aa9817644fd8586bd79f958f922f2 100644
Binary files a/img/bodywriting/text/worthless/pubic.png and b/img/bodywriting/text/worthless/pubic.png differ
diff --git a/img/bodywriting/text/worthless/right_thigh.png b/img/bodywriting/text/worthless/right_thigh.png
index 08b5fc23de1077d0bb4e0d663ab7afc0555b1774..bc7fe20c494e500a8b94e19777461bd0fb567573 100644
Binary files a/img/bodywriting/text/worthless/right_thigh.png and b/img/bodywriting/text/worthless/right_thigh.png differ
diff --git a/img/bodywriting/triangle/breasts0.png b/img/bodywriting/triangle/breasts0.png
index 4e1c6e9c9b5b22c2368b0fd09213f1bfa098fbba..211ea46327543d6af2299e991dd7e530d3e11de4 100644
Binary files a/img/bodywriting/triangle/breasts0.png and b/img/bodywriting/triangle/breasts0.png differ
diff --git a/img/bodywriting/triangle/breasts1.png b/img/bodywriting/triangle/breasts1.png
index 4e1c6e9c9b5b22c2368b0fd09213f1bfa098fbba..211ea46327543d6af2299e991dd7e530d3e11de4 100644
Binary files a/img/bodywriting/triangle/breasts1.png and b/img/bodywriting/triangle/breasts1.png differ
diff --git a/img/bodywriting/triangle/breasts2.png b/img/bodywriting/triangle/breasts2.png
index 4e1c6e9c9b5b22c2368b0fd09213f1bfa098fbba..211ea46327543d6af2299e991dd7e530d3e11de4 100644
Binary files a/img/bodywriting/triangle/breasts2.png and b/img/bodywriting/triangle/breasts2.png differ
diff --git a/img/bodywriting/triangle/breasts3.png b/img/bodywriting/triangle/breasts3.png
index 4e1c6e9c9b5b22c2368b0fd09213f1bfa098fbba..211ea46327543d6af2299e991dd7e530d3e11de4 100644
Binary files a/img/bodywriting/triangle/breasts3.png and b/img/bodywriting/triangle/breasts3.png differ
diff --git a/img/bodywriting/triangle/breasts4.png b/img/bodywriting/triangle/breasts4.png
index 4e1c6e9c9b5b22c2368b0fd09213f1bfa098fbba..211ea46327543d6af2299e991dd7e530d3e11de4 100644
Binary files a/img/bodywriting/triangle/breasts4.png and b/img/bodywriting/triangle/breasts4.png differ
diff --git a/img/bodywriting/triangle/breasts5.png b/img/bodywriting/triangle/breasts5.png
index 4e1c6e9c9b5b22c2368b0fd09213f1bfa098fbba..211ea46327543d6af2299e991dd7e530d3e11de4 100644
Binary files a/img/bodywriting/triangle/breasts5.png and b/img/bodywriting/triangle/breasts5.png differ
diff --git a/img/bodywriting/triangle/breasts6.png b/img/bodywriting/triangle/breasts6.png
index 4e1c6e9c9b5b22c2368b0fd09213f1bfa098fbba..211ea46327543d6af2299e991dd7e530d3e11de4 100644
Binary files a/img/bodywriting/triangle/breasts6.png and b/img/bodywriting/triangle/breasts6.png differ
diff --git a/img/bodywriting/triangle/forehead.png b/img/bodywriting/triangle/forehead.png
index 5e3aed843c38c98af4e0fef25db540f5d24f6d32..20d09b8feef5b2a93208198373ada9a8f3f55f3b 100644
Binary files a/img/bodywriting/triangle/forehead.png and b/img/bodywriting/triangle/forehead.png differ
diff --git a/img/bodywriting/triangle/left_cheek.png b/img/bodywriting/triangle/left_cheek.png
index 33bb69b279465b02a457e5d516bd8d0bd020eaec..9e8a5edaf487b2de110a5aa010052cd31ee93551 100644
Binary files a/img/bodywriting/triangle/left_cheek.png and b/img/bodywriting/triangle/left_cheek.png differ
diff --git a/img/bodywriting/triangle/left_shoulder.png b/img/bodywriting/triangle/left_shoulder.png
index fde0755cf512202b6791c0cb4b86efe79a122b49..379ef873661da266d5429ba056ab701864e2726c 100644
Binary files a/img/bodywriting/triangle/left_shoulder.png and b/img/bodywriting/triangle/left_shoulder.png differ
diff --git a/img/bodywriting/triangle/left_thigh.png b/img/bodywriting/triangle/left_thigh.png
index 8b379445c1ecd580d21c8e8779928a8e9831671a..4ea1aa7935b9b2908f07ceda9b681d9a62451e4e 100644
Binary files a/img/bodywriting/triangle/left_thigh.png and b/img/bodywriting/triangle/left_thigh.png differ
diff --git a/img/bodywriting/triangle/pubic.png b/img/bodywriting/triangle/pubic.png
index 43e10dea4889bc9c7a0e3fadcdc51d1986193796..a5d9319c15af40aee3faccdd510e75d81993b7aa 100644
Binary files a/img/bodywriting/triangle/pubic.png and b/img/bodywriting/triangle/pubic.png differ
diff --git a/img/bodywriting/triangle/right_cheek.png b/img/bodywriting/triangle/right_cheek.png
index b33827f84ebe53690de5fa0bf99d4007e79c69d5..a6e2c6e4c0b2c822d6d8ee4300be9b29f6519145 100644
Binary files a/img/bodywriting/triangle/right_cheek.png and b/img/bodywriting/triangle/right_cheek.png differ
diff --git a/img/bodywriting/triangle/right_shoulder.png b/img/bodywriting/triangle/right_shoulder.png
index 76b17a933362362952748dc024dbeb018960fc20..26491cf8dd9b6d171d6fbccbe38ff21d9d4a3f67 100644
Binary files a/img/bodywriting/triangle/right_shoulder.png and b/img/bodywriting/triangle/right_shoulder.png differ
diff --git a/img/bodywriting/triangle/right_thigh.png b/img/bodywriting/triangle/right_thigh.png
index 1f0c823c538a7269f01a1ef253648aa42ab129a3..25f6e759d9784a6455ec5f31451b1f62ef767e12 100644
Binary files a/img/bodywriting/triangle/right_thigh.png and b/img/bodywriting/triangle/right_thigh.png differ
diff --git a/img/bodywriting/unicorn/breasts0.png b/img/bodywriting/unicorn/breasts0.png
index ea808b9aa74a720a1daca53aa6ae2323718851f3..7570cad43236e801da20f7b652782ab9e3084f97 100644
Binary files a/img/bodywriting/unicorn/breasts0.png and b/img/bodywriting/unicorn/breasts0.png differ
diff --git a/img/bodywriting/unicorn/breasts1.png b/img/bodywriting/unicorn/breasts1.png
index ea808b9aa74a720a1daca53aa6ae2323718851f3..7570cad43236e801da20f7b652782ab9e3084f97 100644
Binary files a/img/bodywriting/unicorn/breasts1.png and b/img/bodywriting/unicorn/breasts1.png differ
diff --git a/img/bodywriting/unicorn/breasts2.png b/img/bodywriting/unicorn/breasts2.png
index ea808b9aa74a720a1daca53aa6ae2323718851f3..7570cad43236e801da20f7b652782ab9e3084f97 100644
Binary files a/img/bodywriting/unicorn/breasts2.png and b/img/bodywriting/unicorn/breasts2.png differ
diff --git a/img/bodywriting/unicorn/breasts3.png b/img/bodywriting/unicorn/breasts3.png
index ea808b9aa74a720a1daca53aa6ae2323718851f3..7570cad43236e801da20f7b652782ab9e3084f97 100644
Binary files a/img/bodywriting/unicorn/breasts3.png and b/img/bodywriting/unicorn/breasts3.png differ
diff --git a/img/bodywriting/unicorn/breasts4.png b/img/bodywriting/unicorn/breasts4.png
index ea808b9aa74a720a1daca53aa6ae2323718851f3..7570cad43236e801da20f7b652782ab9e3084f97 100644
Binary files a/img/bodywriting/unicorn/breasts4.png and b/img/bodywriting/unicorn/breasts4.png differ
diff --git a/img/bodywriting/unicorn/breasts5.png b/img/bodywriting/unicorn/breasts5.png
index ea808b9aa74a720a1daca53aa6ae2323718851f3..7570cad43236e801da20f7b652782ab9e3084f97 100644
Binary files a/img/bodywriting/unicorn/breasts5.png and b/img/bodywriting/unicorn/breasts5.png differ
diff --git a/img/bodywriting/unicorn/breasts6.png b/img/bodywriting/unicorn/breasts6.png
index ea808b9aa74a720a1daca53aa6ae2323718851f3..7570cad43236e801da20f7b652782ab9e3084f97 100644
Binary files a/img/bodywriting/unicorn/breasts6.png and b/img/bodywriting/unicorn/breasts6.png differ
diff --git a/img/bodywriting/unicorn/forehead.png b/img/bodywriting/unicorn/forehead.png
index caae9534ab83deed1227cd8b916f6285236442f4..193c93c37d37facbb092ec8310b9e1674607a7d5 100644
Binary files a/img/bodywriting/unicorn/forehead.png and b/img/bodywriting/unicorn/forehead.png differ
diff --git a/img/bodywriting/unicorn/left_cheek.png b/img/bodywriting/unicorn/left_cheek.png
index b6ad28c4176915ae4077ed9859fb7eefb30dad3b..986d0802504e402e5ae486f250f2f8607a2eddf3 100644
Binary files a/img/bodywriting/unicorn/left_cheek.png and b/img/bodywriting/unicorn/left_cheek.png differ
diff --git a/img/bodywriting/unicorn/left_shoulder.png b/img/bodywriting/unicorn/left_shoulder.png
index 4bee6b62a2bd01457ad0ea3effa2276a76449764..5bc099c7d2a2799cb39f3612af5ae7edf6dca0e1 100644
Binary files a/img/bodywriting/unicorn/left_shoulder.png and b/img/bodywriting/unicorn/left_shoulder.png differ
diff --git a/img/bodywriting/unicorn/left_thigh.png b/img/bodywriting/unicorn/left_thigh.png
index 941bb028036644cc06415d0516a8a0ca96aeec11..7c036b93374cbb37d148593c76093512a7ff1616 100644
Binary files a/img/bodywriting/unicorn/left_thigh.png and b/img/bodywriting/unicorn/left_thigh.png differ
diff --git a/img/bodywriting/unicorn/pubic.png b/img/bodywriting/unicorn/pubic.png
index 02b45e42320914711967447e466112f380722431..dd3603f5f9d26200828aea92f97d230c419541ae 100644
Binary files a/img/bodywriting/unicorn/pubic.png and b/img/bodywriting/unicorn/pubic.png differ
diff --git a/img/bodywriting/unicorn/right_cheek.png b/img/bodywriting/unicorn/right_cheek.png
index 5387c311ae92c3136b40f63139c14b2c26adc3e9..0e72fcbccc9199ae87f3466754831123b240b588 100644
Binary files a/img/bodywriting/unicorn/right_cheek.png and b/img/bodywriting/unicorn/right_cheek.png differ
diff --git a/img/bodywriting/unicorn/right_shoulder.png b/img/bodywriting/unicorn/right_shoulder.png
index 4133693eeb065aae5383afa6ec841b0acea0b7b7..669b0423b365365664f1320bc0853c2007624453 100644
Binary files a/img/bodywriting/unicorn/right_shoulder.png and b/img/bodywriting/unicorn/right_shoulder.png differ
diff --git a/img/bodywriting/unicorn/right_thigh.png b/img/bodywriting/unicorn/right_thigh.png
index c4eb0f86e6e99d2fba4c7279ddee15d665d65332..ffe4d92c037fe7f1e49fae5d016df3ddd990ed87 100644
Binary files a/img/bodywriting/unicorn/right_thigh.png and b/img/bodywriting/unicorn/right_thigh.png differ
diff --git a/img/clothes/belly/belly_mask.png b/img/clothes/belly/belly_mask.png
index 9d416edef88eeacf69378f4f4d02147df0b34c57..725112d30a39bb7107f75afc745028d90b1aa5a6 100644
Binary files a/img/clothes/belly/belly_mask.png and b/img/clothes/belly/belly_mask.png differ
diff --git a/img/clothes/belly/belly_mask_lower_shadow.png b/img/clothes/belly/belly_mask_lower_shadow.png
index d1b9115a21c2fb60c12a6ec0cf1d031c6030c87e..d17b7d906783ca9457edcb38323f36cbc80326e5 100644
Binary files a/img/clothes/belly/belly_mask_lower_shadow.png and b/img/clothes/belly/belly_mask_lower_shadow.png differ
diff --git a/img/clothes/belly/belly_mask_lower_shadow_2.png b/img/clothes/belly/belly_mask_lower_shadow_2.png
index 98e7774d28546451fb2f769cd19b3b79450ae9fd..b3860404dd70cf8dec27fb0774d97fe9dea9ef3e 100644
Binary files a/img/clothes/belly/belly_mask_lower_shadow_2.png and b/img/clothes/belly/belly_mask_lower_shadow_2.png differ
diff --git a/img/clothes/belly/belly_mask_lower_shadow_3.png b/img/clothes/belly/belly_mask_lower_shadow_3.png
index 106bf79910b315ab1492d30ad58a897a13840be9..cd6c108eb07418a965109e2628704f6eed9b106c 100644
Binary files a/img/clothes/belly/belly_mask_lower_shadow_3.png and b/img/clothes/belly/belly_mask_lower_shadow_3.png differ
diff --git a/img/clothes/belly/belly_mask_upper_shadow.png b/img/clothes/belly/belly_mask_upper_shadow.png
index db5ce2cf34a55c6740ca857455af82759e5bec88..a189c3c9100334822a98624aa59d255341adc00d 100644
Binary files a/img/clothes/belly/belly_mask_upper_shadow.png and b/img/clothes/belly/belly_mask_upper_shadow.png differ
diff --git a/img/clothes/belly/belly_mask_upper_shadow_2.png b/img/clothes/belly/belly_mask_upper_shadow_2.png
index db5ce2cf34a55c6740ca857455af82759e5bec88..a189c3c9100334822a98624aa59d255341adc00d 100644
Binary files a/img/clothes/belly/belly_mask_upper_shadow_2.png and b/img/clothes/belly/belly_mask_upper_shadow_2.png differ
diff --git a/img/clothes/belly/mask_15.png b/img/clothes/belly/mask_15.png
index 2fd5cf98acc91cfce6c2e09fd15afe4e7dc8bec5..b7867774a93e6536659b24164ea50699a72d8d6a 100644
Binary files a/img/clothes/belly/mask_15.png and b/img/clothes/belly/mask_15.png differ
diff --git a/img/clothes/belly/mask_16.png b/img/clothes/belly/mask_16.png
index 811ed9fb216073329a27f4b38d0d29c18a970f18..2c8cfd815757890154a78b84605da0b9b398edce 100644
Binary files a/img/clothes/belly/mask_16.png and b/img/clothes/belly/mask_16.png differ
diff --git a/img/clothes/belly/mask_17.png b/img/clothes/belly/mask_17.png
index 45ffcd445adb6dfb6d2bf8277ca0659d2a2e5d27..93b289016db88d53f8222f0556bbbaf173218ec1 100644
Binary files a/img/clothes/belly/mask_17.png and b/img/clothes/belly/mask_17.png differ
diff --git a/img/clothes/belly/mask_18.png b/img/clothes/belly/mask_18.png
index 26ba1f25e0139bdc7a784b829f9702870dd6af81..b8bad78d99ac2c7f433d2830f49b3414de3539f9 100644
Binary files a/img/clothes/belly/mask_18.png and b/img/clothes/belly/mask_18.png differ
diff --git a/img/clothes/belly/mask_19.png b/img/clothes/belly/mask_19.png
index 0a281db599a94fe078d8b69a883c4821ab37d512..6fcdded5d552417405d7f6744d636cd109dabf25 100644
Binary files a/img/clothes/belly/mask_19.png and b/img/clothes/belly/mask_19.png differ
diff --git a/img/clothes/belly/mask_20.png b/img/clothes/belly/mask_20.png
index 0a281db599a94fe078d8b69a883c4821ab37d512..6fcdded5d552417405d7f6744d636cd109dabf25 100644
Binary files a/img/clothes/belly/mask_20.png and b/img/clothes/belly/mask_20.png differ
diff --git a/img/clothes/belly/mask_21.png b/img/clothes/belly/mask_21.png
index 7cd00d8fd5a49baa5a68ce6e248ddd13ae596167..7d6d14af58241b6a932301eba3937b3893ba47d8 100644
Binary files a/img/clothes/belly/mask_21.png and b/img/clothes/belly/mask_21.png differ
diff --git a/img/clothes/belly/mask_22.png b/img/clothes/belly/mask_22.png
index b642f71a073411700ef75060b308458033b2e4c6..8fc1e5658fae8daa684476ff3b29674a9fe6a7b9 100644
Binary files a/img/clothes/belly/mask_22.png and b/img/clothes/belly/mask_22.png differ
diff --git a/img/clothes/belly/mask_23.png b/img/clothes/belly/mask_23.png
index 4c1e488248811c77ef5dd2552152c4d0e7707dbe..5469d0d5ad052611eb4c50c63f4288a7607a1e4f 100644
Binary files a/img/clothes/belly/mask_23.png and b/img/clothes/belly/mask_23.png differ
diff --git a/img/clothes/belly/mask_24.png b/img/clothes/belly/mask_24.png
index 82b0b1737c624ba87681cd9991dfc7d45aa2bc84..848f4a1a13203ce8d68551a4b83b7d134e83495a 100644
Binary files a/img/clothes/belly/mask_24.png and b/img/clothes/belly/mask_24.png differ
diff --git a/img/clothes/belly/mask_clip_15.png b/img/clothes/belly/mask_clip_15.png
index fa0c53ceaa6c7998f1172eeb2bfbae98f2a1532d..bb21b325f29d3e682ed0f00ad87eb0b19854cbfd 100644
Binary files a/img/clothes/belly/mask_clip_15.png and b/img/clothes/belly/mask_clip_15.png differ
diff --git a/img/clothes/belly/mask_clip_16.png b/img/clothes/belly/mask_clip_16.png
index fa0c53ceaa6c7998f1172eeb2bfbae98f2a1532d..bb21b325f29d3e682ed0f00ad87eb0b19854cbfd 100644
Binary files a/img/clothes/belly/mask_clip_16.png and b/img/clothes/belly/mask_clip_16.png differ
diff --git a/img/clothes/belly/mask_clip_17.png b/img/clothes/belly/mask_clip_17.png
index 7c45987172e30fd6fc8129791f6c6e805d1b6645..8e5f1e96f79cc9ae3990616fb06ac90aa544cc79 100644
Binary files a/img/clothes/belly/mask_clip_17.png and b/img/clothes/belly/mask_clip_17.png differ
diff --git a/img/clothes/belly/mask_clip_18.png b/img/clothes/belly/mask_clip_18.png
index 7c45987172e30fd6fc8129791f6c6e805d1b6645..8e5f1e96f79cc9ae3990616fb06ac90aa544cc79 100644
Binary files a/img/clothes/belly/mask_clip_18.png and b/img/clothes/belly/mask_clip_18.png differ
diff --git a/img/clothes/belly/mask_clip_19.png b/img/clothes/belly/mask_clip_19.png
index bee8e818e9a73243515d946039ae5f3736c96c0a..ea5eee830c83b44093547b9920312cf0c315f484 100644
Binary files a/img/clothes/belly/mask_clip_19.png and b/img/clothes/belly/mask_clip_19.png differ
diff --git a/img/clothes/belly/mask_clip_20.png b/img/clothes/belly/mask_clip_20.png
index bee8e818e9a73243515d946039ae5f3736c96c0a..ea5eee830c83b44093547b9920312cf0c315f484 100644
Binary files a/img/clothes/belly/mask_clip_20.png and b/img/clothes/belly/mask_clip_20.png differ
diff --git a/img/clothes/belly/mask_clip_21.png b/img/clothes/belly/mask_clip_21.png
index 85e92aa1fafc1896330c53aaf4e70852db215df3..e66883b4e37dfde9d065b33c6d3821161ce9d05f 100644
Binary files a/img/clothes/belly/mask_clip_21.png and b/img/clothes/belly/mask_clip_21.png differ
diff --git a/img/clothes/belly/mask_clip_22.png b/img/clothes/belly/mask_clip_22.png
index 4b96993dbfb70803da9547189013bba1c024abad..ff1736e46f36acd7b1ac294b4edbd229da6249ad 100644
Binary files a/img/clothes/belly/mask_clip_22.png and b/img/clothes/belly/mask_clip_22.png differ
diff --git a/img/clothes/belly/mask_clip_23.png b/img/clothes/belly/mask_clip_23.png
index a68d66f71b890411def4bdb640c3962d9cb77fea..a2f34363d6569d39f3a4be70b3c9aee2ba2b099c 100644
Binary files a/img/clothes/belly/mask_clip_23.png and b/img/clothes/belly/mask_clip_23.png differ
diff --git a/img/clothes/belly/mask_clip_24.png b/img/clothes/belly/mask_clip_24.png
index 5596e415b68599cb69fd9b8a92105e1178ffe9f6..d7c80d74acd848213f0e02d7bc0f4d39c386de3d 100644
Binary files a/img/clothes/belly/mask_clip_24.png and b/img/clothes/belly/mask_clip_24.png differ
diff --git a/img/clothes/belly/mask_min_15.png b/img/clothes/belly/mask_min_15.png
index 9b68b5554bfb7772c202d22fca45c5d4f165ce89..f3e703c6802fd8b1da939013df744e41b41dc5c3 100644
Binary files a/img/clothes/belly/mask_min_15.png and b/img/clothes/belly/mask_min_15.png differ
diff --git a/img/clothes/belly/mask_min_16.png b/img/clothes/belly/mask_min_16.png
index b2ae2109cfa9932c3e048f3551802cb34435e262..8bb246e648f6c28ac092e44b09bf31f6243ea02a 100644
Binary files a/img/clothes/belly/mask_min_16.png and b/img/clothes/belly/mask_min_16.png differ
diff --git a/img/clothes/belly/mask_min_17.png b/img/clothes/belly/mask_min_17.png
index b2ae2109cfa9932c3e048f3551802cb34435e262..8bb246e648f6c28ac092e44b09bf31f6243ea02a 100644
Binary files a/img/clothes/belly/mask_min_17.png and b/img/clothes/belly/mask_min_17.png differ
diff --git a/img/clothes/belly/mask_min_18.png b/img/clothes/belly/mask_min_18.png
index 54ba54253dc6617588df6ec3119e588ce1457761..6d94d4beeea42e1aa47332b57ada0cb83f62895b 100644
Binary files a/img/clothes/belly/mask_min_18.png and b/img/clothes/belly/mask_min_18.png differ
diff --git a/img/clothes/belly/mask_min_19.png b/img/clothes/belly/mask_min_19.png
index 608073c88a39101cffbfb4ebd21c83d6c6f17a27..837ff21d9569efa4d34c09310d1e38cfea4eddcc 100644
Binary files a/img/clothes/belly/mask_min_19.png and b/img/clothes/belly/mask_min_19.png differ
diff --git a/img/clothes/belly/mask_min_20.png b/img/clothes/belly/mask_min_20.png
index 608073c88a39101cffbfb4ebd21c83d6c6f17a27..837ff21d9569efa4d34c09310d1e38cfea4eddcc 100644
Binary files a/img/clothes/belly/mask_min_20.png and b/img/clothes/belly/mask_min_20.png differ
diff --git a/img/clothes/belly/mask_min_21.png b/img/clothes/belly/mask_min_21.png
index ba0a680686599db8d6f49c55c94decb9c2a3b7ce..9851fd93c902727504ef711c5f9c81a409d13679 100644
Binary files a/img/clothes/belly/mask_min_21.png and b/img/clothes/belly/mask_min_21.png differ
diff --git a/img/clothes/belly/mask_min_22.png b/img/clothes/belly/mask_min_22.png
index 78451e67a10e892d9ce61d76cac9882d779937bf..47150b89e404c29664f60b30d188aedd6fd3c308 100644
Binary files a/img/clothes/belly/mask_min_22.png and b/img/clothes/belly/mask_min_22.png differ
diff --git a/img/clothes/belly/mask_min_23.png b/img/clothes/belly/mask_min_23.png
index a436bd265b0f403a39de1764cada9bdfa605a12a..7bc63a76c61f8efe1047d259ff175343dc113708 100644
Binary files a/img/clothes/belly/mask_min_23.png and b/img/clothes/belly/mask_min_23.png differ
diff --git a/img/clothes/belly/mask_min_24.png b/img/clothes/belly/mask_min_24.png
index 757dfdfd9d03ef11cdbfc829661b74e06bb2a974..9d00f4fb6c1f80ee6c806845b06690b4d687c936 100644
Binary files a/img/clothes/belly/mask_min_24.png and b/img/clothes/belly/mask_min_24.png differ
diff --git a/img/clothes/belly/mask_shirt_breasts.png b/img/clothes/belly/mask_shirt_breasts.png
index 307046696ae329c4473af9bb6b1abc44e4ea9b80..599c593987bf57611e8ab749054e135736bf515a 100644
Binary files a/img/clothes/belly/mask_shirt_breasts.png and b/img/clothes/belly/mask_shirt_breasts.png differ
diff --git a/img/clothes/belly/mask_shirt_clip.png b/img/clothes/belly/mask_shirt_clip.png
index e69c90ddf042bc6d49d72a6b4ed2e65f0afbeb4f..5f885982fb68346da8afa84facabf9d4813f40ed 100644
Binary files a/img/clothes/belly/mask_shirt_clip.png and b/img/clothes/belly/mask_shirt_clip.png differ
diff --git a/img/clothes/belly/mask_shirt_clip_big.png b/img/clothes/belly/mask_shirt_clip_big.png
index 38fbb937090fcec31dd164ef2e613c74ba18bb85..5b5e3e90f941e8b34b6b9b3ccc7b3fc976303cda 100644
Binary files a/img/clothes/belly/mask_shirt_clip_big.png and b/img/clothes/belly/mask_shirt_clip_big.png differ
diff --git a/img/clothes/belly/mask_shirt_left.png b/img/clothes/belly/mask_shirt_left.png
index 054fec4ed600802b98d9abab0f350c8f275e0899..8c805ee68d6c0876598053eff2eacfef155ffb74 100644
Binary files a/img/clothes/belly/mask_shirt_left.png and b/img/clothes/belly/mask_shirt_left.png differ
diff --git a/img/clothes/belly/mask_shirt_left2.png b/img/clothes/belly/mask_shirt_left2.png
index fb4e078e8dc28893b3ebe9930f795b5894256a99..d7f28d67e4f8968faada82d3ffc06443fe9001f5 100644
Binary files a/img/clothes/belly/mask_shirt_left2.png and b/img/clothes/belly/mask_shirt_left2.png differ
diff --git a/img/clothes/belly/mask_shirt_left2_big.png b/img/clothes/belly/mask_shirt_left2_big.png
index c4ea71e945a3347d81f49315186fb41f49743513..05e44b47c0990747136cd8020650a02f10705a95 100644
Binary files a/img/clothes/belly/mask_shirt_left2_big.png and b/img/clothes/belly/mask_shirt_left2_big.png differ
diff --git a/img/clothes/belly/mask_shirt_left_big.png b/img/clothes/belly/mask_shirt_left_big.png
index 34c207857e3fcb04d944f9ed88adbd7c5ff99b07..cc1de620f362097dabfbdce966bf59b9acccd7fe 100644
Binary files a/img/clothes/belly/mask_shirt_left_big.png and b/img/clothes/belly/mask_shirt_left_big.png differ
diff --git a/img/clothes/belly/mask_shirt_right.png b/img/clothes/belly/mask_shirt_right.png
index 2d69f1a567ecd6860ac19bcdfcb47cee7e1fe888..3a11fc7d38c386a86a23779ea883b5426e6b9ecf 100644
Binary files a/img/clothes/belly/mask_shirt_right.png and b/img/clothes/belly/mask_shirt_right.png differ
diff --git a/img/clothes/belly/mask_shirt_right2.png b/img/clothes/belly/mask_shirt_right2.png
index cc2bf78206361abdc1f7d75581ad935359b55e57..15c5a2509189edc35823ea75c46dff0e60f4d4b3 100644
Binary files a/img/clothes/belly/mask_shirt_right2.png and b/img/clothes/belly/mask_shirt_right2.png differ
diff --git a/img/clothes/belly/mask_shirt_right3.png b/img/clothes/belly/mask_shirt_right3.png
index 9fa1408ce75bb1d3aefca2576f9af0169dee8995..2dc6fcc92e380d6cb918c16bacd418dbcbc4a406 100644
Binary files a/img/clothes/belly/mask_shirt_right3.png and b/img/clothes/belly/mask_shirt_right3.png differ
diff --git a/img/clothes/belly/shadow_10.png b/img/clothes/belly/shadow_10.png
index bae858885b8a686235dd3579dd71562a9ad2e8e8..8a6ca5eb0d984f702fc84197c21865e31633495a 100644
Binary files a/img/clothes/belly/shadow_10.png and b/img/clothes/belly/shadow_10.png differ
diff --git a/img/clothes/belly/shadow_11.png b/img/clothes/belly/shadow_11.png
index bae858885b8a686235dd3579dd71562a9ad2e8e8..8a6ca5eb0d984f702fc84197c21865e31633495a 100644
Binary files a/img/clothes/belly/shadow_11.png and b/img/clothes/belly/shadow_11.png differ
diff --git a/img/clothes/belly/shadow_12.png b/img/clothes/belly/shadow_12.png
index bae858885b8a686235dd3579dd71562a9ad2e8e8..8a6ca5eb0d984f702fc84197c21865e31633495a 100644
Binary files a/img/clothes/belly/shadow_12.png and b/img/clothes/belly/shadow_12.png differ
diff --git a/img/clothes/belly/shadow_13.png b/img/clothes/belly/shadow_13.png
index 30e0a25c2ea1f103a0ce52927e052768aa3f9d93..8332da2dc99c2f37ab7a21ea55d1a37e1b1b82cb 100644
Binary files a/img/clothes/belly/shadow_13.png and b/img/clothes/belly/shadow_13.png differ
diff --git a/img/clothes/belly/shadow_14.png b/img/clothes/belly/shadow_14.png
index 31b5b37ea811d9e65a184e4523ee9a0a81107299..d6fb3c17b02d9709f2ad5cb12dc939045c9372c2 100644
Binary files a/img/clothes/belly/shadow_14.png and b/img/clothes/belly/shadow_14.png differ
diff --git a/img/clothes/belly/shadow_15.png b/img/clothes/belly/shadow_15.png
index 1bb27c669e518f041aa11ff4a1349d79984a1f7f..78bba7a62138f9a4e4e7c7b9ed0aba1601ff1bc3 100644
Binary files a/img/clothes/belly/shadow_15.png and b/img/clothes/belly/shadow_15.png differ
diff --git a/img/clothes/belly/shadow_16.png b/img/clothes/belly/shadow_16.png
index 8e594a0492c8c8ec29789bafedfe4fdd71635719..79c5bccbcec42fa213d3d158d1179c47eca856de 100644
Binary files a/img/clothes/belly/shadow_16.png and b/img/clothes/belly/shadow_16.png differ
diff --git a/img/clothes/belly/shadow_17.png b/img/clothes/belly/shadow_17.png
index 2442e7f91feaa2e68efce0f4191798077081eb36..f5cac67d69d59c93bcdfe9ee0ccf90f117a02e26 100644
Binary files a/img/clothes/belly/shadow_17.png and b/img/clothes/belly/shadow_17.png differ
diff --git a/img/clothes/belly/shadow_18.png b/img/clothes/belly/shadow_18.png
index 2442e7f91feaa2e68efce0f4191798077081eb36..f5cac67d69d59c93bcdfe9ee0ccf90f117a02e26 100644
Binary files a/img/clothes/belly/shadow_18.png and b/img/clothes/belly/shadow_18.png differ
diff --git a/img/clothes/belly/shadow_19.png b/img/clothes/belly/shadow_19.png
index 1a0f2ac6c458654a4cddfa0a658f475f24558149..81c7bd3f8fb248f2ef082880771df07683860a59 100644
Binary files a/img/clothes/belly/shadow_19.png and b/img/clothes/belly/shadow_19.png differ
diff --git a/img/clothes/belly/shadow_20.png b/img/clothes/belly/shadow_20.png
index 51bf8a56407ceffbb21d45804747a25a27a70a4e..796c21b50e3a3bdccbfd49f33b07f9afcc5be212 100644
Binary files a/img/clothes/belly/shadow_20.png and b/img/clothes/belly/shadow_20.png differ
diff --git a/img/clothes/belly/shadow_21.png b/img/clothes/belly/shadow_21.png
index dd2a96071610b463a33b51c76999f16a2df80c0c..76cacd32583848e77da1bf03e41b58a973375ab6 100644
Binary files a/img/clothes/belly/shadow_21.png and b/img/clothes/belly/shadow_21.png differ
diff --git a/img/clothes/belly/shadow_22.png b/img/clothes/belly/shadow_22.png
index e2452cf7057ea042fdbe14aa559833237d739a5a..0453b2906288ca843aaa5277b9495d9be535bb72 100644
Binary files a/img/clothes/belly/shadow_22.png and b/img/clothes/belly/shadow_22.png differ
diff --git a/img/clothes/belly/shadow_23.png b/img/clothes/belly/shadow_23.png
index dfcce9827e3be2f07edaba3c907e322a9b3e1835..04f013ec0b60ba24a08c7328dad3313275de1ecd 100644
Binary files a/img/clothes/belly/shadow_23.png and b/img/clothes/belly/shadow_23.png differ
diff --git a/img/clothes/belly/shadow_24.png b/img/clothes/belly/shadow_24.png
index 72a8c6967c38e51a9725db1dfd14c04be5b97d35..05b8c06aaea7fc2d7a99276293b172ef8774301c 100644
Binary files a/img/clothes/belly/shadow_24.png and b/img/clothes/belly/shadow_24.png differ
diff --git a/img/clothes/belly/shadow_8.png b/img/clothes/belly/shadow_8.png
index 2861b3bee3088736defdceaa366c4c389331f673..d9a11cf2abf513cd845d8f169b8f69a62dd2ba47 100644
Binary files a/img/clothes/belly/shadow_8.png and b/img/clothes/belly/shadow_8.png differ
diff --git a/img/clothes/belly/shadow_9.png b/img/clothes/belly/shadow_9.png
index bae858885b8a686235dd3579dd71562a9ad2e8e8..8a6ca5eb0d984f702fc84197c21865e31633495a 100644
Binary files a/img/clothes/belly/shadow_9.png and b/img/clothes/belly/shadow_9.png differ
diff --git a/img/clothes/face/aviator/acc.png b/img/clothes/face/aviator/acc.png
index aab44cdc4fdc677c6beb6e8b0925ee0771b9c845..afffadd188fed33c848fc4f0ae37c26d3ddc3a51 100644
Binary files a/img/clothes/face/aviator/acc.png and b/img/clothes/face/aviator/acc.png differ
diff --git a/img/clothes/face/aviator/acc_alt.png b/img/clothes/face/aviator/acc_alt.png
index 6c2dd29d5225a5d65fd071b8468503c2b9bf453c..8fa1445dd884afb3e7f388db761463243e6c63c3 100644
Binary files a/img/clothes/face/aviator/acc_alt.png and b/img/clothes/face/aviator/acc_alt.png differ
diff --git a/img/clothes/face/aviator/acc_alt_gray.png b/img/clothes/face/aviator/acc_alt_gray.png
index 2070028a74b23dea872d4da8a373998e19a91b62..fcfbb0b2160db9ccc9c4daf8e16e5e4a0b899e3d 100644
Binary files a/img/clothes/face/aviator/acc_alt_gray.png and b/img/clothes/face/aviator/acc_alt_gray.png differ
diff --git a/img/clothes/face/aviator/acc_gray.png b/img/clothes/face/aviator/acc_gray.png
index 2269e06745909a04cde91e418829c2f16b870e48..0133e6a77bcd4730a7b072a50f2aab76acba3269 100644
Binary files a/img/clothes/face/aviator/acc_gray.png and b/img/clothes/face/aviator/acc_gray.png differ
diff --git a/img/clothes/face/aviator/full_alt_gray.png b/img/clothes/face/aviator/full_alt_gray.png
index 88ebd489af429cab38d0cd19b702c0048f9233f3..67e6ac9c131b796858d5d9c158d771dcc7cf9180 100644
Binary files a/img/clothes/face/aviator/full_alt_gray.png and b/img/clothes/face/aviator/full_alt_gray.png differ
diff --git a/img/clothes/face/aviator/full_gray.png b/img/clothes/face/aviator/full_gray.png
index 323ba4e67cadc6bdea3c50ffce67df3fef4bac90..582ff2f2f34636bded9d1f65f653dfe2d86dc7c1 100644
Binary files a/img/clothes/face/aviator/full_gray.png and b/img/clothes/face/aviator/full_gray.png differ
diff --git a/img/clothes/face/bamboomuzzle/frayed.png b/img/clothes/face/bamboomuzzle/frayed.png
index df3a8fa0f2f1d8cda9f46cf8a20be6e8897cdb5a..7ad32ac6fd69c3f0824839722c09afc4c65fd5d0 100644
Binary files a/img/clothes/face/bamboomuzzle/frayed.png and b/img/clothes/face/bamboomuzzle/frayed.png differ
diff --git a/img/clothes/face/bamboomuzzle/full.png b/img/clothes/face/bamboomuzzle/full.png
index df3a8fa0f2f1d8cda9f46cf8a20be6e8897cdb5a..7ad32ac6fd69c3f0824839722c09afc4c65fd5d0 100644
Binary files a/img/clothes/face/bamboomuzzle/full.png and b/img/clothes/face/bamboomuzzle/full.png differ
diff --git a/img/clothes/face/bamboomuzzle/tattered.png b/img/clothes/face/bamboomuzzle/tattered.png
index df3a8fa0f2f1d8cda9f46cf8a20be6e8897cdb5a..7ad32ac6fd69c3f0824839722c09afc4c65fd5d0 100644
Binary files a/img/clothes/face/bamboomuzzle/tattered.png and b/img/clothes/face/bamboomuzzle/tattered.png differ
diff --git a/img/clothes/face/bamboomuzzle/torn.png b/img/clothes/face/bamboomuzzle/torn.png
index df3a8fa0f2f1d8cda9f46cf8a20be6e8897cdb5a..7ad32ac6fd69c3f0824839722c09afc4c65fd5d0 100644
Binary files a/img/clothes/face/bamboomuzzle/torn.png and b/img/clothes/face/bamboomuzzle/torn.png differ
diff --git a/img/clothes/face/bandanna/frayed_gray.png b/img/clothes/face/bandanna/frayed_gray.png
index 41aa92f3c07995c28ded1b2cdba1393f7f961191..4f1bedbf87021817ca364f6457b12bf4dfbef754 100644
Binary files a/img/clothes/face/bandanna/frayed_gray.png and b/img/clothes/face/bandanna/frayed_gray.png differ
diff --git a/img/clothes/face/bandanna/full_gray.png b/img/clothes/face/bandanna/full_gray.png
index 41aa92f3c07995c28ded1b2cdba1393f7f961191..4f1bedbf87021817ca364f6457b12bf4dfbef754 100644
Binary files a/img/clothes/face/bandanna/full_gray.png and b/img/clothes/face/bandanna/full_gray.png differ
diff --git a/img/clothes/face/bandanna/tattered_gray.png b/img/clothes/face/bandanna/tattered_gray.png
index 41aa92f3c07995c28ded1b2cdba1393f7f961191..4f1bedbf87021817ca364f6457b12bf4dfbef754 100644
Binary files a/img/clothes/face/bandanna/tattered_gray.png and b/img/clothes/face/bandanna/tattered_gray.png differ
diff --git a/img/clothes/face/bandanna/torn_gray.png b/img/clothes/face/bandanna/torn_gray.png
index 41aa92f3c07995c28ded1b2cdba1393f7f961191..4f1bedbf87021817ca364f6457b12bf4dfbef754 100644
Binary files a/img/clothes/face/bandanna/torn_gray.png and b/img/clothes/face/bandanna/torn_gray.png differ
diff --git a/img/clothes/face/belly/acc.png b/img/clothes/face/belly/acc.png
index 683a80ab314274dc9dbec0a0340c5cce2fba698a..4953e3e12d3bfcc5d628a329fb103b370f9aba2d 100644
Binary files a/img/clothes/face/belly/acc.png and b/img/clothes/face/belly/acc.png differ
diff --git a/img/clothes/face/belly/frayed_gray.png b/img/clothes/face/belly/frayed_gray.png
index e47aa0af6618e09a3cc57976d3523c2780955aa2..1522701cc341fa5aeb35d9d7d0ae776661b71ae3 100644
Binary files a/img/clothes/face/belly/frayed_gray.png and b/img/clothes/face/belly/frayed_gray.png differ
diff --git a/img/clothes/face/belly/full_gray.png b/img/clothes/face/belly/full_gray.png
index 5d2db1b9e261ca02fd48bd707aafaa86021ed145..a0ad7e11d4513803393497302e91e8d8038acc9f 100644
Binary files a/img/clothes/face/belly/full_gray.png and b/img/clothes/face/belly/full_gray.png differ
diff --git a/img/clothes/face/belly/tattered_gray.png b/img/clothes/face/belly/tattered_gray.png
index 8564b1fb2027ec524642a6a56125244dbe9e4e2f..62d8a0c77e54f6d902b7f128c90ca92748eee564 100644
Binary files a/img/clothes/face/belly/tattered_gray.png and b/img/clothes/face/belly/tattered_gray.png differ
diff --git a/img/clothes/face/belly/torn_gray.png b/img/clothes/face/belly/torn_gray.png
index f9442ec7688df97effd8511edff4224b6fe98f22..45714d11e98b52afb54b264fb11215351cb232ac 100644
Binary files a/img/clothes/face/belly/torn_gray.png and b/img/clothes/face/belly/torn_gray.png differ
diff --git a/img/clothes/face/bitgag/full.png b/img/clothes/face/bitgag/full.png
index 1f6a93b8d717d97718783beb8d2c98b840e6b497..e6fc42039e86d060316fd45114c065f46c51ef33 100644
Binary files a/img/clothes/face/bitgag/full.png and b/img/clothes/face/bitgag/full.png differ
diff --git a/img/clothes/face/blindfold/full.png b/img/clothes/face/blindfold/full.png
index 92c44aa5d0b64a932d8c127e24acacf82ea46dc8..094cc39017b90b98690ca1ab28f33450ffc12f16 100644
Binary files a/img/clothes/face/blindfold/full.png and b/img/clothes/face/blindfold/full.png differ
diff --git a/img/clothes/face/cateye/acc.png b/img/clothes/face/cateye/acc.png
index 34596f2c47c5746265b62fd60cf6949306e24d31..b8267bd9995aad01fc730b365a99c50939aeb616 100644
Binary files a/img/clothes/face/cateye/acc.png and b/img/clothes/face/cateye/acc.png differ
diff --git a/img/clothes/face/cateye/acc_alt.png b/img/clothes/face/cateye/acc_alt.png
index 26cb92f6922723b86fb1f8ce8092bf43229c4e7a..952029251b2abd7541c36ed7d69e909db4d3f50f 100644
Binary files a/img/clothes/face/cateye/acc_alt.png and b/img/clothes/face/cateye/acc_alt.png differ
diff --git a/img/clothes/face/cateye/acc_alt_gray.png b/img/clothes/face/cateye/acc_alt_gray.png
index fc13fa9774af42e2e6a721a029c0e8370bd44558..5e53f41961d14f3d82e123e1451dd8e5c419a5af 100644
Binary files a/img/clothes/face/cateye/acc_alt_gray.png and b/img/clothes/face/cateye/acc_alt_gray.png differ
diff --git a/img/clothes/face/cateye/acc_gray.png b/img/clothes/face/cateye/acc_gray.png
index 2778d7aac81c2c818eab815d6118d9d257f3a0b4..52920f4647e84d27e25fa4e60050cecee996a114 100644
Binary files a/img/clothes/face/cateye/acc_gray.png and b/img/clothes/face/cateye/acc_gray.png differ
diff --git a/img/clothes/face/cateye/full_alt_gray.png b/img/clothes/face/cateye/full_alt_gray.png
index b65369fdb581d8d2918dc336ff8e6eeba1682006..87e959931f6b7f09872863fbebc21e4a91480335 100644
Binary files a/img/clothes/face/cateye/full_alt_gray.png and b/img/clothes/face/cateye/full_alt_gray.png differ
diff --git a/img/clothes/face/cateye/full_gray.png b/img/clothes/face/cateye/full_gray.png
index adfd3b4d77e3ede94de032a8b9f39240b696ae86..7ff0b309d0a459e7d6e50d3596757bba709f3ba7 100644
Binary files a/img/clothes/face/cateye/full_gray.png and b/img/clothes/face/cateye/full_gray.png differ
diff --git a/img/clothes/face/clothgag/full_gray.png b/img/clothes/face/clothgag/full_gray.png
index 1d7cecb128da3eef03973e89d003da7f7baea545..87a2859f429bdd07609c1f3c91e6ee4c273ad7ab 100644
Binary files a/img/clothes/face/clothgag/full_gray.png and b/img/clothes/face/clothgag/full_gray.png differ
diff --git a/img/clothes/face/coolshades/acc.png b/img/clothes/face/coolshades/acc.png
index f5d3fca363fa3b0e6a0fe466a790070b45dc4d96..32532c60135bbf48e0c5f91fc147214d31ccd608 100644
Binary files a/img/clothes/face/coolshades/acc.png and b/img/clothes/face/coolshades/acc.png differ
diff --git a/img/clothes/face/coolshades/acc_alt.png b/img/clothes/face/coolshades/acc_alt.png
index 439c3f7c36b0fa1f2a239334a1d6cb05dba0f877..2a5150e3a9aff08d9c349df9ab063522bcbd24c5 100644
Binary files a/img/clothes/face/coolshades/acc_alt.png and b/img/clothes/face/coolshades/acc_alt.png differ
diff --git a/img/clothes/face/coolshades/full_alt_gray.png b/img/clothes/face/coolshades/full_alt_gray.png
index 96036bb4f98dd7421cd7175cffe9e8007c6ca2a4..c3351e725770e16a3c513cb54a3e947af24ac9ef 100644
Binary files a/img/clothes/face/coolshades/full_alt_gray.png and b/img/clothes/face/coolshades/full_alt_gray.png differ
diff --git a/img/clothes/face/coolshades/full_gray.png b/img/clothes/face/coolshades/full_gray.png
index d77016dd778fdb0a97969aa553e87beb015b09fc..dbe40552fbfc71dd29c2f4867fe804126d5102a8 100644
Binary files a/img/clothes/face/coolshades/full_gray.png and b/img/clothes/face/coolshades/full_gray.png differ
diff --git a/img/clothes/face/deepframe/acc.png b/img/clothes/face/deepframe/acc.png
index 39b34cdd87e0354e381bd1d077fbb8377a766e63..9173bcde0f43995ce0192f7697da08baa174b895 100644
Binary files a/img/clothes/face/deepframe/acc.png and b/img/clothes/face/deepframe/acc.png differ
diff --git a/img/clothes/face/deepframe/acc_alt.png b/img/clothes/face/deepframe/acc_alt.png
index 77b0338450e644fffd0ce0a52e7edb4e90163830..77b23064defdc878c5e1a9e707876786cedfe0d8 100644
Binary files a/img/clothes/face/deepframe/acc_alt.png and b/img/clothes/face/deepframe/acc_alt.png differ
diff --git a/img/clothes/face/deepframe/full_alt_gray.png b/img/clothes/face/deepframe/full_alt_gray.png
index 30a85727843ea1823c2734fac51cb0014a77c591..b3da03b1b2735d63f1b17aac046d01de6727106d 100644
Binary files a/img/clothes/face/deepframe/full_alt_gray.png and b/img/clothes/face/deepframe/full_alt_gray.png differ
diff --git a/img/clothes/face/deepframe/full_gray.png b/img/clothes/face/deepframe/full_gray.png
index dda0d1c7f85670f6c2fc6ff3c63b158f9a983e90..4c14bb059abe629a91766717beed635aae66cb9d 100644
Binary files a/img/clothes/face/deepframe/full_gray.png and b/img/clothes/face/deepframe/full_gray.png differ
diff --git a/img/clothes/face/doggymuzzle/full.png b/img/clothes/face/doggymuzzle/full.png
index 32d10c20e224245e7e41a917d4c40a144a1a3f66..4447455cfbbad112d3e310201d1178dccc55c768 100644
Binary files a/img/clothes/face/doggymuzzle/full.png and b/img/clothes/face/doggymuzzle/full.png differ
diff --git a/img/clothes/face/esoteric/full.png b/img/clothes/face/esoteric/full.png
index 304d2663b3c1e811ca6311bab122781c88e64890..b22c915da7a04d78347e4909faa6f2b1790c4cd2 100644
Binary files a/img/clothes/face/esoteric/full.png and b/img/clothes/face/esoteric/full.png differ
diff --git a/img/clothes/face/eyepatch/full_alt_gray.png b/img/clothes/face/eyepatch/full_alt_gray.png
index e13f20ed9dec43bf5c6a3db559cd4d3fb3b635e7..aa592d3fd3507d1c939fecb598d6e2885c06964a 100644
Binary files a/img/clothes/face/eyepatch/full_alt_gray.png and b/img/clothes/face/eyepatch/full_alt_gray.png differ
diff --git a/img/clothes/face/eyepatch/full_gray.png b/img/clothes/face/eyepatch/full_gray.png
index 1d0873e1f858040b9753668226453d61fcd584c5..34c456d728a8210017a194f4412d6641e6a18e68 100644
Binary files a/img/clothes/face/eyepatch/full_gray.png and b/img/clothes/face/eyepatch/full_gray.png differ
diff --git a/img/clothes/face/gag/frayed.png b/img/clothes/face/gag/frayed.png
index b3cc87a91026742acee436230b605cadb253190c..8754b272e4e642134062fd227bce906130a48ee7 100644
Binary files a/img/clothes/face/gag/frayed.png and b/img/clothes/face/gag/frayed.png differ
diff --git a/img/clothes/face/gag/full.png b/img/clothes/face/gag/full.png
index b3cc87a91026742acee436230b605cadb253190c..8754b272e4e642134062fd227bce906130a48ee7 100644
Binary files a/img/clothes/face/gag/full.png and b/img/clothes/face/gag/full.png differ
diff --git a/img/clothes/face/gag/tattered.png b/img/clothes/face/gag/tattered.png
index b3cc87a91026742acee436230b605cadb253190c..8754b272e4e642134062fd227bce906130a48ee7 100644
Binary files a/img/clothes/face/gag/tattered.png and b/img/clothes/face/gag/tattered.png differ
diff --git a/img/clothes/face/gag/torn.png b/img/clothes/face/gag/torn.png
index b3cc87a91026742acee436230b605cadb253190c..8754b272e4e642134062fd227bce906130a48ee7 100644
Binary files a/img/clothes/face/gag/torn.png and b/img/clothes/face/gag/torn.png differ
diff --git a/img/clothes/face/gagblindfold/frayed.png b/img/clothes/face/gagblindfold/frayed.png
index 567e745e1c5ef06058378f4e86527c498def5989..ceecbe1d3f7eb5dfcc1adb15b99579571e427da1 100644
Binary files a/img/clothes/face/gagblindfold/frayed.png and b/img/clothes/face/gagblindfold/frayed.png differ
diff --git a/img/clothes/face/gagblindfold/full.png b/img/clothes/face/gagblindfold/full.png
index 567e745e1c5ef06058378f4e86527c498def5989..ceecbe1d3f7eb5dfcc1adb15b99579571e427da1 100644
Binary files a/img/clothes/face/gagblindfold/full.png and b/img/clothes/face/gagblindfold/full.png differ
diff --git a/img/clothes/face/gagblindfold/tattered.png b/img/clothes/face/gagblindfold/tattered.png
index 567e745e1c5ef06058378f4e86527c498def5989..ceecbe1d3f7eb5dfcc1adb15b99579571e427da1 100644
Binary files a/img/clothes/face/gagblindfold/tattered.png and b/img/clothes/face/gagblindfold/tattered.png differ
diff --git a/img/clothes/face/gagblindfold/torn.png b/img/clothes/face/gagblindfold/torn.png
index 567e745e1c5ef06058378f4e86527c498def5989..ceecbe1d3f7eb5dfcc1adb15b99579571e427da1 100644
Binary files a/img/clothes/face/gagblindfold/torn.png and b/img/clothes/face/gagblindfold/torn.png differ
diff --git a/img/clothes/face/gagfetish/frayed_gray.png b/img/clothes/face/gagfetish/frayed_gray.png
index f64e6dbb07de5522adb8e38d6cb33f792307c641..04cb9a109fa7aa2826fc6459104ea0f58d59b3cb 100644
Binary files a/img/clothes/face/gagfetish/frayed_gray.png and b/img/clothes/face/gagfetish/frayed_gray.png differ
diff --git a/img/clothes/face/gagfetish/full_gray.png b/img/clothes/face/gagfetish/full_gray.png
index c9d327f553ba95ac0d8b114df3bff489a4fcb757..58d1727edb73e8e17a0112c9951c9f2cbc77fbce 100644
Binary files a/img/clothes/face/gagfetish/full_gray.png and b/img/clothes/face/gagfetish/full_gray.png differ
diff --git a/img/clothes/face/gagfetish/tattered_gray.png b/img/clothes/face/gagfetish/tattered_gray.png
index 96f9c9529e4b0570a7d7e581cb720590df5db7e1..b4e18481e450a10b413d590418df170fc08b0d70 100644
Binary files a/img/clothes/face/gagfetish/tattered_gray.png and b/img/clothes/face/gagfetish/tattered_gray.png differ
diff --git a/img/clothes/face/gagfetish/torn_gray.png b/img/clothes/face/gagfetish/torn_gray.png
index 0ae3cecb3d8b42a88adf5f5a299efc674cd35cc5..43e99fe10cea110e80557efcaef2c3b5562633ce 100644
Binary files a/img/clothes/face/gagfetish/torn_gray.png and b/img/clothes/face/gagfetish/torn_gray.png differ
diff --git a/img/clothes/face/gasmask/acc_gray.png b/img/clothes/face/gasmask/acc_gray.png
index d0267e382dd712bcd798d8ca6e872447ed2709f8..0e18a2587074ab393094be5874476ee8cedddf2b 100644
Binary files a/img/clothes/face/gasmask/acc_gray.png and b/img/clothes/face/gasmask/acc_gray.png differ
diff --git a/img/clothes/face/gasmask/frayed_gray.png b/img/clothes/face/gasmask/frayed_gray.png
index 0b5fbdd80004b94414f554010aaba2cbefd5dacf..693beb95cdf9edf68f88c13f9ab8750bea511f7e 100644
Binary files a/img/clothes/face/gasmask/frayed_gray.png and b/img/clothes/face/gasmask/frayed_gray.png differ
diff --git a/img/clothes/face/gasmask/full_gray.png b/img/clothes/face/gasmask/full_gray.png
index 0b5fbdd80004b94414f554010aaba2cbefd5dacf..693beb95cdf9edf68f88c13f9ab8750bea511f7e 100644
Binary files a/img/clothes/face/gasmask/full_gray.png and b/img/clothes/face/gasmask/full_gray.png differ
diff --git a/img/clothes/face/gasmask/tattered_gray.png b/img/clothes/face/gasmask/tattered_gray.png
index 0b5fbdd80004b94414f554010aaba2cbefd5dacf..693beb95cdf9edf68f88c13f9ab8750bea511f7e 100644
Binary files a/img/clothes/face/gasmask/tattered_gray.png and b/img/clothes/face/gasmask/tattered_gray.png differ
diff --git a/img/clothes/face/gasmask/torn_gray.png b/img/clothes/face/gasmask/torn_gray.png
index 0b5fbdd80004b94414f554010aaba2cbefd5dacf..693beb95cdf9edf68f88c13f9ab8750bea511f7e 100644
Binary files a/img/clothes/face/gasmask/torn_gray.png and b/img/clothes/face/gasmask/torn_gray.png differ
diff --git a/img/clothes/face/glasses/acc.png b/img/clothes/face/glasses/acc.png
index 61a39c9ee1ea7a27e51eabd81d8ee0011357a78f..2159feac4dc2b6fde4cd083203b7e9fabdfe0146 100644
Binary files a/img/clothes/face/glasses/acc.png and b/img/clothes/face/glasses/acc.png differ
diff --git a/img/clothes/face/glasses/acc_alt.png b/img/clothes/face/glasses/acc_alt.png
index 70b58c5ebb79da7b2cf32f08742a6de8873c09a7..ae233d9254d0a47b3e7f9d826a75d6c745f82b72 100644
Binary files a/img/clothes/face/glasses/acc_alt.png and b/img/clothes/face/glasses/acc_alt.png differ
diff --git a/img/clothes/face/glasses/full_alt_gray.png b/img/clothes/face/glasses/full_alt_gray.png
index 8b24ec598638ef77e5bc5ab8b5a500ebeccc1eb8..c1adcca765a9396d3ef6252038635e15b3e27689 100644
Binary files a/img/clothes/face/glasses/full_alt_gray.png and b/img/clothes/face/glasses/full_alt_gray.png differ
diff --git a/img/clothes/face/glasses/full_gray.png b/img/clothes/face/glasses/full_gray.png
index 16428fdff281bf6e41d827b4d67d13a39eceb76a..ce2e1189890c687f51d39ad0a0e00ae7df9098ad 100644
Binary files a/img/clothes/face/glasses/full_gray.png and b/img/clothes/face/glasses/full_gray.png differ
diff --git a/img/clothes/face/halfmoon/acc.png b/img/clothes/face/halfmoon/acc.png
index 378e123c2a061c30834c5fe1d44535b16ce94bf1..06990d0b0c9327fed846427445a966d79a0ebb6e 100644
Binary files a/img/clothes/face/halfmoon/acc.png and b/img/clothes/face/halfmoon/acc.png differ
diff --git a/img/clothes/face/halfmoon/acc_alt.png b/img/clothes/face/halfmoon/acc_alt.png
index 54b5113d0d594a3b0f62830d44bf910d542be6a9..58b543e5354be5bc596c73f09dd9111730d47ff9 100644
Binary files a/img/clothes/face/halfmoon/acc_alt.png and b/img/clothes/face/halfmoon/acc_alt.png differ
diff --git a/img/clothes/face/halfmoon/full_alt_gray.png b/img/clothes/face/halfmoon/full_alt_gray.png
index 5cf6241af3f066d9b9fa5e4207b2ed5b2f0d4e3a..01c07cee59c8b009175ee3889b19018b84d483df 100644
Binary files a/img/clothes/face/halfmoon/full_alt_gray.png and b/img/clothes/face/halfmoon/full_alt_gray.png differ
diff --git a/img/clothes/face/halfmoon/full_gray.png b/img/clothes/face/halfmoon/full_gray.png
index d55c75571cce38f72355c9091af1cb35e87067df..2c45bd3cef968be7eed71b3b23f6be60e724248c 100644
Binary files a/img/clothes/face/halfmoon/full_gray.png and b/img/clothes/face/halfmoon/full_gray.png differ
diff --git a/img/clothes/face/heartsunglasses/acc_alt_gray.png b/img/clothes/face/heartsunglasses/acc_alt_gray.png
index b42a92d9ec2007bef5130464089dad9aa098be5d..7ab2d021fff01b9da9382a9f4b798e5ddc3ef08c 100644
Binary files a/img/clothes/face/heartsunglasses/acc_alt_gray.png and b/img/clothes/face/heartsunglasses/acc_alt_gray.png differ
diff --git a/img/clothes/face/heartsunglasses/acc_gray.png b/img/clothes/face/heartsunglasses/acc_gray.png
index 0137b240e79e804f5afc47095097dd60b10ec20b..65d9d80a753683d1fdf1bfea0c37ad4eb071c1a8 100644
Binary files a/img/clothes/face/heartsunglasses/acc_gray.png and b/img/clothes/face/heartsunglasses/acc_gray.png differ
diff --git a/img/clothes/face/heartsunglasses/full_alt_gray.png b/img/clothes/face/heartsunglasses/full_alt_gray.png
index afb399833a6994b12547d8b6661c037bf12ed278..ced4fb110705cb1c820443c6e054ec2f5b0353de 100644
Binary files a/img/clothes/face/heartsunglasses/full_alt_gray.png and b/img/clothes/face/heartsunglasses/full_alt_gray.png differ
diff --git a/img/clothes/face/heartsunglasses/full_gray.png b/img/clothes/face/heartsunglasses/full_gray.png
index 8aa4fe9c8951fb9a627a3217c8c2f5587574d2ac..94c782fd89c8334ee34baaabf7a562ccf33c72ae 100644
Binary files a/img/clothes/face/heartsunglasses/full_gray.png and b/img/clothes/face/heartsunglasses/full_gray.png differ
diff --git a/img/clothes/face/islandermask/frayed.png b/img/clothes/face/islandermask/frayed.png
index d5e8f75f4942fc506a074b93563ca6459268f81c..02de56398a5c2e9342a00776ef5fe677443d1625 100644
Binary files a/img/clothes/face/islandermask/frayed.png and b/img/clothes/face/islandermask/frayed.png differ
diff --git a/img/clothes/face/islandermask/full.png b/img/clothes/face/islandermask/full.png
index d5e8f75f4942fc506a074b93563ca6459268f81c..02de56398a5c2e9342a00776ef5fe677443d1625 100644
Binary files a/img/clothes/face/islandermask/full.png and b/img/clothes/face/islandermask/full.png differ
diff --git a/img/clothes/face/islandermask/tattered.png b/img/clothes/face/islandermask/tattered.png
index d5e8f75f4942fc506a074b93563ca6459268f81c..02de56398a5c2e9342a00776ef5fe677443d1625 100644
Binary files a/img/clothes/face/islandermask/tattered.png and b/img/clothes/face/islandermask/tattered.png differ
diff --git a/img/clothes/face/islandermask/torn.png b/img/clothes/face/islandermask/torn.png
index d5e8f75f4942fc506a074b93563ca6459268f81c..02de56398a5c2e9342a00776ef5fe677443d1625 100644
Binary files a/img/clothes/face/islandermask/torn.png and b/img/clothes/face/islandermask/torn.png differ
diff --git a/img/clothes/face/kittymuzzle/frayed_gray.png b/img/clothes/face/kittymuzzle/frayed_gray.png
index 83470c06816234e6d18a2329217093711702fe10..9adc2dd3ee48a6abd0482926fc2fdcb3e3213358 100644
Binary files a/img/clothes/face/kittymuzzle/frayed_gray.png and b/img/clothes/face/kittymuzzle/frayed_gray.png differ
diff --git a/img/clothes/face/kittymuzzle/full_gray.png b/img/clothes/face/kittymuzzle/full_gray.png
index 83470c06816234e6d18a2329217093711702fe10..9adc2dd3ee48a6abd0482926fc2fdcb3e3213358 100644
Binary files a/img/clothes/face/kittymuzzle/full_gray.png and b/img/clothes/face/kittymuzzle/full_gray.png differ
diff --git a/img/clothes/face/kittymuzzle/tattered_gray.png b/img/clothes/face/kittymuzzle/tattered_gray.png
index 83470c06816234e6d18a2329217093711702fe10..9adc2dd3ee48a6abd0482926fc2fdcb3e3213358 100644
Binary files a/img/clothes/face/kittymuzzle/tattered_gray.png and b/img/clothes/face/kittymuzzle/tattered_gray.png differ
diff --git a/img/clothes/face/kittymuzzle/torn_gray.png b/img/clothes/face/kittymuzzle/torn_gray.png
index 83470c06816234e6d18a2329217093711702fe10..9adc2dd3ee48a6abd0482926fc2fdcb3e3213358 100644
Binary files a/img/clothes/face/kittymuzzle/torn_gray.png and b/img/clothes/face/kittymuzzle/torn_gray.png differ
diff --git a/img/clothes/face/lowframe/acc.png b/img/clothes/face/lowframe/acc.png
index 2c0ca4b3c39aa79c21b097aea9b638fea519e170..cc83e9c53971131a9b3e82043dc042e88fb8aa0a 100644
Binary files a/img/clothes/face/lowframe/acc.png and b/img/clothes/face/lowframe/acc.png differ
diff --git a/img/clothes/face/lowframe/acc_alt.png b/img/clothes/face/lowframe/acc_alt.png
index f7e9766c3644d88d8fba3c4db43090758ab66a1b..05583373413d7ab03a6bf7d44403b1f3a113b49e 100644
Binary files a/img/clothes/face/lowframe/acc_alt.png and b/img/clothes/face/lowframe/acc_alt.png differ
diff --git a/img/clothes/face/lowframe/full_alt_gray.png b/img/clothes/face/lowframe/full_alt_gray.png
index 01cfe11bdee2aa5ca77c4efbcb9b74eb2496a94a..cc603e31875edb09dcd741e59c7c79d94fe152d5 100644
Binary files a/img/clothes/face/lowframe/full_alt_gray.png and b/img/clothes/face/lowframe/full_alt_gray.png differ
diff --git a/img/clothes/face/lowframe/full_gray.png b/img/clothes/face/lowframe/full_gray.png
index 9c4d683b72a44a73237272d793a9e865405e344b..32468f640eeb0153b9138e624e9ccb54bf89d8ee 100644
Binary files a/img/clothes/face/lowframe/full_gray.png and b/img/clothes/face/lowframe/full_gray.png differ
diff --git a/img/clothes/face/medical eyepatch/full_alt_gray.png b/img/clothes/face/medical eyepatch/full_alt_gray.png
index 449607d2228e8a559ad8cd2999b8be907ce743c2..a0ddfa2f6d26240580a6b656594f9ac745b83254 100644
Binary files a/img/clothes/face/medical eyepatch/full_alt_gray.png and b/img/clothes/face/medical eyepatch/full_alt_gray.png differ
diff --git a/img/clothes/face/medical eyepatch/full_gray.png b/img/clothes/face/medical eyepatch/full_gray.png
index b5a733b2c4655633dd8073584df0ee6707078579..f3c730f4c5d7b7533150440d82220e5e3fbbdc7a 100644
Binary files a/img/clothes/face/medical eyepatch/full_gray.png and b/img/clothes/face/medical eyepatch/full_gray.png differ
diff --git a/img/clothes/face/monocle/acc.png b/img/clothes/face/monocle/acc.png
index 3fb70fd88549686a06cdf1ea753cb1c8d83afa0b..a48905e40f9916f25703860058d9a0e8950eb093 100644
Binary files a/img/clothes/face/monocle/acc.png and b/img/clothes/face/monocle/acc.png differ
diff --git a/img/clothes/face/monocle/acc_alt.png b/img/clothes/face/monocle/acc_alt.png
index 13bb937f8587ce7066d8b5db9f3114761db20978..9137822c0ff0a66d6113e29d8df6e9632c5c5593 100644
Binary files a/img/clothes/face/monocle/acc_alt.png and b/img/clothes/face/monocle/acc_alt.png differ
diff --git a/img/clothes/face/monocle/full_alt_gray.png b/img/clothes/face/monocle/full_alt_gray.png
index b0170862502362d504cb1410aebb5dd7855c7cc0..2437279569d956c910ee934dc7f3f3303ebf7286 100644
Binary files a/img/clothes/face/monocle/full_alt_gray.png and b/img/clothes/face/monocle/full_alt_gray.png differ
diff --git a/img/clothes/face/monocle/full_gray.png b/img/clothes/face/monocle/full_gray.png
index 08994845035c593309a220cab778bc3cab152bb5..7eabb41cf17e9f2d17b18fa17a6627a8e2354350 100644
Binary files a/img/clothes/face/monocle/full_gray.png and b/img/clothes/face/monocle/full_gray.png differ
diff --git a/img/clothes/face/mummy/frayed.png b/img/clothes/face/mummy/frayed.png
index 4fd5cf0f63a49e7bb36b1dd5b5a168bc3a55dc5c..0208a84783710918a7ab33dc1d34411a3ff0f97b 100644
Binary files a/img/clothes/face/mummy/frayed.png and b/img/clothes/face/mummy/frayed.png differ
diff --git a/img/clothes/face/mummy/full.png b/img/clothes/face/mummy/full.png
index 4fd5cf0f63a49e7bb36b1dd5b5a168bc3a55dc5c..0208a84783710918a7ab33dc1d34411a3ff0f97b 100644
Binary files a/img/clothes/face/mummy/full.png and b/img/clothes/face/mummy/full.png differ
diff --git a/img/clothes/face/mummy/tattered.png b/img/clothes/face/mummy/tattered.png
index 4fd5cf0f63a49e7bb36b1dd5b5a168bc3a55dc5c..0208a84783710918a7ab33dc1d34411a3ff0f97b 100644
Binary files a/img/clothes/face/mummy/tattered.png and b/img/clothes/face/mummy/tattered.png differ
diff --git a/img/clothes/face/mummy/torn.png b/img/clothes/face/mummy/torn.png
index 4fd5cf0f63a49e7bb36b1dd5b5a168bc3a55dc5c..0208a84783710918a7ab33dc1d34411a3ff0f97b 100644
Binary files a/img/clothes/face/mummy/torn.png and b/img/clothes/face/mummy/torn.png differ
diff --git a/img/clothes/face/muzzle/frayed.png b/img/clothes/face/muzzle/frayed.png
index d168ae4f95e53096a3ebe0d9b9441b6c200c527d..d07262da9c1a205d22e510837cbcda76f2d4a3d2 100644
Binary files a/img/clothes/face/muzzle/frayed.png and b/img/clothes/face/muzzle/frayed.png differ
diff --git a/img/clothes/face/muzzle/full.png b/img/clothes/face/muzzle/full.png
index d168ae4f95e53096a3ebe0d9b9441b6c200c527d..d07262da9c1a205d22e510837cbcda76f2d4a3d2 100644
Binary files a/img/clothes/face/muzzle/full.png and b/img/clothes/face/muzzle/full.png differ
diff --git a/img/clothes/face/muzzle/tattered.png b/img/clothes/face/muzzle/tattered.png
index d168ae4f95e53096a3ebe0d9b9441b6c200c527d..d07262da9c1a205d22e510837cbcda76f2d4a3d2 100644
Binary files a/img/clothes/face/muzzle/tattered.png and b/img/clothes/face/muzzle/tattered.png differ
diff --git a/img/clothes/face/muzzle/torn.png b/img/clothes/face/muzzle/torn.png
index d168ae4f95e53096a3ebe0d9b9441b6c200c527d..d07262da9c1a205d22e510837cbcda76f2d4a3d2 100644
Binary files a/img/clothes/face/muzzle/torn.png and b/img/clothes/face/muzzle/torn.png differ
diff --git a/img/clothes/face/muzzlefetish/frayed_gray.png b/img/clothes/face/muzzlefetish/frayed_gray.png
index d168ae4f95e53096a3ebe0d9b9441b6c200c527d..d07262da9c1a205d22e510837cbcda76f2d4a3d2 100644
Binary files a/img/clothes/face/muzzlefetish/frayed_gray.png and b/img/clothes/face/muzzlefetish/frayed_gray.png differ
diff --git a/img/clothes/face/muzzlefetish/full_gray.png b/img/clothes/face/muzzlefetish/full_gray.png
index d168ae4f95e53096a3ebe0d9b9441b6c200c527d..d07262da9c1a205d22e510837cbcda76f2d4a3d2 100644
Binary files a/img/clothes/face/muzzlefetish/full_gray.png and b/img/clothes/face/muzzlefetish/full_gray.png differ
diff --git a/img/clothes/face/muzzlefetish/tattered_gray.png b/img/clothes/face/muzzlefetish/tattered_gray.png
index d168ae4f95e53096a3ebe0d9b9441b6c200c527d..d07262da9c1a205d22e510837cbcda76f2d4a3d2 100644
Binary files a/img/clothes/face/muzzlefetish/tattered_gray.png and b/img/clothes/face/muzzlefetish/tattered_gray.png differ
diff --git a/img/clothes/face/muzzlefetish/torn_gray.png b/img/clothes/face/muzzlefetish/torn_gray.png
index d168ae4f95e53096a3ebe0d9b9441b6c200c527d..d07262da9c1a205d22e510837cbcda76f2d4a3d2 100644
Binary files a/img/clothes/face/muzzlefetish/torn_gray.png and b/img/clothes/face/muzzlefetish/torn_gray.png differ
diff --git a/img/clothes/face/pantygag/full_gray.png b/img/clothes/face/pantygag/full_gray.png
index d26a9d3aa012210c932decdc4c92c7b6e6d5e5d1..5c9e032275b0e85d2c91367ad0a21bb8cc437240 100644
Binary files a/img/clothes/face/pantygag/full_gray.png and b/img/clothes/face/pantygag/full_gray.png differ
diff --git a/img/clothes/face/penisgag/full.png b/img/clothes/face/penisgag/full.png
index d5c4893e20a339a7e01f2e0135fef363be156103..8d7f8269b5b8c688cda4ac7f6996dd374396e1ae 100644
Binary files a/img/clothes/face/penisgag/full.png and b/img/clothes/face/penisgag/full.png differ
diff --git a/img/clothes/face/punk/acc.png b/img/clothes/face/punk/acc.png
index 1f75999456ade072f729e8a925c46f008be5de6e..dd61492636b489e9e0e1240ea8fd914bd47e82cb 100644
Binary files a/img/clothes/face/punk/acc.png and b/img/clothes/face/punk/acc.png differ
diff --git a/img/clothes/face/punk/acc_alt_gray.png b/img/clothes/face/punk/acc_alt_gray.png
index c702809aa9588ee0e20dfec2645774c2e4d17256..653b917055e68d74b2c00ebb8f61169927e41fb7 100644
Binary files a/img/clothes/face/punk/acc_alt_gray.png and b/img/clothes/face/punk/acc_alt_gray.png differ
diff --git a/img/clothes/face/punk/acc_gray.png b/img/clothes/face/punk/acc_gray.png
index e0254240ec30cc685efeff297d87ded1127aecab..f8f01a44a41d84c469d826302929f68080459054 100644
Binary files a/img/clothes/face/punk/acc_gray.png and b/img/clothes/face/punk/acc_gray.png differ
diff --git a/img/clothes/face/punk/full_alt_gray.png b/img/clothes/face/punk/full_alt_gray.png
index f68899a037ad336a6d4f9c4887c10791c79802ab..db584d9e318bbebd69d07de1ba38c740ab5d7283 100644
Binary files a/img/clothes/face/punk/full_alt_gray.png and b/img/clothes/face/punk/full_alt_gray.png differ
diff --git a/img/clothes/face/punk/full_gray.png b/img/clothes/face/punk/full_gray.png
index 971aec8497b399942548edb2c4838682a0858e72..2e95068a07d8977ccac2ec52e02ad8382f06a488 100644
Binary files a/img/clothes/face/punk/full_gray.png and b/img/clothes/face/punk/full_gray.png differ
diff --git a/img/clothes/face/reading/acc.png b/img/clothes/face/reading/acc.png
index cd148ed34a074c4a408e90c36502d063fdc4205c..697813ee447a9ba5da9ad34fee09d758da1ab4b0 100644
Binary files a/img/clothes/face/reading/acc.png and b/img/clothes/face/reading/acc.png differ
diff --git a/img/clothes/face/reading/acc_alt.png b/img/clothes/face/reading/acc_alt.png
index ff4237cd0510918d93b365f5d9be535c144a19b6..d8e13c9713fad785b30508de9dd5d7ad70e17347 100644
Binary files a/img/clothes/face/reading/acc_alt.png and b/img/clothes/face/reading/acc_alt.png differ
diff --git a/img/clothes/face/reading/full_alt_gray.png b/img/clothes/face/reading/full_alt_gray.png
index d0be39780542b301f6062cf3d41e66029bd60ff8..5edf7dd6d02061c85dc1169dc3948ca527ca0b8a 100644
Binary files a/img/clothes/face/reading/full_alt_gray.png and b/img/clothes/face/reading/full_alt_gray.png differ
diff --git a/img/clothes/face/reading/full_gray.png b/img/clothes/face/reading/full_gray.png
index 57bbe6f3a27632ce877bbfd7e0d4b1671874940b..d49699d5d3e72e32af1051992ae3dfe883fe35bc 100644
Binary files a/img/clothes/face/reading/full_gray.png and b/img/clothes/face/reading/full_gray.png differ
diff --git a/img/clothes/face/round/acc.png b/img/clothes/face/round/acc.png
index 704cd7e995a7647b312334fdb2de7c17add769a3..ae42435ee045bc09ca5814c26a3882bf01fed1be 100644
Binary files a/img/clothes/face/round/acc.png and b/img/clothes/face/round/acc.png differ
diff --git a/img/clothes/face/round/acc_alt.png b/img/clothes/face/round/acc_alt.png
index 256fa0dff51bd03d14032caf747c5185a96a2fb0..67dce26ee466bd57e3a227415af687756ff2ed54 100644
Binary files a/img/clothes/face/round/acc_alt.png and b/img/clothes/face/round/acc_alt.png differ
diff --git a/img/clothes/face/round/full_alt_gray.png b/img/clothes/face/round/full_alt_gray.png
index 2f4892be21830f1cbae4521b14c97303ebd0e234..ea2eb6fa62e68abb09a4ecbdbdbe1a5f6022214c 100644
Binary files a/img/clothes/face/round/full_alt_gray.png and b/img/clothes/face/round/full_alt_gray.png differ
diff --git a/img/clothes/face/round/full_gray.png b/img/clothes/face/round/full_gray.png
index 03b3d2e0c49f18a973e265c9b25141859182940d..4ca08957ae69a76345da9da44a31abab05656b1d 100644
Binary files a/img/clothes/face/round/full_gray.png and b/img/clothes/face/round/full_gray.png differ
diff --git a/img/clothes/face/shield/acc_alt_gray.png b/img/clothes/face/shield/acc_alt_gray.png
index 66afca74d7f0af5353a0a6e82709c9b5e11fd161..416494cb11bdf43955f6d54006ce477880f42c1c 100644
Binary files a/img/clothes/face/shield/acc_alt_gray.png and b/img/clothes/face/shield/acc_alt_gray.png differ
diff --git a/img/clothes/face/shield/acc_gray.png b/img/clothes/face/shield/acc_gray.png
index ca006f63c10508edb91c19d094e106b6e4c2428d..8f6599dda2b131cfb995b345c4851150c71e9a51 100644
Binary files a/img/clothes/face/shield/acc_gray.png and b/img/clothes/face/shield/acc_gray.png differ
diff --git a/img/clothes/face/shield/full_alt_gray.png b/img/clothes/face/shield/full_alt_gray.png
index d013b151f08749b5d43278632aed98720156f84f..ff99f16a1411c3d26096b4c556e1059f54bccb55 100644
Binary files a/img/clothes/face/shield/full_alt_gray.png and b/img/clothes/face/shield/full_alt_gray.png differ
diff --git a/img/clothes/face/shield/full_gray.png b/img/clothes/face/shield/full_gray.png
index 8a21b41b90b7281a5c87daa8c03ae3a99e9fc9ec..a0dbbaeea7691b49d0e55428102261c2ad3d66a6 100644
Binary files a/img/clothes/face/shield/full_gray.png and b/img/clothes/face/shield/full_gray.png differ
diff --git a/img/clothes/face/skele/full.png b/img/clothes/face/skele/full.png
index 35e944f099e64b9bcc9162b42171034dba23d398..125060a3300c9450a65a53e442d89852316708f4 100644
Binary files a/img/clothes/face/skele/full.png and b/img/clothes/face/skele/full.png differ
diff --git a/img/clothes/face/skulmask/frayed.png b/img/clothes/face/skulmask/frayed.png
index 0976fd4b546af1cb642df58bd30caab5a492d152..5ec66d30bc7b72c359be9bc70489b8c7738d6ecb 100644
Binary files a/img/clothes/face/skulmask/frayed.png and b/img/clothes/face/skulmask/frayed.png differ
diff --git a/img/clothes/face/skulmask/full.png b/img/clothes/face/skulmask/full.png
index 36e9fed08bd393ba2549d5c9837a460edaaf4cb9..7a98dce24305d18ae0f795eaadb84961a36a055e 100644
Binary files a/img/clothes/face/skulmask/full.png and b/img/clothes/face/skulmask/full.png differ
diff --git a/img/clothes/face/skulmask/tattered.png b/img/clothes/face/skulmask/tattered.png
index dac318968b4f9d73cfe582e53da2dba3fa3455d8..fe5184ab88e4a7e23920719281786b674cc55adb 100644
Binary files a/img/clothes/face/skulmask/tattered.png and b/img/clothes/face/skulmask/tattered.png differ
diff --git a/img/clothes/face/skulmask/torn.png b/img/clothes/face/skulmask/torn.png
index ad7c3187140d54912304a60d7803708da1d4d8e8..cf9a1db6b2ed8b6e8fb3daace42265de8392514c 100644
Binary files a/img/clothes/face/skulmask/torn.png and b/img/clothes/face/skulmask/torn.png differ
diff --git a/img/clothes/face/square/acc.png b/img/clothes/face/square/acc.png
index ba40e91574cc3fa46142456f9d10e7ae7bcfec97..aa4ff818a539fcd4ade75a7f64a284f53dee6794 100644
Binary files a/img/clothes/face/square/acc.png and b/img/clothes/face/square/acc.png differ
diff --git a/img/clothes/face/square/acc_alt_gray.png b/img/clothes/face/square/acc_alt_gray.png
index 5a85ed2de77c9bbde98e36485fa358c3cb64781d..5ab2a8ca547985e317c8e8cb00ada11d223ba3fb 100644
Binary files a/img/clothes/face/square/acc_alt_gray.png and b/img/clothes/face/square/acc_alt_gray.png differ
diff --git a/img/clothes/face/square/acc_gray.png b/img/clothes/face/square/acc_gray.png
index f4b29936cf4a2f23e1ba10585e0b54cbe93733e5..ccbe6cf75b91a2ccdb342127db256b688229f697 100644
Binary files a/img/clothes/face/square/acc_gray.png and b/img/clothes/face/square/acc_gray.png differ
diff --git a/img/clothes/face/square/full_alt_gray.png b/img/clothes/face/square/full_alt_gray.png
index 27b0eccae849d60b24a1d22d91d35f0b1e6ee659..6101b6769aa215d859f44e86c5aec32660f2841b 100644
Binary files a/img/clothes/face/square/full_alt_gray.png and b/img/clothes/face/square/full_alt_gray.png differ
diff --git a/img/clothes/face/square/full_gray.png b/img/clothes/face/square/full_gray.png
index fc24f9687aeacbcd5bb20a382d4eb91ba064b806..0009cff847183be528f0df3c89ccc21ae34f3576 100644
Binary files a/img/clothes/face/square/full_gray.png and b/img/clothes/face/square/full_gray.png differ
diff --git a/img/clothes/face/surgicalmask/frayed_gray.png b/img/clothes/face/surgicalmask/frayed_gray.png
index a5aa253f8efcdd79ad55b3d8e1649bdf5792693f..24ff7b3285e8aa15340a81773dec335ec558026b 100644
Binary files a/img/clothes/face/surgicalmask/frayed_gray.png and b/img/clothes/face/surgicalmask/frayed_gray.png differ
diff --git a/img/clothes/face/surgicalmask/full_gray.png b/img/clothes/face/surgicalmask/full_gray.png
index a89a481172450df807d779ab13975e1c679a2f40..7c3ec47ebaeef01431c2ce87cd2b39c41b7df0ab 100644
Binary files a/img/clothes/face/surgicalmask/full_gray.png and b/img/clothes/face/surgicalmask/full_gray.png differ
diff --git a/img/clothes/face/surgicalmask/tattered_gray.png b/img/clothes/face/surgicalmask/tattered_gray.png
index 9fdb89a9e6ab578dbfe7499ea7139561cd232042..7031df7c2c6ff43ff27b4f435e1da00817516c4a 100644
Binary files a/img/clothes/face/surgicalmask/tattered_gray.png and b/img/clothes/face/surgicalmask/tattered_gray.png differ
diff --git a/img/clothes/face/surgicalmask/torn_gray.png b/img/clothes/face/surgicalmask/torn_gray.png
index 8810f05936c3e0bce050cd0dc74b4af547e7bbec..1717b5dde888511c1f931c85695563502dd17e47 100644
Binary files a/img/clothes/face/surgicalmask/torn_gray.png and b/img/clothes/face/surgicalmask/torn_gray.png differ
diff --git a/img/clothes/face/swimgoggles/acc_alt_gray.png b/img/clothes/face/swimgoggles/acc_alt_gray.png
index b17081e13a80510aab03dc237cb981f54204c520..217a2fd14ec2c098311d3ebda46587334dcc125b 100644
Binary files a/img/clothes/face/swimgoggles/acc_alt_gray.png and b/img/clothes/face/swimgoggles/acc_alt_gray.png differ
diff --git a/img/clothes/face/swimgoggles/acc_gray.png b/img/clothes/face/swimgoggles/acc_gray.png
index 2ff11b8d8424d9202bafee905da8313617e2c813..12494b516f4de6f4b59d10e8201560334851276c 100644
Binary files a/img/clothes/face/swimgoggles/acc_gray.png and b/img/clothes/face/swimgoggles/acc_gray.png differ
diff --git a/img/clothes/face/swimgoggles/full_alt_gray.png b/img/clothes/face/swimgoggles/full_alt_gray.png
index 753ed5a251c4578d9e297ede6a8c43fe3df346c0..05d7555a2bcc41cce636c7dafcf2ed070d4f816c 100644
Binary files a/img/clothes/face/swimgoggles/full_alt_gray.png and b/img/clothes/face/swimgoggles/full_alt_gray.png differ
diff --git a/img/clothes/face/swimgoggles/full_gray.png b/img/clothes/face/swimgoggles/full_gray.png
index 10577244f0214f24f4b74d58c4c18fffbebdbc1e..4c3209435d5a9aa38e3998b37e688ad421280515 100644
Binary files a/img/clothes/face/swimgoggles/full_gray.png and b/img/clothes/face/swimgoggles/full_gray.png differ
diff --git a/img/clothes/face/tapegag/full.png b/img/clothes/face/tapegag/full.png
index c3188d02e2eeea2a0cb17c8cbc63c88105afff9d..89b6b77295d54b08345883fc8364c5297b13ef07 100644
Binary files a/img/clothes/face/tapegag/full.png and b/img/clothes/face/tapegag/full.png differ
diff --git a/img/clothes/face/wolfmuzzle/acc.png b/img/clothes/face/wolfmuzzle/acc.png
index e89b797d2e37debd2a37d746bcf142c47a0aed6c..1187d0fc26110c18ef78b45292ccf11c33bcd199 100644
Binary files a/img/clothes/face/wolfmuzzle/acc.png and b/img/clothes/face/wolfmuzzle/acc.png differ
diff --git a/img/clothes/face/wolfmuzzle/full_gray.png b/img/clothes/face/wolfmuzzle/full_gray.png
index 7f5dcfa800f6956740f4f8d51f02453070830559..79cf96523525dfebafee9ea498309cc8cee15673 100644
Binary files a/img/clothes/face/wolfmuzzle/full_gray.png and b/img/clothes/face/wolfmuzzle/full_gray.png differ
diff --git a/img/clothes/feet/anklecuffs/full.png b/img/clothes/feet/anklecuffs/full.png
index a696042501d3d1aee3c3c546273e662fe57358e2..7b77456b6ab09a0084343ee11ae61e61b873eb88 100644
Binary files a/img/clothes/feet/anklecuffs/full.png and b/img/clothes/feet/anklecuffs/full.png differ
diff --git a/img/clothes/feet/ballchain/full.png b/img/clothes/feet/ballchain/full.png
index 55e6e1bb6a8e322e3693dc0d2221077df8e33b98..4942c0703ebf0a9f3acf339bb12d54be6f764572 100644
Binary files a/img/clothes/feet/ballchain/full.png and b/img/clothes/feet/ballchain/full.png differ
diff --git a/img/clothes/feet/belly/full_gray.png b/img/clothes/feet/belly/full_gray.png
index 4583c5f1fff45dbef4b3ec63f3d615fad975a28d..bde01abac6ac87856d86260aa457607c235914f1 100644
Binary files a/img/clothes/feet/belly/full_gray.png and b/img/clothes/feet/belly/full_gray.png differ
diff --git a/img/clothes/feet/bootheels/full_gray.png b/img/clothes/feet/bootheels/full_gray.png
index e0cbd3e96f4f7cf52a3afec0e940222dbe270600..1cf699ca28f3c8370f6868937b47753e166a45b4 100644
Binary files a/img/clothes/feet/bootheels/full_gray.png and b/img/clothes/feet/bootheels/full_gray.png differ
diff --git a/img/clothes/feet/bootheels/mask.png b/img/clothes/feet/bootheels/mask.png
index 424e24d1bb652ccb6abecce4261773720a10bbcd..c951d0069cb892256e8b940834dd8026cf225424 100644
Binary files a/img/clothes/feet/bootheels/mask.png and b/img/clothes/feet/bootheels/mask.png differ
diff --git a/img/clothes/feet/bunny/full.png b/img/clothes/feet/bunny/full.png
index 6faa8921e57475f8d451790b5e5b875bb83c9e6f..f8d107ac99d73074eafa3f9405ade302491b82d2 100644
Binary files a/img/clothes/feet/bunny/full.png and b/img/clothes/feet/bunny/full.png differ
diff --git a/img/clothes/feet/canvas loafers/acc_gray.png b/img/clothes/feet/canvas loafers/acc_gray.png
index f26ae765b8c36c171f370576b1fb074183dec31a..771af0214555a7367349c63da48349e942429669 100644
Binary files a/img/clothes/feet/canvas loafers/acc_gray.png and b/img/clothes/feet/canvas loafers/acc_gray.png differ
diff --git a/img/clothes/feet/canvas loafers/full_gray.png b/img/clothes/feet/canvas loafers/full_gray.png
index 0d89eb2e124c40b0eb1f386d604b5255edc66709..68e489c8fceaa39ebe97c8dc4e36fee834c68d3a 100644
Binary files a/img/clothes/feet/canvas loafers/full_gray.png and b/img/clothes/feet/canvas loafers/full_gray.png differ
diff --git a/img/clothes/feet/combat/full.png b/img/clothes/feet/combat/full.png
index 0a8530d99616173bc48481536081baae0d522bbd..fed6847299979a9787c99dbdea115d188945d676 100644
Binary files a/img/clothes/feet/combat/full.png and b/img/clothes/feet/combat/full.png differ
diff --git a/img/clothes/feet/combat/mask.png b/img/clothes/feet/combat/mask.png
index 83ff42dfc3ef53c0e775d470c3afc88d95819a5c..9aa858c58170772575a9e0441dc8bdf19bee8389 100644
Binary files a/img/clothes/feet/combat/mask.png and b/img/clothes/feet/combat/mask.png differ
diff --git a/img/clothes/feet/cordovanloafers/full.png b/img/clothes/feet/cordovanloafers/full.png
index d3599ce2322e7ca3f3cb54c2f3b1cdd6223bc93a..b5a230cd75eb83a1271200f209ed9241033732da 100644
Binary files a/img/clothes/feet/cordovanloafers/full.png and b/img/clothes/feet/cordovanloafers/full.png differ
diff --git a/img/clothes/feet/courtheels/full_gray.png b/img/clothes/feet/courtheels/full_gray.png
index 2b9f0899ec9d1cd577b6b26812747ba348866622..7d448dfeb3806762c3b58a1bcf776c5f4fd7d243 100644
Binary files a/img/clothes/feet/courtheels/full_gray.png and b/img/clothes/feet/courtheels/full_gray.png differ
diff --git a/img/clothes/feet/cowboy/full.png b/img/clothes/feet/cowboy/full.png
index 7a6fe0a3d3708a1a3817371152776862dceecf20..c67167ce6518863e741176db23b88ca86c12629e 100644
Binary files a/img/clothes/feet/cowboy/full.png and b/img/clothes/feet/cowboy/full.png differ
diff --git a/img/clothes/feet/cowboy/mask.png b/img/clothes/feet/cowboy/mask.png
index 2dd30db41e8af0910bd3dc33116a4df2ad14b4ec..9e0359311a0c21ce1ff9334f660a8daa8547cbf7 100644
Binary files a/img/clothes/feet/cowboy/mask.png and b/img/clothes/feet/cowboy/mask.png differ
diff --git a/img/clothes/feet/dresssandals/full_gray.png b/img/clothes/feet/dresssandals/full_gray.png
index 7b050458d6c75b2267b02db58afc367d4dcba6b7..c2276a0818ed01d010d7ce09ecacbf42947fa8bb 100644
Binary files a/img/clothes/feet/dresssandals/full_gray.png and b/img/clothes/feet/dresssandals/full_gray.png differ
diff --git a/img/clothes/feet/field/full.png b/img/clothes/feet/field/full.png
index aab5817c54fe97b3d267a8a2022c1e5ca2d2bb7f..06fdb0425282bf3a4e66211e2d70939e90a5f3e0 100644
Binary files a/img/clothes/feet/field/full.png and b/img/clothes/feet/field/full.png differ
diff --git a/img/clothes/feet/field/mask.png b/img/clothes/feet/field/mask.png
index 1ae9d48f043d8f3ec87d10dc7c5893d196177125..9c934cf61ced7c61ec310b5ddb05465dde1e3cc6 100644
Binary files a/img/clothes/feet/field/mask.png and b/img/clothes/feet/field/mask.png differ
diff --git a/img/clothes/feet/flippers/full_gray.png b/img/clothes/feet/flippers/full_gray.png
index 964c9b8be5a48409e28e654cf1c5e19c480a2436..b1a33d7795b91b91e55cfc0078ac77ab113b445f 100644
Binary files a/img/clothes/feet/flippers/full_gray.png and b/img/clothes/feet/flippers/full_gray.png differ
diff --git a/img/clothes/feet/fur_boots/acc_gray.png b/img/clothes/feet/fur_boots/acc_gray.png
index 1de7d4952add768892da8cfd29bf9e02f7c1d2a6..5a4fb7776103c7b276ec55e00d99c71f5b6a31cf 100644
Binary files a/img/clothes/feet/fur_boots/acc_gray.png and b/img/clothes/feet/fur_boots/acc_gray.png differ
diff --git a/img/clothes/feet/fur_boots/full_gray.png b/img/clothes/feet/fur_boots/full_gray.png
index 539f8d1f1f3a301b2ee6df61b72cea4827256805..56900a596333ddefea0f33327b28510a33acfc70 100644
Binary files a/img/clothes/feet/fur_boots/full_gray.png and b/img/clothes/feet/fur_boots/full_gray.png differ
diff --git a/img/clothes/feet/fur_boots/mask.png b/img/clothes/feet/fur_boots/mask.png
index 1390eaf8b158fcc1d10f07deacfa3e61952d1e68..c9644e62b947ece830c4c0df10dcccd655decea7 100644
Binary files a/img/clothes/feet/fur_boots/mask.png and b/img/clothes/feet/fur_boots/mask.png differ
diff --git a/img/clothes/feet/geta/acc.png b/img/clothes/feet/geta/acc.png
index dcaa85343a92aaae4176f0feaf04d7f217a23e60..c17dedd9717b6d193c2388f62661cf7ed8c4ee04 100644
Binary files a/img/clothes/feet/geta/acc.png and b/img/clothes/feet/geta/acc.png differ
diff --git a/img/clothes/feet/geta/full_gray.png b/img/clothes/feet/geta/full_gray.png
index 7ec1d37069dc59275ed6ad21fa7647db335319ec..0fc94680e1510caa80c89efd9de28ec7ff2d49fe 100644
Binary files a/img/clothes/feet/geta/full_gray.png and b/img/clothes/feet/geta/full_gray.png differ
diff --git a/img/clothes/feet/hightops/full_gray.png b/img/clothes/feet/hightops/full_gray.png
index cbe6cc8dcc7326ca235b986437096805f7208947..f88dedf18edc6d203c9cdb000bee82552a70fbad 100644
Binary files a/img/clothes/feet/hightops/full_gray.png and b/img/clothes/feet/hightops/full_gray.png differ
diff --git a/img/clothes/feet/horsebitloafers/full.png b/img/clothes/feet/horsebitloafers/full.png
index 9a72aea81376c434597b769ad5c7ad029ab726e6..2067fac104c36b56f7bca95012d66bd410ee6fdb 100644
Binary files a/img/clothes/feet/horsebitloafers/full.png and b/img/clothes/feet/horsebitloafers/full.png differ
diff --git a/img/clothes/feet/iceskates/full_gray.png b/img/clothes/feet/iceskates/full_gray.png
index e8c806199d64de3d894d4f07d343434f4482b0ed..f4f108ec5c9474924f0a4d3e33f76d464a08ed08 100644
Binary files a/img/clothes/feet/iceskates/full_gray.png and b/img/clothes/feet/iceskates/full_gray.png differ
diff --git a/img/clothes/feet/iceskates/mask.png b/img/clothes/feet/iceskates/mask.png
index 83ff42dfc3ef53c0e775d470c3afc88d95819a5c..9aa858c58170772575a9e0441dc8bdf19bee8389 100644
Binary files a/img/clothes/feet/iceskates/mask.png and b/img/clothes/feet/iceskates/mask.png differ
diff --git a/img/clothes/feet/kittenheels/full_gray.png b/img/clothes/feet/kittenheels/full_gray.png
index 8e201f528f8634644cd8c39def3651423a8ea464..b9be9374b9bf3b17cc0cdb48ebb7dc63ec014c97 100644
Binary files a/img/clothes/feet/kittenheels/full_gray.png and b/img/clothes/feet/kittenheels/full_gray.png differ
diff --git a/img/clothes/feet/lightuptrainers/acc.png b/img/clothes/feet/lightuptrainers/acc.png
index 95a1985418b040019f149bb8d7a9bfb22cc96a66..73ad9fd9f7dc72496896cc4c43a531b59d0ab96b 100644
Binary files a/img/clothes/feet/lightuptrainers/acc.png and b/img/clothes/feet/lightuptrainers/acc.png differ
diff --git a/img/clothes/feet/lightuptrainers/full_gray.png b/img/clothes/feet/lightuptrainers/full_gray.png
index 0452ac213fa970004671bac2ff4c0f683e5e65f7..88f305ee9f795425937507ff6787ca7b2d27f2ea 100644
Binary files a/img/clothes/feet/lightuptrainers/full_gray.png and b/img/clothes/feet/lightuptrainers/full_gray.png differ
diff --git a/img/clothes/feet/long/full_gray.png b/img/clothes/feet/long/full_gray.png
index fb7fc390cb55a79a50e8988005248389bfa75aba..b475088d52feb7e141500b88021b94459d149887 100644
Binary files a/img/clothes/feet/long/full_gray.png and b/img/clothes/feet/long/full_gray.png differ
diff --git a/img/clothes/feet/long/mask.png b/img/clothes/feet/long/mask.png
index f945fbb492cb8083551789c61a2475c12be46371..3dda5d9e242f8eacb1ff523e78fd26003711d7fa 100644
Binary files a/img/clothes/feet/long/mask.png and b/img/clothes/feet/long/mask.png differ
diff --git a/img/clothes/feet/maryjanes/acc_gray.png b/img/clothes/feet/maryjanes/acc_gray.png
index 044b9326e777321bc0d4ab451e28e343f06e59b6..a579d2f7b19f2f64ea01fc89d38481886727b097 100644
Binary files a/img/clothes/feet/maryjanes/acc_gray.png and b/img/clothes/feet/maryjanes/acc_gray.png differ
diff --git a/img/clothes/feet/maryjanes/full_gray.png b/img/clothes/feet/maryjanes/full_gray.png
index 5470ae0a95f9f61c1c810aa5af6805573d4cb762..f09016df8a6f9ecfa3ad93531a37398a0ff7bec5 100644
Binary files a/img/clothes/feet/maryjanes/full_gray.png and b/img/clothes/feet/maryjanes/full_gray.png differ
diff --git a/img/clothes/feet/paddock/full.png b/img/clothes/feet/paddock/full.png
index 7b64ab8b631b129c3228fa3e7ab5ad1800b0ee79..014ca1ba4b686bef9426c8c6be46f0c79c77d939 100644
Binary files a/img/clothes/feet/paddock/full.png and b/img/clothes/feet/paddock/full.png differ
diff --git a/img/clothes/feet/paddock/mask.png b/img/clothes/feet/paddock/mask.png
index 935528c3f7cdc0ec98acb2ef09652a5ad08a81b4..e4d233b58dfc80722976ae9cab4fe83d00b47288 100644
Binary files a/img/clothes/feet/paddock/mask.png and b/img/clothes/feet/paddock/mask.png differ
diff --git a/img/clothes/feet/platformheels/full_gray.png b/img/clothes/feet/platformheels/full_gray.png
index 7e66edaf2666be13e0bb74b62d526fae0036a39c..ce43e921d8dbe2e989214f7ff19c3d8193e97095 100644
Binary files a/img/clothes/feet/platformheels/full_gray.png and b/img/clothes/feet/platformheels/full_gray.png differ
diff --git a/img/clothes/feet/platformheels/mask.png b/img/clothes/feet/platformheels/mask.png
index 8422e78f70e15be68032ba4dd87bef75cf751d9e..9824d81a87b062150f8cd73146da67619d442739 100644
Binary files a/img/clothes/feet/platformheels/mask.png and b/img/clothes/feet/platformheels/mask.png differ
diff --git a/img/clothes/feet/platformmaryjanes/acc_gray.png b/img/clothes/feet/platformmaryjanes/acc_gray.png
index f0226793772fb6cfb4ac2d399082842c74d93655..a579d2f7b19f2f64ea01fc89d38481886727b097 100644
Binary files a/img/clothes/feet/platformmaryjanes/acc_gray.png and b/img/clothes/feet/platformmaryjanes/acc_gray.png differ
diff --git a/img/clothes/feet/platformmaryjanes/full_gray.png b/img/clothes/feet/platformmaryjanes/full_gray.png
index a2c0fa24e9a216f57704c654350af7275332170b..fca1c34d899e8efe1f60434ddaea86d6cf028f93 100644
Binary files a/img/clothes/feet/platformmaryjanes/full_gray.png and b/img/clothes/feet/platformmaryjanes/full_gray.png differ
diff --git a/img/clothes/feet/sandals/acc.png b/img/clothes/feet/sandals/acc.png
index e08e12090097e480ba2caf5038a674bd0914abbd..a73f9fcaaac085ea667dff8fd8f73147d0a09e81 100644
Binary files a/img/clothes/feet/sandals/acc.png and b/img/clothes/feet/sandals/acc.png differ
diff --git a/img/clothes/feet/sandals/full_gray.png b/img/clothes/feet/sandals/full_gray.png
index e3823f95da7eff6484ef25a3a8bf10477c2f7d79..7cacd194899baca4a8cd5aebc1e588a88da59c13 100644
Binary files a/img/clothes/feet/sandals/full_gray.png and b/img/clothes/feet/sandals/full_gray.png differ
diff --git a/img/clothes/feet/schoolshoes/full.png b/img/clothes/feet/schoolshoes/full.png
index 9015591546caa293ca0d010206319a6fd948bf5a..14304b993d1909f72ce80e3608342a18e472f0aa 100644
Binary files a/img/clothes/feet/schoolshoes/full.png and b/img/clothes/feet/schoolshoes/full.png differ
diff --git a/img/clothes/feet/stripperheels/acc_gray.png b/img/clothes/feet/stripperheels/acc_gray.png
index a0bacab7fa102897510e613610811dd6ab7e7a99..9195ba432b5a01034d3e1efcbee9ef0ae75c0886 100644
Binary files a/img/clothes/feet/stripperheels/acc_gray.png and b/img/clothes/feet/stripperheels/acc_gray.png differ
diff --git a/img/clothes/feet/stripperheels/full_gray.png b/img/clothes/feet/stripperheels/full_gray.png
index 13ef5a8bd119abda99f3a7026c1466ca6fff2540..5d38c07c29a135d6b679de03d360cbc1187c6983 100644
Binary files a/img/clothes/feet/stripperheels/full_gray.png and b/img/clothes/feet/stripperheels/full_gray.png differ
diff --git a/img/clothes/feet/thighhigh_heels/full_gray.png b/img/clothes/feet/thighhigh_heels/full_gray.png
index 6663936b3ed99e4ffb2ee92d2933457382998c82..4d7331c87428b5333cb16d2c6c550fddb4724dc5 100644
Binary files a/img/clothes/feet/thighhigh_heels/full_gray.png and b/img/clothes/feet/thighhigh_heels/full_gray.png differ
diff --git a/img/clothes/feet/thighhigh_heels/mask.png b/img/clothes/feet/thighhigh_heels/mask.png
index 454671ba1e034a80a74081176732fc6e4770c084..cf1f8fc2bcab6a4fa1598d75ed09838c9af18443 100644
Binary files a/img/clothes/feet/thighhigh_heels/mask.png and b/img/clothes/feet/thighhigh_heels/mask.png differ
diff --git a/img/clothes/feet/trainers/acc_gray.png b/img/clothes/feet/trainers/acc_gray.png
index 41a7a732641923905c518ebf9863d63ecfdb04a6..00167e2d69980ee803912c27543874146d504f0b 100644
Binary files a/img/clothes/feet/trainers/acc_gray.png and b/img/clothes/feet/trainers/acc_gray.png differ
diff --git a/img/clothes/feet/trainers/full_gray.png b/img/clothes/feet/trainers/full_gray.png
index ec0dbe2a3b1c3abe89d117aedd87b28438856cac..371b2249f6bf0fd432dad09540d4c250e12fc6cb 100644
Binary files a/img/clothes/feet/trainers/full_gray.png and b/img/clothes/feet/trainers/full_gray.png differ
diff --git a/img/clothes/feet/tuxedoshoes/full.png b/img/clothes/feet/tuxedoshoes/full.png
index 0077e5da5cdfa10ab5e113481c955bf0fff6e576..e2dd4e0d766ca785b6b38efcdf47e63f5666a998 100644
Binary files a/img/clothes/feet/tuxedoshoes/full.png and b/img/clothes/feet/tuxedoshoes/full.png differ
diff --git a/img/clothes/feet/wedgesandals/acc.png b/img/clothes/feet/wedgesandals/acc.png
index ef74fbb49bdfa802f88fb88705c3493fd7ed657d..78c87f6af0e3c26da55a58ab5989755ab7bc1967 100644
Binary files a/img/clothes/feet/wedgesandals/acc.png and b/img/clothes/feet/wedgesandals/acc.png differ
diff --git a/img/clothes/feet/wedgesandals/full_gray.png b/img/clothes/feet/wedgesandals/full_gray.png
index 35c8fc84076b6a147ee6f4557525b445abcc68e5..8dc53c149cbc9343d657f735aca6322afb75f12f 100644
Binary files a/img/clothes/feet/wedgesandals/full_gray.png and b/img/clothes/feet/wedgesandals/full_gray.png differ
diff --git a/img/clothes/feet/wellies/full_gray.png b/img/clothes/feet/wellies/full_gray.png
index e2020ec5f171fcaa36d3aae71f32de10affacdbb..b8ddb111bd3cd4c29fa439a251e2785038917e4b 100644
Binary files a/img/clothes/feet/wellies/full_gray.png and b/img/clothes/feet/wellies/full_gray.png differ
diff --git a/img/clothes/feet/wellies/mask.png b/img/clothes/feet/wellies/mask.png
index 3d49c2b6c67daa8c0019fff3fc2437fa6a2a48f2..138254a4f6798dadd9867c3162d8272cbcf13429 100644
Binary files a/img/clothes/feet/wellies/mask.png and b/img/clothes/feet/wellies/mask.png differ
diff --git a/img/clothes/feet/witch/full_gray.png b/img/clothes/feet/witch/full_gray.png
index 53b5ccb7dec3f9714e3163725320cf13e2c67657..cca81a06e6681085388b1272dbd3a3464ae975ff 100644
Binary files a/img/clothes/feet/witch/full_gray.png and b/img/clothes/feet/witch/full_gray.png differ
diff --git a/img/clothes/feet/work/full.png b/img/clothes/feet/work/full.png
index dde2befeffc016b9af5fea949b0ffc29eaea9251..9f0f2dd83d7d9751586aa5a62f90f8755eb71508 100644
Binary files a/img/clothes/feet/work/full.png and b/img/clothes/feet/work/full.png differ
diff --git a/img/clothes/feet/work/mask.png b/img/clothes/feet/work/mask.png
index 83ff42dfc3ef53c0e775d470c3afc88d95819a5c..9aa858c58170772575a9e0441dc8bdf19bee8389 100644
Binary files a/img/clothes/feet/work/mask.png and b/img/clothes/feet/work/mask.png differ
diff --git a/img/clothes/feet/zori/acc.png b/img/clothes/feet/zori/acc.png
index 2daa8dbb808ae72b5a23ee4a3fd323beb6c53123..951aefc6497d45e79606e5f85059c90021eb5bf9 100644
Binary files a/img/clothes/feet/zori/acc.png and b/img/clothes/feet/zori/acc.png differ
diff --git a/img/clothes/feet/zori/full_gray.png b/img/clothes/feet/zori/full_gray.png
index 7ec1d37069dc59275ed6ad21fa7647db335319ec..0fc94680e1510caa80c89efd9de28ec7ff2d49fe 100644
Binary files a/img/clothes/feet/zori/full_gray.png and b/img/clothes/feet/zori/full_gray.png differ
diff --git a/img/clothes/genitals/chastitybelt/frayed.png b/img/clothes/genitals/chastitybelt/frayed.png
index 28b654a762b134ca0e7c3cbaff614ecd87f15e51..c0c013f7093fc7521ba9b2d69763b15b0300bb53 100644
Binary files a/img/clothes/genitals/chastitybelt/frayed.png and b/img/clothes/genitals/chastitybelt/frayed.png differ
diff --git a/img/clothes/genitals/chastitybelt/full.png b/img/clothes/genitals/chastitybelt/full.png
index ba376a3a5b24152e69781f0476d0670d512599cf..326c0971b8ddc119a399a521fb6bb77147645e7f 100644
Binary files a/img/clothes/genitals/chastitybelt/full.png and b/img/clothes/genitals/chastitybelt/full.png differ
diff --git a/img/clothes/genitals/chastitybelt/tattered.png b/img/clothes/genitals/chastitybelt/tattered.png
index 2a9a94d743902199a1be017d9fe91cfb943006e2..07b06e939b021088394fcdfc92ed2d7224c45e22 100644
Binary files a/img/clothes/genitals/chastitybelt/tattered.png and b/img/clothes/genitals/chastitybelt/tattered.png differ
diff --git a/img/clothes/genitals/chastitybelt/torn.png b/img/clothes/genitals/chastitybelt/torn.png
index 275a3b32c858ef037a26db81cef0388ed8470dc8..854c47375b77a8bb8ea92ec42eb29392cc220fd4 100644
Binary files a/img/clothes/genitals/chastitybelt/torn.png and b/img/clothes/genitals/chastitybelt/torn.png differ
diff --git a/img/clothes/genitals/chastitybeltfetish/frayed.png b/img/clothes/genitals/chastitybeltfetish/frayed.png
index f6c2376ed3f14436e85cb17b3a2c3428601e820d..25f70a57e68609e3b37d3ab3466b5da8f85a1e67 100644
Binary files a/img/clothes/genitals/chastitybeltfetish/frayed.png and b/img/clothes/genitals/chastitybeltfetish/frayed.png differ
diff --git a/img/clothes/genitals/chastitybeltfetish/frayed_gray.png b/img/clothes/genitals/chastitybeltfetish/frayed_gray.png
index f6c2376ed3f14436e85cb17b3a2c3428601e820d..25f70a57e68609e3b37d3ab3466b5da8f85a1e67 100644
Binary files a/img/clothes/genitals/chastitybeltfetish/frayed_gray.png and b/img/clothes/genitals/chastitybeltfetish/frayed_gray.png differ
diff --git a/img/clothes/genitals/chastitybeltfetish/full.png b/img/clothes/genitals/chastitybeltfetish/full.png
index 9eb7da098b480f983ed397265b9b137a65671324..9cc24a70a341802f9a4dee6ceb14f19501b9009f 100644
Binary files a/img/clothes/genitals/chastitybeltfetish/full.png and b/img/clothes/genitals/chastitybeltfetish/full.png differ
diff --git a/img/clothes/genitals/chastitybeltfetish/full_gray.png b/img/clothes/genitals/chastitybeltfetish/full_gray.png
index 9eb7da098b480f983ed397265b9b137a65671324..9cc24a70a341802f9a4dee6ceb14f19501b9009f 100644
Binary files a/img/clothes/genitals/chastitybeltfetish/full_gray.png and b/img/clothes/genitals/chastitybeltfetish/full_gray.png differ
diff --git a/img/clothes/genitals/chastitybeltfetish/tattered.png b/img/clothes/genitals/chastitybeltfetish/tattered.png
index 04586cdd0764469bb0395dae7c687eff4b10f087..5210d2eea7a64146836554d352fa474feac2471c 100644
Binary files a/img/clothes/genitals/chastitybeltfetish/tattered.png and b/img/clothes/genitals/chastitybeltfetish/tattered.png differ
diff --git a/img/clothes/genitals/chastitybeltfetish/tattered_gray.png b/img/clothes/genitals/chastitybeltfetish/tattered_gray.png
index 04586cdd0764469bb0395dae7c687eff4b10f087..5210d2eea7a64146836554d352fa474feac2471c 100644
Binary files a/img/clothes/genitals/chastitybeltfetish/tattered_gray.png and b/img/clothes/genitals/chastitybeltfetish/tattered_gray.png differ
diff --git a/img/clothes/genitals/chastitybeltfetish/torn.png b/img/clothes/genitals/chastitybeltfetish/torn.png
index c72a4d1daea50beea5b1bee9ca7a07827af25058..d7348a93977436b5b9f0d4f761f18627f022a54e 100644
Binary files a/img/clothes/genitals/chastitybeltfetish/torn.png and b/img/clothes/genitals/chastitybeltfetish/torn.png differ
diff --git a/img/clothes/genitals/chastitybeltfetish/torn_gray.png b/img/clothes/genitals/chastitybeltfetish/torn_gray.png
index c72a4d1daea50beea5b1bee9ca7a07827af25058..d7348a93977436b5b9f0d4f761f18627f022a54e 100644
Binary files a/img/clothes/genitals/chastitybeltfetish/torn_gray.png and b/img/clothes/genitals/chastitybeltfetish/torn_gray.png differ
diff --git a/img/clothes/genitals/chastitycage/frayed.png b/img/clothes/genitals/chastitycage/frayed.png
index 507edb70112820dfe2bead4a9f23cb5620355715..bd0d417a3106679d6909c10a7bdeedfe34774619 100644
Binary files a/img/clothes/genitals/chastitycage/frayed.png and b/img/clothes/genitals/chastitycage/frayed.png differ
diff --git a/img/clothes/genitals/chastitycage/full.png b/img/clothes/genitals/chastitycage/full.png
index 294ff519cf0439fbacca0f31104aa7fc0da43d12..464c99787f7a359f69aecf9dfc8120a59d06d09b 100644
Binary files a/img/clothes/genitals/chastitycage/full.png and b/img/clothes/genitals/chastitycage/full.png differ
diff --git a/img/clothes/genitals/chastitycage/slime.png b/img/clothes/genitals/chastitycage/slime.png
index f1414e03a1cc625dfe844356c9458a842abcd932..fe7afd78c07df8b2c54076633d09d635f581eb35 100644
Binary files a/img/clothes/genitals/chastitycage/slime.png and b/img/clothes/genitals/chastitycage/slime.png differ
diff --git a/img/clothes/genitals/chastitycage/tattered.png b/img/clothes/genitals/chastitycage/tattered.png
index 4745b6105a7ba32920bd6bebf9303797fb3d2962..3789a8a03f465cc42633c4558c1018b5d1dc59a0 100644
Binary files a/img/clothes/genitals/chastitycage/tattered.png and b/img/clothes/genitals/chastitycage/tattered.png differ
diff --git a/img/clothes/genitals/chastitycage/torn.png b/img/clothes/genitals/chastitycage/torn.png
index e241274f56f05fcb3427cda1957b9ff4b6b149f9..7bf83d4fdeabd301eda2f9f2831cc226d5afbca0 100644
Binary files a/img/clothes/genitals/chastitycage/torn.png and b/img/clothes/genitals/chastitycage/torn.png differ
diff --git a/img/clothes/genitals/chastitycage/urchin.png b/img/clothes/genitals/chastitycage/urchin.png
index cedb03c61176da81f1f611349f679274ba2dbd90..a331ae05d35513b6d889fecb3c2761dc9b81672f 100644
Binary files a/img/clothes/genitals/chastitycage/urchin.png and b/img/clothes/genitals/chastitycage/urchin.png differ
diff --git a/img/clothes/genitals/chastitycagefetish/frayed.png b/img/clothes/genitals/chastitycagefetish/frayed.png
index 507edb70112820dfe2bead4a9f23cb5620355715..bd0d417a3106679d6909c10a7bdeedfe34774619 100644
Binary files a/img/clothes/genitals/chastitycagefetish/frayed.png and b/img/clothes/genitals/chastitycagefetish/frayed.png differ
diff --git a/img/clothes/genitals/chastitycagefetish/full.png b/img/clothes/genitals/chastitycagefetish/full.png
index 294ff519cf0439fbacca0f31104aa7fc0da43d12..464c99787f7a359f69aecf9dfc8120a59d06d09b 100644
Binary files a/img/clothes/genitals/chastitycagefetish/full.png and b/img/clothes/genitals/chastitycagefetish/full.png differ
diff --git a/img/clothes/genitals/chastitycagefetish/slime.png b/img/clothes/genitals/chastitycagefetish/slime.png
index f1414e03a1cc625dfe844356c9458a842abcd932..fe7afd78c07df8b2c54076633d09d635f581eb35 100644
Binary files a/img/clothes/genitals/chastitycagefetish/slime.png and b/img/clothes/genitals/chastitycagefetish/slime.png differ
diff --git a/img/clothes/genitals/chastitycagefetish/tattered.png b/img/clothes/genitals/chastitycagefetish/tattered.png
index 4745b6105a7ba32920bd6bebf9303797fb3d2962..3789a8a03f465cc42633c4558c1018b5d1dc59a0 100644
Binary files a/img/clothes/genitals/chastitycagefetish/tattered.png and b/img/clothes/genitals/chastitycagefetish/tattered.png differ
diff --git a/img/clothes/genitals/chastitycagefetish/torn.png b/img/clothes/genitals/chastitycagefetish/torn.png
index e241274f56f05fcb3427cda1957b9ff4b6b149f9..7bf83d4fdeabd301eda2f9f2831cc226d5afbca0 100644
Binary files a/img/clothes/genitals/chastitycagefetish/torn.png and b/img/clothes/genitals/chastitycagefetish/torn.png differ
diff --git a/img/clothes/genitals/chastitycagefetish/urchin.png b/img/clothes/genitals/chastitycagefetish/urchin.png
index 91be6bef3c767192a1947e93648d134d18cafafc..2138038b0703b650ad06f762681cb2a129928c32 100644
Binary files a/img/clothes/genitals/chastitycagefetish/urchin.png and b/img/clothes/genitals/chastitycagefetish/urchin.png differ
diff --git a/img/clothes/genitals/flatchastitycage/frayed.png b/img/clothes/genitals/flatchastitycage/frayed.png
index 966fe2e18fbc4b5179805eb4a05a50d679b92b09..aca81a5abfaa9d447603106c2510174df0aad58b 100644
Binary files a/img/clothes/genitals/flatchastitycage/frayed.png and b/img/clothes/genitals/flatchastitycage/frayed.png differ
diff --git a/img/clothes/genitals/flatchastitycage/full.png b/img/clothes/genitals/flatchastitycage/full.png
index 966fe2e18fbc4b5179805eb4a05a50d679b92b09..aca81a5abfaa9d447603106c2510174df0aad58b 100644
Binary files a/img/clothes/genitals/flatchastitycage/full.png and b/img/clothes/genitals/flatchastitycage/full.png differ
diff --git a/img/clothes/genitals/flatchastitycage/slime.png b/img/clothes/genitals/flatchastitycage/slime.png
index b64278d101fdafcf4dd210ede0cda7da605b97fa..c888baf04a9bf65cbbe6c5673f8cd98c259f18b1 100644
Binary files a/img/clothes/genitals/flatchastitycage/slime.png and b/img/clothes/genitals/flatchastitycage/slime.png differ
diff --git a/img/clothes/genitals/flatchastitycage/tattered.png b/img/clothes/genitals/flatchastitycage/tattered.png
index 966fe2e18fbc4b5179805eb4a05a50d679b92b09..aca81a5abfaa9d447603106c2510174df0aad58b 100644
Binary files a/img/clothes/genitals/flatchastitycage/tattered.png and b/img/clothes/genitals/flatchastitycage/tattered.png differ
diff --git a/img/clothes/genitals/flatchastitycage/torn.png b/img/clothes/genitals/flatchastitycage/torn.png
index 966fe2e18fbc4b5179805eb4a05a50d679b92b09..aca81a5abfaa9d447603106c2510174df0aad58b 100644
Binary files a/img/clothes/genitals/flatchastitycage/torn.png and b/img/clothes/genitals/flatchastitycage/torn.png differ
diff --git a/img/clothes/genitals/flatchastitycage/urchin.png b/img/clothes/genitals/flatchastitycage/urchin.png
index c528c432089ce8514df51d17932ad9b8c3bc4920..bdadba7ec9eea20bae8f458a843e1f57bf4aa32a 100644
Binary files a/img/clothes/genitals/flatchastitycage/urchin.png and b/img/clothes/genitals/flatchastitycage/urchin.png differ
diff --git a/img/clothes/genitals/goldchastitybelt/frayed.png b/img/clothes/genitals/goldchastitybelt/frayed.png
index dc474a6fb61d635ef72947f1a8eeaf40b2703472..ca63298cce4094a597856adea40c2c6665555cb3 100644
Binary files a/img/clothes/genitals/goldchastitybelt/frayed.png and b/img/clothes/genitals/goldchastitybelt/frayed.png differ
diff --git a/img/clothes/genitals/goldchastitybelt/full.png b/img/clothes/genitals/goldchastitybelt/full.png
index 67f6d7ddaa51ea8b079fd77f60ee05be7ec26672..82c98dcab7e23586597287add8b70072d4627a7d 100644
Binary files a/img/clothes/genitals/goldchastitybelt/full.png and b/img/clothes/genitals/goldchastitybelt/full.png differ
diff --git a/img/clothes/genitals/goldchastitybelt/full2.png b/img/clothes/genitals/goldchastitybelt/full2.png
index 67f6d7ddaa51ea8b079fd77f60ee05be7ec26672..82c98dcab7e23586597287add8b70072d4627a7d 100644
Binary files a/img/clothes/genitals/goldchastitybelt/full2.png and b/img/clothes/genitals/goldchastitybelt/full2.png differ
diff --git a/img/clothes/genitals/goldchastitybelt/tattered.png b/img/clothes/genitals/goldchastitybelt/tattered.png
index 9bf29371635085ea6a77a96308ee953b0752b165..71c03c2bd21dd1cd4ca1504c3f5e464911fe01cb 100644
Binary files a/img/clothes/genitals/goldchastitybelt/tattered.png and b/img/clothes/genitals/goldchastitybelt/tattered.png differ
diff --git a/img/clothes/genitals/goldchastitybelt/torn.png b/img/clothes/genitals/goldchastitybelt/torn.png
index 01a759003e5d4be81e9641721462612abea606d7..ede083a3cd6a3398146d0140522cfc49ac1495a3 100644
Binary files a/img/clothes/genitals/goldchastitybelt/torn.png and b/img/clothes/genitals/goldchastitybelt/torn.png differ
diff --git a/img/clothes/genitals/slimechastitycage/frayed-1.png b/img/clothes/genitals/slimechastitycage/frayed-1.png
index ad111a8c3576c36cf578e5f325b720c1a666b409..7106a76aef6b358b2f27dc0407827d8ddb0042ff 100644
Binary files a/img/clothes/genitals/slimechastitycage/frayed-1.png and b/img/clothes/genitals/slimechastitycage/frayed-1.png differ
diff --git a/img/clothes/genitals/slimechastitycage/frayed0.png b/img/clothes/genitals/slimechastitycage/frayed0.png
index f386a0f58912736906bb7f62758a54d8369d57f6..d4a34d75afbef808ff953c4b08e8f850b02dff5a 100644
Binary files a/img/clothes/genitals/slimechastitycage/frayed0.png and b/img/clothes/genitals/slimechastitycage/frayed0.png differ
diff --git a/img/clothes/genitals/slimechastitycage/frayed1.png b/img/clothes/genitals/slimechastitycage/frayed1.png
index f7b89d046eb220fddc396dbdf54de99f88ff47a5..ac383011532e6732943dabba4487408af783f2ff 100644
Binary files a/img/clothes/genitals/slimechastitycage/frayed1.png and b/img/clothes/genitals/slimechastitycage/frayed1.png differ
diff --git a/img/clothes/genitals/slimechastitycage/frayed2.png b/img/clothes/genitals/slimechastitycage/frayed2.png
index 1a644740a7b86c1b67e9825a3c6d52b18b061ab6..130e63a8e8a3ec4a479d9c816eb0cb0be9a8149f 100644
Binary files a/img/clothes/genitals/slimechastitycage/frayed2.png and b/img/clothes/genitals/slimechastitycage/frayed2.png differ
diff --git a/img/clothes/genitals/slimechastitycage/full-1.png b/img/clothes/genitals/slimechastitycage/full-1.png
index ad111a8c3576c36cf578e5f325b720c1a666b409..7106a76aef6b358b2f27dc0407827d8ddb0042ff 100644
Binary files a/img/clothes/genitals/slimechastitycage/full-1.png and b/img/clothes/genitals/slimechastitycage/full-1.png differ
diff --git a/img/clothes/genitals/slimechastitycage/full0.png b/img/clothes/genitals/slimechastitycage/full0.png
index f386a0f58912736906bb7f62758a54d8369d57f6..dac59d64ac05348a8cdd3161b38e2b870174c658 100644
Binary files a/img/clothes/genitals/slimechastitycage/full0.png and b/img/clothes/genitals/slimechastitycage/full0.png differ
diff --git a/img/clothes/genitals/slimechastitycage/full1.png b/img/clothes/genitals/slimechastitycage/full1.png
index 77def35a4debd87c8a764f49b5a2b1677f5b8de3..74e0999470ce2c553484a4e038bc23a7b0d81d09 100644
Binary files a/img/clothes/genitals/slimechastitycage/full1.png and b/img/clothes/genitals/slimechastitycage/full1.png differ
diff --git a/img/clothes/genitals/slimechastitycage/full2.png b/img/clothes/genitals/slimechastitycage/full2.png
index 00f8f2db26c0135f75ebff782eca583d3933341a..b750594f2702758947ca317d158646d95a079b2c 100644
Binary files a/img/clothes/genitals/slimechastitycage/full2.png and b/img/clothes/genitals/slimechastitycage/full2.png differ
diff --git a/img/clothes/genitals/slimechastitycage/tattered-1.png b/img/clothes/genitals/slimechastitycage/tattered-1.png
index ad111a8c3576c36cf578e5f325b720c1a666b409..7106a76aef6b358b2f27dc0407827d8ddb0042ff 100644
Binary files a/img/clothes/genitals/slimechastitycage/tattered-1.png and b/img/clothes/genitals/slimechastitycage/tattered-1.png differ
diff --git a/img/clothes/genitals/slimechastitycage/tattered0.png b/img/clothes/genitals/slimechastitycage/tattered0.png
index f386a0f58912736906bb7f62758a54d8369d57f6..d4a34d75afbef808ff953c4b08e8f850b02dff5a 100644
Binary files a/img/clothes/genitals/slimechastitycage/tattered0.png and b/img/clothes/genitals/slimechastitycage/tattered0.png differ
diff --git a/img/clothes/genitals/slimechastitycage/tattered1.png b/img/clothes/genitals/slimechastitycage/tattered1.png
index 2b2912300e48431f40056c4e2c9ad1dba72b222b..a6a4c61c749540438939879da6a0f0e73e09d584 100644
Binary files a/img/clothes/genitals/slimechastitycage/tattered1.png and b/img/clothes/genitals/slimechastitycage/tattered1.png differ
diff --git a/img/clothes/genitals/slimechastitycage/tattered2.png b/img/clothes/genitals/slimechastitycage/tattered2.png
index 7fb1660732f60a74b7eb13201365f15daa608212..061adb65be63591d5e7923bc62158a6d62b8bd2b 100644
Binary files a/img/clothes/genitals/slimechastitycage/tattered2.png and b/img/clothes/genitals/slimechastitycage/tattered2.png differ
diff --git a/img/clothes/genitals/slimechastitycage/torn-1.png b/img/clothes/genitals/slimechastitycage/torn-1.png
index ad111a8c3576c36cf578e5f325b720c1a666b409..7106a76aef6b358b2f27dc0407827d8ddb0042ff 100644
Binary files a/img/clothes/genitals/slimechastitycage/torn-1.png and b/img/clothes/genitals/slimechastitycage/torn-1.png differ
diff --git a/img/clothes/genitals/slimechastitycage/torn0.png b/img/clothes/genitals/slimechastitycage/torn0.png
index f386a0f58912736906bb7f62758a54d8369d57f6..d4a34d75afbef808ff953c4b08e8f850b02dff5a 100644
Binary files a/img/clothes/genitals/slimechastitycage/torn0.png and b/img/clothes/genitals/slimechastitycage/torn0.png differ
diff --git a/img/clothes/genitals/slimechastitycage/torn1.png b/img/clothes/genitals/slimechastitycage/torn1.png
index 690043062b7771b50c873cd5fce812e17590cbcc..8fdd2152014592cc4cbcbb3f75de910f01ee9ce0 100644
Binary files a/img/clothes/genitals/slimechastitycage/torn1.png and b/img/clothes/genitals/slimechastitycage/torn1.png differ
diff --git a/img/clothes/genitals/slimechastitycage/torn2.png b/img/clothes/genitals/slimechastitycage/torn2.png
index 61eec8ec984f03648afbdeccf6c6334b6b5d465d..b6d5952848397e1e1cada0f6982129cb2a4205ee 100644
Binary files a/img/clothes/genitals/slimechastitycage/torn2.png and b/img/clothes/genitals/slimechastitycage/torn2.png differ
diff --git a/img/clothes/genitals/smallchastitycage/frayed.png b/img/clothes/genitals/smallchastitycage/frayed.png
index 79480f5770857fddf6f14ad5dab3865d272ebf2b..f085f94ee8a04ed90ebecc424dd364486766d14a 100644
Binary files a/img/clothes/genitals/smallchastitycage/frayed.png and b/img/clothes/genitals/smallchastitycage/frayed.png differ
diff --git a/img/clothes/genitals/smallchastitycage/full.png b/img/clothes/genitals/smallchastitycage/full.png
index 9713f16f4f8cb4fa66298d8372465f598548a7db..ab8fc2a153106d93e76b45178a59508faa3d7d18 100644
Binary files a/img/clothes/genitals/smallchastitycage/full.png and b/img/clothes/genitals/smallchastitycage/full.png differ
diff --git a/img/clothes/genitals/smallchastitycage/slime.png b/img/clothes/genitals/smallchastitycage/slime.png
index 154d8d945750e58b11dbecb20f6328b23886adb4..b495350b86dd0a2baed4d0658af356508d5567dc 100644
Binary files a/img/clothes/genitals/smallchastitycage/slime.png and b/img/clothes/genitals/smallchastitycage/slime.png differ
diff --git a/img/clothes/genitals/smallchastitycage/tattered.png b/img/clothes/genitals/smallchastitycage/tattered.png
index 778425cddf9418cb6b9067cba8214c84e9bd5639..1d705a130b458b84010d430b34930ddac20f5223 100644
Binary files a/img/clothes/genitals/smallchastitycage/tattered.png and b/img/clothes/genitals/smallchastitycage/tattered.png differ
diff --git a/img/clothes/genitals/smallchastitycage/torn.png b/img/clothes/genitals/smallchastitycage/torn.png
index 871de87848f5e644ce52d498dabc6e9a3e901adb..d21d62ff6859c15b4742d53002e6944d5f64aa3b 100644
Binary files a/img/clothes/genitals/smallchastitycage/torn.png and b/img/clothes/genitals/smallchastitycage/torn.png differ
diff --git a/img/clothes/genitals/smallchastitycage/urchin.png b/img/clothes/genitals/smallchastitycage/urchin.png
index a49f91769c0e6099bb4508b4e62301e6b73304d0..1d81d01835c69f1d9e60b5f8d17599dc97bb3d04 100644
Binary files a/img/clothes/genitals/smallchastitycage/urchin.png and b/img/clothes/genitals/smallchastitycage/urchin.png differ
diff --git a/img/clothes/genitals/strapon/frayed.png b/img/clothes/genitals/strapon/frayed.png
index 92d5afbb5d9a181c36fa4bc157bd83728ec34158..a98265ee120b248056981efcddda3b1764e75d62 100644
Binary files a/img/clothes/genitals/strapon/frayed.png and b/img/clothes/genitals/strapon/frayed.png differ
diff --git a/img/clothes/genitals/strapon/full.png b/img/clothes/genitals/strapon/full.png
index 92d5afbb5d9a181c36fa4bc157bd83728ec34158..a98265ee120b248056981efcddda3b1764e75d62 100644
Binary files a/img/clothes/genitals/strapon/full.png and b/img/clothes/genitals/strapon/full.png differ
diff --git a/img/clothes/genitals/strapon/tattered.png b/img/clothes/genitals/strapon/tattered.png
index 92d5afbb5d9a181c36fa4bc157bd83728ec34158..a98265ee120b248056981efcddda3b1764e75d62 100644
Binary files a/img/clothes/genitals/strapon/tattered.png and b/img/clothes/genitals/strapon/tattered.png differ
diff --git a/img/clothes/genitals/strapon/torn.png b/img/clothes/genitals/strapon/torn.png
index 92d5afbb5d9a181c36fa4bc157bd83728ec34158..a98265ee120b248056981efcddda3b1764e75d62 100644
Binary files a/img/clothes/genitals/strapon/torn.png and b/img/clothes/genitals/strapon/torn.png differ
diff --git a/img/clothes/handheld/backpack/back_acc.png b/img/clothes/handheld/backpack/back_acc.png
index 487a983a8abbf9f7b565c9cff0c72987cd498201..365dce5fb66d40374959bb9848ea3cf8a3f08b56 100644
Binary files a/img/clothes/handheld/backpack/back_acc.png and b/img/clothes/handheld/backpack/back_acc.png differ
diff --git a/img/clothes/handheld/backpack/back_gray.png b/img/clothes/handheld/backpack/back_gray.png
index ca5b50d876051d7551df9cff93751fbe56c4a4fc..50549998e17722a0850a8216092302c4dfbfc7d6 100644
Binary files a/img/clothes/handheld/backpack/back_gray.png and b/img/clothes/handheld/backpack/back_gray.png differ
diff --git a/img/clothes/handheld/backpack/right_acc.png b/img/clothes/handheld/backpack/right_acc.png
index be53c97532d50c6cb92e87d76e0aff87b0a60fe1..75ffbe230f06bc420500293f9daab2a5be2d1cc9 100644
Binary files a/img/clothes/handheld/backpack/right_acc.png and b/img/clothes/handheld/backpack/right_acc.png differ
diff --git a/img/clothes/handheld/backpack/right_cover_acc.png b/img/clothes/handheld/backpack/right_cover_acc.png
index be53c97532d50c6cb92e87d76e0aff87b0a60fe1..75ffbe230f06bc420500293f9daab2a5be2d1cc9 100644
Binary files a/img/clothes/handheld/backpack/right_cover_acc.png and b/img/clothes/handheld/backpack/right_cover_acc.png differ
diff --git a/img/clothes/handheld/backpack/right_cover_gray.png b/img/clothes/handheld/backpack/right_cover_gray.png
index 4c07c11c6a861cd9a0d08bc501a90732d8603b17..4caec066d15fa68aaa5e54cf1de25af3b1bbdd6d 100644
Binary files a/img/clothes/handheld/backpack/right_cover_gray.png and b/img/clothes/handheld/backpack/right_cover_gray.png differ
diff --git a/img/clothes/handheld/backpack/right_gray.png b/img/clothes/handheld/backpack/right_gray.png
index 8208ddf5787bf65c694544c6de11e55aa7549249..e04674c6ab93c3da418d99a5aae896596f57dd90 100644
Binary files a/img/clothes/handheld/backpack/right_gray.png and b/img/clothes/handheld/backpack/right_gray.png differ
diff --git a/img/clothes/handheld/balloon/right_acc.png b/img/clothes/handheld/balloon/right_acc.png
index e0b8e70995a62499aedb9e12a20decb5508999a5..0dfb27d15793e47c2156db3493addab584011d5b 100644
Binary files a/img/clothes/handheld/balloon/right_acc.png and b/img/clothes/handheld/balloon/right_acc.png differ
diff --git a/img/clothes/handheld/balloon/right_cover_acc.png b/img/clothes/handheld/balloon/right_cover_acc.png
index 8a41bb93a80bf1d4ff501ceb10315d93e991cbc5..2af5fe760f834d53dadfe0ec0b105dacaad895fc 100644
Binary files a/img/clothes/handheld/balloon/right_cover_acc.png and b/img/clothes/handheld/balloon/right_cover_acc.png differ
diff --git a/img/clothes/handheld/balloon/right_cover_gray.png b/img/clothes/handheld/balloon/right_cover_gray.png
index 0aa0f53ba443a8fb43b06e106114435f59df8fa8..35ebf23d9386891d74d2dcfc1feb927b45014ec1 100644
Binary files a/img/clothes/handheld/balloon/right_cover_gray.png and b/img/clothes/handheld/balloon/right_cover_gray.png differ
diff --git a/img/clothes/handheld/balloon/right_gray.png b/img/clothes/handheld/balloon/right_gray.png
index 89736a8daf1f3e2d1f50c9690133b2407fd2ca0e..06c568f0bb4e648eb80af043258b45a29a6a2ae7 100644
Binary files a/img/clothes/handheld/balloon/right_gray.png and b/img/clothes/handheld/balloon/right_gray.png differ
diff --git a/img/clothes/handheld/balloonheart/right_acc.png b/img/clothes/handheld/balloonheart/right_acc.png
index 0fd86cbc31632130ced68f5fe942ad57162fc74b..8abc2d39ab66e3f0a0f4c718b80f79d4ba7a192d 100644
Binary files a/img/clothes/handheld/balloonheart/right_acc.png and b/img/clothes/handheld/balloonheart/right_acc.png differ
diff --git a/img/clothes/handheld/balloonheart/right_cover_acc.png b/img/clothes/handheld/balloonheart/right_cover_acc.png
index 0d794ea8c1b831a1d0cf25ab7c45ac256de925e9..2cebba52f387e56194296ae05bf0c74ef577e0e2 100644
Binary files a/img/clothes/handheld/balloonheart/right_cover_acc.png and b/img/clothes/handheld/balloonheart/right_cover_acc.png differ
diff --git a/img/clothes/handheld/balloonheart/right_cover_gray.png b/img/clothes/handheld/balloonheart/right_cover_gray.png
index bb86eb1b9cac2036cc22646c14fa186bfdc84fcc..bb257a58063d5b480737107981085ba6f4f565b9 100644
Binary files a/img/clothes/handheld/balloonheart/right_cover_gray.png and b/img/clothes/handheld/balloonheart/right_cover_gray.png differ
diff --git a/img/clothes/handheld/balloonheart/right_gray.png b/img/clothes/handheld/balloonheart/right_gray.png
index 3478105be6b9cd887341f3c1473e212b88d16d04..6f984c36dbfab3d62038f13f5f5c75112f3d8922 100644
Binary files a/img/clothes/handheld/balloonheart/right_gray.png and b/img/clothes/handheld/balloonheart/right_gray.png differ
diff --git a/img/clothes/handheld/beerbottle/right.png b/img/clothes/handheld/beerbottle/right.png
index 95a4f98d8ce6e17abc6828b1a59d351fc3ed8510..c533ce18fef85dcd28e5f4feb65f25d0fc14222d 100644
Binary files a/img/clothes/handheld/beerbottle/right.png and b/img/clothes/handheld/beerbottle/right.png differ
diff --git a/img/clothes/handheld/beermug/right.png b/img/clothes/handheld/beermug/right.png
index 5d5bfa4ee9c915ca1e18ea68160bb7361128f8e7..65abd109a6462de2d631353a254a43df4e257e07 100644
Binary files a/img/clothes/handheld/beermug/right.png and b/img/clothes/handheld/beermug/right.png differ
diff --git a/img/clothes/handheld/cigarette/right.png b/img/clothes/handheld/cigarette/right.png
index 73f2a47af9707a6b8bcab391f2123f9808f3589b..4fac1560c56f07348aeac964638f1ad35dd9297c 100644
Binary files a/img/clothes/handheld/cigarette/right.png and b/img/clothes/handheld/cigarette/right.png differ
diff --git a/img/clothes/handheld/cigarette/right_acc.png b/img/clothes/handheld/cigarette/right_acc.png
index 62ca07c7a1623af1fbc3eabe5a23cd2aa91f9484..e13a94b5967180490c2997b84e5addbdc7347a7b 100644
Binary files a/img/clothes/handheld/cigarette/right_acc.png and b/img/clothes/handheld/cigarette/right_acc.png differ
diff --git a/img/clothes/handheld/cigarette/right_cover.png b/img/clothes/handheld/cigarette/right_cover.png
index c4d3f02a228981a16df4bfdd80ec4f6c8e8804a7..4b688c2ef3d92625498af8aaab005194094df525 100644
Binary files a/img/clothes/handheld/cigarette/right_cover.png and b/img/clothes/handheld/cigarette/right_cover.png differ
diff --git a/img/clothes/handheld/cigarette/right_cover_acc.png b/img/clothes/handheld/cigarette/right_cover_acc.png
index 2f5ecb72f0ea46d5d9e103d792cb146cad62d520..e79e094ed6fc7e057d7585e39394b4ab92663274 100644
Binary files a/img/clothes/handheld/cigarette/right_cover_acc.png and b/img/clothes/handheld/cigarette/right_cover_acc.png differ
diff --git a/img/clothes/handheld/cocoa/right.png b/img/clothes/handheld/cocoa/right.png
index 804f49ad5dae96b38568858b6e742c1076a9f68e..493ae4f990bf9afdeecb7462e5fba01687b6e656 100644
Binary files a/img/clothes/handheld/cocoa/right.png and b/img/clothes/handheld/cocoa/right.png differ
diff --git a/img/clothes/handheld/coffee/right.png b/img/clothes/handheld/coffee/right.png
index 420fdd43dc4c50ae0bf22f8376832e4cb3aea29a..cdc0ca2028201133a556ef8668dded428753dc61 100644
Binary files a/img/clothes/handheld/coffee/right.png and b/img/clothes/handheld/coffee/right.png differ
diff --git a/img/clothes/handheld/creambun/right.png b/img/clothes/handheld/creambun/right.png
index 9fefdf055a7abc3256495e68003392ffda9a4ed5..8da4d857e894cebffc8ea97c17e3b187137dbd91 100644
Binary files a/img/clothes/handheld/creambun/right.png and b/img/clothes/handheld/creambun/right.png differ
diff --git a/img/clothes/handheld/featherduster/right.png b/img/clothes/handheld/featherduster/right.png
index e4bd9427fb5e819361242ada2cfb578c6120de22..e0a369aa0c567d73a76534558a24d7eac32095b5 100644
Binary files a/img/clothes/handheld/featherduster/right.png and b/img/clothes/handheld/featherduster/right.png differ
diff --git a/img/clothes/handheld/featherduster/right_cover.png b/img/clothes/handheld/featherduster/right_cover.png
index b61e112e1dfbbd923432807359b044f58c3d34bc..624b8185e2abead0992a92f8879a08fcc953ca05 100644
Binary files a/img/clothes/handheld/featherduster/right_cover.png and b/img/clothes/handheld/featherduster/right_cover.png differ
diff --git a/img/clothes/handheld/fork/right.png b/img/clothes/handheld/fork/right.png
index d26ddae4a4133d4e46c2d057ad4f035e59003e34..7334da6aebd0a3d7b8babe7792e50fdf3eab3118 100644
Binary files a/img/clothes/handheld/fork/right.png and b/img/clothes/handheld/fork/right.png differ
diff --git a/img/clothes/handheld/gingerbread/right.png b/img/clothes/handheld/gingerbread/right.png
index 23aa99e2d4458ac48872cd97b6d88eb755bdaf42..64cb01fc614c747f439f633534dfc24dc76b808a 100644
Binary files a/img/clothes/handheld/gingerbread/right.png and b/img/clothes/handheld/gingerbread/right.png differ
diff --git a/img/clothes/handheld/gymbag/right_acc_gray.png b/img/clothes/handheld/gymbag/right_acc_gray.png
index 04ee336692973d1dcca27c9989155fde374016ec..b5888c3b0e6fdc84a7e163eebb5fcb9950706a5d 100644
Binary files a/img/clothes/handheld/gymbag/right_acc_gray.png and b/img/clothes/handheld/gymbag/right_acc_gray.png differ
diff --git a/img/clothes/handheld/gymbag/right_cover_acc_gray.png b/img/clothes/handheld/gymbag/right_cover_acc_gray.png
index e53a126c892eee17f34313a935d541fec474c928..d2601fe6c43c03807fe49c23b845fed07bd36b03 100644
Binary files a/img/clothes/handheld/gymbag/right_cover_acc_gray.png and b/img/clothes/handheld/gymbag/right_cover_acc_gray.png differ
diff --git a/img/clothes/handheld/gymbag/right_cover_gray.png b/img/clothes/handheld/gymbag/right_cover_gray.png
index b3cad7768ded5bb14b194b0c9d9ebfc234476156..f60f9e3373b5bbb425199eaef44b8c4d463492ff 100644
Binary files a/img/clothes/handheld/gymbag/right_cover_gray.png and b/img/clothes/handheld/gymbag/right_cover_gray.png differ
diff --git a/img/clothes/handheld/gymbag/right_gray.png b/img/clothes/handheld/gymbag/right_gray.png
index 5b9cb0f541947850fb3d12eafa42bb1662a02af1..28a66f2cf3eb880547c81a4e2f5f61879cfd840d 100644
Binary files a/img/clothes/handheld/gymbag/right_gray.png and b/img/clothes/handheld/gymbag/right_gray.png differ
diff --git a/img/clothes/handheld/heartpurse/right_acc_gray.png b/img/clothes/handheld/heartpurse/right_acc_gray.png
index cdda70645650462b5fd83ccd8beac41fc3d05d82..1c5827523cd2db99e1d7b9c5d86da33c1af57dfe 100644
Binary files a/img/clothes/handheld/heartpurse/right_acc_gray.png and b/img/clothes/handheld/heartpurse/right_acc_gray.png differ
diff --git a/img/clothes/handheld/heartpurse/right_cover_acc_gray.png b/img/clothes/handheld/heartpurse/right_cover_acc_gray.png
index 99669220176a4dc2787d33184173d7f94501290f..43b0e52211f74c176d4d0f0d8fbdd04f79d2048a 100644
Binary files a/img/clothes/handheld/heartpurse/right_cover_acc_gray.png and b/img/clothes/handheld/heartpurse/right_cover_acc_gray.png differ
diff --git a/img/clothes/handheld/heartpurse/right_cover_gray.png b/img/clothes/handheld/heartpurse/right_cover_gray.png
index daf3e3d9a06ddb783010025ce4a9447034ffef24..963781798454e0e479ebab7643adf7fc18350404 100644
Binary files a/img/clothes/handheld/heartpurse/right_cover_gray.png and b/img/clothes/handheld/heartpurse/right_cover_gray.png differ
diff --git a/img/clothes/handheld/heartpurse/right_gray.png b/img/clothes/handheld/heartpurse/right_gray.png
index f9fad470b358dd4917e6acd98bce31eb1e59c379..168e98ed7eb72fddc81fc706f97a5a9e44acec9e 100644
Binary files a/img/clothes/handheld/heartpurse/right_gray.png and b/img/clothes/handheld/heartpurse/right_gray.png differ
diff --git a/img/clothes/handheld/lemonade/right.png b/img/clothes/handheld/lemonade/right.png
index ea966ee71c92610dfea14d0f6f419254a6ab5b4e..8ce7e16030e4cd8fe16adf1495b8ad23277b45d3 100644
Binary files a/img/clothes/handheld/lemonade/right.png and b/img/clothes/handheld/lemonade/right.png differ
diff --git a/img/clothes/handheld/lemonade/right_cover.png b/img/clothes/handheld/lemonade/right_cover.png
index a4c9a0be9e86869a17527ec103a13f66ef029726..38907fec34b3ed7ce2bf44c92705978fd60e78d3 100644
Binary files a/img/clothes/handheld/lemonade/right_cover.png and b/img/clothes/handheld/lemonade/right_cover.png differ
diff --git a/img/clothes/handheld/messengerbag/right_acc.png b/img/clothes/handheld/messengerbag/right_acc.png
index ed28ab36e0da15e263c6f53ca86cc5404b98fc2d..4296c9779760c2ab65a6d22c2da98dadfd9dcb70 100644
Binary files a/img/clothes/handheld/messengerbag/right_acc.png and b/img/clothes/handheld/messengerbag/right_acc.png differ
diff --git a/img/clothes/handheld/messengerbag/right_cover_acc.png b/img/clothes/handheld/messengerbag/right_cover_acc.png
index bc66e26f26abe626932995d001a6b37bec8c20ea..941e46e97619c29666b636332e507c8d86c77324 100644
Binary files a/img/clothes/handheld/messengerbag/right_cover_acc.png and b/img/clothes/handheld/messengerbag/right_cover_acc.png differ
diff --git a/img/clothes/handheld/messengerbag/right_cover_gray.png b/img/clothes/handheld/messengerbag/right_cover_gray.png
index 677a83a2e7681ad71623dee4cef6e13f9066e2df..ca5832d1df17a2cf018913da968aa6d157a3f890 100644
Binary files a/img/clothes/handheld/messengerbag/right_cover_gray.png and b/img/clothes/handheld/messengerbag/right_cover_gray.png differ
diff --git a/img/clothes/handheld/messengerbag/right_gray.png b/img/clothes/handheld/messengerbag/right_gray.png
index f241326c04916b6d7722f52198c7bbc1c5cca30a..a4534155b93b30376b87c4d5be671ae7da328797 100644
Binary files a/img/clothes/handheld/messengerbag/right_gray.png and b/img/clothes/handheld/messengerbag/right_gray.png differ
diff --git a/img/clothes/handheld/milkshake/right.png b/img/clothes/handheld/milkshake/right.png
index a6704b64dac411b9f88d009e2ea7f294ecbcb775..65795efbbfea1e39e19533b2f3d4dfe0e728bf8d 100644
Binary files a/img/clothes/handheld/milkshake/right.png and b/img/clothes/handheld/milkshake/right.png differ
diff --git a/img/clothes/handheld/milkshake/right_cover.png b/img/clothes/handheld/milkshake/right_cover.png
index f2ad873ad80a7e88f0886f7e077e93debf814dff..f13207aa9a2dc20c386dd381a94c7a7b21383d02 100644
Binary files a/img/clothes/handheld/milkshake/right_cover.png and b/img/clothes/handheld/milkshake/right_cover.png differ
diff --git a/img/clothes/handheld/mug/right.png b/img/clothes/handheld/mug/right.png
index 9740b27af667473873f2d6c34ced29892f63215c..baeaaf43bd0bbe349a53642c5b4080d349cfafdf 100644
Binary files a/img/clothes/handheld/mug/right.png and b/img/clothes/handheld/mug/right.png differ
diff --git a/img/clothes/handheld/ornatetelescope/right.png b/img/clothes/handheld/ornatetelescope/right.png
index a1ca43ec518a02a2be30f5f2bddd90dd57204eed..26d74b3c4617729177070ede3443c6d4073ae6bc 100644
Binary files a/img/clothes/handheld/ornatetelescope/right.png and b/img/clothes/handheld/ornatetelescope/right.png differ
diff --git a/img/clothes/handheld/pancake/right.png b/img/clothes/handheld/pancake/right.png
index 9d772e69430559beb2a253ce88836ed224ba92ba..8529c6a3b8cbbdc0b8c363b94636451be82b3520 100644
Binary files a/img/clothes/handheld/pancake/right.png and b/img/clothes/handheld/pancake/right.png differ
diff --git a/img/clothes/handheld/paperfan/right_acc.png b/img/clothes/handheld/paperfan/right_acc.png
index e15c6af81960dc8216a6cacbba8acf889a6a2a22..6bbcca434318e78e1d9730be2527ebc410c542df 100644
Binary files a/img/clothes/handheld/paperfan/right_acc.png and b/img/clothes/handheld/paperfan/right_acc.png differ
diff --git a/img/clothes/handheld/paperfan/right_cover_acc.png b/img/clothes/handheld/paperfan/right_cover_acc.png
index aad0f9ee7b2e202f58bd95596563a6b3f7d92d83..a38edb784afe56e1e778bd8c524d0ef6ad39241b 100644
Binary files a/img/clothes/handheld/paperfan/right_cover_acc.png and b/img/clothes/handheld/paperfan/right_cover_acc.png differ
diff --git a/img/clothes/handheld/paperfan/right_cover_gray.png b/img/clothes/handheld/paperfan/right_cover_gray.png
index 93abb9a32cf4928cdb816e6f40e83ba589c41c43..1649688838af9f6579ba7e6f36075418914e5e3b 100644
Binary files a/img/clothes/handheld/paperfan/right_cover_gray.png and b/img/clothes/handheld/paperfan/right_cover_gray.png differ
diff --git a/img/clothes/handheld/paperfan/right_gray.png b/img/clothes/handheld/paperfan/right_gray.png
index 1ad41df645d929a3f661918ef8a30e9f83685ddb..f5ad05701d797db7d2035827be9c7944cf3c4391 100644
Binary files a/img/clothes/handheld/paperfan/right_gray.png and b/img/clothes/handheld/paperfan/right_gray.png differ
diff --git a/img/clothes/handheld/parasol/back_acc_gray.png b/img/clothes/handheld/parasol/back_acc_gray.png
index f645889b753bfe102b10d67414b6bc31dfd18bf8..1ca72f60cc4de3302e5f97cdc856860801b11dc7 100644
Binary files a/img/clothes/handheld/parasol/back_acc_gray.png and b/img/clothes/handheld/parasol/back_acc_gray.png differ
diff --git a/img/clothes/handheld/parasol/back_gray.png b/img/clothes/handheld/parasol/back_gray.png
index 63d93ed28071c840cb51f0ebc7aafb98e0d3b81f..57618043f57e53c8e01ac9aab3d7582b6729cbdc 100644
Binary files a/img/clothes/handheld/parasol/back_gray.png and b/img/clothes/handheld/parasol/back_gray.png differ
diff --git a/img/clothes/handheld/parasol/mask.png b/img/clothes/handheld/parasol/mask.png
index 2f72a7b1a0f5cbc88dea74d47ccef6494b49a59c..9ca3d6a08bf331e3cc38c0f1e38ad9c49481c7a4 100644
Binary files a/img/clothes/handheld/parasol/mask.png and b/img/clothes/handheld/parasol/mask.png differ
diff --git a/img/clothes/handheld/parasol/right_acc_gray.png b/img/clothes/handheld/parasol/right_acc_gray.png
index c53c88a9f1a0fadc7b22d1c4ce4392692b1197cf..e188fe1f5c729ba2490ccfa0bc90b918deb3eed2 100644
Binary files a/img/clothes/handheld/parasol/right_acc_gray.png and b/img/clothes/handheld/parasol/right_acc_gray.png differ
diff --git a/img/clothes/handheld/parasol/right_cover_acc_gray.png b/img/clothes/handheld/parasol/right_cover_acc_gray.png
index b46127570dfac33e4664b4bfb1c192cbfc41b3ca..1e0d8d35ed8783aaefc383dea67f9e02b391027d 100644
Binary files a/img/clothes/handheld/parasol/right_cover_acc_gray.png and b/img/clothes/handheld/parasol/right_cover_acc_gray.png differ
diff --git a/img/clothes/handheld/parasol/right_cover_gray.png b/img/clothes/handheld/parasol/right_cover_gray.png
index f06d87d2761ab377acf7258c4e08d575c19a0cd1..d2205bcf3ffc737bd6df26bb01c42f059e5ce1da 100644
Binary files a/img/clothes/handheld/parasol/right_cover_gray.png and b/img/clothes/handheld/parasol/right_cover_gray.png differ
diff --git a/img/clothes/handheld/parasol/right_gray.png b/img/clothes/handheld/parasol/right_gray.png
index b16fc2ee930ebb7310347c0b33e97f48b63d9dcc..291d0cfc2f5fd8db18c57a151f048d7768981cf3 100644
Binary files a/img/clothes/handheld/parasol/right_gray.png and b/img/clothes/handheld/parasol/right_gray.png differ
diff --git a/img/clothes/handheld/parasolpaper/back_acc.png b/img/clothes/handheld/parasolpaper/back_acc.png
index f304f01112b15a1c30fff4f4fe6cc1d9a2e6cfa4..7c513bd552f65a3f9c5d2561e06e817c33da58eb 100644
Binary files a/img/clothes/handheld/parasolpaper/back_acc.png and b/img/clothes/handheld/parasolpaper/back_acc.png differ
diff --git a/img/clothes/handheld/parasolpaper/back_gray.png b/img/clothes/handheld/parasolpaper/back_gray.png
index ce39a0302347da0f28745a66785a95d419164697..0c1c6a80886551c4affe297a56f2ef4ab8c782ff 100644
Binary files a/img/clothes/handheld/parasolpaper/back_gray.png and b/img/clothes/handheld/parasolpaper/back_gray.png differ
diff --git a/img/clothes/handheld/parasolpaper/right.png b/img/clothes/handheld/parasolpaper/right.png
index 2d35c40582f18495319f157df129948892095be9..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/handheld/parasolpaper/right.png and b/img/clothes/handheld/parasolpaper/right.png differ
diff --git a/img/clothes/handheld/parasolpaper/right_acc.png b/img/clothes/handheld/parasolpaper/right_acc.png
index 6e949e02bdb4ab3dcd290b3497c75936310a1613..8fcf306b91ec4c3b7322a7c8a87f2299dc1366b5 100644
Binary files a/img/clothes/handheld/parasolpaper/right_acc.png and b/img/clothes/handheld/parasolpaper/right_acc.png differ
diff --git a/img/clothes/handheld/parasolpaper/right_cover_acc.png b/img/clothes/handheld/parasolpaper/right_cover_acc.png
index 3d6e59f1777218621f86bcde62fabdfd688a100d..8e2d815379accadf254f8d1dc69e095c87bfcbb5 100644
Binary files a/img/clothes/handheld/parasolpaper/right_cover_acc.png and b/img/clothes/handheld/parasolpaper/right_cover_acc.png differ
diff --git a/img/clothes/handheld/parasolpaper/right_cover_gray.png b/img/clothes/handheld/parasolpaper/right_cover_gray.png
index e0a9ef5c47ce85cc038e2070b777ac93ef1a403f..d031cb00299598b32d16cb5f21b39d1a82ab264d 100644
Binary files a/img/clothes/handheld/parasolpaper/right_cover_gray.png and b/img/clothes/handheld/parasolpaper/right_cover_gray.png differ
diff --git a/img/clothes/handheld/parasolpaper/right_gray.png b/img/clothes/handheld/parasolpaper/right_gray.png
index 2d35c40582f18495319f157df129948892095be9..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/handheld/parasolpaper/right_gray.png and b/img/clothes/handheld/parasolpaper/right_gray.png differ
diff --git a/img/clothes/handheld/parasolsweet/back_acc_gray.png b/img/clothes/handheld/parasolsweet/back_acc_gray.png
index 6233708742de6b50bd843bbe260fd24f104ea1d9..1ca72f60cc4de3302e5f97cdc856860801b11dc7 100644
Binary files a/img/clothes/handheld/parasolsweet/back_acc_gray.png and b/img/clothes/handheld/parasolsweet/back_acc_gray.png differ
diff --git a/img/clothes/handheld/parasolsweet/back_gray.png b/img/clothes/handheld/parasolsweet/back_gray.png
index 6ed5bfece9e2c48ca519e163ffcee49b1481fc55..57618043f57e53c8e01ac9aab3d7582b6729cbdc 100644
Binary files a/img/clothes/handheld/parasolsweet/back_gray.png and b/img/clothes/handheld/parasolsweet/back_gray.png differ
diff --git a/img/clothes/handheld/parasolsweet/mask.png b/img/clothes/handheld/parasolsweet/mask.png
index 2f72a7b1a0f5cbc88dea74d47ccef6494b49a59c..9ca3d6a08bf331e3cc38c0f1e38ad9c49481c7a4 100644
Binary files a/img/clothes/handheld/parasolsweet/mask.png and b/img/clothes/handheld/parasolsweet/mask.png differ
diff --git a/img/clothes/handheld/parasolsweet/right_acc_gray.png b/img/clothes/handheld/parasolsweet/right_acc_gray.png
index dd4a33df80bc3f78fa16e3241f21377678c434a6..5248767b2cf73268b0f50c6753f3641e346d88da 100644
Binary files a/img/clothes/handheld/parasolsweet/right_acc_gray.png and b/img/clothes/handheld/parasolsweet/right_acc_gray.png differ
diff --git a/img/clothes/handheld/parasolsweet/right_cover_acc_gray.png b/img/clothes/handheld/parasolsweet/right_cover_acc_gray.png
index 2c449efb824cf07555342fba538f31673578cc9d..5a92ab8e5e58dfd3027a191a575d907d2c151ed3 100644
Binary files a/img/clothes/handheld/parasolsweet/right_cover_acc_gray.png and b/img/clothes/handheld/parasolsweet/right_cover_acc_gray.png differ
diff --git a/img/clothes/handheld/parasolsweet/right_cover_gray.png b/img/clothes/handheld/parasolsweet/right_cover_gray.png
index 324b861eb2007691da59ab3b698fae6dd63dc47c..c2240037ddb4b64ba0c3eebfedf0d8368ed82d0e 100644
Binary files a/img/clothes/handheld/parasolsweet/right_cover_gray.png and b/img/clothes/handheld/parasolsweet/right_cover_gray.png differ
diff --git a/img/clothes/handheld/parasolsweet/right_gray.png b/img/clothes/handheld/parasolsweet/right_gray.png
index f721cdcb0cab31c82c1af9b059c5021d72ba748f..8f2a49d0132b063c188a43a8ff07f42f082623f9 100644
Binary files a/img/clothes/handheld/parasolsweet/right_gray.png and b/img/clothes/handheld/parasolsweet/right_gray.png differ
diff --git a/img/clothes/handheld/pasta/right.png b/img/clothes/handheld/pasta/right.png
index 5deccca53b36a2f1029af6d0f487f4a09ef0e894..83a741410c4ea12d1cf953226c2bc4e1ceb2cfe3 100644
Binary files a/img/clothes/handheld/pasta/right.png and b/img/clothes/handheld/pasta/right.png differ
diff --git a/img/clothes/handheld/pompoms/left_acc.png b/img/clothes/handheld/pompoms/left_acc.png
index 5417a99abea46406bb1a8fb48abeea07a7ac52b6..76e9f267dad30a2e33849ba782df82b16a788c9d 100644
Binary files a/img/clothes/handheld/pompoms/left_acc.png and b/img/clothes/handheld/pompoms/left_acc.png differ
diff --git a/img/clothes/handheld/pompoms/left_cover_acc.png b/img/clothes/handheld/pompoms/left_cover_acc.png
index 878629e210bbf02bb9473d4a2afa9f6964732c4e..31fbf5f3a554f873e5036f0f521ce9e6be719978 100644
Binary files a/img/clothes/handheld/pompoms/left_cover_acc.png and b/img/clothes/handheld/pompoms/left_cover_acc.png differ
diff --git a/img/clothes/handheld/pompoms/left_cover_gray.png b/img/clothes/handheld/pompoms/left_cover_gray.png
index e93df691a9e97c249c328e764ef91ef1967041cd..9e6e4048b42c7067be80f283acdc305ca9b77e2d 100644
Binary files a/img/clothes/handheld/pompoms/left_cover_gray.png and b/img/clothes/handheld/pompoms/left_cover_gray.png differ
diff --git a/img/clothes/handheld/pompoms/left_gray.png b/img/clothes/handheld/pompoms/left_gray.png
index f21a7b9406d524dc6118c129c5a903f1ee7b6a46..dffee5814bb9a549b25101af08f2d385b8156222 100644
Binary files a/img/clothes/handheld/pompoms/left_gray.png and b/img/clothes/handheld/pompoms/left_gray.png differ
diff --git a/img/clothes/handheld/pompoms/right_acc.png b/img/clothes/handheld/pompoms/right_acc.png
index b66ce78f7bceafbfc0d44d143c3e5617886665f2..7159b0209c2cf69829e4f41022b5c7fc85679ffb 100644
Binary files a/img/clothes/handheld/pompoms/right_acc.png and b/img/clothes/handheld/pompoms/right_acc.png differ
diff --git a/img/clothes/handheld/pompoms/right_cover_acc.png b/img/clothes/handheld/pompoms/right_cover_acc.png
index aaf99357189e62043f66afe3b5c208252818eb58..31096b22671cc20bb3d341c4d7b42578195b15c5 100644
Binary files a/img/clothes/handheld/pompoms/right_cover_acc.png and b/img/clothes/handheld/pompoms/right_cover_acc.png differ
diff --git a/img/clothes/handheld/pompoms/right_cover_gray.png b/img/clothes/handheld/pompoms/right_cover_gray.png
index d17cd80bd0821dc1dbb98823362bdbb26776a153..b59787dd97633804b3fc150e04cda8b5de221966 100644
Binary files a/img/clothes/handheld/pompoms/right_cover_gray.png and b/img/clothes/handheld/pompoms/right_cover_gray.png differ
diff --git a/img/clothes/handheld/pompoms/right_gray.png b/img/clothes/handheld/pompoms/right_gray.png
index 1d576556e0a517a0692cb99fd1e0829706b2e7eb..274a562bef0b0386bf0339c36bd519fab928f4c6 100644
Binary files a/img/clothes/handheld/pompoms/right_gray.png and b/img/clothes/handheld/pompoms/right_gray.png differ
diff --git a/img/clothes/handheld/popcorn/right.png b/img/clothes/handheld/popcorn/right.png
index 556894f4f3b0e46efdd03118534abc193e843de1..0e150d83ea66a23ac875bbd72f2d86f16ad3ccff 100644
Binary files a/img/clothes/handheld/popcorn/right.png and b/img/clothes/handheld/popcorn/right.png differ
diff --git a/img/clothes/handheld/purse/right_acc_gray.png b/img/clothes/handheld/purse/right_acc_gray.png
index 426a93c5d8adffd302db772c0d8ae5194e710631..e28cfa93dc0ba752716b1799d23fc7e694454645 100644
Binary files a/img/clothes/handheld/purse/right_acc_gray.png and b/img/clothes/handheld/purse/right_acc_gray.png differ
diff --git a/img/clothes/handheld/purse/right_cover_acc_gray.png b/img/clothes/handheld/purse/right_cover_acc_gray.png
index 8d8bc0d113a1b281e5bcb080627075bd1f6ec54c..c3d03b34711af3942a1320ae834144204bd932c2 100644
Binary files a/img/clothes/handheld/purse/right_cover_acc_gray.png and b/img/clothes/handheld/purse/right_cover_acc_gray.png differ
diff --git a/img/clothes/handheld/purse/right_cover_gray.png b/img/clothes/handheld/purse/right_cover_gray.png
index e5774437e3f252d0dfcffe63efa3e797c7521860..0120fa4f431617fe854cb17d98e7fb17ad6e8317 100644
Binary files a/img/clothes/handheld/purse/right_cover_gray.png and b/img/clothes/handheld/purse/right_cover_gray.png differ
diff --git a/img/clothes/handheld/purse/right_gray.png b/img/clothes/handheld/purse/right_gray.png
index 98eb3be8ca16d83d8b11a983ca7aa3d0be42a7ff..e07bf4eed833d124d82c2747bd1d59f488b43b8c 100644
Binary files a/img/clothes/handheld/purse/right_gray.png and b/img/clothes/handheld/purse/right_gray.png differ
diff --git a/img/clothes/handheld/salad/right.png b/img/clothes/handheld/salad/right.png
index 00d7eb43d0794fe12290c605c2254e04a30ecce6..26cd3483370252968f888e53ff6e7f034141c0fa 100644
Binary files a/img/clothes/handheld/salad/right.png and b/img/clothes/handheld/salad/right.png differ
diff --git a/img/clothes/handheld/shotglass/right.png b/img/clothes/handheld/shotglass/right.png
index c4703d770b0aece06ca222f033295ebd3bca5df9..e7b575047a83480c64f0ae92aeaf32c6109607a7 100644
Binary files a/img/clothes/handheld/shotglass/right.png and b/img/clothes/handheld/shotglass/right.png differ
diff --git a/img/clothes/handheld/spoon/right.png b/img/clothes/handheld/spoon/right.png
index 78f015a0f8507894a1ff80a24eee8fd9549464a3..d906d7adccee30b6df6b8ee5c1e48c7f25e30e3c 100644
Binary files a/img/clothes/handheld/spoon/right.png and b/img/clothes/handheld/spoon/right.png differ
diff --git a/img/clothes/handheld/tea/right.png b/img/clothes/handheld/tea/right.png
index 437345446148745a60edb54c4b4b656e24e2eed9..2c12a42f5e6838bc4879335b94ca5be440f1e2b0 100644
Binary files a/img/clothes/handheld/tea/right.png and b/img/clothes/handheld/tea/right.png differ
diff --git a/img/clothes/handheld/torch/right1.png b/img/clothes/handheld/torch/right1.png
index d718dfb170d3778721d10ba4aebbc7d2a4dca9fe..8498c6f926df2245d7fdf176cf6555e5a1903148 100644
Binary files a/img/clothes/handheld/torch/right1.png and b/img/clothes/handheld/torch/right1.png differ
diff --git a/img/clothes/handheld/torch/right2.png b/img/clothes/handheld/torch/right2.png
index 4f966d429f7225d7e3549d782404aceeba94b0ca..651bb6f98bce21e314c701b57691e937b7050463 100644
Binary files a/img/clothes/handheld/torch/right2.png and b/img/clothes/handheld/torch/right2.png differ
diff --git a/img/clothes/handheld/torch/right3.png b/img/clothes/handheld/torch/right3.png
index 6ea2c8966cf290b0cedeaa0a2f4107cd8f1c8420..63e2d6d8da0e0aca3d90347a4b4877ca26889641 100644
Binary files a/img/clothes/handheld/torch/right3.png and b/img/clothes/handheld/torch/right3.png differ
diff --git a/img/clothes/handheld/torch/right4.png b/img/clothes/handheld/torch/right4.png
index 284fe4362b1339a96a5c896f2ef011fed507e1e9..06b1cea93185b30ac358d5e5620c67521c090103 100644
Binary files a/img/clothes/handheld/torch/right4.png and b/img/clothes/handheld/torch/right4.png differ
diff --git a/img/clothes/handheld/torch/right5.png b/img/clothes/handheld/torch/right5.png
index 25daecea351025b35dc492a2e4cb5ea8ab67d58c..5c18140402b65c8467fcf1de08791c4c2461ab5d 100644
Binary files a/img/clothes/handheld/torch/right5.png and b/img/clothes/handheld/torch/right5.png differ
diff --git a/img/clothes/handheld/torch/right6.png b/img/clothes/handheld/torch/right6.png
index 61b2c7cb28e7d92198126e85001c69e47d34dac6..3db5be868035777238844b082e60ca233582d4e0 100644
Binary files a/img/clothes/handheld/torch/right6.png and b/img/clothes/handheld/torch/right6.png differ
diff --git a/img/clothes/handheld/torch/right7.png b/img/clothes/handheld/torch/right7.png
index 1e7ec980fdf06c1dd86282c147bffd2afa1a1852..5f193a486c98fdc28f2044b4d946c9faaaa64590 100644
Binary files a/img/clothes/handheld/torch/right7.png and b/img/clothes/handheld/torch/right7.png differ
diff --git a/img/clothes/handheld/umbrella/back_acc_gray.png b/img/clothes/handheld/umbrella/back_acc_gray.png
index de90c577c0a900499c31e5971dcfccecd7866358..00c5a2b3231c432378dc10b01bb74b1dae094a0f 100644
Binary files a/img/clothes/handheld/umbrella/back_acc_gray.png and b/img/clothes/handheld/umbrella/back_acc_gray.png differ
diff --git a/img/clothes/handheld/umbrella/back_gray.png b/img/clothes/handheld/umbrella/back_gray.png
index 67347df5798d3aa1130a0bb63c1bd260c0bcdc3e..b63742ee48d34237da06770cde319161f4c9fcb8 100644
Binary files a/img/clothes/handheld/umbrella/back_gray.png and b/img/clothes/handheld/umbrella/back_gray.png differ
diff --git a/img/clothes/handheld/umbrella/mask.png b/img/clothes/handheld/umbrella/mask.png
index 120e3eb1c956731ee587ac6c5ab54e116354b690..da0c1013ed6cb5daa7103a1aaa9aec4f66f40d28 100644
Binary files a/img/clothes/handheld/umbrella/mask.png and b/img/clothes/handheld/umbrella/mask.png differ
diff --git a/img/clothes/handheld/umbrella/right_acc_gray.png b/img/clothes/handheld/umbrella/right_acc_gray.png
index 67f935c6d0436c4d34f3899a800bdde33f3e5ff7..d526dd5e833ff3dfe021a58a7f30ebff5a7c0de1 100644
Binary files a/img/clothes/handheld/umbrella/right_acc_gray.png and b/img/clothes/handheld/umbrella/right_acc_gray.png differ
diff --git a/img/clothes/handheld/umbrella/right_cover_acc_gray.png b/img/clothes/handheld/umbrella/right_cover_acc_gray.png
index fcb9d7194be63b240fbfb495a4993a7352e71fd8..560ae558594d6182c95a7dfcb6e815ab940a5134 100644
Binary files a/img/clothes/handheld/umbrella/right_cover_acc_gray.png and b/img/clothes/handheld/umbrella/right_cover_acc_gray.png differ
diff --git a/img/clothes/handheld/umbrella/right_cover_gray.png b/img/clothes/handheld/umbrella/right_cover_gray.png
index 9530f86acaa349b3b86b302b639a9b2a93eca392..fd96e43779eaea3b8c595c64491efd9f6f7605c6 100644
Binary files a/img/clothes/handheld/umbrella/right_cover_gray.png and b/img/clothes/handheld/umbrella/right_cover_gray.png differ
diff --git a/img/clothes/handheld/umbrella/right_gray.png b/img/clothes/handheld/umbrella/right_gray.png
index dca6854880967a95e80f64c96c6fb97b8b7f5711..8979fa8846fb66a4b4e532d81cdafebfd0cd8b8c 100644
Binary files a/img/clothes/handheld/umbrella/right_gray.png and b/img/clothes/handheld/umbrella/right_gray.png differ
diff --git a/img/clothes/handheld/wine/right.png b/img/clothes/handheld/wine/right.png
index 4906974377e8515bfee984a42e47ec74305023f4..469b2a9fe033e26f93813eec83961de30719800f 100644
Binary files a/img/clothes/handheld/wine/right.png and b/img/clothes/handheld/wine/right.png differ
diff --git a/img/clothes/hands/armwarmers/hold_acc_gray.png b/img/clothes/hands/armwarmers/hold_acc_gray.png
index fca5cfccb56aa5b0ea37f0c3304f760cfd0acba9..96997b08d869c411213f6c9e9c7899a85d3c1dd3 100644
Binary files a/img/clothes/hands/armwarmers/hold_acc_gray.png and b/img/clothes/hands/armwarmers/hold_acc_gray.png differ
diff --git a/img/clothes/hands/armwarmers/hold_gray.png b/img/clothes/hands/armwarmers/hold_gray.png
index b3553aed7f4620dc008c7948f5ed9f15987d7a80..e75bde43f48cfa915116586ecc782cc23c15c252 100644
Binary files a/img/clothes/hands/armwarmers/hold_gray.png and b/img/clothes/hands/armwarmers/hold_gray.png differ
diff --git a/img/clothes/hands/armwarmers/left_acc_gray.png b/img/clothes/hands/armwarmers/left_acc_gray.png
index 0c49585f57010af007c7ec84ce6a67fc24e9eb5a..878819e8719ac3de7237c3caac06040fa5b6caa6 100644
Binary files a/img/clothes/hands/armwarmers/left_acc_gray.png and b/img/clothes/hands/armwarmers/left_acc_gray.png differ
diff --git a/img/clothes/hands/armwarmers/left_cover_acc_gray.png b/img/clothes/hands/armwarmers/left_cover_acc_gray.png
index 0102121ba99eadae4ed0dde16d746289535211bb..0f3ec74ad03126b584955ee37cf9f3d285c3f4e8 100644
Binary files a/img/clothes/hands/armwarmers/left_cover_acc_gray.png and b/img/clothes/hands/armwarmers/left_cover_acc_gray.png differ
diff --git a/img/clothes/hands/armwarmers/left_cover_gray.png b/img/clothes/hands/armwarmers/left_cover_gray.png
index 597876b1eb448265821171ef59050d79671f5eff..7b19f539038ca3f02c3d0de2d970e774b2c6214b 100644
Binary files a/img/clothes/hands/armwarmers/left_cover_gray.png and b/img/clothes/hands/armwarmers/left_cover_gray.png differ
diff --git a/img/clothes/hands/armwarmers/left_gray.png b/img/clothes/hands/armwarmers/left_gray.png
index fd21462c7a7121edf7a4d8b7fa590fa3514749ce..cdbae475e2d212a8134db67b9d19bc36f17e4ced 100644
Binary files a/img/clothes/hands/armwarmers/left_gray.png and b/img/clothes/hands/armwarmers/left_gray.png differ
diff --git a/img/clothes/hands/armwarmers/right_acc_gray.png b/img/clothes/hands/armwarmers/right_acc_gray.png
index 94525af26cd01ff0bd98e3b96711ecde8d5757ab..fb59c420b05431fe2432aff4e94ff8791fd67da7 100644
Binary files a/img/clothes/hands/armwarmers/right_acc_gray.png and b/img/clothes/hands/armwarmers/right_acc_gray.png differ
diff --git a/img/clothes/hands/armwarmers/right_cover_acc_gray.png b/img/clothes/hands/armwarmers/right_cover_acc_gray.png
index e5c92f48e5b6f3ae94c622dea4735c3934aba667..6918aa87b2f81a079c485612fbe1ba0976a0aaf4 100644
Binary files a/img/clothes/hands/armwarmers/right_cover_acc_gray.png and b/img/clothes/hands/armwarmers/right_cover_acc_gray.png differ
diff --git a/img/clothes/hands/armwarmers/right_cover_gray.png b/img/clothes/hands/armwarmers/right_cover_gray.png
index 1f574c76cadd5b086d0b25d9cd00ff61a15219b0..f166917b67d9f3b1287a13d14b94266124368446 100644
Binary files a/img/clothes/hands/armwarmers/right_cover_gray.png and b/img/clothes/hands/armwarmers/right_cover_gray.png differ
diff --git a/img/clothes/hands/armwarmers/right_gray.png b/img/clothes/hands/armwarmers/right_gray.png
index 31833b0810ddec55e9eceafb81c065ba2e9f6742..80f8e0c48fd38d0a7584b951ca39dfbe24e8033b 100644
Binary files a/img/clothes/hands/armwarmers/right_gray.png and b/img/clothes/hands/armwarmers/right_gray.png differ
diff --git a/img/clothes/hands/cow/hold.png b/img/clothes/hands/cow/hold.png
index 90503f8978790e9ee151e5b7014be8620e68d7de..843327fb4107be7ade28a39b71919ac0eb33827b 100644
Binary files a/img/clothes/hands/cow/hold.png and b/img/clothes/hands/cow/hold.png differ
diff --git a/img/clothes/hands/cow/left.png b/img/clothes/hands/cow/left.png
index 55d7bef7d0c8f8be2233fe6f55d3fd24b71569a4..4a9bd77d3e6295c4add149c2b1f4e07fec8d7c1c 100644
Binary files a/img/clothes/hands/cow/left.png and b/img/clothes/hands/cow/left.png differ
diff --git a/img/clothes/hands/cow/left_cover.png b/img/clothes/hands/cow/left_cover.png
index ff2deafa310dc6c48d476b4897ecb68409264d18..dcf31e6227fb4d2d79ca27740da89646a78d3a6e 100644
Binary files a/img/clothes/hands/cow/left_cover.png and b/img/clothes/hands/cow/left_cover.png differ
diff --git a/img/clothes/hands/cow/right.png b/img/clothes/hands/cow/right.png
index f97d285927c1a4aee88e37a5ca99d7d875e85ee1..b495a4f05179878542bc0810d5f9c1f5476f3c02 100644
Binary files a/img/clothes/hands/cow/right.png and b/img/clothes/hands/cow/right.png differ
diff --git a/img/clothes/hands/cow/right_cover.png b/img/clothes/hands/cow/right_cover.png
index 815c5fe7b1709ef8e0cf7bfd8a2a5650ba7c1fd4..28709f132d46707abf419464ac4c5d32e7bafb0b 100644
Binary files a/img/clothes/hands/cow/right_cover.png and b/img/clothes/hands/cow/right_cover.png differ
diff --git a/img/clothes/hands/fingerlessgloves/hold_gray.png b/img/clothes/hands/fingerlessgloves/hold_gray.png
index 7bb23bb1f89c1517620e6f571cafffb8e37fb679..c057011b09d2a8464e215b95373ab7680d0ac54f 100644
Binary files a/img/clothes/hands/fingerlessgloves/hold_gray.png and b/img/clothes/hands/fingerlessgloves/hold_gray.png differ
diff --git a/img/clothes/hands/fingerlessgloves/left_cover_gray.png b/img/clothes/hands/fingerlessgloves/left_cover_gray.png
index ed6155ec611f97412fd76d2fb51c9c85ca779054..2feec12da5403ab7994f34a20e87d155c4fd9a3d 100644
Binary files a/img/clothes/hands/fingerlessgloves/left_cover_gray.png and b/img/clothes/hands/fingerlessgloves/left_cover_gray.png differ
diff --git a/img/clothes/hands/fingerlessgloves/left_gray.png b/img/clothes/hands/fingerlessgloves/left_gray.png
index f999f55370010b42df8d8c6e40a583848c453d5f..5113026467db698670eadaab89c8b2360b5f48c9 100644
Binary files a/img/clothes/hands/fingerlessgloves/left_gray.png and b/img/clothes/hands/fingerlessgloves/left_gray.png differ
diff --git a/img/clothes/hands/fingerlessgloves/right_cover_gray.png b/img/clothes/hands/fingerlessgloves/right_cover_gray.png
index f2bfec8886a66e185f2cbee1a4c4fb2e0f12c181..4300f035181c7cb5b8e6de38bbdb93aaf8768e57 100644
Binary files a/img/clothes/hands/fingerlessgloves/right_cover_gray.png and b/img/clothes/hands/fingerlessgloves/right_cover_gray.png differ
diff --git a/img/clothes/hands/fingerlessgloves/right_gray.png b/img/clothes/hands/fingerlessgloves/right_gray.png
index e3c3356faae54105a2cb63c48abecb80bc515c71..a4b8b807dff0ebfbd85f35f192ccc4d809839369 100644
Binary files a/img/clothes/hands/fingerlessgloves/right_gray.png and b/img/clothes/hands/fingerlessgloves/right_gray.png differ
diff --git a/img/clothes/hands/gold/hold.png b/img/clothes/hands/gold/hold.png
index 59a1b5c3bfb643c5c95fcf528609f5deb1862f13..88e0021e9d39e76d80cf45d07814e27276a99bfe 100644
Binary files a/img/clothes/hands/gold/hold.png and b/img/clothes/hands/gold/hold.png differ
diff --git a/img/clothes/hands/gold/left.png b/img/clothes/hands/gold/left.png
index 85e4a0dd6acdb5948f9c368a419204e475e08077..99eacb3f4a9ea3390f58ed86e1bbe1901fb53f55 100644
Binary files a/img/clothes/hands/gold/left.png and b/img/clothes/hands/gold/left.png differ
diff --git a/img/clothes/hands/gold/left_cover.png b/img/clothes/hands/gold/left_cover.png
index c5890e58ce82687435530248d6b202aba58872ee..36243e95e32ee09736fdbbc111982a5a8b2a01b0 100644
Binary files a/img/clothes/hands/gold/left_cover.png and b/img/clothes/hands/gold/left_cover.png differ
diff --git a/img/clothes/hands/gold/right.png b/img/clothes/hands/gold/right.png
index a6bdca17a2101cdbf842ef518db57bcb6470fdb1..6fae3cb0d1753499ec37b0be47a0343ce8909e51 100644
Binary files a/img/clothes/hands/gold/right.png and b/img/clothes/hands/gold/right.png differ
diff --git a/img/clothes/hands/gold/right_cover.png b/img/clothes/hands/gold/right_cover.png
index 40c73f60c51491d20719a39c341f64ec64101399..74cb33d48ab10320a3a5680fe577a6ceb48cbff5 100644
Binary files a/img/clothes/hands/gold/right_cover.png and b/img/clothes/hands/gold/right_cover.png differ
diff --git a/img/clothes/hands/goldshackles/hold.png b/img/clothes/hands/goldshackles/hold.png
index 8b9eb6cecb21675f102f99e4c1e0c59b7e22f6e0..9071af10ad56a62558d625ce4ca4044f49d52b7f 100644
Binary files a/img/clothes/hands/goldshackles/hold.png and b/img/clothes/hands/goldshackles/hold.png differ
diff --git a/img/clothes/hands/goldshackles/left.png b/img/clothes/hands/goldshackles/left.png
index 9cf1877446b1aecfe50932bf5bbd222b149af941..3d441e375bd20765625fc096cc71d42f9518793d 100644
Binary files a/img/clothes/hands/goldshackles/left.png and b/img/clothes/hands/goldshackles/left.png differ
diff --git a/img/clothes/hands/goldshackles/left_cover.png b/img/clothes/hands/goldshackles/left_cover.png
index 701a8647ba2e6f593998757ecc6e22a066c7d4ef..c94c276f4955ddeed253860492c86a770a64953e 100644
Binary files a/img/clothes/hands/goldshackles/left_cover.png and b/img/clothes/hands/goldshackles/left_cover.png differ
diff --git a/img/clothes/hands/goldshackles/right.png b/img/clothes/hands/goldshackles/right.png
index be137697498569c9de6f6156f2ee85cab085d355..2431bfd88d813e5dae4721b8d5efbb76e5b90eba 100644
Binary files a/img/clothes/hands/goldshackles/right.png and b/img/clothes/hands/goldshackles/right.png differ
diff --git a/img/clothes/hands/goldshackles/right_cover.png b/img/clothes/hands/goldshackles/right_cover.png
index dc539f9e1318fd1d7a6053c8943b52ef134c63a2..53f8a0bb4772013fd9bdf39266d3faf12c27b46c 100644
Binary files a/img/clothes/hands/goldshackles/right_cover.png and b/img/clothes/hands/goldshackles/right_cover.png differ
diff --git a/img/clothes/hands/lacewarmers/hold_gray.png b/img/clothes/hands/lacewarmers/hold_gray.png
index 23983da40929499721bfcc48a38b7fcd83daafcc..30799832f8c807fa34790ca25ce2403778bb380a 100644
Binary files a/img/clothes/hands/lacewarmers/hold_gray.png and b/img/clothes/hands/lacewarmers/hold_gray.png differ
diff --git a/img/clothes/hands/lacewarmers/left_cover_gray.png b/img/clothes/hands/lacewarmers/left_cover_gray.png
index d825d5a47beba9fa13469484a570cbc68e2ced8b..cb1317c47e514c2b63d6ba8b9a1930cbb82e88fe 100644
Binary files a/img/clothes/hands/lacewarmers/left_cover_gray.png and b/img/clothes/hands/lacewarmers/left_cover_gray.png differ
diff --git a/img/clothes/hands/lacewarmers/left_gray.png b/img/clothes/hands/lacewarmers/left_gray.png
index 29c5563668b95d2bf72bd83722cf7bd771c83b7b..5da1353ec613f18151238183025cb7e57e3f72d0 100644
Binary files a/img/clothes/hands/lacewarmers/left_gray.png and b/img/clothes/hands/lacewarmers/left_gray.png differ
diff --git a/img/clothes/hands/lacewarmers/right_cover_gray.png b/img/clothes/hands/lacewarmers/right_cover_gray.png
index 5fac36433fe959670aa5b2781291a2abc39d7a0a..13373babf3a987b9296220df1b8d7a97914fcdb0 100644
Binary files a/img/clothes/hands/lacewarmers/right_cover_gray.png and b/img/clothes/hands/lacewarmers/right_cover_gray.png differ
diff --git a/img/clothes/hands/lacewarmers/right_gray.png b/img/clothes/hands/lacewarmers/right_gray.png
index 240879f156ad8db089a55871b63a802f0419ee41..4e7fc8f3341eda9a86c46738c8756ba46ed9c1ce 100644
Binary files a/img/clothes/hands/lacewarmers/right_gray.png and b/img/clothes/hands/lacewarmers/right_gray.png differ
diff --git a/img/clothes/hands/longleathergloves/hold_gray.png b/img/clothes/hands/longleathergloves/hold_gray.png
index 122c7d273eb9669321d4fb92e76f950290792290..260ce8eb0ba69328bb5c14e0d82ba062d545699d 100644
Binary files a/img/clothes/hands/longleathergloves/hold_gray.png and b/img/clothes/hands/longleathergloves/hold_gray.png differ
diff --git a/img/clothes/hands/longleathergloves/left_cover_gray.png b/img/clothes/hands/longleathergloves/left_cover_gray.png
index d34acf1f49bd7aa1c3d8adcfbc9e22598b748c80..e22011789428150ca7ec869175c70085f31105a9 100644
Binary files a/img/clothes/hands/longleathergloves/left_cover_gray.png and b/img/clothes/hands/longleathergloves/left_cover_gray.png differ
diff --git a/img/clothes/hands/longleathergloves/left_gray.png b/img/clothes/hands/longleathergloves/left_gray.png
index a242a08bac272df0884d0dd7771dec6ede13e5cf..b4b7b4c6f4dd76207ee5361602b06133b2fd3b38 100644
Binary files a/img/clothes/hands/longleathergloves/left_gray.png and b/img/clothes/hands/longleathergloves/left_gray.png differ
diff --git a/img/clothes/hands/longleathergloves/right_cover_gray.png b/img/clothes/hands/longleathergloves/right_cover_gray.png
index 9d35581b471944c4e4f2009ec59f206a40cf6839..859c5f3be143393c87d6e1f48bf7db2afeb2f666 100644
Binary files a/img/clothes/hands/longleathergloves/right_cover_gray.png and b/img/clothes/hands/longleathergloves/right_cover_gray.png differ
diff --git a/img/clothes/hands/longleathergloves/right_gray.png b/img/clothes/hands/longleathergloves/right_gray.png
index dc7064d478247f7796e7b6870ed8df3d8ed2b798..0e458e7eb9d434c664f41f088280ffeeafb2515b 100644
Binary files a/img/clothes/hands/longleathergloves/right_gray.png and b/img/clothes/hands/longleathergloves/right_gray.png differ
diff --git a/img/clothes/hands/mittens/hold_gray.png b/img/clothes/hands/mittens/hold_gray.png
index 6084fa61ec3da51f8eee1d38f1ce1ca7c64cd5c5..a9065106b0309060f815f9a4fb6467927b2bfdec 100644
Binary files a/img/clothes/hands/mittens/hold_gray.png and b/img/clothes/hands/mittens/hold_gray.png differ
diff --git a/img/clothes/hands/mittens/left_cover_gray.png b/img/clothes/hands/mittens/left_cover_gray.png
index 74f297d0ba379dc3550f8802bf9a7195771b09d7..7e160a5bdbe7dac9e28e308b69e4de1789ca77b4 100644
Binary files a/img/clothes/hands/mittens/left_cover_gray.png and b/img/clothes/hands/mittens/left_cover_gray.png differ
diff --git a/img/clothes/hands/mittens/left_gray.png b/img/clothes/hands/mittens/left_gray.png
index cb6b6c357be14ae1ea3491ed384b95c6ca5d6344..9ac197551013d41e0551ced11fa0b95d290f87cc 100644
Binary files a/img/clothes/hands/mittens/left_gray.png and b/img/clothes/hands/mittens/left_gray.png differ
diff --git a/img/clothes/hands/mittens/right_cover_gray.png b/img/clothes/hands/mittens/right_cover_gray.png
index 39d3107e0028280a4b742e71fd2e55ad02069c48..77f05b7001b72851b3b242a24d6ba23acfcfdf4c 100644
Binary files a/img/clothes/hands/mittens/right_cover_gray.png and b/img/clothes/hands/mittens/right_cover_gray.png differ
diff --git a/img/clothes/hands/mittens/right_gray.png b/img/clothes/hands/mittens/right_gray.png
index b352a41f8a2a9efdb7eb85f6f284db1ecdcd3b11..e1dba6ab919960b6de3ab2e1aa67ee3b7682d40c 100644
Binary files a/img/clothes/hands/mittens/right_gray.png and b/img/clothes/hands/mittens/right_gray.png differ
diff --git a/img/clothes/hands/nunlewd/hold.png b/img/clothes/hands/nunlewd/hold.png
index 4b091d052662b74ec6044f0bf9810a39fd8f2c36..47f72643f64c2c6ce5b9b84dd983e2fca45a7a91 100644
Binary files a/img/clothes/hands/nunlewd/hold.png and b/img/clothes/hands/nunlewd/hold.png differ
diff --git a/img/clothes/hands/nunlewd/left.png b/img/clothes/hands/nunlewd/left.png
index 842627c86f3c2dbb7e527330ee854c5632ba149b..2f77e059d9eb8bc8da270156221d77417d516592 100644
Binary files a/img/clothes/hands/nunlewd/left.png and b/img/clothes/hands/nunlewd/left.png differ
diff --git a/img/clothes/hands/nunlewd/left_cover.png b/img/clothes/hands/nunlewd/left_cover.png
index e847330d756ad27457b079472d5e7088cf7f5146..8b975cbd7b767a1ea3ef5a8d504ddc38bc99c842 100644
Binary files a/img/clothes/hands/nunlewd/left_cover.png and b/img/clothes/hands/nunlewd/left_cover.png differ
diff --git a/img/clothes/hands/nunlewd/right.png b/img/clothes/hands/nunlewd/right.png
index 5edafad62229eccdedf09a4327f36c042c336b86..e6bb2a41d4aa8fdc668f352920856dc26858b9c5 100644
Binary files a/img/clothes/hands/nunlewd/right.png and b/img/clothes/hands/nunlewd/right.png differ
diff --git a/img/clothes/hands/nunlewd/right_cover.png b/img/clothes/hands/nunlewd/right_cover.png
index 697778c128e0fb2167d7e161085d097e41d3c067..7158e30674b714b24b40929ab1c606a8de5ccdc9 100644
Binary files a/img/clothes/hands/nunlewd/right_cover.png and b/img/clothes/hands/nunlewd/right_cover.png differ
diff --git a/img/clothes/hands/pompoms/hold_acc.png b/img/clothes/hands/pompoms/hold_acc.png
index 2ccf4c7783ecf664eab89dc6106a6fc5fa748ffa..b5615d8bde0f77ec9e2c945e22d4e3358de9bac9 100644
Binary files a/img/clothes/hands/pompoms/hold_acc.png and b/img/clothes/hands/pompoms/hold_acc.png differ
diff --git a/img/clothes/hands/pompoms/hold_gray.png b/img/clothes/hands/pompoms/hold_gray.png
index 464d3f61c0456b482d017c5709b13cc113c0fcb1..f6158478942e92308499d4a093afd2ce75e213fd 100644
Binary files a/img/clothes/hands/pompoms/hold_gray.png and b/img/clothes/hands/pompoms/hold_gray.png differ
diff --git a/img/clothes/hands/pompoms/left_acc.png b/img/clothes/hands/pompoms/left_acc.png
index 7c38f732265f131e21191dcb9b606472a63563a8..d8bf83eadb52e1d621eb5af9c168d0d902558f74 100644
Binary files a/img/clothes/hands/pompoms/left_acc.png and b/img/clothes/hands/pompoms/left_acc.png differ
diff --git a/img/clothes/hands/pompoms/left_cover_acc.png b/img/clothes/hands/pompoms/left_cover_acc.png
index 5f201f82426310f9252c0f4a85997c007399639d..2315311450635f92c97dd0822fd64a252fd36744 100644
Binary files a/img/clothes/hands/pompoms/left_cover_acc.png and b/img/clothes/hands/pompoms/left_cover_acc.png differ
diff --git a/img/clothes/hands/pompoms/left_cover_gray.png b/img/clothes/hands/pompoms/left_cover_gray.png
index 950165a6f9083edf1513f4b74eb74fc12ef43406..a6c07127e0220a0f70a8c142ec7cb23f65b71f80 100644
Binary files a/img/clothes/hands/pompoms/left_cover_gray.png and b/img/clothes/hands/pompoms/left_cover_gray.png differ
diff --git a/img/clothes/hands/pompoms/left_gray.png b/img/clothes/hands/pompoms/left_gray.png
index 2ca3c875889e576174dd672fc7b6ad7dc2c85e8e..9b6a1e080bbb1a2798aed868f07e4b22b7548ae8 100644
Binary files a/img/clothes/hands/pompoms/left_gray.png and b/img/clothes/hands/pompoms/left_gray.png differ
diff --git a/img/clothes/hands/pompoms/right_acc.png b/img/clothes/hands/pompoms/right_acc.png
index 475c744af8ebaecd462fd5e47a048b36ff52eb7a..4ddd59632447fe5276a6eb13005580a300ec53d2 100644
Binary files a/img/clothes/hands/pompoms/right_acc.png and b/img/clothes/hands/pompoms/right_acc.png differ
diff --git a/img/clothes/hands/pompoms/right_cover_acc.png b/img/clothes/hands/pompoms/right_cover_acc.png
index 9ae05c7b36d6ee60a930bf54303030099e021c13..81da8f938d5faff9ddb6c932ec0995e6961eb1c7 100644
Binary files a/img/clothes/hands/pompoms/right_cover_acc.png and b/img/clothes/hands/pompoms/right_cover_acc.png differ
diff --git a/img/clothes/hands/pompoms/right_cover_gray.png b/img/clothes/hands/pompoms/right_cover_gray.png
index 3f5f359e9b3e662f87cca8a64d9368e76b0b7026..2cc42c229b4a1d8facfe803c066779355299395e 100644
Binary files a/img/clothes/hands/pompoms/right_cover_gray.png and b/img/clothes/hands/pompoms/right_cover_gray.png differ
diff --git a/img/clothes/hands/pompoms/right_gray.png b/img/clothes/hands/pompoms/right_gray.png
index 8d738bfc6d7c8671653fd344b9964ab3ed9a770f..98f220ea0ee4d76edbf96db1e4f4bd7e03c318ad 100644
Binary files a/img/clothes/hands/pompoms/right_gray.png and b/img/clothes/hands/pompoms/right_gray.png differ
diff --git a/img/clothes/hands/workgloves/hold.png b/img/clothes/hands/workgloves/hold.png
index bdb4b023febc56f8982d8acc3f3f628fc30b297a..83adeafe56246a799feb43dc74d0d970e00054e2 100644
Binary files a/img/clothes/hands/workgloves/hold.png and b/img/clothes/hands/workgloves/hold.png differ
diff --git a/img/clothes/hands/workgloves/left.png b/img/clothes/hands/workgloves/left.png
index 6d63fd98129947d8eacaef314940b55d1736c6b5..bc0ca1077d7d3f2ba44705ce9d5583e09dd9a7fd 100644
Binary files a/img/clothes/hands/workgloves/left.png and b/img/clothes/hands/workgloves/left.png differ
diff --git a/img/clothes/hands/workgloves/left_cover.png b/img/clothes/hands/workgloves/left_cover.png
index 43c375c8c0fb06970098c7e0e07a7bc3df1fd4ac..0484d8086a8b280c3b9c5d9e37d6349acb1da9d0 100644
Binary files a/img/clothes/hands/workgloves/left_cover.png and b/img/clothes/hands/workgloves/left_cover.png differ
diff --git a/img/clothes/hands/workgloves/right.png b/img/clothes/hands/workgloves/right.png
index 548d54f30c3603a5e878984d6c7a0dc3870df4ff..237c9dc5d2a27d56d7c7fd5d81ba2dec31e30bb9 100644
Binary files a/img/clothes/hands/workgloves/right.png and b/img/clothes/hands/workgloves/right.png differ
diff --git a/img/clothes/hands/workgloves/right_cover.png b/img/clothes/hands/workgloves/right_cover.png
index 766f70f74be3ae58293f05f7ac8d6a72ac8d1992..661ba204e46f45f64a41264452c9dcb6a0ef798a 100644
Binary files a/img/clothes/hands/workgloves/right_cover.png and b/img/clothes/hands/workgloves/right_cover.png differ
diff --git a/img/clothes/hands/wristcuffs/hold.png b/img/clothes/hands/wristcuffs/hold.png
index 3561b07cac4d927f1f1daa4a9fab50743340c5de..1f9b9c181cf81c109f423982ac13af3cd58b4bae 100644
Binary files a/img/clothes/hands/wristcuffs/hold.png and b/img/clothes/hands/wristcuffs/hold.png differ
diff --git a/img/clothes/hands/wristcuffs/left.png b/img/clothes/hands/wristcuffs/left.png
index a0113039e7a90e9228f953085187ee9042757865..0e96c428a74752aa036ce04d565403df243633f4 100644
Binary files a/img/clothes/hands/wristcuffs/left.png and b/img/clothes/hands/wristcuffs/left.png differ
diff --git a/img/clothes/hands/wristcuffs/left_cover.png b/img/clothes/hands/wristcuffs/left_cover.png
index 84d46b6fed980db9ea250cdbf8ff6bfe796aa808..2d0253b3eab1502f53434914bf8a8fe3d097d466 100644
Binary files a/img/clothes/hands/wristcuffs/left_cover.png and b/img/clothes/hands/wristcuffs/left_cover.png differ
diff --git a/img/clothes/hands/wristcuffs/right.png b/img/clothes/hands/wristcuffs/right.png
index a2ee8850afd06ce6df76d8651b9e9365bab02b27..04d16ebe55e6018c81b48586d0c2f4df82ae6281 100644
Binary files a/img/clothes/hands/wristcuffs/right.png and b/img/clothes/hands/wristcuffs/right.png differ
diff --git a/img/clothes/hands/wristcuffs/right_cover.png b/img/clothes/hands/wristcuffs/right_cover.png
index 1c3739eea132b4971d505686c777e7de69064a09..fbd75eba125b8d664c017c5ff574cadf0271d43e 100644
Binary files a/img/clothes/hands/wristcuffs/right_cover.png and b/img/clothes/hands/wristcuffs/right_cover.png differ
diff --git a/img/clothes/head/alice/full_gray.png b/img/clothes/head/alice/full_gray.png
index 15e81b3f84940a810044f006caf970f003addbd2..123e7abb5be719f9cc44bb622c299aca850c748c 100644
Binary files a/img/clothes/head/alice/full_gray.png and b/img/clothes/head/alice/full_gray.png differ
diff --git a/img/clothes/head/backwardscap/full_gray.png b/img/clothes/head/backwardscap/full_gray.png
index 53189b49907488ec5f2771a163e87de3064dee61..04e53fe4c45a6f5ce44eab6e9a84e38f0a12f71b 100644
Binary files a/img/clothes/head/backwardscap/full_gray.png and b/img/clothes/head/backwardscap/full_gray.png differ
diff --git a/img/clothes/head/backwardscap/mask.png b/img/clothes/head/backwardscap/mask.png
index 67c5810c31836e10537358ceb7c99eeb86a7a32b..4852b3ee4f600c97189a10bfd85dada218858ac0 100644
Binary files a/img/clothes/head/backwardscap/mask.png and b/img/clothes/head/backwardscap/mask.png differ
diff --git a/img/clothes/head/backwardscap/mask_ponytail.png b/img/clothes/head/backwardscap/mask_ponytail.png
index 8fe9cff69f16a0ceea9cf02657360e15631e4a3b..d4f7ba585566820dc36f738334bfe7d3a07a8121 100644
Binary files a/img/clothes/head/backwardscap/mask_ponytail.png and b/img/clothes/head/backwardscap/mask_ponytail.png differ
diff --git a/img/clothes/head/band/full_gray.png b/img/clothes/head/band/full_gray.png
index 7a3f73d10d06eff832820286c9c61f1fd90d5626..c670ca1c83ce10687965a5388ff6f2d94ff21bd1 100644
Binary files a/img/clothes/head/band/full_gray.png and b/img/clothes/head/band/full_gray.png differ
diff --git a/img/clothes/head/baseball/acc_gray.png b/img/clothes/head/baseball/acc_gray.png
index 5d4300f6ab9444d72d0f8fe4029b5a5f1e8042cb..6fbb413d93b18231f2f0861c2c8bf3309e5a0967 100644
Binary files a/img/clothes/head/baseball/acc_gray.png and b/img/clothes/head/baseball/acc_gray.png differ
diff --git a/img/clothes/head/baseball/full_gray.png b/img/clothes/head/baseball/full_gray.png
index 6a244bde683d496180a00526dffb19d60b352873..c2f242885042441849d70bb2b7981b655eab059b 100644
Binary files a/img/clothes/head/baseball/full_gray.png and b/img/clothes/head/baseball/full_gray.png differ
diff --git a/img/clothes/head/baseball/mask.png b/img/clothes/head/baseball/mask.png
index 9b1f4aafbf97543acd29dff63a1a4a933f657e63..9b75faf4f57ada10d87a27763a2cb50e18be647b 100644
Binary files a/img/clothes/head/baseball/mask.png and b/img/clothes/head/baseball/mask.png differ
diff --git a/img/clothes/head/baseball/mask_ponytail.png b/img/clothes/head/baseball/mask_ponytail.png
index fcc9477fd7105da5d1010496678e1b792e2546cd..db8c082beba4daf4310b7dcee111c5c15072b374 100644
Binary files a/img/clothes/head/baseball/mask_ponytail.png and b/img/clothes/head/baseball/mask_ponytail.png differ
diff --git a/img/clothes/head/bat beanie/acc_gray.png b/img/clothes/head/bat beanie/acc_gray.png
index 1a2c5709353f830fbacd75b8564f2c0015daf922..afcdab92692ce8d225420074713a3b0091880a90 100644
Binary files a/img/clothes/head/bat beanie/acc_gray.png and b/img/clothes/head/bat beanie/acc_gray.png differ
diff --git a/img/clothes/head/bat beanie/back.png b/img/clothes/head/bat beanie/back.png
index 00dc65e458c63201ce4ddd8969fb9a78375011de..d5251bfe8c95895dc7df5c8a7859313d4e6da845 100644
Binary files a/img/clothes/head/bat beanie/back.png and b/img/clothes/head/bat beanie/back.png differ
diff --git a/img/clothes/head/bat beanie/back_acc_gray.png b/img/clothes/head/bat beanie/back_acc_gray.png
index 89cdbf40bf85383dc14faa2313c7b37a17c8aff5..a7ab8567417cca5f91da8aac488fd8de43e2c3ae 100644
Binary files a/img/clothes/head/bat beanie/back_acc_gray.png and b/img/clothes/head/bat beanie/back_acc_gray.png differ
diff --git a/img/clothes/head/bat beanie/full.png b/img/clothes/head/bat beanie/full.png
index 9da1566c8204245590397b1141c66ddd860cbc0b..2d99a09e6723c0b803978c6658d28a40b542b22e 100644
Binary files a/img/clothes/head/bat beanie/full.png and b/img/clothes/head/bat beanie/full.png differ
diff --git a/img/clothes/head/bat beanie/mask.png b/img/clothes/head/bat beanie/mask.png
index 77e4c27715ae9f2450c00975f84851a8dbe75f95..33a7a6bdabfeaff92dee0b17d2d010186dfea6a7 100644
Binary files a/img/clothes/head/bat beanie/mask.png and b/img/clothes/head/bat beanie/mask.png differ
diff --git a/img/clothes/head/beanie/full_gray.png b/img/clothes/head/beanie/full_gray.png
index cb277a318b0862e0033a212207ea44981182630b..3a365b9b85898ab5e84dacd8b8ecc0895b1b151a 100644
Binary files a/img/clothes/head/beanie/full_gray.png and b/img/clothes/head/beanie/full_gray.png differ
diff --git a/img/clothes/head/beanie/mask.png b/img/clothes/head/beanie/mask.png
index b9b71bb5367674023b50fe28288c9544d12ba7e6..61def8143e99c2c6ed40ab1b3f30dd14c8b939c7 100644
Binary files a/img/clothes/head/beanie/mask.png and b/img/clothes/head/beanie/mask.png differ
diff --git a/img/clothes/head/beanie/mask_ponytail.png b/img/clothes/head/beanie/mask_ponytail.png
index 8fe9cff69f16a0ceea9cf02657360e15631e4a3b..d4f7ba585566820dc36f738334bfe7d3a07a8121 100644
Binary files a/img/clothes/head/beanie/mask_ponytail.png and b/img/clothes/head/beanie/mask_ponytail.png differ
diff --git a/img/clothes/head/beatnik/full.png b/img/clothes/head/beatnik/full.png
index e2e988f15dcd0e18ab1ad92198136b1635884a78..a04fd2c20ae3c3aaedb4ac4b970cfacf201772d8 100644
Binary files a/img/clothes/head/beatnik/full.png and b/img/clothes/head/beatnik/full.png differ
diff --git a/img/clothes/head/beatnik/mask.png b/img/clothes/head/beatnik/mask.png
index 5bfebf8d5b3961ef478a11c74c2915449c399539..6d519dc7c5c9c92b663919aee2a3a86fcc37d701 100644
Binary files a/img/clothes/head/beatnik/mask.png and b/img/clothes/head/beatnik/mask.png differ
diff --git a/img/clothes/head/bigbow/full_gray.png b/img/clothes/head/bigbow/full_gray.png
index 493508a02245e37456cfe46baa1e8adc6186dbe9..9df81bc8c7b94b38fc2a7b9194ffe56f1342a613 100644
Binary files a/img/clothes/head/bigbow/full_gray.png and b/img/clothes/head/bigbow/full_gray.png differ
diff --git a/img/clothes/head/bow/full_gray.png b/img/clothes/head/bow/full_gray.png
index 19410ef22e0364ffbd093eccede27ef691e33df3..3dc456cbef4c63916ec827f2c26ad3895df210c8 100644
Binary files a/img/clothes/head/bow/full_gray.png and b/img/clothes/head/bow/full_gray.png differ
diff --git a/img/clothes/head/bun/acc.png b/img/clothes/head/bun/acc.png
index fb8c527313343bd4b538392760a7788b520fa398..6b6f7f239c83641c2d869f7d597186c9969dd474 100644
Binary files a/img/clothes/head/bun/acc.png and b/img/clothes/head/bun/acc.png differ
diff --git a/img/clothes/head/bun/full_gray.png b/img/clothes/head/bun/full_gray.png
index 37942885bd9ee22c3560d2239c6b35c57e46c21d..a905bba1b5c75b9b922fc5f6f6b59ff06f076301 100644
Binary files a/img/clothes/head/bun/full_gray.png and b/img/clothes/head/bun/full_gray.png differ
diff --git a/img/clothes/head/bunband/back_gray.png b/img/clothes/head/bunband/back_gray.png
index 865ae240fd22ef35fd60654d625cc5f8ad737b45..a05169a526e130c4fe57429dec92fb45d8423ce1 100644
Binary files a/img/clothes/head/bunband/back_gray.png and b/img/clothes/head/bunband/back_gray.png differ
diff --git a/img/clothes/head/bunband/full_gray.png b/img/clothes/head/bunband/full_gray.png
index 29a5336d2dac110957d3ef7a6e46a967b7bab67f..8d40797d476154d4bca885b47665db995f2e3579 100644
Binary files a/img/clothes/head/bunband/full_gray.png and b/img/clothes/head/bunband/full_gray.png differ
diff --git a/img/clothes/head/bunnyears/full.png b/img/clothes/head/bunnyears/full.png
index 28f079d234d0280b25d3ca0cde084331cd35aa57..4736f4a453158e40fc2c8646b16378a453e46b72 100644
Binary files a/img/clothes/head/bunnyears/full.png and b/img/clothes/head/bunnyears/full.png differ
diff --git a/img/clothes/head/butterflyhairpin/acc.png b/img/clothes/head/butterflyhairpin/acc.png
index f37a9553b1cc4967c2d9a23f2e359e39dca43297..dbcac909a8662a9d8704716e4589ebb2437e514f 100644
Binary files a/img/clothes/head/butterflyhairpin/acc.png and b/img/clothes/head/butterflyhairpin/acc.png differ
diff --git a/img/clothes/head/butterflyhairpin/full_gray.png b/img/clothes/head/butterflyhairpin/full_gray.png
index 0dfca97d110d97d91d7fa1cc7b0341282b47aaec..5e418a29ad38ac62c7dd472d8e5a2b8fc82b4c25 100644
Binary files a/img/clothes/head/butterflyhairpin/full_gray.png and b/img/clothes/head/butterflyhairpin/full_gray.png differ
diff --git a/img/clothes/head/cap/acc_gray.png b/img/clothes/head/cap/acc_gray.png
index 788a4719ae8ae72e3f39030a65d5a8bdd220e2e1..c0f41d92f77d02ab1ab16b86c2be399cd597cbf0 100644
Binary files a/img/clothes/head/cap/acc_gray.png and b/img/clothes/head/cap/acc_gray.png differ
diff --git a/img/clothes/head/cap/full_gray.png b/img/clothes/head/cap/full_gray.png
index d8aff54371063a511b7162c298a2d6ff60a47512..8c73bcd44139e3803250bfcd2f37f09da680ad19 100644
Binary files a/img/clothes/head/cap/full_gray.png and b/img/clothes/head/cap/full_gray.png differ
diff --git a/img/clothes/head/cap/mask.png b/img/clothes/head/cap/mask.png
index d1be69457b65a1568503cabaf8e903c50ec58f17..47a11ced6c398b221dd1baee459b860b68a820dc 100644
Binary files a/img/clothes/head/cap/mask.png and b/img/clothes/head/cap/mask.png differ
diff --git a/img/clothes/head/cap/mask_ponytail.png b/img/clothes/head/cap/mask_ponytail.png
index c2ad6f964570f0069922a473835759aab1f2eab0..17bab486b0dcbdad5fd36adb1417dc3faec952e4 100644
Binary files a/img/clothes/head/cap/mask_ponytail.png and b/img/clothes/head/cap/mask_ponytail.png differ
diff --git a/img/clothes/head/cat hoodie/acc_frayed.png b/img/clothes/head/cat hoodie/acc_frayed.png
index 152c48592fc17d05397d56ce9512e547c27b85c6..640deb4e38de8bfa8bea83cac92e3fb6910dc6cd 100644
Binary files a/img/clothes/head/cat hoodie/acc_frayed.png and b/img/clothes/head/cat hoodie/acc_frayed.png differ
diff --git a/img/clothes/head/cat hoodie/acc_full.png b/img/clothes/head/cat hoodie/acc_full.png
index 152c48592fc17d05397d56ce9512e547c27b85c6..640deb4e38de8bfa8bea83cac92e3fb6910dc6cd 100644
Binary files a/img/clothes/head/cat hoodie/acc_full.png and b/img/clothes/head/cat hoodie/acc_full.png differ
diff --git a/img/clothes/head/cat hoodie/acc_tattered.png b/img/clothes/head/cat hoodie/acc_tattered.png
index 0e2ffd003595a00a1ada0bad6110d62687ad8d8d..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/head/cat hoodie/acc_tattered.png and b/img/clothes/head/cat hoodie/acc_tattered.png differ
diff --git a/img/clothes/head/cat hoodie/acc_torn.png b/img/clothes/head/cat hoodie/acc_torn.png
index a76cf910e25f72182ac751edcfcf68cfef208f7e..395e7551968020480002937d725a39f7e7cacbb9 100644
Binary files a/img/clothes/head/cat hoodie/acc_torn.png and b/img/clothes/head/cat hoodie/acc_torn.png differ
diff --git a/img/clothes/head/cat hoodie/back_gray.png b/img/clothes/head/cat hoodie/back_gray.png
index 7ef8572497a32e4637190b76ccfaced7306dce9b..768f21e8f465d23e0b79446ba1b8fc7952132c3b 100644
Binary files a/img/clothes/head/cat hoodie/back_gray.png and b/img/clothes/head/cat hoodie/back_gray.png differ
diff --git a/img/clothes/head/cat hoodie/frayed_gray.png b/img/clothes/head/cat hoodie/frayed_gray.png
index def8e36de740e801dad7a4ce25d43949ad7c38f9..10a4e03e6236c06e797ee814c06555fadd77f10a 100644
Binary files a/img/clothes/head/cat hoodie/frayed_gray.png and b/img/clothes/head/cat hoodie/frayed_gray.png differ
diff --git a/img/clothes/head/cat hoodie/full_gray.png b/img/clothes/head/cat hoodie/full_gray.png
index 3368d992958eec271898387e981885e8b28b7e1c..a7ccf96354065a8f1083bb28c9edda73ca59b1e9 100644
Binary files a/img/clothes/head/cat hoodie/full_gray.png and b/img/clothes/head/cat hoodie/full_gray.png differ
diff --git a/img/clothes/head/cat hoodie/mask.png b/img/clothes/head/cat hoodie/mask.png
index 30e97ec2f75f30d8b40a2f875e4a7cfa1ba5b19b..40df454c8c58866a381b64e0cf50c5e8ee2e59ea 100644
Binary files a/img/clothes/head/cat hoodie/mask.png and b/img/clothes/head/cat hoodie/mask.png differ
diff --git a/img/clothes/head/cat hoodie/tattered_gray.png b/img/clothes/head/cat hoodie/tattered_gray.png
index 5147ce12b33852765c82bf2ef09fa8e78d6b573c..ffc12cf56451ca18fdf91c328de9ffb95823f627 100644
Binary files a/img/clothes/head/cat hoodie/tattered_gray.png and b/img/clothes/head/cat hoodie/tattered_gray.png differ
diff --git a/img/clothes/head/cat hoodie/torn_gray.png b/img/clothes/head/cat hoodie/torn_gray.png
index 6c261e9070e4b0651ff38e90f5626b4c3d1cc633..59b478b3e49511c434f5ff2b6e9ce7dd15e69cf6 100644
Binary files a/img/clothes/head/cat hoodie/torn_gray.png and b/img/clothes/head/cat hoodie/torn_gray.png differ
diff --git a/img/clothes/head/cat/acc_gray.png b/img/clothes/head/cat/acc_gray.png
index 9c8d353039d4ec98c1b00a81c5f30ad4de7b2614..c014fc3ba92f7d79d10d971370ab2838f6a4d95b 100644
Binary files a/img/clothes/head/cat/acc_gray.png and b/img/clothes/head/cat/acc_gray.png differ
diff --git a/img/clothes/head/cat/full_gray.png b/img/clothes/head/cat/full_gray.png
index 7457842ff3edf60f14178fe522e12fd0e2502402..65a08e23cdf637b8c377bf313c13397dfdb48cf5 100644
Binary files a/img/clothes/head/cat/full_gray.png and b/img/clothes/head/cat/full_gray.png differ
diff --git a/img/clothes/head/cat/mask.png b/img/clothes/head/cat/mask.png
index 053be18772245027114f93cf5b5551fda35fb377..53af2b8721e950aa0568b659a4fa9dfe13ebaabf 100644
Binary files a/img/clothes/head/cat/mask.png and b/img/clothes/head/cat/mask.png differ
diff --git a/img/clothes/head/cat/mask_ponytail.png b/img/clothes/head/cat/mask_ponytail.png
index 7aaf54fa0339a425060dc6064e9a72579db56270..6b5dca4516aa49d003a248668958f8b8d9afd43c 100644
Binary files a/img/clothes/head/cat/mask_ponytail.png and b/img/clothes/head/cat/mask_ponytail.png differ
diff --git a/img/clothes/head/cattail/acc_gray.png b/img/clothes/head/cattail/acc_gray.png
index e74a1e7f20027f23b3c40a4d16db169096eb0408..c6d37151441fbab05a63f8df4ae70d29d7c7023a 100644
Binary files a/img/clothes/head/cattail/acc_gray.png and b/img/clothes/head/cattail/acc_gray.png differ
diff --git a/img/clothes/head/cattail/full_gray.png b/img/clothes/head/cattail/full_gray.png
index 69dfac3a962b45a0f2bf8ce49463a31ef109e525..c26bf66186efb5fd4fe1f05654c493f72d4cb042 100644
Binary files a/img/clothes/head/cattail/full_gray.png and b/img/clothes/head/cattail/full_gray.png differ
diff --git a/img/clothes/head/cattail/mask.png b/img/clothes/head/cattail/mask.png
index 053be18772245027114f93cf5b5551fda35fb377..53af2b8721e950aa0568b659a4fa9dfe13ebaabf 100644
Binary files a/img/clothes/head/cattail/mask.png and b/img/clothes/head/cattail/mask.png differ
diff --git a/img/clothes/head/cattail/mask_ponytail.png b/img/clothes/head/cattail/mask_ponytail.png
index 7aaf54fa0339a425060dc6064e9a72579db56270..6b5dca4516aa49d003a248668958f8b8d9afd43c 100644
Binary files a/img/clothes/head/cattail/mask_ponytail.png and b/img/clothes/head/cattail/mask_ponytail.png differ
diff --git a/img/clothes/head/chef/back.png b/img/clothes/head/chef/back.png
index 62f17004c106d268196c2eb48e0a22fbe9f425ba..af6564acc79dde8bf2c1a143dfb75a51900cfdd9 100644
Binary files a/img/clothes/head/chef/back.png and b/img/clothes/head/chef/back.png differ
diff --git a/img/clothes/head/chef/full.png b/img/clothes/head/chef/full.png
index bb45305af3571cebcfe611a0bcc8e06f53d67ce9..6a6ffd994de6f3dfe00398c9638a37befb960c98 100644
Binary files a/img/clothes/head/chef/full.png and b/img/clothes/head/chef/full.png differ
diff --git a/img/clothes/head/chef/mask.png b/img/clothes/head/chef/mask.png
index 81c0588b53136ad9bd01b5578b38406a1d40fb82..65203e0a62fe41c6891ee45f7fdac83810baeb22 100644
Binary files a/img/clothes/head/chef/mask.png and b/img/clothes/head/chef/mask.png differ
diff --git a/img/clothes/head/christmas/full.png b/img/clothes/head/christmas/full.png
index 38f6c71820e9680d55e2426fceb10405282e427d..c72a8efab885c58734eedcdebc683a49d20c245d 100644
Binary files a/img/clothes/head/christmas/full.png and b/img/clothes/head/christmas/full.png differ
diff --git a/img/clothes/head/christmas/mask.png b/img/clothes/head/christmas/mask.png
index 24822b1f8dbe7c9d79b7f04f718d00fcabc93b1b..36006f0918048fc45c367e9c21883395fc51ac39 100644
Binary files a/img/clothes/head/christmas/mask.png and b/img/clothes/head/christmas/mask.png differ
diff --git a/img/clothes/head/christmas/mask_ponytail.png b/img/clothes/head/christmas/mask_ponytail.png
index a0a5a50c4896a8cfda48084c5bd9c26d0a7ff677..3209a04961237b516bf18a4d3a7652b6d7e8a030 100644
Binary files a/img/clothes/head/christmas/mask_ponytail.png and b/img/clothes/head/christmas/mask_ponytail.png differ
diff --git a/img/clothes/head/conicalhat/back.png b/img/clothes/head/conicalhat/back.png
index 6310611c45c74e67db6eee6d6a64b48d09ae6160..5463d61326f2bbd27f1de652656db8be71c17057 100644
Binary files a/img/clothes/head/conicalhat/back.png and b/img/clothes/head/conicalhat/back.png differ
diff --git a/img/clothes/head/conicalhat/full.png b/img/clothes/head/conicalhat/full.png
index c5ec39cbc507c9905d13377a02d03aa4ee300602..57fec3a5ebc9c868e72bb61e89d665177f0dc4bf 100644
Binary files a/img/clothes/head/conicalhat/full.png and b/img/clothes/head/conicalhat/full.png differ
diff --git a/img/clothes/head/conicalhat/mask.png b/img/clothes/head/conicalhat/mask.png
index c5e2bc9d134b4a94adf069dedca443b172657175..e49f78b6dbd5b5fb9526d07b215e82d42741f8ee 100644
Binary files a/img/clothes/head/conicalhat/mask.png and b/img/clothes/head/conicalhat/mask.png differ
diff --git a/img/clothes/head/cowboy/acc_gray.png b/img/clothes/head/cowboy/acc_gray.png
index 5eef17e2adcfe01c9cb748f8448f6b3f17f15310..9d285c15fd9061f081fc9f88d6bb62d29852d3ac 100644
Binary files a/img/clothes/head/cowboy/acc_gray.png and b/img/clothes/head/cowboy/acc_gray.png differ
diff --git a/img/clothes/head/cowboy/back.png b/img/clothes/head/cowboy/back.png
index 83622cb9b1638d80e0ebff27fb5864971ad872b4..1505f7a7f5aad39860e293d7e98b7f09c418e9b3 100644
Binary files a/img/clothes/head/cowboy/back.png and b/img/clothes/head/cowboy/back.png differ
diff --git a/img/clothes/head/cowboy/back_gray.png b/img/clothes/head/cowboy/back_gray.png
index ff3ca562da54bc9c7a746439e14bfc1b9a76bc2c..73634a29612dae12a8c7fa2365152929ac623210 100644
Binary files a/img/clothes/head/cowboy/back_gray.png and b/img/clothes/head/cowboy/back_gray.png differ
diff --git a/img/clothes/head/cowboy/full.png b/img/clothes/head/cowboy/full.png
index c89ee4872b7a7ee49b6c850c4b598ef2e132d6c4..ac21c2d55bed710de0074037a0e2a01ab9a89373 100644
Binary files a/img/clothes/head/cowboy/full.png and b/img/clothes/head/cowboy/full.png differ
diff --git a/img/clothes/head/cowboy/full_gray.png b/img/clothes/head/cowboy/full_gray.png
index 52e7d86535b1eb1b26a9ce289b1dda494a5d3dae..1b160089a37de73fdadecf5ae9e692a1af3577e2 100644
Binary files a/img/clothes/head/cowboy/full_gray.png and b/img/clothes/head/cowboy/full_gray.png differ
diff --git a/img/clothes/head/cowboy/mask.png b/img/clothes/head/cowboy/mask.png
index b003911bf23a2561bde22cc4decd840149bc8adb..38265dacf88c1875691407f82edd4b3479ecac55 100644
Binary files a/img/clothes/head/cowboy/mask.png and b/img/clothes/head/cowboy/mask.png differ
diff --git a/img/clothes/head/cowonesie/back.png b/img/clothes/head/cowonesie/back.png
index 061e46087c6408147aff090a4ba7a8af98c9774b..3ac7ec976b18d668aecf32a7b5fded6540748ab2 100644
Binary files a/img/clothes/head/cowonesie/back.png and b/img/clothes/head/cowonesie/back.png differ
diff --git a/img/clothes/head/cowonesie/frayed.png b/img/clothes/head/cowonesie/frayed.png
index a09da76f110086051ad3ad6ff0d3eab3841ec2f7..b81328b7a3e52cd26ff03a6be2c3579863375abf 100644
Binary files a/img/clothes/head/cowonesie/frayed.png and b/img/clothes/head/cowonesie/frayed.png differ
diff --git a/img/clothes/head/cowonesie/full.png b/img/clothes/head/cowonesie/full.png
index dfb8411bb0898ec35ba5823d0cd83454046192eb..d808dc7b3f5facb91a68bccd8223e5c851dddcfd 100644
Binary files a/img/clothes/head/cowonesie/full.png and b/img/clothes/head/cowonesie/full.png differ
diff --git a/img/clothes/head/cowonesie/full_down.png b/img/clothes/head/cowonesie/full_down.png
index 0c0c1938a4bc002ea078b3248edc79898364a43b..387bd851eeb942e90c229a35f971aeedca47c5e8 100644
Binary files a/img/clothes/head/cowonesie/full_down.png and b/img/clothes/head/cowonesie/full_down.png differ
diff --git a/img/clothes/head/cowonesie/mask.png b/img/clothes/head/cowonesie/mask.png
index db62ce3c9f796c6db3692854f16dc89320ae94a6..7639dc68a7e655505896d1759dfec820b7f47a49 100644
Binary files a/img/clothes/head/cowonesie/mask.png and b/img/clothes/head/cowonesie/mask.png differ
diff --git a/img/clothes/head/cowonesie/tattered.png b/img/clothes/head/cowonesie/tattered.png
index 41ac818bd3d812d9b7c97c8da0a774fe81570413..8124d65ab05084199f0d43a6e882a8f67b0c5435 100644
Binary files a/img/clothes/head/cowonesie/tattered.png and b/img/clothes/head/cowonesie/tattered.png differ
diff --git a/img/clothes/head/cowonesie/torn.png b/img/clothes/head/cowonesie/torn.png
index 46f93af8409d9ad92adc8771316d59ab9b8b9ef3..e0b0c54ac6288e06972754aa00c1d3e4a4dfa920 100644
Binary files a/img/clothes/head/cowonesie/torn.png and b/img/clothes/head/cowonesie/torn.png differ
diff --git a/img/clothes/head/daisy/full.png b/img/clothes/head/daisy/full.png
index cd4dcab6ff76f0ed4c1d3e7fe304d52ec72e23f3..5a5f53e9cb30af373d9bc731fad793e5a0fbd26b 100644
Binary files a/img/clothes/head/daisy/full.png and b/img/clothes/head/daisy/full.png differ
diff --git a/img/clothes/head/durag/back_gray.png b/img/clothes/head/durag/back_gray.png
index f9f78925abff435a5266ea0defb5aa25e5eb9e3d..9d05e5dc50e0d9399430796b87af15cad8194ce5 100644
Binary files a/img/clothes/head/durag/back_gray.png and b/img/clothes/head/durag/back_gray.png differ
diff --git a/img/clothes/head/durag/full_gray.png b/img/clothes/head/durag/full_gray.png
index 039e884508f8197d0e9468a6f9c10268234723a7..ac889c7d8a49f8751ad3deeb18a0a0ffb130e795 100644
Binary files a/img/clothes/head/durag/full_gray.png and b/img/clothes/head/durag/full_gray.png differ
diff --git a/img/clothes/head/durag/mask.png b/img/clothes/head/durag/mask.png
index e2d6d932057c87b955e691bd2cf92a61f3fc07aa..c0b97b7d6033ddfc93cbde7278b00cffab370825 100644
Binary files a/img/clothes/head/durag/mask.png and b/img/clothes/head/durag/mask.png differ
diff --git a/img/clothes/head/feathered/back.png b/img/clothes/head/feathered/back.png
index 04d46b15b2331389145eaf12461ac688dad8ec59..8500a7228dddcca14148d7299d04f3091db74603 100644
Binary files a/img/clothes/head/feathered/back.png and b/img/clothes/head/feathered/back.png differ
diff --git a/img/clothes/head/feathered/full.png b/img/clothes/head/feathered/full.png
index e21c5cc58f4476cd7f1d29aede92b591c4363c10..64dc1bf81144fa1d9149e9e73bf8ad6874ed9662 100644
Binary files a/img/clothes/head/feathered/full.png and b/img/clothes/head/feathered/full.png differ
diff --git a/img/clothes/head/feathered/mask.png b/img/clothes/head/feathered/mask.png
index a420a164a0e75c6ccbb5527e883870327ec5b583..e8dfe49d5d85d6bdbcdfe68e998bbab4b6be570b 100644
Binary files a/img/clothes/head/feathered/mask.png and b/img/clothes/head/feathered/mask.png differ
diff --git a/img/clothes/head/featheredhairclip/full_gray.png b/img/clothes/head/featheredhairclip/full_gray.png
index 1f8bf23fcbe5b00e554fdb99b11b4683e61ec450..e7b6ab063b6a667fba07ed669a827138221c529d 100644
Binary files a/img/clothes/head/featheredhairclip/full_gray.png and b/img/clothes/head/featheredhairclip/full_gray.png differ
diff --git a/img/clothes/head/fedora/back.png b/img/clothes/head/fedora/back.png
index 5c289d4df28847533cb6529a7e12245073b0eee8..0612ef4c63e3fce29341d51f32f61715fefee201 100644
Binary files a/img/clothes/head/fedora/back.png and b/img/clothes/head/fedora/back.png differ
diff --git a/img/clothes/head/fedora/full.png b/img/clothes/head/fedora/full.png
index c7a827ee2589c5f1d10d69c7f1dd56e8dd8fec92..323210073f5ede12371fa30399aae7f5de4687c1 100644
Binary files a/img/clothes/head/fedora/full.png and b/img/clothes/head/fedora/full.png differ
diff --git a/img/clothes/head/fedora/mask.png b/img/clothes/head/fedora/mask.png
index 925947da7f04b8582c16fa0f40861c2532183f9c..2d89c4fa504a425cde2475fa3c59aa0b8347c3ec 100644
Binary files a/img/clothes/head/fedora/mask.png and b/img/clothes/head/fedora/mask.png differ
diff --git a/img/clothes/head/fishhairpin/full.png b/img/clothes/head/fishhairpin/full.png
index 82e688b481c539172d8f0f2f482992d3f35b71a0..fe4d938ecc5f4f8af0adb17bcb7c659f8a99f02a 100644
Binary files a/img/clothes/head/fishhairpin/full.png and b/img/clothes/head/fishhairpin/full.png differ
diff --git a/img/clothes/head/flower/full.png b/img/clothes/head/flower/full.png
index 594f18dd770aa490e41546a82113262e72b97658..022e2f79ec4a718a99ae56d0b6fdcb2379ffcda1 100644
Binary files a/img/clothes/head/flower/full.png and b/img/clothes/head/flower/full.png differ
diff --git a/img/clothes/head/football/acc_gray.png b/img/clothes/head/football/acc_gray.png
index 1cbfe8fa9052c8e7029582e09fee2c0a0214b700..7a5cd2f79f9a153c6529dcceff69a64836131919 100644
Binary files a/img/clothes/head/football/acc_gray.png and b/img/clothes/head/football/acc_gray.png differ
diff --git a/img/clothes/head/football/full_gray.png b/img/clothes/head/football/full_gray.png
index 7fb049c38974083834c62b38959ef497aa5c8b69..5f5f9d7eb4ed0539d1d5c8d5965843da7d62f5d6 100644
Binary files a/img/clothes/head/football/full_gray.png and b/img/clothes/head/football/full_gray.png differ
diff --git a/img/clothes/head/football/mask.png b/img/clothes/head/football/mask.png
index 24822b1f8dbe7c9d79b7f04f718d00fcabc93b1b..36006f0918048fc45c367e9c21883395fc51ac39 100644
Binary files a/img/clothes/head/football/mask.png and b/img/clothes/head/football/mask.png differ
diff --git a/img/clothes/head/football/mask_ponytail.png b/img/clothes/head/football/mask_ponytail.png
index beabab464f60d7ba8fd72fa1531e3c72057ee08d..286ffa332b355bff50cebd4e0004fcffb30c900c 100644
Binary files a/img/clothes/head/football/mask_ponytail.png and b/img/clothes/head/football/mask_ponytail.png differ
diff --git a/img/clothes/head/furcap f/acc_gray.png b/img/clothes/head/furcap f/acc_gray.png
index d8c1930da1c02abd155bb87008186980e3025e5c..6cc7fa1707eafecab562be687095692b4d885598 100644
Binary files a/img/clothes/head/furcap f/acc_gray.png and b/img/clothes/head/furcap f/acc_gray.png differ
diff --git a/img/clothes/head/furcap f/full_gray.png b/img/clothes/head/furcap f/full_gray.png
index bd2094f0a7e87d1232e563c8b6a0bb10ef1037f8..a13ee1c97db0f68e17e9d8d46e1005401e287a5b 100644
Binary files a/img/clothes/head/furcap f/full_gray.png and b/img/clothes/head/furcap f/full_gray.png differ
diff --git a/img/clothes/head/furcap f/mask.png b/img/clothes/head/furcap f/mask.png
index 5bf2b796522efd993b9784d306119451fc948a41..3b658cb882c05f190121c9a3fd369ae40ea85b7a 100644
Binary files a/img/clothes/head/furcap f/mask.png and b/img/clothes/head/furcap f/mask.png differ
diff --git a/img/clothes/head/furcap f/mask_ponytail.png b/img/clothes/head/furcap f/mask_ponytail.png
index 8fe9cff69f16a0ceea9cf02657360e15631e4a3b..d4f7ba585566820dc36f738334bfe7d3a07a8121 100644
Binary files a/img/clothes/head/furcap f/mask_ponytail.png and b/img/clothes/head/furcap f/mask_ponytail.png differ
diff --git a/img/clothes/head/furcap m/acc_gray.png b/img/clothes/head/furcap m/acc_gray.png
index 69e7ceda51e5135604884aee86dcac041cd0892a..9d5f2965e4e5b3f4079cf07b67ef1780b27c972d 100644
Binary files a/img/clothes/head/furcap m/acc_gray.png and b/img/clothes/head/furcap m/acc_gray.png differ
diff --git a/img/clothes/head/furcap m/full_gray.png b/img/clothes/head/furcap m/full_gray.png
index 8c7dd8f0a42e9edf94b95f80b52af7732ed3145b..1f4a7eabd7fde2535a980dc7a26d364d7e745fb4 100644
Binary files a/img/clothes/head/furcap m/full_gray.png and b/img/clothes/head/furcap m/full_gray.png differ
diff --git a/img/clothes/head/furcap m/mask.png b/img/clothes/head/furcap m/mask.png
index 29e9a82629137ac75511d6eb30ae9604edc12eec..806ac5a2d70e67c7843293c79ae8d4e117d10655 100644
Binary files a/img/clothes/head/furcap m/mask.png and b/img/clothes/head/furcap m/mask.png differ
diff --git a/img/clothes/head/furcap m/mask_ponytail.png b/img/clothes/head/furcap m/mask_ponytail.png
index 8fe9cff69f16a0ceea9cf02657360e15631e4a3b..d4f7ba585566820dc36f738334bfe7d3a07a8121 100644
Binary files a/img/clothes/head/furcap m/mask_ponytail.png and b/img/clothes/head/furcap m/mask_ponytail.png differ
diff --git a/img/clothes/head/goldhairpin/full.png b/img/clothes/head/goldhairpin/full.png
index ef1056a8ed834d8b1fe0195133b5ac4ae8fc6525..3df6d4ee2fc710d20be760d846f5bb200c44379a 100644
Binary files a/img/clothes/head/goldhairpin/full.png and b/img/clothes/head/goldhairpin/full.png differ
diff --git a/img/clothes/head/hairpin/full.png b/img/clothes/head/hairpin/full.png
index 69aae9ff0852187b912360c3f3d6fa197ce05825..c50c675be248588dee543c29dc3bc2e3a3a37108 100644
Binary files a/img/clothes/head/hairpin/full.png and b/img/clothes/head/hairpin/full.png differ
diff --git a/img/clothes/head/hoodie/acc_down_gray.png b/img/clothes/head/hoodie/acc_down_gray.png
index 958a2d8e4494624d092db0db69c59e9601f419ae..0a13f31b021bdcccdcde759302e5750ad1fc1caa 100644
Binary files a/img/clothes/head/hoodie/acc_down_gray.png and b/img/clothes/head/hoodie/acc_down_gray.png differ
diff --git a/img/clothes/head/hoodie/acc_gray.png b/img/clothes/head/hoodie/acc_gray.png
index 4dd91ebe6a53a0f3add0aca4cf8e5a021fde42fd..1aab90c69fd41e428379170fafcb0f8c85bb8f85 100644
Binary files a/img/clothes/head/hoodie/acc_gray.png and b/img/clothes/head/hoodie/acc_gray.png differ
diff --git a/img/clothes/head/hoodie/back_gray.png b/img/clothes/head/hoodie/back_gray.png
index 5c25a98c93e6a5308f40a3da3c198be3832fb4aa..5608bea9c5be40662d54c6c0deeec92ea77b8325 100644
Binary files a/img/clothes/head/hoodie/back_gray.png and b/img/clothes/head/hoodie/back_gray.png differ
diff --git a/img/clothes/head/hoodie/full_down_gray.png b/img/clothes/head/hoodie/full_down_gray.png
index 63b2787e0fc2c74646ab9f165c487c0275751885..bf80c9bb0c61c182838dbd0a3c5206293f045de3 100644
Binary files a/img/clothes/head/hoodie/full_down_gray.png and b/img/clothes/head/hoodie/full_down_gray.png differ
diff --git a/img/clothes/head/hoodie/full_gray.png b/img/clothes/head/hoodie/full_gray.png
index 9bca6820d5985ba024f56cdf579407321d3ef5b5..8dea9301278540dc194f4164a2d881d349f77073 100644
Binary files a/img/clothes/head/hoodie/full_gray.png and b/img/clothes/head/hoodie/full_gray.png differ
diff --git a/img/clothes/head/hoodie/mask.png b/img/clothes/head/hoodie/mask.png
index bbecc7e14ffd9997035bb8655ea6d48461349338..bd9fb60b7edf50b81f0ddcc5c2f73f6f84ecda24 100644
Binary files a/img/clothes/head/hoodie/mask.png and b/img/clothes/head/hoodie/mask.png differ
diff --git a/img/clothes/head/jackolantern/full.png b/img/clothes/head/jackolantern/full.png
index fbbb0e2538d23910e107b977ddedf514da7815dd..8a0ed5537fd31b45553a36f15576f7f5a36d110d 100644
Binary files a/img/clothes/head/jackolantern/full.png and b/img/clothes/head/jackolantern/full.png differ
diff --git a/img/clothes/head/kitty/acc.png b/img/clothes/head/kitty/acc.png
index d9195f0d5040ff847b57e4a97e20637307d30aa4..8f2b935ec36fd51a05654f6d661f9e09ba6fe521 100644
Binary files a/img/clothes/head/kitty/acc.png and b/img/clothes/head/kitty/acc.png differ
diff --git a/img/clothes/head/kitty/full_gray.png b/img/clothes/head/kitty/full_gray.png
index 165ce4445ce084e7ab27787312de1d5cc627a07c..e5d30b276bb0570f28e93510cb5d1dd2ca19c739 100644
Binary files a/img/clothes/head/kitty/full_gray.png and b/img/clothes/head/kitty/full_gray.png differ
diff --git a/img/clothes/head/lolita/acc_gray.png b/img/clothes/head/lolita/acc_gray.png
index eeb938f36a0696ae54313cf4f45b5879397e00e4..2bd79f54f6a92c655ac5cbe73582a2ac14988633 100644
Binary files a/img/clothes/head/lolita/acc_gray.png and b/img/clothes/head/lolita/acc_gray.png differ
diff --git a/img/clothes/head/lolita/full_gray.png b/img/clothes/head/lolita/full_gray.png
index 68cb7ac384d2048d750aaa35443c8b22357ee8f6..cd5e251b0f543625f7bdaedde0e09b5f65284382 100644
Binary files a/img/clothes/head/lolita/full_gray.png and b/img/clothes/head/lolita/full_gray.png differ
diff --git a/img/clothes/head/maid/full.png b/img/clothes/head/maid/full.png
index 8d1eb2f3e7108965651050fb9e9d70449e8570a4..6f88878c8c6c1b49e625120896fc9a932eb7a3f9 100644
Binary files a/img/clothes/head/maid/full.png and b/img/clothes/head/maid/full.png differ
diff --git a/img/clothes/head/minisnowman/full.png b/img/clothes/head/minisnowman/full.png
index 2717108136f00d3a5548cef331ac056820373e9d..2d8e160d1f5d2df482c952ae21872259c2594c85 100644
Binary files a/img/clothes/head/minisnowman/full.png and b/img/clothes/head/minisnowman/full.png differ
diff --git a/img/clothes/head/monster/acc.png b/img/clothes/head/monster/acc.png
index ca28e8acb2da295c3291e43ed360ef9ccf3917d0..bb051025a52c8ce42f9169dfb24ec630d26b1a9b 100644
Binary files a/img/clothes/head/monster/acc.png and b/img/clothes/head/monster/acc.png differ
diff --git a/img/clothes/head/monster/acc_down.png b/img/clothes/head/monster/acc_down.png
index 4dd91ebe6a53a0f3add0aca4cf8e5a021fde42fd..1aab90c69fd41e428379170fafcb0f8c85bb8f85 100644
Binary files a/img/clothes/head/monster/acc_down.png and b/img/clothes/head/monster/acc_down.png differ
diff --git a/img/clothes/head/monster/back_gray.png b/img/clothes/head/monster/back_gray.png
index 41e4238738a916936cd740c6649af7ffaedb4a0a..73c8dc130179bf8fbbf9eea2848a15cb050fc95a 100644
Binary files a/img/clothes/head/monster/back_gray.png and b/img/clothes/head/monster/back_gray.png differ
diff --git a/img/clothes/head/monster/full_down_gray.png b/img/clothes/head/monster/full_down_gray.png
index 4dd91ebe6a53a0f3add0aca4cf8e5a021fde42fd..1aab90c69fd41e428379170fafcb0f8c85bb8f85 100644
Binary files a/img/clothes/head/monster/full_down_gray.png and b/img/clothes/head/monster/full_down_gray.png differ
diff --git a/img/clothes/head/monster/full_gray.png b/img/clothes/head/monster/full_gray.png
index 013877f2e288c7fea39fd9173e7159747884e6b9..fe8776c00f44dc0af5f0222c38b4b9574dfbad37 100644
Binary files a/img/clothes/head/monster/full_gray.png and b/img/clothes/head/monster/full_gray.png differ
diff --git a/img/clothes/head/monster/mask.png b/img/clothes/head/monster/mask.png
index 8cc7210fadb86de85ccc1c570cb8ff5d6c860282..3174c6520eafd210598e514dbc8e5d5a7a8ef5a1 100644
Binary files a/img/clothes/head/monster/mask.png and b/img/clothes/head/monster/mask.png differ
diff --git a/img/clothes/head/newsboy/full_gray.png b/img/clothes/head/newsboy/full_gray.png
index a77424cf08abe00d0ef2ad3d6d07496b1fcd1d3a..5d42ddb3bcc36692b121c02e68342f6665ca9dd1 100644
Binary files a/img/clothes/head/newsboy/full_gray.png and b/img/clothes/head/newsboy/full_gray.png differ
diff --git a/img/clothes/head/newsboy/mask.png b/img/clothes/head/newsboy/mask.png
index 48a43351724a632aa7719f82bc0124c6d6e5400e..ae946799fe1cc0d873421838f52b900feeb192e0 100644
Binary files a/img/clothes/head/newsboy/mask.png and b/img/clothes/head/newsboy/mask.png differ
diff --git a/img/clothes/head/nun/back.png b/img/clothes/head/nun/back.png
index 17cea94efd061f2be5ab7f173c4a7103c34ddc8e..4a72b47554ae24e0e99a13858aa81ca8fdcbfff9 100644
Binary files a/img/clothes/head/nun/back.png and b/img/clothes/head/nun/back.png differ
diff --git a/img/clothes/head/nun/back_gray.png b/img/clothes/head/nun/back_gray.png
index 17cea94efd061f2be5ab7f173c4a7103c34ddc8e..4a72b47554ae24e0e99a13858aa81ca8fdcbfff9 100644
Binary files a/img/clothes/head/nun/back_gray.png and b/img/clothes/head/nun/back_gray.png differ
diff --git a/img/clothes/head/nun/full.png b/img/clothes/head/nun/full.png
index a091b94f49ff2c43ae0a99ccd3849d54c1f8515c..b70be8c99048040cd28028e24b59aa1c11917d57 100644
Binary files a/img/clothes/head/nun/full.png and b/img/clothes/head/nun/full.png differ
diff --git a/img/clothes/head/nun/mask.png b/img/clothes/head/nun/mask.png
index 21c8c94a611f6ece3f99fb34c22a8e392beac2cb..b27d43ce48d664f3946b1d74653e718e20acb3ee 100644
Binary files a/img/clothes/head/nun/mask.png and b/img/clothes/head/nun/mask.png differ
diff --git a/img/clothes/head/nunlewd/back.png b/img/clothes/head/nunlewd/back.png
index 2c208762ccb9a6889fa80facce240e8a9e523dee..34300aea101065b524e7720f0ae1377e02636f9e 100644
Binary files a/img/clothes/head/nunlewd/back.png and b/img/clothes/head/nunlewd/back.png differ
diff --git a/img/clothes/head/nunlewd/full.png b/img/clothes/head/nunlewd/full.png
index 64f62578981a08250f13f85eed11fbd6c658d625..f9f8661f84cd00aa199967425e62466976fed8a8 100644
Binary files a/img/clothes/head/nunlewd/full.png and b/img/clothes/head/nunlewd/full.png differ
diff --git a/img/clothes/head/nunlewd/mask.png b/img/clothes/head/nunlewd/mask.png
index e876b194ce8009e4e1e889e145fff1fe58e0f760..73c02f2520b72483b29f8e6391d098b91eefce47 100644
Binary files a/img/clothes/head/nunlewd/mask.png and b/img/clothes/head/nunlewd/mask.png differ
diff --git a/img/clothes/head/nunlewdornate/back.png b/img/clothes/head/nunlewdornate/back.png
index 2c208762ccb9a6889fa80facce240e8a9e523dee..34300aea101065b524e7720f0ae1377e02636f9e 100644
Binary files a/img/clothes/head/nunlewdornate/back.png and b/img/clothes/head/nunlewdornate/back.png differ
diff --git a/img/clothes/head/nunlewdornate/full.png b/img/clothes/head/nunlewdornate/full.png
index 14c96326519bfe9d0156b18436451a4b385d1805..9e2496c2ec66821d76ee22046c0791cafe090888 100644
Binary files a/img/clothes/head/nunlewdornate/full.png and b/img/clothes/head/nunlewdornate/full.png differ
diff --git a/img/clothes/head/nunlewdornate/mask.png b/img/clothes/head/nunlewdornate/mask.png
index e876b194ce8009e4e1e889e145fff1fe58e0f760..73c02f2520b72483b29f8e6391d098b91eefce47 100644
Binary files a/img/clothes/head/nunlewdornate/mask.png and b/img/clothes/head/nunlewdornate/mask.png differ
diff --git a/img/clothes/head/pinknurse/full.png b/img/clothes/head/pinknurse/full.png
index 0fad061d1f5007387c2d2839c64427bc8431c65e..9947ebb3958a4aa059fc7f1554147537ff06a828 100644
Binary files a/img/clothes/head/pinknurse/full.png and b/img/clothes/head/pinknurse/full.png differ
diff --git a/img/clothes/head/plasticnurse/full.png b/img/clothes/head/plasticnurse/full.png
index 98c96a746a2cf7898cead6c03fffb49036224aa8..7045d32e48faa939d7017da219382655678df9b5 100644
Binary files a/img/clothes/head/plasticnurse/full.png and b/img/clothes/head/plasticnurse/full.png differ
diff --git a/img/clothes/head/racing/acc.png b/img/clothes/head/racing/acc.png
index 7bcf7b811a2cc19424610f7eac05d0ba8ce2b52c..fb5cc3220026e33983486db13748a5550378cd12 100644
Binary files a/img/clothes/head/racing/acc.png and b/img/clothes/head/racing/acc.png differ
diff --git a/img/clothes/head/racing/back_gray.png b/img/clothes/head/racing/back_gray.png
index dbfed03751bf7e2dd3596891246475a4c25a8749..cd2a037c59eb3f8fdcf17c3c99ce053f377f555f 100644
Binary files a/img/clothes/head/racing/back_gray.png and b/img/clothes/head/racing/back_gray.png differ
diff --git a/img/clothes/head/racing/full_gray.png b/img/clothes/head/racing/full_gray.png
index bedbd0b32add56ec76bc6d5dc7d3f7b080769411..b0b7275dfde2fd8bd8c50357953cb584c593da30 100644
Binary files a/img/clothes/head/racing/full_gray.png and b/img/clothes/head/racing/full_gray.png differ
diff --git a/img/clothes/head/racing/mask.png b/img/clothes/head/racing/mask.png
index 747f68c98b3e24e84ac6eef417395704e1a78381..b53b80304eeb8012f0e57c282e422a1ea70e88c1 100644
Binary files a/img/clothes/head/racing/mask.png and b/img/clothes/head/racing/mask.png differ
diff --git a/img/clothes/head/racing/mask_ponytail.png b/img/clothes/head/racing/mask_ponytail.png
index 2398a27f499aa97032db1e2c3b3b2902911921c3..351cf6386f3e9cd54cdee221bb88c659a6736140 100644
Binary files a/img/clothes/head/racing/mask_ponytail.png and b/img/clothes/head/racing/mask_ponytail.png differ
diff --git a/img/clothes/head/riding/back.png b/img/clothes/head/riding/back.png
index dbfed03751bf7e2dd3596891246475a4c25a8749..cd2a037c59eb3f8fdcf17c3c99ce053f377f555f 100644
Binary files a/img/clothes/head/riding/back.png and b/img/clothes/head/riding/back.png differ
diff --git a/img/clothes/head/riding/full.png b/img/clothes/head/riding/full.png
index cd7155c070a5ac18f9800e660fce274f7fa9da09..82a2841f2d1d3a2d06a2dba5cd255d010862a9ee 100644
Binary files a/img/clothes/head/riding/full.png and b/img/clothes/head/riding/full.png differ
diff --git a/img/clothes/head/riding/mask.png b/img/clothes/head/riding/mask.png
index 747f68c98b3e24e84ac6eef417395704e1a78381..b53b80304eeb8012f0e57c282e422a1ea70e88c1 100644
Binary files a/img/clothes/head/riding/mask.png and b/img/clothes/head/riding/mask.png differ
diff --git a/img/clothes/head/riding/mask_ponytail.png b/img/clothes/head/riding/mask_ponytail.png
index 2398a27f499aa97032db1e2c3b3b2902911921c3..351cf6386f3e9cd54cdee221bb88c659a6736140 100644
Binary files a/img/clothes/head/riding/mask_ponytail.png and b/img/clothes/head/riding/mask_ponytail.png differ
diff --git a/img/clothes/head/rose/acc.png b/img/clothes/head/rose/acc.png
index 1de2124c983eac3fdecd7284737be8329bdcce83..943a9bf7a2c61ba09b83ba8d81b53f2794c6f2fd 100644
Binary files a/img/clothes/head/rose/acc.png and b/img/clothes/head/rose/acc.png differ
diff --git a/img/clothes/head/rose/acc_gray.png b/img/clothes/head/rose/acc_gray.png
index 1de2124c983eac3fdecd7284737be8329bdcce83..943a9bf7a2c61ba09b83ba8d81b53f2794c6f2fd 100644
Binary files a/img/clothes/head/rose/acc_gray.png and b/img/clothes/head/rose/acc_gray.png differ
diff --git a/img/clothes/head/rose/full.png b/img/clothes/head/rose/full.png
index 2e0916621587f1946e0624685e01e42926151c7f..b9bf847023bfd3fdf5f59b84747027853395693a 100644
Binary files a/img/clothes/head/rose/full.png and b/img/clothes/head/rose/full.png differ
diff --git a/img/clothes/head/rose/full_gray.png b/img/clothes/head/rose/full_gray.png
index 958adb816928719cb52a2efe339851623e119119..93c4f4b131ad68f9f6a892f9b8b760991b1c4fe8 100644
Binary files a/img/clothes/head/rose/full_gray.png and b/img/clothes/head/rose/full_gray.png differ
diff --git a/img/clothes/head/sailorbig/acc_gray.png b/img/clothes/head/sailorbig/acc_gray.png
index fef3c3e43c0e9ef9102f54b0df66969cf1c98089..fe1c44ff5bf72a190893d0f1a16b7946ff1abd99 100644
Binary files a/img/clothes/head/sailorbig/acc_gray.png and b/img/clothes/head/sailorbig/acc_gray.png differ
diff --git a/img/clothes/head/sailorbig/full_gray.png b/img/clothes/head/sailorbig/full_gray.png
index d7ab91874775bd87601809173db7defc616ae855..3ff6060eb3bc3be271b9889c6bae4fa9e09638c8 100644
Binary files a/img/clothes/head/sailorbig/full_gray.png and b/img/clothes/head/sailorbig/full_gray.png differ
diff --git a/img/clothes/head/sailorbig/mask.png b/img/clothes/head/sailorbig/mask.png
index 7b7b982302fee1d1fa094b4b15da69fe19aaae3d..87ea3a19eb10b4d49d47a96c1f1134b6936c8ec6 100644
Binary files a/img/clothes/head/sailorbig/mask.png and b/img/clothes/head/sailorbig/mask.png differ
diff --git a/img/clothes/head/sailorsmall/acc_gray.png b/img/clothes/head/sailorsmall/acc_gray.png
index 9f6278c94b68536e2d8657173fd2db783df8a547..2d8019b4abbc2e22c2208b6088c79df0c05bebe5 100644
Binary files a/img/clothes/head/sailorsmall/acc_gray.png and b/img/clothes/head/sailorsmall/acc_gray.png differ
diff --git a/img/clothes/head/sailorsmall/full_gray.png b/img/clothes/head/sailorsmall/full_gray.png
index 62e97e5f19fed2df539dce59bf48ad22dc0b5639..46a1b00c34139a1c524cb095713fe360b7e8bfc4 100644
Binary files a/img/clothes/head/sailorsmall/full_gray.png and b/img/clothes/head/sailorsmall/full_gray.png differ
diff --git a/img/clothes/head/scarecrow/full.png b/img/clothes/head/scarecrow/full.png
index 880df3054d5f67ad3ef688e28c70df70423e8e30..cae3cb922dd1021cd65942b87eb6b42b41ac88af 100644
Binary files a/img/clothes/head/scarecrow/full.png and b/img/clothes/head/scarecrow/full.png differ
diff --git a/img/clothes/head/scarecrow/mask.png b/img/clothes/head/scarecrow/mask.png
index 53c91047eff9f6571c43c47efc652a88f673bdd5..a70e457eaec2ee5e8221de36218c765b941050f5 100644
Binary files a/img/clothes/head/scarecrow/mask.png and b/img/clothes/head/scarecrow/mask.png differ
diff --git a/img/clothes/head/sou/back_gray.png b/img/clothes/head/sou/back_gray.png
index d8df95b41f14a4190cae7ee751f8b1b511883a43..f6c55f73e902ce0fe7b228f115069fa5c6ebb86a 100644
Binary files a/img/clothes/head/sou/back_gray.png and b/img/clothes/head/sou/back_gray.png differ
diff --git a/img/clothes/head/sou/full_gray.png b/img/clothes/head/sou/full_gray.png
index d6a67ce30b5081d05175a3c0d16f6794124ac14a..1bf7a3efc80d113abcfe58704f4b995ee5737a37 100644
Binary files a/img/clothes/head/sou/full_gray.png and b/img/clothes/head/sou/full_gray.png differ
diff --git a/img/clothes/head/sou/mask.png b/img/clothes/head/sou/mask.png
index 182264300ddc8f91a8df68f82f8532784bd3d593..82f0391e47538c5b1c984b1716908807fffe4888 100644
Binary files a/img/clothes/head/sou/mask.png and b/img/clothes/head/sou/mask.png differ
diff --git a/img/clothes/head/spiritmask/acc_gray.png b/img/clothes/head/spiritmask/acc_gray.png
index c76252c8cae58e10360dae33e4e0a5db22df1140..d0a3ac4f9747a2be85ceb82c861134e946848503 100644
Binary files a/img/clothes/head/spiritmask/acc_gray.png and b/img/clothes/head/spiritmask/acc_gray.png differ
diff --git a/img/clothes/head/spiritmask/full.png b/img/clothes/head/spiritmask/full.png
index f8d9c557eadb202bbf81a06814f2bf20d5dd93ef..fa37df2ed1ed93c4fa8a0e62665443d2c7582b52 100644
Binary files a/img/clothes/head/spiritmask/full.png and b/img/clothes/head/spiritmask/full.png differ
diff --git a/img/clothes/head/starhairpin/full.png b/img/clothes/head/starhairpin/full.png
index f07f2dd650e49cf6de59533c738be27921b2dd65..9dae8cd9db8a6eae0f40c09635a1084744a26e4d 100644
Binary files a/img/clothes/head/starhairpin/full.png and b/img/clothes/head/starhairpin/full.png differ
diff --git a/img/clothes/head/straw/acc_gray.png b/img/clothes/head/straw/acc_gray.png
index 2293d329febcfd43771ff5b02166efa6aa46a385..3dacb227818dca7ba35c18d33e8b01806ffc166c 100644
Binary files a/img/clothes/head/straw/acc_gray.png and b/img/clothes/head/straw/acc_gray.png differ
diff --git a/img/clothes/head/straw/back.png b/img/clothes/head/straw/back.png
index 69f3b632c51042957634a8cc2ae44016c612a0d8..174a7ac6c2cc30cf83c2f8ae6d7b00b86f42b9f1 100644
Binary files a/img/clothes/head/straw/back.png and b/img/clothes/head/straw/back.png differ
diff --git a/img/clothes/head/straw/full.png b/img/clothes/head/straw/full.png
index 67f2e70fc9d06d01a0c32b7ba73f357a9d5acb05..f3263238cff9886b6ad23c7cf30c6fe5347b5fdc 100644
Binary files a/img/clothes/head/straw/full.png and b/img/clothes/head/straw/full.png differ
diff --git a/img/clothes/head/straw/mask.png b/img/clothes/head/straw/mask.png
index 66eb7987330b6ca9f918dd23f7477792922face9..4d3bef2236739234e33f574b715cf59052f3c3da 100644
Binary files a/img/clothes/head/straw/mask.png and b/img/clothes/head/straw/mask.png differ
diff --git a/img/clothes/head/strawflower/acc_gray.png b/img/clothes/head/strawflower/acc_gray.png
index 9a8ce5c610439769d3a8eadc0718a12313040cf2..ae4a3931c2f2342d638f06f06ada4d79e774f934 100644
Binary files a/img/clothes/head/strawflower/acc_gray.png and b/img/clothes/head/strawflower/acc_gray.png differ
diff --git a/img/clothes/head/strawflower/back.png b/img/clothes/head/strawflower/back.png
index 69f3b632c51042957634a8cc2ae44016c612a0d8..174a7ac6c2cc30cf83c2f8ae6d7b00b86f42b9f1 100644
Binary files a/img/clothes/head/strawflower/back.png and b/img/clothes/head/strawflower/back.png differ
diff --git a/img/clothes/head/strawflower/full.png b/img/clothes/head/strawflower/full.png
index 1d267e94ca55f8a4817905f88cc859d1bdb4978e..a913344bae13968913eb59cd35ae557a478e6060 100644
Binary files a/img/clothes/head/strawflower/full.png and b/img/clothes/head/strawflower/full.png differ
diff --git a/img/clothes/head/strawflower/mask.png b/img/clothes/head/strawflower/mask.png
index 66eb7987330b6ca9f918dd23f7477792922face9..4d3bef2236739234e33f574b715cf59052f3c3da 100644
Binary files a/img/clothes/head/strawflower/mask.png and b/img/clothes/head/strawflower/mask.png differ
diff --git a/img/clothes/head/tam/back.png b/img/clothes/head/tam/back.png
index 39dbff15666c5a4cbe66237608b327d5aeec137e..37e9ea5f3f9e7a46b7d8a14df5b58d0b7ee2047f 100644
Binary files a/img/clothes/head/tam/back.png and b/img/clothes/head/tam/back.png differ
diff --git a/img/clothes/head/tam/full.png b/img/clothes/head/tam/full.png
index e00e113a68077efd2c9693f9cbd3064a0445defe..06956961f5f3fafe4f9c3bfb83056fef633757b5 100644
Binary files a/img/clothes/head/tam/full.png and b/img/clothes/head/tam/full.png differ
diff --git a/img/clothes/head/tam/mask.png b/img/clothes/head/tam/mask.png
index 05e86f0ce96b659747dbf4f70366dac19980be45..939d855be238ec01d8a23905029272496c9ffd49 100644
Binary files a/img/clothes/head/tam/mask.png and b/img/clothes/head/tam/mask.png differ
diff --git a/img/clothes/head/top/acc_gray.png b/img/clothes/head/top/acc_gray.png
index 6642746bbb4a02a38aba3f511f80216a774ed0c5..0fa1c9aa7badb0038e891f75e876cfdaab57a0ae 100644
Binary files a/img/clothes/head/top/acc_gray.png and b/img/clothes/head/top/acc_gray.png differ
diff --git a/img/clothes/head/top/back.png b/img/clothes/head/top/back.png
index baeb9b9eeeb27588b8b8e2105e8d7b1350e0fdea..15554f9260fb9952535f7ffc5348a99ebaa73a29 100644
Binary files a/img/clothes/head/top/back.png and b/img/clothes/head/top/back.png differ
diff --git a/img/clothes/head/top/full.png b/img/clothes/head/top/full.png
index e87d6de51329b2b08a7d67b2fa3f74c66983440d..ccd2d9fe7e5c8d5d0bd505af1ee97b1e8c93ba98 100644
Binary files a/img/clothes/head/top/full.png and b/img/clothes/head/top/full.png differ
diff --git a/img/clothes/head/top/mask.png b/img/clothes/head/top/mask.png
index bbbe978ee28e068dae652b36b35fe527ceb9393f..893d0d5699c7bd69d8494915f66cad3bfa901693 100644
Binary files a/img/clothes/head/top/mask.png and b/img/clothes/head/top/mask.png differ
diff --git a/img/clothes/head/transparentnurse/full.png b/img/clothes/head/transparentnurse/full.png
index 125a1a7f4f721a1547d1a8213a70db51f38d55f5..fddb2c50e5a64ee70b11f4ae00fce1a8c41d338b 100644
Binary files a/img/clothes/head/transparentnurse/full.png and b/img/clothes/head/transparentnurse/full.png differ
diff --git a/img/clothes/head/umbrella/back.png b/img/clothes/head/umbrella/back.png
index 5eef6637ff197692d2cf201e97be3f60f212df52..114ee38e11e24d2784a44421cb142c4f160b254b 100644
Binary files a/img/clothes/head/umbrella/back.png and b/img/clothes/head/umbrella/back.png differ
diff --git a/img/clothes/head/umbrella/full.png b/img/clothes/head/umbrella/full.png
index a966b25fd363697703041cfac81f2c55310abacb..570d7fd96c8fb526daffeef9d694163de1a25865 100644
Binary files a/img/clothes/head/umbrella/full.png and b/img/clothes/head/umbrella/full.png differ
diff --git a/img/clothes/head/umbrella/mask.png b/img/clothes/head/umbrella/mask.png
index 65d4316e29d9d97c16a8e4c69329cfaec951cebb..db3e893bf46a62890199458ed834d3bf475a3769 100644
Binary files a/img/clothes/head/umbrella/mask.png and b/img/clothes/head/umbrella/mask.png differ
diff --git a/img/clothes/head/visor/acc_gray.png b/img/clothes/head/visor/acc_gray.png
index b3b75b9515d1d9e8751f7cf8d7bf2557cd63faeb..830f0c98c359b89d90483280c6cbc4c2a337e37c 100644
Binary files a/img/clothes/head/visor/acc_gray.png and b/img/clothes/head/visor/acc_gray.png differ
diff --git a/img/clothes/head/visor/full_gray.png b/img/clothes/head/visor/full_gray.png
index ba73726f4ce9c912d221ced7d0278d7f879995a6..48f9591e5137093352642feec9b39a1454ca9eca 100644
Binary files a/img/clothes/head/visor/full_gray.png and b/img/clothes/head/visor/full_gray.png differ
diff --git a/img/clothes/head/witch/acc_gray.png b/img/clothes/head/witch/acc_gray.png
index b4968317144d132c95861359a2759775a3edbd60..b2f644e1254a08291ff0ad28d6e9110176ba5f22 100644
Binary files a/img/clothes/head/witch/acc_gray.png and b/img/clothes/head/witch/acc_gray.png differ
diff --git a/img/clothes/head/witch/back_gray.png b/img/clothes/head/witch/back_gray.png
index edbaa7764bc87afc2311ffd0f7855a21fc723584..1bd71c12aed57ead3043fc332171ea2803e97a05 100644
Binary files a/img/clothes/head/witch/back_gray.png and b/img/clothes/head/witch/back_gray.png differ
diff --git a/img/clothes/head/witch/full_gray.png b/img/clothes/head/witch/full_gray.png
index 0422f6496c7ac2940483605095def4a017a4bab5..543f50300bee66f4430a70ce31488e9631349d5f 100644
Binary files a/img/clothes/head/witch/full_gray.png and b/img/clothes/head/witch/full_gray.png differ
diff --git a/img/clothes/head/witch/mask.png b/img/clothes/head/witch/mask.png
index a770933619648b4104e639ee5a1e51efcc014f9e..fb4eaae812e360fc5d9072450c6bc4626501a34d 100644
Binary files a/img/clothes/head/witch/mask.png and b/img/clothes/head/witch/mask.png differ
diff --git a/img/clothes/legs/anklesocks/acc.png b/img/clothes/legs/anklesocks/acc.png
index f894525f5f802b1c59966f75ef9c974ce8695267..7b6d8781a3f0806a46a54d3885dd75e566159f9a 100644
Binary files a/img/clothes/legs/anklesocks/acc.png and b/img/clothes/legs/anklesocks/acc.png differ
diff --git a/img/clothes/legs/anklesocks/full_gray.png b/img/clothes/legs/anklesocks/full_gray.png
index 57d35e491a4cc63eb4219a617db62dd9d7ba0e73..2777738f246c6866855fa6de787ec7e3c356e45d 100644
Binary files a/img/clothes/legs/anklesocks/full_gray.png and b/img/clothes/legs/anklesocks/full_gray.png differ
diff --git a/img/clothes/legs/boysgymsocks/full.png b/img/clothes/legs/boysgymsocks/full.png
index 73d3a6c0cf66d9997b3afb418a7154298a8b9583..e3554d855ee6bb0623bb442311b95880f1d18cf6 100644
Binary files a/img/clothes/legs/boysgymsocks/full.png and b/img/clothes/legs/boysgymsocks/full.png differ
diff --git a/img/clothes/legs/christmas/full.png b/img/clothes/legs/christmas/full.png
index 494100ec8b042d9f273442575813f1fc8aa2fcb6..0b795183d94fcd54db5d793292b56cc80036ad19 100644
Binary files a/img/clothes/legs/christmas/full.png and b/img/clothes/legs/christmas/full.png differ
diff --git a/img/clothes/legs/cow/full.png b/img/clothes/legs/cow/full.png
index 7bfe4a4eeb344bbd7f0d7504b692420a7e9c4f66..6a6060328a9eed5d8912d78c679e25b64e36e993 100644
Binary files a/img/clothes/legs/cow/full.png and b/img/clothes/legs/cow/full.png differ
diff --git a/img/clothes/legs/fishnetstockings/full.png b/img/clothes/legs/fishnetstockings/full.png
index 0ff89e855e76b10b83d2062d1fcb92f0eaa1842d..759687b553a7fa088e75aa58e6572d5bb6687fdb 100644
Binary files a/img/clothes/legs/fishnetstockings/full.png and b/img/clothes/legs/fishnetstockings/full.png differ
diff --git a/img/clothes/legs/fishnettights/full.png b/img/clothes/legs/fishnettights/full.png
index 43e49cf3c17ea9976b875a5205024d3be9eb08c5..d99bdb188690681a22a9c8d9e8ee3af6a0b204a8 100644
Binary files a/img/clothes/legs/fishnettights/full.png and b/img/clothes/legs/fishnettights/full.png differ
diff --git a/img/clothes/legs/garterstockings/full_gray.png b/img/clothes/legs/garterstockings/full_gray.png
index 52491f5d0e94bf0ce4f1db57857bc2014fa34bb4..dbcd676953d1a9fb27f5468874107f6c847b64b2 100644
Binary files a/img/clothes/legs/garterstockings/full_gray.png and b/img/clothes/legs/garterstockings/full_gray.png differ
diff --git a/img/clothes/legs/girlsgymsocks/full.png b/img/clothes/legs/girlsgymsocks/full.png
index 8ec606c4cb65be661ff26673e4cb6a8940387068..f810fd82f30e52bdd5971473eae6d14a4b981194 100644
Binary files a/img/clothes/legs/girlsgymsocks/full.png and b/img/clothes/legs/girlsgymsocks/full.png differ
diff --git a/img/clothes/legs/goldanklets/full.png b/img/clothes/legs/goldanklets/full.png
index 09f3aab4ad5e8d75dabeb1c5ea207c3707e38b4f..ea6e99bcffa85e9f4b8ed8857b395f4c5be69a0c 100644
Binary files a/img/clothes/legs/goldanklets/full.png and b/img/clothes/legs/goldanklets/full.png differ
diff --git a/img/clothes/legs/goldshackles/full.png b/img/clothes/legs/goldshackles/full.png
index 3f80ff9c96bc2f78fd35f129e795917221557faa..332d829d64568ef31540dd517632927a86abb753 100644
Binary files a/img/clothes/legs/goldshackles/full.png and b/img/clothes/legs/goldshackles/full.png differ
diff --git a/img/clothes/legs/legwarmers/full_gray.png b/img/clothes/legs/legwarmers/full_gray.png
index 537faf87d3693cee4b99e697525adaee3648cfd5..3af1c9f73cff23d37b4f37cd2e25c9972f61d3ac 100644
Binary files a/img/clothes/legs/legwarmers/full_gray.png and b/img/clothes/legs/legwarmers/full_gray.png differ
diff --git a/img/clothes/legs/loosesocks/full.png b/img/clothes/legs/loosesocks/full.png
index ea05f9bb903efdd46da6cf0121f76a865a62c462..4f2b4a767e8472510e403ab8d5945be7ff2511a3 100644
Binary files a/img/clothes/legs/loosesocks/full.png and b/img/clothes/legs/loosesocks/full.png differ
diff --git a/img/clothes/legs/loosesocks/full_gray.png b/img/clothes/legs/loosesocks/full_gray.png
index bca6c24e97177c39e2fc858ef458870ea5767578..7b0c6eca359de864f0153e3190a7b28d6dae3a93 100644
Binary files a/img/clothes/legs/loosesocks/full_gray.png and b/img/clothes/legs/loosesocks/full_gray.png differ
diff --git a/img/clothes/legs/mensgarters/acc_gray.png b/img/clothes/legs/mensgarters/acc_gray.png
index a28143068bd4b6ca7169bd8c489000b9c7444c49..e41351be95fb0c10238e9a8fe44c1458214cfe9e 100644
Binary files a/img/clothes/legs/mensgarters/acc_gray.png and b/img/clothes/legs/mensgarters/acc_gray.png differ
diff --git a/img/clothes/legs/mensgarters/full_gray.png b/img/clothes/legs/mensgarters/full_gray.png
index c300cd749d6154e6572ebdef686115ca7514591e..fa35b398fab653b8071513023708c9c2c5626c66 100644
Binary files a/img/clothes/legs/mensgarters/full_gray.png and b/img/clothes/legs/mensgarters/full_gray.png differ
diff --git a/img/clothes/legs/mismatched socks/acc_gray.png b/img/clothes/legs/mismatched socks/acc_gray.png
index 41440597de8f39a31bc8c296747829c48d3aa468..1fe74226316bab7267341766279e3445d41ffe07 100644
Binary files a/img/clothes/legs/mismatched socks/acc_gray.png and b/img/clothes/legs/mismatched socks/acc_gray.png differ
diff --git a/img/clothes/legs/mismatched socks/full_gray.png b/img/clothes/legs/mismatched socks/full_gray.png
index bd70a7dbe72ad9ab2ca9acd50d17305004ba10f2..ee33f48ed6d7d01512a17afa4ced23a4cb82085e 100644
Binary files a/img/clothes/legs/mismatched socks/full_gray.png and b/img/clothes/legs/mismatched socks/full_gray.png differ
diff --git a/img/clothes/legs/nunlewd/acc_gray.png b/img/clothes/legs/nunlewd/acc_gray.png
index 075d856c686b9a8c8876deb5114fd7a8ed79029c..cb2047219c0ccae02da1c696b6f71cc93848363a 100644
Binary files a/img/clothes/legs/nunlewd/acc_gray.png and b/img/clothes/legs/nunlewd/acc_gray.png differ
diff --git a/img/clothes/legs/nunlewd/full_gray.png b/img/clothes/legs/nunlewd/full_gray.png
index 8136e08992f38f9f420dfac9a8ccb7cfb70153d5..5993f483c4184a0dc8dfe3ebdb2c91eaa115ecd8 100644
Binary files a/img/clothes/legs/nunlewd/full_gray.png and b/img/clothes/legs/nunlewd/full_gray.png differ
diff --git a/img/clothes/legs/nursesocks/full.png b/img/clothes/legs/nursesocks/full.png
index 5f5b704b23da66e20f935de9ae8205ee1ca56912..05abbc8f337e21f240a158c69f93d3e55042415e 100644
Binary files a/img/clothes/legs/nursesocks/full.png and b/img/clothes/legs/nursesocks/full.png differ
diff --git a/img/clothes/legs/plainthighhighs/full_gray.png b/img/clothes/legs/plainthighhighs/full_gray.png
index ea481d30b81025a64542337ddf7fede26397e111..8ba87a0e8591b02153db7d56ca222812798218fa 100644
Binary files a/img/clothes/legs/plainthighhighs/full_gray.png and b/img/clothes/legs/plainthighhighs/full_gray.png differ
diff --git a/img/clothes/legs/polka socks/acc_gray.png b/img/clothes/legs/polka socks/acc_gray.png
index 72fd6cdce086d4a6897bc61bdf98ec9fdecc662a..d61a5c49eda61bdf6a00a2ad6414289c41ca5b16 100644
Binary files a/img/clothes/legs/polka socks/acc_gray.png and b/img/clothes/legs/polka socks/acc_gray.png differ
diff --git a/img/clothes/legs/polka socks/full_gray.png b/img/clothes/legs/polka socks/full_gray.png
index 71af7f20628dc6d7b350295fd4749207c9863afe..518b42a7c5d1e34f4681dd46c8f3febad0c7d06b 100644
Binary files a/img/clothes/legs/polka socks/full_gray.png and b/img/clothes/legs/polka socks/full_gray.png differ
diff --git a/img/clothes/legs/ribbonstockings/acc_gray.png b/img/clothes/legs/ribbonstockings/acc_gray.png
index a35a92206a5cffb5e48d4890ff462eb44fc8981e..25e2afb4818015e85ad50a6d7a711fd7837b0909 100644
Binary files a/img/clothes/legs/ribbonstockings/acc_gray.png and b/img/clothes/legs/ribbonstockings/acc_gray.png differ
diff --git a/img/clothes/legs/ribbonstockings/full_gray.png b/img/clothes/legs/ribbonstockings/full_gray.png
index a11704d0ba4d62ffc67e9e1c12fc2207774eaa86..37f51d766b420e232c042bb83891b2c4f399b58f 100644
Binary files a/img/clothes/legs/ribbonstockings/full_gray.png and b/img/clothes/legs/ribbonstockings/full_gray.png differ
diff --git a/img/clothes/legs/ruffled kneehighs/full.png b/img/clothes/legs/ruffled kneehighs/full.png
index 8ee313ae4ac818b239ec98ceecf90f94a9919adc..305e35df2f9a607d77276276744ac3f370ea8a37 100644
Binary files a/img/clothes/legs/ruffled kneehighs/full.png and b/img/clothes/legs/ruffled kneehighs/full.png differ
diff --git a/img/clothes/legs/ruffled kneehighs/full_gray.png b/img/clothes/legs/ruffled kneehighs/full_gray.png
index 169e3ba7efc12800498c8c305f647e2478261b39..66075c2efa45707ca160807f3cc17bd15c033e3e 100644
Binary files a/img/clothes/legs/ruffled kneehighs/full_gray.png and b/img/clothes/legs/ruffled kneehighs/full_gray.png differ
diff --git a/img/clothes/legs/ruffled socks/full_gray.png b/img/clothes/legs/ruffled socks/full_gray.png
index 75f2e2ac775c8109124e788be0d576289a0529ec..0e2797022c8e6c2c319b945424fd32ba44342082 100644
Binary files a/img/clothes/legs/ruffled socks/full_gray.png and b/img/clothes/legs/ruffled socks/full_gray.png differ
diff --git a/img/clothes/legs/ruffled thighhighs/full_gray.png b/img/clothes/legs/ruffled thighhighs/full_gray.png
index cd2bdbe64de8cbfbfeffa13092aa656a0e2bc613..3db75051de8ff7ca1c23eccb664931ed66ca0dac 100644
Binary files a/img/clothes/legs/ruffled thighhighs/full_gray.png and b/img/clothes/legs/ruffled thighhighs/full_gray.png differ
diff --git a/img/clothes/legs/sheerleggings/full_gray.png b/img/clothes/legs/sheerleggings/full_gray.png
index 1de1cfe99fec53ec36057bcbdb855c20a342ed44..2d893a3ac776ddd3672036c7863470b6f1646d54 100644
Binary files a/img/clothes/legs/sheerleggings/full_gray.png and b/img/clothes/legs/sheerleggings/full_gray.png differ
diff --git a/img/clothes/legs/sports socks long/acc_gray.png b/img/clothes/legs/sports socks long/acc_gray.png
index 12ba4e1ca67c4672a12ef6d5c0bba5857990bcf7..a02e39e4e95b9445a856a6d4e30f50681cda145d 100644
Binary files a/img/clothes/legs/sports socks long/acc_gray.png and b/img/clothes/legs/sports socks long/acc_gray.png differ
diff --git a/img/clothes/legs/sports socks long/full_gray.png b/img/clothes/legs/sports socks long/full_gray.png
index c0c3ae7af02537b353b4fb71ccf4d6ac57d3fa53..20786faa58533ef4124185985fe7f422ca15af05 100644
Binary files a/img/clothes/legs/sports socks long/full_gray.png and b/img/clothes/legs/sports socks long/full_gray.png differ
diff --git a/img/clothes/legs/sports socks short/acc_gray.png b/img/clothes/legs/sports socks short/acc_gray.png
index a457a0b6525c805affafee62663fc7111b1779f1..1656628729b83654fd6c7f9a742f7b961052f33a 100644
Binary files a/img/clothes/legs/sports socks short/acc_gray.png and b/img/clothes/legs/sports socks short/acc_gray.png differ
diff --git a/img/clothes/legs/sports socks short/full_gray.png b/img/clothes/legs/sports socks short/full_gray.png
index 29d77aef1a28e76cd2b97ff66e293cfe3db72465..9783558f2706ff8071e3d5628f9555145e4e9899 100644
Binary files a/img/clothes/legs/sports socks short/full_gray.png and b/img/clothes/legs/sports socks short/full_gray.png differ
diff --git a/img/clothes/legs/stockings/full.png b/img/clothes/legs/stockings/full.png
index 538a7e1cf78fb6b678210c4a5258f39c5f5aee82..81ecae2202c4f46278a6dd16535e09b363555d0d 100644
Binary files a/img/clothes/legs/stockings/full.png and b/img/clothes/legs/stockings/full.png differ
diff --git a/img/clothes/legs/striped kneehighs/acc_gray.png b/img/clothes/legs/striped kneehighs/acc_gray.png
index 7b9d107f72fadd656977237739e5ca2dcf3d8f48..07b819d31865ff7fd4140ed500c64f1b34c423f5 100644
Binary files a/img/clothes/legs/striped kneehighs/acc_gray.png and b/img/clothes/legs/striped kneehighs/acc_gray.png differ
diff --git a/img/clothes/legs/striped kneehighs/full_gray.png b/img/clothes/legs/striped kneehighs/full_gray.png
index 29ad237daed6b33dec98ef4616739470ce2a5f86..a2746a4e02675e5e3f18ef8b6dc64462649367c7 100644
Binary files a/img/clothes/legs/striped kneehighs/full_gray.png and b/img/clothes/legs/striped kneehighs/full_gray.png differ
diff --git a/img/clothes/legs/striped socks long/full_gray.png b/img/clothes/legs/striped socks long/full_gray.png
index 66d0a99f1b7c232b2ae729e5aca2009edf1142e4..df2ef102e47c8a4aee39046652186da4ae7fa369 100644
Binary files a/img/clothes/legs/striped socks long/full_gray.png and b/img/clothes/legs/striped socks long/full_gray.png differ
diff --git a/img/clothes/legs/striped socks short/full_gray.png b/img/clothes/legs/striped socks short/full_gray.png
index 7fed0b827a6e4b08d3e4d233f908eb2102c41c9d..7c71bae1b1c24517390e27d0d3021bf85c03c0e9 100644
Binary files a/img/clothes/legs/striped socks short/full_gray.png and b/img/clothes/legs/striped socks short/full_gray.png differ
diff --git a/img/clothes/legs/stripedthighhighs/acc_gray.png b/img/clothes/legs/stripedthighhighs/acc_gray.png
index 289d455bc2ae5a9a51ea31dc8d5e2a8eb8cf53ef..d617e47d9c48fd39d5d81330afed45887f668a03 100644
Binary files a/img/clothes/legs/stripedthighhighs/acc_gray.png and b/img/clothes/legs/stripedthighhighs/acc_gray.png differ
diff --git a/img/clothes/legs/stripedthighhighs/full_gray.png b/img/clothes/legs/stripedthighhighs/full_gray.png
index ea481d30b81025a64542337ddf7fede26397e111..8ba87a0e8591b02153db7d56ca222812798218fa 100644
Binary files a/img/clothes/legs/stripedthighhighs/full_gray.png and b/img/clothes/legs/stripedthighhighs/full_gray.png differ
diff --git a/img/clothes/legs/tabi/full_gray.png b/img/clothes/legs/tabi/full_gray.png
index 99b5ba50f946d8729f7f0229689c4f1f5df990bd..60648390f9c9209f0fd729e944117bdaa4a52b3e 100644
Binary files a/img/clothes/legs/tabi/full_gray.png and b/img/clothes/legs/tabi/full_gray.png differ
diff --git a/img/clothes/legs/tights/frayed.png b/img/clothes/legs/tights/frayed.png
index 22882199166f0b6c93d443e84029d4adab5cb841..027a6928394bebb701aaff61703934b4b86c49ee 100644
Binary files a/img/clothes/legs/tights/frayed.png and b/img/clothes/legs/tights/frayed.png differ
diff --git a/img/clothes/legs/tights/full.png b/img/clothes/legs/tights/full.png
index 2958737a08a90c8d6ab5a60c87c9845fd41c34b7..48ac3d16d52c6b8f0a8e4b5c24c917c6479754d0 100644
Binary files a/img/clothes/legs/tights/full.png and b/img/clothes/legs/tights/full.png differ
diff --git a/img/clothes/legs/tights/tattered.png b/img/clothes/legs/tights/tattered.png
index 121e6cae1af62a1dc2fd4b504190791887e8e2cd..c844d4f8ac6828d261806ab52e79997cb298edfb 100644
Binary files a/img/clothes/legs/tights/tattered.png and b/img/clothes/legs/tights/tattered.png differ
diff --git a/img/clothes/legs/tights/torn.png b/img/clothes/legs/tights/torn.png
index f2ad86c3d97dd563fa62bfbbdcf0f48e136710cc..7986eaec7cfb0c36f42ae61617fd798da1a8fd11 100644
Binary files a/img/clothes/legs/tights/torn.png and b/img/clothes/legs/tights/torn.png differ
diff --git a/img/clothes/legs/twirly socks/acc_gray.png b/img/clothes/legs/twirly socks/acc_gray.png
index 083aa0f6fa9fd676b7120815cf1abf97f3cf2e96..c06e6d8be0c4d152a056ad95434e3df6867c3b78 100644
Binary files a/img/clothes/legs/twirly socks/acc_gray.png and b/img/clothes/legs/twirly socks/acc_gray.png differ
diff --git a/img/clothes/legs/twirly socks/full_gray.png b/img/clothes/legs/twirly socks/full_gray.png
index 9f56797eed47401fa9eb08cc1c5329949038dbb4..f0e91c73021a64620b8d6dd2b71f09c2117d4c1a 100644
Binary files a/img/clothes/legs/twirly socks/full_gray.png and b/img/clothes/legs/twirly socks/full_gray.png differ
diff --git a/img/clothes/lower/3piecesuit/frayed_gray.png b/img/clothes/lower/3piecesuit/frayed_gray.png
index 843606f901a60883eab30514a7128ddcba007944..671d093e8a22a3fa6648320882bcb581cd556a27 100644
Binary files a/img/clothes/lower/3piecesuit/frayed_gray.png and b/img/clothes/lower/3piecesuit/frayed_gray.png differ
diff --git a/img/clothes/lower/3piecesuit/full_gray.png b/img/clothes/lower/3piecesuit/full_gray.png
index ebceddcc5b051841bfbe5f5bb93024453602b6e3..cebeee7d6f92c9f063809193736f6fce14266029 100644
Binary files a/img/clothes/lower/3piecesuit/full_gray.png and b/img/clothes/lower/3piecesuit/full_gray.png differ
diff --git a/img/clothes/lower/3piecesuit/tattered_gray.png b/img/clothes/lower/3piecesuit/tattered_gray.png
index a373139ced8d0de2fef5aa5b94af76a835ce9fb7..bbe06cb8974dc34fcec46b4ac787e2c65a69c554 100644
Binary files a/img/clothes/lower/3piecesuit/tattered_gray.png and b/img/clothes/lower/3piecesuit/tattered_gray.png differ
diff --git a/img/clothes/lower/3piecesuit/torn_gray.png b/img/clothes/lower/3piecesuit/torn_gray.png
index 6265488ee132c7662d9b4004c8abe301dc48e54b..1c185d0609c642340ed01cc57e1678e107e2d8ba 100644
Binary files a/img/clothes/lower/3piecesuit/torn_gray.png and b/img/clothes/lower/3piecesuit/torn_gray.png differ
diff --git a/img/clothes/lower/ao dai/frayed_gray.png b/img/clothes/lower/ao dai/frayed_gray.png
index 4ce3baa719d522a6708587d374e356614870c9d9..47fa6c3d733f4b2f43724e80f319b16564bfc3b2 100644
Binary files a/img/clothes/lower/ao dai/frayed_gray.png and b/img/clothes/lower/ao dai/frayed_gray.png differ
diff --git a/img/clothes/lower/ao dai/full_gray.png b/img/clothes/lower/ao dai/full_gray.png
index dc9f1f01b842f4de946341933657a5bfb01ae771..208657033ff42fa25f6f7d300d1c98354b4851f4 100644
Binary files a/img/clothes/lower/ao dai/full_gray.png and b/img/clothes/lower/ao dai/full_gray.png differ
diff --git a/img/clothes/lower/ao dai/tattered_gray.png b/img/clothes/lower/ao dai/tattered_gray.png
index a1e493c2ad76e11f8e918c0b9430b16032d748b9..84df3db305bbf9747410768b81501ec4d9d02caf 100644
Binary files a/img/clothes/lower/ao dai/tattered_gray.png and b/img/clothes/lower/ao dai/tattered_gray.png differ
diff --git a/img/clothes/lower/ao dai/torn_gray.png b/img/clothes/lower/ao dai/torn_gray.png
index 1c53b18ac2c77c57210fb69f5ff8383e9c269068..cbe30bf5c01f1bae66f8292023ba09f805e52ab2 100644
Binary files a/img/clothes/lower/ao dai/torn_gray.png and b/img/clothes/lower/ao dai/torn_gray.png differ
diff --git a/img/clothes/lower/apron/frayed.png b/img/clothes/lower/apron/frayed.png
index 4649927d709d1635900634566f80920256359d36..79ee84aedee8b60661c016c220ca437910fe9706 100644
Binary files a/img/clothes/lower/apron/frayed.png and b/img/clothes/lower/apron/frayed.png differ
diff --git a/img/clothes/lower/apron/full.png b/img/clothes/lower/apron/full.png
index 59fca62e24a9186fde1dde8323db5ebd7c52e9a3..b8a407629e81090862949654b1e3bedbbad513d9 100644
Binary files a/img/clothes/lower/apron/full.png and b/img/clothes/lower/apron/full.png differ
diff --git a/img/clothes/lower/apron/tattered.png b/img/clothes/lower/apron/tattered.png
index 8d878f140aa8f7848d831cb39f74cb9ab84daaf0..74eb77c4256949d7a7b50898a3740da5ee8264ba 100644
Binary files a/img/clothes/lower/apron/tattered.png and b/img/clothes/lower/apron/tattered.png differ
diff --git a/img/clothes/lower/apron/torn.png b/img/clothes/lower/apron/torn.png
index 9148ccfc63552a91e21a67bc5e16ac9a9dabb87a..98961e6849fa44f87db1b4ff363354b8be561301 100644
Binary files a/img/clothes/lower/apron/torn.png and b/img/clothes/lower/apron/torn.png differ
diff --git a/img/clothes/lower/ballgown/acc_gray.png b/img/clothes/lower/ballgown/acc_gray.png
index ccea0ec02ba282c88e880a6869b4248a797f325c..c805d3bcecf7659aadf12586f72911a7b969104d 100644
Binary files a/img/clothes/lower/ballgown/acc_gray.png and b/img/clothes/lower/ballgown/acc_gray.png differ
diff --git a/img/clothes/lower/ballgown/frayed_gray.png b/img/clothes/lower/ballgown/frayed_gray.png
index 6712488e16ed65f53c784b9b8cb33aade9cfe5c7..4f3c13c82fe2dcfa059e0194d9ae2103c188474c 100644
Binary files a/img/clothes/lower/ballgown/frayed_gray.png and b/img/clothes/lower/ballgown/frayed_gray.png differ
diff --git a/img/clothes/lower/ballgown/full_gray.png b/img/clothes/lower/ballgown/full_gray.png
index efccf61683a9dae6d4d099ae0997f8ce18c32b1e..d5ce0206ed057f2c4ccf604c191114439605650d 100644
Binary files a/img/clothes/lower/ballgown/full_gray.png and b/img/clothes/lower/ballgown/full_gray.png differ
diff --git a/img/clothes/lower/ballgown/tattered_gray.png b/img/clothes/lower/ballgown/tattered_gray.png
index c885b8cbecdd5343da96b442493ff3b3e4c51905..8ee17279f78211d1401308d217d01ab1f04c7c06 100644
Binary files a/img/clothes/lower/ballgown/tattered_gray.png and b/img/clothes/lower/ballgown/tattered_gray.png differ
diff --git a/img/clothes/lower/ballgown/torn_gray.png b/img/clothes/lower/ballgown/torn_gray.png
index 7d831bedbe78dbab109d5b67e81422ddfbb5c3de..d56ad791ced86e0c241230bea250c6ec026a240f 100644
Binary files a/img/clothes/lower/ballgown/torn_gray.png and b/img/clothes/lower/ballgown/torn_gray.png differ
diff --git a/img/clothes/lower/baseball/acc_gray.png b/img/clothes/lower/baseball/acc_gray.png
index 42f670499855512524798b4ad0b229e82d1b7e94..1dd1cf279bb1903ca015178681e53fce506c1a86 100644
Binary files a/img/clothes/lower/baseball/acc_gray.png and b/img/clothes/lower/baseball/acc_gray.png differ
diff --git a/img/clothes/lower/baseball/frayed_gray.png b/img/clothes/lower/baseball/frayed_gray.png
index 4c76467243a55f69e960208b7fc5d4e651059110..7a4030e6de40645231f0c8bf5c5d7bbb3aa25782 100644
Binary files a/img/clothes/lower/baseball/frayed_gray.png and b/img/clothes/lower/baseball/frayed_gray.png differ
diff --git a/img/clothes/lower/baseball/full_gray.png b/img/clothes/lower/baseball/full_gray.png
index e4bdfbb2a1674bf50473f10eb55b17da39bf3c7e..acad551b18e40b5cb1093262f3a7f4e8faacc7cb 100644
Binary files a/img/clothes/lower/baseball/full_gray.png and b/img/clothes/lower/baseball/full_gray.png differ
diff --git a/img/clothes/lower/baseball/tattered_gray.png b/img/clothes/lower/baseball/tattered_gray.png
index cb9bdad0d5e91d21a5021f1b6a17208789652016..e13467c7974d5626597025defa29c45916de7f6a 100644
Binary files a/img/clothes/lower/baseball/tattered_gray.png and b/img/clothes/lower/baseball/tattered_gray.png differ
diff --git a/img/clothes/lower/baseball/torn_gray.png b/img/clothes/lower/baseball/torn_gray.png
index fd4f3e68c85ae4a713fc6b5f678dc24430057c68..0178b1e4b69c08b0cf91fe755ff24a055c5ced10 100644
Binary files a/img/clothes/lower/baseball/torn_gray.png and b/img/clothes/lower/baseball/torn_gray.png differ
diff --git a/img/clothes/lower/bathrobe/frayed.png b/img/clothes/lower/bathrobe/frayed.png
index b416db1711644b8aa465e7fa950e7b5d0baef1c8..cad0fd7cda29a783c11ddf2306b292161cddd71b 100644
Binary files a/img/clothes/lower/bathrobe/frayed.png and b/img/clothes/lower/bathrobe/frayed.png differ
diff --git a/img/clothes/lower/bathrobe/full.png b/img/clothes/lower/bathrobe/full.png
index 0e0b1f6970aa54d0529c43242a41078f7b0b8670..7742588e1272215fa8ba65aae548cf1454c6a0b7 100644
Binary files a/img/clothes/lower/bathrobe/full.png and b/img/clothes/lower/bathrobe/full.png differ
diff --git a/img/clothes/lower/bathrobe/tattered.png b/img/clothes/lower/bathrobe/tattered.png
index cfa81fee032ce24c382f13bf72caffc39714a880..1b6c83ca12403fc3c6eff3e221e1b8e7b76fc1e6 100644
Binary files a/img/clothes/lower/bathrobe/tattered.png and b/img/clothes/lower/bathrobe/tattered.png differ
diff --git a/img/clothes/lower/bathrobe/torn.png b/img/clothes/lower/bathrobe/torn.png
index 977c8477eec96db558abf31c4af9d0cf35eec084..21bce4cb37a1e3b5fccab14f123e65952056b019 100644
Binary files a/img/clothes/lower/bathrobe/torn.png and b/img/clothes/lower/bathrobe/torn.png differ
diff --git a/img/clothes/lower/belly/acc.png b/img/clothes/lower/belly/acc.png
index 4c28e9c0ae813fbfd5749e88483ccd2419770f56..4939e2038e3ca5423e0363a127d2e4cae647fd9b 100644
Binary files a/img/clothes/lower/belly/acc.png and b/img/clothes/lower/belly/acc.png differ
diff --git a/img/clothes/lower/belly/frayed_gray.png b/img/clothes/lower/belly/frayed_gray.png
index 0de683098fe633caa96c9d0d98fc851df48ba6c3..aeac17fe7aa736e898a3520eb30a81394a9f6f2c 100644
Binary files a/img/clothes/lower/belly/frayed_gray.png and b/img/clothes/lower/belly/frayed_gray.png differ
diff --git a/img/clothes/lower/belly/full_gray.png b/img/clothes/lower/belly/full_gray.png
index 7979f9b68bf0013d1368a16e25fadbacfba7ef1f..f5323faf3cb7d6959bcc5cd8e957cbb6fd062f8d 100644
Binary files a/img/clothes/lower/belly/full_gray.png and b/img/clothes/lower/belly/full_gray.png differ
diff --git a/img/clothes/lower/belly/tattered_gray.png b/img/clothes/lower/belly/tattered_gray.png
index 06a1ee48f467241623f21c4dc76b7ec036f0c029..006cc5796dd8ba1c0872911d5eb035988b39bcf9 100644
Binary files a/img/clothes/lower/belly/tattered_gray.png and b/img/clothes/lower/belly/tattered_gray.png differ
diff --git a/img/clothes/lower/belly/torn_gray.png b/img/clothes/lower/belly/torn_gray.png
index 085b62c082d18b9121150e1313ac98d5e478fac0..662f4114f97ef6db8e38df1d4607bd978fa332c3 100644
Binary files a/img/clothes/lower/belly/torn_gray.png and b/img/clothes/lower/belly/torn_gray.png differ
diff --git a/img/clothes/lower/boardshorts/frayed_gray.png b/img/clothes/lower/boardshorts/frayed_gray.png
index 32859de4f0340847593c2c5d4d2920a4a7c78071..11d466ac1c3e5a1ac0e1b4d16aa44e11b7e5ccc5 100644
Binary files a/img/clothes/lower/boardshorts/frayed_gray.png and b/img/clothes/lower/boardshorts/frayed_gray.png differ
diff --git a/img/clothes/lower/boardshorts/full_gray.png b/img/clothes/lower/boardshorts/full_gray.png
index dc7dcb09ea3ad790f2a61b1c9d55d252987849c8..f13fe1ca0be495baf47cc6e4888250c4d6efe9fa 100644
Binary files a/img/clothes/lower/boardshorts/full_gray.png and b/img/clothes/lower/boardshorts/full_gray.png differ
diff --git a/img/clothes/lower/boardshorts/tattered_gray.png b/img/clothes/lower/boardshorts/tattered_gray.png
index 4dccb92d079e5d33bae0b66765ce6017c51993a3..b557665f608079003e231d791234d0c2f849b510 100644
Binary files a/img/clothes/lower/boardshorts/tattered_gray.png and b/img/clothes/lower/boardshorts/tattered_gray.png differ
diff --git a/img/clothes/lower/boardshorts/torn_gray.png b/img/clothes/lower/boardshorts/torn_gray.png
index 8a4b7859433753cfaded375a79398666a9b652ad..14f4ae402eb53d8f823fdabf1695e762c350284c 100644
Binary files a/img/clothes/lower/boardshorts/torn_gray.png and b/img/clothes/lower/boardshorts/torn_gray.png differ
diff --git a/img/clothes/lower/bootyjorts/frayed_gray.png b/img/clothes/lower/bootyjorts/frayed_gray.png
index 454352ee3ae18cda9ccb99f262bf2db78bfd6047..fadec4eeada8880d947f09944e77b21dd74bbdd4 100644
Binary files a/img/clothes/lower/bootyjorts/frayed_gray.png and b/img/clothes/lower/bootyjorts/frayed_gray.png differ
diff --git a/img/clothes/lower/bootyjorts/full_gray.png b/img/clothes/lower/bootyjorts/full_gray.png
index 0aa45e458c921bb9cdcda0f594312ef105af88aa..70650133abf3017a5c7d16007708c3cb7dad976b 100644
Binary files a/img/clothes/lower/bootyjorts/full_gray.png and b/img/clothes/lower/bootyjorts/full_gray.png differ
diff --git a/img/clothes/lower/bootyjorts/tattered_gray.png b/img/clothes/lower/bootyjorts/tattered_gray.png
index 5cee96a9ccd00006f4d4a9edcd733c0ed07b82c0..a74e7c5c6591ebfc7bdb4a7b7ab210ef8ad22f04 100644
Binary files a/img/clothes/lower/bootyjorts/tattered_gray.png and b/img/clothes/lower/bootyjorts/tattered_gray.png differ
diff --git a/img/clothes/lower/bootyjorts/torn_gray.png b/img/clothes/lower/bootyjorts/torn_gray.png
index 63bd23cb632744c4c747b679d4e98fd7c8cf2f37..676fd4801865b15521cb9632a511644c285706ab 100644
Binary files a/img/clothes/lower/bootyjorts/torn_gray.png and b/img/clothes/lower/bootyjorts/torn_gray.png differ
diff --git a/img/clothes/lower/bootyjorts2/frayed_gray.png b/img/clothes/lower/bootyjorts2/frayed_gray.png
index 83c6ee264cb582bbbee484a7b387ee5361d6b15e..95874b5c6d34e7ac61a6c49b8f2e49da7131944f 100644
Binary files a/img/clothes/lower/bootyjorts2/frayed_gray.png and b/img/clothes/lower/bootyjorts2/frayed_gray.png differ
diff --git a/img/clothes/lower/bootyjorts2/full_gray.png b/img/clothes/lower/bootyjorts2/full_gray.png
index bbc7d5fbb2362932b59187ea37f24b3467dbe627..e7fbd7e77500192235a1cff48a4a6f3a08eb689d 100644
Binary files a/img/clothes/lower/bootyjorts2/full_gray.png and b/img/clothes/lower/bootyjorts2/full_gray.png differ
diff --git a/img/clothes/lower/bootyjorts2/tattered_gray.png b/img/clothes/lower/bootyjorts2/tattered_gray.png
index a34233d90b6d4098d7094f56e13959fdba1f91cd..b61aa6a4b48396972f1632c35a77d605a4ba591e 100644
Binary files a/img/clothes/lower/bootyjorts2/tattered_gray.png and b/img/clothes/lower/bootyjorts2/tattered_gray.png differ
diff --git a/img/clothes/lower/bootyjorts2/torn_gray.png b/img/clothes/lower/bootyjorts2/torn_gray.png
index 6629e0792c0c9e8214fecd0cccd9cda6726a9601..d562664a1271c7f23d715e75ba6dc4904dda8a07 100644
Binary files a/img/clothes/lower/bootyjorts2/torn_gray.png and b/img/clothes/lower/bootyjorts2/torn_gray.png differ
diff --git a/img/clothes/lower/breeches/frayed_gray.png b/img/clothes/lower/breeches/frayed_gray.png
index 1272a1b9c35482891d6750694daf35733168cc55..7835ec43436a5246126bc26e151ef33899eeb18d 100644
Binary files a/img/clothes/lower/breeches/frayed_gray.png and b/img/clothes/lower/breeches/frayed_gray.png differ
diff --git a/img/clothes/lower/breeches/full_gray.png b/img/clothes/lower/breeches/full_gray.png
index 37930a1d863ee285d40c3d61d60cb5cf46d7bc07..fc38e95c996314a1979bb21fe83e95c4f3b1a526 100644
Binary files a/img/clothes/lower/breeches/full_gray.png and b/img/clothes/lower/breeches/full_gray.png differ
diff --git a/img/clothes/lower/breeches/tattered_gray.png b/img/clothes/lower/breeches/tattered_gray.png
index 95dcf64e0ea5553fb34d3fe13dc963b5245f57e7..bd02bbb52b6f0a99a87ec365d6a912d4f22031b1 100644
Binary files a/img/clothes/lower/breeches/tattered_gray.png and b/img/clothes/lower/breeches/tattered_gray.png differ
diff --git a/img/clothes/lower/breeches/torn_gray.png b/img/clothes/lower/breeches/torn_gray.png
index 3e41611ac741b223ffde8f1349696371e222a565..44c9119fda68904294ed96e5e8f50ebd4b035506 100644
Binary files a/img/clothes/lower/breeches/torn_gray.png and b/img/clothes/lower/breeches/torn_gray.png differ
diff --git a/img/clothes/lower/cargo/frayed_gray.png b/img/clothes/lower/cargo/frayed_gray.png
index 829c848b0357a5a359260e9efb7154f91fbab8a4..a0b0f9ab571c610685c4368e63e0e4730161f25d 100644
Binary files a/img/clothes/lower/cargo/frayed_gray.png and b/img/clothes/lower/cargo/frayed_gray.png differ
diff --git a/img/clothes/lower/cargo/full_gray.png b/img/clothes/lower/cargo/full_gray.png
index 2e4bd58e3fe53862a883b3946d99a41f38934e3a..f9d1c815c09d3addbf599ec41b82cb843f5d339f 100644
Binary files a/img/clothes/lower/cargo/full_gray.png and b/img/clothes/lower/cargo/full_gray.png differ
diff --git a/img/clothes/lower/cargo/tattered_gray.png b/img/clothes/lower/cargo/tattered_gray.png
index 7f98661e9436b922b0550ab69aea829b2a15d23b..2af6ab87cc53923fc8f9658fd44a36786d86f6c7 100644
Binary files a/img/clothes/lower/cargo/tattered_gray.png and b/img/clothes/lower/cargo/tattered_gray.png differ
diff --git a/img/clothes/lower/cargo/torn_gray.png b/img/clothes/lower/cargo/torn_gray.png
index e562a1ad2658d0bc521f4d7dbf1c1c9530aeec2d..c4e602174145fdcae4fea9e4c7217abe263f1a54 100644
Binary files a/img/clothes/lower/cargo/torn_gray.png and b/img/clothes/lower/cargo/torn_gray.png differ
diff --git a/img/clothes/lower/catsuit/frayed_gray.png b/img/clothes/lower/catsuit/frayed_gray.png
index d90426fe01f9c8f3eb6020e87e0247e882bf87d2..ffe79032d37e3429303b8ba89c1fafd3b03392c7 100644
Binary files a/img/clothes/lower/catsuit/frayed_gray.png and b/img/clothes/lower/catsuit/frayed_gray.png differ
diff --git a/img/clothes/lower/catsuit/full_gray.png b/img/clothes/lower/catsuit/full_gray.png
index 8b1d3e2d111ad4794c312b111d30d17ceeb39fa5..6d85b08002763ade7ab4f7d9e707702f8984e652 100644
Binary files a/img/clothes/lower/catsuit/full_gray.png and b/img/clothes/lower/catsuit/full_gray.png differ
diff --git a/img/clothes/lower/catsuit/tattered_gray.png b/img/clothes/lower/catsuit/tattered_gray.png
index f6f76cc24b108fc2b2990d1329d0514e579d8475..f2ec192e7eca854e69478bf8c9b313c5e6d396fe 100644
Binary files a/img/clothes/lower/catsuit/tattered_gray.png and b/img/clothes/lower/catsuit/tattered_gray.png differ
diff --git a/img/clothes/lower/catsuit/torn_gray.png b/img/clothes/lower/catsuit/torn_gray.png
index 17eb9e9d6ca5bbff32b9aea700bf7270b0a4b30b..6e8a99745f494439b2233de22f2d812e0c74a494 100644
Binary files a/img/clothes/lower/catsuit/torn_gray.png and b/img/clothes/lower/catsuit/torn_gray.png differ
diff --git a/img/clothes/lower/chapette/acc.png b/img/clothes/lower/chapette/acc.png
index a4a1c0ac5eef925ab52bea15f577da20f8a28d85..dc552242e0ae5bc45d3a07300ac10d0e244beb86 100644
Binary files a/img/clothes/lower/chapette/acc.png and b/img/clothes/lower/chapette/acc.png differ
diff --git a/img/clothes/lower/chapette/acc_gray.png b/img/clothes/lower/chapette/acc_gray.png
index d11cca2e0bd62df64077e985efb808a1f0c5932d..dc552242e0ae5bc45d3a07300ac10d0e244beb86 100644
Binary files a/img/clothes/lower/chapette/acc_gray.png and b/img/clothes/lower/chapette/acc_gray.png differ
diff --git a/img/clothes/lower/chapette/frayed_gray.png b/img/clothes/lower/chapette/frayed_gray.png
index 8cb7d19221f8a2e9dcbd904032fae9ee2b01db69..968f66ad013790d80fc4d512a3d111de4745776e 100644
Binary files a/img/clothes/lower/chapette/frayed_gray.png and b/img/clothes/lower/chapette/frayed_gray.png differ
diff --git a/img/clothes/lower/chapette/full_gray.png b/img/clothes/lower/chapette/full_gray.png
index 0fbbb5ca005336e45e8915c50a4ab2e2f519c7b0..7701a6168a13b5e822ecf3599a2a2c96755c9c14 100644
Binary files a/img/clothes/lower/chapette/full_gray.png and b/img/clothes/lower/chapette/full_gray.png differ
diff --git a/img/clothes/lower/chapette/tattered_gray.png b/img/clothes/lower/chapette/tattered_gray.png
index 5cebdf38efee2302539e145633a0fb8a6c2dc052..ddf4040a30278c9a62863a9f76f885a74290e1e0 100644
Binary files a/img/clothes/lower/chapette/tattered_gray.png and b/img/clothes/lower/chapette/tattered_gray.png differ
diff --git a/img/clothes/lower/chapette/torn_gray.png b/img/clothes/lower/chapette/torn_gray.png
index ac9e8ec94b0676c0b15f047bc8ffd479b8800944..369baecd72ec6605af10fbab6406bbc060842e5e 100644
Binary files a/img/clothes/lower/chapette/torn_gray.png and b/img/clothes/lower/chapette/torn_gray.png differ
diff --git a/img/clothes/lower/cheerleader/acc.png b/img/clothes/lower/cheerleader/acc.png
index 774b9ccd8086ad82bb96538cc92ea6e8122f1ab9..396381f72847b59b7f04a50543ed27be93a90dc2 100644
Binary files a/img/clothes/lower/cheerleader/acc.png and b/img/clothes/lower/cheerleader/acc.png differ
diff --git a/img/clothes/lower/cheerleader/frayed_acc.png b/img/clothes/lower/cheerleader/frayed_acc.png
index 14cb8b1e653cd6c7a8c6fd2cb164277040cbd17f..6c91eb2a2e1aa661e0607897febd1c29edc811ba 100644
Binary files a/img/clothes/lower/cheerleader/frayed_acc.png and b/img/clothes/lower/cheerleader/frayed_acc.png differ
diff --git a/img/clothes/lower/cheerleader/frayed_gray.png b/img/clothes/lower/cheerleader/frayed_gray.png
index 38ae7635f06605792928d693ebff72820044c9bc..43268bc4b48434fc245737536c3a353587bea877 100644
Binary files a/img/clothes/lower/cheerleader/frayed_gray.png and b/img/clothes/lower/cheerleader/frayed_gray.png differ
diff --git a/img/clothes/lower/cheerleader/full_acc.png b/img/clothes/lower/cheerleader/full_acc.png
index c4759b3d0eb9d2b34f6fe623c6bfc6e007f8e790..396381f72847b59b7f04a50543ed27be93a90dc2 100644
Binary files a/img/clothes/lower/cheerleader/full_acc.png and b/img/clothes/lower/cheerleader/full_acc.png differ
diff --git a/img/clothes/lower/cheerleader/full_gray.png b/img/clothes/lower/cheerleader/full_gray.png
index 390e8aa5f214f5af1870a8da323875832d6c0383..69a5a1f7a8419290774150b93ca9f9698d8ef6ea 100644
Binary files a/img/clothes/lower/cheerleader/full_gray.png and b/img/clothes/lower/cheerleader/full_gray.png differ
diff --git a/img/clothes/lower/cheerleader/tattered_acc.png b/img/clothes/lower/cheerleader/tattered_acc.png
index 455dbd8bac154e597075de92b166d048d84ad19c..c6dccd246db4c1da7513ceb747b90370893a7d47 100644
Binary files a/img/clothes/lower/cheerleader/tattered_acc.png and b/img/clothes/lower/cheerleader/tattered_acc.png differ
diff --git a/img/clothes/lower/cheerleader/tattered_gray.png b/img/clothes/lower/cheerleader/tattered_gray.png
index 5642f56286ea3574af1a3c8c504c042b730cdbc1..f974643292e626e56e3933da7bdd6e74bf5caaeb 100644
Binary files a/img/clothes/lower/cheerleader/tattered_gray.png and b/img/clothes/lower/cheerleader/tattered_gray.png differ
diff --git a/img/clothes/lower/cheerleader/torn_acc.png b/img/clothes/lower/cheerleader/torn_acc.png
index d10eb9f84ef27122250c86e763f0b11296baa8a0..e944d80a369126db79306b40608dcef8c1a92f1e 100644
Binary files a/img/clothes/lower/cheerleader/torn_acc.png and b/img/clothes/lower/cheerleader/torn_acc.png differ
diff --git a/img/clothes/lower/cheerleader/torn_gray.png b/img/clothes/lower/cheerleader/torn_gray.png
index f6f103e99255630a04e3fe4adcfc32d3f9955337..18118a5d0293ba07ce69cdc8a94c72e579284ac1 100644
Binary files a/img/clothes/lower/cheerleader/torn_gray.png and b/img/clothes/lower/cheerleader/torn_gray.png differ
diff --git a/img/clothes/lower/cheongsam/acc.png b/img/clothes/lower/cheongsam/acc.png
index f09ea8fa77f2b9266dba637f87674aab88188d39..9b71ca0f0f228d282f79c98d8907ba802571df20 100644
Binary files a/img/clothes/lower/cheongsam/acc.png and b/img/clothes/lower/cheongsam/acc.png differ
diff --git a/img/clothes/lower/cheongsam/frayed_gray.png b/img/clothes/lower/cheongsam/frayed_gray.png
index 1057a92a475454e85d604a55a301c7b95c8b84fd..585d8803eb14dbea68bd73e876168b546d9d0eb5 100644
Binary files a/img/clothes/lower/cheongsam/frayed_gray.png and b/img/clothes/lower/cheongsam/frayed_gray.png differ
diff --git a/img/clothes/lower/cheongsam/full_gray.png b/img/clothes/lower/cheongsam/full_gray.png
index 1057a92a475454e85d604a55a301c7b95c8b84fd..585d8803eb14dbea68bd73e876168b546d9d0eb5 100644
Binary files a/img/clothes/lower/cheongsam/full_gray.png and b/img/clothes/lower/cheongsam/full_gray.png differ
diff --git a/img/clothes/lower/cheongsam/tattered_gray.png b/img/clothes/lower/cheongsam/tattered_gray.png
index 1057a92a475454e85d604a55a301c7b95c8b84fd..585d8803eb14dbea68bd73e876168b546d9d0eb5 100644
Binary files a/img/clothes/lower/cheongsam/tattered_gray.png and b/img/clothes/lower/cheongsam/tattered_gray.png differ
diff --git a/img/clothes/lower/cheongsam/torn_gray.png b/img/clothes/lower/cheongsam/torn_gray.png
index 1057a92a475454e85d604a55a301c7b95c8b84fd..585d8803eb14dbea68bd73e876168b546d9d0eb5 100644
Binary files a/img/clothes/lower/cheongsam/torn_gray.png and b/img/clothes/lower/cheongsam/torn_gray.png differ
diff --git a/img/clothes/lower/cheongsamshort/acc.png b/img/clothes/lower/cheongsamshort/acc.png
index 7bf285f086a30d83181cd11d15210dc75456a48b..c2a0d76eb304714328879a4147a6c864da03a464 100644
Binary files a/img/clothes/lower/cheongsamshort/acc.png and b/img/clothes/lower/cheongsamshort/acc.png differ
diff --git a/img/clothes/lower/cheongsamshort/frayed_gray.png b/img/clothes/lower/cheongsamshort/frayed_gray.png
index b182fa3a04591ff5cd95f3b9bbe656fd0206fea6..9bee49198d94c6362c4341e0f94177ed1bb0c0f4 100644
Binary files a/img/clothes/lower/cheongsamshort/frayed_gray.png and b/img/clothes/lower/cheongsamshort/frayed_gray.png differ
diff --git a/img/clothes/lower/cheongsamshort/full_gray.png b/img/clothes/lower/cheongsamshort/full_gray.png
index b182fa3a04591ff5cd95f3b9bbe656fd0206fea6..9bee49198d94c6362c4341e0f94177ed1bb0c0f4 100644
Binary files a/img/clothes/lower/cheongsamshort/full_gray.png and b/img/clothes/lower/cheongsamshort/full_gray.png differ
diff --git a/img/clothes/lower/cheongsamshort/tattered_gray.png b/img/clothes/lower/cheongsamshort/tattered_gray.png
index b182fa3a04591ff5cd95f3b9bbe656fd0206fea6..9bee49198d94c6362c4341e0f94177ed1bb0c0f4 100644
Binary files a/img/clothes/lower/cheongsamshort/tattered_gray.png and b/img/clothes/lower/cheongsamshort/tattered_gray.png differ
diff --git a/img/clothes/lower/cheongsamshort/torn_gray.png b/img/clothes/lower/cheongsamshort/torn_gray.png
index b182fa3a04591ff5cd95f3b9bbe656fd0206fea6..9bee49198d94c6362c4341e0f94177ed1bb0c0f4 100644
Binary files a/img/clothes/lower/cheongsamshort/torn_gray.png and b/img/clothes/lower/cheongsamshort/torn_gray.png differ
diff --git a/img/clothes/lower/chinos/acc.png b/img/clothes/lower/chinos/acc.png
index c35a043530a7134f6a2ceef3206beb5f35d8b2f6..38e810ebbccba30aef52023d16535e923dbeb4d8 100644
Binary files a/img/clothes/lower/chinos/acc.png and b/img/clothes/lower/chinos/acc.png differ
diff --git a/img/clothes/lower/chinos/frayed_gray.png b/img/clothes/lower/chinos/frayed_gray.png
index 21f7afca1e3051c04943d5fc02519e50a526fce4..6dfca483a0429190cfa3bdd06925cb231015c4c4 100644
Binary files a/img/clothes/lower/chinos/frayed_gray.png and b/img/clothes/lower/chinos/frayed_gray.png differ
diff --git a/img/clothes/lower/chinos/full_gray.png b/img/clothes/lower/chinos/full_gray.png
index 1936a39f82a4bc6c07caa82a5f56faa3ed51495b..20c042804b70afbb2aaf64888102e7c11ab680ce 100644
Binary files a/img/clothes/lower/chinos/full_gray.png and b/img/clothes/lower/chinos/full_gray.png differ
diff --git a/img/clothes/lower/chinos/tattered_gray.png b/img/clothes/lower/chinos/tattered_gray.png
index c1c5220512034d433478321a5fdeb8748e2b7094..6effd5239a5dc9cb1248d86217ffd7d018cde06a 100644
Binary files a/img/clothes/lower/chinos/tattered_gray.png and b/img/clothes/lower/chinos/tattered_gray.png differ
diff --git a/img/clothes/lower/chinos/torn_gray.png b/img/clothes/lower/chinos/torn_gray.png
index 711a6c5dc805393efc46821212102ddf544f37a3..4c277031d95086ccacaca0e72ae009c5213d96df 100644
Binary files a/img/clothes/lower/chinos/torn_gray.png and b/img/clothes/lower/chinos/torn_gray.png differ
diff --git a/img/clothes/lower/christmas/frayed.png b/img/clothes/lower/christmas/frayed.png
index 1d9dabed8129c5be7841325c27977bc8ab372668..d2de33adb8b925d13e5c05729967fc72b34a574c 100644
Binary files a/img/clothes/lower/christmas/frayed.png and b/img/clothes/lower/christmas/frayed.png differ
diff --git a/img/clothes/lower/christmas/full.png b/img/clothes/lower/christmas/full.png
index 55ae577cfda8bbf399668728ff3bdccffb12a588..272c1f7bd4586d28f8e72a8751c5139fdf3271a9 100644
Binary files a/img/clothes/lower/christmas/full.png and b/img/clothes/lower/christmas/full.png differ
diff --git a/img/clothes/lower/christmas/tattered.png b/img/clothes/lower/christmas/tattered.png
index a2965bc427ddbecd6cda78d4abb5105dc39f6435..cf0a548a89e786ecf1287820bf35be84947df469 100644
Binary files a/img/clothes/lower/christmas/tattered.png and b/img/clothes/lower/christmas/tattered.png differ
diff --git a/img/clothes/lower/christmas/torn.png b/img/clothes/lower/christmas/torn.png
index 187c98ef2d7683c9b0b52bebcea63f56aed9d091..e55cde924dbe9491252b9d031eceb6aa9d6c661d 100644
Binary files a/img/clothes/lower/christmas/torn.png and b/img/clothes/lower/christmas/torn.png differ
diff --git a/img/clothes/lower/christmasdress/frayed.png b/img/clothes/lower/christmasdress/frayed.png
index ff1e2f07dc8ca76d7e09ef0362eeeb934ce71c77..a0643e7f57cd5a5302536a91ea6616ee031bb14b 100644
Binary files a/img/clothes/lower/christmasdress/frayed.png and b/img/clothes/lower/christmasdress/frayed.png differ
diff --git a/img/clothes/lower/christmasdress/full.png b/img/clothes/lower/christmasdress/full.png
index 73fa02892dc05cdf8309d2caf022175394d1dcc8..862921af8f6d504baaa1b0afb845811c38cf2884 100644
Binary files a/img/clothes/lower/christmasdress/full.png and b/img/clothes/lower/christmasdress/full.png differ
diff --git a/img/clothes/lower/christmasdress/tattered.png b/img/clothes/lower/christmasdress/tattered.png
index d9ff878004530c02e2e61c4032b2c25524c340a2..d5515669fee190988d0f7d3e0e20839cbe032e48 100644
Binary files a/img/clothes/lower/christmasdress/tattered.png and b/img/clothes/lower/christmasdress/tattered.png differ
diff --git a/img/clothes/lower/christmasdress/torn.png b/img/clothes/lower/christmasdress/torn.png
index 64e7a10e8c68c201a609da525b63b9c6dd36356c..474357359766999899736cdb5f425396a0200e93 100644
Binary files a/img/clothes/lower/christmasdress/torn.png and b/img/clothes/lower/christmasdress/torn.png differ
diff --git a/img/clothes/lower/classicschoolshorts/frayed_gray.png b/img/clothes/lower/classicschoolshorts/frayed_gray.png
index 33d59554969c998877dbd85cbc6a43da4bab4c8e..2ea1c636b28a057ab94c9ad52c9239599848aaf3 100644
Binary files a/img/clothes/lower/classicschoolshorts/frayed_gray.png and b/img/clothes/lower/classicschoolshorts/frayed_gray.png differ
diff --git a/img/clothes/lower/classicschoolshorts/full_gray.png b/img/clothes/lower/classicschoolshorts/full_gray.png
index 257eb34bc1dc1267f92ee100ed8d53f21c1ed9e3..fa576dc86064f594b249ea31a22e58497432512b 100644
Binary files a/img/clothes/lower/classicschoolshorts/full_gray.png and b/img/clothes/lower/classicschoolshorts/full_gray.png differ
diff --git a/img/clothes/lower/classicschoolshorts/tattered_gray.png b/img/clothes/lower/classicschoolshorts/tattered_gray.png
index 281abcfbd73eab3b1dc432774711fe081088d6fe..db8556882109722fccc6c988407606a5ed01ee00 100644
Binary files a/img/clothes/lower/classicschoolshorts/tattered_gray.png and b/img/clothes/lower/classicschoolshorts/tattered_gray.png differ
diff --git a/img/clothes/lower/classicschoolshorts/torn_gray.png b/img/clothes/lower/classicschoolshorts/torn_gray.png
index a463724ea088d9f424c6469827bab3b0d8606934..319caeda7b342908ea637176ef7935deeb525953 100644
Binary files a/img/clothes/lower/classicschoolshorts/torn_gray.png and b/img/clothes/lower/classicschoolshorts/torn_gray.png differ
diff --git a/img/clothes/lower/classicschoolskirt/frayed_gray.png b/img/clothes/lower/classicschoolskirt/frayed_gray.png
index 02cfdd44234de01f9dab4952ce7a8911cb3a09fb..3b3806b7a2348d75efbf1c6ade2b64288a638dc4 100644
Binary files a/img/clothes/lower/classicschoolskirt/frayed_gray.png and b/img/clothes/lower/classicschoolskirt/frayed_gray.png differ
diff --git a/img/clothes/lower/classicschoolskirt/full_gray.png b/img/clothes/lower/classicschoolskirt/full_gray.png
index 580bd7d909a04b451f1f5ffff4f9cc1493e4959f..2367923f948c829d57bd2ce381d03720f8416311 100644
Binary files a/img/clothes/lower/classicschoolskirt/full_gray.png and b/img/clothes/lower/classicschoolskirt/full_gray.png differ
diff --git a/img/clothes/lower/classicschoolskirt/tattered_gray.png b/img/clothes/lower/classicschoolskirt/tattered_gray.png
index 7682654a88153f4e79cdf850b289f0a44c3c897f..d1dff1eb8868e60e52ebb949956b8ba23bb04e78 100644
Binary files a/img/clothes/lower/classicschoolskirt/tattered_gray.png and b/img/clothes/lower/classicschoolskirt/tattered_gray.png differ
diff --git a/img/clothes/lower/classicschoolskirt/torn_gray.png b/img/clothes/lower/classicschoolskirt/torn_gray.png
index aa683e41eb851ccf64a723667ccf3cea3c1ddbc4..6ae6d7749ad3a8847fa847672eeec3e46ef1d293 100644
Binary files a/img/clothes/lower/classicschoolskirt/torn_gray.png and b/img/clothes/lower/classicschoolskirt/torn_gray.png differ
diff --git a/img/clothes/lower/classicsundress/frayed_gray.png b/img/clothes/lower/classicsundress/frayed_gray.png
index 3f5b3623e367a5c3ea04bb4e8dc9e3fdda9d811d..82f36a74a4e276d664064a10cefde6e0a45016e6 100644
Binary files a/img/clothes/lower/classicsundress/frayed_gray.png and b/img/clothes/lower/classicsundress/frayed_gray.png differ
diff --git a/img/clothes/lower/classicsundress/full_gray.png b/img/clothes/lower/classicsundress/full_gray.png
index b108ceb30014578328f760525847e56fbf8e4c80..87050eb8c82ebf6a1d34ca24e2866283e19b6ca0 100644
Binary files a/img/clothes/lower/classicsundress/full_gray.png and b/img/clothes/lower/classicsundress/full_gray.png differ
diff --git a/img/clothes/lower/classicsundress/tattered_gray.png b/img/clothes/lower/classicsundress/tattered_gray.png
index 7574cc6aad68bd3f43f5c11b020b00e45036e2b3..cec7392aa6de4341bb2766227ed21611816907b7 100644
Binary files a/img/clothes/lower/classicsundress/tattered_gray.png and b/img/clothes/lower/classicsundress/tattered_gray.png differ
diff --git a/img/clothes/lower/classicsundress/torn_gray.png b/img/clothes/lower/classicsundress/torn_gray.png
index 5959109c9de97191dd084757bcc62822402bdd67..8223193846faa2daea3847483b330c282cf7069a 100644
Binary files a/img/clothes/lower/classicsundress/torn_gray.png and b/img/clothes/lower/classicsundress/torn_gray.png differ
diff --git a/img/clothes/lower/cocoon/frayed.png b/img/clothes/lower/cocoon/frayed.png
index e9a0a3913d50b9b1a425f2a4e35884df2f33a5b6..f2c8a8b25406c8efffca3e85721f9fc02943739f 100644
Binary files a/img/clothes/lower/cocoon/frayed.png and b/img/clothes/lower/cocoon/frayed.png differ
diff --git a/img/clothes/lower/cocoon/full.png b/img/clothes/lower/cocoon/full.png
index e9a0a3913d50b9b1a425f2a4e35884df2f33a5b6..f2c8a8b25406c8efffca3e85721f9fc02943739f 100644
Binary files a/img/clothes/lower/cocoon/full.png and b/img/clothes/lower/cocoon/full.png differ
diff --git a/img/clothes/lower/cocoon/mask.png b/img/clothes/lower/cocoon/mask.png
index 653067dd9f0d4e95ac6eb5590745aa2e01d8a290..b640371b3adefe48389277405babee48f65b0b6b 100644
Binary files a/img/clothes/lower/cocoon/mask.png and b/img/clothes/lower/cocoon/mask.png differ
diff --git a/img/clothes/lower/cocoon/tattered.png b/img/clothes/lower/cocoon/tattered.png
index e9a0a3913d50b9b1a425f2a4e35884df2f33a5b6..f2c8a8b25406c8efffca3e85721f9fc02943739f 100644
Binary files a/img/clothes/lower/cocoon/tattered.png and b/img/clothes/lower/cocoon/tattered.png differ
diff --git a/img/clothes/lower/cocoon/torn.png b/img/clothes/lower/cocoon/torn.png
index e9a0a3913d50b9b1a425f2a4e35884df2f33a5b6..f2c8a8b25406c8efffca3e85721f9fc02943739f 100644
Binary files a/img/clothes/lower/cocoon/torn.png and b/img/clothes/lower/cocoon/torn.png differ
diff --git a/img/clothes/lower/cowboy/frayed.png b/img/clothes/lower/cowboy/frayed.png
index 18455385d0d0913090296e51c712b3e40110cf34..223469b043c3e51406a3c4e6c9a53302174fe53f 100644
Binary files a/img/clothes/lower/cowboy/frayed.png and b/img/clothes/lower/cowboy/frayed.png differ
diff --git a/img/clothes/lower/cowboy/full.png b/img/clothes/lower/cowboy/full.png
index 1aae59c1323ae8d7b1b2b9d3ea44725481dd2d30..54d9c0c1c6b1a88369f9db65bfd057035ea7c70f 100644
Binary files a/img/clothes/lower/cowboy/full.png and b/img/clothes/lower/cowboy/full.png differ
diff --git a/img/clothes/lower/cowboy/tattered.png b/img/clothes/lower/cowboy/tattered.png
index 72106f860970a4cae9c4e9e02ace6d46827b1254..559906cee42554f5338ebf8f2f3516997860001e 100644
Binary files a/img/clothes/lower/cowboy/tattered.png and b/img/clothes/lower/cowboy/tattered.png differ
diff --git a/img/clothes/lower/cowboy/torn.png b/img/clothes/lower/cowboy/torn.png
index 8315517f9113e295d04b4abc0222df0c60a85719..c85b8ff47a3308cac7a2573886f9c5061d2a56bf 100644
Binary files a/img/clothes/lower/cowboy/torn.png and b/img/clothes/lower/cowboy/torn.png differ
diff --git a/img/clothes/lower/cowchaps/frayed.png b/img/clothes/lower/cowchaps/frayed.png
index 49ea3f8b31a511adb03a5401ab7f906eb8ec0e9e..128b1631e847d6b0347d326deb0db77392108cd5 100644
Binary files a/img/clothes/lower/cowchaps/frayed.png and b/img/clothes/lower/cowchaps/frayed.png differ
diff --git a/img/clothes/lower/cowchaps/full.png b/img/clothes/lower/cowchaps/full.png
index 038437831d37ddb6ce0d09ba976fe86ebf75568b..4839b8495802b8f4620933116fc96c39dcfea533 100644
Binary files a/img/clothes/lower/cowchaps/full.png and b/img/clothes/lower/cowchaps/full.png differ
diff --git a/img/clothes/lower/cowchaps/tattered.png b/img/clothes/lower/cowchaps/tattered.png
index 6a8333502ae20709511af8287fb372607d217c69..61ed23eb1d9c6364bb4506ef1b308005d4fda103 100644
Binary files a/img/clothes/lower/cowchaps/tattered.png and b/img/clothes/lower/cowchaps/tattered.png differ
diff --git a/img/clothes/lower/cowchaps/torn.png b/img/clothes/lower/cowchaps/torn.png
index 9c10cb8951c3e941de5ca3fe7e04876185463ffd..4620dbd8de20cdf404671d60044a943cd4221186 100644
Binary files a/img/clothes/lower/cowchaps/torn.png and b/img/clothes/lower/cowchaps/torn.png differ
diff --git a/img/clothes/lower/cowonesie/frayed.png b/img/clothes/lower/cowonesie/frayed.png
index a2acdff3aaa93f527404eff0163731d0ab5bf056..60770bb3f6dca345f2a190e356632ad324b8ad38 100644
Binary files a/img/clothes/lower/cowonesie/frayed.png and b/img/clothes/lower/cowonesie/frayed.png differ
diff --git a/img/clothes/lower/cowonesie/full.png b/img/clothes/lower/cowonesie/full.png
index a67289c3456ca290220ddf088e14f8a4ff3841bd..30f1209807765442ff0fbbbd5d698f6eb937ac38 100644
Binary files a/img/clothes/lower/cowonesie/full.png and b/img/clothes/lower/cowonesie/full.png differ
diff --git a/img/clothes/lower/cowonesie/tattered.png b/img/clothes/lower/cowonesie/tattered.png
index dd58aee54e95b31cf267b4f573cba41ab0059dc4..be12cb7b15884bfe3095e3dfece1fe697c94b83a 100644
Binary files a/img/clothes/lower/cowonesie/tattered.png and b/img/clothes/lower/cowonesie/tattered.png differ
diff --git a/img/clothes/lower/cowonesie/torn.png b/img/clothes/lower/cowonesie/torn.png
index 33815b310531ab7aabf0109aae32cdead445738c..733933678bab1fe73988cea194dfb0ee786c7309 100644
Binary files a/img/clothes/lower/cowonesie/torn.png and b/img/clothes/lower/cowonesie/torn.png differ
diff --git a/img/clothes/lower/cutskirtlong/frayed_gray.png b/img/clothes/lower/cutskirtlong/frayed_gray.png
index 44c7db05d870900435428f590098d3aefdd3a543..6ad778c78386fba425cd5a0e569ddd297c1b7e10 100644
Binary files a/img/clothes/lower/cutskirtlong/frayed_gray.png and b/img/clothes/lower/cutskirtlong/frayed_gray.png differ
diff --git a/img/clothes/lower/cutskirtlong/full_gray.png b/img/clothes/lower/cutskirtlong/full_gray.png
index 69cb9cd3658101ba76e192471edecd11a9c06c1a..539dff8de9254404f09d79ee3f30dae3e1a17e7f 100644
Binary files a/img/clothes/lower/cutskirtlong/full_gray.png and b/img/clothes/lower/cutskirtlong/full_gray.png differ
diff --git a/img/clothes/lower/cutskirtlong/tattered_gray.png b/img/clothes/lower/cutskirtlong/tattered_gray.png
index fbb7f0ebf995ecf8713aacc4902f97deeb017558..6655b73fa83b5500cc171898b192a0274a89d283 100644
Binary files a/img/clothes/lower/cutskirtlong/tattered_gray.png and b/img/clothes/lower/cutskirtlong/tattered_gray.png differ
diff --git a/img/clothes/lower/cutskirtlong/torn_gray.png b/img/clothes/lower/cutskirtlong/torn_gray.png
index dab5c988f27f4bf4cf7d4ff0a5357c93cdf1733c..215138341fb513d09622cf1585db5dcfbf035b5c 100644
Binary files a/img/clothes/lower/cutskirtlong/torn_gray.png and b/img/clothes/lower/cutskirtlong/torn_gray.png differ
diff --git a/img/clothes/lower/cutskirtshort/frayed_gray.png b/img/clothes/lower/cutskirtshort/frayed_gray.png
index 73bc42692d6d85694a26db4913098c0c8a2cbc10..541713ca700b7531a4d1a852b2b9fd95a903452c 100644
Binary files a/img/clothes/lower/cutskirtshort/frayed_gray.png and b/img/clothes/lower/cutskirtshort/frayed_gray.png differ
diff --git a/img/clothes/lower/cutskirtshort/full_gray.png b/img/clothes/lower/cutskirtshort/full_gray.png
index 05398cb9db1d0a116f95d65f4b4e6d0dac52e28d..dd4ec82fc81b9bedbfa059343b0e70ea15d9c117 100644
Binary files a/img/clothes/lower/cutskirtshort/full_gray.png and b/img/clothes/lower/cutskirtshort/full_gray.png differ
diff --git a/img/clothes/lower/cutskirtshort/tattered_gray.png b/img/clothes/lower/cutskirtshort/tattered_gray.png
index e8612e1a4d99a2da820550f5355a776cf5c635da..7b192fe8501b09b92e688febc7a99cf40543254c 100644
Binary files a/img/clothes/lower/cutskirtshort/tattered_gray.png and b/img/clothes/lower/cutskirtshort/tattered_gray.png differ
diff --git a/img/clothes/lower/cutskirtshort/torn_gray.png b/img/clothes/lower/cutskirtshort/torn_gray.png
index 6ba1602d1660ce90d06a283534606a7fe145bb43..66bdedde50def20276dbcb34fe12d3b84bda7f99 100644
Binary files a/img/clothes/lower/cutskirtshort/torn_gray.png and b/img/clothes/lower/cutskirtshort/torn_gray.png differ
diff --git a/img/clothes/lower/cycleshorts/frayed.png b/img/clothes/lower/cycleshorts/frayed.png
index 692399868b6545a5d07f88d73c42577b752ab3f5..351b28020ff2df7f8558f233e51a2288af8066d1 100644
Binary files a/img/clothes/lower/cycleshorts/frayed.png and b/img/clothes/lower/cycleshorts/frayed.png differ
diff --git a/img/clothes/lower/cycleshorts/full.png b/img/clothes/lower/cycleshorts/full.png
index 2ba5fed60fcec34696c386eae8ad4a9ce56f62ab..587383f8fdade51afa79dd6f19790e51ed3fb1b4 100644
Binary files a/img/clothes/lower/cycleshorts/full.png and b/img/clothes/lower/cycleshorts/full.png differ
diff --git a/img/clothes/lower/cycleshorts/penis.png b/img/clothes/lower/cycleshorts/penis.png
index 8946362d109dd850abe961bb5e1f30ceaa321bde..ce970f15a55c6dc62163da835543f599276b0236 100644
Binary files a/img/clothes/lower/cycleshorts/penis.png and b/img/clothes/lower/cycleshorts/penis.png differ
diff --git a/img/clothes/lower/cycleshorts/tattered.png b/img/clothes/lower/cycleshorts/tattered.png
index e2dcabf2ab3d8db21b0757cab68b5ece3ae68eae..bf087fd45eda7915ddfa231a32aad787089dadea 100644
Binary files a/img/clothes/lower/cycleshorts/tattered.png and b/img/clothes/lower/cycleshorts/tattered.png differ
diff --git a/img/clothes/lower/cycleshorts/torn.png b/img/clothes/lower/cycleshorts/torn.png
index 179fcb8572a22e179aed02abbec80bd29d9ec787..132094bc39215b8215987ec90c63675cb21a112a 100644
Binary files a/img/clothes/lower/cycleshorts/torn.png and b/img/clothes/lower/cycleshorts/torn.png differ
diff --git a/img/clothes/lower/diving/frayed.png b/img/clothes/lower/diving/frayed.png
index d09ce3ea8b00d7bcb8171086d7adcb05e04e662c..f3685cb299845d8110bd1e50281827c50c6d4636 100644
Binary files a/img/clothes/lower/diving/frayed.png and b/img/clothes/lower/diving/frayed.png differ
diff --git a/img/clothes/lower/diving/full.png b/img/clothes/lower/diving/full.png
index 8e5e9dafcb11cb1be5ef7fbadb11826bbbbe71b3..555e00ba5a572717bbf9c0a2d56fa203f5fb4a0c 100644
Binary files a/img/clothes/lower/diving/full.png and b/img/clothes/lower/diving/full.png differ
diff --git a/img/clothes/lower/diving/tattered.png b/img/clothes/lower/diving/tattered.png
index 727cb27ddfce2afcf397c8e7f26665ca1fdece7c..3904f74ebebbccaac298da4f94ccfd69a5cb0c5c 100644
Binary files a/img/clothes/lower/diving/tattered.png and b/img/clothes/lower/diving/tattered.png differ
diff --git a/img/clothes/lower/diving/torn.png b/img/clothes/lower/diving/torn.png
index 98ab5e22beeb8dc9130c88dfd4c2d463a9dca387..e4ad38d9f418601281fd1fb2367507bc3ebe3650 100644
Binary files a/img/clothes/lower/diving/torn.png and b/img/clothes/lower/diving/torn.png differ
diff --git a/img/clothes/lower/dolphinshorts/acc_frayed_gray.png b/img/clothes/lower/dolphinshorts/acc_frayed_gray.png
index 4cc4523c5a5976e7ed4a7899d67e34f0a97ae5c3..6997d23237a6bdb771c8e0020598eac3a907436a 100644
Binary files a/img/clothes/lower/dolphinshorts/acc_frayed_gray.png and b/img/clothes/lower/dolphinshorts/acc_frayed_gray.png differ
diff --git a/img/clothes/lower/dolphinshorts/acc_full_gray.png b/img/clothes/lower/dolphinshorts/acc_full_gray.png
index c619eac68421502c610cf720aa91e0695ddf569e..ef0b7f0fc7e0a3ac5a0a11f6a5321f2e66271349 100644
Binary files a/img/clothes/lower/dolphinshorts/acc_full_gray.png and b/img/clothes/lower/dolphinshorts/acc_full_gray.png differ
diff --git a/img/clothes/lower/dolphinshorts/acc_tattered_gray.png b/img/clothes/lower/dolphinshorts/acc_tattered_gray.png
index ca378f27b7bca1d16a451c5a9ec9a8df2607c56e..6ff207c56a7f122d32551eb2c75ffead73acd293 100644
Binary files a/img/clothes/lower/dolphinshorts/acc_tattered_gray.png and b/img/clothes/lower/dolphinshorts/acc_tattered_gray.png differ
diff --git a/img/clothes/lower/dolphinshorts/acc_torn_gray.png b/img/clothes/lower/dolphinshorts/acc_torn_gray.png
index f5196bc37c9833582705f30b25c7a806be117657..ac1144890a4101b0cf72bd20f60a54ba023434b3 100644
Binary files a/img/clothes/lower/dolphinshorts/acc_torn_gray.png and b/img/clothes/lower/dolphinshorts/acc_torn_gray.png differ
diff --git a/img/clothes/lower/dolphinshorts/frayed_gray.png b/img/clothes/lower/dolphinshorts/frayed_gray.png
index 035d84c052c4378fcad61e3cddf8dd7fc00719a5..c1e13061d91c903083a3834afd1bb4a48caa8dc1 100644
Binary files a/img/clothes/lower/dolphinshorts/frayed_gray.png and b/img/clothes/lower/dolphinshorts/frayed_gray.png differ
diff --git a/img/clothes/lower/dolphinshorts/full_gray.png b/img/clothes/lower/dolphinshorts/full_gray.png
index 1e498e201c825a1d490b787a074b6acf0472af87..ed71f6b7e9292b6b96436471070746b05a7fdf6d 100644
Binary files a/img/clothes/lower/dolphinshorts/full_gray.png and b/img/clothes/lower/dolphinshorts/full_gray.png differ
diff --git a/img/clothes/lower/dolphinshorts/tattered_gray.png b/img/clothes/lower/dolphinshorts/tattered_gray.png
index b177e72ad138f077cfa214378b32f86811cebe03..b1b8cb4dad77ad4e55682f7839bf0190a68123f8 100644
Binary files a/img/clothes/lower/dolphinshorts/tattered_gray.png and b/img/clothes/lower/dolphinshorts/tattered_gray.png differ
diff --git a/img/clothes/lower/dolphinshorts/torn_gray.png b/img/clothes/lower/dolphinshorts/torn_gray.png
index b58e2f92be749561ca63df102d7a7530cb1a1174..285b763fc17a44f2bac777e0b73c2af068ecacd0 100644
Binary files a/img/clothes/lower/dolphinshorts/torn_gray.png and b/img/clothes/lower/dolphinshorts/torn_gray.png differ
diff --git a/img/clothes/lower/drowneddress/acc.png b/img/clothes/lower/drowneddress/acc.png
index f3ffb0703026620451fdc88775bf36841fd26fc9..b97b3395c871a1d36f7059563636e1b6f101031d 100644
Binary files a/img/clothes/lower/drowneddress/acc.png and b/img/clothes/lower/drowneddress/acc.png differ
diff --git a/img/clothes/lower/drowneddress/frayed.png b/img/clothes/lower/drowneddress/frayed.png
index 1ff1f912e4e8afaf80c1cfe782bc0fb899e2a822..d7eac12d626cb31a0c718d5b5d58c5e8c92a6845 100644
Binary files a/img/clothes/lower/drowneddress/frayed.png and b/img/clothes/lower/drowneddress/frayed.png differ
diff --git a/img/clothes/lower/drowneddress/full.png b/img/clothes/lower/drowneddress/full.png
index 1ff1f912e4e8afaf80c1cfe782bc0fb899e2a822..d7eac12d626cb31a0c718d5b5d58c5e8c92a6845 100644
Binary files a/img/clothes/lower/drowneddress/full.png and b/img/clothes/lower/drowneddress/full.png differ
diff --git a/img/clothes/lower/drowneddress/tattered.png b/img/clothes/lower/drowneddress/tattered.png
index 386d87f37d37a573a4f591828d6abedf18412880..29bded52cc7bad29804ea3e0e9bef8de40bdd342 100644
Binary files a/img/clothes/lower/drowneddress/tattered.png and b/img/clothes/lower/drowneddress/tattered.png differ
diff --git a/img/clothes/lower/drowneddress/torn.png b/img/clothes/lower/drowneddress/torn.png
index 1ff1f912e4e8afaf80c1cfe782bc0fb899e2a822..d7eac12d626cb31a0c718d5b5d58c5e8c92a6845 100644
Binary files a/img/clothes/lower/drowneddress/torn.png and b/img/clothes/lower/drowneddress/torn.png differ
diff --git a/img/clothes/lower/eveninggown/frayed_gray.png b/img/clothes/lower/eveninggown/frayed_gray.png
index 0f08bab7dfc8605b6d403ea2708798be8fb2856e..cb0beeaecd2dc6620fb57f06dce6d1e848334686 100644
Binary files a/img/clothes/lower/eveninggown/frayed_gray.png and b/img/clothes/lower/eveninggown/frayed_gray.png differ
diff --git a/img/clothes/lower/eveninggown/full_gray.png b/img/clothes/lower/eveninggown/full_gray.png
index ed7908f214735c3e534e05cfeb9a6909fde6e695..97c72ac5006485e7e6cbbab80445899f0589d220 100644
Binary files a/img/clothes/lower/eveninggown/full_gray.png and b/img/clothes/lower/eveninggown/full_gray.png differ
diff --git a/img/clothes/lower/eveninggown/tattered_gray.png b/img/clothes/lower/eveninggown/tattered_gray.png
index 5e26abde7fdc71352154ea452e54594164be181d..0d4621c339e2bdb5e15bad3d448c54b2e8dd91ad 100644
Binary files a/img/clothes/lower/eveninggown/tattered_gray.png and b/img/clothes/lower/eveninggown/tattered_gray.png differ
diff --git a/img/clothes/lower/eveninggown/torn_gray.png b/img/clothes/lower/eveninggown/torn_gray.png
index 9dcdc692b0ee480ca7364d1d1348bf032c60f3b9..803ba0626e9aece5527ae261078571faf33f5363 100644
Binary files a/img/clothes/lower/eveninggown/torn_gray.png and b/img/clothes/lower/eveninggown/torn_gray.png differ
diff --git a/img/clothes/lower/football/frayed_gray.png b/img/clothes/lower/football/frayed_gray.png
index d0b34b589c1b91d88759d4b5154513a98c5f9df6..572fa7b282dd8433d0b0d343972277228f3a530e 100644
Binary files a/img/clothes/lower/football/frayed_gray.png and b/img/clothes/lower/football/frayed_gray.png differ
diff --git a/img/clothes/lower/football/full_gray.png b/img/clothes/lower/football/full_gray.png
index 5a577284e1fb35269c315edbd7d0f25dc58c1162..a3a9e1a2e0147cf8c9505d1fc2a10df7afedb079 100644
Binary files a/img/clothes/lower/football/full_gray.png and b/img/clothes/lower/football/full_gray.png differ
diff --git a/img/clothes/lower/football/tattered_gray.png b/img/clothes/lower/football/tattered_gray.png
index 63e4ef0dff9e30a89f1ce6cda4b631508a2d3aa8..b0c27ed8e9668264052899b0e00908ca0b419d0c 100644
Binary files a/img/clothes/lower/football/tattered_gray.png and b/img/clothes/lower/football/tattered_gray.png differ
diff --git a/img/clothes/lower/football/torn_gray.png b/img/clothes/lower/football/torn_gray.png
index 493bfecf0ff5389dc9b6b807d0c913e5746924fa..0ba76a96bc44539f38ec3fee8b0a678effe1877b 100644
Binary files a/img/clothes/lower/football/torn_gray.png and b/img/clothes/lower/football/torn_gray.png differ
diff --git a/img/clothes/lower/futuresuit/acc_frayed_gray.png b/img/clothes/lower/futuresuit/acc_frayed_gray.png
index 13f5c250a11f0bbe86f084ef321f8df35e08be93..5992a3f77a54b9c686c669d20f29b3f7bc49d0f1 100644
Binary files a/img/clothes/lower/futuresuit/acc_frayed_gray.png and b/img/clothes/lower/futuresuit/acc_frayed_gray.png differ
diff --git a/img/clothes/lower/futuresuit/acc_full_gray.png b/img/clothes/lower/futuresuit/acc_full_gray.png
index be589041002980aeca2f78228378fe4a3855f52a..fadd8bec011579c9ef85ff0eab0b55a4c997154b 100644
Binary files a/img/clothes/lower/futuresuit/acc_full_gray.png and b/img/clothes/lower/futuresuit/acc_full_gray.png differ
diff --git a/img/clothes/lower/futuresuit/acc_tattered_gray.png b/img/clothes/lower/futuresuit/acc_tattered_gray.png
index 057a4376be92260b2a52fae31d6ba2284b7828e0..e364f049289f699e3251edc2c07e0ee04be2955a 100644
Binary files a/img/clothes/lower/futuresuit/acc_tattered_gray.png and b/img/clothes/lower/futuresuit/acc_tattered_gray.png differ
diff --git a/img/clothes/lower/futuresuit/acc_torn_gray.png b/img/clothes/lower/futuresuit/acc_torn_gray.png
index 4a94226189b48433ef2db215e228f443a389ea27..61406a8764ead0c43286335d3424f2dee893eedd 100644
Binary files a/img/clothes/lower/futuresuit/acc_torn_gray.png and b/img/clothes/lower/futuresuit/acc_torn_gray.png differ
diff --git a/img/clothes/lower/futuresuit/frayed_gray.png b/img/clothes/lower/futuresuit/frayed_gray.png
index 03b0e2f65633e0b3c99a2df7792a26f41d60655c..105a7fe9f0b745d38c4eae3ed214f47605d8cf05 100644
Binary files a/img/clothes/lower/futuresuit/frayed_gray.png and b/img/clothes/lower/futuresuit/frayed_gray.png differ
diff --git a/img/clothes/lower/futuresuit/full_gray.png b/img/clothes/lower/futuresuit/full_gray.png
index 03b0e2f65633e0b3c99a2df7792a26f41d60655c..105a7fe9f0b745d38c4eae3ed214f47605d8cf05 100644
Binary files a/img/clothes/lower/futuresuit/full_gray.png and b/img/clothes/lower/futuresuit/full_gray.png differ
diff --git a/img/clothes/lower/futuresuit/tattered_gray.png b/img/clothes/lower/futuresuit/tattered_gray.png
index 03b0e2f65633e0b3c99a2df7792a26f41d60655c..105a7fe9f0b745d38c4eae3ed214f47605d8cf05 100644
Binary files a/img/clothes/lower/futuresuit/tattered_gray.png and b/img/clothes/lower/futuresuit/tattered_gray.png differ
diff --git a/img/clothes/lower/futuresuit/torn_gray.png b/img/clothes/lower/futuresuit/torn_gray.png
index 03b0e2f65633e0b3c99a2df7792a26f41d60655c..105a7fe9f0b745d38c4eae3ed214f47605d8cf05 100644
Binary files a/img/clothes/lower/futuresuit/torn_gray.png and b/img/clothes/lower/futuresuit/torn_gray.png differ
diff --git a/img/clothes/lower/gingham/acc_frayed.png b/img/clothes/lower/gingham/acc_frayed.png
index 3f145faa14888b2934aa500002c7ef85ab0ee6db..20170e96b09f65dc74a64232a82406244dd562f2 100644
Binary files a/img/clothes/lower/gingham/acc_frayed.png and b/img/clothes/lower/gingham/acc_frayed.png differ
diff --git a/img/clothes/lower/gingham/acc_full.png b/img/clothes/lower/gingham/acc_full.png
index 2a48396928562f9e53f0a87ece8d504529732185..128aa22eadfacb79854bc6ee0a8ed88c38c3cdec 100644
Binary files a/img/clothes/lower/gingham/acc_full.png and b/img/clothes/lower/gingham/acc_full.png differ
diff --git a/img/clothes/lower/gingham/acc_tattered.png b/img/clothes/lower/gingham/acc_tattered.png
index 66953c7eaf83bb1d52a224d6a2ff705045efb177..690c36dfcdf446730c13e6ea9f002ec9912aadf0 100644
Binary files a/img/clothes/lower/gingham/acc_tattered.png and b/img/clothes/lower/gingham/acc_tattered.png differ
diff --git a/img/clothes/lower/gingham/acc_torn.png b/img/clothes/lower/gingham/acc_torn.png
index 9e57cc2f217a0e4020cc6b80da78b673cb1c4608..81c1db042b6529b5237ff0ce5c426c491139dee7 100644
Binary files a/img/clothes/lower/gingham/acc_torn.png and b/img/clothes/lower/gingham/acc_torn.png differ
diff --git a/img/clothes/lower/gingham/frayed_gray.png b/img/clothes/lower/gingham/frayed_gray.png
index 18e69e5f2fc4956a711e40c585b85d65f79c68b5..8fa7971013e4ba33b864d0cedfd48402bb76f5b2 100644
Binary files a/img/clothes/lower/gingham/frayed_gray.png and b/img/clothes/lower/gingham/frayed_gray.png differ
diff --git a/img/clothes/lower/gingham/full_gray.png b/img/clothes/lower/gingham/full_gray.png
index 834bf6885506b8510342394568943cc0729659c7..6f865b3ac4b01c120a416e5f4473a040c67ca2a9 100644
Binary files a/img/clothes/lower/gingham/full_gray.png and b/img/clothes/lower/gingham/full_gray.png differ
diff --git a/img/clothes/lower/gingham/tattered_gray.png b/img/clothes/lower/gingham/tattered_gray.png
index 4698eb9ed0ead921885fda73c3edeb4ac7b5693c..9fe5bc2d1d97737219b54cef97c7c3688bf6cfac 100644
Binary files a/img/clothes/lower/gingham/tattered_gray.png and b/img/clothes/lower/gingham/tattered_gray.png differ
diff --git a/img/clothes/lower/gingham/torn_gray.png b/img/clothes/lower/gingham/torn_gray.png
index f5810454c57aa6884ad54014f2689a59c1578bbe..46ce37b3bc9a6940490cdffef494b6b17b88b78c 100644
Binary files a/img/clothes/lower/gingham/torn_gray.png and b/img/clothes/lower/gingham/torn_gray.png differ
diff --git a/img/clothes/lower/gothic/acc_frayed.png b/img/clothes/lower/gothic/acc_frayed.png
index 7d25c15726a2676c4e8b2b221b3e7c1e331df08b..e0d4837890d3d9000668008821a2a0b7b3e3f8ee 100644
Binary files a/img/clothes/lower/gothic/acc_frayed.png and b/img/clothes/lower/gothic/acc_frayed.png differ
diff --git a/img/clothes/lower/gothic/acc_full.png b/img/clothes/lower/gothic/acc_full.png
index 003fb145b98754b45905cae681ec6624c246dd30..2a65d2a1843000e8debbc65e014dca25d5d97795 100644
Binary files a/img/clothes/lower/gothic/acc_full.png and b/img/clothes/lower/gothic/acc_full.png differ
diff --git a/img/clothes/lower/gothic/acc_tattered.png b/img/clothes/lower/gothic/acc_tattered.png
index 48138ca9c7203e3c8e02debdde1e4cb0b544df47..04d19e0766f92dbcf04fd911afb9b6b72f4d4605 100644
Binary files a/img/clothes/lower/gothic/acc_tattered.png and b/img/clothes/lower/gothic/acc_tattered.png differ
diff --git a/img/clothes/lower/gothic/acc_torn.png b/img/clothes/lower/gothic/acc_torn.png
index c8ad6bbc9da3170c47476357ef62ac3a7672e21f..6edde346331c548a01c8855768183271ffc97c98 100644
Binary files a/img/clothes/lower/gothic/acc_torn.png and b/img/clothes/lower/gothic/acc_torn.png differ
diff --git a/img/clothes/lower/gothic/frayed_gray.png b/img/clothes/lower/gothic/frayed_gray.png
index f9b6fb4a751111a208894a92cb333b5a144efb9c..63ac376c5f67a85c17ff540b0426f45e647a2fd9 100644
Binary files a/img/clothes/lower/gothic/frayed_gray.png and b/img/clothes/lower/gothic/frayed_gray.png differ
diff --git a/img/clothes/lower/gothic/full_gray.png b/img/clothes/lower/gothic/full_gray.png
index cd16bb116c416145791efdbb3c90c1f962ce7674..5b3f496cca299fe7acbbf39d9740b7f7ff3018d5 100644
Binary files a/img/clothes/lower/gothic/full_gray.png and b/img/clothes/lower/gothic/full_gray.png differ
diff --git a/img/clothes/lower/gothic/tattered_gray.png b/img/clothes/lower/gothic/tattered_gray.png
index 5fb49a64acbc76e17424674f9fe571169e31ac0c..cc23a4d1a90f72cf7ec068cfbc3dcaa068a39192 100644
Binary files a/img/clothes/lower/gothic/tattered_gray.png and b/img/clothes/lower/gothic/tattered_gray.png differ
diff --git a/img/clothes/lower/gothic/torn_gray.png b/img/clothes/lower/gothic/torn_gray.png
index 5f6b444f035aadd8b75137550099a71530ad9a6d..2c37f6608f2eab06a358c30979717edda8c68e35 100644
Binary files a/img/clothes/lower/gothic/torn_gray.png and b/img/clothes/lower/gothic/torn_gray.png differ
diff --git a/img/clothes/lower/gothicold/frayed_gray.png b/img/clothes/lower/gothicold/frayed_gray.png
index 122e3904b8774c027e4ea7efd48cda28299182b8..cb4e3bc3f0084338c09cc459ac866799d0cd06b9 100644
Binary files a/img/clothes/lower/gothicold/frayed_gray.png and b/img/clothes/lower/gothicold/frayed_gray.png differ
diff --git a/img/clothes/lower/gothicold/full_gray.png b/img/clothes/lower/gothicold/full_gray.png
index 95ea70b9881102c1a551cc3d46ac3034cf01e9a5..a30c2f9bb93452f5253127ea6640662019aac80a 100644
Binary files a/img/clothes/lower/gothicold/full_gray.png and b/img/clothes/lower/gothicold/full_gray.png differ
diff --git a/img/clothes/lower/gothicold/tattered_gray.png b/img/clothes/lower/gothicold/tattered_gray.png
index 08bf1d85ff75ea2affcd403c69b7fd697974cd91..b94a03222d348f1c3723d0edd5707580c26ead55 100644
Binary files a/img/clothes/lower/gothicold/tattered_gray.png and b/img/clothes/lower/gothicold/tattered_gray.png differ
diff --git a/img/clothes/lower/gothicold/torn_gray.png b/img/clothes/lower/gothicold/torn_gray.png
index 263c50e919626c863c0bb52f3198e4fd7feb925d..fbb4ecaa4a91a2b3c7f5cdc187753e0771cb0616 100644
Binary files a/img/clothes/lower/gothicold/torn_gray.png and b/img/clothes/lower/gothicold/torn_gray.png differ
diff --git a/img/clothes/lower/gothictrousers/frayed.png b/img/clothes/lower/gothictrousers/frayed.png
index 5b37dc924c8ea223076d8795da3fdcaba3525a25..adfd23d45d0130a9a5474b0b05ecde362c5d8cc3 100644
Binary files a/img/clothes/lower/gothictrousers/frayed.png and b/img/clothes/lower/gothictrousers/frayed.png differ
diff --git a/img/clothes/lower/gothictrousers/full.png b/img/clothes/lower/gothictrousers/full.png
index d926bdfab7641f81a2c1fd4247cc072e0620cf77..e6ab9f50b9d61bab76ca2a18c83d7dbce3cc2790 100644
Binary files a/img/clothes/lower/gothictrousers/full.png and b/img/clothes/lower/gothictrousers/full.png differ
diff --git a/img/clothes/lower/gothictrousers/tattered.png b/img/clothes/lower/gothictrousers/tattered.png
index 37c3ecf7f951c1bc7300134703d77f0a8e90c02e..54c47d31aca3828794b1a7cd62559d7475f453ea 100644
Binary files a/img/clothes/lower/gothictrousers/tattered.png and b/img/clothes/lower/gothictrousers/tattered.png differ
diff --git a/img/clothes/lower/gothictrousers/torn.png b/img/clothes/lower/gothictrousers/torn.png
index 72ae19e8de3edbbe4cf4c3c7137b41f52903296d..3d68cdb61f21b31c20de0754197331bf96981515 100644
Binary files a/img/clothes/lower/gothictrousers/torn.png and b/img/clothes/lower/gothictrousers/torn.png differ
diff --git a/img/clothes/lower/gymbloomers/frayed_gray.png b/img/clothes/lower/gymbloomers/frayed_gray.png
index 9b54e0919d3b6567977cc5647e65abbe87833f98..7bfe1a34527a35ccfefe0d59ca3ad3e15b07d2c9 100644
Binary files a/img/clothes/lower/gymbloomers/frayed_gray.png and b/img/clothes/lower/gymbloomers/frayed_gray.png differ
diff --git a/img/clothes/lower/gymbloomers/full_gray.png b/img/clothes/lower/gymbloomers/full_gray.png
index 73150034574c8412d72be84a2bf1408bbb047369..481bf44f0df088d57e5ac91a9aa47bb1da146672 100644
Binary files a/img/clothes/lower/gymbloomers/full_gray.png and b/img/clothes/lower/gymbloomers/full_gray.png differ
diff --git a/img/clothes/lower/gymbloomers/tattered_gray.png b/img/clothes/lower/gymbloomers/tattered_gray.png
index 479c81872b8d4b0a398b33331eac46f120abe260..5b1c1dc80a443da9e7ee22c815e807efa61193d3 100644
Binary files a/img/clothes/lower/gymbloomers/tattered_gray.png and b/img/clothes/lower/gymbloomers/tattered_gray.png differ
diff --git a/img/clothes/lower/gymbloomers/torn_gray.png b/img/clothes/lower/gymbloomers/torn_gray.png
index b1f8a5e55c162d4f9ba215fe7bf6d21fdf3c7f7d..6bf02b926abbf19bf17d4ca37d332b957ce90d77 100644
Binary files a/img/clothes/lower/gymbloomers/torn_gray.png and b/img/clothes/lower/gymbloomers/torn_gray.png differ
diff --git a/img/clothes/lower/gymshorts/frayed_gray.png b/img/clothes/lower/gymshorts/frayed_gray.png
index ba9c8b28bfefa2291fe9864c31c9355dce1f3f28..954871fc5d0a2126de96a5a2473968d0dc57f54e 100644
Binary files a/img/clothes/lower/gymshorts/frayed_gray.png and b/img/clothes/lower/gymshorts/frayed_gray.png differ
diff --git a/img/clothes/lower/gymshorts/full_gray.png b/img/clothes/lower/gymshorts/full_gray.png
index ef6f18263e888057a1a25881dddc27f79530380b..551d7f512261693e3ff097d9bb964f62ab30dbb8 100644
Binary files a/img/clothes/lower/gymshorts/full_gray.png and b/img/clothes/lower/gymshorts/full_gray.png differ
diff --git a/img/clothes/lower/gymshorts/tattered_gray.png b/img/clothes/lower/gymshorts/tattered_gray.png
index 99d81b6d9792a7b576ab5e07e7eae2a880c96695..693f92c0d48af7723ddb82e06937b92de26cb2ef 100644
Binary files a/img/clothes/lower/gymshorts/tattered_gray.png and b/img/clothes/lower/gymshorts/tattered_gray.png differ
diff --git a/img/clothes/lower/gymshorts/torn_gray.png b/img/clothes/lower/gymshorts/torn_gray.png
index 14076057bccd5a9145df97af98f990f867481fe8..dbbe453ebb4631a8428860199e36a42bd632d4be 100644
Binary files a/img/clothes/lower/gymshorts/torn_gray.png and b/img/clothes/lower/gymshorts/torn_gray.png differ
diff --git a/img/clothes/lower/haltersundress/frayed_gray.png b/img/clothes/lower/haltersundress/frayed_gray.png
index 78073af61665a03b2d3a617383ff7c9a85d04019..9757a528ba39db3a523f600ff4b838c40a03c6f9 100644
Binary files a/img/clothes/lower/haltersundress/frayed_gray.png and b/img/clothes/lower/haltersundress/frayed_gray.png differ
diff --git a/img/clothes/lower/haltersundress/full_gray.png b/img/clothes/lower/haltersundress/full_gray.png
index 372004972e1b4428fda16d7e3d3a0a61d7f9123c..6a18bee42e9f0c6f0f76e725b53264130ed3b299 100644
Binary files a/img/clothes/lower/haltersundress/full_gray.png and b/img/clothes/lower/haltersundress/full_gray.png differ
diff --git a/img/clothes/lower/haltersundress/tattered_gray.png b/img/clothes/lower/haltersundress/tattered_gray.png
index f9feb593628a23a71bc9bcfa4a276ce3cbc5a856..383e678b525dad95c2d521fa34bc41ff5a8fb792 100644
Binary files a/img/clothes/lower/haltersundress/tattered_gray.png and b/img/clothes/lower/haltersundress/tattered_gray.png differ
diff --git a/img/clothes/lower/haltersundress/torn_gray.png b/img/clothes/lower/haltersundress/torn_gray.png
index 94ad3fff0d845ae6cd84cd7f0250c80e6deb1c33..06b3d05597a3f55f00213935a5670990cf247806 100644
Binary files a/img/clothes/lower/haltersundress/torn_gray.png and b/img/clothes/lower/haltersundress/torn_gray.png differ
diff --git a/img/clothes/lower/hanfu/acc_gray.png b/img/clothes/lower/hanfu/acc_gray.png
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/lower/hanfu/acc_gray.png and b/img/clothes/lower/hanfu/acc_gray.png differ
diff --git a/img/clothes/lower/hanfu/frayed_gray.png b/img/clothes/lower/hanfu/frayed_gray.png
index eacae588e374076ffe150781f625c0c20211ee3e..88c16dcf2be6c1173948c001f93402cd26274f86 100644
Binary files a/img/clothes/lower/hanfu/frayed_gray.png and b/img/clothes/lower/hanfu/frayed_gray.png differ
diff --git a/img/clothes/lower/hanfu/full_gray.png b/img/clothes/lower/hanfu/full_gray.png
index 3d0ded3e98be53aad0f4bee78d24140bdf47d362..fba5ea34992ecaa9f05a7f3200acbe800d7ce37b 100644
Binary files a/img/clothes/lower/hanfu/full_gray.png and b/img/clothes/lower/hanfu/full_gray.png differ
diff --git a/img/clothes/lower/hanfu/tattered_gray.png b/img/clothes/lower/hanfu/tattered_gray.png
index 6b9e8eb6a3634bfefafbe566aca5090f5fe7ebe3..62c1653558abb8c23cd43a9391c06572d17dcc85 100644
Binary files a/img/clothes/lower/hanfu/tattered_gray.png and b/img/clothes/lower/hanfu/tattered_gray.png differ
diff --git a/img/clothes/lower/hanfu/torn_gray.png b/img/clothes/lower/hanfu/torn_gray.png
index f96dc9d01c70967a0c445d49939c924db5aed2e0..597316e94fab6fd8583ceb69aabe6dd717279dc8 100644
Binary files a/img/clothes/lower/hanfu/torn_gray.png and b/img/clothes/lower/hanfu/torn_gray.png differ
diff --git a/img/clothes/lower/harempants/frayed_gray.png b/img/clothes/lower/harempants/frayed_gray.png
index 044f2c344871c37dd5d23b7a1307b72139582c83..39dfa922bd8e767a3e559002c46a46e35d92aa00 100644
Binary files a/img/clothes/lower/harempants/frayed_gray.png and b/img/clothes/lower/harempants/frayed_gray.png differ
diff --git a/img/clothes/lower/harempants/full_gray.png b/img/clothes/lower/harempants/full_gray.png
index 325387280ab7277fe0fdd97299825733fd57e683..2d8f68c6c1be0c40c98ca9ed32dd1024beda65f1 100644
Binary files a/img/clothes/lower/harempants/full_gray.png and b/img/clothes/lower/harempants/full_gray.png differ
diff --git a/img/clothes/lower/harempants/tattered_gray.png b/img/clothes/lower/harempants/tattered_gray.png
index b37dcdf7f5958617e732650d71364eb92fe0f2b8..6ea866d13d306d2410a02e5c48816d1f676bd086 100644
Binary files a/img/clothes/lower/harempants/tattered_gray.png and b/img/clothes/lower/harempants/tattered_gray.png differ
diff --git a/img/clothes/lower/harempants/torn_gray.png b/img/clothes/lower/harempants/torn_gray.png
index 686024c69ba973451785a55c794917729674b855..8dc19635b1aa803ec6b9aff7149c34e0111f748e 100644
Binary files a/img/clothes/lower/harempants/torn_gray.png and b/img/clothes/lower/harempants/torn_gray.png differ
diff --git a/img/clothes/lower/highwaistedskirt/frayed_gray.png b/img/clothes/lower/highwaistedskirt/frayed_gray.png
index 09f2f2ac12e1238c3b0cfdea1d3ade3691765343..ac1f3c3ca1cab67de9fc7099f98216bc0854a92b 100644
Binary files a/img/clothes/lower/highwaistedskirt/frayed_gray.png and b/img/clothes/lower/highwaistedskirt/frayed_gray.png differ
diff --git a/img/clothes/lower/highwaistedskirt/full_gray.png b/img/clothes/lower/highwaistedskirt/full_gray.png
index 0718ba8480b1502dce7fb1a966df80434ecadba4..e56c22f55fece956f1a8d27f0415434da3f71abf 100644
Binary files a/img/clothes/lower/highwaistedskirt/full_gray.png and b/img/clothes/lower/highwaistedskirt/full_gray.png differ
diff --git a/img/clothes/lower/highwaistedskirt/tattered_gray.png b/img/clothes/lower/highwaistedskirt/tattered_gray.png
index e236182c148daefd494d938bf0a040a1d0065b7c..ff0c0759bdaa026e046c252ae72fa061b5c6ad93 100644
Binary files a/img/clothes/lower/highwaistedskirt/tattered_gray.png and b/img/clothes/lower/highwaistedskirt/tattered_gray.png differ
diff --git a/img/clothes/lower/highwaistedskirt/torn_gray.png b/img/clothes/lower/highwaistedskirt/torn_gray.png
index e236182c148daefd494d938bf0a040a1d0065b7c..ff0c0759bdaa026e046c252ae72fa061b5c6ad93 100644
Binary files a/img/clothes/lower/highwaistedskirt/torn_gray.png and b/img/clothes/lower/highwaistedskirt/torn_gray.png differ
diff --git a/img/clothes/lower/jean miniskirt/frayed_gray.png b/img/clothes/lower/jean miniskirt/frayed_gray.png
index 33c3b29233332e7cd40bbb5e03195432e2f170a9..068fc8107f16fa602e7af845bc8a289bb2cda9d5 100644
Binary files a/img/clothes/lower/jean miniskirt/frayed_gray.png and b/img/clothes/lower/jean miniskirt/frayed_gray.png differ
diff --git a/img/clothes/lower/jean miniskirt/full_gray.png b/img/clothes/lower/jean miniskirt/full_gray.png
index 982d7bab0baf9fd8732a157d640748bb1ecd1cfb..4ed73b5eae5c546d7f9a78142efa601c321d0366 100644
Binary files a/img/clothes/lower/jean miniskirt/full_gray.png and b/img/clothes/lower/jean miniskirt/full_gray.png differ
diff --git a/img/clothes/lower/jean miniskirt/tattered_gray.png b/img/clothes/lower/jean miniskirt/tattered_gray.png
index 0a9529658c09a839b6e2700299b0e4b3ccbdca30..4477eb8d27f7c5e64315c3a9b5be8ce46e20c1c7 100644
Binary files a/img/clothes/lower/jean miniskirt/tattered_gray.png and b/img/clothes/lower/jean miniskirt/tattered_gray.png differ
diff --git a/img/clothes/lower/jean miniskirt/torn_gray.png b/img/clothes/lower/jean miniskirt/torn_gray.png
index 985a19cb2d223cd533e8dd707683632359364477..b30b63bd2ce01bb5dd3aaf118991c24bf0cdfc6d 100644
Binary files a/img/clothes/lower/jean miniskirt/torn_gray.png and b/img/clothes/lower/jean miniskirt/torn_gray.png differ
diff --git a/img/clothes/lower/jeans/frayed_gray.png b/img/clothes/lower/jeans/frayed_gray.png
index 8552fd1382f13a854e6553d794e0c4fbd984dfe5..1563b2aa71a377f1ab3ba462c923538b4e40c023 100644
Binary files a/img/clothes/lower/jeans/frayed_gray.png and b/img/clothes/lower/jeans/frayed_gray.png differ
diff --git a/img/clothes/lower/jeans/full_gray.png b/img/clothes/lower/jeans/full_gray.png
index 06e87f6f68be9b82a301cc7475c64ab86a218131..9820e35b9d56c041e3af32c7f587e18ae4d3d311 100644
Binary files a/img/clothes/lower/jeans/full_gray.png and b/img/clothes/lower/jeans/full_gray.png differ
diff --git a/img/clothes/lower/jeans/tattered_gray.png b/img/clothes/lower/jeans/tattered_gray.png
index 25ea0e1ab54654ea0aa809387fcb37cab4494668..b8e25b7119e46ee6cea2d2d6b24464e9c40f8d86 100644
Binary files a/img/clothes/lower/jeans/tattered_gray.png and b/img/clothes/lower/jeans/tattered_gray.png differ
diff --git a/img/clothes/lower/jeans/torn_gray.png b/img/clothes/lower/jeans/torn_gray.png
index 64ebb49a641334e39d49f72117de97d2a1fca6d0..b16aa4128fdb722da60a99b246506a6b7e85d0bc 100644
Binary files a/img/clothes/lower/jeans/torn_gray.png and b/img/clothes/lower/jeans/torn_gray.png differ
diff --git a/img/clothes/lower/jingledress/frayed.png b/img/clothes/lower/jingledress/frayed.png
index 2444c57f19d3295ce3bb7204df32c56acc5ecad4..7ef744a2805b7fc1a4386c452d498cd0874f82c8 100644
Binary files a/img/clothes/lower/jingledress/frayed.png and b/img/clothes/lower/jingledress/frayed.png differ
diff --git a/img/clothes/lower/jingledress/full.png b/img/clothes/lower/jingledress/full.png
index 075e28df14c6a401af9cae9d9b50e3b54c685a24..5c687becfb3a73e2acb32c9c21467de0a4597c81 100644
Binary files a/img/clothes/lower/jingledress/full.png and b/img/clothes/lower/jingledress/full.png differ
diff --git a/img/clothes/lower/jingledress/tattered.png b/img/clothes/lower/jingledress/tattered.png
index 80ffa5de4d50fd27a4a7c16aae2d1ebdd92db5fd..9c948af5f9ac6999803fb24d3005a6c10a4c5b65 100644
Binary files a/img/clothes/lower/jingledress/tattered.png and b/img/clothes/lower/jingledress/tattered.png differ
diff --git a/img/clothes/lower/jingledress/torn.png b/img/clothes/lower/jingledress/torn.png
index 51b68ca89bff40dbb86ddebc608fbb1ecd873342..c4809bd40f1268c91861367ea082333f3d591bf7 100644
Binary files a/img/clothes/lower/jingledress/torn.png and b/img/clothes/lower/jingledress/torn.png differ
diff --git a/img/clothes/lower/jingledresssleeveless/frayed.png b/img/clothes/lower/jingledresssleeveless/frayed.png
index 2444c57f19d3295ce3bb7204df32c56acc5ecad4..7ef744a2805b7fc1a4386c452d498cd0874f82c8 100644
Binary files a/img/clothes/lower/jingledresssleeveless/frayed.png and b/img/clothes/lower/jingledresssleeveless/frayed.png differ
diff --git a/img/clothes/lower/jingledresssleeveless/full.png b/img/clothes/lower/jingledresssleeveless/full.png
index 075e28df14c6a401af9cae9d9b50e3b54c685a24..5c687becfb3a73e2acb32c9c21467de0a4597c81 100644
Binary files a/img/clothes/lower/jingledresssleeveless/full.png and b/img/clothes/lower/jingledresssleeveless/full.png differ
diff --git a/img/clothes/lower/jingledresssleeveless/tattered.png b/img/clothes/lower/jingledresssleeveless/tattered.png
index 80ffa5de4d50fd27a4a7c16aae2d1ebdd92db5fd..9c948af5f9ac6999803fb24d3005a6c10a4c5b65 100644
Binary files a/img/clothes/lower/jingledresssleeveless/tattered.png and b/img/clothes/lower/jingledresssleeveless/tattered.png differ
diff --git a/img/clothes/lower/jingledresssleeveless/torn.png b/img/clothes/lower/jingledresssleeveless/torn.png
index 51b68ca89bff40dbb86ddebc608fbb1ecd873342..c4809bd40f1268c91861367ea082333f3d591bf7 100644
Binary files a/img/clothes/lower/jingledresssleeveless/torn.png and b/img/clothes/lower/jingledresssleeveless/torn.png differ
diff --git a/img/clothes/lower/jorts/frayed_gray.png b/img/clothes/lower/jorts/frayed_gray.png
index 64bc7675f41d733dda9c1959642a1ea0032acced..89134a6b5e914dce69caf4ba47e314e94e6af809 100644
Binary files a/img/clothes/lower/jorts/frayed_gray.png and b/img/clothes/lower/jorts/frayed_gray.png differ
diff --git a/img/clothes/lower/jorts/full_gray.png b/img/clothes/lower/jorts/full_gray.png
index eb517cc91ef4e0d8542ecaf36f5cc61bc3fd58b6..0d1f6735f129d5b7ffde7edde19e127ab3d8b935 100644
Binary files a/img/clothes/lower/jorts/full_gray.png and b/img/clothes/lower/jorts/full_gray.png differ
diff --git a/img/clothes/lower/jorts/tattered_gray.png b/img/clothes/lower/jorts/tattered_gray.png
index c08a1c86f8d0285c7573c8e653345ddf0779f301..5af9f7874ad135fc26193a6e892ce652fb0acb53 100644
Binary files a/img/clothes/lower/jorts/tattered_gray.png and b/img/clothes/lower/jorts/tattered_gray.png differ
diff --git a/img/clothes/lower/jorts/torn_gray.png b/img/clothes/lower/jorts/torn_gray.png
index 3cc1361bcd9fff4a31b24f012ff457163b1da912..d7e9888d7ae6bfba97e996032a51f1e479824c73 100644
Binary files a/img/clothes/lower/jorts/torn_gray.png and b/img/clothes/lower/jorts/torn_gray.png differ
diff --git a/img/clothes/lower/jumpsuit/frayed.png b/img/clothes/lower/jumpsuit/frayed.png
index b26deb74b488b870feb7817a80c0b4110ae6fb4b..3efdbd26e80f98efd5704692dbea3163f22a9c04 100644
Binary files a/img/clothes/lower/jumpsuit/frayed.png and b/img/clothes/lower/jumpsuit/frayed.png differ
diff --git a/img/clothes/lower/jumpsuit/full.png b/img/clothes/lower/jumpsuit/full.png
index bc5a2e61d3d13484d898f8024f6bd2631568e8c4..68070be6192b06035b6b5e34686a635205b43e5e 100644
Binary files a/img/clothes/lower/jumpsuit/full.png and b/img/clothes/lower/jumpsuit/full.png differ
diff --git a/img/clothes/lower/jumpsuit/tattered.png b/img/clothes/lower/jumpsuit/tattered.png
index 4030803c0a2b7c01ac87ed7e9e5c82a0116f8393..98798e22e4641715ce79b78ba353c4287ccdc0df 100644
Binary files a/img/clothes/lower/jumpsuit/tattered.png and b/img/clothes/lower/jumpsuit/tattered.png differ
diff --git a/img/clothes/lower/jumpsuit/torn.png b/img/clothes/lower/jumpsuit/torn.png
index 97be42c77a19de60dc69c87e3d8a08d5ae05877d..ee053b04fdb458e684d43fd7fa4991b1b3fee94f 100644
Binary files a/img/clothes/lower/jumpsuit/torn.png and b/img/clothes/lower/jumpsuit/torn.png differ
diff --git a/img/clothes/lower/jumpsuitstylish/frayed_gray.png b/img/clothes/lower/jumpsuitstylish/frayed_gray.png
index ad2044eb4bdf83b3df2a3aacc6ea8b793735c155..9922393e190223f3d94afecb39f5446cc886fa0e 100644
Binary files a/img/clothes/lower/jumpsuitstylish/frayed_gray.png and b/img/clothes/lower/jumpsuitstylish/frayed_gray.png differ
diff --git a/img/clothes/lower/jumpsuitstylish/full_gray.png b/img/clothes/lower/jumpsuitstylish/full_gray.png
index b8ff849476cd53aa3902c856f5a4179d2b75a50d..7f90971a1d1efa9dc80f478e4eb421d5d2d272c5 100644
Binary files a/img/clothes/lower/jumpsuitstylish/full_gray.png and b/img/clothes/lower/jumpsuitstylish/full_gray.png differ
diff --git a/img/clothes/lower/jumpsuitstylish/tattered_gray.png b/img/clothes/lower/jumpsuitstylish/tattered_gray.png
index 65e74d8b7cc3b7a1e148bc9361c04d3b3721e36a..74b3e430d2181121e76c490622b006220e8a0fdd 100644
Binary files a/img/clothes/lower/jumpsuitstylish/tattered_gray.png and b/img/clothes/lower/jumpsuitstylish/tattered_gray.png differ
diff --git a/img/clothes/lower/jumpsuitstylish/torn_gray.png b/img/clothes/lower/jumpsuitstylish/torn_gray.png
index ec8bba7d0393ec50ca49b5df29de42932c65e3b1..4ec4f76bc7807714b76e5e4a4c561c87b51c6f58 100644
Binary files a/img/clothes/lower/jumpsuitstylish/torn_gray.png and b/img/clothes/lower/jumpsuitstylish/torn_gray.png differ
diff --git a/img/clothes/lower/karate/frayed.png b/img/clothes/lower/karate/frayed.png
index ec9974313e63e0bb95ca1299807398acaee80483..944cbdaad57741d2d2fba8d713260630c5045c3f 100644
Binary files a/img/clothes/lower/karate/frayed.png and b/img/clothes/lower/karate/frayed.png differ
diff --git a/img/clothes/lower/karate/full.png b/img/clothes/lower/karate/full.png
index db4f14492f9de7269416926927d193475456c8dd..ea2ac57feb5f5f20151932809ffe99aae6903490 100644
Binary files a/img/clothes/lower/karate/full.png and b/img/clothes/lower/karate/full.png differ
diff --git a/img/clothes/lower/karate/tattered.png b/img/clothes/lower/karate/tattered.png
index 28730b0aec2514cc09f8326e64f4ea785aacf4fb..6b9b7ff190a4ccb5c888334fd71792b4cf52ee03 100644
Binary files a/img/clothes/lower/karate/tattered.png and b/img/clothes/lower/karate/tattered.png differ
diff --git a/img/clothes/lower/karate/torn.png b/img/clothes/lower/karate/torn.png
index 20a4fc1697d6ef884acaad1833282fb432cc70c3..a938b9ce83933d2b04f6a79973872c94296ed3f1 100644
Binary files a/img/clothes/lower/karate/torn.png and b/img/clothes/lower/karate/torn.png differ
diff --git a/img/clothes/lower/keyhole/frayed_gray.png b/img/clothes/lower/keyhole/frayed_gray.png
index 1597cd8e85171145c7ed3d919bf05cd3ac1a1497..e332346805d112ea5484058024ac8d63f63813e4 100644
Binary files a/img/clothes/lower/keyhole/frayed_gray.png and b/img/clothes/lower/keyhole/frayed_gray.png differ
diff --git a/img/clothes/lower/keyhole/full_gray.png b/img/clothes/lower/keyhole/full_gray.png
index a29429513298cdfc248a24c667a50f8a65a47ae3..2c8519b27601e2ea841f96c54bf3a0fc06e15071 100644
Binary files a/img/clothes/lower/keyhole/full_gray.png and b/img/clothes/lower/keyhole/full_gray.png differ
diff --git a/img/clothes/lower/keyhole/tattered_gray.png b/img/clothes/lower/keyhole/tattered_gray.png
index 71928c5e6219465aed058b1cf6bb5ce52a839c73..7e70faa2bf9c535f6bd925702465d85196eae3d6 100644
Binary files a/img/clothes/lower/keyhole/tattered_gray.png and b/img/clothes/lower/keyhole/tattered_gray.png differ
diff --git a/img/clothes/lower/keyhole/torn_gray.png b/img/clothes/lower/keyhole/torn_gray.png
index ac90bae8baf11077736f8aa4bde6d5983a9f7112..0b3e0c79d11161e67722baa75b190cd720d73ea6 100644
Binary files a/img/clothes/lower/keyhole/torn_gray.png and b/img/clothes/lower/keyhole/torn_gray.png differ
diff --git a/img/clothes/lower/khakis/frayed.png b/img/clothes/lower/khakis/frayed.png
index 49e80409b224510470347f9d311f6da9d000795a..fb62039a227bf7426b6274a83a17b92b67e59464 100644
Binary files a/img/clothes/lower/khakis/frayed.png and b/img/clothes/lower/khakis/frayed.png differ
diff --git a/img/clothes/lower/khakis/full.png b/img/clothes/lower/khakis/full.png
index 45c33b9208b02c794117cb352a0126a3ef62915e..72fbba547e726a4005bcf1da39236686ebef6dd1 100644
Binary files a/img/clothes/lower/khakis/full.png and b/img/clothes/lower/khakis/full.png differ
diff --git a/img/clothes/lower/khakis/tattered.png b/img/clothes/lower/khakis/tattered.png
index 8f00c92365855e85efe4f3095f68116f968b085a..80522d74904b9a86883446ec726594e82abe0e45 100644
Binary files a/img/clothes/lower/khakis/tattered.png and b/img/clothes/lower/khakis/tattered.png differ
diff --git a/img/clothes/lower/khakis/torn.png b/img/clothes/lower/khakis/torn.png
index ca14dc308b21a543d77a90b664fbe890e6fbcafd..a97564f25a119bc6f18ea6d1a627d0fca4daf78b 100644
Binary files a/img/clothes/lower/khakis/torn.png and b/img/clothes/lower/khakis/torn.png differ
diff --git a/img/clothes/lower/kilt/frayed.png b/img/clothes/lower/kilt/frayed.png
index b741e096a542772eb4cdb6569a36a4591028cf2a..9263321c198fb414ee52bac988b2f7aa3848e73c 100644
Binary files a/img/clothes/lower/kilt/frayed.png and b/img/clothes/lower/kilt/frayed.png differ
diff --git a/img/clothes/lower/kilt/full.png b/img/clothes/lower/kilt/full.png
index b041eaee38b384f29fa062bdd03718d19e9ba954..1769211bdec1e8b24b0d60c54a65abbc67cf9a0f 100644
Binary files a/img/clothes/lower/kilt/full.png and b/img/clothes/lower/kilt/full.png differ
diff --git a/img/clothes/lower/kilt/tattered.png b/img/clothes/lower/kilt/tattered.png
index ebdb7b85a57703e3d2adc606ccaa9c49945c7b46..b6b8d66cab8a09c404b4d4236486c0b2d979185b 100644
Binary files a/img/clothes/lower/kilt/tattered.png and b/img/clothes/lower/kilt/tattered.png differ
diff --git a/img/clothes/lower/kilt/torn.png b/img/clothes/lower/kilt/torn.png
index a845d9ad7a7724009a656e4cc283615bf0f34725..3d54bda90939130495f79c3d44380f453594fea4 100644
Binary files a/img/clothes/lower/kilt/torn.png and b/img/clothes/lower/kilt/torn.png differ
diff --git a/img/clothes/lower/kimono/back_gray.png b/img/clothes/lower/kimono/back_gray.png
index 7eb1c2ea2bc4792ea65c64ad3c66e0c19a377c22..dfc6b3954e8eb0bd3a0866f6bf4757ac762e9571 100644
Binary files a/img/clothes/lower/kimono/back_gray.png and b/img/clothes/lower/kimono/back_gray.png differ
diff --git a/img/clothes/lower/kimono/frayed_gray.png b/img/clothes/lower/kimono/frayed_gray.png
index 24d686cd76bb2ebfe059ef6e8295dd015d26f9e8..e2cd8e6bfb60e42f4ac9c50df3db3562d675bba1 100644
Binary files a/img/clothes/lower/kimono/frayed_gray.png and b/img/clothes/lower/kimono/frayed_gray.png differ
diff --git a/img/clothes/lower/kimono/full_gray.png b/img/clothes/lower/kimono/full_gray.png
index 24d686cd76bb2ebfe059ef6e8295dd015d26f9e8..e2cd8e6bfb60e42f4ac9c50df3db3562d675bba1 100644
Binary files a/img/clothes/lower/kimono/full_gray.png and b/img/clothes/lower/kimono/full_gray.png differ
diff --git a/img/clothes/lower/kimono/tattered_gray.png b/img/clothes/lower/kimono/tattered_gray.png
index f90bcfe2d969ccf3343ccf52c0492b91b7e2832b..8902a5f1029aead66ee7d43e9abb89dc8ab7d60f 100644
Binary files a/img/clothes/lower/kimono/tattered_gray.png and b/img/clothes/lower/kimono/tattered_gray.png differ
diff --git a/img/clothes/lower/kimono/torn_gray.png b/img/clothes/lower/kimono/torn_gray.png
index 4aba949d14a2824c20d929c8c8ae8ad28b0cd2b9..a561a845186752306f6ae5b6b0de8f324f8acea0 100644
Binary files a/img/clothes/lower/kimono/torn_gray.png and b/img/clothes/lower/kimono/torn_gray.png differ
diff --git a/img/clothes/lower/kimonomini/back_gray.png b/img/clothes/lower/kimonomini/back_gray.png
index 5f58597d72d2fd1dbb6fa7a7be295867adf59691..4861a2434ead413c17e8cb37c0aa9c597f333336 100644
Binary files a/img/clothes/lower/kimonomini/back_gray.png and b/img/clothes/lower/kimonomini/back_gray.png differ
diff --git a/img/clothes/lower/kimonomini/frayed_gray.png b/img/clothes/lower/kimonomini/frayed_gray.png
index ac45b007ed8c38b4b64405e0b48cbd3057a1c1c4..0cb0bfce6bcafe1eb60b9819e818aa08e0adf39b 100644
Binary files a/img/clothes/lower/kimonomini/frayed_gray.png and b/img/clothes/lower/kimonomini/frayed_gray.png differ
diff --git a/img/clothes/lower/kimonomini/full_gray.png b/img/clothes/lower/kimonomini/full_gray.png
index a82aefddb4c56141a6388b077f38b304b43cd18e..4b305fe564f2ffdb6b1deec1263f03f239b75390 100644
Binary files a/img/clothes/lower/kimonomini/full_gray.png and b/img/clothes/lower/kimonomini/full_gray.png differ
diff --git a/img/clothes/lower/kimonomini/tattered_gray.png b/img/clothes/lower/kimonomini/tattered_gray.png
index 45aac5d93e764fad877e8ea9c97d08d8db67ef8d..7b5822763df38a75f3fa36a645f6e2a7b9c69b2f 100644
Binary files a/img/clothes/lower/kimonomini/tattered_gray.png and b/img/clothes/lower/kimonomini/tattered_gray.png differ
diff --git a/img/clothes/lower/kimonomini/torn_gray.png b/img/clothes/lower/kimonomini/torn_gray.png
index 25df4d8a4af862a59d07c1bdf23eac8870c1d577..89c78ee6515a458b6f49b0011fe8012170697c92 100644
Binary files a/img/clothes/lower/kimonomini/torn_gray.png and b/img/clothes/lower/kimonomini/torn_gray.png differ
diff --git a/img/clothes/lower/lacegown/frayed.png b/img/clothes/lower/lacegown/frayed.png
index a490bae9a53eb55a7aad7446cfb5bcc5caf747f2..db434d9ad2e470793dd9802b3f495a9567f46ba1 100644
Binary files a/img/clothes/lower/lacegown/frayed.png and b/img/clothes/lower/lacegown/frayed.png differ
diff --git a/img/clothes/lower/lacegown/full.png b/img/clothes/lower/lacegown/full.png
index c1e06cff34d9845c4bc724a160b17bb2382b14ee..d5d4de1dd00739589135e965c0b8121631bf9103 100644
Binary files a/img/clothes/lower/lacegown/full.png and b/img/clothes/lower/lacegown/full.png differ
diff --git a/img/clothes/lower/lacegown/tattered.png b/img/clothes/lower/lacegown/tattered.png
index dc11303816ea4d6126cbe49b4923f8887a4aae03..38a9ac512103113f3943395de59f86f9b6e06504 100644
Binary files a/img/clothes/lower/lacegown/tattered.png and b/img/clothes/lower/lacegown/tattered.png differ
diff --git a/img/clothes/lower/lacegown/torn.png b/img/clothes/lower/lacegown/torn.png
index 6be597928e464baf40f750142c89530d75173854..6aeb14d20b06256313096b4e6b0e7138f2fc6684 100644
Binary files a/img/clothes/lower/lacegown/torn.png and b/img/clothes/lower/lacegown/torn.png differ
diff --git a/img/clothes/lower/leatherdress/frayed_gray.png b/img/clothes/lower/leatherdress/frayed_gray.png
index d5e7dd2295789cf4c7ee3faeb03899d29df27938..678adb1e75a867c9e781204844feeba9a5f8a0fc 100644
Binary files a/img/clothes/lower/leatherdress/frayed_gray.png and b/img/clothes/lower/leatherdress/frayed_gray.png differ
diff --git a/img/clothes/lower/leatherdress/full_gray.png b/img/clothes/lower/leatherdress/full_gray.png
index 82dbe948c7a4c33d83a52d285d37a894423a0f38..b8aa33012079081c2d673d97933db56c8091f1e1 100644
Binary files a/img/clothes/lower/leatherdress/full_gray.png and b/img/clothes/lower/leatherdress/full_gray.png differ
diff --git a/img/clothes/lower/leatherdress/tattered_gray.png b/img/clothes/lower/leatherdress/tattered_gray.png
index c692368d5cd0ac96bd2ba253229791d162d5ed27..9647c4e7a9a620654811298e8949997574f45de7 100644
Binary files a/img/clothes/lower/leatherdress/tattered_gray.png and b/img/clothes/lower/leatherdress/tattered_gray.png differ
diff --git a/img/clothes/lower/leatherdress/torn_gray.png b/img/clothes/lower/leatherdress/torn_gray.png
index 9c018f5e21834d8c9e10b02bc0dc81d33a4f1bd4..5b4e55cf5487f0b268eba3c3824dad9eb71b9814 100644
Binary files a/img/clothes/lower/leatherdress/torn_gray.png and b/img/clothes/lower/leatherdress/torn_gray.png differ
diff --git a/img/clothes/lower/leatherminiskirt/acc_frayed_gray.png b/img/clothes/lower/leatherminiskirt/acc_frayed_gray.png
index b19d10bbb1b4f03f1c82d333b5de33ae74fb460a..1baa4755891f44f9bb1d32b5685b1d516a1e9134 100644
Binary files a/img/clothes/lower/leatherminiskirt/acc_frayed_gray.png and b/img/clothes/lower/leatherminiskirt/acc_frayed_gray.png differ
diff --git a/img/clothes/lower/leatherminiskirt/acc_full_gray.png b/img/clothes/lower/leatherminiskirt/acc_full_gray.png
index b19d10bbb1b4f03f1c82d333b5de33ae74fb460a..1baa4755891f44f9bb1d32b5685b1d516a1e9134 100644
Binary files a/img/clothes/lower/leatherminiskirt/acc_full_gray.png and b/img/clothes/lower/leatherminiskirt/acc_full_gray.png differ
diff --git a/img/clothes/lower/leatherminiskirt/acc_tattered_gray.png b/img/clothes/lower/leatherminiskirt/acc_tattered_gray.png
index 7abe292baa19c6ec9eb0256ecf078626657b0002..2774e58f1f5a09ebb0416dd9abdc80e93ce2da58 100644
Binary files a/img/clothes/lower/leatherminiskirt/acc_tattered_gray.png and b/img/clothes/lower/leatherminiskirt/acc_tattered_gray.png differ
diff --git a/img/clothes/lower/leatherminiskirt/acc_torn_gray.png b/img/clothes/lower/leatherminiskirt/acc_torn_gray.png
index c9a203f830d8f80998a1b646b65205d7dba8d505..777c78fcdd988dcbc0c9cce355ef7928768a532d 100644
Binary files a/img/clothes/lower/leatherminiskirt/acc_torn_gray.png and b/img/clothes/lower/leatherminiskirt/acc_torn_gray.png differ
diff --git a/img/clothes/lower/leatherminiskirt/frayed_gray.png b/img/clothes/lower/leatherminiskirt/frayed_gray.png
index ab46f3b906ebebe658f4f6b01dd4e4029c0c2d75..67abfde47a16934d7a785e8d3dd36bc438f49ccb 100644
Binary files a/img/clothes/lower/leatherminiskirt/frayed_gray.png and b/img/clothes/lower/leatherminiskirt/frayed_gray.png differ
diff --git a/img/clothes/lower/leatherminiskirt/full_gray.png b/img/clothes/lower/leatherminiskirt/full_gray.png
index a511b6b51781502c518e1b3165109929e54ce1b2..f0b12dbfa5963531e6bedc568c2d8a93c3e66c05 100644
Binary files a/img/clothes/lower/leatherminiskirt/full_gray.png and b/img/clothes/lower/leatherminiskirt/full_gray.png differ
diff --git a/img/clothes/lower/leatherminiskirt/tattered_gray.png b/img/clothes/lower/leatherminiskirt/tattered_gray.png
index caed866ac3554e30be7fb49a3a7d968c3cdfa3f5..96fdb7c530d9d490caf2e51b3667ae165ec8ac48 100644
Binary files a/img/clothes/lower/leatherminiskirt/tattered_gray.png and b/img/clothes/lower/leatherminiskirt/tattered_gray.png differ
diff --git a/img/clothes/lower/leatherminiskirt/torn_gray.png b/img/clothes/lower/leatherminiskirt/torn_gray.png
index f08f30aae52f9a76d1d79f06d96ccd1d7671c471..0c502e3496ae587f408e12444190ccd524ff3576 100644
Binary files a/img/clothes/lower/leatherminiskirt/torn_gray.png and b/img/clothes/lower/leatherminiskirt/torn_gray.png differ
diff --git a/img/clothes/lower/leatherpants/acc_gray.png b/img/clothes/lower/leatherpants/acc_gray.png
index 4fdc77a53078d5db2dc26e61c6774706f3eff225..c9f091527d2d3d706b72f030322aba8a0091a544 100644
Binary files a/img/clothes/lower/leatherpants/acc_gray.png and b/img/clothes/lower/leatherpants/acc_gray.png differ
diff --git a/img/clothes/lower/leatherpants/frayed_gray.png b/img/clothes/lower/leatherpants/frayed_gray.png
index 852f657533bebb542dc7574677fab7dddfad40b6..331abafa8aee7c618892b795e0b340d76a625c5d 100644
Binary files a/img/clothes/lower/leatherpants/frayed_gray.png and b/img/clothes/lower/leatherpants/frayed_gray.png differ
diff --git a/img/clothes/lower/leatherpants/full_gray.png b/img/clothes/lower/leatherpants/full_gray.png
index d2e31c905eede577b720eb703ddb684a3619c652..73bf4421c06038249463c3dd1f593a48cb1908e0 100644
Binary files a/img/clothes/lower/leatherpants/full_gray.png and b/img/clothes/lower/leatherpants/full_gray.png differ
diff --git a/img/clothes/lower/leatherpants/tattered_gray.png b/img/clothes/lower/leatherpants/tattered_gray.png
index a31359c212bec0e8658af17f8f4eeaf51d24eae0..284110bf46238103f4be2621d985a3df4cdf5adb 100644
Binary files a/img/clothes/lower/leatherpants/tattered_gray.png and b/img/clothes/lower/leatherpants/tattered_gray.png differ
diff --git a/img/clothes/lower/leatherpants/torn_gray.png b/img/clothes/lower/leatherpants/torn_gray.png
index d21a088857eb9a604e553e60b7c8fb4b41ca848b..6865486ccba1255f51dcedbc82fae50a23ac32fd 100644
Binary files a/img/clothes/lower/leatherpants/torn_gray.png and b/img/clothes/lower/leatherpants/torn_gray.png differ
diff --git a/img/clothes/lower/leathershorts/acc_gray.png b/img/clothes/lower/leathershorts/acc_gray.png
index d94c53c31b4d3013a7620562d16d20bfc9ae98a1..c9f091527d2d3d706b72f030322aba8a0091a544 100644
Binary files a/img/clothes/lower/leathershorts/acc_gray.png and b/img/clothes/lower/leathershorts/acc_gray.png differ
diff --git a/img/clothes/lower/leathershorts/frayed_gray.png b/img/clothes/lower/leathershorts/frayed_gray.png
index 1c17b5550f6dba65aa29a1cd62afa21b080c2d97..564c26e69b797e914ca5946531559adc7cbe492d 100644
Binary files a/img/clothes/lower/leathershorts/frayed_gray.png and b/img/clothes/lower/leathershorts/frayed_gray.png differ
diff --git a/img/clothes/lower/leathershorts/full_gray.png b/img/clothes/lower/leathershorts/full_gray.png
index 9e7b1c9ba7a801b277d87af5e5864d155b9c3351..3079f63eb2b3afab7efbba3a9ba9bff9e23dbd52 100644
Binary files a/img/clothes/lower/leathershorts/full_gray.png and b/img/clothes/lower/leathershorts/full_gray.png differ
diff --git a/img/clothes/lower/leathershorts/tattered_gray.png b/img/clothes/lower/leathershorts/tattered_gray.png
index 5c46839dcdb0c45d2dfc18e45cbb38dc77e9c642..287d3dee1338a337f26f5250c5b12bff6dbebf88 100644
Binary files a/img/clothes/lower/leathershorts/tattered_gray.png and b/img/clothes/lower/leathershorts/tattered_gray.png differ
diff --git a/img/clothes/lower/leathershorts/torn_gray.png b/img/clothes/lower/leathershorts/torn_gray.png
index 459cea144819c5e26b4aae4721e8c3553522ffaa..0f350cde91f13c9e9f8fc10aba2494572e602f9a 100644
Binary files a/img/clothes/lower/leathershorts/torn_gray.png and b/img/clothes/lower/leathershorts/torn_gray.png differ
diff --git a/img/clothes/lower/leder/frayed.png b/img/clothes/lower/leder/frayed.png
index 8a01865781db425b71678bdac32026fedb902d51..1b2978635ee002760b4108c93a02ff2a4c7e2774 100644
Binary files a/img/clothes/lower/leder/frayed.png and b/img/clothes/lower/leder/frayed.png differ
diff --git a/img/clothes/lower/leder/full.png b/img/clothes/lower/leder/full.png
index 58a7c08bde72cb9f64551c0137cd1dcfe949ce43..87afedc887c8a48dc28a10c5753df6c310d2febc 100644
Binary files a/img/clothes/lower/leder/full.png and b/img/clothes/lower/leder/full.png differ
diff --git a/img/clothes/lower/leder/tattered.png b/img/clothes/lower/leder/tattered.png
index 122fcb168481cb7c058f574ca8f53df2350b1030..392455a390718ad8241abb44337a691c89ee06e4 100644
Binary files a/img/clothes/lower/leder/tattered.png and b/img/clothes/lower/leder/tattered.png differ
diff --git a/img/clothes/lower/leder/torn.png b/img/clothes/lower/leder/torn.png
index 2c8e58682a5bc27511036ab37100849f4061d47e..54475dcf06c82a91b64efe4d6cac948120bba327 100644
Binary files a/img/clothes/lower/leder/torn.png and b/img/clothes/lower/leder/torn.png differ
diff --git a/img/clothes/lower/longskirt/frayed_gray.png b/img/clothes/lower/longskirt/frayed_gray.png
index 5416eae5edf7804d552b04d269ecf07570ac69a6..faa9ac3bd0e1dc35695c6d73e734bab3741a206d 100644
Binary files a/img/clothes/lower/longskirt/frayed_gray.png and b/img/clothes/lower/longskirt/frayed_gray.png differ
diff --git a/img/clothes/lower/longskirt/full_gray.png b/img/clothes/lower/longskirt/full_gray.png
index 52694cdf071edffa3554b070c96bd1f65826bd83..b15702d6047c6bfc87c7207d34ef837ce817c3c6 100644
Binary files a/img/clothes/lower/longskirt/full_gray.png and b/img/clothes/lower/longskirt/full_gray.png differ
diff --git a/img/clothes/lower/longskirt/tattered_gray.png b/img/clothes/lower/longskirt/tattered_gray.png
index a67b3408a850c3d1102477aa89ddd5dd4704c31e..e188ba664b303a8be719c58f1880be2f0f1a3a4e 100644
Binary files a/img/clothes/lower/longskirt/tattered_gray.png and b/img/clothes/lower/longskirt/tattered_gray.png differ
diff --git a/img/clothes/lower/longskirt/torn_gray.png b/img/clothes/lower/longskirt/torn_gray.png
index 3b37088c42e0455df4e0dddd673f6979f51a7016..f1bfdf891ab5c506234411cbacb2d6da2044e6b2 100644
Binary files a/img/clothes/lower/longskirt/torn_gray.png and b/img/clothes/lower/longskirt/torn_gray.png differ
diff --git a/img/clothes/lower/maid/frayed.png b/img/clothes/lower/maid/frayed.png
index c90d4e41271ed9812b4824e2569a3a37eb614853..6d90c642d54880c6d64e31fc85dbf763520fe6a3 100644
Binary files a/img/clothes/lower/maid/frayed.png and b/img/clothes/lower/maid/frayed.png differ
diff --git a/img/clothes/lower/maid/full.png b/img/clothes/lower/maid/full.png
index a25183bcda7864546a374ab9f568b930cac4045f..b47dbe43bf6db63904fe6b980a0f2909d6d71a30 100644
Binary files a/img/clothes/lower/maid/full.png and b/img/clothes/lower/maid/full.png differ
diff --git a/img/clothes/lower/maid/tattered.png b/img/clothes/lower/maid/tattered.png
index b7a547c855ed072efd4a50ce2bf137eedf9fab86..fb8902b8a215921bd7f4d731ca7ddff3d9d564df 100644
Binary files a/img/clothes/lower/maid/tattered.png and b/img/clothes/lower/maid/tattered.png differ
diff --git a/img/clothes/lower/maid/torn.png b/img/clothes/lower/maid/torn.png
index 4b2bd221ba56e14adfec7a20c8c7f9086fd86618..b11e684c86ae68ec2e6613d19f622fc6bfe4bb80 100644
Binary files a/img/clothes/lower/maid/torn.png and b/img/clothes/lower/maid/torn.png differ
diff --git a/img/clothes/lower/micropleatedskirt/frayed_gray.png b/img/clothes/lower/micropleatedskirt/frayed_gray.png
index f4ed48bec9566c8258f68f6e79e134f419176fea..d5daf746940a239b259b57136f36614a94058749 100644
Binary files a/img/clothes/lower/micropleatedskirt/frayed_gray.png and b/img/clothes/lower/micropleatedskirt/frayed_gray.png differ
diff --git a/img/clothes/lower/micropleatedskirt/full_gray.png b/img/clothes/lower/micropleatedskirt/full_gray.png
index af171c16362a4ee87299b3771a71c6889e52bd33..72ba64debedb988cd0bb31cd57ae217a5eb5da8a 100644
Binary files a/img/clothes/lower/micropleatedskirt/full_gray.png and b/img/clothes/lower/micropleatedskirt/full_gray.png differ
diff --git a/img/clothes/lower/micropleatedskirt/tattered_gray.png b/img/clothes/lower/micropleatedskirt/tattered_gray.png
index 8a16ada5ccf3031113777389d27c0c806c030bfc..61bc4f4d294de0385355467de54b02422b68ad45 100644
Binary files a/img/clothes/lower/micropleatedskirt/tattered_gray.png and b/img/clothes/lower/micropleatedskirt/tattered_gray.png differ
diff --git a/img/clothes/lower/micropleatedskirt/torn_gray.png b/img/clothes/lower/micropleatedskirt/torn_gray.png
index 14ce7c9f3133a36fec6f8badb128f04300d9d8b9..ce7e4298a4591bb5cebedbc693b1a613e468af7c 100644
Binary files a/img/clothes/lower/micropleatedskirt/torn_gray.png and b/img/clothes/lower/micropleatedskirt/torn_gray.png differ
diff --git a/img/clothes/lower/miniskirt/frayed_gray.png b/img/clothes/lower/miniskirt/frayed_gray.png
index 51e3ca310bb5ddedb7766068475f6bf1f0be5eeb..d5dcdfdb0bf7998bff0c6579319c771490629054 100644
Binary files a/img/clothes/lower/miniskirt/frayed_gray.png and b/img/clothes/lower/miniskirt/frayed_gray.png differ
diff --git a/img/clothes/lower/miniskirt/full_gray.png b/img/clothes/lower/miniskirt/full_gray.png
index 737b935ff1ad03661b7250fcf33af793bf2fd0ed..0f2f4696ff142afe3b7d5a0c536dd6dd042e8c09 100644
Binary files a/img/clothes/lower/miniskirt/full_gray.png and b/img/clothes/lower/miniskirt/full_gray.png differ
diff --git a/img/clothes/lower/miniskirt/tattered_gray.png b/img/clothes/lower/miniskirt/tattered_gray.png
index e6c17eb8a3428e969d2f5af2f891d0dc656fe783..a226d79cf30e28129f5405b49b8f8407b283b0b7 100644
Binary files a/img/clothes/lower/miniskirt/tattered_gray.png and b/img/clothes/lower/miniskirt/tattered_gray.png differ
diff --git a/img/clothes/lower/miniskirt/torn_gray.png b/img/clothes/lower/miniskirt/torn_gray.png
index e5618d47a894485b4bef9995547a19b410d99436..d8496f69acf1731fdc2f6e1505a61652738001c0 100644
Binary files a/img/clothes/lower/miniskirt/torn_gray.png and b/img/clothes/lower/miniskirt/torn_gray.png differ
diff --git a/img/clothes/lower/monk/back.png b/img/clothes/lower/monk/back.png
index 05e9a65308b83c051df4d93dfc169ee3bc55c3e3..60d50e861cc0dedcd9093e1b5f217dbfd2eed465 100644
Binary files a/img/clothes/lower/monk/back.png and b/img/clothes/lower/monk/back.png differ
diff --git a/img/clothes/lower/monk/frayed.png b/img/clothes/lower/monk/frayed.png
index a069ac3c52debd2af0e2ec79071e2e9ced9048fb..037a13386c9297a9d7d3e9d5fa21a4a839743c2e 100644
Binary files a/img/clothes/lower/monk/frayed.png and b/img/clothes/lower/monk/frayed.png differ
diff --git a/img/clothes/lower/monk/full.png b/img/clothes/lower/monk/full.png
index 5f6671aff8d7eb0974229754df34477b19843a4a..01a77460418f64977cd5b528bab15330a1964375 100644
Binary files a/img/clothes/lower/monk/full.png and b/img/clothes/lower/monk/full.png differ
diff --git a/img/clothes/lower/monk/tattered.png b/img/clothes/lower/monk/tattered.png
index ecc1d9c48367ce49ac5654a3b44a4c73b33cf771..708f82ae2525be12bea05f51dcfc6adc6a09f892 100644
Binary files a/img/clothes/lower/monk/tattered.png and b/img/clothes/lower/monk/tattered.png differ
diff --git a/img/clothes/lower/monk/torn.png b/img/clothes/lower/monk/torn.png
index d867d770059225afe5eaf8de9073ee4e971cfa86..673261e7bc08eca0120313f48fbd65100715b32f 100644
Binary files a/img/clothes/lower/monk/torn.png and b/img/clothes/lower/monk/torn.png differ
diff --git a/img/clothes/lower/monklewd/frayed.png b/img/clothes/lower/monklewd/frayed.png
index 3a9a8f480ad03363c600e06e0323f5a026efa43c..c657a13cf23c0a06ca640f7b931ff3227e20c247 100644
Binary files a/img/clothes/lower/monklewd/frayed.png and b/img/clothes/lower/monklewd/frayed.png differ
diff --git a/img/clothes/lower/monklewd/full.png b/img/clothes/lower/monklewd/full.png
index 07288399c324f4bdfcc454e32d79d850fc9b8e08..521585600ec8aaefd776ca555f4eada5da02fd34 100644
Binary files a/img/clothes/lower/monklewd/full.png and b/img/clothes/lower/monklewd/full.png differ
diff --git a/img/clothes/lower/monklewd/tattered.png b/img/clothes/lower/monklewd/tattered.png
index e7fa29bec6032c1e21085be91ee4517704bf3498..34b292a9f7f54aa96e9ba66680e5617c5174e745 100644
Binary files a/img/clothes/lower/monklewd/tattered.png and b/img/clothes/lower/monklewd/tattered.png differ
diff --git a/img/clothes/lower/monklewd/torn.png b/img/clothes/lower/monklewd/torn.png
index 699851b9914b79b7a45bf0b4686f51eb3d15fb07..12a2620f036642c0159e20d312306911ea599f9c 100644
Binary files a/img/clothes/lower/monklewd/torn.png and b/img/clothes/lower/monklewd/torn.png differ
diff --git a/img/clothes/lower/monster/acc.png b/img/clothes/lower/monster/acc.png
index 4fe7ad8a6d7b14ce4adfdda6a19f1e4322a94380..1dc719d7d7071a8679fa1d2c6a8b0fc3d2b99ac6 100644
Binary files a/img/clothes/lower/monster/acc.png and b/img/clothes/lower/monster/acc.png differ
diff --git a/img/clothes/lower/monster/frayed_gray.png b/img/clothes/lower/monster/frayed_gray.png
index 59d7b6e93c1a75983093e220c1e0e06ffdea4726..064e16ded2c945a96e02dd6baec3d1f043d7d92b 100644
Binary files a/img/clothes/lower/monster/frayed_gray.png and b/img/clothes/lower/monster/frayed_gray.png differ
diff --git a/img/clothes/lower/monster/full_gray.png b/img/clothes/lower/monster/full_gray.png
index 0c835f574a5255d31f44b2f78ddbcbc42478b095..73430081187b2acd52a5335439221a5030247163 100644
Binary files a/img/clothes/lower/monster/full_gray.png and b/img/clothes/lower/monster/full_gray.png differ
diff --git a/img/clothes/lower/monster/tattered_gray.png b/img/clothes/lower/monster/tattered_gray.png
index 59d7b6e93c1a75983093e220c1e0e06ffdea4726..064e16ded2c945a96e02dd6baec3d1f043d7d92b 100644
Binary files a/img/clothes/lower/monster/tattered_gray.png and b/img/clothes/lower/monster/tattered_gray.png differ
diff --git a/img/clothes/lower/monster/torn_gray.png b/img/clothes/lower/monster/torn_gray.png
index 59d7b6e93c1a75983093e220c1e0e06ffdea4726..064e16ded2c945a96e02dd6baec3d1f043d7d92b 100644
Binary files a/img/clothes/lower/monster/torn_gray.png and b/img/clothes/lower/monster/torn_gray.png differ
diff --git a/img/clothes/lower/mummy/frayed.png b/img/clothes/lower/mummy/frayed.png
index 69b5dcf6040808de58d3daa047c183f4f7ab74ca..2329a228144bdf8286b0039f8787090ea4a31582 100644
Binary files a/img/clothes/lower/mummy/frayed.png and b/img/clothes/lower/mummy/frayed.png differ
diff --git a/img/clothes/lower/mummy/full.png b/img/clothes/lower/mummy/full.png
index 74af090780ef6b3230ea4c10feec0c97b44f4836..ddc08ec61a498bd7dc9ef174b94d40c10fd5c9eb 100644
Binary files a/img/clothes/lower/mummy/full.png and b/img/clothes/lower/mummy/full.png differ
diff --git a/img/clothes/lower/mummy/tattered.png b/img/clothes/lower/mummy/tattered.png
index 09b7a8016adc943005938502fe17baab9f51e5b8..9bc6636e6eaa88df7f7bf72fcc2c46b6d21f071f 100644
Binary files a/img/clothes/lower/mummy/tattered.png and b/img/clothes/lower/mummy/tattered.png differ
diff --git a/img/clothes/lower/mummy/torn.png b/img/clothes/lower/mummy/torn.png
index a1818a416bbaccf50e1ecd5b155cfbfe21dd4188..90043514a17022913dd67df8bfd93e278e47e759 100644
Binary files a/img/clothes/lower/mummy/torn.png and b/img/clothes/lower/mummy/torn.png differ
diff --git a/img/clothes/lower/nun/back.png b/img/clothes/lower/nun/back.png
index 0b4d34d8b8a13d7fc6e2db3379aa219a14196bbc..54cbf920c2393dbcf14f7452c17afb03a1fb3d07 100644
Binary files a/img/clothes/lower/nun/back.png and b/img/clothes/lower/nun/back.png differ
diff --git a/img/clothes/lower/nun/frayed.png b/img/clothes/lower/nun/frayed.png
index 0866b68ade76fd9a2a534869b57c717aaf4bb8fb..0b6ca7d0dfefb204fc72cd17cde19a06d636a478 100644
Binary files a/img/clothes/lower/nun/frayed.png and b/img/clothes/lower/nun/frayed.png differ
diff --git a/img/clothes/lower/nun/full.png b/img/clothes/lower/nun/full.png
index fea764cf23c87a0a9cb02d5ba7e30707f9c8330e..a2dc4462f57c8cbe8777c96717421c444d8232d1 100644
Binary files a/img/clothes/lower/nun/full.png and b/img/clothes/lower/nun/full.png differ
diff --git a/img/clothes/lower/nun/tattered.png b/img/clothes/lower/nun/tattered.png
index ff156836e6c0dd31599233174daf8895ce88cdc3..943f816a6db8792a998dd7026b38925fa11a0ca3 100644
Binary files a/img/clothes/lower/nun/tattered.png and b/img/clothes/lower/nun/tattered.png differ
diff --git a/img/clothes/lower/nun/torn.png b/img/clothes/lower/nun/torn.png
index db140b07edc85b2dd55b07e22340aa47793ec528..3364228a23dabebc937f4a5e070810ae92b7b199 100644
Binary files a/img/clothes/lower/nun/torn.png and b/img/clothes/lower/nun/torn.png differ
diff --git a/img/clothes/lower/nunlewd/frayed.png b/img/clothes/lower/nunlewd/frayed.png
index d86b344cc8337a98733b170434d3b1af83554b6b..8a50e936707db527934c5f0730ad1a81af146df9 100644
Binary files a/img/clothes/lower/nunlewd/frayed.png and b/img/clothes/lower/nunlewd/frayed.png differ
diff --git a/img/clothes/lower/nunlewd/full.png b/img/clothes/lower/nunlewd/full.png
index 0920beb5b3c0e498e7f456e2fa1f0af15528648e..084336c4e0d00371e05796ee7e29a6fa4bc3eaeb 100644
Binary files a/img/clothes/lower/nunlewd/full.png and b/img/clothes/lower/nunlewd/full.png differ
diff --git a/img/clothes/lower/nunlewd/tattered.png b/img/clothes/lower/nunlewd/tattered.png
index 2398eebfd1f1848d94fa8413ebd8ea006eb2e396..9ff4e60594d740cb42812b1dec4531801a182f8d 100644
Binary files a/img/clothes/lower/nunlewd/tattered.png and b/img/clothes/lower/nunlewd/tattered.png differ
diff --git a/img/clothes/lower/nunlewd/torn.png b/img/clothes/lower/nunlewd/torn.png
index 52bd75e256a045859684487aae69962b9c63cdab..a9b7749b750ed4a17e42be09ad5e82da44854b85 100644
Binary files a/img/clothes/lower/nunlewd/torn.png and b/img/clothes/lower/nunlewd/torn.png differ
diff --git a/img/clothes/lower/openshoulderlolita/acc_frayed_gray.png b/img/clothes/lower/openshoulderlolita/acc_frayed_gray.png
index 7863369c9c81880f059853f2c4dfec2e5c18e635..79e08fdb66bf3903f54b7bcdbedae4f566a15943 100644
Binary files a/img/clothes/lower/openshoulderlolita/acc_frayed_gray.png and b/img/clothes/lower/openshoulderlolita/acc_frayed_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolita/acc_full_gray.png b/img/clothes/lower/openshoulderlolita/acc_full_gray.png
index d93e827898063b67faa5f98b402cca4937bb96de..8ee222cab6cef898f94a86ceddaae3719fa00b9a 100644
Binary files a/img/clothes/lower/openshoulderlolita/acc_full_gray.png and b/img/clothes/lower/openshoulderlolita/acc_full_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolita/acc_tattered_gray.png b/img/clothes/lower/openshoulderlolita/acc_tattered_gray.png
index 20777c50f6c4c1f2726ff3e089e31a3cb54ec73f..f7e972a521dc1c65ff48aaeec831a84988eefaca 100644
Binary files a/img/clothes/lower/openshoulderlolita/acc_tattered_gray.png and b/img/clothes/lower/openshoulderlolita/acc_tattered_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolita/acc_torn_gray.png b/img/clothes/lower/openshoulderlolita/acc_torn_gray.png
index a28af8502bf6d60877ae43c9e143aa03a144e8cc..0815ed409db20d0deab1928a65f5db2aae85a8c8 100644
Binary files a/img/clothes/lower/openshoulderlolita/acc_torn_gray.png and b/img/clothes/lower/openshoulderlolita/acc_torn_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolita/frayed_gray.png b/img/clothes/lower/openshoulderlolita/frayed_gray.png
index 1d63133e5ac8d5334403755f002f68d2a3785aad..e208fe84aa41f2087199c308cf67fd2d1c7fd49d 100644
Binary files a/img/clothes/lower/openshoulderlolita/frayed_gray.png and b/img/clothes/lower/openshoulderlolita/frayed_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolita/full_gray.png b/img/clothes/lower/openshoulderlolita/full_gray.png
index 2d4e563fc922b8cb99111c52d2f200a7806c99e9..01635b2b8da5dd02fba6cc789d83a956abf86993 100644
Binary files a/img/clothes/lower/openshoulderlolita/full_gray.png and b/img/clothes/lower/openshoulderlolita/full_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolita/tattered_gray.png b/img/clothes/lower/openshoulderlolita/tattered_gray.png
index 07dc69b7b3c1695f96fb3fb86aa0758f9c5043c8..7ccae5986659281caeef7697c48d6c7e89367ab3 100644
Binary files a/img/clothes/lower/openshoulderlolita/tattered_gray.png and b/img/clothes/lower/openshoulderlolita/tattered_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolita/torn_gray.png b/img/clothes/lower/openshoulderlolita/torn_gray.png
index 0cc1261afeeab7da9ccde4a80521ed432e8a79d8..d32b9a69ffd5ecf4b8bc8d96ab680ffaccb6a389 100644
Binary files a/img/clothes/lower/openshoulderlolita/torn_gray.png and b/img/clothes/lower/openshoulderlolita/torn_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolitaclassic/acc_frayed_gray.png b/img/clothes/lower/openshoulderlolitaclassic/acc_frayed_gray.png
index 458208688033695648b6b85204630654825ad4ce..a191d977a2231807940ed688f21f9cd41ac314da 100644
Binary files a/img/clothes/lower/openshoulderlolitaclassic/acc_frayed_gray.png and b/img/clothes/lower/openshoulderlolitaclassic/acc_frayed_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolitaclassic/acc_full_gray.png b/img/clothes/lower/openshoulderlolitaclassic/acc_full_gray.png
index f8a2884d4e41426d1dbc5000f046b134b5820430..e7b21eb0b1ad280faa4af000c1147b9a7273b40f 100644
Binary files a/img/clothes/lower/openshoulderlolitaclassic/acc_full_gray.png and b/img/clothes/lower/openshoulderlolitaclassic/acc_full_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolitaclassic/acc_tattered_gray.png b/img/clothes/lower/openshoulderlolitaclassic/acc_tattered_gray.png
index 4ca2ab189e3737fe56def10e389308849f8c81e3..cba93ca58fec461f6314df7f28544dfac4c7af17 100644
Binary files a/img/clothes/lower/openshoulderlolitaclassic/acc_tattered_gray.png and b/img/clothes/lower/openshoulderlolitaclassic/acc_tattered_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolitaclassic/acc_torn_gray.png b/img/clothes/lower/openshoulderlolitaclassic/acc_torn_gray.png
index f08d1b2b7881663e9476377be60e2fa29d523bb4..241cd53c917d7c5cdebe960521dc55f0386c4ed4 100644
Binary files a/img/clothes/lower/openshoulderlolitaclassic/acc_torn_gray.png and b/img/clothes/lower/openshoulderlolitaclassic/acc_torn_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolitaclassic/frayed_gray.png b/img/clothes/lower/openshoulderlolitaclassic/frayed_gray.png
index 2e8d39b8763e8ca23c2e4e97eb476e2346ee5ed0..9e639a0462413acdd5d6e0df09092dd0a5746881 100644
Binary files a/img/clothes/lower/openshoulderlolitaclassic/frayed_gray.png and b/img/clothes/lower/openshoulderlolitaclassic/frayed_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolitaclassic/full_gray.png b/img/clothes/lower/openshoulderlolitaclassic/full_gray.png
index 9c0d2e81e7b905a22022c886117958eddff32838..1f9cccb0e0bd2b5e5b75ef2fd2df346652822c0f 100644
Binary files a/img/clothes/lower/openshoulderlolitaclassic/full_gray.png and b/img/clothes/lower/openshoulderlolitaclassic/full_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolitaclassic/tattered_gray.png b/img/clothes/lower/openshoulderlolitaclassic/tattered_gray.png
index 37dbca3a0eca1f4f25907d017a866b66ee322e56..d4f4549a1c57b8a3998bf4bb64e09ae4ab086282 100644
Binary files a/img/clothes/lower/openshoulderlolitaclassic/tattered_gray.png and b/img/clothes/lower/openshoulderlolitaclassic/tattered_gray.png differ
diff --git a/img/clothes/lower/openshoulderlolitaclassic/torn_gray.png b/img/clothes/lower/openshoulderlolitaclassic/torn_gray.png
index 88f0d45d296f37c7fa382499ee3acbb16b00666e..caa4635f78cfd181e99bf2a0322213833ff735ab 100644
Binary files a/img/clothes/lower/openshoulderlolitaclassic/torn_gray.png and b/img/clothes/lower/openshoulderlolitaclassic/torn_gray.png differ
diff --git a/img/clothes/lower/openshouldersweater/frayed_gray.png b/img/clothes/lower/openshouldersweater/frayed_gray.png
index 2414ae8a24b33ecdb528e47bceb3aa25c3d5776b..eeacdba82a70be997e8c3f8ef7ee055b51348886 100644
Binary files a/img/clothes/lower/openshouldersweater/frayed_gray.png and b/img/clothes/lower/openshouldersweater/frayed_gray.png differ
diff --git a/img/clothes/lower/openshouldersweater/full_gray.png b/img/clothes/lower/openshouldersweater/full_gray.png
index df217427a465f3a654b15933ff6489306f949c0f..246f060f2574f1726642d8a2494343e4f9c482f3 100644
Binary files a/img/clothes/lower/openshouldersweater/full_gray.png and b/img/clothes/lower/openshouldersweater/full_gray.png differ
diff --git a/img/clothes/lower/openshouldersweater/tattered_gray.png b/img/clothes/lower/openshouldersweater/tattered_gray.png
index 14c754238422210beb01648a3b6f6e10584a2b33..4adb2e128717c4695cfba9d30ea2b8819cd2e6cc 100644
Binary files a/img/clothes/lower/openshouldersweater/tattered_gray.png and b/img/clothes/lower/openshouldersweater/tattered_gray.png differ
diff --git a/img/clothes/lower/openshouldersweater/torn_gray.png b/img/clothes/lower/openshouldersweater/torn_gray.png
index 380499d6f2e032c292ef68e1b3aab5069a195aad..10cd2e9fbc448368721bf4f1020840d4b6acd5b2 100644
Binary files a/img/clothes/lower/openshouldersweater/torn_gray.png and b/img/clothes/lower/openshouldersweater/torn_gray.png differ
diff --git a/img/clothes/lower/overalls/frayed_gray.png b/img/clothes/lower/overalls/frayed_gray.png
index 9b6e5b08ba0e8053f25ce995f34b063b33c764d4..aeec5d984133ddceef57703b93aeac23b89f341a 100644
Binary files a/img/clothes/lower/overalls/frayed_gray.png and b/img/clothes/lower/overalls/frayed_gray.png differ
diff --git a/img/clothes/lower/overalls/full_gray.png b/img/clothes/lower/overalls/full_gray.png
index e9f83d70474476393f5fafe73c129585615fad40..a5b3cd286c65fbe5da5b5faedc485ba292f16fcd 100644
Binary files a/img/clothes/lower/overalls/full_gray.png and b/img/clothes/lower/overalls/full_gray.png differ
diff --git a/img/clothes/lower/overalls/tattered_gray.png b/img/clothes/lower/overalls/tattered_gray.png
index aaf2e77cb513b47ad0517fbc8fef709d2a979b13..7522b3072941d6ea67ea0171ea9cf83e32e4fb0e 100644
Binary files a/img/clothes/lower/overalls/tattered_gray.png and b/img/clothes/lower/overalls/tattered_gray.png differ
diff --git a/img/clothes/lower/overalls/torn_gray.png b/img/clothes/lower/overalls/torn_gray.png
index 5fdbb6c3301ab426e071b537c2804519ccac7321..32edc83ec0722a6e73a814e16b42fa0e9501677b 100644
Binary files a/img/clothes/lower/overalls/torn_gray.png and b/img/clothes/lower/overalls/torn_gray.png differ
diff --git a/img/clothes/lower/oversizedbuttondown/frayed_gray.png b/img/clothes/lower/oversizedbuttondown/frayed_gray.png
index d631845c4d1e281f16b20d8a74328dda7e1d13cb..f6f25837ae1604428129b0a3ddf6ba290d1707c1 100644
Binary files a/img/clothes/lower/oversizedbuttondown/frayed_gray.png and b/img/clothes/lower/oversizedbuttondown/frayed_gray.png differ
diff --git a/img/clothes/lower/oversizedbuttondown/full_gray.png b/img/clothes/lower/oversizedbuttondown/full_gray.png
index cc6ebdaa2d9913433ad6ad1881c7b734fe286abe..4eb1366806a86feac901acd0e4e2b1980cc62add 100644
Binary files a/img/clothes/lower/oversizedbuttondown/full_gray.png and b/img/clothes/lower/oversizedbuttondown/full_gray.png differ
diff --git a/img/clothes/lower/oversizedbuttondown/tattered_gray.png b/img/clothes/lower/oversizedbuttondown/tattered_gray.png
index e1318e127680899599f93740052711568add89d9..88eda75a6193f6799b949d528a29afee90aaa889 100644
Binary files a/img/clothes/lower/oversizedbuttondown/tattered_gray.png and b/img/clothes/lower/oversizedbuttondown/tattered_gray.png differ
diff --git a/img/clothes/lower/oversizedbuttondown/torn_gray.png b/img/clothes/lower/oversizedbuttondown/torn_gray.png
index 429d42fe62e7b30fadb30f83ec991a5a3f4cd79b..f1e0a8d4d62536373a95bec1f751a2734d20cf89 100644
Binary files a/img/clothes/lower/oversizedbuttondown/torn_gray.png and b/img/clothes/lower/oversizedbuttondown/torn_gray.png differ
diff --git a/img/clothes/lower/patient/frayed_gray.png b/img/clothes/lower/patient/frayed_gray.png
index 944505f2e4490b634257cec8c14441c4b3f979fe..a2b6110bafc595ba1c182e209af7a64b00997e26 100644
Binary files a/img/clothes/lower/patient/frayed_gray.png and b/img/clothes/lower/patient/frayed_gray.png differ
diff --git a/img/clothes/lower/patient/full_gray.png b/img/clothes/lower/patient/full_gray.png
index e5019c851171134e16409a43ef071eb18cfe45d9..a30db1d7e2c6555695038c8ccedcc00344c85035 100644
Binary files a/img/clothes/lower/patient/full_gray.png and b/img/clothes/lower/patient/full_gray.png differ
diff --git a/img/clothes/lower/patient/tattered_gray.png b/img/clothes/lower/patient/tattered_gray.png
index 392fef247ac48b12fb63b96a64f4c0a6538f0f80..635cc97c9fac8516882f62dca4af178f969f76bd 100644
Binary files a/img/clothes/lower/patient/tattered_gray.png and b/img/clothes/lower/patient/tattered_gray.png differ
diff --git a/img/clothes/lower/patient/torn_gray.png b/img/clothes/lower/patient/torn_gray.png
index 7ca6f610da323bd1f547d091e882f14e47fd5530..d8c286f5c02433354496ccc2035f4d78ad2b3d7a 100644
Binary files a/img/clothes/lower/patient/torn_gray.png and b/img/clothes/lower/patient/torn_gray.png differ
diff --git a/img/clothes/lower/pencil/frayed_gray.png b/img/clothes/lower/pencil/frayed_gray.png
index aea26743e5a167d74f97653371d9490692a43629..2bbfca633bf102f09ee91d8dea9bc2da9a5891fa 100644
Binary files a/img/clothes/lower/pencil/frayed_gray.png and b/img/clothes/lower/pencil/frayed_gray.png differ
diff --git a/img/clothes/lower/pencil/full_gray.png b/img/clothes/lower/pencil/full_gray.png
index dbf32a791e168f58a922ab0cfc0ecc4e0852adce..ea7ed35389499665182446f71c49eb61cfdc62ff 100644
Binary files a/img/clothes/lower/pencil/full_gray.png and b/img/clothes/lower/pencil/full_gray.png differ
diff --git a/img/clothes/lower/pencil/tattered_gray.png b/img/clothes/lower/pencil/tattered_gray.png
index 486bf91400268bdb8aabccce8f4bb075134a5dbe..4ae7c2738859a37b623ef9af90f52cdd98c09fe2 100644
Binary files a/img/clothes/lower/pencil/tattered_gray.png and b/img/clothes/lower/pencil/tattered_gray.png differ
diff --git a/img/clothes/lower/pencil/torn_gray.png b/img/clothes/lower/pencil/torn_gray.png
index a7a33ad701f573c6d72ca4db8d1e81b90606121f..db849add3afeae093742e6faec0f056b8e104ad5 100644
Binary files a/img/clothes/lower/pencil/torn_gray.png and b/img/clothes/lower/pencil/torn_gray.png differ
diff --git a/img/clothes/lower/pinafore/acc_gray.png b/img/clothes/lower/pinafore/acc_gray.png
index b6469af77a92c2d09f9c3e577cbc5db9e4e9d534..2695488013ac071f134edbb81cd4f1c57dc56d54 100644
Binary files a/img/clothes/lower/pinafore/acc_gray.png and b/img/clothes/lower/pinafore/acc_gray.png differ
diff --git a/img/clothes/lower/pinafore/acc_under_gray.png b/img/clothes/lower/pinafore/acc_under_gray.png
index 0218bd273ecdf0daaced06abe5e795af54d18a4a..3b7f32a4f7e18a721e23cf3083c00802030a3afc 100644
Binary files a/img/clothes/lower/pinafore/acc_under_gray.png and b/img/clothes/lower/pinafore/acc_under_gray.png differ
diff --git a/img/clothes/lower/pinafore/frayed_gray.png b/img/clothes/lower/pinafore/frayed_gray.png
index 9700f22f94f1bb2a0be09d98c4e5603c154ec472..1c3c90284fa759766cd6304d8091ec083f1a90f3 100644
Binary files a/img/clothes/lower/pinafore/frayed_gray.png and b/img/clothes/lower/pinafore/frayed_gray.png differ
diff --git a/img/clothes/lower/pinafore/full_gray.png b/img/clothes/lower/pinafore/full_gray.png
index 71733bc97086b73b8000655a9edc984b7fce58aa..1cdeaacd8cfe6ba65b27e72e9cb04494440cf0c7 100644
Binary files a/img/clothes/lower/pinafore/full_gray.png and b/img/clothes/lower/pinafore/full_gray.png differ
diff --git a/img/clothes/lower/pinafore/tattered_gray.png b/img/clothes/lower/pinafore/tattered_gray.png
index 3bc5d89906c8e546f5685bfae89d905f02a6430e..1802b099f3053c5d651b6d73c260e3f6f806a5db 100644
Binary files a/img/clothes/lower/pinafore/tattered_gray.png and b/img/clothes/lower/pinafore/tattered_gray.png differ
diff --git a/img/clothes/lower/pinafore/torn_gray.png b/img/clothes/lower/pinafore/torn_gray.png
index 788cb40398eeaecd651fcdcddb017fd1a16769f3..e3e64d64a75bbad16eb2c3782b6ab75b005969ec 100644
Binary files a/img/clothes/lower/pinafore/torn_gray.png and b/img/clothes/lower/pinafore/torn_gray.png differ
diff --git a/img/clothes/lower/pinknurse/frayed.png b/img/clothes/lower/pinknurse/frayed.png
index 97e18e34922f4e857d847014d5fe38d47fba67f1..a9cb318a0f192dff95bcf9013aa8ce881a0ead92 100644
Binary files a/img/clothes/lower/pinknurse/frayed.png and b/img/clothes/lower/pinknurse/frayed.png differ
diff --git a/img/clothes/lower/pinknurse/full.png b/img/clothes/lower/pinknurse/full.png
index 97e18e34922f4e857d847014d5fe38d47fba67f1..a9cb318a0f192dff95bcf9013aa8ce881a0ead92 100644
Binary files a/img/clothes/lower/pinknurse/full.png and b/img/clothes/lower/pinknurse/full.png differ
diff --git a/img/clothes/lower/pinknurse/tattered.png b/img/clothes/lower/pinknurse/tattered.png
index 97e18e34922f4e857d847014d5fe38d47fba67f1..a9cb318a0f192dff95bcf9013aa8ce881a0ead92 100644
Binary files a/img/clothes/lower/pinknurse/tattered.png and b/img/clothes/lower/pinknurse/tattered.png differ
diff --git a/img/clothes/lower/pinknurse/torn.png b/img/clothes/lower/pinknurse/torn.png
index 97e18e34922f4e857d847014d5fe38d47fba67f1..a9cb318a0f192dff95bcf9013aa8ce881a0ead92 100644
Binary files a/img/clothes/lower/pinknurse/torn.png and b/img/clothes/lower/pinknurse/torn.png differ
diff --git a/img/clothes/lower/pinksweaterlarge/frayed.png b/img/clothes/lower/pinksweaterlarge/frayed.png
index 463962162911e86bae1022e0e5b00aa42f87d41e..94f7d25d9ca9fe3caf4a1d6e8c2e271c4d0ea0f2 100644
Binary files a/img/clothes/lower/pinksweaterlarge/frayed.png and b/img/clothes/lower/pinksweaterlarge/frayed.png differ
diff --git a/img/clothes/lower/pinksweaterlarge/full.png b/img/clothes/lower/pinksweaterlarge/full.png
index 463962162911e86bae1022e0e5b00aa42f87d41e..94f7d25d9ca9fe3caf4a1d6e8c2e271c4d0ea0f2 100644
Binary files a/img/clothes/lower/pinksweaterlarge/full.png and b/img/clothes/lower/pinksweaterlarge/full.png differ
diff --git a/img/clothes/lower/pinksweaterlarge/tattered.png b/img/clothes/lower/pinksweaterlarge/tattered.png
index 463962162911e86bae1022e0e5b00aa42f87d41e..94f7d25d9ca9fe3caf4a1d6e8c2e271c4d0ea0f2 100644
Binary files a/img/clothes/lower/pinksweaterlarge/tattered.png and b/img/clothes/lower/pinksweaterlarge/tattered.png differ
diff --git a/img/clothes/lower/pinksweaterlarge/torn.png b/img/clothes/lower/pinksweaterlarge/torn.png
index 463962162911e86bae1022e0e5b00aa42f87d41e..94f7d25d9ca9fe3caf4a1d6e8c2e271c4d0ea0f2 100644
Binary files a/img/clothes/lower/pinksweaterlarge/torn.png and b/img/clothes/lower/pinksweaterlarge/torn.png differ
diff --git a/img/clothes/lower/pjs/frayed_gray.png b/img/clothes/lower/pjs/frayed_gray.png
index 484d143770f9273807f151a8d90b8bccfc0b1fb9..d2b8298e70bd90add8b9afe6d6ec8ca3879bb8ca 100644
Binary files a/img/clothes/lower/pjs/frayed_gray.png and b/img/clothes/lower/pjs/frayed_gray.png differ
diff --git a/img/clothes/lower/pjs/full_gray.png b/img/clothes/lower/pjs/full_gray.png
index 8446598b435bef4f5545ce649ee87476f96cfea0..4f795b8a925ecb09b9942ce1b440b1725cbdf70c 100644
Binary files a/img/clothes/lower/pjs/full_gray.png and b/img/clothes/lower/pjs/full_gray.png differ
diff --git a/img/clothes/lower/pjs/tattered_gray.png b/img/clothes/lower/pjs/tattered_gray.png
index 3228a99eb52a00ac0165e08f891f63dc27cbe9c8..9165a71c0f37a7db938404f2007071367170ca6f 100644
Binary files a/img/clothes/lower/pjs/tattered_gray.png and b/img/clothes/lower/pjs/tattered_gray.png differ
diff --git a/img/clothes/lower/pjs/torn_gray.png b/img/clothes/lower/pjs/torn_gray.png
index 842f3bb94bc9ea0301654b97f87cb4bb3af25a8b..5914380235bca16805a55e00d68b71e110a6aacf 100644
Binary files a/img/clothes/lower/pjs/torn_gray.png and b/img/clothes/lower/pjs/torn_gray.png differ
diff --git a/img/clothes/lower/pjsmoon/acc.png b/img/clothes/lower/pjsmoon/acc.png
index e66a2cb08f0f52019609da06996627afa4c71914..c66efba71300bd57fec643af60d1e1f86e330cbb 100644
Binary files a/img/clothes/lower/pjsmoon/acc.png and b/img/clothes/lower/pjsmoon/acc.png differ
diff --git a/img/clothes/lower/pjsmoon/frayed_gray.png b/img/clothes/lower/pjsmoon/frayed_gray.png
index 6b8809cecd96cfd5823ca186cc9b878547806b89..18fa923ab9e75db9641b4364c99a9613703ebc0a 100644
Binary files a/img/clothes/lower/pjsmoon/frayed_gray.png and b/img/clothes/lower/pjsmoon/frayed_gray.png differ
diff --git a/img/clothes/lower/pjsmoon/full_gray.png b/img/clothes/lower/pjsmoon/full_gray.png
index c992be5d00e5d04206eb961b1f23140c6d3edc20..263ada9dd134563c65f13808b8f05e2462d8c157 100644
Binary files a/img/clothes/lower/pjsmoon/full_gray.png and b/img/clothes/lower/pjsmoon/full_gray.png differ
diff --git a/img/clothes/lower/pjsmoon/tattered_gray.png b/img/clothes/lower/pjsmoon/tattered_gray.png
index ccd4eb859ce0b6df858268b3ce2c17885fe8089a..1d1cd679336192b50d5ca55958d5ed23ceab7959 100644
Binary files a/img/clothes/lower/pjsmoon/tattered_gray.png and b/img/clothes/lower/pjsmoon/tattered_gray.png differ
diff --git a/img/clothes/lower/pjsmoon/torn_gray.png b/img/clothes/lower/pjsmoon/torn_gray.png
index 405176bf5d9bda9234e475560a1262781683edd9..add2524e014e91a5686b06fe2197427435f509e9 100644
Binary files a/img/clothes/lower/pjsmoon/torn_gray.png and b/img/clothes/lower/pjsmoon/torn_gray.png differ
diff --git a/img/clothes/lower/pjsstar/acc.png b/img/clothes/lower/pjsstar/acc.png
index 298a0a8e481071a8d3dc16db5b631b3696a2d461..51f6bb7b3565288589f7660cb0833bbdd6346a3c 100644
Binary files a/img/clothes/lower/pjsstar/acc.png and b/img/clothes/lower/pjsstar/acc.png differ
diff --git a/img/clothes/lower/pjsstar/frayed_gray.png b/img/clothes/lower/pjsstar/frayed_gray.png
index e3a86e1ebd1bcff989c00fe249a8b7f3f759a2ee..00d94e695b1cd72f93e8d9253f43545432355eeb 100644
Binary files a/img/clothes/lower/pjsstar/frayed_gray.png and b/img/clothes/lower/pjsstar/frayed_gray.png differ
diff --git a/img/clothes/lower/pjsstar/full_gray.png b/img/clothes/lower/pjsstar/full_gray.png
index 8b17527393f65602cf13f8c73467c9c3d45f6172..716b083499e58205d5e3abab4edce77c0285063b 100644
Binary files a/img/clothes/lower/pjsstar/full_gray.png and b/img/clothes/lower/pjsstar/full_gray.png differ
diff --git a/img/clothes/lower/pjsstar/tattered_gray.png b/img/clothes/lower/pjsstar/tattered_gray.png
index 10d44e3bb2665258b7b00a97e50b7eec41275119..3343a4feb60b3266cbe9929c53db021e05ab7cb6 100644
Binary files a/img/clothes/lower/pjsstar/tattered_gray.png and b/img/clothes/lower/pjsstar/tattered_gray.png differ
diff --git a/img/clothes/lower/pjsstar/torn_gray.png b/img/clothes/lower/pjsstar/torn_gray.png
index c2c67c2c9b18df252489d2d50805e1665a53131f..b872d4243d4c79906ef8c6d45c2f3595de14dec3 100644
Binary files a/img/clothes/lower/pjsstar/torn_gray.png and b/img/clothes/lower/pjsstar/torn_gray.png differ
diff --git a/img/clothes/lower/plaid pinafore/acc_gray.png b/img/clothes/lower/plaid pinafore/acc_gray.png
index b6469af77a92c2d09f9c3e577cbc5db9e4e9d534..2695488013ac071f134edbb81cd4f1c57dc56d54 100644
Binary files a/img/clothes/lower/plaid pinafore/acc_gray.png and b/img/clothes/lower/plaid pinafore/acc_gray.png differ
diff --git a/img/clothes/lower/plaid pinafore/acc_under_gray.png b/img/clothes/lower/plaid pinafore/acc_under_gray.png
index 0218bd273ecdf0daaced06abe5e795af54d18a4a..3b7f32a4f7e18a721e23cf3083c00802030a3afc 100644
Binary files a/img/clothes/lower/plaid pinafore/acc_under_gray.png and b/img/clothes/lower/plaid pinafore/acc_under_gray.png differ
diff --git a/img/clothes/lower/plaid pinafore/frayed_gray.png b/img/clothes/lower/plaid pinafore/frayed_gray.png
index a3a9b8064cba0285203926e859aefd8715b5bb86..15052e0c1ffc87977ec2dbb9f33944997ce81741 100644
Binary files a/img/clothes/lower/plaid pinafore/frayed_gray.png and b/img/clothes/lower/plaid pinafore/frayed_gray.png differ
diff --git a/img/clothes/lower/plaid pinafore/full_gray.png b/img/clothes/lower/plaid pinafore/full_gray.png
index 17f14d29344c1de66c20d088e85dabf822fda2cf..bb6e3950ff39a4d6715e06a23f8cd088e0b5a203 100644
Binary files a/img/clothes/lower/plaid pinafore/full_gray.png and b/img/clothes/lower/plaid pinafore/full_gray.png differ
diff --git a/img/clothes/lower/plaid pinafore/tattered_gray.png b/img/clothes/lower/plaid pinafore/tattered_gray.png
index ff10173da2ef403bae478adcbcf23afdbf67c5ab..ce6c4f19199a6a819e75613a4cf57c1adf9b0353 100644
Binary files a/img/clothes/lower/plaid pinafore/tattered_gray.png and b/img/clothes/lower/plaid pinafore/tattered_gray.png differ
diff --git a/img/clothes/lower/plaid pinafore/torn_gray.png b/img/clothes/lower/plaid pinafore/torn_gray.png
index 93afe0c085cad523c98ba774c09ef03a2238e299..f3f8aaa1d9adbfccab29b704df903571eb1a9258 100644
Binary files a/img/clothes/lower/plaid pinafore/torn_gray.png and b/img/clothes/lower/plaid pinafore/torn_gray.png differ
diff --git a/img/clothes/lower/plant/frayed.png b/img/clothes/lower/plant/frayed.png
index 834535d5874a705252a9b12eb8f534e919f9e664..b0002b097e7351e96a87ffd6d9862341e36a7a44 100644
Binary files a/img/clothes/lower/plant/frayed.png and b/img/clothes/lower/plant/frayed.png differ
diff --git a/img/clothes/lower/plant/full.png b/img/clothes/lower/plant/full.png
index 834535d5874a705252a9b12eb8f534e919f9e664..b0002b097e7351e96a87ffd6d9862341e36a7a44 100644
Binary files a/img/clothes/lower/plant/full.png and b/img/clothes/lower/plant/full.png differ
diff --git a/img/clothes/lower/plant/tattered.png b/img/clothes/lower/plant/tattered.png
index 834535d5874a705252a9b12eb8f534e919f9e664..b0002b097e7351e96a87ffd6d9862341e36a7a44 100644
Binary files a/img/clothes/lower/plant/tattered.png and b/img/clothes/lower/plant/tattered.png differ
diff --git a/img/clothes/lower/plant/torn.png b/img/clothes/lower/plant/torn.png
index 834535d5874a705252a9b12eb8f534e919f9e664..b0002b097e7351e96a87ffd6d9862341e36a7a44 100644
Binary files a/img/clothes/lower/plant/torn.png and b/img/clothes/lower/plant/torn.png differ
diff --git a/img/clothes/lower/plasticnurse/frayed.png b/img/clothes/lower/plasticnurse/frayed.png
index 276b62504ceaec6ae7754bf5092e6ec06d81fb53..461355bf90b7984e80afd6a9849b46f28706aefc 100644
Binary files a/img/clothes/lower/plasticnurse/frayed.png and b/img/clothes/lower/plasticnurse/frayed.png differ
diff --git a/img/clothes/lower/plasticnurse/full.png b/img/clothes/lower/plasticnurse/full.png
index 276b62504ceaec6ae7754bf5092e6ec06d81fb53..461355bf90b7984e80afd6a9849b46f28706aefc 100644
Binary files a/img/clothes/lower/plasticnurse/full.png and b/img/clothes/lower/plasticnurse/full.png differ
diff --git a/img/clothes/lower/plasticnurse/tattered.png b/img/clothes/lower/plasticnurse/tattered.png
index 276b62504ceaec6ae7754bf5092e6ec06d81fb53..461355bf90b7984e80afd6a9849b46f28706aefc 100644
Binary files a/img/clothes/lower/plasticnurse/tattered.png and b/img/clothes/lower/plasticnurse/tattered.png differ
diff --git a/img/clothes/lower/plasticnurse/torn.png b/img/clothes/lower/plasticnurse/torn.png
index 276b62504ceaec6ae7754bf5092e6ec06d81fb53..461355bf90b7984e80afd6a9849b46f28706aefc 100644
Binary files a/img/clothes/lower/plasticnurse/torn.png and b/img/clothes/lower/plasticnurse/torn.png differ
diff --git a/img/clothes/lower/prison/frayed.png b/img/clothes/lower/prison/frayed.png
index de2066df65f224cece5ec5e9fe3ab38a3bee433a..b98ccd93ec3bd59c6e43fe59227c4134eb9ebe91 100644
Binary files a/img/clothes/lower/prison/frayed.png and b/img/clothes/lower/prison/frayed.png differ
diff --git a/img/clothes/lower/prison/full.png b/img/clothes/lower/prison/full.png
index 573d8c774f93633fa5747eaa204f947b7ba7aaa8..e1fe07eea69661460fddcbb7a0c7bd0b88336960 100644
Binary files a/img/clothes/lower/prison/full.png and b/img/clothes/lower/prison/full.png differ
diff --git a/img/clothes/lower/prison/tattered.png b/img/clothes/lower/prison/tattered.png
index bf64773b604f2c401f17dd436d567e66ae5eac04..668391ef751cfe202878481d63242d717b814dbb 100644
Binary files a/img/clothes/lower/prison/tattered.png and b/img/clothes/lower/prison/tattered.png differ
diff --git a/img/clothes/lower/prison/torn.png b/img/clothes/lower/prison/torn.png
index f89559000a48b44bbbaf3baedb74d3781299e284..1400abc295398e2f73d74f8f531caf11d97b7617 100644
Binary files a/img/clothes/lower/prison/torn.png and b/img/clothes/lower/prison/torn.png differ
diff --git a/img/clothes/lower/puffy/acc_gray.png b/img/clothes/lower/puffy/acc_gray.png
index 7a3956b0167a9e4ae825ad970256741e46f7674c..d151ba2a92c672c8668d59df9d79c0b39a3297e1 100644
Binary files a/img/clothes/lower/puffy/acc_gray.png and b/img/clothes/lower/puffy/acc_gray.png differ
diff --git a/img/clothes/lower/puffy/frayed_gray.png b/img/clothes/lower/puffy/frayed_gray.png
index 9d6b6511fd42a48ca2bebbd43964d832ac9982b0..92c122157c3ef79528e335cfbf32eeda9242acf0 100644
Binary files a/img/clothes/lower/puffy/frayed_gray.png and b/img/clothes/lower/puffy/frayed_gray.png differ
diff --git a/img/clothes/lower/puffy/full_gray.png b/img/clothes/lower/puffy/full_gray.png
index 6244bca95a6e72a6160a3fc4cfa768ecbdbe765b..19f3023d0009fbd292b4f0417e997b70f018c165 100644
Binary files a/img/clothes/lower/puffy/full_gray.png and b/img/clothes/lower/puffy/full_gray.png differ
diff --git a/img/clothes/lower/puffy/tattered_gray.png b/img/clothes/lower/puffy/tattered_gray.png
index 78a553641a22d1e96b6110688fca4b819c84ed10..ea2d430206d9cb0ff5a58e9cb7f443016d7e5dc7 100644
Binary files a/img/clothes/lower/puffy/tattered_gray.png and b/img/clothes/lower/puffy/tattered_gray.png differ
diff --git a/img/clothes/lower/puffy/torn_gray.png b/img/clothes/lower/puffy/torn_gray.png
index 40245b7de665e83a95e858083db401ca9c65c8c7..fb79cf7737ae5d1352f3a5d24be57d5263a36ad3 100644
Binary files a/img/clothes/lower/puffy/torn_gray.png and b/img/clothes/lower/puffy/torn_gray.png differ
diff --git a/img/clothes/lower/puffybloomers/frayed_gray.png b/img/clothes/lower/puffybloomers/frayed_gray.png
index 50760a37b3c9fec055691e85f8d4d2ff2e681ffe..f5657516f8d9dd8aaae58e93dc92655b7a4c97f9 100644
Binary files a/img/clothes/lower/puffybloomers/frayed_gray.png and b/img/clothes/lower/puffybloomers/frayed_gray.png differ
diff --git a/img/clothes/lower/puffybloomers/full_gray.png b/img/clothes/lower/puffybloomers/full_gray.png
index 9c7c6a63866a8d9aa179a272140883bdba978071..8847760318286c58c50bc46b7b9f202ebca1fdca 100644
Binary files a/img/clothes/lower/puffybloomers/full_gray.png and b/img/clothes/lower/puffybloomers/full_gray.png differ
diff --git a/img/clothes/lower/puffybloomers/tattered_gray.png b/img/clothes/lower/puffybloomers/tattered_gray.png
index 21263e10e8d742966ed2cc0f3aad0d288518ce03..8c30bab71e1adff65313c60155dcbb0792ea23ee 100644
Binary files a/img/clothes/lower/puffybloomers/tattered_gray.png and b/img/clothes/lower/puffybloomers/tattered_gray.png differ
diff --git a/img/clothes/lower/puffybloomers/torn_gray.png b/img/clothes/lower/puffybloomers/torn_gray.png
index 1483228feddd4e30131f97e4db6fcd79dca11871..b30baf70d56cf465a8441c5e0460468012a6c700 100644
Binary files a/img/clothes/lower/puffybloomers/torn_gray.png and b/img/clothes/lower/puffybloomers/torn_gray.png differ
diff --git a/img/clothes/lower/rag/frayed.png b/img/clothes/lower/rag/frayed.png
index f66adcabd99331435e8a71f4d4ec58c79e837177..a2e86e6891cae0924ecc22384ef4cd14f50c8d25 100644
Binary files a/img/clothes/lower/rag/frayed.png and b/img/clothes/lower/rag/frayed.png differ
diff --git a/img/clothes/lower/rag/full.png b/img/clothes/lower/rag/full.png
index f66adcabd99331435e8a71f4d4ec58c79e837177..a2e86e6891cae0924ecc22384ef4cd14f50c8d25 100644
Binary files a/img/clothes/lower/rag/full.png and b/img/clothes/lower/rag/full.png differ
diff --git a/img/clothes/lower/rag/tattered.png b/img/clothes/lower/rag/tattered.png
index f66adcabd99331435e8a71f4d4ec58c79e837177..a2e86e6891cae0924ecc22384ef4cd14f50c8d25 100644
Binary files a/img/clothes/lower/rag/tattered.png and b/img/clothes/lower/rag/tattered.png differ
diff --git a/img/clothes/lower/rag/torn.png b/img/clothes/lower/rag/torn.png
index f66adcabd99331435e8a71f4d4ec58c79e837177..a2e86e6891cae0924ecc22384ef4cd14f50c8d25 100644
Binary files a/img/clothes/lower/rag/torn.png and b/img/clothes/lower/rag/torn.png differ
diff --git a/img/clothes/lower/retro/acc_gray.png b/img/clothes/lower/retro/acc_gray.png
index 281368eab678a461d0cc341403ba398d939b216a..f9850d8a5e81f53a676f0e1e1cb0186658005466 100644
Binary files a/img/clothes/lower/retro/acc_gray.png and b/img/clothes/lower/retro/acc_gray.png differ
diff --git a/img/clothes/lower/retro/frayed_gray.png b/img/clothes/lower/retro/frayed_gray.png
index f22fc19de518f9e6a1b35ec36bc1bef0cd4c610e..849909a341e746d8a44b3bc0d9f65526f330d469 100644
Binary files a/img/clothes/lower/retro/frayed_gray.png and b/img/clothes/lower/retro/frayed_gray.png differ
diff --git a/img/clothes/lower/retro/full_gray.png b/img/clothes/lower/retro/full_gray.png
index 477a0a232ddcdb11e81aab49a055d1e6be418ec6..97e297958a3610c3dff40793af206cc9f06f5cdd 100644
Binary files a/img/clothes/lower/retro/full_gray.png and b/img/clothes/lower/retro/full_gray.png differ
diff --git a/img/clothes/lower/retro/tattered_gray.png b/img/clothes/lower/retro/tattered_gray.png
index b0caaaf45b2c2a1ec0026a651ded73227991eb82..c4698c02d2f15b55d447c94773b455f852ca0dbb 100644
Binary files a/img/clothes/lower/retro/tattered_gray.png and b/img/clothes/lower/retro/tattered_gray.png differ
diff --git a/img/clothes/lower/retro/torn_gray.png b/img/clothes/lower/retro/torn_gray.png
index 1e4436a5c033992bd1461062aa10da75fe82b6b4..9615acb02cf22efcd6b76834776ee303ad8a3551 100644
Binary files a/img/clothes/lower/retro/torn_gray.png and b/img/clothes/lower/retro/torn_gray.png differ
diff --git a/img/clothes/lower/retroshorts/acc_gray.png b/img/clothes/lower/retroshorts/acc_gray.png
index 281368eab678a461d0cc341403ba398d939b216a..f9850d8a5e81f53a676f0e1e1cb0186658005466 100644
Binary files a/img/clothes/lower/retroshorts/acc_gray.png and b/img/clothes/lower/retroshorts/acc_gray.png differ
diff --git a/img/clothes/lower/retroshorts/frayed_gray.png b/img/clothes/lower/retroshorts/frayed_gray.png
index 84c077c1a5850d26e70197f19e23bba89566863d..6651ed2a339ecf045d736fb57031309a157b3c7c 100644
Binary files a/img/clothes/lower/retroshorts/frayed_gray.png and b/img/clothes/lower/retroshorts/frayed_gray.png differ
diff --git a/img/clothes/lower/retroshorts/full_gray.png b/img/clothes/lower/retroshorts/full_gray.png
index b18f680e6511e58eb8ae904b2274fb461006dacf..1cce6277eb91472619ae4cd519bd09003964a035 100644
Binary files a/img/clothes/lower/retroshorts/full_gray.png and b/img/clothes/lower/retroshorts/full_gray.png differ
diff --git a/img/clothes/lower/retroshorts/tattered_gray.png b/img/clothes/lower/retroshorts/tattered_gray.png
index 82f7985bd5aba0e5b63e2bc71674bb590c68d6c3..397114dcc58be4304277a930126289ff6a05b992 100644
Binary files a/img/clothes/lower/retroshorts/tattered_gray.png and b/img/clothes/lower/retroshorts/tattered_gray.png differ
diff --git a/img/clothes/lower/retroshorts/torn_gray.png b/img/clothes/lower/retroshorts/torn_gray.png
index 632810b7f1a1040bbd17f82d1c930eecf547a274..9d6956b8e373cfa6f7a7ce55665a1d2d9de352f0 100644
Binary files a/img/clothes/lower/retroshorts/torn_gray.png and b/img/clothes/lower/retroshorts/torn_gray.png differ
diff --git a/img/clothes/lower/sailorshorts/frayed_gray.png b/img/clothes/lower/sailorshorts/frayed_gray.png
index 6c63947522ebc48b437a3effd4970c60b3f4bdfa..a132047922d863450e91bfab32dbb9546b551ebd 100644
Binary files a/img/clothes/lower/sailorshorts/frayed_gray.png and b/img/clothes/lower/sailorshorts/frayed_gray.png differ
diff --git a/img/clothes/lower/sailorshorts/full_gray.png b/img/clothes/lower/sailorshorts/full_gray.png
index 70062b87620955a090efdca804051a2e13a238d2..0a2194a93fe8a542575423d40d51cc07d7372ab1 100644
Binary files a/img/clothes/lower/sailorshorts/full_gray.png and b/img/clothes/lower/sailorshorts/full_gray.png differ
diff --git a/img/clothes/lower/sailorshorts/tattered_gray.png b/img/clothes/lower/sailorshorts/tattered_gray.png
index 71df9e01ca4737d35b6ba7bbe90274b6c6cf3133..764aeeb2f2d43b41ce898426112c70f991f68ce7 100644
Binary files a/img/clothes/lower/sailorshorts/tattered_gray.png and b/img/clothes/lower/sailorshorts/tattered_gray.png differ
diff --git a/img/clothes/lower/sailorshorts/torn_gray.png b/img/clothes/lower/sailorshorts/torn_gray.png
index 619a1e9632478779d68784d806cb3aca09742af5..6711fd3f5d75ca1e0d87d32d03f1887959c59264 100644
Binary files a/img/clothes/lower/sailorshorts/torn_gray.png and b/img/clothes/lower/sailorshorts/torn_gray.png differ
diff --git a/img/clothes/lower/sailortrousers/frayed_gray.png b/img/clothes/lower/sailortrousers/frayed_gray.png
index 8fefead811c287127dc880ebf36599077361b66f..a2ecd6f337c38399d97320ae12814101f3c7efa4 100644
Binary files a/img/clothes/lower/sailortrousers/frayed_gray.png and b/img/clothes/lower/sailortrousers/frayed_gray.png differ
diff --git a/img/clothes/lower/sailortrousers/full_gray.png b/img/clothes/lower/sailortrousers/full_gray.png
index ad3e75a8fb4d13319bac8103af75f4a369f70e3f..9afe036c9f6cfdae58931991e33677d188abfd67 100644
Binary files a/img/clothes/lower/sailortrousers/full_gray.png and b/img/clothes/lower/sailortrousers/full_gray.png differ
diff --git a/img/clothes/lower/sailortrousers/tattered_gray.png b/img/clothes/lower/sailortrousers/tattered_gray.png
index eb72dde18a47790118b2f6eaa2c3c4e4da95f2f2..87fe6d289c3cbd7cf4b73503309e50c3de99f19a 100644
Binary files a/img/clothes/lower/sailortrousers/tattered_gray.png and b/img/clothes/lower/sailortrousers/tattered_gray.png differ
diff --git a/img/clothes/lower/sailortrousers/torn_gray.png b/img/clothes/lower/sailortrousers/torn_gray.png
index 1bc6597690adfaddee49348484fc4852856d7df1..94179e7e747552d7ff3c2eb5b7028d242c663bfd 100644
Binary files a/img/clothes/lower/sailortrousers/torn_gray.png and b/img/clothes/lower/sailortrousers/torn_gray.png differ
diff --git a/img/clothes/lower/sarong/acc.png b/img/clothes/lower/sarong/acc.png
index 38bc2af9fda2b7981798577f458f77a0b1461a82..118d783a945d0fff928534a55503479326425597 100644
Binary files a/img/clothes/lower/sarong/acc.png and b/img/clothes/lower/sarong/acc.png differ
diff --git a/img/clothes/lower/sarong/back_gray.png b/img/clothes/lower/sarong/back_gray.png
index a7046e87c9c74c286914bdcc2b808efd9d1b63bc..9ad4adf3936dd7881444c08db04bac2a90b1242c 100644
Binary files a/img/clothes/lower/sarong/back_gray.png and b/img/clothes/lower/sarong/back_gray.png differ
diff --git a/img/clothes/lower/sarong/frayed_gray.png b/img/clothes/lower/sarong/frayed_gray.png
index fd4dd306ead3a626663cc9218573a47b9c68d499..a9548993d2566d0115949251659870f015299739 100644
Binary files a/img/clothes/lower/sarong/frayed_gray.png and b/img/clothes/lower/sarong/frayed_gray.png differ
diff --git a/img/clothes/lower/sarong/full_gray.png b/img/clothes/lower/sarong/full_gray.png
index 0fdb86840bf6af7fddfd6fc87811e41e1643e7ec..a9548993d2566d0115949251659870f015299739 100644
Binary files a/img/clothes/lower/sarong/full_gray.png and b/img/clothes/lower/sarong/full_gray.png differ
diff --git a/img/clothes/lower/sarong/tattered_gray.png b/img/clothes/lower/sarong/tattered_gray.png
index b662bcf9c9fa4b149ecd1cfe180113862274f3ac..a9548993d2566d0115949251659870f015299739 100644
Binary files a/img/clothes/lower/sarong/tattered_gray.png and b/img/clothes/lower/sarong/tattered_gray.png differ
diff --git a/img/clothes/lower/sarong/torn_gray.png b/img/clothes/lower/sarong/torn_gray.png
index b7e322b61dd67459c3d48b0d9b66822eed482fe0..a9548993d2566d0115949251659870f015299739 100644
Binary files a/img/clothes/lower/sarong/torn_gray.png and b/img/clothes/lower/sarong/torn_gray.png differ
diff --git a/img/clothes/lower/scarecrow/frayed.png b/img/clothes/lower/scarecrow/frayed.png
index 8837371fc02487f02bb451b597b1d038b2bdce5f..5359878d339e2d15d000cea526922943341099c9 100644
Binary files a/img/clothes/lower/scarecrow/frayed.png and b/img/clothes/lower/scarecrow/frayed.png differ
diff --git a/img/clothes/lower/scarecrow/full.png b/img/clothes/lower/scarecrow/full.png
index 1c6c1ef151a1d37cf2ac49c445e8d5100ffc081e..35f9353cd0f234780604fb89487e0f4d88a5e661 100644
Binary files a/img/clothes/lower/scarecrow/full.png and b/img/clothes/lower/scarecrow/full.png differ
diff --git a/img/clothes/lower/scarecrow/tattered.png b/img/clothes/lower/scarecrow/tattered.png
index e711e2bf09dd0c007b35f5e70f3f8baa3f9f4b3e..7fb36b1bce5e4664b38150741352b3e8b5a9f8b3 100644
Binary files a/img/clothes/lower/scarecrow/tattered.png and b/img/clothes/lower/scarecrow/tattered.png differ
diff --git a/img/clothes/lower/scarecrow/torn.png b/img/clothes/lower/scarecrow/torn.png
index 4f30547cabb4084710881e915da87acad53be688..a906bde5b62aa96e5d7ebc267a592e4ff622aaf4 100644
Binary files a/img/clothes/lower/scarecrow/torn.png and b/img/clothes/lower/scarecrow/torn.png differ
diff --git a/img/clothes/lower/schoolshorts/frayed_gray.png b/img/clothes/lower/schoolshorts/frayed_gray.png
index fdaf1a48d61bdfa07f90842239a40d1d808be4f3..adf2fb3cffd023067ed6fd60e4b6c0958f82345f 100644
Binary files a/img/clothes/lower/schoolshorts/frayed_gray.png and b/img/clothes/lower/schoolshorts/frayed_gray.png differ
diff --git a/img/clothes/lower/schoolshorts/full_gray.png b/img/clothes/lower/schoolshorts/full_gray.png
index 0fd7ef3e00f33df4174242bb61245ff05e190642..e57d19da270ce908fcb3571c563268f45eb23dfe 100644
Binary files a/img/clothes/lower/schoolshorts/full_gray.png and b/img/clothes/lower/schoolshorts/full_gray.png differ
diff --git a/img/clothes/lower/schoolshorts/tattered_gray.png b/img/clothes/lower/schoolshorts/tattered_gray.png
index e7a9b923e7e574d66e39d1e8825cdf7fb0121e92..f13ca481fba866a372dec3b456ecd2cd27506092 100644
Binary files a/img/clothes/lower/schoolshorts/tattered_gray.png and b/img/clothes/lower/schoolshorts/tattered_gray.png differ
diff --git a/img/clothes/lower/schoolshorts/torn_gray.png b/img/clothes/lower/schoolshorts/torn_gray.png
index 5ba83b48c332b2cd624c846ce35c69a6947835a0..bba31cc9973217718aa84b2626b6c6ff9ff97cd6 100644
Binary files a/img/clothes/lower/schoolshorts/torn_gray.png and b/img/clothes/lower/schoolshorts/torn_gray.png differ
diff --git a/img/clothes/lower/schoolshortsplaid/frayed_gray.png b/img/clothes/lower/schoolshortsplaid/frayed_gray.png
index ec797de993c012af5793450bb1c2046b56609575..f6d6b463542a0c21bb74933c31a030753495b0f2 100644
Binary files a/img/clothes/lower/schoolshortsplaid/frayed_gray.png and b/img/clothes/lower/schoolshortsplaid/frayed_gray.png differ
diff --git a/img/clothes/lower/schoolshortsplaid/full_gray.png b/img/clothes/lower/schoolshortsplaid/full_gray.png
index 8e605edc91f01e2c890f51cad30a8566759491d3..3c7f93d1cc5dca729cc5e37d8e42b9475fd17b24 100644
Binary files a/img/clothes/lower/schoolshortsplaid/full_gray.png and b/img/clothes/lower/schoolshortsplaid/full_gray.png differ
diff --git a/img/clothes/lower/schoolshortsplaid/tattered_gray.png b/img/clothes/lower/schoolshortsplaid/tattered_gray.png
index b49fce20ae928e1c18fc73db59172c5dc5de02e8..55b1a3084189e47a6dd824a461e1b3b2c8c01909 100644
Binary files a/img/clothes/lower/schoolshortsplaid/tattered_gray.png and b/img/clothes/lower/schoolshortsplaid/tattered_gray.png differ
diff --git a/img/clothes/lower/schoolshortsplaid/torn_gray.png b/img/clothes/lower/schoolshortsplaid/torn_gray.png
index ea6c214b06b2fd46347bcbdc59566f7b47f6f934..aed62e490d05f59c5f183b97af2a129d2b5c62d9 100644
Binary files a/img/clothes/lower/schoolshortsplaid/torn_gray.png and b/img/clothes/lower/schoolshortsplaid/torn_gray.png differ
diff --git a/img/clothes/lower/schoolskirt/frayed_gray.png b/img/clothes/lower/schoolskirt/frayed_gray.png
index 77f8b3a4695b49041cb6345170845e23971dce19..18eafd2ec653b6c84c5d6ede66abc7a24a833185 100644
Binary files a/img/clothes/lower/schoolskirt/frayed_gray.png and b/img/clothes/lower/schoolskirt/frayed_gray.png differ
diff --git a/img/clothes/lower/schoolskirt/full_gray.png b/img/clothes/lower/schoolskirt/full_gray.png
index 2986563a619fd0250b42522c45bbede7f2ac2030..2e84b320c23303094d230337025c4b40185af172 100644
Binary files a/img/clothes/lower/schoolskirt/full_gray.png and b/img/clothes/lower/schoolskirt/full_gray.png differ
diff --git a/img/clothes/lower/schoolskirt/tattered_gray.png b/img/clothes/lower/schoolskirt/tattered_gray.png
index 3b76afd6222cdb2f82a157eb3758304545e70cb8..92adc9fb0c13ebb6541ebf61f6d84eb874d34e5e 100644
Binary files a/img/clothes/lower/schoolskirt/tattered_gray.png and b/img/clothes/lower/schoolskirt/tattered_gray.png differ
diff --git a/img/clothes/lower/schoolskirt/torn_gray.png b/img/clothes/lower/schoolskirt/torn_gray.png
index 3f04e95ef88f943ce1904d2de15a7afd991523af..d965d66466acb066e941a6603e2c37fe2b2ed532 100644
Binary files a/img/clothes/lower/schoolskirt/torn_gray.png and b/img/clothes/lower/schoolskirt/torn_gray.png differ
diff --git a/img/clothes/lower/schoolskirt2/frayed_gray.png b/img/clothes/lower/schoolskirt2/frayed_gray.png
index 4d4adbc95f9d25ef83b01dba7241fb0d0495fc12..e9169a42f9c5a94cb7527744b29e04de77830f69 100644
Binary files a/img/clothes/lower/schoolskirt2/frayed_gray.png and b/img/clothes/lower/schoolskirt2/frayed_gray.png differ
diff --git a/img/clothes/lower/schoolskirt2/full_gray.png b/img/clothes/lower/schoolskirt2/full_gray.png
index 91104a489b730b267b4371d6bcc7a3dc7f70058d..88fe98ff10fb65fe4ca396e065eff4cf0c5aa468 100644
Binary files a/img/clothes/lower/schoolskirt2/full_gray.png and b/img/clothes/lower/schoolskirt2/full_gray.png differ
diff --git a/img/clothes/lower/schoolskirt2/tattered_gray.png b/img/clothes/lower/schoolskirt2/tattered_gray.png
index 6d6d90b26869e6005c7360e63366c76ed453cb8c..2cbac212d6ba60c072bd984a8322d5a5de99dfcb 100644
Binary files a/img/clothes/lower/schoolskirt2/tattered_gray.png and b/img/clothes/lower/schoolskirt2/tattered_gray.png differ
diff --git a/img/clothes/lower/schoolskirt2/torn_gray.png b/img/clothes/lower/schoolskirt2/torn_gray.png
index be5f5f527b1b7c759157ae7e8504f95cb2917d36..93190906ac88f2d9fa34d110611275cde37f52d0 100644
Binary files a/img/clothes/lower/schoolskirt2/torn_gray.png and b/img/clothes/lower/schoolskirt2/torn_gray.png differ
diff --git a/img/clothes/lower/schoolskirtlong/frayed_gray.png b/img/clothes/lower/schoolskirtlong/frayed_gray.png
index 3383ca4a156142a16ef30e59e876397a380b36db..36e8b7304c82493503cacd8c1d29f3a5261b81ad 100644
Binary files a/img/clothes/lower/schoolskirtlong/frayed_gray.png and b/img/clothes/lower/schoolskirtlong/frayed_gray.png differ
diff --git a/img/clothes/lower/schoolskirtlong/full_gray.png b/img/clothes/lower/schoolskirtlong/full_gray.png
index c5705209cf214b899b1b3ee65ec58c48f16c9d27..e98287a897606b16d70fa63b2c61ff97030f7bbe 100644
Binary files a/img/clothes/lower/schoolskirtlong/full_gray.png and b/img/clothes/lower/schoolskirtlong/full_gray.png differ
diff --git a/img/clothes/lower/schoolskirtlong/tattered_gray.png b/img/clothes/lower/schoolskirtlong/tattered_gray.png
index c94ce7889845b6c3097da46a24de84a28f137dfa..1b2b03c16c94cd29c72146d4ef72a5050eb406f7 100644
Binary files a/img/clothes/lower/schoolskirtlong/tattered_gray.png and b/img/clothes/lower/schoolskirtlong/tattered_gray.png differ
diff --git a/img/clothes/lower/schoolskirtlong/torn_gray.png b/img/clothes/lower/schoolskirtlong/torn_gray.png
index 11c2b7f60253761561978bddb8362058d02160bc..262eb0d222f9ca4907439f1acf20467d4232a238 100644
Binary files a/img/clothes/lower/schoolskirtlong/torn_gray.png and b/img/clothes/lower/schoolskirtlong/torn_gray.png differ
diff --git a/img/clothes/lower/schoolskirtlong2/frayed_gray.png b/img/clothes/lower/schoolskirtlong2/frayed_gray.png
index 7900c2700aeb1192cc8ce0783a3afa8905c39974..d156707eda20fb867f53f0d34af0925dd859319a 100644
Binary files a/img/clothes/lower/schoolskirtlong2/frayed_gray.png and b/img/clothes/lower/schoolskirtlong2/frayed_gray.png differ
diff --git a/img/clothes/lower/schoolskirtlong2/full_gray.png b/img/clothes/lower/schoolskirtlong2/full_gray.png
index 90eedd9dd0d29eb4c305d0a0b3b9956a6c09e2c2..47ff1cfe0679ff34a0358753d203a1d80ddeef74 100644
Binary files a/img/clothes/lower/schoolskirtlong2/full_gray.png and b/img/clothes/lower/schoolskirtlong2/full_gray.png differ
diff --git a/img/clothes/lower/schoolskirtlong2/tattered_gray.png b/img/clothes/lower/schoolskirtlong2/tattered_gray.png
index 0584a45af36a1322eb5fe965eb1651ec54a141fa..66e556bc2ab519a054c0840210d551e3fe86b152 100644
Binary files a/img/clothes/lower/schoolskirtlong2/tattered_gray.png and b/img/clothes/lower/schoolskirtlong2/tattered_gray.png differ
diff --git a/img/clothes/lower/schoolskirtlong2/torn_gray.png b/img/clothes/lower/schoolskirtlong2/torn_gray.png
index e830512e66693644344c2a48b899d53860d9880e..195715e7cb8e712442f07694f4b0dc88a17e57c6 100644
Binary files a/img/clothes/lower/schoolskirtlong2/torn_gray.png and b/img/clothes/lower/schoolskirtlong2/torn_gray.png differ
diff --git a/img/clothes/lower/schoolskirtplaid/frayed_gray.png b/img/clothes/lower/schoolskirtplaid/frayed_gray.png
index 7973b1eccf3b50d1208a6e44dfe727e27c63de7a..6db8eca455567c01e2d6f97437a0317a196f02b9 100644
Binary files a/img/clothes/lower/schoolskirtplaid/frayed_gray.png and b/img/clothes/lower/schoolskirtplaid/frayed_gray.png differ
diff --git a/img/clothes/lower/schoolskirtplaid/full_gray.png b/img/clothes/lower/schoolskirtplaid/full_gray.png
index acd12d89f95b2cfba0ca63a5cada3fc944ae0ebb..b4f73c9e4023c41891148df438b1d8b11bca7e8d 100644
Binary files a/img/clothes/lower/schoolskirtplaid/full_gray.png and b/img/clothes/lower/schoolskirtplaid/full_gray.png differ
diff --git a/img/clothes/lower/schoolskirtplaid/tattered_gray.png b/img/clothes/lower/schoolskirtplaid/tattered_gray.png
index 0922f18caba083d285fd2b90e4b9e4c206adc0da..81f65c2e9a190d8c8a72f2672907038b08357287 100644
Binary files a/img/clothes/lower/schoolskirtplaid/tattered_gray.png and b/img/clothes/lower/schoolskirtplaid/tattered_gray.png differ
diff --git a/img/clothes/lower/schoolskirtplaid/torn_gray.png b/img/clothes/lower/schoolskirtplaid/torn_gray.png
index 70e13721f5471c3b71e12745793644314bd195d4..10ce41d4ff365a41a1b485b69c5bafe90d6658af 100644
Binary files a/img/clothes/lower/schoolskirtplaid/torn_gray.png and b/img/clothes/lower/schoolskirtplaid/torn_gray.png differ
diff --git a/img/clothes/lower/schoolskirtshort/frayed_gray.png b/img/clothes/lower/schoolskirtshort/frayed_gray.png
index 8641b4a67e131a9526dab41865cb2db1079fa88d..dd4155125fb363c1dafe84c986206a11c08907ff 100644
Binary files a/img/clothes/lower/schoolskirtshort/frayed_gray.png and b/img/clothes/lower/schoolskirtshort/frayed_gray.png differ
diff --git a/img/clothes/lower/schoolskirtshort/full_gray.png b/img/clothes/lower/schoolskirtshort/full_gray.png
index 92501de560f964953630c51d1abf68f5bb39b7a9..97a95faa67e0fed6be8d40f63df72f9dbbefdbdd 100644
Binary files a/img/clothes/lower/schoolskirtshort/full_gray.png and b/img/clothes/lower/schoolskirtshort/full_gray.png differ
diff --git a/img/clothes/lower/schoolskirtshort/tattered_gray.png b/img/clothes/lower/schoolskirtshort/tattered_gray.png
index 2b77acfcb42b6e908f6f57030de21de469a87a3f..2cfe965f91b0963cb2ab8cc3ca3b28dc1be79de5 100644
Binary files a/img/clothes/lower/schoolskirtshort/tattered_gray.png and b/img/clothes/lower/schoolskirtshort/tattered_gray.png differ
diff --git a/img/clothes/lower/schoolskirtshort/torn_gray.png b/img/clothes/lower/schoolskirtshort/torn_gray.png
index 2792323bbc7fd1fccc6c2cc54409d6f5578aac33..3b74279285d7a456f3fdfafd220e04acb3dc6205 100644
Binary files a/img/clothes/lower/schoolskirtshort/torn_gray.png and b/img/clothes/lower/schoolskirtshort/torn_gray.png differ
diff --git a/img/clothes/lower/schoolskirtshort2/frayed_gray.png b/img/clothes/lower/schoolskirtshort2/frayed_gray.png
index 87d8d8a976a2cacd301010c46b39712864613d33..2c751799277046dc7f8e709076ba6b7d7e915aaa 100644
Binary files a/img/clothes/lower/schoolskirtshort2/frayed_gray.png and b/img/clothes/lower/schoolskirtshort2/frayed_gray.png differ
diff --git a/img/clothes/lower/schoolskirtshort2/full_gray.png b/img/clothes/lower/schoolskirtshort2/full_gray.png
index 031a266415b73b9e9c5c7caacb13b7b83fd6a83a..96cde352ce5459acd096d24a124756a4199b6ee2 100644
Binary files a/img/clothes/lower/schoolskirtshort2/full_gray.png and b/img/clothes/lower/schoolskirtshort2/full_gray.png differ
diff --git a/img/clothes/lower/schoolskirtshort2/tattered_gray.png b/img/clothes/lower/schoolskirtshort2/tattered_gray.png
index 0347c52248d532bb9b44a339ccd67a2bfd9de36b..1d9dc3f8fe482b4178c735a4258371b70aa1f639 100644
Binary files a/img/clothes/lower/schoolskirtshort2/tattered_gray.png and b/img/clothes/lower/schoolskirtshort2/tattered_gray.png differ
diff --git a/img/clothes/lower/schoolskirtshort2/torn_gray.png b/img/clothes/lower/schoolskirtshort2/torn_gray.png
index 98eb4950ada2b5d9580f2958d89d57666c8d6c39..c9c48fe10d2c8e4db0fceaca008673d154048d1c 100644
Binary files a/img/clothes/lower/schoolskirtshort2/torn_gray.png and b/img/clothes/lower/schoolskirtshort2/torn_gray.png differ
diff --git a/img/clothes/lower/schooltrousers/frayed_gray.png b/img/clothes/lower/schooltrousers/frayed_gray.png
index fb4c7bb0c6bb62fdbc00aa5396affa181eeb13bb..cdd88fbdb9aab325554cbe1ba45a4f9285901ad4 100644
Binary files a/img/clothes/lower/schooltrousers/frayed_gray.png and b/img/clothes/lower/schooltrousers/frayed_gray.png differ
diff --git a/img/clothes/lower/schooltrousers/full_gray.png b/img/clothes/lower/schooltrousers/full_gray.png
index cfd382f14c4a95ca544a35f7266f0df3a19ddfc2..162c4bf9d2175d49b2c9f5b9ceab0b0a7746c72b 100644
Binary files a/img/clothes/lower/schooltrousers/full_gray.png and b/img/clothes/lower/schooltrousers/full_gray.png differ
diff --git a/img/clothes/lower/schooltrousers/tattered_gray.png b/img/clothes/lower/schooltrousers/tattered_gray.png
index 46c4378a20e70caa3b6997708c12d5f75ff2cb96..3e87604d6f27f65f7320282b34c7e9e9ff7bf727 100644
Binary files a/img/clothes/lower/schooltrousers/tattered_gray.png and b/img/clothes/lower/schooltrousers/tattered_gray.png differ
diff --git a/img/clothes/lower/schooltrousers/torn_gray.png b/img/clothes/lower/schooltrousers/torn_gray.png
index 6dce7476fc2d26cda5499f511d1e0d1bcbafe9d0..5073c0c0e7bbc77eb8a100b6106a7b5af3794ac5 100644
Binary files a/img/clothes/lower/schooltrousers/torn_gray.png and b/img/clothes/lower/schooltrousers/torn_gray.png differ
diff --git a/img/clothes/lower/schooltrousersplaid/frayed_gray.png b/img/clothes/lower/schooltrousersplaid/frayed_gray.png
index 3d6d264e662815526ca71ac6383f92438885ec4c..8bf1b7c5e2bffa77411597ab17bc83e2a6c5b4c7 100644
Binary files a/img/clothes/lower/schooltrousersplaid/frayed_gray.png and b/img/clothes/lower/schooltrousersplaid/frayed_gray.png differ
diff --git a/img/clothes/lower/schooltrousersplaid/full_gray.png b/img/clothes/lower/schooltrousersplaid/full_gray.png
index 4871b3f2c1bad1dd666e0d7c5991279d3c0227ef..077e836a216c6e89fdfc37bec42411aeb0bbd42d 100644
Binary files a/img/clothes/lower/schooltrousersplaid/full_gray.png and b/img/clothes/lower/schooltrousersplaid/full_gray.png differ
diff --git a/img/clothes/lower/schooltrousersplaid/tattered_gray.png b/img/clothes/lower/schooltrousersplaid/tattered_gray.png
index 857b2c5e5a7f778a0843991032e259e4812322ca..b7f73f1aabebed3101900b76a0b00ba32628b775 100644
Binary files a/img/clothes/lower/schooltrousersplaid/tattered_gray.png and b/img/clothes/lower/schooltrousersplaid/tattered_gray.png differ
diff --git a/img/clothes/lower/schooltrousersplaid/torn_gray.png b/img/clothes/lower/schooltrousersplaid/torn_gray.png
index fe89c13bcba350a2dcd21ef403b8ef7807de276d..b92edc4f9cb4b3eba45bb58623475cad72f8a06a 100644
Binary files a/img/clothes/lower/schooltrousersplaid/torn_gray.png and b/img/clothes/lower/schooltrousersplaid/torn_gray.png differ
diff --git a/img/clothes/lower/scout/acc_gray.png b/img/clothes/lower/scout/acc_gray.png
index e6163ea8cd7502e4d65ca3cc56be35ca3948d6b9..09e41a73105810dc6c40343df7eb1630f37e1e72 100644
Binary files a/img/clothes/lower/scout/acc_gray.png and b/img/clothes/lower/scout/acc_gray.png differ
diff --git a/img/clothes/lower/scout/frayed_gray.png b/img/clothes/lower/scout/frayed_gray.png
index 65e4d435ce63a6da2dd986df3650380df430d218..1b16f8c8257c393734e3818194b75f8bd8ffa91f 100644
Binary files a/img/clothes/lower/scout/frayed_gray.png and b/img/clothes/lower/scout/frayed_gray.png differ
diff --git a/img/clothes/lower/scout/full_gray.png b/img/clothes/lower/scout/full_gray.png
index 1827a49da6c877a020fb681158353420304b19cd..4288483a92452b854ad9aace897f87f5a90935cb 100644
Binary files a/img/clothes/lower/scout/full_gray.png and b/img/clothes/lower/scout/full_gray.png differ
diff --git a/img/clothes/lower/scout/tattered_gray.png b/img/clothes/lower/scout/tattered_gray.png
index d4d39ba2a440576b6431e717293ddef1895e346c..760886386d1f463adb928cc030a03edd20c84bd3 100644
Binary files a/img/clothes/lower/scout/tattered_gray.png and b/img/clothes/lower/scout/tattered_gray.png differ
diff --git a/img/clothes/lower/scout/torn_gray.png b/img/clothes/lower/scout/torn_gray.png
index 7823aedc28af942efd4e50733beaa51e75a33050..dffc696dc6b701bf767e5cc21e8914cacf89289f 100644
Binary files a/img/clothes/lower/scout/torn_gray.png and b/img/clothes/lower/scout/torn_gray.png differ
diff --git a/img/clothes/lower/shortalls/acc_gray.png b/img/clothes/lower/shortalls/acc_gray.png
index 17c72a07675ff708b06e735e236d66544d9133f7..e9980e1d7bb39f47bf57a1d5665752adc424430a 100644
Binary files a/img/clothes/lower/shortalls/acc_gray.png and b/img/clothes/lower/shortalls/acc_gray.png differ
diff --git a/img/clothes/lower/shortalls/frayed_gray.png b/img/clothes/lower/shortalls/frayed_gray.png
index 4b6f08586df8e06c9127997e8a5cdb77575231b5..482ed89ff02c95bdb418c31c892135b43c2775df 100644
Binary files a/img/clothes/lower/shortalls/frayed_gray.png and b/img/clothes/lower/shortalls/frayed_gray.png differ
diff --git a/img/clothes/lower/shortalls/full_gray.png b/img/clothes/lower/shortalls/full_gray.png
index f5d7c601df28ee06bf22233af0029fcf3786e6d1..526ab565673685222fd3f0ec3f8fba4b5f0816c5 100644
Binary files a/img/clothes/lower/shortalls/full_gray.png and b/img/clothes/lower/shortalls/full_gray.png differ
diff --git a/img/clothes/lower/shortalls/tattered_gray.png b/img/clothes/lower/shortalls/tattered_gray.png
index 3dd2cbf798aae7c7640e41dc55799913f1fd9279..396c44af42422cb40be3720aafa2a94433858813 100644
Binary files a/img/clothes/lower/shortalls/tattered_gray.png and b/img/clothes/lower/shortalls/tattered_gray.png differ
diff --git a/img/clothes/lower/shortalls/torn_gray.png b/img/clothes/lower/shortalls/torn_gray.png
index 89a90daa27d7d421886a0185ff6da46be1ee77fd..40e91917e19460a080e12553e5667b59793b3c9b 100644
Binary files a/img/clothes/lower/shortalls/torn_gray.png and b/img/clothes/lower/shortalls/torn_gray.png differ
diff --git a/img/clothes/lower/shortballgown/acc_gray.png b/img/clothes/lower/shortballgown/acc_gray.png
index 493328191971d19f80e7456383046e78f1601600..e8a89041530a7ba3810c1815f19a4c80ffbaa832 100644
Binary files a/img/clothes/lower/shortballgown/acc_gray.png and b/img/clothes/lower/shortballgown/acc_gray.png differ
diff --git a/img/clothes/lower/shortballgown/frayed_gray.png b/img/clothes/lower/shortballgown/frayed_gray.png
index f52064f5d7598fff978e82eb9ea3de92c88d5cbb..e5c7226ee6eb702b1316e369a9db69cc6ad61e24 100644
Binary files a/img/clothes/lower/shortballgown/frayed_gray.png and b/img/clothes/lower/shortballgown/frayed_gray.png differ
diff --git a/img/clothes/lower/shortballgown/full_gray.png b/img/clothes/lower/shortballgown/full_gray.png
index 73e433f8dce22c365017208beeb5b4b3610e2e5d..d126dff0a3dcaf2bd5622f7b23ca28df5db97f6b 100644
Binary files a/img/clothes/lower/shortballgown/full_gray.png and b/img/clothes/lower/shortballgown/full_gray.png differ
diff --git a/img/clothes/lower/shortballgown/tattered_gray.png b/img/clothes/lower/shortballgown/tattered_gray.png
index ae08a40eb02451763b0033fadc38b508bb877296..84c245e57e7e5e8f1138e76fea8d226ac166594c 100644
Binary files a/img/clothes/lower/shortballgown/tattered_gray.png and b/img/clothes/lower/shortballgown/tattered_gray.png differ
diff --git a/img/clothes/lower/shortballgown/torn_gray.png b/img/clothes/lower/shortballgown/torn_gray.png
index e2668895187fef1c0caf504d4614b5bee290fa03..93dbff71ac76454f5cbf8fa350fba2d06b32152b 100644
Binary files a/img/clothes/lower/shortballgown/torn_gray.png and b/img/clothes/lower/shortballgown/torn_gray.png differ
diff --git a/img/clothes/lower/shorts/frayed_gray.png b/img/clothes/lower/shorts/frayed_gray.png
index 50f6f1a930e57ae2d098e4d376496225ac9ca952..546e49f457435c4706a21008996184020f22fd95 100644
Binary files a/img/clothes/lower/shorts/frayed_gray.png and b/img/clothes/lower/shorts/frayed_gray.png differ
diff --git a/img/clothes/lower/shorts/full_gray.png b/img/clothes/lower/shorts/full_gray.png
index f34a29a557df3acf1982e11624c9de40b266f71e..de505c6af383c0bb22fdcd189142fd1c93d40e77 100644
Binary files a/img/clothes/lower/shorts/full_gray.png and b/img/clothes/lower/shorts/full_gray.png differ
diff --git a/img/clothes/lower/shorts/tattered_gray.png b/img/clothes/lower/shorts/tattered_gray.png
index afa27363e310c0caab617ccaab9c8de682ba1bba..e9efec352065239b3b21cd69309a18adfb05f4ef 100644
Binary files a/img/clothes/lower/shorts/tattered_gray.png and b/img/clothes/lower/shorts/tattered_gray.png differ
diff --git a/img/clothes/lower/shorts/torn_gray.png b/img/clothes/lower/shorts/torn_gray.png
index 417402d7050b4a4dfc95518432df0afb6efe4716..3deac70f58427856d8cce7b9bd2cb929c7425230 100644
Binary files a/img/clothes/lower/shorts/torn_gray.png and b/img/clothes/lower/shorts/torn_gray.png differ
diff --git a/img/clothes/lower/shrinemaiden/frayed.png b/img/clothes/lower/shrinemaiden/frayed.png
index 01ed3a7e32ee368442819251e59cb25f3736e6d4..1958ec1fab33f6464ee0cdcba08566a79c7c5530 100644
Binary files a/img/clothes/lower/shrinemaiden/frayed.png and b/img/clothes/lower/shrinemaiden/frayed.png differ
diff --git a/img/clothes/lower/shrinemaiden/full.png b/img/clothes/lower/shrinemaiden/full.png
index ffe150702339796faa923a61e6a3ce4df0ec148e..fc4096c7c9781320c9f2a2d21a06ab56ea9eca1b 100644
Binary files a/img/clothes/lower/shrinemaiden/full.png and b/img/clothes/lower/shrinemaiden/full.png differ
diff --git a/img/clothes/lower/shrinemaiden/tattered.png b/img/clothes/lower/shrinemaiden/tattered.png
index 5a1aa16f546ca89fce370c38545d9ee6c36dd292..0a425f87c901ba445dff4da50e9bd02716bd5c99 100644
Binary files a/img/clothes/lower/shrinemaiden/tattered.png and b/img/clothes/lower/shrinemaiden/tattered.png differ
diff --git a/img/clothes/lower/shrinemaiden/torn.png b/img/clothes/lower/shrinemaiden/torn.png
index e6904b9774dcf7da72a82da6af2ec86f8039bf43..362163f1e5307e1468eb5b5c4eeeaaead02e9183 100644
Binary files a/img/clothes/lower/shrinemaiden/torn.png and b/img/clothes/lower/shrinemaiden/torn.png differ
diff --git a/img/clothes/lower/skele/frayed.png b/img/clothes/lower/skele/frayed.png
index 02e5192d3b8865ffbb9a429301a154fc632b2945..fe8d3cb31646abe47b84605f36589e000bb4acf4 100644
Binary files a/img/clothes/lower/skele/frayed.png and b/img/clothes/lower/skele/frayed.png differ
diff --git a/img/clothes/lower/skele/full.png b/img/clothes/lower/skele/full.png
index c5c0c6ba692bf82073e1d46785436bfd0c6c403b..c710407c9b259e0ea2b36d2f99efda3c47e0cd19 100644
Binary files a/img/clothes/lower/skele/full.png and b/img/clothes/lower/skele/full.png differ
diff --git a/img/clothes/lower/skele/tattered.png b/img/clothes/lower/skele/tattered.png
index 1defd0a94fa641f443904d9218c1e66feaf439fd..1eb6b9603f67cd1d8d896b7b0083735d60707dbf 100644
Binary files a/img/clothes/lower/skele/tattered.png and b/img/clothes/lower/skele/tattered.png differ
diff --git a/img/clothes/lower/skele/torn.png b/img/clothes/lower/skele/torn.png
index 70ba5e410dc62eae55773a7d198d517f72927524..7eb517c0c65a1ca55c9230bb5c9f88283da10fba 100644
Binary files a/img/clothes/lower/skele/torn.png and b/img/clothes/lower/skele/torn.png differ
diff --git a/img/clothes/lower/skimpylolita/acc.png b/img/clothes/lower/skimpylolita/acc.png
index 93538b9b064148d09e9c40a02fb1977acc7549ec..8c4c9c7c0465ea84cba5738616b514fa74df19a6 100644
Binary files a/img/clothes/lower/skimpylolita/acc.png and b/img/clothes/lower/skimpylolita/acc.png differ
diff --git a/img/clothes/lower/skimpylolita/frayed_gray.png b/img/clothes/lower/skimpylolita/frayed_gray.png
index 4e51e5ee3f05a20087cc457a278436acc4f56d73..900ccd8ddac03354f2d6bc9315462680e1dc8e7c 100644
Binary files a/img/clothes/lower/skimpylolita/frayed_gray.png and b/img/clothes/lower/skimpylolita/frayed_gray.png differ
diff --git a/img/clothes/lower/skimpylolita/full_gray.png b/img/clothes/lower/skimpylolita/full_gray.png
index 3f9e99a8d560637422b94983719f41dc2a3b4bb4..5cc7b24605c1225cf0311355b643bb3006fe1439 100644
Binary files a/img/clothes/lower/skimpylolita/full_gray.png and b/img/clothes/lower/skimpylolita/full_gray.png differ
diff --git a/img/clothes/lower/skimpylolita/tattered_gray.png b/img/clothes/lower/skimpylolita/tattered_gray.png
index 7f14a8e4b879f22379c13ccf0423bd99eff5f7f5..0dc6a279ea55678c634714388421b8352194981e 100644
Binary files a/img/clothes/lower/skimpylolita/tattered_gray.png and b/img/clothes/lower/skimpylolita/tattered_gray.png differ
diff --git a/img/clothes/lower/skimpylolita/torn_gray.png b/img/clothes/lower/skimpylolita/torn_gray.png
index 30b145fb2f72b3f292a4b56afedae77a6dae9f27..9971cdaef83fd09d21cb31ec22bae7a038e7b2de 100644
Binary files a/img/clothes/lower/skimpylolita/torn_gray.png and b/img/clothes/lower/skimpylolita/torn_gray.png differ
diff --git a/img/clothes/lower/slacks/frayed_gray.png b/img/clothes/lower/slacks/frayed_gray.png
index 8d0c5476df701488993f04b7d39d252be3a21f3c..51e4b06a98beece42d30f2dd49e416c43a6547c9 100644
Binary files a/img/clothes/lower/slacks/frayed_gray.png and b/img/clothes/lower/slacks/frayed_gray.png differ
diff --git a/img/clothes/lower/slacks/full_gray.png b/img/clothes/lower/slacks/full_gray.png
index 454671fd789492983f9ef63bc49face01e1af3b7..c97d67fe253995849a850b6955723fb9c45fddb9 100644
Binary files a/img/clothes/lower/slacks/full_gray.png and b/img/clothes/lower/slacks/full_gray.png differ
diff --git a/img/clothes/lower/slacks/tattered_gray.png b/img/clothes/lower/slacks/tattered_gray.png
index 5518f235c2c690cbd4cfaa8119bb1fe013d73697..1db0581b2f5919e91ed13cc88d0e312cf43c0f03 100644
Binary files a/img/clothes/lower/slacks/tattered_gray.png and b/img/clothes/lower/slacks/tattered_gray.png differ
diff --git a/img/clothes/lower/slacks/torn_gray.png b/img/clothes/lower/slacks/torn_gray.png
index 5d74793d9e0e4334cfe57b0f69e3c3fbd48a115f..9c9bff026cfb04e4f5b45eadca9d223380360726 100644
Binary files a/img/clothes/lower/slacks/torn_gray.png and b/img/clothes/lower/slacks/torn_gray.png differ
diff --git a/img/clothes/lower/slutler/frayed.png b/img/clothes/lower/slutler/frayed.png
index 04a55007cfebd82428b6269efafef63e9163eab6..081bff705997fc38e6a895ec2181517007d1724e 100644
Binary files a/img/clothes/lower/slutler/frayed.png and b/img/clothes/lower/slutler/frayed.png differ
diff --git a/img/clothes/lower/slutler/full.png b/img/clothes/lower/slutler/full.png
index 3d60982c7c26664726f159835dd9e542423ec0a7..3378d4393d46bd6b2ba0ee18cacb0a31d762faf5 100644
Binary files a/img/clothes/lower/slutler/full.png and b/img/clothes/lower/slutler/full.png differ
diff --git a/img/clothes/lower/slutler/tattered.png b/img/clothes/lower/slutler/tattered.png
index 2fe835044948fc833cedba2c7fe6e0539a76fae1..3fa674ee09e6a8d4d0ece542e4f52d1e4eb320f5 100644
Binary files a/img/clothes/lower/slutler/tattered.png and b/img/clothes/lower/slutler/tattered.png differ
diff --git a/img/clothes/lower/slutler/torn.png b/img/clothes/lower/slutler/torn.png
index a55f8eb5bf892d1ab5ed41a00946196f46bfd558..4eca7b1beaf876fa954245e1cb2ab52b7ab08004 100644
Binary files a/img/clothes/lower/slutler/torn.png and b/img/clothes/lower/slutler/torn.png differ
diff --git a/img/clothes/lower/soccer/frayed_gray.png b/img/clothes/lower/soccer/frayed_gray.png
index fd275f8419b5674bf6002431f444432a3028f14a..5ed2e7608174e628cf275b6e05857ffe53bfc4ba 100644
Binary files a/img/clothes/lower/soccer/frayed_gray.png and b/img/clothes/lower/soccer/frayed_gray.png differ
diff --git a/img/clothes/lower/soccer/full_gray.png b/img/clothes/lower/soccer/full_gray.png
index 7b36505fcef90dd58bfbc69744be9c0e8304226c..04532669cfb9819d9a5023fad91c5b3df016eb70 100644
Binary files a/img/clothes/lower/soccer/full_gray.png and b/img/clothes/lower/soccer/full_gray.png differ
diff --git a/img/clothes/lower/soccer/tattered_gray.png b/img/clothes/lower/soccer/tattered_gray.png
index 6fc32652663274acafa2c3020dac44a4a6148d01..7b64fb58aa3cba312561013c254e2908a1d78bb5 100644
Binary files a/img/clothes/lower/soccer/tattered_gray.png and b/img/clothes/lower/soccer/tattered_gray.png differ
diff --git a/img/clothes/lower/soccer/torn_gray.png b/img/clothes/lower/soccer/torn_gray.png
index dbae60e61526fd05d8806c1363fd3eb978403358..a126adfa0544b0e944f85d861401e4e297549d23 100644
Binary files a/img/clothes/lower/soccer/torn_gray.png and b/img/clothes/lower/soccer/torn_gray.png differ
diff --git a/img/clothes/lower/split/acc_gray.png b/img/clothes/lower/split/acc_gray.png
index e22c1be2c022d5024c4ffa992de1227d5c1df832..5193224c9c72fdda83c2296cd64394a65059a921 100644
Binary files a/img/clothes/lower/split/acc_gray.png and b/img/clothes/lower/split/acc_gray.png differ
diff --git a/img/clothes/lower/split/frayed_gray.png b/img/clothes/lower/split/frayed_gray.png
index 36e8905f69a4a807f36e3702f342c3c20ed5da69..223cd214d5fe3636c10bd00b49c6f9a53320fb1f 100644
Binary files a/img/clothes/lower/split/frayed_gray.png and b/img/clothes/lower/split/frayed_gray.png differ
diff --git a/img/clothes/lower/split/full_gray.png b/img/clothes/lower/split/full_gray.png
index 591590071784bb4fd7fc2bb43b8cd96d03ddd8a0..361733687847beaf2b950db09fbb91ce3cd661e5 100644
Binary files a/img/clothes/lower/split/full_gray.png and b/img/clothes/lower/split/full_gray.png differ
diff --git a/img/clothes/lower/split/tattered_gray.png b/img/clothes/lower/split/tattered_gray.png
index 8d1bf68c2cfb4acf0713aeb3ceec12bc89d191ee..7b1e3331d216437487bf5e33e46a03f9399fea9f 100644
Binary files a/img/clothes/lower/split/tattered_gray.png and b/img/clothes/lower/split/tattered_gray.png differ
diff --git a/img/clothes/lower/split/torn_gray.png b/img/clothes/lower/split/torn_gray.png
index e9de7ffad7b0de126f33d89e010534ab13c367a6..0b4af6f63dfef9e6d0b756be0d412537ca2b3899 100644
Binary files a/img/clothes/lower/split/torn_gray.png and b/img/clothes/lower/split/torn_gray.png differ
diff --git a/img/clothes/lower/straight trousers/frayed_gray.png b/img/clothes/lower/straight trousers/frayed_gray.png
index fe35b6fc8c400babc76fd9328113a89414ea3303..582c9a09c9a6140d4ab4229f40d7f06593a0774d 100644
Binary files a/img/clothes/lower/straight trousers/frayed_gray.png and b/img/clothes/lower/straight trousers/frayed_gray.png differ
diff --git a/img/clothes/lower/straight trousers/full_gray.png b/img/clothes/lower/straight trousers/full_gray.png
index 41fafce722c48f86a97f80cf1f0bf499d7aa8dc9..7a39ed8476cf11e790b44ce1b84aa6e764d436c2 100644
Binary files a/img/clothes/lower/straight trousers/full_gray.png and b/img/clothes/lower/straight trousers/full_gray.png differ
diff --git a/img/clothes/lower/straight trousers/tattered_gray.png b/img/clothes/lower/straight trousers/tattered_gray.png
index a0108ede5d517bfe91b5cd09b9854dc376f71550..e48b0f550db84a45d19cf904a3978a3bc01458a0 100644
Binary files a/img/clothes/lower/straight trousers/tattered_gray.png and b/img/clothes/lower/straight trousers/tattered_gray.png differ
diff --git a/img/clothes/lower/straight trousers/torn_gray.png b/img/clothes/lower/straight trousers/torn_gray.png
index 020d494d2ddd825a710a5d74197714c48e490fb8..ff17531032b22af74d13fdb60c086262af5a9c98 100644
Binary files a/img/clothes/lower/straight trousers/torn_gray.png and b/img/clothes/lower/straight trousers/torn_gray.png differ
diff --git a/img/clothes/lower/straightjacket/frayed.png b/img/clothes/lower/straightjacket/frayed.png
index 9cd8258d98e5b69869e255cb692d3bb40a3854b8..9ee61e69e6abe203b68fd12be1777118ebb4cc7c 100644
Binary files a/img/clothes/lower/straightjacket/frayed.png and b/img/clothes/lower/straightjacket/frayed.png differ
diff --git a/img/clothes/lower/straightjacket/full.png b/img/clothes/lower/straightjacket/full.png
index 9cd8258d98e5b69869e255cb692d3bb40a3854b8..9ee61e69e6abe203b68fd12be1777118ebb4cc7c 100644
Binary files a/img/clothes/lower/straightjacket/full.png and b/img/clothes/lower/straightjacket/full.png differ
diff --git a/img/clothes/lower/straightjacket/tattered.png b/img/clothes/lower/straightjacket/tattered.png
index 9cd8258d98e5b69869e255cb692d3bb40a3854b8..9ee61e69e6abe203b68fd12be1777118ebb4cc7c 100644
Binary files a/img/clothes/lower/straightjacket/tattered.png and b/img/clothes/lower/straightjacket/tattered.png differ
diff --git a/img/clothes/lower/straightjacket/torn.png b/img/clothes/lower/straightjacket/torn.png
index 9cd8258d98e5b69869e255cb692d3bb40a3854b8..9ee61e69e6abe203b68fd12be1777118ebb4cc7c 100644
Binary files a/img/clothes/lower/straightjacket/torn.png and b/img/clothes/lower/straightjacket/torn.png differ
diff --git a/img/clothes/lower/sundress/frayed_gray.png b/img/clothes/lower/sundress/frayed_gray.png
index 68b840b09dfc1a3033f81aaa0e2b287c6a97b512..9444df373a7af94663a70c6df0e112c1730ab4cf 100644
Binary files a/img/clothes/lower/sundress/frayed_gray.png and b/img/clothes/lower/sundress/frayed_gray.png differ
diff --git a/img/clothes/lower/sundress/full_gray.png b/img/clothes/lower/sundress/full_gray.png
index 0e9d4b01ea40d8c02acab8659a368056d76e5471..97c2206e7bb0d107b20ab129cc3146968f5153c2 100644
Binary files a/img/clothes/lower/sundress/full_gray.png and b/img/clothes/lower/sundress/full_gray.png differ
diff --git a/img/clothes/lower/sundress/tattered_gray.png b/img/clothes/lower/sundress/tattered_gray.png
index 11d6b40abd358beeac09f850a47853f69e0bf287..22097c871409683c0806cd64fed114f11fa359c7 100644
Binary files a/img/clothes/lower/sundress/tattered_gray.png and b/img/clothes/lower/sundress/tattered_gray.png differ
diff --git a/img/clothes/lower/sundress/torn_gray.png b/img/clothes/lower/sundress/torn_gray.png
index 39410f46c6cec5c690dc17e95d8bc9c50d8c4139..74b1a4922b6f437dee5273ae5f055a4218994342 100644
Binary files a/img/clothes/lower/sundress/torn_gray.png and b/img/clothes/lower/sundress/torn_gray.png differ
diff --git a/img/clothes/lower/sweaterlarge/frayed.png b/img/clothes/lower/sweaterlarge/frayed.png
index 1f6b1d7fb3d059cbc6da787e907e734a1a562ab0..3febfc29b7c9d4d0c58c5b279c34b7f6092c2cb0 100644
Binary files a/img/clothes/lower/sweaterlarge/frayed.png and b/img/clothes/lower/sweaterlarge/frayed.png differ
diff --git a/img/clothes/lower/sweaterlarge/full.png b/img/clothes/lower/sweaterlarge/full.png
index 1f6b1d7fb3d059cbc6da787e907e734a1a562ab0..3febfc29b7c9d4d0c58c5b279c34b7f6092c2cb0 100644
Binary files a/img/clothes/lower/sweaterlarge/full.png and b/img/clothes/lower/sweaterlarge/full.png differ
diff --git a/img/clothes/lower/sweaterlarge/tattered.png b/img/clothes/lower/sweaterlarge/tattered.png
index 1f6b1d7fb3d059cbc6da787e907e734a1a562ab0..3febfc29b7c9d4d0c58c5b279c34b7f6092c2cb0 100644
Binary files a/img/clothes/lower/sweaterlarge/tattered.png and b/img/clothes/lower/sweaterlarge/tattered.png differ
diff --git a/img/clothes/lower/sweaterlarge/torn.png b/img/clothes/lower/sweaterlarge/torn.png
index 1f6b1d7fb3d059cbc6da787e907e734a1a562ab0..3febfc29b7c9d4d0c58c5b279c34b7f6092c2cb0 100644
Binary files a/img/clothes/lower/sweaterlarge/torn.png and b/img/clothes/lower/sweaterlarge/torn.png differ
diff --git a/img/clothes/lower/sweatpants/frayed_gray.png b/img/clothes/lower/sweatpants/frayed_gray.png
index 59c957e9111c415505ede8b61f0376a58dbd5c22..462622e2d7e91f45d7bf06ebe1a9c0f3216b4d92 100644
Binary files a/img/clothes/lower/sweatpants/frayed_gray.png and b/img/clothes/lower/sweatpants/frayed_gray.png differ
diff --git a/img/clothes/lower/sweatpants/full_gray.png b/img/clothes/lower/sweatpants/full_gray.png
index bc947b2b6b877d000aba9bd4af75c225d1eee8e4..7846b28c5a24d05098426926e812ccc0b3b721cd 100644
Binary files a/img/clothes/lower/sweatpants/full_gray.png and b/img/clothes/lower/sweatpants/full_gray.png differ
diff --git a/img/clothes/lower/sweatpants/tattered_gray.png b/img/clothes/lower/sweatpants/tattered_gray.png
index dca9ee80a118a1812902ecdf29552f581b15bf8f..b4f0f67ac3b50be4ad71707cfc2cf1132c426685 100644
Binary files a/img/clothes/lower/sweatpants/tattered_gray.png and b/img/clothes/lower/sweatpants/tattered_gray.png differ
diff --git a/img/clothes/lower/sweatpants/torn_gray.png b/img/clothes/lower/sweatpants/torn_gray.png
index b5de952e7adb99a55525897c2e0c1fc3e80638f1..43890a9fed99f787c34d2a9846033b15f74a5414 100644
Binary files a/img/clothes/lower/sweatpants/torn_gray.png and b/img/clothes/lower/sweatpants/torn_gray.png differ
diff --git a/img/clothes/lower/towel/frayed_gray.png b/img/clothes/lower/towel/frayed_gray.png
index 44734f13fb4a911e55929bb53b67755768973a0f..f1d01907d157f52ab210b2956e4b9eb0ec4d71a3 100644
Binary files a/img/clothes/lower/towel/frayed_gray.png and b/img/clothes/lower/towel/frayed_gray.png differ
diff --git a/img/clothes/lower/towel/full_gray.png b/img/clothes/lower/towel/full_gray.png
index 44734f13fb4a911e55929bb53b67755768973a0f..f1d01907d157f52ab210b2956e4b9eb0ec4d71a3 100644
Binary files a/img/clothes/lower/towel/full_gray.png and b/img/clothes/lower/towel/full_gray.png differ
diff --git a/img/clothes/lower/towel/tattered_gray.png b/img/clothes/lower/towel/tattered_gray.png
index 44734f13fb4a911e55929bb53b67755768973a0f..f1d01907d157f52ab210b2956e4b9eb0ec4d71a3 100644
Binary files a/img/clothes/lower/towel/tattered_gray.png and b/img/clothes/lower/towel/tattered_gray.png differ
diff --git a/img/clothes/lower/towel/torn_gray.png b/img/clothes/lower/towel/torn_gray.png
index 44734f13fb4a911e55929bb53b67755768973a0f..f1d01907d157f52ab210b2956e4b9eb0ec4d71a3 100644
Binary files a/img/clothes/lower/towel/torn_gray.png and b/img/clothes/lower/towel/torn_gray.png differ
diff --git a/img/clothes/lower/towellarge/frayed_gray.png b/img/clothes/lower/towellarge/frayed_gray.png
index f1bb8e44b94b4fa30d23072c29f896e32ffa0d74..22951f65317842347080d2195c05fc668a4f57a4 100644
Binary files a/img/clothes/lower/towellarge/frayed_gray.png and b/img/clothes/lower/towellarge/frayed_gray.png differ
diff --git a/img/clothes/lower/towellarge/full_gray.png b/img/clothes/lower/towellarge/full_gray.png
index f1bb8e44b94b4fa30d23072c29f896e32ffa0d74..22951f65317842347080d2195c05fc668a4f57a4 100644
Binary files a/img/clothes/lower/towellarge/full_gray.png and b/img/clothes/lower/towellarge/full_gray.png differ
diff --git a/img/clothes/lower/towellarge/tattered_gray.png b/img/clothes/lower/towellarge/tattered_gray.png
index f1bb8e44b94b4fa30d23072c29f896e32ffa0d74..22951f65317842347080d2195c05fc668a4f57a4 100644
Binary files a/img/clothes/lower/towellarge/tattered_gray.png and b/img/clothes/lower/towellarge/tattered_gray.png differ
diff --git a/img/clothes/lower/towellarge/torn_gray.png b/img/clothes/lower/towellarge/torn_gray.png
index f1bb8e44b94b4fa30d23072c29f896e32ffa0d74..22951f65317842347080d2195c05fc668a4f57a4 100644
Binary files a/img/clothes/lower/towellarge/torn_gray.png and b/img/clothes/lower/towellarge/torn_gray.png differ
diff --git a/img/clothes/lower/traditionalmaid/frayed.png b/img/clothes/lower/traditionalmaid/frayed.png
index 67c876b19fa80c7db33e75e2d67110d00672b80a..3142effb3d92dd918d51fcf23bba0470b246714d 100644
Binary files a/img/clothes/lower/traditionalmaid/frayed.png and b/img/clothes/lower/traditionalmaid/frayed.png differ
diff --git a/img/clothes/lower/traditionalmaid/full.png b/img/clothes/lower/traditionalmaid/full.png
index 74ee76dba7349ad488defe458ef2420c9aad5d8a..9a3b1db1b973f562025fc37307909ef51bb59b80 100644
Binary files a/img/clothes/lower/traditionalmaid/full.png and b/img/clothes/lower/traditionalmaid/full.png differ
diff --git a/img/clothes/lower/traditionalmaid/tattered.png b/img/clothes/lower/traditionalmaid/tattered.png
index d8f3315c88f225bf4f9f53203ea6485af3b25480..c83791bd27347acde220484c7e4db296a37b6f5c 100644
Binary files a/img/clothes/lower/traditionalmaid/tattered.png and b/img/clothes/lower/traditionalmaid/tattered.png differ
diff --git a/img/clothes/lower/traditionalmaid/torn.png b/img/clothes/lower/traditionalmaid/torn.png
index 423fd373feb9c8c1a1c19157a5ac8c4c24216e61..142b4704dfb35374cd0d91534ad1c2a2503e48ba 100644
Binary files a/img/clothes/lower/traditionalmaid/torn.png and b/img/clothes/lower/traditionalmaid/torn.png differ
diff --git a/img/clothes/lower/transparentnurse/frayed.png b/img/clothes/lower/transparentnurse/frayed.png
index 440fbd0a8590536431118ef44b828d21ac0f81b8..1f18373c8d6ddff3d0858de0b25d97351eb0ce5f 100644
Binary files a/img/clothes/lower/transparentnurse/frayed.png and b/img/clothes/lower/transparentnurse/frayed.png differ
diff --git a/img/clothes/lower/transparentnurse/full.png b/img/clothes/lower/transparentnurse/full.png
index 440fbd0a8590536431118ef44b828d21ac0f81b8..1f18373c8d6ddff3d0858de0b25d97351eb0ce5f 100644
Binary files a/img/clothes/lower/transparentnurse/full.png and b/img/clothes/lower/transparentnurse/full.png differ
diff --git a/img/clothes/lower/transparentnurse/tattered.png b/img/clothes/lower/transparentnurse/tattered.png
index 440fbd0a8590536431118ef44b828d21ac0f81b8..1f18373c8d6ddff3d0858de0b25d97351eb0ce5f 100644
Binary files a/img/clothes/lower/transparentnurse/tattered.png and b/img/clothes/lower/transparentnurse/tattered.png differ
diff --git a/img/clothes/lower/transparentnurse/torn.png b/img/clothes/lower/transparentnurse/torn.png
index 440fbd0a8590536431118ef44b828d21ac0f81b8..1f18373c8d6ddff3d0858de0b25d97351eb0ce5f 100644
Binary files a/img/clothes/lower/transparentnurse/torn.png and b/img/clothes/lower/transparentnurse/torn.png differ
diff --git a/img/clothes/lower/trousers/frayed_gray.png b/img/clothes/lower/trousers/frayed_gray.png
index a4dbc2014d3d82533f75b567f0dff1dd95b50490..23b257c198a7b01b693ea4dc6023c05f212ee94f 100644
Binary files a/img/clothes/lower/trousers/frayed_gray.png and b/img/clothes/lower/trousers/frayed_gray.png differ
diff --git a/img/clothes/lower/trousers/full_gray.png b/img/clothes/lower/trousers/full_gray.png
index ef62751e94a9f63ce4d649e315155ac179860df0..2f4145e772379e7794c466b063cf610ee5732404 100644
Binary files a/img/clothes/lower/trousers/full_gray.png and b/img/clothes/lower/trousers/full_gray.png differ
diff --git a/img/clothes/lower/trousers/tattered_gray.png b/img/clothes/lower/trousers/tattered_gray.png
index b344f258b907f73abcb0a626df461ee99627cd5d..e57a93da79bfd91b156f01e32ec5b8b7cc41e43f 100644
Binary files a/img/clothes/lower/trousers/tattered_gray.png and b/img/clothes/lower/trousers/tattered_gray.png differ
diff --git a/img/clothes/lower/trousers/torn_gray.png b/img/clothes/lower/trousers/torn_gray.png
index 7cd586cb4f4dd810c481aba33c5cf4e1fb0e8ee0..06ac18a130df45a1e4eb1700d86cbf0a9183f10e 100644
Binary files a/img/clothes/lower/trousers/torn_gray.png and b/img/clothes/lower/trousers/torn_gray.png differ
diff --git a/img/clothes/lower/tuxedo/frayed.png b/img/clothes/lower/tuxedo/frayed.png
index ef7cc468db34a030857dec3abb405319580cea91..23fa5ee6d72eb34ee0736fa003b1aaa655b90a13 100644
Binary files a/img/clothes/lower/tuxedo/frayed.png and b/img/clothes/lower/tuxedo/frayed.png differ
diff --git a/img/clothes/lower/tuxedo/full.png b/img/clothes/lower/tuxedo/full.png
index 1ad785c4ab05939ff003bd54cc485c040ad37762..4c694962611e8d7a0ed5a4d5831a256ce63885f6 100644
Binary files a/img/clothes/lower/tuxedo/full.png and b/img/clothes/lower/tuxedo/full.png differ
diff --git a/img/clothes/lower/tuxedo/tattered.png b/img/clothes/lower/tuxedo/tattered.png
index dbc19375d570662480771718a11ca471e709662e..fb8fca2e855735d9931776c9b8c5d58545d6691f 100644
Binary files a/img/clothes/lower/tuxedo/tattered.png and b/img/clothes/lower/tuxedo/tattered.png differ
diff --git a/img/clothes/lower/tuxedo/torn.png b/img/clothes/lower/tuxedo/torn.png
index ccf8c531dc53fc2fe1a053885c3b61eee0cb95b3..cc7fd0cf29ed66a1ba1f83d3bef0c1361d552d94 100644
Binary files a/img/clothes/lower/tuxedo/torn.png and b/img/clothes/lower/tuxedo/torn.png differ
diff --git a/img/clothes/lower/victorianmaid/frayed.png b/img/clothes/lower/victorianmaid/frayed.png
index 8733498bb59669174ac72aa1cc39020a4d9c309e..b56658f302ae05b84e234cbda5aa3bb8a49a7aa9 100644
Binary files a/img/clothes/lower/victorianmaid/frayed.png and b/img/clothes/lower/victorianmaid/frayed.png differ
diff --git a/img/clothes/lower/victorianmaid/full.png b/img/clothes/lower/victorianmaid/full.png
index 691ef050ea33f9f15f9b7058853cfd1637abdcea..d988466b9a483586313052066d9f7d40b19dbd0e 100644
Binary files a/img/clothes/lower/victorianmaid/full.png and b/img/clothes/lower/victorianmaid/full.png differ
diff --git a/img/clothes/lower/victorianmaid/tattered.png b/img/clothes/lower/victorianmaid/tattered.png
index 71090b1e59a01d97e9bab31243b4c2fc2cbe8b47..40252b269f06957b0bffcc7b3d9c5ab183a87f3f 100644
Binary files a/img/clothes/lower/victorianmaid/tattered.png and b/img/clothes/lower/victorianmaid/tattered.png differ
diff --git a/img/clothes/lower/victorianmaid/torn.png b/img/clothes/lower/victorianmaid/torn.png
index 427ac0809db67b01b4513de5c65efc87a640d6f4..e22630182bdf1a8d0c8723fd2987de4963af0a04 100644
Binary files a/img/clothes/lower/victorianmaid/torn.png and b/img/clothes/lower/victorianmaid/torn.png differ
diff --git a/img/clothes/lower/virginkillerdress/frayed_gray.png b/img/clothes/lower/virginkillerdress/frayed_gray.png
index 555edb249434ef08d5bfcffe3ca21bc4331810a0..c2441cb7fdfea859bf6a9620b1af5938c781bbff 100644
Binary files a/img/clothes/lower/virginkillerdress/frayed_gray.png and b/img/clothes/lower/virginkillerdress/frayed_gray.png differ
diff --git a/img/clothes/lower/virginkillerdress/full_gray.png b/img/clothes/lower/virginkillerdress/full_gray.png
index ad936d7d453dc9a6580efbf87d733fbbb36b8205..336df40cdf46b52c3328c5664084b39431f9c836 100644
Binary files a/img/clothes/lower/virginkillerdress/full_gray.png and b/img/clothes/lower/virginkillerdress/full_gray.png differ
diff --git a/img/clothes/lower/virginkillerdress/tattered_gray.png b/img/clothes/lower/virginkillerdress/tattered_gray.png
index 9099998b5976d70feaf2478a18d6bf56a2a70b85..20591de1935766e34e4524473f8da94254ea5a77 100644
Binary files a/img/clothes/lower/virginkillerdress/tattered_gray.png and b/img/clothes/lower/virginkillerdress/tattered_gray.png differ
diff --git a/img/clothes/lower/virginkillerdress/torn_gray.png b/img/clothes/lower/virginkillerdress/torn_gray.png
index b1b9d3be6d42226de569e95de51feaeb0950dd59..3cbf73120a862c3204976624cba0b8421db76e78 100644
Binary files a/img/clothes/lower/virginkillerdress/torn_gray.png and b/img/clothes/lower/virginkillerdress/torn_gray.png differ
diff --git a/img/clothes/lower/waistapron/frayed_gray.png b/img/clothes/lower/waistapron/frayed_gray.png
index d786bd22f21d64fa87c8eea4650cee5ce6a8d2fe..d0cb18be5fc3748ce8d3f1df454e1d99688c7230 100644
Binary files a/img/clothes/lower/waistapron/frayed_gray.png and b/img/clothes/lower/waistapron/frayed_gray.png differ
diff --git a/img/clothes/lower/waistapron/full_gray.png b/img/clothes/lower/waistapron/full_gray.png
index 5ff4bb01371056f5c188e2d8a167ca443b65c28d..4347f2c85ab546bc174bfb6509fa282fb69d090e 100644
Binary files a/img/clothes/lower/waistapron/full_gray.png and b/img/clothes/lower/waistapron/full_gray.png differ
diff --git a/img/clothes/lower/waistapron/tattered_gray.png b/img/clothes/lower/waistapron/tattered_gray.png
index 25241e3b9b07bf8c02985a808439bc63a2e8322e..1c94d9e84c74e3ef93417283253e2af9905dffb8 100644
Binary files a/img/clothes/lower/waistapron/tattered_gray.png and b/img/clothes/lower/waistapron/tattered_gray.png differ
diff --git a/img/clothes/lower/waistapron/torn_gray.png b/img/clothes/lower/waistapron/torn_gray.png
index 7efa8dab57bfa90aad55ce6e0df5b5a869d2016f..d557024ab89b02e42cd15c3725ec49a938e2bbf8 100644
Binary files a/img/clothes/lower/waistapron/torn_gray.png and b/img/clothes/lower/waistapron/torn_gray.png differ
diff --git a/img/clothes/lower/waiter/frayed.png b/img/clothes/lower/waiter/frayed.png
index e7d45948832e987f752d5a15c388fb25d6d060fc..9554f465cd1c7c963eb68167c8640f8ab961b7a9 100644
Binary files a/img/clothes/lower/waiter/frayed.png and b/img/clothes/lower/waiter/frayed.png differ
diff --git a/img/clothes/lower/waiter/full.png b/img/clothes/lower/waiter/full.png
index f71580ed492368160e056bd66fa27de2c8bf1ca1..159a69c78f1d141609d0e368061b05445877d7f3 100644
Binary files a/img/clothes/lower/waiter/full.png and b/img/clothes/lower/waiter/full.png differ
diff --git a/img/clothes/lower/waiter/tattered.png b/img/clothes/lower/waiter/tattered.png
index 803c6f48182ab1525d96f401f377692fe4fa33e4..8f1664e578d919527e57a6d0961203a4ca2ae1a2 100644
Binary files a/img/clothes/lower/waiter/tattered.png and b/img/clothes/lower/waiter/tattered.png differ
diff --git a/img/clothes/lower/waiter/torn.png b/img/clothes/lower/waiter/torn.png
index 7c302ed79d5a2b006a7d7940fafa57dd9a2f5e01..605e5332c254b41394164c4001adc9684e65bec9 100644
Binary files a/img/clothes/lower/waiter/torn.png and b/img/clothes/lower/waiter/torn.png differ
diff --git a/img/clothes/lower/waitress/acc_gray.png b/img/clothes/lower/waitress/acc_gray.png
index 1802897db0ca58bb8ca483f29754ffc60fc6d7d4..e3abf73708615d8ceec98bd466bdbc23d11d4a05 100644
Binary files a/img/clothes/lower/waitress/acc_gray.png and b/img/clothes/lower/waitress/acc_gray.png differ
diff --git a/img/clothes/lower/waitress/frayed_gray.png b/img/clothes/lower/waitress/frayed_gray.png
index ae487ce48e1ab4a42255f4fb0263a6c2f0f56fb0..873c0714f5b97d0526110c386182d537a1830927 100644
Binary files a/img/clothes/lower/waitress/frayed_gray.png and b/img/clothes/lower/waitress/frayed_gray.png differ
diff --git a/img/clothes/lower/waitress/full_gray.png b/img/clothes/lower/waitress/full_gray.png
index 103dcc7eb15194d2d15c3d3a69f5ca011514cafb..82d9c20336722248e43104c9201ff43d7524536c 100644
Binary files a/img/clothes/lower/waitress/full_gray.png and b/img/clothes/lower/waitress/full_gray.png differ
diff --git a/img/clothes/lower/waitress/tattered_gray.png b/img/clothes/lower/waitress/tattered_gray.png
index dd8f0cecdde70f1186a768209163da33dc51e2ef..00a110d4a4cb3d67e867073250310146c7813b16 100644
Binary files a/img/clothes/lower/waitress/tattered_gray.png and b/img/clothes/lower/waitress/tattered_gray.png differ
diff --git a/img/clothes/lower/waitress/torn_gray.png b/img/clothes/lower/waitress/torn_gray.png
index fea6ce8e2c03a611d75e2c0165c04a5bd63a2fbd..34750c6a015004fc65c66fa7dd9ef27ddc5af14a 100644
Binary files a/img/clothes/lower/waitress/torn_gray.png and b/img/clothes/lower/waitress/torn_gray.png differ
diff --git a/img/clothes/lower/wide leg trousers/acc_gray.png b/img/clothes/lower/wide leg trousers/acc_gray.png
index a12251c2a38ff8d840d0a60c37ea0858db784f95..f162bcbda36e845e38915a05f8b1945c9aa4e43e 100644
Binary files a/img/clothes/lower/wide leg trousers/acc_gray.png and b/img/clothes/lower/wide leg trousers/acc_gray.png differ
diff --git a/img/clothes/lower/wide leg trousers/frayed_gray.png b/img/clothes/lower/wide leg trousers/frayed_gray.png
index 9ad86db14f4b741eba95164e3247796fbcb5f606..a39e83634ade7ec8facc8bef4c23f6565042a808 100644
Binary files a/img/clothes/lower/wide leg trousers/frayed_gray.png and b/img/clothes/lower/wide leg trousers/frayed_gray.png differ
diff --git a/img/clothes/lower/wide leg trousers/full_gray.png b/img/clothes/lower/wide leg trousers/full_gray.png
index c51d31160e8dc22f52e22a0aa56b3904b312ed4b..0eca36fea6bd1138de966efba8dfc6dd1fd20622 100644
Binary files a/img/clothes/lower/wide leg trousers/full_gray.png and b/img/clothes/lower/wide leg trousers/full_gray.png differ
diff --git a/img/clothes/lower/wide leg trousers/tattered_gray.png b/img/clothes/lower/wide leg trousers/tattered_gray.png
index 828c8d5aa9d4f58adc27591022763cc6e7e7300e..31e09b98787cd66fc0f1d0e0d880f14c4d247276 100644
Binary files a/img/clothes/lower/wide leg trousers/tattered_gray.png and b/img/clothes/lower/wide leg trousers/tattered_gray.png differ
diff --git a/img/clothes/lower/wide leg trousers/torn_gray.png b/img/clothes/lower/wide leg trousers/torn_gray.png
index 89923027e213faaba916bc9afb7b0e458015d905..bd683b0b39478800cd873838976d48b57759935d 100644
Binary files a/img/clothes/lower/wide leg trousers/torn_gray.png and b/img/clothes/lower/wide leg trousers/torn_gray.png differ
diff --git a/img/clothes/lower/witch/acc_gray.png b/img/clothes/lower/witch/acc_gray.png
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/lower/witch/acc_gray.png and b/img/clothes/lower/witch/acc_gray.png differ
diff --git a/img/clothes/lower/witch/frayed_gray.png b/img/clothes/lower/witch/frayed_gray.png
index d54be27b976af8fbf6672a2aab26d8137d3f7819..863cbe34571c0a0120b6d4387853159cf83c9547 100644
Binary files a/img/clothes/lower/witch/frayed_gray.png and b/img/clothes/lower/witch/frayed_gray.png differ
diff --git a/img/clothes/lower/witch/full_gray.png b/img/clothes/lower/witch/full_gray.png
index a7e1cd597ca45574045e7d815d36fb27b384fe18..b63120bc0053c67956c117bbc4540dfb88056059 100644
Binary files a/img/clothes/lower/witch/full_gray.png and b/img/clothes/lower/witch/full_gray.png differ
diff --git a/img/clothes/lower/witch/tattered_gray.png b/img/clothes/lower/witch/tattered_gray.png
index be2ef2ee935a095d2a66b546295f1bdea198a1b4..2632c7a645e10dee7ae945521c733788f9e9a6e1 100644
Binary files a/img/clothes/lower/witch/tattered_gray.png and b/img/clothes/lower/witch/tattered_gray.png differ
diff --git a/img/clothes/lower/witch/torn_gray.png b/img/clothes/lower/witch/torn_gray.png
index 618b25711037ad55f5265eb81afadda0c2609696..15ce9471c5a5da5adea50257c3f0e1eaeaa1afa8 100644
Binary files a/img/clothes/lower/witch/torn_gray.png and b/img/clothes/lower/witch/torn_gray.png differ
diff --git a/img/clothes/lower/witch_scaled/acc_gray.png b/img/clothes/lower/witch_scaled/acc_gray.png
new file mode 100644
index 0000000000000000000000000000000000000000..7aca8ac7e8e14857d4140202a05d72977cf60f7d
Binary files /dev/null and b/img/clothes/lower/witch_scaled/acc_gray.png differ
diff --git a/img/clothes/lower/witch_scaled/frayed_gray.png b/img/clothes/lower/witch_scaled/frayed_gray.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7cd85ed692e64725647d1b999702fcd9888615d
Binary files /dev/null and b/img/clothes/lower/witch_scaled/frayed_gray.png differ
diff --git a/img/clothes/lower/witch_scaled/full_gray.png b/img/clothes/lower/witch_scaled/full_gray.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c34e0d615056789b7cb67a8701be61a705f918e
Binary files /dev/null and b/img/clothes/lower/witch_scaled/full_gray.png differ
diff --git a/img/clothes/lower/witch_scaled/tattered_gray.png b/img/clothes/lower/witch_scaled/tattered_gray.png
new file mode 100644
index 0000000000000000000000000000000000000000..0151d3fce782982d84d2cc0dae05d49143ad2027
Binary files /dev/null and b/img/clothes/lower/witch_scaled/tattered_gray.png differ
diff --git a/img/clothes/lower/witch_scaled/torn_gray.png b/img/clothes/lower/witch_scaled/torn_gray.png
new file mode 100644
index 0000000000000000000000000000000000000000..637a60bddd38f4baf7913e40bd5118eb40fbe155
Binary files /dev/null and b/img/clothes/lower/witch_scaled/torn_gray.png differ
diff --git a/img/clothes/lower/yoga pants/acc.png b/img/clothes/lower/yoga pants/acc.png
index 94d3d79aa30c55bf641e721f0514b3a35566a80a..6fae5409fe25daef83ea8e8f92fb1c0c8c57a262 100644
Binary files a/img/clothes/lower/yoga pants/acc.png and b/img/clothes/lower/yoga pants/acc.png differ
diff --git a/img/clothes/lower/yoga pants/acc_gray.png b/img/clothes/lower/yoga pants/acc_gray.png
index 082eb9e3a6d26d202c7fcab91cd29d42562aa69c..179af20c04c410745f7adfa7620f9825f8985ee4 100644
Binary files a/img/clothes/lower/yoga pants/acc_gray.png and b/img/clothes/lower/yoga pants/acc_gray.png differ
diff --git a/img/clothes/lower/yoga pants/frayed.png b/img/clothes/lower/yoga pants/frayed.png
index 712ee89539409db14610abdc1df95961393d83b7..c6798fc835c593d9e24a6602497048a8a7dbefc7 100644
Binary files a/img/clothes/lower/yoga pants/frayed.png and b/img/clothes/lower/yoga pants/frayed.png differ
diff --git a/img/clothes/lower/yoga pants/full.png b/img/clothes/lower/yoga pants/full.png
index 6843a0752e4ddf570236777624bdb69734c06f0c..31510b6acdc8caa1f2cb806681311c630e966f99 100644
Binary files a/img/clothes/lower/yoga pants/full.png and b/img/clothes/lower/yoga pants/full.png differ
diff --git a/img/clothes/lower/yoga pants/tattered.png b/img/clothes/lower/yoga pants/tattered.png
index ef3078210598f686aa363493fc5497566eca2b89..6eaac6e6536946f4bf0e83626dd3515c095d7b45 100644
Binary files a/img/clothes/lower/yoga pants/tattered.png and b/img/clothes/lower/yoga pants/tattered.png differ
diff --git a/img/clothes/lower/yoga pants/torn.png b/img/clothes/lower/yoga pants/torn.png
index 1ca150383817c39aa798022d57aa30adaecb63bb..af4748bcdf50d534ffa8f8b7be681e42e13ec6ff 100644
Binary files a/img/clothes/lower/yoga pants/torn.png and b/img/clothes/lower/yoga pants/torn.png differ
diff --git a/img/clothes/masks/formfitting_a.png b/img/clothes/masks/formfitting_a.png
index 803a0a5c952785e3c0b8d8cdcdf0a1b2c4146cda..a5c8f4d224c13fc9256ac5643b57e37eac0449e7 100644
Binary files a/img/clothes/masks/formfitting_a.png and b/img/clothes/masks/formfitting_a.png differ
diff --git a/img/clothes/masks/formfitting_breasts.png b/img/clothes/masks/formfitting_breasts.png
index 2fad569fc99208bc731305034bc3130c052f1844..71db6986d3e3102aeb886cf2345cdc7b40c13a41 100644
Binary files a/img/clothes/masks/formfitting_breasts.png and b/img/clothes/masks/formfitting_breasts.png differ
diff --git a/img/clothes/masks/formfitting_f.png b/img/clothes/masks/formfitting_f.png
index 8e93144218fa4cd76d5c266fc81e93db86ccc3c3..8a173d3fc0e8271a21f40391e38ad982a989219a 100644
Binary files a/img/clothes/masks/formfitting_f.png and b/img/clothes/masks/formfitting_f.png differ
diff --git a/img/clothes/masks/formfitting_left_move.png b/img/clothes/masks/formfitting_left_move.png
index ce0111a64a5b4d6b28c75bcc176d1bd555b8ecfc..99b1f6432324225c59d7e50987a1d39dd198577b 100644
Binary files a/img/clothes/masks/formfitting_left_move.png and b/img/clothes/masks/formfitting_left_move.png differ
diff --git a/img/clothes/masks/formfitting_right_move.png b/img/clothes/masks/formfitting_right_move.png
index 98c7d724e75db5adc996e55b07b73f1a4802d026..f6f569967bac1592135b034a4004ce9c38c11564 100644
Binary files a/img/clothes/masks/formfitting_right_move.png and b/img/clothes/masks/formfitting_right_move.png differ
diff --git a/img/clothes/neck/boa/full_gray.png b/img/clothes/neck/boa/full_gray.png
index 73abf331dfdaf2d606aa717cdc3663f05cde4267..8bed85913309115825fde740801e012f173d23e9 100644
Binary files a/img/clothes/neck/boa/full_gray.png and b/img/clothes/neck/boa/full_gray.png differ
diff --git a/img/clothes/neck/bowtie/full_gray.png b/img/clothes/neck/bowtie/full_gray.png
index 62ad795bc826494540fcfd7e48f93897b5fe8cdd..fd2dc2eb89daee12e83f96cf2b3f89c121af8f93 100644
Binary files a/img/clothes/neck/bowtie/full_gray.png and b/img/clothes/neck/bowtie/full_gray.png differ
diff --git a/img/clothes/neck/bowtie/full_nocollar_gray.png b/img/clothes/neck/bowtie/full_nocollar_gray.png
index c4aa4393768b67ad79d31c823ebcaec755431565..7bef571e4f05159cb687d26cbcb5859f7b3e7a30 100644
Binary files a/img/clothes/neck/bowtie/full_nocollar_gray.png and b/img/clothes/neck/bowtie/full_nocollar_gray.png differ
diff --git a/img/clothes/neck/bunnycollar/full.png b/img/clothes/neck/bunnycollar/full.png
index a45f6a901a3b27327831ea524abd422ef796f2f2..10ed8a634d6991c3e609db0b8f8d51a9005557ea 100644
Binary files a/img/clothes/neck/bunnycollar/full.png and b/img/clothes/neck/bunnycollar/full.png differ
diff --git a/img/clothes/neck/cat/full.png b/img/clothes/neck/cat/full.png
index e03aeb8f8e081a3501737e0b3c4e01a0118f5203..043dda8cb7e148f94cef75f22bb41fe32944b656 100644
Binary files a/img/clothes/neck/cat/full.png and b/img/clothes/neck/cat/full.png differ
diff --git a/img/clothes/neck/chaingold/full.png b/img/clothes/neck/chaingold/full.png
index d55672f174c8b26568411e6b466aa4dd31a9559e..6bec52ce01a9f553339121e2753672522fdf668c 100644
Binary files a/img/clothes/neck/chaingold/full.png and b/img/clothes/neck/chaingold/full.png differ
diff --git a/img/clothes/neck/chainiron/full.png b/img/clothes/neck/chainiron/full.png
index 90c060d86b7b60a85f04cf27c065f6fd8734635b..fa5c73d7aad4be7cdb109ab287f02d7a844e7dd5 100644
Binary files a/img/clothes/neck/chainiron/full.png and b/img/clothes/neck/chainiron/full.png differ
diff --git a/img/clothes/neck/clothchoker/full_gray.png b/img/clothes/neck/clothchoker/full_gray.png
index 0606a0b294ad720e4462de4af04c9aeee4c16412..85cc990e1b3808c9930a85bd6cda90ac2f49fd61 100644
Binary files a/img/clothes/neck/clothchoker/full_gray.png and b/img/clothes/neck/clothchoker/full_gray.png differ
diff --git a/img/clothes/neck/collar/full.png b/img/clothes/neck/collar/full.png
index b7eb9aa3a7c79c3c0d8e6a36a65bbaf22381f88c..34f69ea089efe3bb80105229588af5c0a4b134b8 100644
Binary files a/img/clothes/neck/collar/full.png and b/img/clothes/neck/collar/full.png differ
diff --git a/img/clothes/neck/collarfetish/full_gray.png b/img/clothes/neck/collarfetish/full_gray.png
index fe9595d53aaba59d9a63e17874717f0a8aecd9fd..ad3a13b140beb97e30a4b0d5b8aa51cb5d410a18 100644
Binary files a/img/clothes/neck/collarfetish/full_gray.png and b/img/clothes/neck/collarfetish/full_gray.png differ
diff --git a/img/clothes/neck/collarleash/acc.png b/img/clothes/neck/collarleash/acc.png
index 45f826c2ba9c46da5014c69cc04e0bebd5e30188..68461a329e5d79eb6ba932016319fa733ed4b490 100644
Binary files a/img/clothes/neck/collarleash/acc.png and b/img/clothes/neck/collarleash/acc.png differ
diff --git a/img/clothes/neck/collarleash/full.png b/img/clothes/neck/collarleash/full.png
index b7eb9aa3a7c79c3c0d8e6a36a65bbaf22381f88c..34f69ea089efe3bb80105229588af5c0a4b134b8 100644
Binary files a/img/clothes/neck/collarleash/full.png and b/img/clothes/neck/collarleash/full.png differ
diff --git a/img/clothes/neck/collarleashfetish/acc.png b/img/clothes/neck/collarleashfetish/acc.png
index 9a5edbc6c3285bb706f559473fc2a8c1c04916b2..aff2f0b627463f178d48bb35fb42c4948012eadc 100644
Binary files a/img/clothes/neck/collarleashfetish/acc.png and b/img/clothes/neck/collarleashfetish/acc.png differ
diff --git a/img/clothes/neck/collarleashfetish/full_gray.png b/img/clothes/neck/collarleashfetish/full_gray.png
index fe9595d53aaba59d9a63e17874717f0a8aecd9fd..ad3a13b140beb97e30a4b0d5b8aa51cb5d410a18 100644
Binary files a/img/clothes/neck/collarleashfetish/full_gray.png and b/img/clothes/neck/collarleashfetish/full_gray.png differ
diff --git a/img/clothes/neck/cow/full.png b/img/clothes/neck/cow/full.png
index 25362bfd0c698fd08a8adf4f3c1c7562bc9c4365..fa1b98c8421aaf9687c3023313a4e5fc0bcd4a06 100644
Binary files a/img/clothes/neck/cow/full.png and b/img/clothes/neck/cow/full.png differ
diff --git a/img/clothes/neck/darkpendant/full.png b/img/clothes/neck/darkpendant/full.png
index b0702d886017f2c8ba333f49eec9b6a03ee59f4d..7762ea24a4d92e99071a3b6ed875bf321cb01d7e 100644
Binary files a/img/clothes/neck/darkpendant/full.png and b/img/clothes/neck/darkpendant/full.png differ
diff --git a/img/clothes/neck/freeuse/full.png b/img/clothes/neck/freeuse/full.png
index 7bd53d1b97d0c09ca9d2127135dbc7204b448345..04c7fe1cf99bc7319788e4ba3bec0226c3de9ab5 100644
Binary files a/img/clothes/neck/freeuse/full.png and b/img/clothes/neck/freeuse/full.png differ
diff --git a/img/clothes/neck/freeuseleash/acc.png b/img/clothes/neck/freeuseleash/acc.png
index 45f826c2ba9c46da5014c69cc04e0bebd5e30188..68461a329e5d79eb6ba932016319fa733ed4b490 100644
Binary files a/img/clothes/neck/freeuseleash/acc.png and b/img/clothes/neck/freeuseleash/acc.png differ
diff --git a/img/clothes/neck/freeuseleash/full.png b/img/clothes/neck/freeuseleash/full.png
index 7bd53d1b97d0c09ca9d2127135dbc7204b448345..04c7fe1cf99bc7319788e4ba3bec0226c3de9ab5 100644
Binary files a/img/clothes/neck/freeuseleash/full.png and b/img/clothes/neck/freeuseleash/full.png differ
diff --git a/img/clothes/neck/goldchoker/full.png b/img/clothes/neck/goldchoker/full.png
index 171d77797026ed32a53766d9a3b0abd6acdb40c8..14a66f646b7e1a610cc9e896e7c4c2eaa7fa05e6 100644
Binary files a/img/clothes/neck/goldchoker/full.png and b/img/clothes/neck/goldchoker/full.png differ
diff --git a/img/clothes/neck/heartchoker/full.png b/img/clothes/neck/heartchoker/full.png
index f195ccf8fae2bfaaba9952e321c15a5d90110a0e..d18ec4623cd76f74dec380d639aced22fa7c8b4e 100644
Binary files a/img/clothes/neck/heartchoker/full.png and b/img/clothes/neck/heartchoker/full.png differ
diff --git a/img/clothes/neck/holypendant/full.png b/img/clothes/neck/holypendant/full.png
index c138208afb8c5f849a28c2eb0efdc1c6776bb920..ba9504c173a8c877ea7500a7077162b68129c9f4 100644
Binary files a/img/clothes/neck/holypendant/full.png and b/img/clothes/neck/holypendant/full.png differ
diff --git a/img/clothes/neck/holystole/full.png b/img/clothes/neck/holystole/full.png
index 50bbc99e72bcf761d3a2e70a08190fa026bdcd77..90142fe32b782f07bd942785be43f2d81ca978bb 100644
Binary files a/img/clothes/neck/holystole/full.png and b/img/clothes/neck/holystole/full.png differ
diff --git a/img/clothes/neck/ivorynecklace/full.png b/img/clothes/neck/ivorynecklace/full.png
index dcc7a6d0e3745b27be56739bc8eb5715393a4ff3..84bd54b8c720bd06284e1b093e6334e24673e882 100644
Binary files a/img/clothes/neck/ivorynecklace/full.png and b/img/clothes/neck/ivorynecklace/full.png differ
diff --git a/img/clothes/neck/lacechoker/full_gray.png b/img/clothes/neck/lacechoker/full_gray.png
index 9c1a25afa74302c6a1a6f14d35aabe14d0cc0c1c..da17ddbd16f849470948e61e064bafaa13beefe3 100644
Binary files a/img/clothes/neck/lacechoker/full_gray.png and b/img/clothes/neck/lacechoker/full_gray.png differ
diff --git a/img/clothes/neck/lacechokerold/full_gray.png b/img/clothes/neck/lacechokerold/full_gray.png
index ce3d2bc5342e11f48629d109a66f3324c8b03dd8..13b19e97b9a382ed095ecb5365969ffd555bbfbe 100644
Binary files a/img/clothes/neck/lacechokerold/full_gray.png and b/img/clothes/neck/lacechokerold/full_gray.png differ
diff --git a/img/clothes/neck/lovelocket/full_gray.png b/img/clothes/neck/lovelocket/full_gray.png
index 5487c60a32fdc01409b987851cd5d4a3cd33f0b7..1c14b2cbb2d28d17a78f97805482c0f25a038f68 100644
Binary files a/img/clothes/neck/lovelocket/full_gray.png and b/img/clothes/neck/lovelocket/full_gray.png differ
diff --git a/img/clothes/neck/ribbontie/full_gray.png b/img/clothes/neck/ribbontie/full_gray.png
index 627374c34c9fa2ec5dda1ed16bddee3215b7f77f..0d527f5ef232b1d071e0faa79973faa38460ce2d 100644
Binary files a/img/clothes/neck/ribbontie/full_gray.png and b/img/clothes/neck/ribbontie/full_gray.png differ
diff --git a/img/clothes/neck/ribbontie/full_nocollar_gray.png b/img/clothes/neck/ribbontie/full_nocollar_gray.png
index 9ee27ebc6546bf077fa027430abb49db3a2450b8..afa7ddd910c450a00f03eddbbb2b8b36a7f5405c 100644
Binary files a/img/clothes/neck/ribbontie/full_nocollar_gray.png and b/img/clothes/neck/ribbontie/full_nocollar_gray.png differ
diff --git a/img/clothes/neck/ringedcollar/full.png b/img/clothes/neck/ringedcollar/full.png
index 620ed8ed4e220bfd4458e9673257c9fc456ea78c..9dc3527cca9f958a981993f4b1d5a16870084898 100644
Binary files a/img/clothes/neck/ringedcollar/full.png and b/img/clothes/neck/ringedcollar/full.png differ
diff --git a/img/clothes/neck/scarf/full_gray.png b/img/clothes/neck/scarf/full_gray.png
index ec367b1578816c6f69f3aca7babd11a61bde7c6a..a9f1ef4a27dfa147f21a8ec831a61c89479b636e 100644
Binary files a/img/clothes/neck/scarf/full_gray.png and b/img/clothes/neck/scarf/full_gray.png differ
diff --git a/img/clothes/neck/serafuku ribbon/full_gray.png b/img/clothes/neck/serafuku ribbon/full_gray.png
index 724664f019acc25f8746c2080a8e0a025315ee02..25b337e4e8de4850949c18bfbe0164ff5284690d 100644
Binary files a/img/clothes/neck/serafuku ribbon/full_gray.png and b/img/clothes/neck/serafuku ribbon/full_gray.png differ
diff --git a/img/clothes/neck/serafuku ribbon/full_serafuku_gray.png b/img/clothes/neck/serafuku ribbon/full_serafuku_gray.png
index f6368ee9b413f16dfaf9747bad1aa4284657d0fb..ab936f806bf89c621f0bd7259f00f4a8058b58d8 100644
Binary files a/img/clothes/neck/serafuku ribbon/full_serafuku_gray.png and b/img/clothes/neck/serafuku ribbon/full_serafuku_gray.png differ
diff --git a/img/clothes/neck/shorttie/acc_gray.png b/img/clothes/neck/shorttie/acc_gray.png
index 32fffe0f3b8deac84a0c5345076ca7a94ef4d14c..b53b56ea3b4417173dfd74c9b5ab06713b8292ed 100644
Binary files a/img/clothes/neck/shorttie/acc_gray.png and b/img/clothes/neck/shorttie/acc_gray.png differ
diff --git a/img/clothes/neck/shorttie/full_gray.png b/img/clothes/neck/shorttie/full_gray.png
index 27164674db0ba645b27b5145047d31f9f72634d8..71253625b00a52d4a86e8ef56cbdd0c08fd4bbb9 100644
Binary files a/img/clothes/neck/shorttie/full_gray.png and b/img/clothes/neck/shorttie/full_gray.png differ
diff --git a/img/clothes/neck/spiked/full.png b/img/clothes/neck/spiked/full.png
index 3666cc65bed590c3db676d52d2cb8ee77f28e474..11dcf13683614e98a3033e596d12624831d97eb6 100644
Binary files a/img/clothes/neck/spiked/full.png and b/img/clothes/neck/spiked/full.png differ
diff --git a/img/clothes/neck/spikedleash/acc.png b/img/clothes/neck/spikedleash/acc.png
index 3ae5f91ea22f7f6cc409f83d55d8ddc51d8c1b5c..6b13852e5d886f82d75e2614fbcd696a0cb5e070 100644
Binary files a/img/clothes/neck/spikedleash/acc.png and b/img/clothes/neck/spikedleash/acc.png differ
diff --git a/img/clothes/neck/spikedleash/full.png b/img/clothes/neck/spikedleash/full.png
index 3666cc65bed590c3db676d52d2cb8ee77f28e474..11dcf13683614e98a3033e596d12624831d97eb6 100644
Binary files a/img/clothes/neck/spikedleash/full.png and b/img/clothes/neck/spikedleash/full.png differ
diff --git a/img/clothes/neck/stonependant/full.png b/img/clothes/neck/stonependant/full.png
index c35c5f88a4f5fc34f0b2ffa638eaa87b702d08c9..d88db1255a5aa886b8c631901cc11f420facefb3 100644
Binary files a/img/clothes/neck/stonependant/full.png and b/img/clothes/neck/stonependant/full.png differ
diff --git a/img/clothes/neck/suspenders/acc_alt_gray.png b/img/clothes/neck/suspenders/acc_alt_gray.png
index bb401dded5ba400886d5a874d899950139e99c05..731529651518ef04c94d82cba3368fa767eca172 100644
Binary files a/img/clothes/neck/suspenders/acc_alt_gray.png and b/img/clothes/neck/suspenders/acc_alt_gray.png differ
diff --git a/img/clothes/neck/suspenders/acc_gray.png b/img/clothes/neck/suspenders/acc_gray.png
index a500801c67f85d0940572d2b2bbfdee67a7692d8..731529651518ef04c94d82cba3368fa767eca172 100644
Binary files a/img/clothes/neck/suspenders/acc_gray.png and b/img/clothes/neck/suspenders/acc_gray.png differ
diff --git a/img/clothes/neck/suspenders/full_alt_gray.png b/img/clothes/neck/suspenders/full_alt_gray.png
index 85d9ce51165b0a688ac8c34e9a94b2390fae97cc..2f5e9f619f4baff4a9ea72e11b4da49960c6c7c2 100644
Binary files a/img/clothes/neck/suspenders/full_alt_gray.png and b/img/clothes/neck/suspenders/full_alt_gray.png differ
diff --git a/img/clothes/neck/suspenders/full_gray.png b/img/clothes/neck/suspenders/full_gray.png
index f4f533d13817b6c0c610eee3571c3cfd086f493c..37e4b43dc8274f517d342168a17d1821b6cbf27a 100644
Binary files a/img/clothes/neck/suspenders/full_gray.png and b/img/clothes/neck/suspenders/full_gray.png differ
diff --git a/img/clothes/neck/suspenders/mask.png b/img/clothes/neck/suspenders/mask.png
index 735aa7a4a156eb7a25eb4ede90e01676707cd1ef..564991962f98a08f13e7d6cdd506b01cd32a7b76 100644
Binary files a/img/clothes/neck/suspenders/mask.png and b/img/clothes/neck/suspenders/mask.png differ
diff --git a/img/clothes/neck/tie/acc_gray.png b/img/clothes/neck/tie/acc_gray.png
index 2d4179fd5f4167750fe549cad951fe351bf1b243..860dc8c64ef13d96f63af0b8930c6982f3dcc728 100644
Binary files a/img/clothes/neck/tie/acc_gray.png and b/img/clothes/neck/tie/acc_gray.png differ
diff --git a/img/clothes/neck/tie/full_gray.png b/img/clothes/neck/tie/full_gray.png
index ee953c8cc6a4ea9c97c213b27101c9b9c312ae57..f9521e4cbe95231bf256de2378996c68b157adbb 100644
Binary files a/img/clothes/neck/tie/full_gray.png and b/img/clothes/neck/tie/full_gray.png differ
diff --git a/img/clothes/neck/tie/full_nocollar_gray.png b/img/clothes/neck/tie/full_nocollar_gray.png
index e12f15f4bc885cedf13c835ebe3cc91be68b73ac..96c6bc57fde99bfe9a574901dfc3c62b04275bcc 100644
Binary files a/img/clothes/neck/tie/full_nocollar_gray.png and b/img/clothes/neck/tie/full_nocollar_gray.png differ
diff --git a/img/clothes/neck/whistle/full.png b/img/clothes/neck/whistle/full.png
index 1a26ab6a6a7a34755c6ab11d89e8a842eddd9aed..bca7e4d01bc7f97c98fc40b5aa2a97f7886657c8 100644
Binary files a/img/clothes/neck/whistle/full.png and b/img/clothes/neck/whistle/full.png differ
diff --git a/img/clothes/over_head/froggy/back.png b/img/clothes/over_head/froggy/back.png
index ae4235d9dde17a5350b33d6c8e58c0acdc3a3a20..beb3e425289f506c0d02d8b82a76cf35158c7b33 100644
Binary files a/img/clothes/over_head/froggy/back.png and b/img/clothes/over_head/froggy/back.png differ
diff --git a/img/clothes/over_head/froggy/frayed.png b/img/clothes/over_head/froggy/frayed.png
index 325369ea46d46c0f8957b26501161d80dfc1d666..a8311bd8a30c89f44aeb72b12d4bb080a7ad9fb0 100644
Binary files a/img/clothes/over_head/froggy/frayed.png and b/img/clothes/over_head/froggy/frayed.png differ
diff --git a/img/clothes/over_head/froggy/full.png b/img/clothes/over_head/froggy/full.png
index 325369ea46d46c0f8957b26501161d80dfc1d666..a8311bd8a30c89f44aeb72b12d4bb080a7ad9fb0 100644
Binary files a/img/clothes/over_head/froggy/full.png and b/img/clothes/over_head/froggy/full.png differ
diff --git a/img/clothes/over_head/froggy/full_down.png b/img/clothes/over_head/froggy/full_down.png
index 4dd91ebe6a53a0f3add0aca4cf8e5a021fde42fd..1aab90c69fd41e428379170fafcb0f8c85bb8f85 100644
Binary files a/img/clothes/over_head/froggy/full_down.png and b/img/clothes/over_head/froggy/full_down.png differ
diff --git a/img/clothes/over_head/froggy/mask.png b/img/clothes/over_head/froggy/mask.png
index bbecc7e14ffd9997035bb8655ea6d48461349338..bd9fb60b7edf50b81f0ddcc5c2f73f6f84ecda24 100644
Binary files a/img/clothes/over_head/froggy/mask.png and b/img/clothes/over_head/froggy/mask.png differ
diff --git a/img/clothes/over_head/froggy/tattered.png b/img/clothes/over_head/froggy/tattered.png
index 325369ea46d46c0f8957b26501161d80dfc1d666..a8311bd8a30c89f44aeb72b12d4bb080a7ad9fb0 100644
Binary files a/img/clothes/over_head/froggy/tattered.png and b/img/clothes/over_head/froggy/tattered.png differ
diff --git a/img/clothes/over_head/froggy/torn.png b/img/clothes/over_head/froggy/torn.png
index 325369ea46d46c0f8957b26501161d80dfc1d666..a8311bd8a30c89f44aeb72b12d4bb080a7ad9fb0 100644
Binary files a/img/clothes/over_head/froggy/torn.png and b/img/clothes/over_head/froggy/torn.png differ
diff --git a/img/clothes/over_lower/cream/frayed.png b/img/clothes/over_lower/cream/frayed.png
index 77c9079dc9ae41f91e117c32e224ea0dcd33734b..82fd46165d872b5536fd6e35cd0e8c571308361b 100644
Binary files a/img/clothes/over_lower/cream/frayed.png and b/img/clothes/over_lower/cream/frayed.png differ
diff --git a/img/clothes/over_lower/cream/full.png b/img/clothes/over_lower/cream/full.png
index 67502188d3fb44ba9a890309c083a0b403204fc2..8d9f7e378e1e9d5e9bc5077e6631c599020ff5e7 100644
Binary files a/img/clothes/over_lower/cream/full.png and b/img/clothes/over_lower/cream/full.png differ
diff --git a/img/clothes/over_lower/cream/tattered.png b/img/clothes/over_lower/cream/tattered.png
index 88c068004de238fcd31ee3c74426f4e786b9b203..0493b1e7a950e58099600806032625e09d8dd9fa 100644
Binary files a/img/clothes/over_lower/cream/tattered.png and b/img/clothes/over_lower/cream/tattered.png differ
diff --git a/img/clothes/over_lower/cream/torn.png b/img/clothes/over_lower/cream/torn.png
index 412d5d9d3d31a22005c14325d74a75d84941f5d8..0fa0656f7b876a6ed358a1dd195b8d634273236e 100644
Binary files a/img/clothes/over_lower/cream/torn.png and b/img/clothes/over_lower/cream/torn.png differ
diff --git a/img/clothes/over_lower/froggy/frayed.png b/img/clothes/over_lower/froggy/frayed.png
index 50d7282ca05321d91fc2989d2e51fff9c534a3da..a8be2f57c15ef82daa09acefe62eefa6ac879c4b 100644
Binary files a/img/clothes/over_lower/froggy/frayed.png and b/img/clothes/over_lower/froggy/frayed.png differ
diff --git a/img/clothes/over_lower/froggy/full.png b/img/clothes/over_lower/froggy/full.png
index 50d7282ca05321d91fc2989d2e51fff9c534a3da..a8be2f57c15ef82daa09acefe62eefa6ac879c4b 100644
Binary files a/img/clothes/over_lower/froggy/full.png and b/img/clothes/over_lower/froggy/full.png differ
diff --git a/img/clothes/over_lower/froggy/tattered.png b/img/clothes/over_lower/froggy/tattered.png
index 50d7282ca05321d91fc2989d2e51fff9c534a3da..a8be2f57c15ef82daa09acefe62eefa6ac879c4b 100644
Binary files a/img/clothes/over_lower/froggy/tattered.png and b/img/clothes/over_lower/froggy/tattered.png differ
diff --git a/img/clothes/over_lower/froggy/torn.png b/img/clothes/over_lower/froggy/torn.png
index 50d7282ca05321d91fc2989d2e51fff9c534a3da..a8be2f57c15ef82daa09acefe62eefa6ac879c4b 100644
Binary files a/img/clothes/over_lower/froggy/torn.png and b/img/clothes/over_lower/froggy/torn.png differ
diff --git a/img/clothes/over_upper/cream/0.png b/img/clothes/over_upper/cream/0.png
index f5c3ffd2ea3ad51e34e8b172e17e23c0f7e9b529..efc6cfbd17aadd343e2511565c0fc082283003a4 100644
Binary files a/img/clothes/over_upper/cream/0.png and b/img/clothes/over_upper/cream/0.png differ
diff --git a/img/clothes/over_upper/cream/1.png b/img/clothes/over_upper/cream/1.png
index 70a599ba4c33322d3de182adc42be933bfbcb2c0..ef02e75ce33e060334dbc4f3ad19fc514cbb8a31 100644
Binary files a/img/clothes/over_upper/cream/1.png and b/img/clothes/over_upper/cream/1.png differ
diff --git a/img/clothes/over_upper/cream/2.png b/img/clothes/over_upper/cream/2.png
index efdf3b346a087c8d8df077b90caf49d8a5ba7a10..10a61761ff09183fa93d566a98fc70b5b7e044f2 100644
Binary files a/img/clothes/over_upper/cream/2.png and b/img/clothes/over_upper/cream/2.png differ
diff --git a/img/clothes/over_upper/cream/3.png b/img/clothes/over_upper/cream/3.png
index 43eceecfc9221cefb904a969267dca11c1ad259f..aefb67cf12c4bd28a66bd73e5c7a98880b7efa87 100644
Binary files a/img/clothes/over_upper/cream/3.png and b/img/clothes/over_upper/cream/3.png differ
diff --git a/img/clothes/over_upper/cream/4.png b/img/clothes/over_upper/cream/4.png
index 7928be5a3780c9f27ee4c3982174f553055867bf..945de565207a837aec5fed188ac21095917bc7ea 100644
Binary files a/img/clothes/over_upper/cream/4.png and b/img/clothes/over_upper/cream/4.png differ
diff --git a/img/clothes/over_upper/cream/5.png b/img/clothes/over_upper/cream/5.png
index 1471e1ae186b9ed895ca9549cb7059cb978c53d4..91291dc7ef8dadd4e24b1b4d1d77fc412f56ed11 100644
Binary files a/img/clothes/over_upper/cream/5.png and b/img/clothes/over_upper/cream/5.png differ
diff --git a/img/clothes/over_upper/cream/6.png b/img/clothes/over_upper/cream/6.png
index 1471e1ae186b9ed895ca9549cb7059cb978c53d4..91291dc7ef8dadd4e24b1b4d1d77fc412f56ed11 100644
Binary files a/img/clothes/over_upper/cream/6.png and b/img/clothes/over_upper/cream/6.png differ
diff --git a/img/clothes/over_upper/cream/acc.png b/img/clothes/over_upper/cream/acc.png
index 31eea7fa5abaaba28cdb4253189e73cdaf65196c..cdca8442f82f330c3bded2e32b0723c1ff3c0eff 100644
Binary files a/img/clothes/over_upper/cream/acc.png and b/img/clothes/over_upper/cream/acc.png differ
diff --git a/img/clothes/over_upper/cream/frayed.png b/img/clothes/over_upper/cream/frayed.png
index 5c968b678b4fcd8467c1dba44b8390d82d571e03..7df53049e23993c446c671127fef718cb7c07b4c 100644
Binary files a/img/clothes/over_upper/cream/frayed.png and b/img/clothes/over_upper/cream/frayed.png differ
diff --git a/img/clothes/over_upper/cream/full.png b/img/clothes/over_upper/cream/full.png
index ecb63814752732ab2f55b661408e41f53cea35bf..f55d836f0eb3aeec0c9cb5d5ed64e2a74cf440eb 100644
Binary files a/img/clothes/over_upper/cream/full.png and b/img/clothes/over_upper/cream/full.png differ
diff --git a/img/clothes/over_upper/cream/hold.png b/img/clothes/over_upper/cream/hold.png
index 0e2ffd003595a00a1ada0bad6110d62687ad8d8d..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/over_upper/cream/hold.png and b/img/clothes/over_upper/cream/hold.png differ
diff --git a/img/clothes/over_upper/cream/tattered.png b/img/clothes/over_upper/cream/tattered.png
index 43ac61eac48f6309165072bb0a2c9ec3b6e98ca8..502e93339686948f3d860a915dbd16684db99ef2 100644
Binary files a/img/clothes/over_upper/cream/tattered.png and b/img/clothes/over_upper/cream/tattered.png differ
diff --git a/img/clothes/over_upper/cream/torn.png b/img/clothes/over_upper/cream/torn.png
index 7e2d8e555e678cc4f2fa52dc93751ab9397883ff..5577f46a5b4b21a3e9189f74c4b2886172386b2c 100644
Binary files a/img/clothes/over_upper/cream/torn.png and b/img/clothes/over_upper/cream/torn.png differ
diff --git a/img/clothes/over_upper/froggy/frayed.png b/img/clothes/over_upper/froggy/frayed.png
index 2f96ec49ce01238bfa0082451814da85b4f86cff..5fd80edadf64f1a6bff5fc58100b41b3b45f446b 100644
Binary files a/img/clothes/over_upper/froggy/frayed.png and b/img/clothes/over_upper/froggy/frayed.png differ
diff --git a/img/clothes/over_upper/froggy/full.png b/img/clothes/over_upper/froggy/full.png
index 2f96ec49ce01238bfa0082451814da85b4f86cff..5fd80edadf64f1a6bff5fc58100b41b3b45f446b 100644
Binary files a/img/clothes/over_upper/froggy/full.png and b/img/clothes/over_upper/froggy/full.png differ
diff --git a/img/clothes/over_upper/froggy/hold.png b/img/clothes/over_upper/froggy/hold.png
index eceadd8be89de97986e990832416d0ebd1263ef3..bf6d7a4ce945437b0f6236919702df45e2c7bfaa 100644
Binary files a/img/clothes/over_upper/froggy/hold.png and b/img/clothes/over_upper/froggy/hold.png differ
diff --git a/img/clothes/over_upper/froggy/left.png b/img/clothes/over_upper/froggy/left.png
index 4069c1930adae3eba71ea6a9180ebacf5ce58836..bf67c45ebbb8dea37f920f3e399eb68ea48beb28 100644
Binary files a/img/clothes/over_upper/froggy/left.png and b/img/clothes/over_upper/froggy/left.png differ
diff --git a/img/clothes/over_upper/froggy/left_cover.png b/img/clothes/over_upper/froggy/left_cover.png
index a29d3b148cf88daa6ecfb149c24ad0748b2999ee..11755aa851f5f65be370a3eebd02aaeaa4740a7c 100644
Binary files a/img/clothes/over_upper/froggy/left_cover.png and b/img/clothes/over_upper/froggy/left_cover.png differ
diff --git a/img/clothes/over_upper/froggy/right.png b/img/clothes/over_upper/froggy/right.png
index 50ec775ed440de1a05f4c258435efe29c782c051..7516a84a34fa8d78d9eadfe74c2e4e661bc54976 100644
Binary files a/img/clothes/over_upper/froggy/right.png and b/img/clothes/over_upper/froggy/right.png differ
diff --git a/img/clothes/over_upper/froggy/right_cover.png b/img/clothes/over_upper/froggy/right_cover.png
index a91ef6f8606ba9a15eb9a1b1dc88853970329353..6d81799ca70385848ee15b9679ca3cb3e8a029b4 100644
Binary files a/img/clothes/over_upper/froggy/right_cover.png and b/img/clothes/over_upper/froggy/right_cover.png differ
diff --git a/img/clothes/over_upper/froggy/tattered.png b/img/clothes/over_upper/froggy/tattered.png
index 2f96ec49ce01238bfa0082451814da85b4f86cff..5fd80edadf64f1a6bff5fc58100b41b3b45f446b 100644
Binary files a/img/clothes/over_upper/froggy/tattered.png and b/img/clothes/over_upper/froggy/tattered.png differ
diff --git a/img/clothes/over_upper/froggy/torn.png b/img/clothes/over_upper/froggy/torn.png
index 2f96ec49ce01238bfa0082451814da85b4f86cff..5fd80edadf64f1a6bff5fc58100b41b3b45f446b 100644
Binary files a/img/clothes/over_upper/froggy/torn.png and b/img/clothes/over_upper/froggy/torn.png differ
diff --git a/img/clothes/under_lower/bikini/frayed_gray.png b/img/clothes/under_lower/bikini/frayed_gray.png
index d91f9fcd6e5fa930026b12520bd4c3a660fd754e..8f846f1dd955eb8b02a8185823d1bf22709585e3 100644
Binary files a/img/clothes/under_lower/bikini/frayed_gray.png and b/img/clothes/under_lower/bikini/frayed_gray.png differ
diff --git a/img/clothes/under_lower/bikini/full_gray.png b/img/clothes/under_lower/bikini/full_gray.png
index d91f9fcd6e5fa930026b12520bd4c3a660fd754e..8f846f1dd955eb8b02a8185823d1bf22709585e3 100644
Binary files a/img/clothes/under_lower/bikini/full_gray.png and b/img/clothes/under_lower/bikini/full_gray.png differ
diff --git a/img/clothes/under_lower/bikini/penis_gray.png b/img/clothes/under_lower/bikini/penis_gray.png
index c6c1ce0a1251d0e0736f4310403813f290a43b6b..3a073197635842d4d8e100c2321bfee27667a8f7 100644
Binary files a/img/clothes/under_lower/bikini/penis_gray.png and b/img/clothes/under_lower/bikini/penis_gray.png differ
diff --git a/img/clothes/under_lower/bikini/tattered_gray.png b/img/clothes/under_lower/bikini/tattered_gray.png
index d91f9fcd6e5fa930026b12520bd4c3a660fd754e..8f846f1dd955eb8b02a8185823d1bf22709585e3 100644
Binary files a/img/clothes/under_lower/bikini/tattered_gray.png and b/img/clothes/under_lower/bikini/tattered_gray.png differ
diff --git a/img/clothes/under_lower/bikini/torn_gray.png b/img/clothes/under_lower/bikini/torn_gray.png
index d91f9fcd6e5fa930026b12520bd4c3a660fd754e..8f846f1dd955eb8b02a8185823d1bf22709585e3 100644
Binary files a/img/clothes/under_lower/bikini/torn_gray.png and b/img/clothes/under_lower/bikini/torn_gray.png differ
diff --git a/img/clothes/under_lower/boxers/frayed_gray.png b/img/clothes/under_lower/boxers/frayed_gray.png
index 5a7e5edfbd737332a938ebcc3e7d96d9e4b92ddd..cee3682c2afdb0885c87232ebada2d86bff9bd13 100644
Binary files a/img/clothes/under_lower/boxers/frayed_gray.png and b/img/clothes/under_lower/boxers/frayed_gray.png differ
diff --git a/img/clothes/under_lower/boxers/full_gray.png b/img/clothes/under_lower/boxers/full_gray.png
index c118c171344cb3f76ee12d0e00d97d53a2ba99e9..1db62bbd2a2f640c83184d1fd86e72a14f1b6323 100644
Binary files a/img/clothes/under_lower/boxers/full_gray.png and b/img/clothes/under_lower/boxers/full_gray.png differ
diff --git a/img/clothes/under_lower/boxers/tattered_gray.png b/img/clothes/under_lower/boxers/tattered_gray.png
index 8b7437a4f550d76e09860e24f30c72323f54e636..f58c9cda18eda8c9fd8de29a8bd8c47119ff56ad 100644
Binary files a/img/clothes/under_lower/boxers/tattered_gray.png and b/img/clothes/under_lower/boxers/tattered_gray.png differ
diff --git a/img/clothes/under_lower/boxers/torn_gray.png b/img/clothes/under_lower/boxers/torn_gray.png
index 0b47e753eb047a7ddfe3f05ced72a0280f28eeea..9755dd4efd1f13b56d7e4d985016c8c61b0f7113 100644
Binary files a/img/clothes/under_lower/boxers/torn_gray.png and b/img/clothes/under_lower/boxers/torn_gray.png differ
diff --git a/img/clothes/under_lower/boyshorts/frayed_gray.png b/img/clothes/under_lower/boyshorts/frayed_gray.png
index 53f98ee1bc833f9a75881c2cc1f70ffd6c82131d..747278bcb2e5ec5bc2efa91e524160b5319037f6 100644
Binary files a/img/clothes/under_lower/boyshorts/frayed_gray.png and b/img/clothes/under_lower/boyshorts/frayed_gray.png differ
diff --git a/img/clothes/under_lower/boyshorts/full_gray.png b/img/clothes/under_lower/boyshorts/full_gray.png
index 53f98ee1bc833f9a75881c2cc1f70ffd6c82131d..747278bcb2e5ec5bc2efa91e524160b5319037f6 100644
Binary files a/img/clothes/under_lower/boyshorts/full_gray.png and b/img/clothes/under_lower/boyshorts/full_gray.png differ
diff --git a/img/clothes/under_lower/boyshorts/penis_gray.png b/img/clothes/under_lower/boyshorts/penis_gray.png
index 4f4866cd243e85430bad7da8a46dcfcd379d0de8..6aea49f165dea12adc1dd2e1c8fc05e973f52677 100644
Binary files a/img/clothes/under_lower/boyshorts/penis_gray.png and b/img/clothes/under_lower/boyshorts/penis_gray.png differ
diff --git a/img/clothes/under_lower/boyshorts/tattered_gray.png b/img/clothes/under_lower/boyshorts/tattered_gray.png
index 53f98ee1bc833f9a75881c2cc1f70ffd6c82131d..747278bcb2e5ec5bc2efa91e524160b5319037f6 100644
Binary files a/img/clothes/under_lower/boyshorts/tattered_gray.png and b/img/clothes/under_lower/boyshorts/tattered_gray.png differ
diff --git a/img/clothes/under_lower/boyshorts/torn_gray.png b/img/clothes/under_lower/boyshorts/torn_gray.png
index 53f98ee1bc833f9a75881c2cc1f70ffd6c82131d..747278bcb2e5ec5bc2efa91e524160b5319037f6 100644
Binary files a/img/clothes/under_lower/boyshorts/torn_gray.png and b/img/clothes/under_lower/boyshorts/torn_gray.png differ
diff --git a/img/clothes/under_lower/briefs/acc.png b/img/clothes/under_lower/briefs/acc.png
index c453e74e0cde7333d0c78d66f3f61e726733ead6..32e3c0343382750f3a0e80acc28dc6c23d6dee53 100644
Binary files a/img/clothes/under_lower/briefs/acc.png and b/img/clothes/under_lower/briefs/acc.png differ
diff --git a/img/clothes/under_lower/briefs/frayed_gray.png b/img/clothes/under_lower/briefs/frayed_gray.png
index 803ace81e50380697d5d9849e8bf347285392fda..df2537419ace732165ac108c5096baf6bbc9c8bc 100644
Binary files a/img/clothes/under_lower/briefs/frayed_gray.png and b/img/clothes/under_lower/briefs/frayed_gray.png differ
diff --git a/img/clothes/under_lower/briefs/full_gray.png b/img/clothes/under_lower/briefs/full_gray.png
index 803ace81e50380697d5d9849e8bf347285392fda..df2537419ace732165ac108c5096baf6bbc9c8bc 100644
Binary files a/img/clothes/under_lower/briefs/full_gray.png and b/img/clothes/under_lower/briefs/full_gray.png differ
diff --git a/img/clothes/under_lower/briefs/tattered_gray.png b/img/clothes/under_lower/briefs/tattered_gray.png
index 803ace81e50380697d5d9849e8bf347285392fda..df2537419ace732165ac108c5096baf6bbc9c8bc 100644
Binary files a/img/clothes/under_lower/briefs/tattered_gray.png and b/img/clothes/under_lower/briefs/tattered_gray.png differ
diff --git a/img/clothes/under_lower/briefs/torn_gray.png b/img/clothes/under_lower/briefs/torn_gray.png
index 803ace81e50380697d5d9849e8bf347285392fda..df2537419ace732165ac108c5096baf6bbc9c8bc 100644
Binary files a/img/clothes/under_lower/briefs/torn_gray.png and b/img/clothes/under_lower/briefs/torn_gray.png differ
diff --git a/img/clothes/under_lower/catgirlpanties/frayed_gray.png b/img/clothes/under_lower/catgirlpanties/frayed_gray.png
index ea0518ca91c176fd88a0e1ad3f29bb8c2e627b3e..cccc13bf2fbea3a87604e5c98ff3fa2e384fb519 100644
Binary files a/img/clothes/under_lower/catgirlpanties/frayed_gray.png and b/img/clothes/under_lower/catgirlpanties/frayed_gray.png differ
diff --git a/img/clothes/under_lower/catgirlpanties/full_gray.png b/img/clothes/under_lower/catgirlpanties/full_gray.png
index ea0518ca91c176fd88a0e1ad3f29bb8c2e627b3e..cccc13bf2fbea3a87604e5c98ff3fa2e384fb519 100644
Binary files a/img/clothes/under_lower/catgirlpanties/full_gray.png and b/img/clothes/under_lower/catgirlpanties/full_gray.png differ
diff --git a/img/clothes/under_lower/catgirlpanties/penis_gray.png b/img/clothes/under_lower/catgirlpanties/penis_gray.png
index ad706dd88c85ef7811e9af030827e2c76f3b22e6..b8d9144ce3810a1694fbc2fc927803e51c3d0af4 100644
Binary files a/img/clothes/under_lower/catgirlpanties/penis_gray.png and b/img/clothes/under_lower/catgirlpanties/penis_gray.png differ
diff --git a/img/clothes/under_lower/catgirlpanties/tattered_gray.png b/img/clothes/under_lower/catgirlpanties/tattered_gray.png
index ea0518ca91c176fd88a0e1ad3f29bb8c2e627b3e..cccc13bf2fbea3a87604e5c98ff3fa2e384fb519 100644
Binary files a/img/clothes/under_lower/catgirlpanties/tattered_gray.png and b/img/clothes/under_lower/catgirlpanties/tattered_gray.png differ
diff --git a/img/clothes/under_lower/catgirlpanties/torn_gray.png b/img/clothes/under_lower/catgirlpanties/torn_gray.png
index ea0518ca91c176fd88a0e1ad3f29bb8c2e627b3e..cccc13bf2fbea3a87604e5c98ff3fa2e384fb519 100644
Binary files a/img/clothes/under_lower/catgirlpanties/torn_gray.png and b/img/clothes/under_lower/catgirlpanties/torn_gray.png differ
diff --git a/img/clothes/under_lower/chastitybelt/frayed.png b/img/clothes/under_lower/chastitybelt/frayed.png
index 28b654a762b134ca0e7c3cbaff614ecd87f15e51..c0c013f7093fc7521ba9b2d69763b15b0300bb53 100644
Binary files a/img/clothes/under_lower/chastitybelt/frayed.png and b/img/clothes/under_lower/chastitybelt/frayed.png differ
diff --git a/img/clothes/under_lower/chastitybelt/full.png b/img/clothes/under_lower/chastitybelt/full.png
index ba376a3a5b24152e69781f0476d0670d512599cf..326c0971b8ddc119a399a521fb6bb77147645e7f 100644
Binary files a/img/clothes/under_lower/chastitybelt/full.png and b/img/clothes/under_lower/chastitybelt/full.png differ
diff --git a/img/clothes/under_lower/chastitybelt/tattered.png b/img/clothes/under_lower/chastitybelt/tattered.png
index 2a9a94d743902199a1be017d9fe91cfb943006e2..07b06e939b021088394fcdfc92ed2d7224c45e22 100644
Binary files a/img/clothes/under_lower/chastitybelt/tattered.png and b/img/clothes/under_lower/chastitybelt/tattered.png differ
diff --git a/img/clothes/under_lower/chastitybelt/torn.png b/img/clothes/under_lower/chastitybelt/torn.png
index 275a3b32c858ef037a26db81cef0388ed8470dc8..854c47375b77a8bb8ea92ec42eb29392cc220fd4 100644
Binary files a/img/clothes/under_lower/chastitybelt/torn.png and b/img/clothes/under_lower/chastitybelt/torn.png differ
diff --git a/img/clothes/under_lower/classicbikini/frayed_gray.png b/img/clothes/under_lower/classicbikini/frayed_gray.png
index 42e154d5e4184532c6a83d7f162af74f653fec4c..d12a31b260b86bf446c7fea3233208454c07ccba 100644
Binary files a/img/clothes/under_lower/classicbikini/frayed_gray.png and b/img/clothes/under_lower/classicbikini/frayed_gray.png differ
diff --git a/img/clothes/under_lower/classicbikini/full_gray.png b/img/clothes/under_lower/classicbikini/full_gray.png
index 42e154d5e4184532c6a83d7f162af74f653fec4c..d12a31b260b86bf446c7fea3233208454c07ccba 100644
Binary files a/img/clothes/under_lower/classicbikini/full_gray.png and b/img/clothes/under_lower/classicbikini/full_gray.png differ
diff --git a/img/clothes/under_lower/classicbikini/tattered_gray.png b/img/clothes/under_lower/classicbikini/tattered_gray.png
index 42e154d5e4184532c6a83d7f162af74f653fec4c..d12a31b260b86bf446c7fea3233208454c07ccba 100644
Binary files a/img/clothes/under_lower/classicbikini/tattered_gray.png and b/img/clothes/under_lower/classicbikini/tattered_gray.png differ
diff --git a/img/clothes/under_lower/classicbikini/torn_gray.png b/img/clothes/under_lower/classicbikini/torn_gray.png
index 42e154d5e4184532c6a83d7f162af74f653fec4c..d12a31b260b86bf446c7fea3233208454c07ccba 100644
Binary files a/img/clothes/under_lower/classicbikini/torn_gray.png and b/img/clothes/under_lower/classicbikini/torn_gray.png differ
diff --git a/img/clothes/under_lower/classicbriefs/frayed_gray.png b/img/clothes/under_lower/classicbriefs/frayed_gray.png
index f9d522486980f03c3933ff53c3d3017bebb91dd3..3b7150497f258015b3aa80cb3a1b9d727c800563 100644
Binary files a/img/clothes/under_lower/classicbriefs/frayed_gray.png and b/img/clothes/under_lower/classicbriefs/frayed_gray.png differ
diff --git a/img/clothes/under_lower/classicbriefs/full_gray.png b/img/clothes/under_lower/classicbriefs/full_gray.png
index 78422446930f19b089ef29b884d7ac5ba5411d4e..cdc5cbdf531c17a65255eb3746a45cc1eb6ae731 100644
Binary files a/img/clothes/under_lower/classicbriefs/full_gray.png and b/img/clothes/under_lower/classicbriefs/full_gray.png differ
diff --git a/img/clothes/under_lower/classicbriefs/tattered_gray.png b/img/clothes/under_lower/classicbriefs/tattered_gray.png
index 6011b15ccd456fc45c9d9ab904d0786338642368..c6f6e0c722ad76e6ce79c48070beedfe35b48fa0 100644
Binary files a/img/clothes/under_lower/classicbriefs/tattered_gray.png and b/img/clothes/under_lower/classicbriefs/tattered_gray.png differ
diff --git a/img/clothes/under_lower/classicbriefs/torn_gray.png b/img/clothes/under_lower/classicbriefs/torn_gray.png
index 9e25ccfa6596d7258ff5ed92a95f5fcc11ab1197..0930fc87b33df41422c6842177de2ba2f9f56063 100644
Binary files a/img/clothes/under_lower/classicbriefs/torn_gray.png and b/img/clothes/under_lower/classicbriefs/torn_gray.png differ
diff --git a/img/clothes/under_lower/classiclacepanties/frayed_gray.png b/img/clothes/under_lower/classiclacepanties/frayed_gray.png
index b8f183016372f3787596a5cc17652d261f3c7345..fd60d98f2f0cf967b721441f138a738ee62757ca 100644
Binary files a/img/clothes/under_lower/classiclacepanties/frayed_gray.png and b/img/clothes/under_lower/classiclacepanties/frayed_gray.png differ
diff --git a/img/clothes/under_lower/classiclacepanties/full_gray.png b/img/clothes/under_lower/classiclacepanties/full_gray.png
index 0ddec36a2c9d99ffe8d518bb3ac115fed3e401bc..f64d85d2fa576a079567f672307001a947b7e8cd 100644
Binary files a/img/clothes/under_lower/classiclacepanties/full_gray.png and b/img/clothes/under_lower/classiclacepanties/full_gray.png differ
diff --git a/img/clothes/under_lower/classiclacepanties/tattered_gray.png b/img/clothes/under_lower/classiclacepanties/tattered_gray.png
index 2bb3a2a9f23ebc54c64348c7a26327d42ca5fa3d..a18f95f7406d224c999ae6dd5662bde5f0fc652d 100644
Binary files a/img/clothes/under_lower/classiclacepanties/tattered_gray.png and b/img/clothes/under_lower/classiclacepanties/tattered_gray.png differ
diff --git a/img/clothes/under_lower/classiclacepanties/torn_gray.png b/img/clothes/under_lower/classiclacepanties/torn_gray.png
index cb8aaff2aee1702b8ff4208033a2dfb8d675ef74..fb586de3888b4390e0a4c310947fa7d22dd0536a 100644
Binary files a/img/clothes/under_lower/classiclacepanties/torn_gray.png and b/img/clothes/under_lower/classiclacepanties/torn_gray.png differ
diff --git a/img/clothes/under_lower/classicplainpanties/frayed_gray.png b/img/clothes/under_lower/classicplainpanties/frayed_gray.png
index 66188ad3253864bf2c568ed54f8c36712048ced5..d8fe39c3f76fbc015781ff71a99353c31fd4e0c6 100644
Binary files a/img/clothes/under_lower/classicplainpanties/frayed_gray.png and b/img/clothes/under_lower/classicplainpanties/frayed_gray.png differ
diff --git a/img/clothes/under_lower/classicplainpanties/full_gray.png b/img/clothes/under_lower/classicplainpanties/full_gray.png
index eaf7f306d7b983d1d115fb04af11d882054dae96..8017cfbd6e4fe730bb6420f7c1b8d5a1ac1134d8 100644
Binary files a/img/clothes/under_lower/classicplainpanties/full_gray.png and b/img/clothes/under_lower/classicplainpanties/full_gray.png differ
diff --git a/img/clothes/under_lower/classicplainpanties/tattered_gray.png b/img/clothes/under_lower/classicplainpanties/tattered_gray.png
index d0c5ede206fd149ba6be981f03944a2541bf2e75..0ef09e09c410fae28fa1d6913d13445fc1d4f7a8 100644
Binary files a/img/clothes/under_lower/classicplainpanties/tattered_gray.png and b/img/clothes/under_lower/classicplainpanties/tattered_gray.png differ
diff --git a/img/clothes/under_lower/classicplainpanties/torn_gray.png b/img/clothes/under_lower/classicplainpanties/torn_gray.png
index dce7da4f69643e6d40e22b1d4327660e31a979fb..67714a3836e22d4812310fd6ab74af74a9db0804 100644
Binary files a/img/clothes/under_lower/classicplainpanties/torn_gray.png and b/img/clothes/under_lower/classicplainpanties/torn_gray.png differ
diff --git a/img/clothes/under_lower/classicschoolswimsuit/frayed_gray.png b/img/clothes/under_lower/classicschoolswimsuit/frayed_gray.png
index 958afa0bfd58806268bbe27512bab798b9b3ad80..7b0755041b335ba1bbfdac71f0dbb0a50aee238f 100644
Binary files a/img/clothes/under_lower/classicschoolswimsuit/frayed_gray.png and b/img/clothes/under_lower/classicschoolswimsuit/frayed_gray.png differ
diff --git a/img/clothes/under_lower/classicschoolswimsuit/full_gray.png b/img/clothes/under_lower/classicschoolswimsuit/full_gray.png
index ba6eb0485413b7795c43aa47bd61fbd05a7a438c..4855f966524b39c2dd136b7518b6bc5e193f0198 100644
Binary files a/img/clothes/under_lower/classicschoolswimsuit/full_gray.png and b/img/clothes/under_lower/classicschoolswimsuit/full_gray.png differ
diff --git a/img/clothes/under_lower/classicschoolswimsuit/tattered_gray.png b/img/clothes/under_lower/classicschoolswimsuit/tattered_gray.png
index b1a4bfd78653799496d4291489e19ef59747a5cc..2c113d407bd56f8fbd9809a450c6e297f5293331 100644
Binary files a/img/clothes/under_lower/classicschoolswimsuit/tattered_gray.png and b/img/clothes/under_lower/classicschoolswimsuit/tattered_gray.png differ
diff --git a/img/clothes/under_lower/classicschoolswimsuit/torn_gray.png b/img/clothes/under_lower/classicschoolswimsuit/torn_gray.png
index e62054f1bc97aaec099633a20a6eae3c77433824..a321162120c83a4ae0579154c425379043422b14 100644
Binary files a/img/clothes/under_lower/classicschoolswimsuit/torn_gray.png and b/img/clothes/under_lower/classicschoolswimsuit/torn_gray.png differ
diff --git a/img/clothes/under_lower/cow/frayed.png b/img/clothes/under_lower/cow/frayed.png
index c382a39cc6ba876f939ddbda94ddd447936951ec..571607b6cbb0b1dfb83ff42de65ecf1c914ba532 100644
Binary files a/img/clothes/under_lower/cow/frayed.png and b/img/clothes/under_lower/cow/frayed.png differ
diff --git a/img/clothes/under_lower/cow/full.png b/img/clothes/under_lower/cow/full.png
index c382a39cc6ba876f939ddbda94ddd447936951ec..571607b6cbb0b1dfb83ff42de65ecf1c914ba532 100644
Binary files a/img/clothes/under_lower/cow/full.png and b/img/clothes/under_lower/cow/full.png differ
diff --git a/img/clothes/under_lower/cow/tattered.png b/img/clothes/under_lower/cow/tattered.png
index c382a39cc6ba876f939ddbda94ddd447936951ec..571607b6cbb0b1dfb83ff42de65ecf1c914ba532 100644
Binary files a/img/clothes/under_lower/cow/tattered.png and b/img/clothes/under_lower/cow/tattered.png differ
diff --git a/img/clothes/under_lower/cow/torn.png b/img/clothes/under_lower/cow/torn.png
index c382a39cc6ba876f939ddbda94ddd447936951ec..571607b6cbb0b1dfb83ff42de65ecf1c914ba532 100644
Binary files a/img/clothes/under_lower/cow/torn.png and b/img/clothes/under_lower/cow/torn.png differ
diff --git a/img/clothes/under_lower/crotchlesspanties/frayed_gray.png b/img/clothes/under_lower/crotchlesspanties/frayed_gray.png
index 3b28c459f572defdeae5b74b35c1278c93406a10..c5b6537e9c1ecf784d7fd5989c9e58b40d7f7dda 100644
Binary files a/img/clothes/under_lower/crotchlesspanties/frayed_gray.png and b/img/clothes/under_lower/crotchlesspanties/frayed_gray.png differ
diff --git a/img/clothes/under_lower/crotchlesspanties/full_gray.png b/img/clothes/under_lower/crotchlesspanties/full_gray.png
index 3b28c459f572defdeae5b74b35c1278c93406a10..c5b6537e9c1ecf784d7fd5989c9e58b40d7f7dda 100644
Binary files a/img/clothes/under_lower/crotchlesspanties/full_gray.png and b/img/clothes/under_lower/crotchlesspanties/full_gray.png differ
diff --git a/img/clothes/under_lower/crotchlesspanties/tattered_gray.png b/img/clothes/under_lower/crotchlesspanties/tattered_gray.png
index 3b28c459f572defdeae5b74b35c1278c93406a10..c5b6537e9c1ecf784d7fd5989c9e58b40d7f7dda 100644
Binary files a/img/clothes/under_lower/crotchlesspanties/tattered_gray.png and b/img/clothes/under_lower/crotchlesspanties/tattered_gray.png differ
diff --git a/img/clothes/under_lower/crotchlesspanties/torn_gray.png b/img/clothes/under_lower/crotchlesspanties/torn_gray.png
index 3b28c459f572defdeae5b74b35c1278c93406a10..c5b6537e9c1ecf784d7fd5989c9e58b40d7f7dda 100644
Binary files a/img/clothes/under_lower/crotchlesspanties/torn_gray.png and b/img/clothes/under_lower/crotchlesspanties/torn_gray.png differ
diff --git a/img/clothes/under_lower/crotchwraps/frayed.png b/img/clothes/under_lower/crotchwraps/frayed.png
index f09ab3ad85d863ed04aa42cd0b738b61e6f9a073..9a0ab040204ff5dd05b5c8657e64deea6483b02e 100644
Binary files a/img/clothes/under_lower/crotchwraps/frayed.png and b/img/clothes/under_lower/crotchwraps/frayed.png differ
diff --git a/img/clothes/under_lower/crotchwraps/full.png b/img/clothes/under_lower/crotchwraps/full.png
index f09ab3ad85d863ed04aa42cd0b738b61e6f9a073..9a0ab040204ff5dd05b5c8657e64deea6483b02e 100644
Binary files a/img/clothes/under_lower/crotchwraps/full.png and b/img/clothes/under_lower/crotchwraps/full.png differ
diff --git a/img/clothes/under_lower/crotchwraps/tattered.png b/img/clothes/under_lower/crotchwraps/tattered.png
index f09ab3ad85d863ed04aa42cd0b738b61e6f9a073..9a0ab040204ff5dd05b5c8657e64deea6483b02e 100644
Binary files a/img/clothes/under_lower/crotchwraps/tattered.png and b/img/clothes/under_lower/crotchwraps/tattered.png differ
diff --git a/img/clothes/under_lower/crotchwraps/torn.png b/img/clothes/under_lower/crotchwraps/torn.png
index f09ab3ad85d863ed04aa42cd0b738b61e6f9a073..9a0ab040204ff5dd05b5c8657e64deea6483b02e 100644
Binary files a/img/clothes/under_lower/crotchwraps/torn.png and b/img/clothes/under_lower/crotchwraps/torn.png differ
diff --git a/img/clothes/under_lower/gstring/frayed_gray.png b/img/clothes/under_lower/gstring/frayed_gray.png
index 90ec6dea045bf578ee671911b2a78ac058bb70ea..e54227cd2fcd2be2d3694ec889d83086a99f9c96 100644
Binary files a/img/clothes/under_lower/gstring/frayed_gray.png and b/img/clothes/under_lower/gstring/frayed_gray.png differ
diff --git a/img/clothes/under_lower/gstring/full_gray.png b/img/clothes/under_lower/gstring/full_gray.png
index 90ec6dea045bf578ee671911b2a78ac058bb70ea..e54227cd2fcd2be2d3694ec889d83086a99f9c96 100644
Binary files a/img/clothes/under_lower/gstring/full_gray.png and b/img/clothes/under_lower/gstring/full_gray.png differ
diff --git a/img/clothes/under_lower/gstring/penis_gray.png b/img/clothes/under_lower/gstring/penis_gray.png
index 0958497fda35c6a8648bd090c134ee4add9a7da2..0796d3fb2bffca47f4d5429244243ee9bdf8b8bf 100644
Binary files a/img/clothes/under_lower/gstring/penis_gray.png and b/img/clothes/under_lower/gstring/penis_gray.png differ
diff --git a/img/clothes/under_lower/gstring/tattered_gray.png b/img/clothes/under_lower/gstring/tattered_gray.png
index 90ec6dea045bf578ee671911b2a78ac058bb70ea..e54227cd2fcd2be2d3694ec889d83086a99f9c96 100644
Binary files a/img/clothes/under_lower/gstring/tattered_gray.png and b/img/clothes/under_lower/gstring/tattered_gray.png differ
diff --git a/img/clothes/under_lower/gstring/torn_gray.png b/img/clothes/under_lower/gstring/torn_gray.png
index 90ec6dea045bf578ee671911b2a78ac058bb70ea..e54227cd2fcd2be2d3694ec889d83086a99f9c96 100644
Binary files a/img/clothes/under_lower/gstring/torn_gray.png and b/img/clothes/under_lower/gstring/torn_gray.png differ
diff --git a/img/clothes/under_lower/highmicrokini/frayed_gray.png b/img/clothes/under_lower/highmicrokini/frayed_gray.png
index fa6d9e0154f73176dbe9e91d2a7ec20d90cf8ad0..bc5a7fd6116aff2908584bc1c658fe86039a3247 100644
Binary files a/img/clothes/under_lower/highmicrokini/frayed_gray.png and b/img/clothes/under_lower/highmicrokini/frayed_gray.png differ
diff --git a/img/clothes/under_lower/highmicrokini/full_gray.png b/img/clothes/under_lower/highmicrokini/full_gray.png
index fa6d9e0154f73176dbe9e91d2a7ec20d90cf8ad0..bc5a7fd6116aff2908584bc1c658fe86039a3247 100644
Binary files a/img/clothes/under_lower/highmicrokini/full_gray.png and b/img/clothes/under_lower/highmicrokini/full_gray.png differ
diff --git a/img/clothes/under_lower/highmicrokini/penis_gray.png b/img/clothes/under_lower/highmicrokini/penis_gray.png
index b31f244191c8ad2ba60daf12a6bfa46e93123e0b..22106b0abf3a41bb1d77227718706602f57a7601 100644
Binary files a/img/clothes/under_lower/highmicrokini/penis_gray.png and b/img/clothes/under_lower/highmicrokini/penis_gray.png differ
diff --git a/img/clothes/under_lower/highmicrokini/tattered_gray.png b/img/clothes/under_lower/highmicrokini/tattered_gray.png
index fa6d9e0154f73176dbe9e91d2a7ec20d90cf8ad0..bc5a7fd6116aff2908584bc1c658fe86039a3247 100644
Binary files a/img/clothes/under_lower/highmicrokini/tattered_gray.png and b/img/clothes/under_lower/highmicrokini/tattered_gray.png differ
diff --git a/img/clothes/under_lower/highmicrokini/torn_gray.png b/img/clothes/under_lower/highmicrokini/torn_gray.png
index fa6d9e0154f73176dbe9e91d2a7ec20d90cf8ad0..bc5a7fd6116aff2908584bc1c658fe86039a3247 100644
Binary files a/img/clothes/under_lower/highmicrokini/torn_gray.png and b/img/clothes/under_lower/highmicrokini/torn_gray.png differ
diff --git a/img/clothes/under_lower/janties/acc_gray.png b/img/clothes/under_lower/janties/acc_gray.png
index ffa18b6d81033ec24cd4dc14db06a082355a9946..c92162f86385be42b41db192d4cfec61f6ea8658 100644
Binary files a/img/clothes/under_lower/janties/acc_gray.png and b/img/clothes/under_lower/janties/acc_gray.png differ
diff --git a/img/clothes/under_lower/janties/frayed_gray.png b/img/clothes/under_lower/janties/frayed_gray.png
index d8e18e09cec182467bac05d54ea58c949570ad18..9de25fff3988dd408db3e6a262f6af9d1b9b1e3a 100644
Binary files a/img/clothes/under_lower/janties/frayed_gray.png and b/img/clothes/under_lower/janties/frayed_gray.png differ
diff --git a/img/clothes/under_lower/janties/full_gray.png b/img/clothes/under_lower/janties/full_gray.png
index f1e0ee4fdeca83be2a8ca9fa82510a8e6415cb04..51cb0b00f0865da656fed4da8d1bde02ceca71c8 100644
Binary files a/img/clothes/under_lower/janties/full_gray.png and b/img/clothes/under_lower/janties/full_gray.png differ
diff --git a/img/clothes/under_lower/janties/tattered_gray.png b/img/clothes/under_lower/janties/tattered_gray.png
index 9340255ab8f6aa94640d82ed79b88b42d1f4778d..fefd71d3fff03e646af9c2250cf8af0513e000e0 100644
Binary files a/img/clothes/under_lower/janties/tattered_gray.png and b/img/clothes/under_lower/janties/tattered_gray.png differ
diff --git a/img/clothes/under_lower/janties/torn_gray.png b/img/clothes/under_lower/janties/torn_gray.png
index 10ae39e7c0768130491d0397949e9fd1c6cf3249..1802cfb20bf35be0ae4ee4966dea6c170f7a49ee 100644
Binary files a/img/clothes/under_lower/janties/torn_gray.png and b/img/clothes/under_lower/janties/torn_gray.png differ
diff --git a/img/clothes/under_lower/jhong/acc_gray.png b/img/clothes/under_lower/jhong/acc_gray.png
index e725b4c2c9d893d74d55c4e07ad461e2f67ef278..a13d2b60a7498be29f10f78a4795ea246a9ed470 100644
Binary files a/img/clothes/under_lower/jhong/acc_gray.png and b/img/clothes/under_lower/jhong/acc_gray.png differ
diff --git a/img/clothes/under_lower/jhong/frayed_gray.png b/img/clothes/under_lower/jhong/frayed_gray.png
index 4635aca6265c3d4d68b15e80cb33b8cdced8dc2e..9248cca27dd0e9fa7d5c333c8b057fd83f428ef2 100644
Binary files a/img/clothes/under_lower/jhong/frayed_gray.png and b/img/clothes/under_lower/jhong/frayed_gray.png differ
diff --git a/img/clothes/under_lower/jhong/full_gray.png b/img/clothes/under_lower/jhong/full_gray.png
index 9b3e4e933cda0f11aeab52236828ab98c3a82d23..1ae79f681be1a7ecdf644031ae82769f815683a5 100644
Binary files a/img/clothes/under_lower/jhong/full_gray.png and b/img/clothes/under_lower/jhong/full_gray.png differ
diff --git a/img/clothes/under_lower/jhong/tattered_gray.png b/img/clothes/under_lower/jhong/tattered_gray.png
index 5bb11afe3909cb6669f66f1c4b0e5c315ab84677..cbbf3353040f207e1a92e150639afa2ea1f21945 100644
Binary files a/img/clothes/under_lower/jhong/tattered_gray.png and b/img/clothes/under_lower/jhong/tattered_gray.png differ
diff --git a/img/clothes/under_lower/jhong/torn_gray.png b/img/clothes/under_lower/jhong/torn_gray.png
index d5225b09eabbd22c6d054b16ad225eaa4601924a..f774551f7ca4a861e6a7219006a97d5ec1d04093 100644
Binary files a/img/clothes/under_lower/jhong/torn_gray.png and b/img/clothes/under_lower/jhong/torn_gray.png differ
diff --git a/img/clothes/under_lower/jockstrap/acc_gray.png b/img/clothes/under_lower/jockstrap/acc_gray.png
index cb35f2a0b89c385c8042fc8874766f8f03ba4649..3bd58dca885e2fe52bb9094ec11b594c16c92730 100644
Binary files a/img/clothes/under_lower/jockstrap/acc_gray.png and b/img/clothes/under_lower/jockstrap/acc_gray.png differ
diff --git a/img/clothes/under_lower/jockstrap/frayed_gray.png b/img/clothes/under_lower/jockstrap/frayed_gray.png
index b0fd8917d57f032e454f6ae675c40ddac748f628..f273cada8c7c85b967fb09b3ef6534efb7fc9597 100644
Binary files a/img/clothes/under_lower/jockstrap/frayed_gray.png and b/img/clothes/under_lower/jockstrap/frayed_gray.png differ
diff --git a/img/clothes/under_lower/jockstrap/full_gray.png b/img/clothes/under_lower/jockstrap/full_gray.png
index 0248cee02f9aaa06b3300cad1c3eabab4597702d..03ec5270c5db7b20030bcb63f88ea60b9cca4e9a 100644
Binary files a/img/clothes/under_lower/jockstrap/full_gray.png and b/img/clothes/under_lower/jockstrap/full_gray.png differ
diff --git a/img/clothes/under_lower/jockstrap/tattered_gray.png b/img/clothes/under_lower/jockstrap/tattered_gray.png
index f8df64945863d43798c02779f1d9940876a492c8..c5f3d029bbecbdf7a991a1be75eacfcb78cacc04 100644
Binary files a/img/clothes/under_lower/jockstrap/tattered_gray.png and b/img/clothes/under_lower/jockstrap/tattered_gray.png differ
diff --git a/img/clothes/under_lower/jockstrap/torn_gray.png b/img/clothes/under_lower/jockstrap/torn_gray.png
index fcf46c0c34cf533e18de8e03f2a7c368877bd514..f6445917563c909a81b9282c8fbb4cdad44ecaa7 100644
Binary files a/img/clothes/under_lower/jockstrap/torn_gray.png and b/img/clothes/under_lower/jockstrap/torn_gray.png differ
diff --git a/img/clothes/under_lower/lacepanties/frayed_gray.png b/img/clothes/under_lower/lacepanties/frayed_gray.png
index 4e524b22ba40ff2486845547ae1e80d6ab45ea08..d2dd5b728d11e27206ec188eba7380edef9ecc55 100644
Binary files a/img/clothes/under_lower/lacepanties/frayed_gray.png and b/img/clothes/under_lower/lacepanties/frayed_gray.png differ
diff --git a/img/clothes/under_lower/lacepanties/full_gray.png b/img/clothes/under_lower/lacepanties/full_gray.png
index 4e524b22ba40ff2486845547ae1e80d6ab45ea08..d2dd5b728d11e27206ec188eba7380edef9ecc55 100644
Binary files a/img/clothes/under_lower/lacepanties/full_gray.png and b/img/clothes/under_lower/lacepanties/full_gray.png differ
diff --git a/img/clothes/under_lower/lacepanties/tattered_gray.png b/img/clothes/under_lower/lacepanties/tattered_gray.png
index 4e524b22ba40ff2486845547ae1e80d6ab45ea08..d2dd5b728d11e27206ec188eba7380edef9ecc55 100644
Binary files a/img/clothes/under_lower/lacepanties/tattered_gray.png and b/img/clothes/under_lower/lacepanties/tattered_gray.png differ
diff --git a/img/clothes/under_lower/lacepanties/torn_gray.png b/img/clothes/under_lower/lacepanties/torn_gray.png
index 4e524b22ba40ff2486845547ae1e80d6ab45ea08..d2dd5b728d11e27206ec188eba7380edef9ecc55 100644
Binary files a/img/clothes/under_lower/lacepanties/torn_gray.png and b/img/clothes/under_lower/lacepanties/torn_gray.png differ
diff --git a/img/clothes/under_lower/lacepantiesold/frayed_gray.png b/img/clothes/under_lower/lacepantiesold/frayed_gray.png
index c83dc0fd9dd754802cbdb0bff821931711aca64d..67fe5810d37ece7ff71c3f905103df4b2518a492 100644
Binary files a/img/clothes/under_lower/lacepantiesold/frayed_gray.png and b/img/clothes/under_lower/lacepantiesold/frayed_gray.png differ
diff --git a/img/clothes/under_lower/lacepantiesold/full_gray.png b/img/clothes/under_lower/lacepantiesold/full_gray.png
index c83dc0fd9dd754802cbdb0bff821931711aca64d..67fe5810d37ece7ff71c3f905103df4b2518a492 100644
Binary files a/img/clothes/under_lower/lacepantiesold/full_gray.png and b/img/clothes/under_lower/lacepantiesold/full_gray.png differ
diff --git a/img/clothes/under_lower/lacepantiesold/tattered_gray.png b/img/clothes/under_lower/lacepantiesold/tattered_gray.png
index c83dc0fd9dd754802cbdb0bff821931711aca64d..67fe5810d37ece7ff71c3f905103df4b2518a492 100644
Binary files a/img/clothes/under_lower/lacepantiesold/tattered_gray.png and b/img/clothes/under_lower/lacepantiesold/tattered_gray.png differ
diff --git a/img/clothes/under_lower/lacepantiesold/torn_gray.png b/img/clothes/under_lower/lacepantiesold/torn_gray.png
index c83dc0fd9dd754802cbdb0bff821931711aca64d..67fe5810d37ece7ff71c3f905103df4b2518a492 100644
Binary files a/img/clothes/under_lower/lacepantiesold/torn_gray.png and b/img/clothes/under_lower/lacepantiesold/torn_gray.png differ
diff --git a/img/clothes/under_lower/latexleotard/frayed_gray.png b/img/clothes/under_lower/latexleotard/frayed_gray.png
index 903654afef7c0ec67a242ce6d13153d8b0e4c11f..888215e8cc791139e8dafa927ec807d07b3b336a 100644
Binary files a/img/clothes/under_lower/latexleotard/frayed_gray.png and b/img/clothes/under_lower/latexleotard/frayed_gray.png differ
diff --git a/img/clothes/under_lower/latexleotard/full_gray.png b/img/clothes/under_lower/latexleotard/full_gray.png
index 903654afef7c0ec67a242ce6d13153d8b0e4c11f..888215e8cc791139e8dafa927ec807d07b3b336a 100644
Binary files a/img/clothes/under_lower/latexleotard/full_gray.png and b/img/clothes/under_lower/latexleotard/full_gray.png differ
diff --git a/img/clothes/under_lower/latexleotard/tattered_gray.png b/img/clothes/under_lower/latexleotard/tattered_gray.png
index 903654afef7c0ec67a242ce6d13153d8b0e4c11f..888215e8cc791139e8dafa927ec807d07b3b336a 100644
Binary files a/img/clothes/under_lower/latexleotard/tattered_gray.png and b/img/clothes/under_lower/latexleotard/tattered_gray.png differ
diff --git a/img/clothes/under_lower/latexleotard/torn_gray.png b/img/clothes/under_lower/latexleotard/torn_gray.png
index 903654afef7c0ec67a242ce6d13153d8b0e4c11f..888215e8cc791139e8dafa927ec807d07b3b336a 100644
Binary files a/img/clothes/under_lower/latexleotard/torn_gray.png and b/img/clothes/under_lower/latexleotard/torn_gray.png differ
diff --git a/img/clothes/under_lower/leatherleggings/frayed_gray.png b/img/clothes/under_lower/leatherleggings/frayed_gray.png
index b3e7d5a1f8eec6ef1cba8aff3188081b52c78b57..d3017b0968dadd1ae828ac5b2f5c0fd2654514ef 100644
Binary files a/img/clothes/under_lower/leatherleggings/frayed_gray.png and b/img/clothes/under_lower/leatherleggings/frayed_gray.png differ
diff --git a/img/clothes/under_lower/leatherleggings/full_gray.png b/img/clothes/under_lower/leatherleggings/full_gray.png
index ca45a06891762015dd64790c191666d3e3fe253e..ad29be77e35e638b150236bedb1405cadf7903f1 100644
Binary files a/img/clothes/under_lower/leatherleggings/full_gray.png and b/img/clothes/under_lower/leatherleggings/full_gray.png differ
diff --git a/img/clothes/under_lower/leatherleggings/tattered_gray.png b/img/clothes/under_lower/leatherleggings/tattered_gray.png
index 11dc241489d41bacfbd66c12110ecb2470393da4..fb130378b033310c529370a802120f6d7a177882 100644
Binary files a/img/clothes/under_lower/leatherleggings/tattered_gray.png and b/img/clothes/under_lower/leatherleggings/tattered_gray.png differ
diff --git a/img/clothes/under_lower/leatherleggings/torn_gray.png b/img/clothes/under_lower/leatherleggings/torn_gray.png
index f54dee9d36ad2a200063ce0da451e22e4fcafc21..01f1426347267494016d023aabe71613dda8a918 100644
Binary files a/img/clothes/under_lower/leatherleggings/torn_gray.png and b/img/clothes/under_lower/leatherleggings/torn_gray.png differ
diff --git a/img/clothes/under_lower/leotard/frayed_gray.png b/img/clothes/under_lower/leotard/frayed_gray.png
index 32bf86df79abcd1df6a543befada9560594ff27f..855f804fc079259c430250ef5c87c2bc1ab95a13 100644
Binary files a/img/clothes/under_lower/leotard/frayed_gray.png and b/img/clothes/under_lower/leotard/frayed_gray.png differ
diff --git a/img/clothes/under_lower/leotard/full_gray.png b/img/clothes/under_lower/leotard/full_gray.png
index 99843e4e71e4c4a229240fa8ec00023225eac330..d52c4080dd44451462978f6e7668bfaa79faffe1 100644
Binary files a/img/clothes/under_lower/leotard/full_gray.png and b/img/clothes/under_lower/leotard/full_gray.png differ
diff --git a/img/clothes/under_lower/leotard/penis_gray.png b/img/clothes/under_lower/leotard/penis_gray.png
index 836a83d8c9fa6a530f862a19520bc1cf7cd6df8d..f44743f1b503032aeb87f6d89dba0e6a2214dfe8 100644
Binary files a/img/clothes/under_lower/leotard/penis_gray.png and b/img/clothes/under_lower/leotard/penis_gray.png differ
diff --git a/img/clothes/under_lower/leotard/tattered_gray.png b/img/clothes/under_lower/leotard/tattered_gray.png
index c1eda30709e5f594cc7af86d3388cb27d91786ad..6f6f5c3d83f40717fc50859ca8be606352ef0432 100644
Binary files a/img/clothes/under_lower/leotard/tattered_gray.png and b/img/clothes/under_lower/leotard/tattered_gray.png differ
diff --git a/img/clothes/under_lower/leotard/torn_gray.png b/img/clothes/under_lower/leotard/torn_gray.png
index 52395f362f99d539ace98434e281653c24408605..f69aa182dc345ca99b1bd9e72d1a194455dd9906 100644
Binary files a/img/clothes/under_lower/leotard/torn_gray.png and b/img/clothes/under_lower/leotard/torn_gray.png differ
diff --git a/img/clothes/under_lower/leotardbunny/frayed_gray.png b/img/clothes/under_lower/leotardbunny/frayed_gray.png
index 6abb8a7c4d7f64e0c8356291e738ff303c56833b..9109e8332edaae687b58771866a8b3ef74df4de7 100644
Binary files a/img/clothes/under_lower/leotardbunny/frayed_gray.png and b/img/clothes/under_lower/leotardbunny/frayed_gray.png differ
diff --git a/img/clothes/under_lower/leotardbunny/full_gray.png b/img/clothes/under_lower/leotardbunny/full_gray.png
index bb4d795ef14526935e2325f9aaea7c8a60b46441..527c8265e8551b35b1e2d71217f298490e551434 100644
Binary files a/img/clothes/under_lower/leotardbunny/full_gray.png and b/img/clothes/under_lower/leotardbunny/full_gray.png differ
diff --git a/img/clothes/under_lower/leotardbunny/penis_gray.png b/img/clothes/under_lower/leotardbunny/penis_gray.png
index 836a83d8c9fa6a530f862a19520bc1cf7cd6df8d..f44743f1b503032aeb87f6d89dba0e6a2214dfe8 100644
Binary files a/img/clothes/under_lower/leotardbunny/penis_gray.png and b/img/clothes/under_lower/leotardbunny/penis_gray.png differ
diff --git a/img/clothes/under_lower/leotardbunny/tattered_gray.png b/img/clothes/under_lower/leotardbunny/tattered_gray.png
index fc03c175120257dbb68325315d3d7944a07a2b6e..d01347b31d064aba1ff4a8b13c0467c95adb7e9f 100644
Binary files a/img/clothes/under_lower/leotardbunny/tattered_gray.png and b/img/clothes/under_lower/leotardbunny/tattered_gray.png differ
diff --git a/img/clothes/under_lower/leotardbunny/torn_gray.png b/img/clothes/under_lower/leotardbunny/torn_gray.png
index 2bd8ec6310ad15acb121aa57229e4a1184c57743..773d188407827a7380b455832060f8cadfa512bb 100644
Binary files a/img/clothes/under_lower/leotardbunny/torn_gray.png and b/img/clothes/under_lower/leotardbunny/torn_gray.png differ
diff --git a/img/clothes/under_lower/leotardskimpy/frayed_gray.png b/img/clothes/under_lower/leotardskimpy/frayed_gray.png
index 5f8ffaf37f7099984859516a3a810765b07a8954..8ee35d045f7395c5f01d82832bb0247714d0cdeb 100644
Binary files a/img/clothes/under_lower/leotardskimpy/frayed_gray.png and b/img/clothes/under_lower/leotardskimpy/frayed_gray.png differ
diff --git a/img/clothes/under_lower/leotardskimpy/full_gray.png b/img/clothes/under_lower/leotardskimpy/full_gray.png
index 8df241a4ef90ba69342182d53f6adb61c5e3857c..c391ee774a0db3ebbfca1d612115c2c310b77ad5 100644
Binary files a/img/clothes/under_lower/leotardskimpy/full_gray.png and b/img/clothes/under_lower/leotardskimpy/full_gray.png differ
diff --git a/img/clothes/under_lower/leotardskimpy/penis_gray.png b/img/clothes/under_lower/leotardskimpy/penis_gray.png
index 836a83d8c9fa6a530f862a19520bc1cf7cd6df8d..f44743f1b503032aeb87f6d89dba0e6a2214dfe8 100644
Binary files a/img/clothes/under_lower/leotardskimpy/penis_gray.png and b/img/clothes/under_lower/leotardskimpy/penis_gray.png differ
diff --git a/img/clothes/under_lower/leotardskimpy/tattered_gray.png b/img/clothes/under_lower/leotardskimpy/tattered_gray.png
index 51f9858ab14023ea3f45dd1036525fd03dd2fae1..b573d8ead1344faf7d25e041b03cb72b98d60b0d 100644
Binary files a/img/clothes/under_lower/leotardskimpy/tattered_gray.png and b/img/clothes/under_lower/leotardskimpy/tattered_gray.png differ
diff --git a/img/clothes/under_lower/leotardskimpy/torn_gray.png b/img/clothes/under_lower/leotardskimpy/torn_gray.png
index 54de862cefbb4a69cfade3b125e7fa6fd0e75b1c..066f51d6dd7e9a81f9e0526672dd1189f0e162f7 100644
Binary files a/img/clothes/under_lower/leotardskimpy/torn_gray.png and b/img/clothes/under_lower/leotardskimpy/torn_gray.png differ
diff --git a/img/clothes/under_lower/leotardturtleneck/frayed_gray.png b/img/clothes/under_lower/leotardturtleneck/frayed_gray.png
index bbc8e8a9d3d5847d268d6ccda08490e25886e8d4..afdb660957ad5acaee1b0192d458449dffbb99ec 100644
Binary files a/img/clothes/under_lower/leotardturtleneck/frayed_gray.png and b/img/clothes/under_lower/leotardturtleneck/frayed_gray.png differ
diff --git a/img/clothes/under_lower/leotardturtleneck/full_gray.png b/img/clothes/under_lower/leotardturtleneck/full_gray.png
index 55ebc245932edf6194793cab37807720cb5681c5..595132caad8d0df127051a6be76e926327f24b01 100644
Binary files a/img/clothes/under_lower/leotardturtleneck/full_gray.png and b/img/clothes/under_lower/leotardturtleneck/full_gray.png differ
diff --git a/img/clothes/under_lower/leotardturtleneck/penis_gray.png b/img/clothes/under_lower/leotardturtleneck/penis_gray.png
index 5d67ae43bbd985afef4d54a7308ffafba69e701d..91547af030aa8a91b3163cf4670457204c522514 100644
Binary files a/img/clothes/under_lower/leotardturtleneck/penis_gray.png and b/img/clothes/under_lower/leotardturtleneck/penis_gray.png differ
diff --git a/img/clothes/under_lower/leotardturtleneck/tattered_gray.png b/img/clothes/under_lower/leotardturtleneck/tattered_gray.png
index e2b163c6ad112c4d5b2ef8b0d56ece59bc20825f..e38388e90e4eb633386ae7ddd991eb1547bdeaef 100644
Binary files a/img/clothes/under_lower/leotardturtleneck/tattered_gray.png and b/img/clothes/under_lower/leotardturtleneck/tattered_gray.png differ
diff --git a/img/clothes/under_lower/leotardturtleneck/torn_gray.png b/img/clothes/under_lower/leotardturtleneck/torn_gray.png
index 0faa3688edd76d38a9a1da35959fdfc9f911a7f0..591518b8240ac2ec7c51c12839ffc0a77fc9bcd2 100644
Binary files a/img/clothes/under_lower/leotardturtleneck/torn_gray.png and b/img/clothes/under_lower/leotardturtleneck/torn_gray.png differ
diff --git a/img/clothes/under_lower/loincloth/frayed_gray.png b/img/clothes/under_lower/loincloth/frayed_gray.png
index 9270340cc8f22748f8a3e26005ef45c812bc894e..4797ad15ca8e11624e11aeafa1c5d5bb83dec8cb 100644
Binary files a/img/clothes/under_lower/loincloth/frayed_gray.png and b/img/clothes/under_lower/loincloth/frayed_gray.png differ
diff --git a/img/clothes/under_lower/loincloth/full_gray.png b/img/clothes/under_lower/loincloth/full_gray.png
index 6a624480015a97459fc4a8ed27d30ccc052a681e..eaae6776183d7a1ba48908e4bd89fdde95637ed1 100644
Binary files a/img/clothes/under_lower/loincloth/full_gray.png and b/img/clothes/under_lower/loincloth/full_gray.png differ
diff --git a/img/clothes/under_lower/loincloth/tattered_gray.png b/img/clothes/under_lower/loincloth/tattered_gray.png
index a7401f5863fd3d0bc45e2e0dda8382066bf53391..d26e26e2cb93de3edf18ab345dc0e7177b001407 100644
Binary files a/img/clothes/under_lower/loincloth/tattered_gray.png and b/img/clothes/under_lower/loincloth/tattered_gray.png differ
diff --git a/img/clothes/under_lower/loincloth/torn_gray.png b/img/clothes/under_lower/loincloth/torn_gray.png
index e713fa4346149e9ee4d534836459f3defb0b5783..9163c8bff5bc712163a3f3e33abf609eb6d88ea3 100644
Binary files a/img/clothes/under_lower/loincloth/torn_gray.png and b/img/clothes/under_lower/loincloth/torn_gray.png differ
diff --git a/img/clothes/under_lower/longjohns/frayed_gray.png b/img/clothes/under_lower/longjohns/frayed_gray.png
index 9fa388a01575799120eaad0516cff775fce9ae44..834becf5469f8ecbc3a25693a869c88e4d81164a 100644
Binary files a/img/clothes/under_lower/longjohns/frayed_gray.png and b/img/clothes/under_lower/longjohns/frayed_gray.png differ
diff --git a/img/clothes/under_lower/longjohns/full_gray.png b/img/clothes/under_lower/longjohns/full_gray.png
index c1671e6b655b343f7fe8f4e11be305903a309944..d032656eb38090842c39c7f2b882b642451aacdb 100644
Binary files a/img/clothes/under_lower/longjohns/full_gray.png and b/img/clothes/under_lower/longjohns/full_gray.png differ
diff --git a/img/clothes/under_lower/longjohns/tattered_gray.png b/img/clothes/under_lower/longjohns/tattered_gray.png
index 957f0b441520db873d1b36314fcb9213d100d0a7..1d45e2f4ff37ebb636e8ec5c4f45fb099d592ad6 100644
Binary files a/img/clothes/under_lower/longjohns/tattered_gray.png and b/img/clothes/under_lower/longjohns/tattered_gray.png differ
diff --git a/img/clothes/under_lower/longjohns/torn_gray.png b/img/clothes/under_lower/longjohns/torn_gray.png
index bc7db3c198cd88f5637d2a6f90a65a85ef7f2130..4575fff740234b176740325ecfac902f4dc9a599 100644
Binary files a/img/clothes/under_lower/longjohns/torn_gray.png and b/img/clothes/under_lower/longjohns/torn_gray.png differ
diff --git a/img/clothes/under_lower/microkini/frayed_gray.png b/img/clothes/under_lower/microkini/frayed_gray.png
index 48b6200a17b097d82eef402060d78e6eebe39dff..b9d983eeea23c45ce3ae7280c0ce0085fe4e3242 100644
Binary files a/img/clothes/under_lower/microkini/frayed_gray.png and b/img/clothes/under_lower/microkini/frayed_gray.png differ
diff --git a/img/clothes/under_lower/microkini/full_gray.png b/img/clothes/under_lower/microkini/full_gray.png
index 48b6200a17b097d82eef402060d78e6eebe39dff..b9d983eeea23c45ce3ae7280c0ce0085fe4e3242 100644
Binary files a/img/clothes/under_lower/microkini/full_gray.png and b/img/clothes/under_lower/microkini/full_gray.png differ
diff --git a/img/clothes/under_lower/microkini/penis_gray.png b/img/clothes/under_lower/microkini/penis_gray.png
index cdaf1febe1f78c1652efb758f19eeb4d9effb23b..4a113a8ca2b54b902abaa2ee1c56f49d722a4d78 100644
Binary files a/img/clothes/under_lower/microkini/penis_gray.png and b/img/clothes/under_lower/microkini/penis_gray.png differ
diff --git a/img/clothes/under_lower/microkini/tattered_gray.png b/img/clothes/under_lower/microkini/tattered_gray.png
index 48b6200a17b097d82eef402060d78e6eebe39dff..b9d983eeea23c45ce3ae7280c0ce0085fe4e3242 100644
Binary files a/img/clothes/under_lower/microkini/tattered_gray.png and b/img/clothes/under_lower/microkini/tattered_gray.png differ
diff --git a/img/clothes/under_lower/microkini/torn_gray.png b/img/clothes/under_lower/microkini/torn_gray.png
index 48b6200a17b097d82eef402060d78e6eebe39dff..b9d983eeea23c45ce3ae7280c0ce0085fe4e3242 100644
Binary files a/img/clothes/under_lower/microkini/torn_gray.png and b/img/clothes/under_lower/microkini/torn_gray.png differ
diff --git a/img/clothes/under_lower/plainpanties/frayed_gray.png b/img/clothes/under_lower/plainpanties/frayed_gray.png
index 017550b1d90add91e4ff1ae19ed7353d5da70b8f..b487b433eb66b693d8f968e398ad8dca078340ff 100644
Binary files a/img/clothes/under_lower/plainpanties/frayed_gray.png and b/img/clothes/under_lower/plainpanties/frayed_gray.png differ
diff --git a/img/clothes/under_lower/plainpanties/full_gray.png b/img/clothes/under_lower/plainpanties/full_gray.png
index 017550b1d90add91e4ff1ae19ed7353d5da70b8f..b487b433eb66b693d8f968e398ad8dca078340ff 100644
Binary files a/img/clothes/under_lower/plainpanties/full_gray.png and b/img/clothes/under_lower/plainpanties/full_gray.png differ
diff --git a/img/clothes/under_lower/plainpanties/penis_gray.png b/img/clothes/under_lower/plainpanties/penis_gray.png
index dfb7dd9dd91daf2cf6af107d22bc6b4e1f8ca4ef..37866b420dffb0e08d072d2c9712276db247db14 100644
Binary files a/img/clothes/under_lower/plainpanties/penis_gray.png and b/img/clothes/under_lower/plainpanties/penis_gray.png differ
diff --git a/img/clothes/under_lower/plainpanties/tattered_gray.png b/img/clothes/under_lower/plainpanties/tattered_gray.png
index 017550b1d90add91e4ff1ae19ed7353d5da70b8f..b487b433eb66b693d8f968e398ad8dca078340ff 100644
Binary files a/img/clothes/under_lower/plainpanties/tattered_gray.png and b/img/clothes/under_lower/plainpanties/tattered_gray.png differ
diff --git a/img/clothes/under_lower/plainpanties/torn_gray.png b/img/clothes/under_lower/plainpanties/torn_gray.png
index 017550b1d90add91e4ff1ae19ed7353d5da70b8f..b487b433eb66b693d8f968e398ad8dca078340ff 100644
Binary files a/img/clothes/under_lower/plainpanties/torn_gray.png and b/img/clothes/under_lower/plainpanties/torn_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimbottoms/frayed_gray.png b/img/clothes/under_lower/schoolswimbottoms/frayed_gray.png
index b2300011051cc26c6dafe90db385c96cb763a086..ac529884da0dffcc41288bada17483affb39e3e6 100644
Binary files a/img/clothes/under_lower/schoolswimbottoms/frayed_gray.png and b/img/clothes/under_lower/schoolswimbottoms/frayed_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimbottoms/full_gray.png b/img/clothes/under_lower/schoolswimbottoms/full_gray.png
index ae16a296604e35da98f98b9322592a7b017cdf57..2699e2570cd2a94095a27b481bbe3b0b111899bd 100644
Binary files a/img/clothes/under_lower/schoolswimbottoms/full_gray.png and b/img/clothes/under_lower/schoolswimbottoms/full_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimbottoms/tattered_gray.png b/img/clothes/under_lower/schoolswimbottoms/tattered_gray.png
index b68c1ee9c8cbd56cdaa465f50b202f3ba514f374..d6c4958be48a217e321283e07ea797a405f580bc 100644
Binary files a/img/clothes/under_lower/schoolswimbottoms/tattered_gray.png and b/img/clothes/under_lower/schoolswimbottoms/tattered_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimbottoms/torn_gray.png b/img/clothes/under_lower/schoolswimbottoms/torn_gray.png
index 237eb0cff190ed626d93c9d5ecfe3f9d86e10714..f180f70cbd7e71cd822af843d17775f973c17424 100644
Binary files a/img/clothes/under_lower/schoolswimbottoms/torn_gray.png and b/img/clothes/under_lower/schoolswimbottoms/torn_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimshorts/frayed_gray.png b/img/clothes/under_lower/schoolswimshorts/frayed_gray.png
index 25047a084ca462e7af9e89399365acd36263b5a2..5b7a239f144086e952e3c6cee0a3e4f7412a85b5 100644
Binary files a/img/clothes/under_lower/schoolswimshorts/frayed_gray.png and b/img/clothes/under_lower/schoolswimshorts/frayed_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimshorts/full_gray.png b/img/clothes/under_lower/schoolswimshorts/full_gray.png
index 9d53fdc57b8564a1ac0c4aaf49d4984b9b9030bf..6f2d7f826880e7adbeda6659c00571e8b34e8a34 100644
Binary files a/img/clothes/under_lower/schoolswimshorts/full_gray.png and b/img/clothes/under_lower/schoolswimshorts/full_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimshorts/tattered_gray.png b/img/clothes/under_lower/schoolswimshorts/tattered_gray.png
index ab265732a22c94d08ec1b91eebfb67784ecf3e93..a21a4571b59e285488db98814f8036afb3abe877 100644
Binary files a/img/clothes/under_lower/schoolswimshorts/tattered_gray.png and b/img/clothes/under_lower/schoolswimshorts/tattered_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimshorts/torn_gray.png b/img/clothes/under_lower/schoolswimshorts/torn_gray.png
index 9df7c0393ce3c72dfc347717494bd4bf9703d1ec..48579a012c6725d854f16fc34bdb11e2ab349b46 100644
Binary files a/img/clothes/under_lower/schoolswimshorts/torn_gray.png and b/img/clothes/under_lower/schoolswimshorts/torn_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimsuit/frayed_gray.png b/img/clothes/under_lower/schoolswimsuit/frayed_gray.png
index 3eae80a25436b7337c50e357007c12d2d84b8b98..16d103194f732eb5aa4ab4893c3b4dc101446641 100644
Binary files a/img/clothes/under_lower/schoolswimsuit/frayed_gray.png and b/img/clothes/under_lower/schoolswimsuit/frayed_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimsuit/full_gray.png b/img/clothes/under_lower/schoolswimsuit/full_gray.png
index 3eae80a25436b7337c50e357007c12d2d84b8b98..16d103194f732eb5aa4ab4893c3b4dc101446641 100644
Binary files a/img/clothes/under_lower/schoolswimsuit/full_gray.png and b/img/clothes/under_lower/schoolswimsuit/full_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimsuit/penis_gray.png b/img/clothes/under_lower/schoolswimsuit/penis_gray.png
index b6885f629a9656060206367bbd08355a68d00edf..4079fde16a44e58d76dd84e372d9d132a1c11a4d 100644
Binary files a/img/clothes/under_lower/schoolswimsuit/penis_gray.png and b/img/clothes/under_lower/schoolswimsuit/penis_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimsuit/tattered_gray.png b/img/clothes/under_lower/schoolswimsuit/tattered_gray.png
index 3eae80a25436b7337c50e357007c12d2d84b8b98..16d103194f732eb5aa4ab4893c3b4dc101446641 100644
Binary files a/img/clothes/under_lower/schoolswimsuit/tattered_gray.png and b/img/clothes/under_lower/schoolswimsuit/tattered_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimsuit/torn_gray.png b/img/clothes/under_lower/schoolswimsuit/torn_gray.png
index 3eae80a25436b7337c50e357007c12d2d84b8b98..16d103194f732eb5aa4ab4893c3b4dc101446641 100644
Binary files a/img/clothes/under_lower/schoolswimsuit/torn_gray.png and b/img/clothes/under_lower/schoolswimsuit/torn_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimsuitj/frayed_gray.png b/img/clothes/under_lower/schoolswimsuitj/frayed_gray.png
index 3eae80a25436b7337c50e357007c12d2d84b8b98..16d103194f732eb5aa4ab4893c3b4dc101446641 100644
Binary files a/img/clothes/under_lower/schoolswimsuitj/frayed_gray.png and b/img/clothes/under_lower/schoolswimsuitj/frayed_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimsuitj/full_gray.png b/img/clothes/under_lower/schoolswimsuitj/full_gray.png
index 3eae80a25436b7337c50e357007c12d2d84b8b98..16d103194f732eb5aa4ab4893c3b4dc101446641 100644
Binary files a/img/clothes/under_lower/schoolswimsuitj/full_gray.png and b/img/clothes/under_lower/schoolswimsuitj/full_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimsuitj/penis_gray.png b/img/clothes/under_lower/schoolswimsuitj/penis_gray.png
index b6885f629a9656060206367bbd08355a68d00edf..4079fde16a44e58d76dd84e372d9d132a1c11a4d 100644
Binary files a/img/clothes/under_lower/schoolswimsuitj/penis_gray.png and b/img/clothes/under_lower/schoolswimsuitj/penis_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimsuitj/tattered_gray.png b/img/clothes/under_lower/schoolswimsuitj/tattered_gray.png
index 3eae80a25436b7337c50e357007c12d2d84b8b98..16d103194f732eb5aa4ab4893c3b4dc101446641 100644
Binary files a/img/clothes/under_lower/schoolswimsuitj/tattered_gray.png and b/img/clothes/under_lower/schoolswimsuitj/tattered_gray.png differ
diff --git a/img/clothes/under_lower/schoolswimsuitj/torn_gray.png b/img/clothes/under_lower/schoolswimsuitj/torn_gray.png
index 3eae80a25436b7337c50e357007c12d2d84b8b98..16d103194f732eb5aa4ab4893c3b4dc101446641 100644
Binary files a/img/clothes/under_lower/schoolswimsuitj/torn_gray.png and b/img/clothes/under_lower/schoolswimsuitj/torn_gray.png differ
diff --git a/img/clothes/under_lower/seethroughswimsuit/frayed_gray.png b/img/clothes/under_lower/seethroughswimsuit/frayed_gray.png
index 5dea471ffd90f1df151618d9196480406306de1c..75a90e88110ce3bd142b4feb6d73ec65edd859a8 100644
Binary files a/img/clothes/under_lower/seethroughswimsuit/frayed_gray.png and b/img/clothes/under_lower/seethroughswimsuit/frayed_gray.png differ
diff --git a/img/clothes/under_lower/seethroughswimsuit/full_gray.png b/img/clothes/under_lower/seethroughswimsuit/full_gray.png
index 203ad33251756e2157a9833a494e5481c365bd1e..9381886aebd200e24b32e399c2d5ca1b72af294a 100644
Binary files a/img/clothes/under_lower/seethroughswimsuit/full_gray.png and b/img/clothes/under_lower/seethroughswimsuit/full_gray.png differ
diff --git a/img/clothes/under_lower/seethroughswimsuit/penis_gray.png b/img/clothes/under_lower/seethroughswimsuit/penis_gray.png
index 90329ac8860e341a6efacc4b3ff185ad22704960..225c71e8f9101d9199b05c3fa8dff2bb9c38408f 100644
Binary files a/img/clothes/under_lower/seethroughswimsuit/penis_gray.png and b/img/clothes/under_lower/seethroughswimsuit/penis_gray.png differ
diff --git a/img/clothes/under_lower/seethroughswimsuit/tattered_gray.png b/img/clothes/under_lower/seethroughswimsuit/tattered_gray.png
index ad362a049afd6c8a28e82d6961c00bc5007a1a12..8dc94442562f1c16615360e899cead9738c45785 100644
Binary files a/img/clothes/under_lower/seethroughswimsuit/tattered_gray.png and b/img/clothes/under_lower/seethroughswimsuit/tattered_gray.png differ
diff --git a/img/clothes/under_lower/seethroughswimsuit/torn_gray.png b/img/clothes/under_lower/seethroughswimsuit/torn_gray.png
index 7755199dba78c99c9203dbf60b462c676346cce0..7744db79a3f7a03804032a288b88d9ebb54682d9 100644
Binary files a/img/clothes/under_lower/seethroughswimsuit/torn_gray.png and b/img/clothes/under_lower/seethroughswimsuit/torn_gray.png differ
diff --git a/img/clothes/under_lower/shibari/frayed_gray.png b/img/clothes/under_lower/shibari/frayed_gray.png
index ed77e35e9aaa3ae54b9b69b12a7820f38701c7e6..822df36a192286e4e664942bcaffc529306c29a8 100644
Binary files a/img/clothes/under_lower/shibari/frayed_gray.png and b/img/clothes/under_lower/shibari/frayed_gray.png differ
diff --git a/img/clothes/under_lower/shibari/full_gray.png b/img/clothes/under_lower/shibari/full_gray.png
index f76b9268bc145b36dba28ca3732df0d2760c58c5..7ca067e012dfe681ece9d4ba5057ffbfaa8317f0 100644
Binary files a/img/clothes/under_lower/shibari/full_gray.png and b/img/clothes/under_lower/shibari/full_gray.png differ
diff --git a/img/clothes/under_lower/shibari/tattered_gray.png b/img/clothes/under_lower/shibari/tattered_gray.png
index b802a89092a2d35ba9ac655bbd97cc5fa7f8d018..ad6b0e2ffdf831a5b4bce03c36641a1ca3908a07 100644
Binary files a/img/clothes/under_lower/shibari/tattered_gray.png and b/img/clothes/under_lower/shibari/tattered_gray.png differ
diff --git a/img/clothes/under_lower/shibari/torn_gray.png b/img/clothes/under_lower/shibari/torn_gray.png
index 0671e573ee9ed38942757d88548cc0181f82bc91..96d99128cb335b995d9836fe1709b844dd72bd70 100644
Binary files a/img/clothes/under_lower/shibari/torn_gray.png and b/img/clothes/under_lower/shibari/torn_gray.png differ
diff --git a/img/clothes/under_lower/speedo/frayed_gray.png b/img/clothes/under_lower/speedo/frayed_gray.png
index 5ec6fd565b9ecb460a67f84ea1623f32bf57e1f8..15f5e921b4cb577506db30aa82196a94e349e26f 100644
Binary files a/img/clothes/under_lower/speedo/frayed_gray.png and b/img/clothes/under_lower/speedo/frayed_gray.png differ
diff --git a/img/clothes/under_lower/speedo/full_gray.png b/img/clothes/under_lower/speedo/full_gray.png
index 5ec6fd565b9ecb460a67f84ea1623f32bf57e1f8..15f5e921b4cb577506db30aa82196a94e349e26f 100644
Binary files a/img/clothes/under_lower/speedo/full_gray.png and b/img/clothes/under_lower/speedo/full_gray.png differ
diff --git a/img/clothes/under_lower/speedo/penis_gray.png b/img/clothes/under_lower/speedo/penis_gray.png
index 338df3b5a5af3dc81ee9ce36df5b9fc0564455e5..37355c8603edd4f69263e829d0a138171c8b871b 100644
Binary files a/img/clothes/under_lower/speedo/penis_gray.png and b/img/clothes/under_lower/speedo/penis_gray.png differ
diff --git a/img/clothes/under_lower/speedo/tattered_gray.png b/img/clothes/under_lower/speedo/tattered_gray.png
index 5ec6fd565b9ecb460a67f84ea1623f32bf57e1f8..15f5e921b4cb577506db30aa82196a94e349e26f 100644
Binary files a/img/clothes/under_lower/speedo/tattered_gray.png and b/img/clothes/under_lower/speedo/tattered_gray.png differ
diff --git a/img/clothes/under_lower/speedo/torn_gray.png b/img/clothes/under_lower/speedo/torn_gray.png
index 5ec6fd565b9ecb460a67f84ea1623f32bf57e1f8..15f5e921b4cb577506db30aa82196a94e349e26f 100644
Binary files a/img/clothes/under_lower/speedo/torn_gray.png and b/img/clothes/under_lower/speedo/torn_gray.png differ
diff --git a/img/clothes/under_lower/straponhorse/acc.png b/img/clothes/under_lower/straponhorse/acc.png
index 33db9d8d09d6ae5986c984ef2676ab6a35f6159c..07a42d5c2b42c3fe6b5c46e489986620d9c67729 100644
Binary files a/img/clothes/under_lower/straponhorse/acc.png and b/img/clothes/under_lower/straponhorse/acc.png differ
diff --git a/img/clothes/under_lower/straponhorse/frayed_gray.png b/img/clothes/under_lower/straponhorse/frayed_gray.png
index 8b82eedc0e485aac8e4a5050d3c0232b1f007015..9ce38408ceb9338e34e737387877bd097e64c73d 100644
Binary files a/img/clothes/under_lower/straponhorse/frayed_gray.png and b/img/clothes/under_lower/straponhorse/frayed_gray.png differ
diff --git a/img/clothes/under_lower/straponhorse/full_gray.png b/img/clothes/under_lower/straponhorse/full_gray.png
index 8b82eedc0e485aac8e4a5050d3c0232b1f007015..9ce38408ceb9338e34e737387877bd097e64c73d 100644
Binary files a/img/clothes/under_lower/straponhorse/full_gray.png and b/img/clothes/under_lower/straponhorse/full_gray.png differ
diff --git a/img/clothes/under_lower/straponhorse/tattered_gray.png b/img/clothes/under_lower/straponhorse/tattered_gray.png
index 8b82eedc0e485aac8e4a5050d3c0232b1f007015..9ce38408ceb9338e34e737387877bd097e64c73d 100644
Binary files a/img/clothes/under_lower/straponhorse/tattered_gray.png and b/img/clothes/under_lower/straponhorse/tattered_gray.png differ
diff --git a/img/clothes/under_lower/straponhorse/torn_gray.png b/img/clothes/under_lower/straponhorse/torn_gray.png
index 8b82eedc0e485aac8e4a5050d3c0232b1f007015..9ce38408ceb9338e34e737387877bd097e64c73d 100644
Binary files a/img/clothes/under_lower/straponhorse/torn_gray.png and b/img/clothes/under_lower/straponhorse/torn_gray.png differ
diff --git a/img/clothes/under_lower/straponknotted/acc.png b/img/clothes/under_lower/straponknotted/acc.png
index b1446b59f9264529b03b2b2b814ff39e73ea9d68..5171c38909370613ac9986e5a33892c52f971d9d 100644
Binary files a/img/clothes/under_lower/straponknotted/acc.png and b/img/clothes/under_lower/straponknotted/acc.png differ
diff --git a/img/clothes/under_lower/straponknotted/full_gray.png b/img/clothes/under_lower/straponknotted/full_gray.png
index 3394ac455b1ee57e9ea208876976b6ca3fba3dc7..e8243b1688e93880f8a4f32a68aac4e7dd5d011f 100644
Binary files a/img/clothes/under_lower/straponknotted/full_gray.png and b/img/clothes/under_lower/straponknotted/full_gray.png differ
diff --git a/img/clothes/under_lower/straponlower/frayed_gray.png b/img/clothes/under_lower/straponlower/frayed_gray.png
index 5697b59fc5be176991bacd9744ba759950d72edc..0d3b52ca9ba716313f0f7bd89a7ce24c8965b5e9 100644
Binary files a/img/clothes/under_lower/straponlower/frayed_gray.png and b/img/clothes/under_lower/straponlower/frayed_gray.png differ
diff --git a/img/clothes/under_lower/straponlower/full_gray.png b/img/clothes/under_lower/straponlower/full_gray.png
index 5697b59fc5be176991bacd9744ba759950d72edc..0d3b52ca9ba716313f0f7bd89a7ce24c8965b5e9 100644
Binary files a/img/clothes/under_lower/straponlower/full_gray.png and b/img/clothes/under_lower/straponlower/full_gray.png differ
diff --git a/img/clothes/under_lower/straponlower/tattered_gray.png b/img/clothes/under_lower/straponlower/tattered_gray.png
index 5697b59fc5be176991bacd9744ba759950d72edc..0d3b52ca9ba716313f0f7bd89a7ce24c8965b5e9 100644
Binary files a/img/clothes/under_lower/straponlower/tattered_gray.png and b/img/clothes/under_lower/straponlower/tattered_gray.png differ
diff --git a/img/clothes/under_lower/straponlower/torn_gray.png b/img/clothes/under_lower/straponlower/torn_gray.png
index 5697b59fc5be176991bacd9744ba759950d72edc..0d3b52ca9ba716313f0f7bd89a7ce24c8965b5e9 100644
Binary files a/img/clothes/under_lower/straponlower/torn_gray.png and b/img/clothes/under_lower/straponlower/torn_gray.png differ
diff --git a/img/clothes/under_lower/straponstudded/frayed_gray.png b/img/clothes/under_lower/straponstudded/frayed_gray.png
index 5697b59fc5be176991bacd9744ba759950d72edc..0d3b52ca9ba716313f0f7bd89a7ce24c8965b5e9 100644
Binary files a/img/clothes/under_lower/straponstudded/frayed_gray.png and b/img/clothes/under_lower/straponstudded/frayed_gray.png differ
diff --git a/img/clothes/under_lower/straponstudded/full_gray.png b/img/clothes/under_lower/straponstudded/full_gray.png
index 5697b59fc5be176991bacd9744ba759950d72edc..0d3b52ca9ba716313f0f7bd89a7ce24c8965b5e9 100644
Binary files a/img/clothes/under_lower/straponstudded/full_gray.png and b/img/clothes/under_lower/straponstudded/full_gray.png differ
diff --git a/img/clothes/under_lower/straponstudded/tattered_gray.png b/img/clothes/under_lower/straponstudded/tattered_gray.png
index 5697b59fc5be176991bacd9744ba759950d72edc..0d3b52ca9ba716313f0f7bd89a7ce24c8965b5e9 100644
Binary files a/img/clothes/under_lower/straponstudded/tattered_gray.png and b/img/clothes/under_lower/straponstudded/tattered_gray.png differ
diff --git a/img/clothes/under_lower/straponstudded/torn_gray.png b/img/clothes/under_lower/straponstudded/torn_gray.png
index 5697b59fc5be176991bacd9744ba759950d72edc..0d3b52ca9ba716313f0f7bd89a7ce24c8965b5e9 100644
Binary files a/img/clothes/under_lower/straponstudded/torn_gray.png and b/img/clothes/under_lower/straponstudded/torn_gray.png differ
diff --git a/img/clothes/under_lower/stripedpanties/acc_gray.png b/img/clothes/under_lower/stripedpanties/acc_gray.png
index 47e352d467ac93c8493aeef77721cd7f4de8a3d5..f9195717ee01ac5d371b6c75f05da9c3dde66c1e 100644
Binary files a/img/clothes/under_lower/stripedpanties/acc_gray.png and b/img/clothes/under_lower/stripedpanties/acc_gray.png differ
diff --git a/img/clothes/under_lower/stripedpanties/acc_penis_gray.png b/img/clothes/under_lower/stripedpanties/acc_penis_gray.png
index ef07c68746a3c1688273cc793cf92b94a3c82e7d..541f803870a794b781fc23d6215bdb5a9dc2a11a 100644
Binary files a/img/clothes/under_lower/stripedpanties/acc_penis_gray.png and b/img/clothes/under_lower/stripedpanties/acc_penis_gray.png differ
diff --git a/img/clothes/under_lower/stripedpanties/frayed_gray.png b/img/clothes/under_lower/stripedpanties/frayed_gray.png
index c43c97ab3adb590ec2970bfcc919aa7d3c348047..f783282a9afaf56f7d49f5513b3d985fca8eff5c 100644
Binary files a/img/clothes/under_lower/stripedpanties/frayed_gray.png and b/img/clothes/under_lower/stripedpanties/frayed_gray.png differ
diff --git a/img/clothes/under_lower/stripedpanties/full_gray.png b/img/clothes/under_lower/stripedpanties/full_gray.png
index c43c97ab3adb590ec2970bfcc919aa7d3c348047..f783282a9afaf56f7d49f5513b3d985fca8eff5c 100644
Binary files a/img/clothes/under_lower/stripedpanties/full_gray.png and b/img/clothes/under_lower/stripedpanties/full_gray.png differ
diff --git a/img/clothes/under_lower/stripedpanties/penis_gray.png b/img/clothes/under_lower/stripedpanties/penis_gray.png
index 9c95db2f4033b8ff4550f664ce93ca0ea25a7e9a..8058b9c31cf1cf78bdcdb6e610a420103560049c 100644
Binary files a/img/clothes/under_lower/stripedpanties/penis_gray.png and b/img/clothes/under_lower/stripedpanties/penis_gray.png differ
diff --git a/img/clothes/under_lower/stripedpanties/tattered_gray.png b/img/clothes/under_lower/stripedpanties/tattered_gray.png
index c43c97ab3adb590ec2970bfcc919aa7d3c348047..f783282a9afaf56f7d49f5513b3d985fca8eff5c 100644
Binary files a/img/clothes/under_lower/stripedpanties/tattered_gray.png and b/img/clothes/under_lower/stripedpanties/tattered_gray.png differ
diff --git a/img/clothes/under_lower/stripedpanties/torn_gray.png b/img/clothes/under_lower/stripedpanties/torn_gray.png
index c43c97ab3adb590ec2970bfcc919aa7d3c348047..f783282a9afaf56f7d49f5513b3d985fca8eff5c 100644
Binary files a/img/clothes/under_lower/stripedpanties/torn_gray.png and b/img/clothes/under_lower/stripedpanties/torn_gray.png differ
diff --git a/img/clothes/under_lower/swimsuit/frayed_gray.png b/img/clothes/under_lower/swimsuit/frayed_gray.png
index f4dcfc23179bcbdf1682128fc43ffd8f0f33f71a..adae6cbc2c8e077b085b640e917b27c59bc84126 100644
Binary files a/img/clothes/under_lower/swimsuit/frayed_gray.png and b/img/clothes/under_lower/swimsuit/frayed_gray.png differ
diff --git a/img/clothes/under_lower/swimsuit/full_gray.png b/img/clothes/under_lower/swimsuit/full_gray.png
index f4dcfc23179bcbdf1682128fc43ffd8f0f33f71a..adae6cbc2c8e077b085b640e917b27c59bc84126 100644
Binary files a/img/clothes/under_lower/swimsuit/full_gray.png and b/img/clothes/under_lower/swimsuit/full_gray.png differ
diff --git a/img/clothes/under_lower/swimsuit/penis_gray.png b/img/clothes/under_lower/swimsuit/penis_gray.png
index b6885f629a9656060206367bbd08355a68d00edf..4079fde16a44e58d76dd84e372d9d132a1c11a4d 100644
Binary files a/img/clothes/under_lower/swimsuit/penis_gray.png and b/img/clothes/under_lower/swimsuit/penis_gray.png differ
diff --git a/img/clothes/under_lower/swimsuit/tattered_gray.png b/img/clothes/under_lower/swimsuit/tattered_gray.png
index f4dcfc23179bcbdf1682128fc43ffd8f0f33f71a..adae6cbc2c8e077b085b640e917b27c59bc84126 100644
Binary files a/img/clothes/under_lower/swimsuit/tattered_gray.png and b/img/clothes/under_lower/swimsuit/tattered_gray.png differ
diff --git a/img/clothes/under_lower/swimsuit/torn_gray.png b/img/clothes/under_lower/swimsuit/torn_gray.png
index f4dcfc23179bcbdf1682128fc43ffd8f0f33f71a..adae6cbc2c8e077b085b640e917b27c59bc84126 100644
Binary files a/img/clothes/under_lower/swimsuit/torn_gray.png and b/img/clothes/under_lower/swimsuit/torn_gray.png differ
diff --git a/img/clothes/under_lower/thong/frayed_gray.png b/img/clothes/under_lower/thong/frayed_gray.png
index ec9bf58d693606036e613ff2059a308b7a07a02f..eea8db89e42f1157fd8057d0185b76d69b8522c4 100644
Binary files a/img/clothes/under_lower/thong/frayed_gray.png and b/img/clothes/under_lower/thong/frayed_gray.png differ
diff --git a/img/clothes/under_lower/thong/full_gray.png b/img/clothes/under_lower/thong/full_gray.png
index ec9bf58d693606036e613ff2059a308b7a07a02f..eea8db89e42f1157fd8057d0185b76d69b8522c4 100644
Binary files a/img/clothes/under_lower/thong/full_gray.png and b/img/clothes/under_lower/thong/full_gray.png differ
diff --git a/img/clothes/under_lower/thong/penis_gray.png b/img/clothes/under_lower/thong/penis_gray.png
index 42fd705f564c4af8ccef974d25e4a24ef8c1962f..38d5625f1e2ccd8d9a5cc29b6fe281e98a2c03b7 100644
Binary files a/img/clothes/under_lower/thong/penis_gray.png and b/img/clothes/under_lower/thong/penis_gray.png differ
diff --git a/img/clothes/under_lower/thong/tattered_gray.png b/img/clothes/under_lower/thong/tattered_gray.png
index ec9bf58d693606036e613ff2059a308b7a07a02f..eea8db89e42f1157fd8057d0185b76d69b8522c4 100644
Binary files a/img/clothes/under_lower/thong/tattered_gray.png and b/img/clothes/under_lower/thong/tattered_gray.png differ
diff --git a/img/clothes/under_lower/thong/torn_gray.png b/img/clothes/under_lower/thong/torn_gray.png
index ec9bf58d693606036e613ff2059a308b7a07a02f..eea8db89e42f1157fd8057d0185b76d69b8522c4 100644
Binary files a/img/clothes/under_lower/thong/torn_gray.png and b/img/clothes/under_lower/thong/torn_gray.png differ
diff --git a/img/clothes/under_lower/tiesidebikini/frayed_gray.png b/img/clothes/under_lower/tiesidebikini/frayed_gray.png
index 6c32ef0eaa53432c9bed4568e4457d40c082c182..3a511aa00155328bf54e54e0d34d1b5b8d2b196a 100644
Binary files a/img/clothes/under_lower/tiesidebikini/frayed_gray.png and b/img/clothes/under_lower/tiesidebikini/frayed_gray.png differ
diff --git a/img/clothes/under_lower/tiesidebikini/full_gray.png b/img/clothes/under_lower/tiesidebikini/full_gray.png
index 00e423ec79ae3b429b302f2820cd8d7e7ae605de..3a511aa00155328bf54e54e0d34d1b5b8d2b196a 100644
Binary files a/img/clothes/under_lower/tiesidebikini/full_gray.png and b/img/clothes/under_lower/tiesidebikini/full_gray.png differ
diff --git a/img/clothes/under_lower/tiesidebikini/penis_gray.png b/img/clothes/under_lower/tiesidebikini/penis_gray.png
index a9ef72dd3ff0234696342695d4e93c600af58515..c0968b3c8cc4bff30a572dbbcb78c0e8f86ccc68 100644
Binary files a/img/clothes/under_lower/tiesidebikini/penis_gray.png and b/img/clothes/under_lower/tiesidebikini/penis_gray.png differ
diff --git a/img/clothes/under_lower/tiesidebikini/tattered_gray.png b/img/clothes/under_lower/tiesidebikini/tattered_gray.png
index fe9c7f929c47504dd7d9f8b93ebe455aee53ce8f..3a511aa00155328bf54e54e0d34d1b5b8d2b196a 100644
Binary files a/img/clothes/under_lower/tiesidebikini/tattered_gray.png and b/img/clothes/under_lower/tiesidebikini/tattered_gray.png differ
diff --git a/img/clothes/under_lower/tiesidebikini/torn_gray.png b/img/clothes/under_lower/tiesidebikini/torn_gray.png
index cdbe36ba1819acb927d58842e65b3cb9a4a18795..3a511aa00155328bf54e54e0d34d1b5b8d2b196a 100644
Binary files a/img/clothes/under_lower/tiesidebikini/torn_gray.png and b/img/clothes/under_lower/tiesidebikini/torn_gray.png differ
diff --git a/img/clothes/under_lower/unitard/frayed_gray.png b/img/clothes/under_lower/unitard/frayed_gray.png
index 6add3b79de2ccf6e045beb8c263b9a6a74cbc76d..9a7afbd46772e8ab9363e4c8391f7315858c6ea5 100644
Binary files a/img/clothes/under_lower/unitard/frayed_gray.png and b/img/clothes/under_lower/unitard/frayed_gray.png differ
diff --git a/img/clothes/under_lower/unitard/full_gray.png b/img/clothes/under_lower/unitard/full_gray.png
index 307ed33b141412985e0860cf60c0de9216be8c82..8eac45a34552e881af6e406534ee4b8ee3443265 100644
Binary files a/img/clothes/under_lower/unitard/full_gray.png and b/img/clothes/under_lower/unitard/full_gray.png differ
diff --git a/img/clothes/under_lower/unitard/penis_gray.png b/img/clothes/under_lower/unitard/penis_gray.png
index 836a83d8c9fa6a530f862a19520bc1cf7cd6df8d..f44743f1b503032aeb87f6d89dba0e6a2214dfe8 100644
Binary files a/img/clothes/under_lower/unitard/penis_gray.png and b/img/clothes/under_lower/unitard/penis_gray.png differ
diff --git a/img/clothes/under_lower/unitard/tattered_gray.png b/img/clothes/under_lower/unitard/tattered_gray.png
index c8e8dcbedc89a5f57153331c5b30eb0320393c24..e553993b6d21bb137b2347d83eb0e406971d5125 100644
Binary files a/img/clothes/under_lower/unitard/tattered_gray.png and b/img/clothes/under_lower/unitard/tattered_gray.png differ
diff --git a/img/clothes/under_lower/unitard/torn_gray.png b/img/clothes/under_lower/unitard/torn_gray.png
index b003e2df0ddfd143733e5b348b9d4a22b7a6d4e6..ad7dc4ebba61665166b0ac0f2e26079246af2671 100644
Binary files a/img/clothes/under_lower/unitard/torn_gray.png and b/img/clothes/under_lower/unitard/torn_gray.png differ
diff --git a/img/clothes/under_upper/armsleeves/1_gray.png b/img/clothes/under_upper/armsleeves/1_gray.png
index 5ea45b4759b44cf1578875cbc63f7144cce64b43..8fb035a6679dbc38d575b6efb3e70a3dd6f94453 100644
Binary files a/img/clothes/under_upper/armsleeves/1_gray.png and b/img/clothes/under_upper/armsleeves/1_gray.png differ
diff --git a/img/clothes/under_upper/armsleeves/3_gray.png b/img/clothes/under_upper/armsleeves/3_gray.png
index a7e4401cf01619ae95a425f71e6d0af033d63f76..be43e12480bde3c34de72175314aed7604cac54d 100644
Binary files a/img/clothes/under_upper/armsleeves/3_gray.png and b/img/clothes/under_upper/armsleeves/3_gray.png differ
diff --git a/img/clothes/under_upper/armsleeves/5_gray.png b/img/clothes/under_upper/armsleeves/5_gray.png
index 5f2616d22fd48c085e9f4ab22c5cb6fb370cce6c..3507aed28c9cdad31e095717cf678cffaef00bac 100644
Binary files a/img/clothes/under_upper/armsleeves/5_gray.png and b/img/clothes/under_upper/armsleeves/5_gray.png differ
diff --git a/img/clothes/under_upper/armsleeves/6_gray.png b/img/clothes/under_upper/armsleeves/6_gray.png
index e30f75bbaab1fd2b9e9383ac367bf48e6ccb4464..08890e3347a0e41cbc0b783b6a022c2eefd4b205 100644
Binary files a/img/clothes/under_upper/armsleeves/6_gray.png and b/img/clothes/under_upper/armsleeves/6_gray.png differ
diff --git a/img/clothes/under_upper/armsleeves/hold_gray.png b/img/clothes/under_upper/armsleeves/hold_gray.png
index ef3cde2986df8b1174d18888d6a1c1e7e367df0a..9263579c4a52da4c17fd2ce09a331aebe4872133 100644
Binary files a/img/clothes/under_upper/armsleeves/hold_gray.png and b/img/clothes/under_upper/armsleeves/hold_gray.png differ
diff --git a/img/clothes/under_upper/armsleeves/left_cover_gray.png b/img/clothes/under_upper/armsleeves/left_cover_gray.png
index 5dd13dafc7cbfdeaf02ceacdda597c2a0c951fb2..ba76c6a35b55a25f6ca7d9963e532b8765d00984 100644
Binary files a/img/clothes/under_upper/armsleeves/left_cover_gray.png and b/img/clothes/under_upper/armsleeves/left_cover_gray.png differ
diff --git a/img/clothes/under_upper/armsleeves/left_gray.png b/img/clothes/under_upper/armsleeves/left_gray.png
index 1537831b531529aa7230d6c40d0001e0d1955d9a..6aefc414d9a62c31c0f600c38a5f49841536c32f 100644
Binary files a/img/clothes/under_upper/armsleeves/left_gray.png and b/img/clothes/under_upper/armsleeves/left_gray.png differ
diff --git a/img/clothes/under_upper/armsleeves/right_cover_gray.png b/img/clothes/under_upper/armsleeves/right_cover_gray.png
index 1b3e0ee568da24d84b5b767f5977faff8550172e..5dd71e5c2d698112a884ac18d4b8f334ba60c3bb 100644
Binary files a/img/clothes/under_upper/armsleeves/right_cover_gray.png and b/img/clothes/under_upper/armsleeves/right_cover_gray.png differ
diff --git a/img/clothes/under_upper/armsleeves/right_gray.png b/img/clothes/under_upper/armsleeves/right_gray.png
index 4b251d24159cda45876b5d2efe82927569af799f..6b56083e46a6170f23f92a13e551818b1cea6eab 100644
Binary files a/img/clothes/under_upper/armsleeves/right_gray.png and b/img/clothes/under_upper/armsleeves/right_gray.png differ
diff --git a/img/clothes/under_upper/bikini/0_gray.png b/img/clothes/under_upper/bikini/0_gray.png
index 8eef8334b3df4c96b7719a72e386c34570951e5c..4ba0e245d69773854d6eb26b1aabfe1540732913 100644
Binary files a/img/clothes/under_upper/bikini/0_gray.png and b/img/clothes/under_upper/bikini/0_gray.png differ
diff --git a/img/clothes/under_upper/bikini/2_gray.png b/img/clothes/under_upper/bikini/2_gray.png
index 066d48beebea4abd51407058d87a7ce298a6b1a9..e16bb5d0bdace552297485461a4d38660b6552c1 100644
Binary files a/img/clothes/under_upper/bikini/2_gray.png and b/img/clothes/under_upper/bikini/2_gray.png differ
diff --git a/img/clothes/under_upper/bikini/3_gray.png b/img/clothes/under_upper/bikini/3_gray.png
index d0050a467533db512fad35de3dc1da59c3154de2..b31eaee28ef3f1b7c628c7f6bb31839f3ca1443f 100644
Binary files a/img/clothes/under_upper/bikini/3_gray.png and b/img/clothes/under_upper/bikini/3_gray.png differ
diff --git a/img/clothes/under_upper/bikini/4_gray.png b/img/clothes/under_upper/bikini/4_gray.png
index 29d8d7e816a3068805dc0684bd5622b4236b00a1..97dca82aba854979fd908089d9ab1cf4e3c776d7 100644
Binary files a/img/clothes/under_upper/bikini/4_gray.png and b/img/clothes/under_upper/bikini/4_gray.png differ
diff --git a/img/clothes/under_upper/bikini/5_gray.png b/img/clothes/under_upper/bikini/5_gray.png
index 07b621cc63b114e28ff1d8bd519b57882c7abcb5..99eb9cf4728a1edf6d1b819a3c673ed76ac3e023 100644
Binary files a/img/clothes/under_upper/bikini/5_gray.png and b/img/clothes/under_upper/bikini/5_gray.png differ
diff --git a/img/clothes/under_upper/buntiebikinitop/2_gray.png b/img/clothes/under_upper/buntiebikinitop/2_gray.png
index 8f7898235fed6efec86d6d3896d573930ec49916..a37853f283b4c72d0e95f562e88c229c3da9152d 100644
Binary files a/img/clothes/under_upper/buntiebikinitop/2_gray.png and b/img/clothes/under_upper/buntiebikinitop/2_gray.png differ
diff --git a/img/clothes/under_upper/buntiebikinitop/3_gray.png b/img/clothes/under_upper/buntiebikinitop/3_gray.png
index 2aa7efa644bbe79661a6819c4126febdbab39643..d6837c2ad68efd46ec61651896c33c7025352c76 100644
Binary files a/img/clothes/under_upper/buntiebikinitop/3_gray.png and b/img/clothes/under_upper/buntiebikinitop/3_gray.png differ
diff --git a/img/clothes/under_upper/buntiebikinitop/4_gray.png b/img/clothes/under_upper/buntiebikinitop/4_gray.png
index cf996638444ccbb03f4d01483f1ce03d54a2ec49..473629aa592c894eceece91d66fe2ff067a3f2ee 100644
Binary files a/img/clothes/under_upper/buntiebikinitop/4_gray.png and b/img/clothes/under_upper/buntiebikinitop/4_gray.png differ
diff --git a/img/clothes/under_upper/buntiebikinitop/5_gray.png b/img/clothes/under_upper/buntiebikinitop/5_gray.png
index 5fc301588580ccbffd4d027c5ca644e025c53fdf..6b80a3b9630f4609089c920b08e64a6bd566c10f 100644
Binary files a/img/clothes/under_upper/buntiebikinitop/5_gray.png and b/img/clothes/under_upper/buntiebikinitop/5_gray.png differ
diff --git a/img/clothes/under_upper/camisole/4_gray.png b/img/clothes/under_upper/camisole/4_gray.png
index 0327bbe7bed8b83356887c52a1de2dd5f9151bb8..352b0bb99a88d2747ca91af8b8302e0926e0a5ef 100644
Binary files a/img/clothes/under_upper/camisole/4_gray.png and b/img/clothes/under_upper/camisole/4_gray.png differ
diff --git a/img/clothes/under_upper/camisole/5_gray.png b/img/clothes/under_upper/camisole/5_gray.png
index 3aee3dbf417affafbb8e12c6b3668f3a3b47ebc0..c2ea63ee4f729b4675f177782ffb1b5c8acc6948 100644
Binary files a/img/clothes/under_upper/camisole/5_gray.png and b/img/clothes/under_upper/camisole/5_gray.png differ
diff --git a/img/clothes/under_upper/camisole/acc_gray.png b/img/clothes/under_upper/camisole/acc_gray.png
index 77246af0da56640920f42844b27963ca4659a595..6bb6de51820583a810696ab4b9d40550f1983a71 100644
Binary files a/img/clothes/under_upper/camisole/acc_gray.png and b/img/clothes/under_upper/camisole/acc_gray.png differ
diff --git a/img/clothes/under_upper/camisole/frayed_gray.png b/img/clothes/under_upper/camisole/frayed_gray.png
index a1eb9b06cb082fbd048fe2cfb2c5ced0a16cf001..b19d676f11339e54d5af66e15a1b885cf3b50b96 100644
Binary files a/img/clothes/under_upper/camisole/frayed_gray.png and b/img/clothes/under_upper/camisole/frayed_gray.png differ
diff --git a/img/clothes/under_upper/camisole/full_gray.png b/img/clothes/under_upper/camisole/full_gray.png
index f49dff50986a7c1ebd243358a983b854fa73c321..892a4923df94f64c695a9f52196529b2549734bd 100644
Binary files a/img/clothes/under_upper/camisole/full_gray.png and b/img/clothes/under_upper/camisole/full_gray.png differ
diff --git a/img/clothes/under_upper/camisole/tattered_gray.png b/img/clothes/under_upper/camisole/tattered_gray.png
index c8fea8d69f2d63f38d60d234c847c5b8b5297c20..0e16fa6887819fd64340cba935160273792e3874 100644
Binary files a/img/clothes/under_upper/camisole/tattered_gray.png and b/img/clothes/under_upper/camisole/tattered_gray.png differ
diff --git a/img/clothes/under_upper/camisole/torn_gray.png b/img/clothes/under_upper/camisole/torn_gray.png
index ee59cc7a4f8f206bf275aaead50d9c42c937f86e..82f4afc1fbaf634fc008b1ad2ab51823e5bc62a9 100644
Binary files a/img/clothes/under_upper/camisole/torn_gray.png and b/img/clothes/under_upper/camisole/torn_gray.png differ
diff --git a/img/clothes/under_upper/catgirlbra/0_gray.png b/img/clothes/under_upper/catgirlbra/0_gray.png
index ad08a3eef2a7f983c2265d2e964d73a867dac935..e3a9c0c494a4a774ad29f6629d1c186d96ce3c8d 100644
Binary files a/img/clothes/under_upper/catgirlbra/0_gray.png and b/img/clothes/under_upper/catgirlbra/0_gray.png differ
diff --git a/img/clothes/under_upper/catgirlbra/2_gray.png b/img/clothes/under_upper/catgirlbra/2_gray.png
index 86b1202e32b38dd68cf9879dd955f00e9c53ad5d..fadacde037be33140837011661ed9da4338a3efd 100644
Binary files a/img/clothes/under_upper/catgirlbra/2_gray.png and b/img/clothes/under_upper/catgirlbra/2_gray.png differ
diff --git a/img/clothes/under_upper/catgirlbra/3_gray.png b/img/clothes/under_upper/catgirlbra/3_gray.png
index eb2fa4f1de04d7783ff268922993bacae406ca6c..b323458854eee97f98869f46a74f8a968498358f 100644
Binary files a/img/clothes/under_upper/catgirlbra/3_gray.png and b/img/clothes/under_upper/catgirlbra/3_gray.png differ
diff --git a/img/clothes/under_upper/catgirlbra/4_gray.png b/img/clothes/under_upper/catgirlbra/4_gray.png
index f1c7c154cf477d135de75ba2ff9bb7d67b6b243d..5481a063373f52f6917ad61e862140ea2af59ec0 100644
Binary files a/img/clothes/under_upper/catgirlbra/4_gray.png and b/img/clothes/under_upper/catgirlbra/4_gray.png differ
diff --git a/img/clothes/under_upper/chestbinder/frayed_gray.png b/img/clothes/under_upper/chestbinder/frayed_gray.png
index 64bfccbd89d5e34af9d5264b45adaa181bfd672b..e3b125f5c64a26fa581f39daee703d72665e275c 100644
Binary files a/img/clothes/under_upper/chestbinder/frayed_gray.png and b/img/clothes/under_upper/chestbinder/frayed_gray.png differ
diff --git a/img/clothes/under_upper/chestbinder/full_gray.png b/img/clothes/under_upper/chestbinder/full_gray.png
index 2549a66f4c445a29a284da4e783e638577bf9381..7b3523677a727660552f6799080ef322ee97d298 100644
Binary files a/img/clothes/under_upper/chestbinder/full_gray.png and b/img/clothes/under_upper/chestbinder/full_gray.png differ
diff --git a/img/clothes/under_upper/chestbinder/tattered_gray.png b/img/clothes/under_upper/chestbinder/tattered_gray.png
index 7026d759cba9d0a90dec359c60b72080b9e1b4d9..d3bd2ec2e80a93d240eaa0fd8eae53e499b19afb 100644
Binary files a/img/clothes/under_upper/chestbinder/tattered_gray.png and b/img/clothes/under_upper/chestbinder/tattered_gray.png differ
diff --git a/img/clothes/under_upper/chestbinder/torn_gray.png b/img/clothes/under_upper/chestbinder/torn_gray.png
index b7c68295859fc60d42be08d5b8ed250730411279..13556f360141d4db7d584062ce91874c09998ea4 100644
Binary files a/img/clothes/under_upper/chestbinder/torn_gray.png and b/img/clothes/under_upper/chestbinder/torn_gray.png differ
diff --git a/img/clothes/under_upper/chestwrap/1.png b/img/clothes/under_upper/chestwrap/1.png
index b56201b1d55faffe9d62ae88ccc3cbddfbd439d9..0ab0825317651f10c6355bcaf5e0422c22fe6955 100644
Binary files a/img/clothes/under_upper/chestwrap/1.png and b/img/clothes/under_upper/chestwrap/1.png differ
diff --git a/img/clothes/under_upper/chestwrap/2.png b/img/clothes/under_upper/chestwrap/2.png
index 18d3d4a28f0f9cf896735f14134e9f3f2b26c47b..97424e09d24b0701178e5cfc1ac3e668346d9057 100644
Binary files a/img/clothes/under_upper/chestwrap/2.png and b/img/clothes/under_upper/chestwrap/2.png differ
diff --git a/img/clothes/under_upper/chestwrap/3.png b/img/clothes/under_upper/chestwrap/3.png
index 3f7b298e97a6422d8eec5b9f21a30fe9d0d8d643..81ea5b33cca7ee86f9009b0cff4426cc0c799c6a 100644
Binary files a/img/clothes/under_upper/chestwrap/3.png and b/img/clothes/under_upper/chestwrap/3.png differ
diff --git a/img/clothes/under_upper/chestwrap/4.png b/img/clothes/under_upper/chestwrap/4.png
index f35d0d50730e971e86abb081dc3c9059f7adb71a..257fbc53dcd81a99b8950547d4d0f0d616e12673 100644
Binary files a/img/clothes/under_upper/chestwrap/4.png and b/img/clothes/under_upper/chestwrap/4.png differ
diff --git a/img/clothes/under_upper/chestwrap/5.png b/img/clothes/under_upper/chestwrap/5.png
index 65b737a18a23083deb1dd51b063247e76aa6cc99..c84a67ca437a7fbd24ee4a58e647fafde2c9bcbe 100644
Binary files a/img/clothes/under_upper/chestwrap/5.png and b/img/clothes/under_upper/chestwrap/5.png differ
diff --git a/img/clothes/under_upper/classicbikini/full_gray.png b/img/clothes/under_upper/classicbikini/full_gray.png
index 6490325c4421d649b5ad510b86858a28bf7ae80c..efa33d4cc98be05947f1a3f59416998e5f825cf0 100644
Binary files a/img/clothes/under_upper/classicbikini/full_gray.png and b/img/clothes/under_upper/classicbikini/full_gray.png differ
diff --git a/img/clothes/under_upper/classicschoolswimsuit/frayed_gray.png b/img/clothes/under_upper/classicschoolswimsuit/frayed_gray.png
index 8be50441665b6e3169398695212f8878d5039e3d..5bb5a24ebd8ec4a0b5db1846c122f671e6e0758a 100644
Binary files a/img/clothes/under_upper/classicschoolswimsuit/frayed_gray.png and b/img/clothes/under_upper/classicschoolswimsuit/frayed_gray.png differ
diff --git a/img/clothes/under_upper/classicschoolswimsuit/full_gray.png b/img/clothes/under_upper/classicschoolswimsuit/full_gray.png
index 063f9d21dc5cdb065da1509be06598f1568f82ee..d39369b8153f4a362b247d70858dbf72ee67ea11 100644
Binary files a/img/clothes/under_upper/classicschoolswimsuit/full_gray.png and b/img/clothes/under_upper/classicschoolswimsuit/full_gray.png differ
diff --git a/img/clothes/under_upper/classicschoolswimsuit/tattered_gray.png b/img/clothes/under_upper/classicschoolswimsuit/tattered_gray.png
index d332aa24d036a81af2872ad6b15f4b8fdf7f1e0b..ff389b176c08c42874387c5c04b7121d6be181ee 100644
Binary files a/img/clothes/under_upper/classicschoolswimsuit/tattered_gray.png and b/img/clothes/under_upper/classicschoolswimsuit/tattered_gray.png differ
diff --git a/img/clothes/under_upper/classicschoolswimsuit/torn_gray.png b/img/clothes/under_upper/classicschoolswimsuit/torn_gray.png
index 8747fc135ea9e6d0d2f74ca8c05e1f36f8db9d3a..37a72fb8ae0a00887042db088acf1ab92cdb8109 100644
Binary files a/img/clothes/under_upper/classicschoolswimsuit/torn_gray.png and b/img/clothes/under_upper/classicschoolswimsuit/torn_gray.png differ
diff --git a/img/clothes/under_upper/corset/1_gray.png b/img/clothes/under_upper/corset/1_gray.png
index 4e3b0b6151ecc47b304f8441320148c6788f3588..982909808745070470d84ea8e0f7358e39ebb31f 100644
Binary files a/img/clothes/under_upper/corset/1_gray.png and b/img/clothes/under_upper/corset/1_gray.png differ
diff --git a/img/clothes/under_upper/corset/2_gray.png b/img/clothes/under_upper/corset/2_gray.png
index fec480e6739801adf198601e62dd0916d9c0d4f7..8601eb859fdf39c26f0f9e4263acdf6fb11c1482 100644
Binary files a/img/clothes/under_upper/corset/2_gray.png and b/img/clothes/under_upper/corset/2_gray.png differ
diff --git a/img/clothes/under_upper/corset/3_gray.png b/img/clothes/under_upper/corset/3_gray.png
index aa6237cebac8c6161e97d795807ffb104a9f4f3e..7dd332387fce295980ba8c3bcb7a2d15be88f538 100644
Binary files a/img/clothes/under_upper/corset/3_gray.png and b/img/clothes/under_upper/corset/3_gray.png differ
diff --git a/img/clothes/under_upper/corset/4_gray.png b/img/clothes/under_upper/corset/4_gray.png
index 6aa24ffcc2111278625f4d588382c9f784540ea4..f13168f6e89df2f59d9f7ecd0f1d8b7619d1d460 100644
Binary files a/img/clothes/under_upper/corset/4_gray.png and b/img/clothes/under_upper/corset/4_gray.png differ
diff --git a/img/clothes/under_upper/corset/6_gray.png b/img/clothes/under_upper/corset/6_gray.png
index 6e257b83dfc771b537a2ac57f48cd4838a6ef86f..ff0eb6b7abb0d7c36ea98ed356c6936c694fe120 100644
Binary files a/img/clothes/under_upper/corset/6_gray.png and b/img/clothes/under_upper/corset/6_gray.png differ
diff --git a/img/clothes/under_upper/cow/2.png b/img/clothes/under_upper/cow/2.png
index 8071aec32e2adeb2dbb0fb8e214484b8831c2b75..1f26b900907a924100c6ba46e3e8be6f179012c2 100644
Binary files a/img/clothes/under_upper/cow/2.png and b/img/clothes/under_upper/cow/2.png differ
diff --git a/img/clothes/under_upper/cow/3.png b/img/clothes/under_upper/cow/3.png
index dfb89aa8e77f6795f2cc8108dc6b0db8c9f5f0a0..cb8022687e899bfb936168f96eab7265dacb1a6d 100644
Binary files a/img/clothes/under_upper/cow/3.png and b/img/clothes/under_upper/cow/3.png differ
diff --git a/img/clothes/under_upper/cow/4.png b/img/clothes/under_upper/cow/4.png
index 08b73d8b4723af43508bd8f74e3d4c7e50c04561..f0798dd2f9a5881a97d66ae3a30839f5f2ec4db2 100644
Binary files a/img/clothes/under_upper/cow/4.png and b/img/clothes/under_upper/cow/4.png differ
diff --git a/img/clothes/under_upper/cow/5.png b/img/clothes/under_upper/cow/5.png
index 206acf5293a2e3255b19fad215e001244c39b4d9..1959afcd8ff3e3ca50f38695e4a8c04020b99423 100644
Binary files a/img/clothes/under_upper/cow/5.png and b/img/clothes/under_upper/cow/5.png differ
diff --git a/img/clothes/under_upper/lacebra/2_gray.png b/img/clothes/under_upper/lacebra/2_gray.png
index d455ec8980b55fbaf4097c8e2eff397b9e962c55..4b866b18e4822958b50c75091580bc5ab499136a 100644
Binary files a/img/clothes/under_upper/lacebra/2_gray.png and b/img/clothes/under_upper/lacebra/2_gray.png differ
diff --git a/img/clothes/under_upper/lacebra/3_gray.png b/img/clothes/under_upper/lacebra/3_gray.png
index b23629b6bbdf201f32a1ccfc44969d53b7a99beb..3a413caf8cf1120ad3b34ea39549eb34a9b7f946 100644
Binary files a/img/clothes/under_upper/lacebra/3_gray.png and b/img/clothes/under_upper/lacebra/3_gray.png differ
diff --git a/img/clothes/under_upper/lacebra/4_gray.png b/img/clothes/under_upper/lacebra/4_gray.png
index f8a2d18afa56bc363c38aaf102f771abff68b7d1..89f9a5555c996711640e9cadb578b38adfa2aaef 100644
Binary files a/img/clothes/under_upper/lacebra/4_gray.png and b/img/clothes/under_upper/lacebra/4_gray.png differ
diff --git a/img/clothes/under_upper/latexleotard/0_gray.png b/img/clothes/under_upper/latexleotard/0_gray.png
index 57ed8072c16f787b6026b086dfc61ebe0bb7fb92..69077943aa5570b1b6e58ac3be0f0dd5ce0519fd 100644
Binary files a/img/clothes/under_upper/latexleotard/0_gray.png and b/img/clothes/under_upper/latexleotard/0_gray.png differ
diff --git a/img/clothes/under_upper/latexleotard/1_gray.png b/img/clothes/under_upper/latexleotard/1_gray.png
index 1567fda7fefb8e36a58b91963450b3f3c8cc017c..1e975959763929250a7ab63d2928c1717def6427 100644
Binary files a/img/clothes/under_upper/latexleotard/1_gray.png and b/img/clothes/under_upper/latexleotard/1_gray.png differ
diff --git a/img/clothes/under_upper/latexleotard/2_gray.png b/img/clothes/under_upper/latexleotard/2_gray.png
index 147dc714bcba9d5a6d4e76594ae00f28823081b9..15bb2e7cdddd9fe513c286bb15b85730d5e65b50 100644
Binary files a/img/clothes/under_upper/latexleotard/2_gray.png and b/img/clothes/under_upper/latexleotard/2_gray.png differ
diff --git a/img/clothes/under_upper/latexleotard/3_gray.png b/img/clothes/under_upper/latexleotard/3_gray.png
index 0a0fb151e340494bc20c0515305718c2013abf1f..14e09a12f9048364f5683b8167367e7920156e11 100644
Binary files a/img/clothes/under_upper/latexleotard/3_gray.png and b/img/clothes/under_upper/latexleotard/3_gray.png differ
diff --git a/img/clothes/under_upper/latexleotard/4_gray.png b/img/clothes/under_upper/latexleotard/4_gray.png
index b60fad6ad4251170049267b855f36d08c9d1be4d..a988cac4641e541554bf7bb71611dffd275be0c9 100644
Binary files a/img/clothes/under_upper/latexleotard/4_gray.png and b/img/clothes/under_upper/latexleotard/4_gray.png differ
diff --git a/img/clothes/under_upper/latexleotard/5_gray.png b/img/clothes/under_upper/latexleotard/5_gray.png
index 138d4c686bbe073de0170dd59b3d07569514e336..652921e3e8ca007508f15300776f18d46d2c6f58 100644
Binary files a/img/clothes/under_upper/latexleotard/5_gray.png and b/img/clothes/under_upper/latexleotard/5_gray.png differ
diff --git a/img/clothes/under_upper/latexleotard/6_gray.png b/img/clothes/under_upper/latexleotard/6_gray.png
index 138d4c686bbe073de0170dd59b3d07569514e336..652921e3e8ca007508f15300776f18d46d2c6f58 100644
Binary files a/img/clothes/under_upper/latexleotard/6_gray.png and b/img/clothes/under_upper/latexleotard/6_gray.png differ
diff --git a/img/clothes/under_upper/latexleotard/frayed_gray.png b/img/clothes/under_upper/latexleotard/frayed_gray.png
index 4c4a4489f23c3009001557ad3aa5eac2ac8185a6..6e0304f1e763f43f8028134f97e40cdc7ed286d1 100644
Binary files a/img/clothes/under_upper/latexleotard/frayed_gray.png and b/img/clothes/under_upper/latexleotard/frayed_gray.png differ
diff --git a/img/clothes/under_upper/latexleotard/full_gray.png b/img/clothes/under_upper/latexleotard/full_gray.png
index 4c4a4489f23c3009001557ad3aa5eac2ac8185a6..6e0304f1e763f43f8028134f97e40cdc7ed286d1 100644
Binary files a/img/clothes/under_upper/latexleotard/full_gray.png and b/img/clothes/under_upper/latexleotard/full_gray.png differ
diff --git a/img/clothes/under_upper/latexleotard/tattered_gray.png b/img/clothes/under_upper/latexleotard/tattered_gray.png
index 4c4a4489f23c3009001557ad3aa5eac2ac8185a6..6e0304f1e763f43f8028134f97e40cdc7ed286d1 100644
Binary files a/img/clothes/under_upper/latexleotard/tattered_gray.png and b/img/clothes/under_upper/latexleotard/tattered_gray.png differ
diff --git a/img/clothes/under_upper/latexleotard/torn_gray.png b/img/clothes/under_upper/latexleotard/torn_gray.png
index 4c4a4489f23c3009001557ad3aa5eac2ac8185a6..6e0304f1e763f43f8028134f97e40cdc7ed286d1 100644
Binary files a/img/clothes/under_upper/latexleotard/torn_gray.png and b/img/clothes/under_upper/latexleotard/torn_gray.png differ
diff --git a/img/clothes/under_upper/leotard/1_gray.png b/img/clothes/under_upper/leotard/1_gray.png
index 9d2791c8e2eaefdf32faec1f0341e19f514c6c03..cf7f2dbb0d190e5999d0fbb86c8cda5e4773f013 100644
Binary files a/img/clothes/under_upper/leotard/1_gray.png and b/img/clothes/under_upper/leotard/1_gray.png differ
diff --git a/img/clothes/under_upper/leotard/2_gray.png b/img/clothes/under_upper/leotard/2_gray.png
index f4c0e3ebfb4636c90618b531c6ff06adc0cb7b93..c8f90275197f9d66092419b9e8e8d26cdb7fa49f 100644
Binary files a/img/clothes/under_upper/leotard/2_gray.png and b/img/clothes/under_upper/leotard/2_gray.png differ
diff --git a/img/clothes/under_upper/leotard/3_gray.png b/img/clothes/under_upper/leotard/3_gray.png
index 57515bedbda7c039836a8f5d4147e4e218c268fa..80aee42527e8bd5b16c90ceabdd43832ffc64d66 100644
Binary files a/img/clothes/under_upper/leotard/3_gray.png and b/img/clothes/under_upper/leotard/3_gray.png differ
diff --git a/img/clothes/under_upper/leotard/4_gray.png b/img/clothes/under_upper/leotard/4_gray.png
index bc6bba3826f87780e2172e6545d7adf61e4e7b88..5c14b292ce5aad2aebfcbbd066f9bb2f3049e7a9 100644
Binary files a/img/clothes/under_upper/leotard/4_gray.png and b/img/clothes/under_upper/leotard/4_gray.png differ
diff --git a/img/clothes/under_upper/leotard/5_gray.png b/img/clothes/under_upper/leotard/5_gray.png
index ab640c2d1372beda43ea2838c18302fc750ff960..f974578746fe5da41cac3b74fad48e9f1ecb62c3 100644
Binary files a/img/clothes/under_upper/leotard/5_gray.png and b/img/clothes/under_upper/leotard/5_gray.png differ
diff --git a/img/clothes/under_upper/leotard/frayed_gray.png b/img/clothes/under_upper/leotard/frayed_gray.png
index 50760b6267a5f53e984ba363dd650c98f3025da5..ef32843cca94171e039082c60999be3d87b6828c 100644
Binary files a/img/clothes/under_upper/leotard/frayed_gray.png and b/img/clothes/under_upper/leotard/frayed_gray.png differ
diff --git a/img/clothes/under_upper/leotard/full_gray.png b/img/clothes/under_upper/leotard/full_gray.png
index 0b568370420d019b68498c2523eb83422dd2835b..9afcc1f5de59f787c74efadc5bf9a76d0388e073 100644
Binary files a/img/clothes/under_upper/leotard/full_gray.png and b/img/clothes/under_upper/leotard/full_gray.png differ
diff --git a/img/clothes/under_upper/leotard/hold_gray.png b/img/clothes/under_upper/leotard/hold_gray.png
index 4482c9ac55d3c72a470f0a67b917ee5fc8103406..fa788f61ab547e0f3a0577699bbfb7241e6c0d6e 100644
Binary files a/img/clothes/under_upper/leotard/hold_gray.png and b/img/clothes/under_upper/leotard/hold_gray.png differ
diff --git a/img/clothes/under_upper/leotard/left_cover_gray.png b/img/clothes/under_upper/leotard/left_cover_gray.png
index 74cf0a84849f5d15c951d737d3db603ac87d7ad6..cb3c5760bcdae7b4033735c762b9f5f67da25327 100644
Binary files a/img/clothes/under_upper/leotard/left_cover_gray.png and b/img/clothes/under_upper/leotard/left_cover_gray.png differ
diff --git a/img/clothes/under_upper/leotard/left_gray.png b/img/clothes/under_upper/leotard/left_gray.png
index 93020c2c2474fd6a8f9495ab687236f6ca1d5f9a..abcc19f53d989d85343262231ca16935adace179 100644
Binary files a/img/clothes/under_upper/leotard/left_gray.png and b/img/clothes/under_upper/leotard/left_gray.png differ
diff --git a/img/clothes/under_upper/leotard/right_cover_gray.png b/img/clothes/under_upper/leotard/right_cover_gray.png
index f373478ff1ae29afcea592c311183041461f3cc6..b8983aa66c99c5084b89d363cf5680d03be3ac6b 100644
Binary files a/img/clothes/under_upper/leotard/right_cover_gray.png and b/img/clothes/under_upper/leotard/right_cover_gray.png differ
diff --git a/img/clothes/under_upper/leotard/right_gray.png b/img/clothes/under_upper/leotard/right_gray.png
index a412b656969955b3a3f9c395d1b55ac21df82c1b..29e2fca371116e9d6ea53c499a7a19b2f8e6863c 100644
Binary files a/img/clothes/under_upper/leotard/right_gray.png and b/img/clothes/under_upper/leotard/right_gray.png differ
diff --git a/img/clothes/under_upper/leotard/tattered_gray.png b/img/clothes/under_upper/leotard/tattered_gray.png
index 78a398a74abc260121429d343e7402df081fe2ee..87d76cae0852167072d246dce953f942181f97db 100644
Binary files a/img/clothes/under_upper/leotard/tattered_gray.png and b/img/clothes/under_upper/leotard/tattered_gray.png differ
diff --git a/img/clothes/under_upper/leotard/torn_gray.png b/img/clothes/under_upper/leotard/torn_gray.png
index ab6e1a772b63d9aaeffb33f25ae3e3c0d74bf6f0..ae995352c229a30734b8bac8124c00deba364076 100644
Binary files a/img/clothes/under_upper/leotard/torn_gray.png and b/img/clothes/under_upper/leotard/torn_gray.png differ
diff --git a/img/clothes/under_upper/leotardbunny/2_gray.png b/img/clothes/under_upper/leotardbunny/2_gray.png
index e715888eca58811c4b748b59141d19715718b5e0..33cd79e0a260a5230e8350a222904799125f67b7 100644
Binary files a/img/clothes/under_upper/leotardbunny/2_gray.png and b/img/clothes/under_upper/leotardbunny/2_gray.png differ
diff --git a/img/clothes/under_upper/leotardbunny/3_gray.png b/img/clothes/under_upper/leotardbunny/3_gray.png
index 5bd05b8dff660fb9b69ff55f0dcdc10a84dc0f78..5b5c6db709594eccb2e817c5019a1c0a86cfd9d8 100644
Binary files a/img/clothes/under_upper/leotardbunny/3_gray.png and b/img/clothes/under_upper/leotardbunny/3_gray.png differ
diff --git a/img/clothes/under_upper/leotardbunny/4_gray.png b/img/clothes/under_upper/leotardbunny/4_gray.png
index 412170a0ae972b63bcf33cbbe8ebd93378904227..bc5ddebafa217401325ee11ff48538776aa0026e 100644
Binary files a/img/clothes/under_upper/leotardbunny/4_gray.png and b/img/clothes/under_upper/leotardbunny/4_gray.png differ
diff --git a/img/clothes/under_upper/leotardbunny/5_gray.png b/img/clothes/under_upper/leotardbunny/5_gray.png
index f5b7609ba1976be5fd3cce1a48e547827568c40c..a7ac65e0ff5939594d201abe2bff86acdcd9bf7a 100644
Binary files a/img/clothes/under_upper/leotardbunny/5_gray.png and b/img/clothes/under_upper/leotardbunny/5_gray.png differ
diff --git a/img/clothes/under_upper/leotardbunny/frayed_gray.png b/img/clothes/under_upper/leotardbunny/frayed_gray.png
index 320646895092343f6ae4291e3040aa1c31caa2f1..a31113245c79ae0ddf546114778e8fa692033c39 100644
Binary files a/img/clothes/under_upper/leotardbunny/frayed_gray.png and b/img/clothes/under_upper/leotardbunny/frayed_gray.png differ
diff --git a/img/clothes/under_upper/leotardbunny/full_gray.png b/img/clothes/under_upper/leotardbunny/full_gray.png
index 18b8347a715612a1aa3b8185d2fa88bdb9b8ad5e..6085cdfc5dd290f3e8aa32c5a4336100c084ab26 100644
Binary files a/img/clothes/under_upper/leotardbunny/full_gray.png and b/img/clothes/under_upper/leotardbunny/full_gray.png differ
diff --git a/img/clothes/under_upper/leotardbunny/tattered_gray.png b/img/clothes/under_upper/leotardbunny/tattered_gray.png
index 0b1f8757ba21a543537ac7dc16063f7b0655d45e..538cf73579df4426ad221f85f00508a2ef2192a9 100644
Binary files a/img/clothes/under_upper/leotardbunny/tattered_gray.png and b/img/clothes/under_upper/leotardbunny/tattered_gray.png differ
diff --git a/img/clothes/under_upper/leotardbunny/torn_gray.png b/img/clothes/under_upper/leotardbunny/torn_gray.png
index 9efcac738c3256a4a60850bb0c7204c20a18736c..fbae05b3d8c8748fa373f586771b432aa3ed9a45 100644
Binary files a/img/clothes/under_upper/leotardbunny/torn_gray.png and b/img/clothes/under_upper/leotardbunny/torn_gray.png differ
diff --git a/img/clothes/under_upper/leotardskimpy/0_gray.png b/img/clothes/under_upper/leotardskimpy/0_gray.png
index 7a7421bc6f58d70a4d3f60308e9f1dc50213101d..8acfa2a155ad8ce83e0b357040f9c6a01d0bcfd4 100644
Binary files a/img/clothes/under_upper/leotardskimpy/0_gray.png and b/img/clothes/under_upper/leotardskimpy/0_gray.png differ
diff --git a/img/clothes/under_upper/leotardskimpy/1_gray.png b/img/clothes/under_upper/leotardskimpy/1_gray.png
index 437e9a6e55f6ad9eccbcb77b008cd7027393fd24..79b291b3b8256e77deb853d1c3e0e0a73de2efe7 100644
Binary files a/img/clothes/under_upper/leotardskimpy/1_gray.png and b/img/clothes/under_upper/leotardskimpy/1_gray.png differ
diff --git a/img/clothes/under_upper/leotardskimpy/2_gray.png b/img/clothes/under_upper/leotardskimpy/2_gray.png
index f808a0cf6b83d40bbd6f246786234d7e27dc358e..0af681d16780588d1414a1a69daa70050b08eb2c 100644
Binary files a/img/clothes/under_upper/leotardskimpy/2_gray.png and b/img/clothes/under_upper/leotardskimpy/2_gray.png differ
diff --git a/img/clothes/under_upper/leotardskimpy/3_gray.png b/img/clothes/under_upper/leotardskimpy/3_gray.png
index a39fd328b37bef827938f38f2e90025bbfaa5af3..5830dbbc0bf604d7afccf3c660458e804fe45e4a 100644
Binary files a/img/clothes/under_upper/leotardskimpy/3_gray.png and b/img/clothes/under_upper/leotardskimpy/3_gray.png differ
diff --git a/img/clothes/under_upper/leotardskimpy/4_gray.png b/img/clothes/under_upper/leotardskimpy/4_gray.png
index 1661ffee20134f5f7239f9ec33429dcd23023daf..f63deb188ff28f06d06127f16ffc41af987a4ba7 100644
Binary files a/img/clothes/under_upper/leotardskimpy/4_gray.png and b/img/clothes/under_upper/leotardskimpy/4_gray.png differ
diff --git a/img/clothes/under_upper/leotardskimpy/5_gray.png b/img/clothes/under_upper/leotardskimpy/5_gray.png
index ff561bc34b31b1d5c836f7b749cff192a52ab209..15773548518131f059270fc0d53e0e74d999a780 100644
Binary files a/img/clothes/under_upper/leotardskimpy/5_gray.png and b/img/clothes/under_upper/leotardskimpy/5_gray.png differ
diff --git a/img/clothes/under_upper/leotardskimpy/frayed_gray.png b/img/clothes/under_upper/leotardskimpy/frayed_gray.png
index a0aa0383b51ec748c054dd07d5763a255f1ccf03..3f9b838be729b068b4c9be67c812dafd2b5bd943 100644
Binary files a/img/clothes/under_upper/leotardskimpy/frayed_gray.png and b/img/clothes/under_upper/leotardskimpy/frayed_gray.png differ
diff --git a/img/clothes/under_upper/leotardskimpy/full_gray.png b/img/clothes/under_upper/leotardskimpy/full_gray.png
index 0316987a17be121d1d9c36184df4a6e83fbda683..68d63e6230a19699df22c9e59f82d9715353dcaa 100644
Binary files a/img/clothes/under_upper/leotardskimpy/full_gray.png and b/img/clothes/under_upper/leotardskimpy/full_gray.png differ
diff --git a/img/clothes/under_upper/leotardskimpy/tattered_gray.png b/img/clothes/under_upper/leotardskimpy/tattered_gray.png
index a82056c68bc2f6652857916f4424ba1e9b8b11f4..e93c8685b13e4d18f9b461868ce6e76fc80f30be 100644
Binary files a/img/clothes/under_upper/leotardskimpy/tattered_gray.png and b/img/clothes/under_upper/leotardskimpy/tattered_gray.png differ
diff --git a/img/clothes/under_upper/leotardskimpy/torn_gray.png b/img/clothes/under_upper/leotardskimpy/torn_gray.png
index c55611b7c1dcaec0c1f1af1a194af3b9d9ed94c0..273581671793049041348b03d085709b2522e2bf 100644
Binary files a/img/clothes/under_upper/leotardskimpy/torn_gray.png and b/img/clothes/under_upper/leotardskimpy/torn_gray.png differ
diff --git a/img/clothes/under_upper/leotardturtleneck/2_gray.png b/img/clothes/under_upper/leotardturtleneck/2_gray.png
index fcadc1c2684f16916e7797873ce5765284535374..6de9d216e9ec94a2c8539c05a52ab714bcefa8c4 100644
Binary files a/img/clothes/under_upper/leotardturtleneck/2_gray.png and b/img/clothes/under_upper/leotardturtleneck/2_gray.png differ
diff --git a/img/clothes/under_upper/leotardturtleneck/3_gray.png b/img/clothes/under_upper/leotardturtleneck/3_gray.png
index 092f3a85c5599455a18f5fc830b7c5aa482ba91e..b55a7fab2c7976e14133b85f4aecf48518ccd5f3 100644
Binary files a/img/clothes/under_upper/leotardturtleneck/3_gray.png and b/img/clothes/under_upper/leotardturtleneck/3_gray.png differ
diff --git a/img/clothes/under_upper/leotardturtleneck/4_gray.png b/img/clothes/under_upper/leotardturtleneck/4_gray.png
index 7ca0ea0740119e54a4dfe4bcc44a25fc199eb8c1..519ca472d95a42635fd22cf47699ba74dc23564a 100644
Binary files a/img/clothes/under_upper/leotardturtleneck/4_gray.png and b/img/clothes/under_upper/leotardturtleneck/4_gray.png differ
diff --git a/img/clothes/under_upper/leotardturtleneck/5_gray.png b/img/clothes/under_upper/leotardturtleneck/5_gray.png
index 4513e4fba11e45153b71c4a4b609eaf041ab7602..27f0d99c49eeee6967e162639d3f6c53c1fb82cd 100644
Binary files a/img/clothes/under_upper/leotardturtleneck/5_gray.png and b/img/clothes/under_upper/leotardturtleneck/5_gray.png differ
diff --git a/img/clothes/under_upper/leotardturtleneck/frayed_gray.png b/img/clothes/under_upper/leotardturtleneck/frayed_gray.png
index df064792e3fd1addf765d4463c2af70ab9f341f6..f3b3bed5446bee2fd33ff68336f54eea67c328f9 100644
Binary files a/img/clothes/under_upper/leotardturtleneck/frayed_gray.png and b/img/clothes/under_upper/leotardturtleneck/frayed_gray.png differ
diff --git a/img/clothes/under_upper/leotardturtleneck/full_gray.png b/img/clothes/under_upper/leotardturtleneck/full_gray.png
index 1479e32cd6b3900d4ab958cf95de6d4235c1abf2..6bd69151c104817b4066c164e72fac24ed12ec54 100644
Binary files a/img/clothes/under_upper/leotardturtleneck/full_gray.png and b/img/clothes/under_upper/leotardturtleneck/full_gray.png differ
diff --git a/img/clothes/under_upper/leotardturtleneck/tattered_gray.png b/img/clothes/under_upper/leotardturtleneck/tattered_gray.png
index cd6caeed538cef95778022e9759f1ad85df48f9f..bc0a5119f63250b85207c220a31150e78e8e0022 100644
Binary files a/img/clothes/under_upper/leotardturtleneck/tattered_gray.png and b/img/clothes/under_upper/leotardturtleneck/tattered_gray.png differ
diff --git a/img/clothes/under_upper/leotardturtleneck/torn_gray.png b/img/clothes/under_upper/leotardturtleneck/torn_gray.png
index e4093d728426133405103579ac4c6cdc1b21d5d6..ee94c3d7d6f725f7447f60de0635a1c16f5407c0 100644
Binary files a/img/clothes/under_upper/leotardturtleneck/torn_gray.png and b/img/clothes/under_upper/leotardturtleneck/torn_gray.png differ
diff --git a/img/clothes/under_upper/mesh/frayed.png b/img/clothes/under_upper/mesh/frayed.png
index d6b765cbebf7a72015b2303ddbc18e130d13ced7..f058d5d5033dbc2fd8f79d9e99c2d2090ff0ecd2 100644
Binary files a/img/clothes/under_upper/mesh/frayed.png and b/img/clothes/under_upper/mesh/frayed.png differ
diff --git a/img/clothes/under_upper/mesh/full.png b/img/clothes/under_upper/mesh/full.png
index d6b765cbebf7a72015b2303ddbc18e130d13ced7..f058d5d5033dbc2fd8f79d9e99c2d2090ff0ecd2 100644
Binary files a/img/clothes/under_upper/mesh/full.png and b/img/clothes/under_upper/mesh/full.png differ
diff --git a/img/clothes/under_upper/mesh/hold.png b/img/clothes/under_upper/mesh/hold.png
index fabfb0d15374d53077a821dd3921ccdc8714bd69..44897a674d5cc22acfb419351f625185a2debe1c 100644
Binary files a/img/clothes/under_upper/mesh/hold.png and b/img/clothes/under_upper/mesh/hold.png differ
diff --git a/img/clothes/under_upper/mesh/left.png b/img/clothes/under_upper/mesh/left.png
index 2c6b840a4a33f5fd9420e1aa6a78cdc9e4519414..ccf396bc6c67e752c58b8a28738f9bdb57411fc4 100644
Binary files a/img/clothes/under_upper/mesh/left.png and b/img/clothes/under_upper/mesh/left.png differ
diff --git a/img/clothes/under_upper/mesh/left_cover.png b/img/clothes/under_upper/mesh/left_cover.png
index 02ba04b1ce4f2924e6c95b55ad32b5da4c6d4c7d..33a65693bdeabce344ac3623207cdb793d4c094b 100644
Binary files a/img/clothes/under_upper/mesh/left_cover.png and b/img/clothes/under_upper/mesh/left_cover.png differ
diff --git a/img/clothes/under_upper/mesh/right.png b/img/clothes/under_upper/mesh/right.png
index b02e908a22c87c064f93409763c6ea551342069c..330d6d05d78c78a22a0dc77be897ad91b6c35f38 100644
Binary files a/img/clothes/under_upper/mesh/right.png and b/img/clothes/under_upper/mesh/right.png differ
diff --git a/img/clothes/under_upper/mesh/right_cover.png b/img/clothes/under_upper/mesh/right_cover.png
index dcd28a56295fe9d316979ee02bf65d1c1daad5b5..96106fc2ee4a3b8db6c4e1e768da849b8a9977b6 100644
Binary files a/img/clothes/under_upper/mesh/right_cover.png and b/img/clothes/under_upper/mesh/right_cover.png differ
diff --git a/img/clothes/under_upper/mesh/tattered.png b/img/clothes/under_upper/mesh/tattered.png
index d6b765cbebf7a72015b2303ddbc18e130d13ced7..f058d5d5033dbc2fd8f79d9e99c2d2090ff0ecd2 100644
Binary files a/img/clothes/under_upper/mesh/tattered.png and b/img/clothes/under_upper/mesh/tattered.png differ
diff --git a/img/clothes/under_upper/mesh/torn.png b/img/clothes/under_upper/mesh/torn.png
index d6b765cbebf7a72015b2303ddbc18e130d13ced7..f058d5d5033dbc2fd8f79d9e99c2d2090ff0ecd2 100644
Binary files a/img/clothes/under_upper/mesh/torn.png and b/img/clothes/under_upper/mesh/torn.png differ
diff --git a/img/clothes/under_upper/microkini/1_gray.png b/img/clothes/under_upper/microkini/1_gray.png
index 6490325c4421d649b5ad510b86858a28bf7ae80c..efa33d4cc98be05947f1a3f59416998e5f825cf0 100644
Binary files a/img/clothes/under_upper/microkini/1_gray.png and b/img/clothes/under_upper/microkini/1_gray.png differ
diff --git a/img/clothes/under_upper/microkini/2_gray.png b/img/clothes/under_upper/microkini/2_gray.png
index 1ecad95ec467836239a5d2c1cc25e78a7f500e06..c36d22f565c62f4324cfbe9bd6c649a686afb227 100644
Binary files a/img/clothes/under_upper/microkini/2_gray.png and b/img/clothes/under_upper/microkini/2_gray.png differ
diff --git a/img/clothes/under_upper/microkini/3_gray.png b/img/clothes/under_upper/microkini/3_gray.png
index 90c4eae4fb724d54cdca467a18fd623833cc1859..5639420b92129e5b7415951cd3975636b160307f 100644
Binary files a/img/clothes/under_upper/microkini/3_gray.png and b/img/clothes/under_upper/microkini/3_gray.png differ
diff --git a/img/clothes/under_upper/plainbra/1_gray.png b/img/clothes/under_upper/plainbra/1_gray.png
index eefc7da69bd655bf68625033b503b673f14c46ba..dfafe2cadf5fecf81e5730db84746cad0516b1b4 100644
Binary files a/img/clothes/under_upper/plainbra/1_gray.png and b/img/clothes/under_upper/plainbra/1_gray.png differ
diff --git a/img/clothes/under_upper/plainbra/2_gray.png b/img/clothes/under_upper/plainbra/2_gray.png
index 4e2547398b5bb2dc96f486342a5c2cb94187eb2d..6d296ad0555bed96d5851bf1353d0b4f27744e38 100644
Binary files a/img/clothes/under_upper/plainbra/2_gray.png and b/img/clothes/under_upper/plainbra/2_gray.png differ
diff --git a/img/clothes/under_upper/plainbra/3_gray.png b/img/clothes/under_upper/plainbra/3_gray.png
index f88ed8ca2b0a33cd29671843fc806807b988869f..7bbee2bce0e06be13dd1765d7ba90762ff8dd4df 100644
Binary files a/img/clothes/under_upper/plainbra/3_gray.png and b/img/clothes/under_upper/plainbra/3_gray.png differ
diff --git a/img/clothes/under_upper/plainbra/5_gray.png b/img/clothes/under_upper/plainbra/5_gray.png
index 2e215be0b1c560a5b3083d4b0ca9b6607443db22..ff85e2388cf749888318d70b4d5a019340df84fb 100644
Binary files a/img/clothes/under_upper/plainbra/5_gray.png and b/img/clothes/under_upper/plainbra/5_gray.png differ
diff --git a/img/clothes/under_upper/pushupbra/1_gray.png b/img/clothes/under_upper/pushupbra/1_gray.png
index 6cceaca036b2783830343a9b4aa464d1f972bac8..949019dd6f93925315093401b1f67bc62b4b3781 100644
Binary files a/img/clothes/under_upper/pushupbra/1_gray.png and b/img/clothes/under_upper/pushupbra/1_gray.png differ
diff --git a/img/clothes/under_upper/pushupbra/2_gray.png b/img/clothes/under_upper/pushupbra/2_gray.png
index ba428e552724edca078f399df3fbb14d0926bd54..6e631cdf4a51ecea7f48cd88c98e79e9dc423c1a 100644
Binary files a/img/clothes/under_upper/pushupbra/2_gray.png and b/img/clothes/under_upper/pushupbra/2_gray.png differ
diff --git a/img/clothes/under_upper/pushupbra/3_gray.png b/img/clothes/under_upper/pushupbra/3_gray.png
index 996e097fe36163084ad7953edc1012180f664064..c62459b3caeaeee13bfe26a078926b6d55832da6 100644
Binary files a/img/clothes/under_upper/pushupbra/3_gray.png and b/img/clothes/under_upper/pushupbra/3_gray.png differ
diff --git a/img/clothes/under_upper/pushupbra/4_gray.png b/img/clothes/under_upper/pushupbra/4_gray.png
index 48407333718b028aeea759951d8df73733ea028b..0df5d54b42b342c41f53e5adcb63eba590850bc2 100644
Binary files a/img/clothes/under_upper/pushupbra/4_gray.png and b/img/clothes/under_upper/pushupbra/4_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuit/3_gray.png b/img/clothes/under_upper/schoolswimsuit/3_gray.png
index d762ebecb50da566b8cfe5c133e95d33d6ca5b18..3d9db0cdef30481e763a88d96cde17e176a4c5fa 100644
Binary files a/img/clothes/under_upper/schoolswimsuit/3_gray.png and b/img/clothes/under_upper/schoolswimsuit/3_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuit/4_gray.png b/img/clothes/under_upper/schoolswimsuit/4_gray.png
index 60ad3e329a93f423822bbac5c69e9cef97d87298..94f0428625c7ef12b05105dd8c09c358615384cf 100644
Binary files a/img/clothes/under_upper/schoolswimsuit/4_gray.png and b/img/clothes/under_upper/schoolswimsuit/4_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuit/5_gray.png b/img/clothes/under_upper/schoolswimsuit/5_gray.png
index 895ef9c1212b329ac37c96a331536113e198adf7..37cd58a7d840086d26760562f006058fd8a70ad4 100644
Binary files a/img/clothes/under_upper/schoolswimsuit/5_gray.png and b/img/clothes/under_upper/schoolswimsuit/5_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuit/frayed_gray.png b/img/clothes/under_upper/schoolswimsuit/frayed_gray.png
index f37536ef97c82f1fe031314e2c1e844cd36e8812..f4f32d4f50c3ac9616532e89992afb0eac81e1ef 100644
Binary files a/img/clothes/under_upper/schoolswimsuit/frayed_gray.png and b/img/clothes/under_upper/schoolswimsuit/frayed_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuit/full_gray.png b/img/clothes/under_upper/schoolswimsuit/full_gray.png
index 7aebc7cf8c531420768d3a0edd989b8ce19223c7..8fe82b6ad2c66544027c7c6a7ee9c049a4a9f785 100644
Binary files a/img/clothes/under_upper/schoolswimsuit/full_gray.png and b/img/clothes/under_upper/schoolswimsuit/full_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuit/tattered_gray.png b/img/clothes/under_upper/schoolswimsuit/tattered_gray.png
index f37536ef97c82f1fe031314e2c1e844cd36e8812..f4f32d4f50c3ac9616532e89992afb0eac81e1ef 100644
Binary files a/img/clothes/under_upper/schoolswimsuit/tattered_gray.png and b/img/clothes/under_upper/schoolswimsuit/tattered_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuit/torn_gray.png b/img/clothes/under_upper/schoolswimsuit/torn_gray.png
index f37536ef97c82f1fe031314e2c1e844cd36e8812..f4f32d4f50c3ac9616532e89992afb0eac81e1ef 100644
Binary files a/img/clothes/under_upper/schoolswimsuit/torn_gray.png and b/img/clothes/under_upper/schoolswimsuit/torn_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuitj/3_gray.png b/img/clothes/under_upper/schoolswimsuitj/3_gray.png
index d762ebecb50da566b8cfe5c133e95d33d6ca5b18..3d9db0cdef30481e763a88d96cde17e176a4c5fa 100644
Binary files a/img/clothes/under_upper/schoolswimsuitj/3_gray.png and b/img/clothes/under_upper/schoolswimsuitj/3_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuitj/4_gray.png b/img/clothes/under_upper/schoolswimsuitj/4_gray.png
index 60ad3e329a93f423822bbac5c69e9cef97d87298..94f0428625c7ef12b05105dd8c09c358615384cf 100644
Binary files a/img/clothes/under_upper/schoolswimsuitj/4_gray.png and b/img/clothes/under_upper/schoolswimsuitj/4_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuitj/5_gray.png b/img/clothes/under_upper/schoolswimsuitj/5_gray.png
index 895ef9c1212b329ac37c96a331536113e198adf7..37cd58a7d840086d26760562f006058fd8a70ad4 100644
Binary files a/img/clothes/under_upper/schoolswimsuitj/5_gray.png and b/img/clothes/under_upper/schoolswimsuitj/5_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuitj/acc.png b/img/clothes/under_upper/schoolswimsuitj/acc.png
index 0c0929d1f7a1384c3e47b308af0792daca8d369c..73c4e28a24d63cc673c1b18569c743c02d3c6d56 100644
Binary files a/img/clothes/under_upper/schoolswimsuitj/acc.png and b/img/clothes/under_upper/schoolswimsuitj/acc.png differ
diff --git a/img/clothes/under_upper/schoolswimsuitj/frayed_gray.png b/img/clothes/under_upper/schoolswimsuitj/frayed_gray.png
index 310620cf7cc2c3e62a3c3fad62bb9e29a5f80694..0e7ac76c0bf396ad6a8e45cf7efaa86c6ffe955b 100644
Binary files a/img/clothes/under_upper/schoolswimsuitj/frayed_gray.png and b/img/clothes/under_upper/schoolswimsuitj/frayed_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuitj/full_gray.png b/img/clothes/under_upper/schoolswimsuitj/full_gray.png
index 02f6a13bee8e0166adfad9b36e0b7e98f1eed4df..0c62b1b022b3f509b1056fb32c61adc988e4537a 100644
Binary files a/img/clothes/under_upper/schoolswimsuitj/full_gray.png and b/img/clothes/under_upper/schoolswimsuitj/full_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuitj/tattered_gray.png b/img/clothes/under_upper/schoolswimsuitj/tattered_gray.png
index 310620cf7cc2c3e62a3c3fad62bb9e29a5f80694..0e7ac76c0bf396ad6a8e45cf7efaa86c6ffe955b 100644
Binary files a/img/clothes/under_upper/schoolswimsuitj/tattered_gray.png and b/img/clothes/under_upper/schoolswimsuitj/tattered_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimsuitj/torn_gray.png b/img/clothes/under_upper/schoolswimsuitj/torn_gray.png
index 310620cf7cc2c3e62a3c3fad62bb9e29a5f80694..0e7ac76c0bf396ad6a8e45cf7efaa86c6ffe955b 100644
Binary files a/img/clothes/under_upper/schoolswimsuitj/torn_gray.png and b/img/clothes/under_upper/schoolswimsuitj/torn_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimtop/2_gray.png b/img/clothes/under_upper/schoolswimtop/2_gray.png
index 3f17ceb42a59c6745cdbb505fafc1365ca97876f..81e857c46408d9c7b5409de4f12fa598cce8d4ba 100644
Binary files a/img/clothes/under_upper/schoolswimtop/2_gray.png and b/img/clothes/under_upper/schoolswimtop/2_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimtop/3_gray.png b/img/clothes/under_upper/schoolswimtop/3_gray.png
index e3aff66f997ede4e27cffcdef3d390c9d097f20b..23da081c371f5dc92b5bc0784a456bde63fdd44d 100644
Binary files a/img/clothes/under_upper/schoolswimtop/3_gray.png and b/img/clothes/under_upper/schoolswimtop/3_gray.png differ
diff --git a/img/clothes/under_upper/schoolswimtop/4_gray.png b/img/clothes/under_upper/schoolswimtop/4_gray.png
index aad84e4f8c9a9316b9f37d0c680eb703a9d2a43a..d43c0711281862779127e40199d770e7065928e3 100644
Binary files a/img/clothes/under_upper/schoolswimtop/4_gray.png and b/img/clothes/under_upper/schoolswimtop/4_gray.png differ
diff --git a/img/clothes/under_upper/seethroughswimsuit/1_gray.png b/img/clothes/under_upper/seethroughswimsuit/1_gray.png
index 1bf31184035103f87c3570c7dbea6920ac693914..4b6468a3dacd981c6ca37c082e6789bc8ee9f1db 100644
Binary files a/img/clothes/under_upper/seethroughswimsuit/1_gray.png and b/img/clothes/under_upper/seethroughswimsuit/1_gray.png differ
diff --git a/img/clothes/under_upper/seethroughswimsuit/2_gray.png b/img/clothes/under_upper/seethroughswimsuit/2_gray.png
index 6ad744280a714a298b9c1f3e1e6f243b24fcaaba..76ba9bb81bf549e40e7ab3b38a9b0acbde2698c0 100644
Binary files a/img/clothes/under_upper/seethroughswimsuit/2_gray.png and b/img/clothes/under_upper/seethroughswimsuit/2_gray.png differ
diff --git a/img/clothes/under_upper/seethroughswimsuit/3_gray.png b/img/clothes/under_upper/seethroughswimsuit/3_gray.png
index 8c4a4418bdb99b05f8befaa69c888744f9d53bc0..900219ed8abed50be6b4ae9c0b09ce547e892d56 100644
Binary files a/img/clothes/under_upper/seethroughswimsuit/3_gray.png and b/img/clothes/under_upper/seethroughswimsuit/3_gray.png differ
diff --git a/img/clothes/under_upper/seethroughswimsuit/4_gray.png b/img/clothes/under_upper/seethroughswimsuit/4_gray.png
index f6ba9f7cac17617f5fe7fe4a4f4985896e1e45bc..3df6385f31b3608af95c37c3c6bdf7a4aad01fc0 100644
Binary files a/img/clothes/under_upper/seethroughswimsuit/4_gray.png and b/img/clothes/under_upper/seethroughswimsuit/4_gray.png differ
diff --git a/img/clothes/under_upper/seethroughswimsuit/5_gray.png b/img/clothes/under_upper/seethroughswimsuit/5_gray.png
index 90601570e9c818c2864fc38bf8078721b3d40afe..85551e6c6a0378acf557724db0e833b3a44b1c48 100644
Binary files a/img/clothes/under_upper/seethroughswimsuit/5_gray.png and b/img/clothes/under_upper/seethroughswimsuit/5_gray.png differ
diff --git a/img/clothes/under_upper/seethroughswimsuit/frayed_gray.png b/img/clothes/under_upper/seethroughswimsuit/frayed_gray.png
index 96b2caca742988f4b3dd349b3b7abd45ba3377e3..b4ea7e5bc2cc5f7d5d08ac6e3f2a6b1c4bb1c370 100644
Binary files a/img/clothes/under_upper/seethroughswimsuit/frayed_gray.png and b/img/clothes/under_upper/seethroughswimsuit/frayed_gray.png differ
diff --git a/img/clothes/under_upper/seethroughswimsuit/full_gray.png b/img/clothes/under_upper/seethroughswimsuit/full_gray.png
index a92aecc3187a1f2aaa24ecad54e16695beed4a2f..79696fb53a930aab354ccf219a8256ec0843eb23 100644
Binary files a/img/clothes/under_upper/seethroughswimsuit/full_gray.png and b/img/clothes/under_upper/seethroughswimsuit/full_gray.png differ
diff --git a/img/clothes/under_upper/seethroughswimsuit/tattered_gray.png b/img/clothes/under_upper/seethroughswimsuit/tattered_gray.png
index b0f5b8dc428847ce6762c33aa4e352f6d872a0ab..7f57c6e47ce49f311304fad9bc1bdadaf3e55e4f 100644
Binary files a/img/clothes/under_upper/seethroughswimsuit/tattered_gray.png and b/img/clothes/under_upper/seethroughswimsuit/tattered_gray.png differ
diff --git a/img/clothes/under_upper/seethroughswimsuit/torn_gray.png b/img/clothes/under_upper/seethroughswimsuit/torn_gray.png
index aa62eb778db7745d20659a83213ecd7dc4599e04..46d06adf3d354568f5efe115d921be7cf528b0ed 100644
Binary files a/img/clothes/under_upper/seethroughswimsuit/torn_gray.png and b/img/clothes/under_upper/seethroughswimsuit/torn_gray.png differ
diff --git a/img/clothes/under_upper/shibari/frayed_gray.png b/img/clothes/under_upper/shibari/frayed_gray.png
index ac92de09a92060cdc2f2a5a34fdf27d6cef6b2ad..249409f20fdea8bf1cd3955c4c7d469bfad4b552 100644
Binary files a/img/clothes/under_upper/shibari/frayed_gray.png and b/img/clothes/under_upper/shibari/frayed_gray.png differ
diff --git a/img/clothes/under_upper/shibari/full_gray.png b/img/clothes/under_upper/shibari/full_gray.png
index f5e601e908e6225651aff06db6a780957925dbcd..250055537df5a3a6ecda117d4586fea4a21428d4 100644
Binary files a/img/clothes/under_upper/shibari/full_gray.png and b/img/clothes/under_upper/shibari/full_gray.png differ
diff --git a/img/clothes/under_upper/shibari/tattered_gray.png b/img/clothes/under_upper/shibari/tattered_gray.png
index 1e3748182b49ef5dad249f4c0e5e6089ecc39781..4e8c902e912357a97399847e22f858c34794ca53 100644
Binary files a/img/clothes/under_upper/shibari/tattered_gray.png and b/img/clothes/under_upper/shibari/tattered_gray.png differ
diff --git a/img/clothes/under_upper/shibari/torn_gray.png b/img/clothes/under_upper/shibari/torn_gray.png
index 10be9fceed1afbc97c3361157bf049dba2896df4..71cc5c0eee79203746717a8ddce21faaf9e7c902 100644
Binary files a/img/clothes/under_upper/shibari/torn_gray.png and b/img/clothes/under_upper/shibari/torn_gray.png differ
diff --git a/img/clothes/under_upper/sportsbra/2_gray.png b/img/clothes/under_upper/sportsbra/2_gray.png
index b094fcd0ef6b67817043c43485a19a8d307f7ebe..dc147472024086435c31c931785b2af32016bd72 100644
Binary files a/img/clothes/under_upper/sportsbra/2_gray.png and b/img/clothes/under_upper/sportsbra/2_gray.png differ
diff --git a/img/clothes/under_upper/sportsbra/3_gray.png b/img/clothes/under_upper/sportsbra/3_gray.png
index 78a3c8b77962a229f4cb2a953781fec12affe759..ecb805f987f31b5cfbba4df2f23845849127bbfa 100644
Binary files a/img/clothes/under_upper/sportsbra/3_gray.png and b/img/clothes/under_upper/sportsbra/3_gray.png differ
diff --git a/img/clothes/under_upper/sportsbra/4_gray.png b/img/clothes/under_upper/sportsbra/4_gray.png
index 9994e6a37fb2d2cd640ddc4fbe091600316e97ae..9d1eb4952c7abba4fa2a9c669cdca6dd37649d97 100644
Binary files a/img/clothes/under_upper/sportsbra/4_gray.png and b/img/clothes/under_upper/sportsbra/4_gray.png differ
diff --git a/img/clothes/under_upper/sportsbra/5_gray.png b/img/clothes/under_upper/sportsbra/5_gray.png
index 12dc2b1e23cf05bd9be24b5e1bccceb8d7f4c67f..2620bd9732a3f2268b548db33a27eb16b0cf601f 100644
Binary files a/img/clothes/under_upper/sportsbra/5_gray.png and b/img/clothes/under_upper/sportsbra/5_gray.png differ
diff --git a/img/clothes/under_upper/straplessbra/1_gray.png b/img/clothes/under_upper/straplessbra/1_gray.png
index 90269eaf5716be31569e4bb54851f86cb2e9e7d2..56cbe5d4de9423cc6f3d27645473b352b3130759 100644
Binary files a/img/clothes/under_upper/straplessbra/1_gray.png and b/img/clothes/under_upper/straplessbra/1_gray.png differ
diff --git a/img/clothes/under_upper/straplessbra/2_gray.png b/img/clothes/under_upper/straplessbra/2_gray.png
index cb8431584edfc3e5380e68417f217a8e9b3d2b56..fb3b47725487beb287d560e638aed7c8ecbfa3ed 100644
Binary files a/img/clothes/under_upper/straplessbra/2_gray.png and b/img/clothes/under_upper/straplessbra/2_gray.png differ
diff --git a/img/clothes/under_upper/straplessbra/3_gray.png b/img/clothes/under_upper/straplessbra/3_gray.png
index dc10998c1fcb878141471324a5aa5317c4894d7e..19f5f83e01ef2873a60970957516b6af5222b9da 100644
Binary files a/img/clothes/under_upper/straplessbra/3_gray.png and b/img/clothes/under_upper/straplessbra/3_gray.png differ
diff --git a/img/clothes/under_upper/straplessbra/4_gray.png b/img/clothes/under_upper/straplessbra/4_gray.png
index 42f7acd6154ef9a753c61208d1786c1692040693..78ad832020153f4294dc0f4f1b6e0011971eef9e 100644
Binary files a/img/clothes/under_upper/straplessbra/4_gray.png and b/img/clothes/under_upper/straplessbra/4_gray.png differ
diff --git a/img/clothes/under_upper/straplessbra/5_gray.png b/img/clothes/under_upper/straplessbra/5_gray.png
index 64c27dc3a634c7f6f555b9cebe4e66cece837e0f..d4b418571baf8979ef46eeb79dcb2a6f69742dc6 100644
Binary files a/img/clothes/under_upper/straplessbra/5_gray.png and b/img/clothes/under_upper/straplessbra/5_gray.png differ
diff --git a/img/clothes/under_upper/stripedbra/0_acc_gray.png b/img/clothes/under_upper/stripedbra/0_acc_gray.png
index af9b561d9171ee0560aeeaa9cb5308297f074ed1..d7e724bc376a8d7f600dc87c0fb1e29112536d0a 100644
Binary files a/img/clothes/under_upper/stripedbra/0_acc_gray.png and b/img/clothes/under_upper/stripedbra/0_acc_gray.png differ
diff --git a/img/clothes/under_upper/stripedbra/0_gray.png b/img/clothes/under_upper/stripedbra/0_gray.png
index 8eef8334b3df4c96b7719a72e386c34570951e5c..4ba0e245d69773854d6eb26b1aabfe1540732913 100644
Binary files a/img/clothes/under_upper/stripedbra/0_gray.png and b/img/clothes/under_upper/stripedbra/0_gray.png differ
diff --git a/img/clothes/under_upper/stripedbra/2_acc_gray.png b/img/clothes/under_upper/stripedbra/2_acc_gray.png
index ab2df23e77880aed263c38f57612131fe66c1345..c11f08b955224364a204662859f4ac777620674d 100644
Binary files a/img/clothes/under_upper/stripedbra/2_acc_gray.png and b/img/clothes/under_upper/stripedbra/2_acc_gray.png differ
diff --git a/img/clothes/under_upper/stripedbra/2_gray.png b/img/clothes/under_upper/stripedbra/2_gray.png
index 066d48beebea4abd51407058d87a7ce298a6b1a9..e16bb5d0bdace552297485461a4d38660b6552c1 100644
Binary files a/img/clothes/under_upper/stripedbra/2_gray.png and b/img/clothes/under_upper/stripedbra/2_gray.png differ
diff --git a/img/clothes/under_upper/stripedbra/3_acc_gray.png b/img/clothes/under_upper/stripedbra/3_acc_gray.png
index 61935de7eafe5ed99ce91c4b87697e1f68883140..9fee9c066f20af4ded0220bc071bcabc4747c218 100644
Binary files a/img/clothes/under_upper/stripedbra/3_acc_gray.png and b/img/clothes/under_upper/stripedbra/3_acc_gray.png differ
diff --git a/img/clothes/under_upper/stripedbra/3_gray.png b/img/clothes/under_upper/stripedbra/3_gray.png
index d0050a467533db512fad35de3dc1da59c3154de2..b31eaee28ef3f1b7c628c7f6bb31839f3ca1443f 100644
Binary files a/img/clothes/under_upper/stripedbra/3_gray.png and b/img/clothes/under_upper/stripedbra/3_gray.png differ
diff --git a/img/clothes/under_upper/stripedbra/4_acc_gray.png b/img/clothes/under_upper/stripedbra/4_acc_gray.png
index 1dfd5addd38936aa6161fdb83584ac5d73f36b7d..9a7b1a63b3d2c72725ac3d92b8995246714c45e8 100644
Binary files a/img/clothes/under_upper/stripedbra/4_acc_gray.png and b/img/clothes/under_upper/stripedbra/4_acc_gray.png differ
diff --git a/img/clothes/under_upper/stripedbra/4_gray.png b/img/clothes/under_upper/stripedbra/4_gray.png
index 29d8d7e816a3068805dc0684bd5622b4236b00a1..97dca82aba854979fd908089d9ab1cf4e3c776d7 100644
Binary files a/img/clothes/under_upper/stripedbra/4_gray.png and b/img/clothes/under_upper/stripedbra/4_gray.png differ
diff --git a/img/clothes/under_upper/stripedbra/5_acc_gray.png b/img/clothes/under_upper/stripedbra/5_acc_gray.png
index 299383f34d34a360a289089c5d724a97e3fe7ef5..b171c191c5b8522e82512ee44123df767d3eb097 100644
Binary files a/img/clothes/under_upper/stripedbra/5_acc_gray.png and b/img/clothes/under_upper/stripedbra/5_acc_gray.png differ
diff --git a/img/clothes/under_upper/stripedbra/5_gray.png b/img/clothes/under_upper/stripedbra/5_gray.png
index 07b621cc63b114e28ff1d8bd519b57882c7abcb5..99eb9cf4728a1edf6d1b819a3c673ed76ac3e023 100644
Binary files a/img/clothes/under_upper/stripedbra/5_gray.png and b/img/clothes/under_upper/stripedbra/5_gray.png differ
diff --git a/img/clothes/under_upper/swimshirt/acc_frayed.png b/img/clothes/under_upper/swimshirt/acc_frayed.png
index 67147a88c1f1569d6db611ec1c7d9b0f9dcb5851..118a0da3747954f6f92ab4357feffb9db285c19d 100644
Binary files a/img/clothes/under_upper/swimshirt/acc_frayed.png and b/img/clothes/under_upper/swimshirt/acc_frayed.png differ
diff --git a/img/clothes/under_upper/swimshirt/acc_full.png b/img/clothes/under_upper/swimshirt/acc_full.png
index 012e452997c672793f558902f3367ad28923e7e2..77a4f2e576d8632194db288744f85e5dc63a08a1 100644
Binary files a/img/clothes/under_upper/swimshirt/acc_full.png and b/img/clothes/under_upper/swimshirt/acc_full.png differ
diff --git a/img/clothes/under_upper/swimshirt/acc_tattered.png b/img/clothes/under_upper/swimshirt/acc_tattered.png
index bcffb01dca1cfbc6a7ef8754cf33871a9f61f1e2..ec511a7fa148527a197ad556328124372f6f2706 100644
Binary files a/img/clothes/under_upper/swimshirt/acc_tattered.png and b/img/clothes/under_upper/swimshirt/acc_tattered.png differ
diff --git a/img/clothes/under_upper/swimshirt/acc_torn.png b/img/clothes/under_upper/swimshirt/acc_torn.png
index 72b7245543e94eabd46cc99aaf563663889feaf9..fe113dd873912a1613e4c15f8e171ba041735804 100644
Binary files a/img/clothes/under_upper/swimshirt/acc_torn.png and b/img/clothes/under_upper/swimshirt/acc_torn.png differ
diff --git a/img/clothes/under_upper/swimshirt/frayed_gray.png b/img/clothes/under_upper/swimshirt/frayed_gray.png
index f54de8226d8e8fa7561c053b858c31decbf102a5..1c1b5410386f4b3b003ef8fb74aefe9bcb466abd 100644
Binary files a/img/clothes/under_upper/swimshirt/frayed_gray.png and b/img/clothes/under_upper/swimshirt/frayed_gray.png differ
diff --git a/img/clothes/under_upper/swimshirt/full_gray.png b/img/clothes/under_upper/swimshirt/full_gray.png
index add105d8228095eedc819439a974fa0939cc7977..2289f479d0ffc9afcb87b6f5de53be29715940e0 100644
Binary files a/img/clothes/under_upper/swimshirt/full_gray.png and b/img/clothes/under_upper/swimshirt/full_gray.png differ
diff --git a/img/clothes/under_upper/swimshirt/hold_gray.png b/img/clothes/under_upper/swimshirt/hold_gray.png
index d01897cf6c67a8cac135742c9c399fc8f73c17b2..099dd88b89b83055b9abcadbf803f54a52030a7f 100644
Binary files a/img/clothes/under_upper/swimshirt/hold_gray.png and b/img/clothes/under_upper/swimshirt/hold_gray.png differ
diff --git a/img/clothes/under_upper/swimshirt/left_cover_gray.png b/img/clothes/under_upper/swimshirt/left_cover_gray.png
index 5e7c9563b9e5f67f9e19c1ecae59ddc68ad3136f..f310b09320f2406d0eea52afa0817bb91e68fe23 100644
Binary files a/img/clothes/under_upper/swimshirt/left_cover_gray.png and b/img/clothes/under_upper/swimshirt/left_cover_gray.png differ
diff --git a/img/clothes/under_upper/swimshirt/left_gray.png b/img/clothes/under_upper/swimshirt/left_gray.png
index cba473c3653d2dc7f2b22a6619bf5048260983d1..f16203d0190b5cbcf8d164631a658cd412124f0a 100644
Binary files a/img/clothes/under_upper/swimshirt/left_gray.png and b/img/clothes/under_upper/swimshirt/left_gray.png differ
diff --git a/img/clothes/under_upper/swimshirt/right_cover_gray.png b/img/clothes/under_upper/swimshirt/right_cover_gray.png
index 7b5f00d9837c01c05f786f3a0538f0b32594c36e..6b38c5f9bd0d9ff602480aafa04e737be2b80a26 100644
Binary files a/img/clothes/under_upper/swimshirt/right_cover_gray.png and b/img/clothes/under_upper/swimshirt/right_cover_gray.png differ
diff --git a/img/clothes/under_upper/swimshirt/right_gray.png b/img/clothes/under_upper/swimshirt/right_gray.png
index d008e91ea1188d2bb7b933acee9c12c8a0afa74b..70ab50ca98892149cb8b5163a9fe6dc874c44c14 100644
Binary files a/img/clothes/under_upper/swimshirt/right_gray.png and b/img/clothes/under_upper/swimshirt/right_gray.png differ
diff --git a/img/clothes/under_upper/swimshirt/tattered_gray.png b/img/clothes/under_upper/swimshirt/tattered_gray.png
index 60c46a88ea50053c51c104d725b11dd51fde1f5c..c33250d393d331e9c0b3bf422c5bf65e0617f133 100644
Binary files a/img/clothes/under_upper/swimshirt/tattered_gray.png and b/img/clothes/under_upper/swimshirt/tattered_gray.png differ
diff --git a/img/clothes/under_upper/swimshirt/torn_gray.png b/img/clothes/under_upper/swimshirt/torn_gray.png
index 2d9456b62cf42fae456f74f7b03ad4d6a657caad..84ca0d0da76f2fa85a9364a22547818f7ce282e0 100644
Binary files a/img/clothes/under_upper/swimshirt/torn_gray.png and b/img/clothes/under_upper/swimshirt/torn_gray.png differ
diff --git a/img/clothes/under_upper/swimsuit/3_gray.png b/img/clothes/under_upper/swimsuit/3_gray.png
index 082b706dd1516a394986e6cbfe5d30061a676e73..5a92a2755e96cf60736106a3a4c32e8af5bd4638 100644
Binary files a/img/clothes/under_upper/swimsuit/3_gray.png and b/img/clothes/under_upper/swimsuit/3_gray.png differ
diff --git a/img/clothes/under_upper/swimsuit/4_gray.png b/img/clothes/under_upper/swimsuit/4_gray.png
index 595c658891db4b590ce992892167b4f38f63743c..7c10190aa0241d8a093588decd699c84b8dfd1a4 100644
Binary files a/img/clothes/under_upper/swimsuit/4_gray.png and b/img/clothes/under_upper/swimsuit/4_gray.png differ
diff --git a/img/clothes/under_upper/swimsuit/frayed_gray.png b/img/clothes/under_upper/swimsuit/frayed_gray.png
index 4f4fa3fbfd3323d024113081185453358b1d49e9..bcb06fbf8f3aa0b0334b97fcbfeb0feca062c997 100644
Binary files a/img/clothes/under_upper/swimsuit/frayed_gray.png and b/img/clothes/under_upper/swimsuit/frayed_gray.png differ
diff --git a/img/clothes/under_upper/swimsuit/full_gray.png b/img/clothes/under_upper/swimsuit/full_gray.png
index 86b1508b23ecccf11a05c768a650b8af7928bf18..5ba86efe62ad7bf71ab1a49173f0bcbceef22040 100644
Binary files a/img/clothes/under_upper/swimsuit/full_gray.png and b/img/clothes/under_upper/swimsuit/full_gray.png differ
diff --git a/img/clothes/under_upper/swimsuit/tattered_gray.png b/img/clothes/under_upper/swimsuit/tattered_gray.png
index 86b1508b23ecccf11a05c768a650b8af7928bf18..5ba86efe62ad7bf71ab1a49173f0bcbceef22040 100644
Binary files a/img/clothes/under_upper/swimsuit/tattered_gray.png and b/img/clothes/under_upper/swimsuit/tattered_gray.png differ
diff --git a/img/clothes/under_upper/swimsuit/torn_gray.png b/img/clothes/under_upper/swimsuit/torn_gray.png
index 86b1508b23ecccf11a05c768a650b8af7928bf18..5ba86efe62ad7bf71ab1a49173f0bcbceef22040 100644
Binary files a/img/clothes/under_upper/swimsuit/torn_gray.png and b/img/clothes/under_upper/swimsuit/torn_gray.png differ
diff --git a/img/clothes/under_upper/tape/2_gray.png b/img/clothes/under_upper/tape/2_gray.png
index 361e0197af824d9c1e044beb6f2cb6cb2d10bd97..c9854a1ea74720a0509443ffe4ab5403fd4739f6 100644
Binary files a/img/clothes/under_upper/tape/2_gray.png and b/img/clothes/under_upper/tape/2_gray.png differ
diff --git a/img/clothes/under_upper/tape/3_gray.png b/img/clothes/under_upper/tape/3_gray.png
index ae7bf43d4526755a26badbfaeb6c49016c8b8298..71a8b6c63f8cf00f0d35d3b4f3fdadf80ef0a296 100644
Binary files a/img/clothes/under_upper/tape/3_gray.png and b/img/clothes/under_upper/tape/3_gray.png differ
diff --git a/img/clothes/under_upper/tape/4_gray.png b/img/clothes/under_upper/tape/4_gray.png
index 91575900c5d5e7d8033cfe5405fe5fc000614d7c..5cf8191eb29f89e99a91213739c2e58dccbaa616 100644
Binary files a/img/clothes/under_upper/tape/4_gray.png and b/img/clothes/under_upper/tape/4_gray.png differ
diff --git a/img/clothes/under_upper/tape/5_gray.png b/img/clothes/under_upper/tape/5_gray.png
index f83888fbce3c630feef89f9fef504acdcbcd3f04..e286550669563f39fe65aa3aa47c74e8c400aa8a 100644
Binary files a/img/clothes/under_upper/tape/5_gray.png and b/img/clothes/under_upper/tape/5_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/acc_frayed_gray.png b/img/clothes/under_upper/undershirt/acc_frayed_gray.png
index 1e3b8db30d506e6c0b6b4c2e9af84e0e4a7e0916..b75a713938ea346e819c774075ddf85a4dac2719 100644
Binary files a/img/clothes/under_upper/undershirt/acc_frayed_gray.png and b/img/clothes/under_upper/undershirt/acc_frayed_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/acc_full_gray.png b/img/clothes/under_upper/undershirt/acc_full_gray.png
index 15340708db1b03d07f567d1f77011b18777e98b1..dc2d5f040897d67552f177590b600c54c8e4a732 100644
Binary files a/img/clothes/under_upper/undershirt/acc_full_gray.png and b/img/clothes/under_upper/undershirt/acc_full_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/acc_tattered_gray.png b/img/clothes/under_upper/undershirt/acc_tattered_gray.png
index 84255bfbcb91cca19c8db24c10a41a892049bd6e..302941f0ac5999c9181c92c917eaf6d52641fb8f 100644
Binary files a/img/clothes/under_upper/undershirt/acc_tattered_gray.png and b/img/clothes/under_upper/undershirt/acc_tattered_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/acc_torn_gray.png b/img/clothes/under_upper/undershirt/acc_torn_gray.png
index 1fe4cae812249d1b717e3b1f012e115b853456f9..9dbfadd9796b5aef65d3ff34740b01b6d698ecbd 100644
Binary files a/img/clothes/under_upper/undershirt/acc_torn_gray.png and b/img/clothes/under_upper/undershirt/acc_torn_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/frayed_gray.png b/img/clothes/under_upper/undershirt/frayed_gray.png
index 547c48893e68d6fa238b9b9bb94188f1d38f978b..bd715e9cbfc056b5da6de933ac14feabe6e3d074 100644
Binary files a/img/clothes/under_upper/undershirt/frayed_gray.png and b/img/clothes/under_upper/undershirt/frayed_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/full_gray.png b/img/clothes/under_upper/undershirt/full_gray.png
index 751a84aa2a4555ec2ff303372e74149947221b1a..3e0e9567ee333bf9a987c4a75bef9c612de5de38 100644
Binary files a/img/clothes/under_upper/undershirt/full_gray.png and b/img/clothes/under_upper/undershirt/full_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/hold_gray.png b/img/clothes/under_upper/undershirt/hold_gray.png
index 0f9cb3360030bde4f84833d3be0c96e7381d1ebc..367dee53a3fe4f3333d42a15ee4151ac6089469e 100644
Binary files a/img/clothes/under_upper/undershirt/hold_gray.png and b/img/clothes/under_upper/undershirt/hold_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/left_cover_gray.png b/img/clothes/under_upper/undershirt/left_cover_gray.png
index 2a14307703cc7cc5b6db1f4b3de60a20391de5f2..7bedff54a908bf465a42013d5ccf29741f68a228 100644
Binary files a/img/clothes/under_upper/undershirt/left_cover_gray.png and b/img/clothes/under_upper/undershirt/left_cover_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/left_gray.png b/img/clothes/under_upper/undershirt/left_gray.png
index 2c1c2a9b522cd2de524e4008416dfb38eb535370..f81ced3678ed1f3cbe31518099de5786a0150f11 100644
Binary files a/img/clothes/under_upper/undershirt/left_gray.png and b/img/clothes/under_upper/undershirt/left_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/right_cover_gray.png b/img/clothes/under_upper/undershirt/right_cover_gray.png
index dbb80b6298e233dca63274ba5dd45e5059713d2e..6ccd00cbb3a93dbd03cc9f19be69bc9269e81697 100644
Binary files a/img/clothes/under_upper/undershirt/right_cover_gray.png and b/img/clothes/under_upper/undershirt/right_cover_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/right_gray.png b/img/clothes/under_upper/undershirt/right_gray.png
index 8aa0eaed826ae05c21643362ff6ebfaea3ec3fdd..dd6b1960a56e675f2f357adefafed620b7af4325 100644
Binary files a/img/clothes/under_upper/undershirt/right_gray.png and b/img/clothes/under_upper/undershirt/right_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/tattered_gray.png b/img/clothes/under_upper/undershirt/tattered_gray.png
index 5376b0f459ffadc1adb5799c336be6ae1e4c15f1..e9f674b9287b6345a8b5ef07213a63066cf16171 100644
Binary files a/img/clothes/under_upper/undershirt/tattered_gray.png and b/img/clothes/under_upper/undershirt/tattered_gray.png differ
diff --git a/img/clothes/under_upper/undershirt/torn_gray.png b/img/clothes/under_upper/undershirt/torn_gray.png
index dd84c281f1a5795f2124e671ef6e53a770f59991..fe637bc3e4123316f77e28acfdd542f1f9fd3656 100644
Binary files a/img/clothes/under_upper/undershirt/torn_gray.png and b/img/clothes/under_upper/undershirt/torn_gray.png differ
diff --git a/img/clothes/under_upper/unitard/1_gray.png b/img/clothes/under_upper/unitard/1_gray.png
index 0e148e6ab5d2c0cd511187476ddaa64734cd692b..30cfa76f08e1ad95f8efd0d933ea4f8fabfe1935 100644
Binary files a/img/clothes/under_upper/unitard/1_gray.png and b/img/clothes/under_upper/unitard/1_gray.png differ
diff --git a/img/clothes/under_upper/unitard/2_gray.png b/img/clothes/under_upper/unitard/2_gray.png
index f4c0e3ebfb4636c90618b531c6ff06adc0cb7b93..c8f90275197f9d66092419b9e8e8d26cdb7fa49f 100644
Binary files a/img/clothes/under_upper/unitard/2_gray.png and b/img/clothes/under_upper/unitard/2_gray.png differ
diff --git a/img/clothes/under_upper/unitard/3_gray.png b/img/clothes/under_upper/unitard/3_gray.png
index 57515bedbda7c039836a8f5d4147e4e218c268fa..80aee42527e8bd5b16c90ceabdd43832ffc64d66 100644
Binary files a/img/clothes/under_upper/unitard/3_gray.png and b/img/clothes/under_upper/unitard/3_gray.png differ
diff --git a/img/clothes/under_upper/unitard/4_gray.png b/img/clothes/under_upper/unitard/4_gray.png
index bc6bba3826f87780e2172e6545d7adf61e4e7b88..5c14b292ce5aad2aebfcbbd066f9bb2f3049e7a9 100644
Binary files a/img/clothes/under_upper/unitard/4_gray.png and b/img/clothes/under_upper/unitard/4_gray.png differ
diff --git a/img/clothes/under_upper/unitard/5_gray.png b/img/clothes/under_upper/unitard/5_gray.png
index ab640c2d1372beda43ea2838c18302fc750ff960..f974578746fe5da41cac3b74fad48e9f1ecb62c3 100644
Binary files a/img/clothes/under_upper/unitard/5_gray.png and b/img/clothes/under_upper/unitard/5_gray.png differ
diff --git a/img/clothes/under_upper/unitard/frayed_gray.png b/img/clothes/under_upper/unitard/frayed_gray.png
index ec5ea044686ee511dd056a834b9dce13924f8de7..d3aea0c7abb15634e78242b2e697a4780c596054 100644
Binary files a/img/clothes/under_upper/unitard/frayed_gray.png and b/img/clothes/under_upper/unitard/frayed_gray.png differ
diff --git a/img/clothes/under_upper/unitard/full_gray.png b/img/clothes/under_upper/unitard/full_gray.png
index 9777388a6cfcc985eb0bae75ad6cf5bebdae9653..f88a888e5c156b686848fff7d068ce08a3b6aac4 100644
Binary files a/img/clothes/under_upper/unitard/full_gray.png and b/img/clothes/under_upper/unitard/full_gray.png differ
diff --git a/img/clothes/under_upper/unitard/hold_gray.png b/img/clothes/under_upper/unitard/hold_gray.png
index eebe80ef0f1524f8ecf21890b719e5f7c707b5c1..cab5069918d4d8f8511d560dd8e432244862c972 100644
Binary files a/img/clothes/under_upper/unitard/hold_gray.png and b/img/clothes/under_upper/unitard/hold_gray.png differ
diff --git a/img/clothes/under_upper/unitard/left_cover_gray.png b/img/clothes/under_upper/unitard/left_cover_gray.png
index 608ae71350d01b52ce16fe962bc5c9a0738ccc15..78ab08df3027ef734638424ef4764bf9b40e0557 100644
Binary files a/img/clothes/under_upper/unitard/left_cover_gray.png and b/img/clothes/under_upper/unitard/left_cover_gray.png differ
diff --git a/img/clothes/under_upper/unitard/left_gray.png b/img/clothes/under_upper/unitard/left_gray.png
index 4ce8977b364f6e3fb01b1bb2465a2e571b770f93..1d6f922847809d210f89a2c0e80bbfeca5498e60 100644
Binary files a/img/clothes/under_upper/unitard/left_gray.png and b/img/clothes/under_upper/unitard/left_gray.png differ
diff --git a/img/clothes/under_upper/unitard/right_cover_gray.png b/img/clothes/under_upper/unitard/right_cover_gray.png
index 166570a265552b11580f9ad3415e5e57b23ae60b..4f854a4ab71fa87daff47b3664b12916f150e738 100644
Binary files a/img/clothes/under_upper/unitard/right_cover_gray.png and b/img/clothes/under_upper/unitard/right_cover_gray.png differ
diff --git a/img/clothes/under_upper/unitard/right_gray.png b/img/clothes/under_upper/unitard/right_gray.png
index 9618fa64ee5af7e642a2c6baf5748cba67a91143..a71d150334b4e83563029b99bcd5f3f230704610 100644
Binary files a/img/clothes/under_upper/unitard/right_gray.png and b/img/clothes/under_upper/unitard/right_gray.png differ
diff --git a/img/clothes/under_upper/unitard/tattered_gray.png b/img/clothes/under_upper/unitard/tattered_gray.png
index 58c520fede37bf327699d2c882fc75da99ee0072..9a74e63bf34b8a3c6012e86d3e42375d170fd6c4 100644
Binary files a/img/clothes/under_upper/unitard/tattered_gray.png and b/img/clothes/under_upper/unitard/tattered_gray.png differ
diff --git a/img/clothes/under_upper/unitard/torn_gray.png b/img/clothes/under_upper/unitard/torn_gray.png
index 52384d5756ff91afe4657734b48d9a027b1c469d..b7ab0d14ce8ed92afcab77fcd47e16dbee5f0cfe 100644
Binary files a/img/clothes/under_upper/unitard/torn_gray.png and b/img/clothes/under_upper/unitard/torn_gray.png differ
diff --git a/img/clothes/under_upper/vest/frayed_gray.png b/img/clothes/under_upper/vest/frayed_gray.png
index 4e46fae53fa8d0d1fe188c641d5e5280a650641c..313c0b786897c2f042c9eb550ca82210d95293b3 100644
Binary files a/img/clothes/under_upper/vest/frayed_gray.png and b/img/clothes/under_upper/vest/frayed_gray.png differ
diff --git a/img/clothes/under_upper/vest/full_gray.png b/img/clothes/under_upper/vest/full_gray.png
index 6b5bdba8a5242006764a7ed1f0bd290c653e2754..577037d4b92c1c9a5fbfec007b2fa18ae96715b4 100644
Binary files a/img/clothes/under_upper/vest/full_gray.png and b/img/clothes/under_upper/vest/full_gray.png differ
diff --git a/img/clothes/under_upper/vest/tattered_gray.png b/img/clothes/under_upper/vest/tattered_gray.png
index 2edb0ce904c006930fb3e1b22b7566c9170abcab..31eca2a53ff31fb9a77cf9a1a846786672990a9e 100644
Binary files a/img/clothes/under_upper/vest/tattered_gray.png and b/img/clothes/under_upper/vest/tattered_gray.png differ
diff --git a/img/clothes/under_upper/vest/torn_gray.png b/img/clothes/under_upper/vest/torn_gray.png
index 803212ea61e33206c54d8deff972ca806fc07277..d8460b86dc18a8d73c865b630b5a5d2ffd7b9f6e 100644
Binary files a/img/clothes/under_upper/vest/torn_gray.png and b/img/clothes/under_upper/vest/torn_gray.png differ
diff --git a/img/clothes/upper/ao dai/1_gray.png b/img/clothes/upper/ao dai/1_gray.png
index f9625ad19429a4c668ca6087a53efc3be28716c1..58a7daeee30348d6eb8366b85149efb39b389f90 100644
Binary files a/img/clothes/upper/ao dai/1_gray.png and b/img/clothes/upper/ao dai/1_gray.png differ
diff --git a/img/clothes/upper/ao dai/2_gray.png b/img/clothes/upper/ao dai/2_gray.png
index 4e4cd2f04b6ab0163b66faee5d26eaf25c3b7c21..c1055abd145f0e71898a7965121a7e01addf8e65 100644
Binary files a/img/clothes/upper/ao dai/2_gray.png and b/img/clothes/upper/ao dai/2_gray.png differ
diff --git a/img/clothes/upper/ao dai/3_gray.png b/img/clothes/upper/ao dai/3_gray.png
index 1fd467c3ed2588bd1c7c84841f396f9da63ee0d4..98d7daf39f68676b0163dcf9cc3fe860fcb9dc2d 100644
Binary files a/img/clothes/upper/ao dai/3_gray.png and b/img/clothes/upper/ao dai/3_gray.png differ
diff --git a/img/clothes/upper/ao dai/4_gray.png b/img/clothes/upper/ao dai/4_gray.png
index b0d32383bfcf6f81b593cd75d7d9b115ff19f7f8..4f983be9e07b18dae6461bb63222a536d17daf88 100644
Binary files a/img/clothes/upper/ao dai/4_gray.png and b/img/clothes/upper/ao dai/4_gray.png differ
diff --git a/img/clothes/upper/ao dai/5_gray.png b/img/clothes/upper/ao dai/5_gray.png
index fd13f28534dbdf893589f4ca684677d19e3c3139..ba59faa9f74f692cc0a80914447cee1ef1f00515 100644
Binary files a/img/clothes/upper/ao dai/5_gray.png and b/img/clothes/upper/ao dai/5_gray.png differ
diff --git a/img/clothes/upper/ao dai/frayed_gray.png b/img/clothes/upper/ao dai/frayed_gray.png
index 2f8c9f6d31f57804a58b0e23c570ec2ce527e183..fbe4a4f19ec4e0a9ddb728d7aaaf49de39bb60c8 100644
Binary files a/img/clothes/upper/ao dai/frayed_gray.png and b/img/clothes/upper/ao dai/frayed_gray.png differ
diff --git a/img/clothes/upper/ao dai/full_gray.png b/img/clothes/upper/ao dai/full_gray.png
index b52deb923697ff06e66e946e7a3d9fea4b422aa9..581495ead54dd5fce56ea40f734f8fafcca9ff43 100644
Binary files a/img/clothes/upper/ao dai/full_gray.png and b/img/clothes/upper/ao dai/full_gray.png differ
diff --git a/img/clothes/upper/ao dai/hold_gray.png b/img/clothes/upper/ao dai/hold_gray.png
index c2bce8fdf316ae74f957e8645018e1113e9f1568..c00b8c3e1afa7b5be48fce2dc7aa31a98ece82b9 100644
Binary files a/img/clothes/upper/ao dai/hold_gray.png and b/img/clothes/upper/ao dai/hold_gray.png differ
diff --git a/img/clothes/upper/ao dai/left_cover_gray.png b/img/clothes/upper/ao dai/left_cover_gray.png
index 38d588ed7180c07283c0eb167e6fb12f4f03423a..6ccbe2962481310fa80cc3cae788e1120db3d76c 100644
Binary files a/img/clothes/upper/ao dai/left_cover_gray.png and b/img/clothes/upper/ao dai/left_cover_gray.png differ
diff --git a/img/clothes/upper/ao dai/left_gray.png b/img/clothes/upper/ao dai/left_gray.png
index 436b0f787eb781f50b09c316942a89e7f6324f42..2447ee182dddc0fdf0857bf7dcc9b1d3dbdacbc5 100644
Binary files a/img/clothes/upper/ao dai/left_gray.png and b/img/clothes/upper/ao dai/left_gray.png differ
diff --git a/img/clothes/upper/ao dai/right_cover_gray.png b/img/clothes/upper/ao dai/right_cover_gray.png
index 0f6c6123dc0346bf323cc601950180910a96a50e..533ae734357d5c2ce3870d3e2a9f74fc077a28fa 100644
Binary files a/img/clothes/upper/ao dai/right_cover_gray.png and b/img/clothes/upper/ao dai/right_cover_gray.png differ
diff --git a/img/clothes/upper/ao dai/right_gray.png b/img/clothes/upper/ao dai/right_gray.png
index 91ad77dd8443eb3d68e8938c476ab73229470334..90c49b7383a2ff036cb6c9c64ab0e494b0931069 100644
Binary files a/img/clothes/upper/ao dai/right_gray.png and b/img/clothes/upper/ao dai/right_gray.png differ
diff --git a/img/clothes/upper/ao dai/tattered_gray.png b/img/clothes/upper/ao dai/tattered_gray.png
index 83a238b7861db61f792802469a4b4df4777225ae..3c0bd23cfd48ae1595a5a80498821b3454a3b29f 100644
Binary files a/img/clothes/upper/ao dai/tattered_gray.png and b/img/clothes/upper/ao dai/tattered_gray.png differ
diff --git a/img/clothes/upper/ao dai/torn_gray.png b/img/clothes/upper/ao dai/torn_gray.png
index 5caab6395823637984913c43bd858853960d0c07..f7292e3aee0d5120fe4f96abf0eb261c6c3fa955 100644
Binary files a/img/clothes/upper/ao dai/torn_gray.png and b/img/clothes/upper/ao dai/torn_gray.png differ
diff --git a/img/clothes/upper/apron/frayed.png b/img/clothes/upper/apron/frayed.png
index 12d9c72b9e0de82a8a17f8da2a8283a7e74e2d60..10694a3f2e0bdc419506b285499b20a82b458b69 100644
Binary files a/img/clothes/upper/apron/frayed.png and b/img/clothes/upper/apron/frayed.png differ
diff --git a/img/clothes/upper/apron/full.png b/img/clothes/upper/apron/full.png
index 4587e3fbb9f763193a3b92508bdb171a9e28b714..240f3618500ee760a60ddbf38d6a2b4beb9d289d 100644
Binary files a/img/clothes/upper/apron/full.png and b/img/clothes/upper/apron/full.png differ
diff --git a/img/clothes/upper/apron/tattered.png b/img/clothes/upper/apron/tattered.png
index 3553535ef63cb48b9da49851f5c7397675fcf260..1e0e4ece7adbd711478c9cb26925e0e6535a998e 100644
Binary files a/img/clothes/upper/apron/tattered.png and b/img/clothes/upper/apron/tattered.png differ
diff --git a/img/clothes/upper/apron/torn.png b/img/clothes/upper/apron/torn.png
index ec40ae5ba376f00e2c74bcf212a09359e35d8546..ef0b27b292573ab0be75e4eda343544c45466044 100644
Binary files a/img/clothes/upper/apron/torn.png and b/img/clothes/upper/apron/torn.png differ
diff --git a/img/clothes/upper/argyle/4_gray.png b/img/clothes/upper/argyle/4_gray.png
index bc13f39530c919d77ceea1f43afacc3d4cec1b40..134d9340db494f4bd84dde28a2d84008f1159243 100644
Binary files a/img/clothes/upper/argyle/4_gray.png and b/img/clothes/upper/argyle/4_gray.png differ
diff --git a/img/clothes/upper/argyle/5_gray.png b/img/clothes/upper/argyle/5_gray.png
index 18317afe24d56a71d5e358afc915197d2890fe38..c3c210d931280bb0b067c0e45909d6803eb00c90 100644
Binary files a/img/clothes/upper/argyle/5_gray.png and b/img/clothes/upper/argyle/5_gray.png differ
diff --git a/img/clothes/upper/argyle/6_gray.png b/img/clothes/upper/argyle/6_gray.png
index 3cbd732bb778d4b893c6704a32b639ff8570972c..2bcf64821a6b3880103c32553d276540e49d9f20 100644
Binary files a/img/clothes/upper/argyle/6_gray.png and b/img/clothes/upper/argyle/6_gray.png differ
diff --git a/img/clothes/upper/argyle/acc_gray.png b/img/clothes/upper/argyle/acc_gray.png
index e8f3181eba0461a6fb910d4107e889b859b22b7e..0dc5fcbc5c62c8966c10a9a9fa792da14e7ce11c 100644
Binary files a/img/clothes/upper/argyle/acc_gray.png and b/img/clothes/upper/argyle/acc_gray.png differ
diff --git a/img/clothes/upper/argyle/frayed_gray.png b/img/clothes/upper/argyle/frayed_gray.png
index 70e302d93c7047b37ba49a6a4946f4f82c40d775..609b81d52df42a3df362800e44423af4a725a0bb 100644
Binary files a/img/clothes/upper/argyle/frayed_gray.png and b/img/clothes/upper/argyle/frayed_gray.png differ
diff --git a/img/clothes/upper/argyle/full_gray.png b/img/clothes/upper/argyle/full_gray.png
index a34328decb7fbc54a9a37bb5820dfbafd2704a7f..c4adf168bd9929c735bda4a5694526d8a5c72284 100644
Binary files a/img/clothes/upper/argyle/full_gray.png and b/img/clothes/upper/argyle/full_gray.png differ
diff --git a/img/clothes/upper/argyle/tattered_gray.png b/img/clothes/upper/argyle/tattered_gray.png
index 7e10066c8a7e214cb769df1a3185430dfcf8cc04..3447b0afbe33bc75dfebc47e674a82ad34aa15eb 100644
Binary files a/img/clothes/upper/argyle/tattered_gray.png and b/img/clothes/upper/argyle/tattered_gray.png differ
diff --git a/img/clothes/upper/argyle/torn_gray.png b/img/clothes/upper/argyle/torn_gray.png
index 6db42671552bf84e93bbbf5a02c93c7587c04817..87c597dd42570c77098bcaff1d40103540e87c85 100644
Binary files a/img/clothes/upper/argyle/torn_gray.png and b/img/clothes/upper/argyle/torn_gray.png differ
diff --git a/img/clothes/upper/babydoll/2_gray.png b/img/clothes/upper/babydoll/2_gray.png
index 70387a2e700dadea9b27146dc1cde3a386f3dee4..812b84cfc1136fd8817dd387dcc665b3d971ac0b 100644
Binary files a/img/clothes/upper/babydoll/2_gray.png and b/img/clothes/upper/babydoll/2_gray.png differ
diff --git a/img/clothes/upper/babydoll/3_gray.png b/img/clothes/upper/babydoll/3_gray.png
index 747a9d277437cb508a719693e0f9982c4901df33..9bce3c321174ca13dd03a88d5dc7579b98f2b6d6 100644
Binary files a/img/clothes/upper/babydoll/3_gray.png and b/img/clothes/upper/babydoll/3_gray.png differ
diff --git a/img/clothes/upper/babydoll/4_gray.png b/img/clothes/upper/babydoll/4_gray.png
index b6110754147f66657ac4cd3fc4f734a912c950f5..c693ac0216c8710b916c731c232330cfca68c41f 100644
Binary files a/img/clothes/upper/babydoll/4_gray.png and b/img/clothes/upper/babydoll/4_gray.png differ
diff --git a/img/clothes/upper/babydoll/5_gray.png b/img/clothes/upper/babydoll/5_gray.png
index b2e4f16b2a35c840fb123e5c7b70a43545aa2c2d..0e48432ac19beef5c3bd3a127d7be9978e9f780e 100644
Binary files a/img/clothes/upper/babydoll/5_gray.png and b/img/clothes/upper/babydoll/5_gray.png differ
diff --git a/img/clothes/upper/babydoll/frayed_gray.png b/img/clothes/upper/babydoll/frayed_gray.png
index 15993a695b3c0ad48e61ca6c51da068634c64178..419acf7663e2ed798f52ab0ad9f0c0c841d86f8e 100644
Binary files a/img/clothes/upper/babydoll/frayed_gray.png and b/img/clothes/upper/babydoll/frayed_gray.png differ
diff --git a/img/clothes/upper/babydoll/full_gray.png b/img/clothes/upper/babydoll/full_gray.png
index 1f0b02bedf65f8c80cf055ddea2f350252fbc73f..a3f9e6608c8660efc3ed09cf9c3699eee54d52b0 100644
Binary files a/img/clothes/upper/babydoll/full_gray.png and b/img/clothes/upper/babydoll/full_gray.png differ
diff --git a/img/clothes/upper/babydoll/tattered_gray.png b/img/clothes/upper/babydoll/tattered_gray.png
index 1aab35de7cc3d900a38c1a8016684237625efeff..e98e543ec999d19b3b7d842ee11970e582b9978d 100644
Binary files a/img/clothes/upper/babydoll/tattered_gray.png and b/img/clothes/upper/babydoll/tattered_gray.png differ
diff --git a/img/clothes/upper/babydoll/torn_gray.png b/img/clothes/upper/babydoll/torn_gray.png
index 5946b5ae2278855038305b29adf4d0e8f46d6002..208bc34f402071cc51dc37ec7891d9d86e6594e4 100644
Binary files a/img/clothes/upper/babydoll/torn_gray.png and b/img/clothes/upper/babydoll/torn_gray.png differ
diff --git a/img/clothes/upper/babydolllingerie/2_gray.png b/img/clothes/upper/babydolllingerie/2_gray.png
index 53a6b4e340cc409ffa230446a99e236681da18ea..14aed50f3f027c5bab7346e76fb79844314be6f3 100644
Binary files a/img/clothes/upper/babydolllingerie/2_gray.png and b/img/clothes/upper/babydolllingerie/2_gray.png differ
diff --git a/img/clothes/upper/babydolllingerie/3_gray.png b/img/clothes/upper/babydolllingerie/3_gray.png
index f6e8261ead299d61d3d94e65e1c0a92959b1b53d..cbdbdb8a2a5d06c88c417d92c65ff54422bcd0a7 100644
Binary files a/img/clothes/upper/babydolllingerie/3_gray.png and b/img/clothes/upper/babydolllingerie/3_gray.png differ
diff --git a/img/clothes/upper/babydolllingerie/4_gray.png b/img/clothes/upper/babydolllingerie/4_gray.png
index a6e40defc8b926c83cf9fc227b5b34235d6a621f..1f44fbf2a63875d1bc0fbcfc53c0f4050eb2af8f 100644
Binary files a/img/clothes/upper/babydolllingerie/4_gray.png and b/img/clothes/upper/babydolllingerie/4_gray.png differ
diff --git a/img/clothes/upper/babydolllingerie/5_gray.png b/img/clothes/upper/babydolllingerie/5_gray.png
index 63a3ff7eab7fd1a2b6cac677fb37b6e8ccd5e6af..80b9ab944a9c4858465dff71b7cb3b33193691d2 100644
Binary files a/img/clothes/upper/babydolllingerie/5_gray.png and b/img/clothes/upper/babydolllingerie/5_gray.png differ
diff --git a/img/clothes/upper/babydolllingerie/frayed_gray.png b/img/clothes/upper/babydolllingerie/frayed_gray.png
index 58a699efe7ded23acfb6ea28ab76fa49ad02d6d6..7bea18f80ec2b7dd8872907bf1342ac9b608b2c5 100644
Binary files a/img/clothes/upper/babydolllingerie/frayed_gray.png and b/img/clothes/upper/babydolllingerie/frayed_gray.png differ
diff --git a/img/clothes/upper/babydolllingerie/full_gray.png b/img/clothes/upper/babydolllingerie/full_gray.png
index d1888d9e6a1fc208aefdeb5d5d841a12aab34acd..43674d0c9e330eb4d6b791c62a585c0f7d240d45 100644
Binary files a/img/clothes/upper/babydolllingerie/full_gray.png and b/img/clothes/upper/babydolllingerie/full_gray.png differ
diff --git a/img/clothes/upper/babydolllingerie/tattered_gray.png b/img/clothes/upper/babydolllingerie/tattered_gray.png
index 67235c3739380b890b036149243e8175fefec725..af8cbb66c90c265f1fc59d8843c1130c3c852a65 100644
Binary files a/img/clothes/upper/babydolllingerie/tattered_gray.png and b/img/clothes/upper/babydolllingerie/tattered_gray.png differ
diff --git a/img/clothes/upper/babydolllingerie/torn_gray.png b/img/clothes/upper/babydolllingerie/torn_gray.png
index e3f67f8c703dfb299335096f9bfffc16662d6bb5..bc87786defd3e83087ef586dc58760106c9f58dd 100644
Binary files a/img/clothes/upper/babydolllingerie/torn_gray.png and b/img/clothes/upper/babydolllingerie/torn_gray.png differ
diff --git a/img/clothes/upper/ballgown/1_gray.png b/img/clothes/upper/ballgown/1_gray.png
index c3804392e8a3e47fb62882f3bf692bef0186e17a..0062dbf7338283d9d3af1314880b38c9e7e5b13b 100644
Binary files a/img/clothes/upper/ballgown/1_gray.png and b/img/clothes/upper/ballgown/1_gray.png differ
diff --git a/img/clothes/upper/ballgown/2_gray.png b/img/clothes/upper/ballgown/2_gray.png
index 1a8a4b5013315a0f904b63f008e6da734a204a98..6cbe54afa4674d4e0880898e4d722e05c91f3634 100644
Binary files a/img/clothes/upper/ballgown/2_gray.png and b/img/clothes/upper/ballgown/2_gray.png differ
diff --git a/img/clothes/upper/ballgown/3_gray.png b/img/clothes/upper/ballgown/3_gray.png
index 2527b195056fe46810d6d97611bcc47b3a247a15..072c9305ca9176b9ff4ca34a1563bcb402fc852b 100644
Binary files a/img/clothes/upper/ballgown/3_gray.png and b/img/clothes/upper/ballgown/3_gray.png differ
diff --git a/img/clothes/upper/ballgown/4_gray.png b/img/clothes/upper/ballgown/4_gray.png
index 43b1d15ad2092652b5dd2b59d471b519a40514d6..223782ba5c7991dd69c745012d01f8971c9fecdd 100644
Binary files a/img/clothes/upper/ballgown/4_gray.png and b/img/clothes/upper/ballgown/4_gray.png differ
diff --git a/img/clothes/upper/ballgown/5_gray.png b/img/clothes/upper/ballgown/5_gray.png
index 9172b8f1e19059b849853a30693ea5f4db7fa39c..8632b9af8e52bb402143c65c13e62ee2ba5f9203 100644
Binary files a/img/clothes/upper/ballgown/5_gray.png and b/img/clothes/upper/ballgown/5_gray.png differ
diff --git a/img/clothes/upper/ballgown/acc_gray.png b/img/clothes/upper/ballgown/acc_gray.png
index ccea0ec02ba282c88e880a6869b4248a797f325c..c805d3bcecf7659aadf12586f72911a7b969104d 100644
Binary files a/img/clothes/upper/ballgown/acc_gray.png and b/img/clothes/upper/ballgown/acc_gray.png differ
diff --git a/img/clothes/upper/ballgown/frayed_gray.png b/img/clothes/upper/ballgown/frayed_gray.png
index 0466ebf069a0a122808842c6f6b0f6b7d26b1149..31b82a4ecbdbe49d5ffb390cb6b614bcd6ab8610 100644
Binary files a/img/clothes/upper/ballgown/frayed_gray.png and b/img/clothes/upper/ballgown/frayed_gray.png differ
diff --git a/img/clothes/upper/ballgown/full_gray.png b/img/clothes/upper/ballgown/full_gray.png
index d39b871291eac479ea4ab141979f7d8eee60b18a..71abdc04e314f551a7f6e1e6589634efab9f07b1 100644
Binary files a/img/clothes/upper/ballgown/full_gray.png and b/img/clothes/upper/ballgown/full_gray.png differ
diff --git a/img/clothes/upper/ballgown/tattered_gray.png b/img/clothes/upper/ballgown/tattered_gray.png
index ac1c4d2551a05a94a901c8c6035c72c4154a8346..336c114fcb1b5acba79be3c0386d7805c69a6d4b 100644
Binary files a/img/clothes/upper/ballgown/tattered_gray.png and b/img/clothes/upper/ballgown/tattered_gray.png differ
diff --git a/img/clothes/upper/ballgown/torn_gray.png b/img/clothes/upper/ballgown/torn_gray.png
index 5115beea35d3ecf0bca35964875deb1c7131082f..71e1905cb7a81c394b22952b5f9af2d8a42bf2ae 100644
Binary files a/img/clothes/upper/ballgown/torn_gray.png and b/img/clothes/upper/ballgown/torn_gray.png differ
diff --git a/img/clothes/upper/band tee/3_gray.png b/img/clothes/upper/band tee/3_gray.png
index 90e15acd9d0983fbbd93ca589507719d13db3f6f..148f9457862fa2674efe62fb08f49926bdc2448a 100644
Binary files a/img/clothes/upper/band tee/3_gray.png and b/img/clothes/upper/band tee/3_gray.png differ
diff --git a/img/clothes/upper/band tee/4_gray.png b/img/clothes/upper/band tee/4_gray.png
index 1826c6f6b8884cec336cc5ca407a1639803578a7..2729b605c4771e15cba8f5ef1dc9d658cc45df1e 100644
Binary files a/img/clothes/upper/band tee/4_gray.png and b/img/clothes/upper/band tee/4_gray.png differ
diff --git a/img/clothes/upper/band tee/5_gray.png b/img/clothes/upper/band tee/5_gray.png
index b5cfdc68e1fb0702b3471498470a14a7fc413a8b..76d541ef69a96648e22c7b5e0c0790590088dbc9 100644
Binary files a/img/clothes/upper/band tee/5_gray.png and b/img/clothes/upper/band tee/5_gray.png differ
diff --git a/img/clothes/upper/band tee/acc_frayed_gray.png b/img/clothes/upper/band tee/acc_frayed_gray.png
index 7195eb8d95ff66167f46cc226724ecc2050380fc..58a152513de9b8f0c4c8c43923e77291692cd677 100644
Binary files a/img/clothes/upper/band tee/acc_frayed_gray.png and b/img/clothes/upper/band tee/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/band tee/acc_full_gray.png b/img/clothes/upper/band tee/acc_full_gray.png
index df61b0a5f383bc153abeb33a29f2f8b8ab4586b7..5c64d430dd381b004f1a9437c1bc93311f28759c 100644
Binary files a/img/clothes/upper/band tee/acc_full_gray.png and b/img/clothes/upper/band tee/acc_full_gray.png differ
diff --git a/img/clothes/upper/band tee/acc_tattered_gray.png b/img/clothes/upper/band tee/acc_tattered_gray.png
index b1459118db066851ccfa742df7b527e29a95d2a1..6bd65e9b2ca2e37125baa70764548e1861a5ff97 100644
Binary files a/img/clothes/upper/band tee/acc_tattered_gray.png and b/img/clothes/upper/band tee/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/band tee/acc_torn_gray.png b/img/clothes/upper/band tee/acc_torn_gray.png
index cd58330481387c65aa874d72ef4f7153eff71c62..b50fa7b4576a3564f0f9a670ba1973fd70a322e1 100644
Binary files a/img/clothes/upper/band tee/acc_torn_gray.png and b/img/clothes/upper/band tee/acc_torn_gray.png differ
diff --git a/img/clothes/upper/band tee/frayed_gray.png b/img/clothes/upper/band tee/frayed_gray.png
index 151e8fa73d593dcb7069b910545d2f18e4dcd9af..f0249d87fa6a782e4d8e594326bae51196fe5771 100644
Binary files a/img/clothes/upper/band tee/frayed_gray.png and b/img/clothes/upper/band tee/frayed_gray.png differ
diff --git a/img/clothes/upper/band tee/full_gray.png b/img/clothes/upper/band tee/full_gray.png
index 0ba4876e4f255932db5d331678a4bcffff6218ea..7ddac554d3879539c12f3e2171d4a8f889498afc 100644
Binary files a/img/clothes/upper/band tee/full_gray.png and b/img/clothes/upper/band tee/full_gray.png differ
diff --git a/img/clothes/upper/band tee/hold_gray.png b/img/clothes/upper/band tee/hold_gray.png
index 97cb36d323987819f9d35edaac6083f93bea9c47..dffacdc9ace42fdc436f9ea5dfe0a08cf79cfe60 100644
Binary files a/img/clothes/upper/band tee/hold_gray.png and b/img/clothes/upper/band tee/hold_gray.png differ
diff --git a/img/clothes/upper/band tee/left_cover_gray.png b/img/clothes/upper/band tee/left_cover_gray.png
index 82d38e186da1f4c8e1dd217ca780c73da93f1e98..3a1d3d4d9ce5790c3e51dd92d9c36d598ee3d21e 100644
Binary files a/img/clothes/upper/band tee/left_cover_gray.png and b/img/clothes/upper/band tee/left_cover_gray.png differ
diff --git a/img/clothes/upper/band tee/left_gray.png b/img/clothes/upper/band tee/left_gray.png
index edc135b58920a73c10b20dd9d33535e5b0e42ded..8e7df2afa363cc8d91367098b63fb28784063ef2 100644
Binary files a/img/clothes/upper/band tee/left_gray.png and b/img/clothes/upper/band tee/left_gray.png differ
diff --git a/img/clothes/upper/band tee/right_cover_gray.png b/img/clothes/upper/band tee/right_cover_gray.png
index 7d7be1015633d916b783a190c0aecad52c71e3a5..b08380c0df7d490c7961675f7d7ddf511257bdea 100644
Binary files a/img/clothes/upper/band tee/right_cover_gray.png and b/img/clothes/upper/band tee/right_cover_gray.png differ
diff --git a/img/clothes/upper/band tee/right_gray.png b/img/clothes/upper/band tee/right_gray.png
index dcd253591edede20833bece7cbd87174ee7f9788..4f62cf575e983e1788fbc37f45df92817755c1e5 100644
Binary files a/img/clothes/upper/band tee/right_gray.png and b/img/clothes/upper/band tee/right_gray.png differ
diff --git a/img/clothes/upper/band tee/tattered_gray.png b/img/clothes/upper/band tee/tattered_gray.png
index 13e73c07ca2a3e843e1320d04f47781780bd11fc..75d0bac87a363cf4a8fec5cd8e9c1289c687d896 100644
Binary files a/img/clothes/upper/band tee/tattered_gray.png and b/img/clothes/upper/band tee/tattered_gray.png differ
diff --git a/img/clothes/upper/band tee/torn_gray.png b/img/clothes/upper/band tee/torn_gray.png
index 8d61e991090b001684998b526e1af2d5162c8087..6647b85089edabcd20a65ef2405ea71dd4b1c8a8 100644
Binary files a/img/clothes/upper/band tee/torn_gray.png and b/img/clothes/upper/band tee/torn_gray.png differ
diff --git a/img/clothes/upper/baseball/acc_gray.png b/img/clothes/upper/baseball/acc_gray.png
index aeb0f8cc9a6326216657dfdeadc31107cece0908..0d77cc5fe67df2ed7e65fa5aa6c23c9af8e9d4d8 100644
Binary files a/img/clothes/upper/baseball/acc_gray.png and b/img/clothes/upper/baseball/acc_gray.png differ
diff --git a/img/clothes/upper/baseball/frayed_gray.png b/img/clothes/upper/baseball/frayed_gray.png
index 52aa02ccea68423f6a3ec8115b31c7a80726b45f..86306d2944958c99d197840a7c6db13ef2f36d1f 100644
Binary files a/img/clothes/upper/baseball/frayed_gray.png and b/img/clothes/upper/baseball/frayed_gray.png differ
diff --git a/img/clothes/upper/baseball/full_gray.png b/img/clothes/upper/baseball/full_gray.png
index b3801dd801c94c64fd0ca0b24ecaa37fa8ef1181..c3b1110fe6a8107907b9e9e7ed555f046a214cfb 100644
Binary files a/img/clothes/upper/baseball/full_gray.png and b/img/clothes/upper/baseball/full_gray.png differ
diff --git a/img/clothes/upper/baseball/hold_gray.png b/img/clothes/upper/baseball/hold_gray.png
index d36aa00f5d122592edcc18ab2f82dea0f8ee2528..a32b71a1f538a2c32173db941227181872b02955 100644
Binary files a/img/clothes/upper/baseball/hold_gray.png and b/img/clothes/upper/baseball/hold_gray.png differ
diff --git a/img/clothes/upper/baseball/left_cover_gray.png b/img/clothes/upper/baseball/left_cover_gray.png
index 8d18dd8792f4be02f09846c41732048f14769de3..a3d3ae402134d2c210beb03ed9c9bf81259bb6ad 100644
Binary files a/img/clothes/upper/baseball/left_cover_gray.png and b/img/clothes/upper/baseball/left_cover_gray.png differ
diff --git a/img/clothes/upper/baseball/left_gray.png b/img/clothes/upper/baseball/left_gray.png
index 0453105f46914a98d59c96f241b3cccc20805d85..50f79be8a432a79bbf2d1b577228846f1b29e923 100644
Binary files a/img/clothes/upper/baseball/left_gray.png and b/img/clothes/upper/baseball/left_gray.png differ
diff --git a/img/clothes/upper/baseball/right_cover_gray.png b/img/clothes/upper/baseball/right_cover_gray.png
index 55eb108b28a94e2fb0937cf2ffc87e705ad04ea2..56e3dea2fef20b41a022ec709ce6bf4b7579e44f 100644
Binary files a/img/clothes/upper/baseball/right_cover_gray.png and b/img/clothes/upper/baseball/right_cover_gray.png differ
diff --git a/img/clothes/upper/baseball/right_gray.png b/img/clothes/upper/baseball/right_gray.png
index ae478c620965382cdcb9c2facba5b0a1436e0041..036198b931698c098a5e6105efa1d60a98e1bcab 100644
Binary files a/img/clothes/upper/baseball/right_gray.png and b/img/clothes/upper/baseball/right_gray.png differ
diff --git a/img/clothes/upper/baseball/tattered_gray.png b/img/clothes/upper/baseball/tattered_gray.png
index 62b4ef27c1efe7eacca5dfeb040d1c67ede909bf..d7a89b1b8d87c49f417cedcae371b131e2301c24 100644
Binary files a/img/clothes/upper/baseball/tattered_gray.png and b/img/clothes/upper/baseball/tattered_gray.png differ
diff --git a/img/clothes/upper/baseball/torn_gray.png b/img/clothes/upper/baseball/torn_gray.png
index a21de3bcdb8bbf859b16c8360d8cdab7d3ff7569..dbf44ec729ae9607c4596174783d08e650dfef89 100644
Binary files a/img/clothes/upper/baseball/torn_gray.png and b/img/clothes/upper/baseball/torn_gray.png differ
diff --git a/img/clothes/upper/bathrobe/1.png b/img/clothes/upper/bathrobe/1.png
index f0ecefa7e706861c7b0df95809387e182308f559..a58b164deb32b3d9b971761d8a564aaa332a6cb3 100644
Binary files a/img/clothes/upper/bathrobe/1.png and b/img/clothes/upper/bathrobe/1.png differ
diff --git a/img/clothes/upper/bathrobe/2.png b/img/clothes/upper/bathrobe/2.png
index 632d32f12952894e3ed496d5d71dbe84014ea4cc..9b091b3302946bdc61f8edbcd5ce48ce2f22098f 100644
Binary files a/img/clothes/upper/bathrobe/2.png and b/img/clothes/upper/bathrobe/2.png differ
diff --git a/img/clothes/upper/bathrobe/3.png b/img/clothes/upper/bathrobe/3.png
index bb7a63563a28eac27e2306b7d925ed1a36c3236d..bf7dd79e3a6f9d5e3af32dce7503478098a2aa9d 100644
Binary files a/img/clothes/upper/bathrobe/3.png and b/img/clothes/upper/bathrobe/3.png differ
diff --git a/img/clothes/upper/bathrobe/4.png b/img/clothes/upper/bathrobe/4.png
index 54fa9ae27aba78667e31818c432bee345eaa42e5..229f498780cd8e62d2d729544ce9aa807d78a61d 100644
Binary files a/img/clothes/upper/bathrobe/4.png and b/img/clothes/upper/bathrobe/4.png differ
diff --git a/img/clothes/upper/bathrobe/5.png b/img/clothes/upper/bathrobe/5.png
index 2bd22ee50996f8e1643dd4a3ee9ad8d9af8a5c81..258bbf5633b3eb78b329045e518747bdd69122f9 100644
Binary files a/img/clothes/upper/bathrobe/5.png and b/img/clothes/upper/bathrobe/5.png differ
diff --git a/img/clothes/upper/bathrobe/frayed.png b/img/clothes/upper/bathrobe/frayed.png
index c8bf1bd9dfb612e2db2873a3e29e1cf88c3527dc..c87d0bb933eb6232bb756fc34308fa49c454da3f 100644
Binary files a/img/clothes/upper/bathrobe/frayed.png and b/img/clothes/upper/bathrobe/frayed.png differ
diff --git a/img/clothes/upper/bathrobe/full.png b/img/clothes/upper/bathrobe/full.png
index 3a9bc7df61d8cc1f45ee03c23825ea5b1e580c14..565255a6de44e99db23977f8c1c449f518020020 100644
Binary files a/img/clothes/upper/bathrobe/full.png and b/img/clothes/upper/bathrobe/full.png differ
diff --git a/img/clothes/upper/bathrobe/hold.png b/img/clothes/upper/bathrobe/hold.png
index 5b528d23d6ab508b98d3e681179eb5af6c0e3a5b..f802e035dd0b95832815485ebed631dd4d5664e5 100644
Binary files a/img/clothes/upper/bathrobe/hold.png and b/img/clothes/upper/bathrobe/hold.png differ
diff --git a/img/clothes/upper/bathrobe/left.png b/img/clothes/upper/bathrobe/left.png
index 2433eb2f42c6acfd0ba87700cc8662675d1b1655..2cf8faded355a13931215a7f53a9aac339abda84 100644
Binary files a/img/clothes/upper/bathrobe/left.png and b/img/clothes/upper/bathrobe/left.png differ
diff --git a/img/clothes/upper/bathrobe/left_cover.png b/img/clothes/upper/bathrobe/left_cover.png
index 12ed3e88a4f7b0e8e5dfbb1b248df44b4e4b82fe..d8e2b4cf157de251312e36f6d2e67f06e5bce009 100644
Binary files a/img/clothes/upper/bathrobe/left_cover.png and b/img/clothes/upper/bathrobe/left_cover.png differ
diff --git a/img/clothes/upper/bathrobe/right.png b/img/clothes/upper/bathrobe/right.png
index 68ee58b9872d13780fa2eafc357de6200bf82ebc..88b312cd9533d87311d716997b51023755d23658 100644
Binary files a/img/clothes/upper/bathrobe/right.png and b/img/clothes/upper/bathrobe/right.png differ
diff --git a/img/clothes/upper/bathrobe/right_cover.png b/img/clothes/upper/bathrobe/right_cover.png
index 209d2ec47581ab1d01f15f6b1cc2272e5c44db3f..314e426f12b4523233c56f8ca75321cff0badfac 100644
Binary files a/img/clothes/upper/bathrobe/right_cover.png and b/img/clothes/upper/bathrobe/right_cover.png differ
diff --git a/img/clothes/upper/bathrobe/tattered.png b/img/clothes/upper/bathrobe/tattered.png
index ae9991def3cb6794cb0b21438cba762571de3682..9c7837cfaee5b3a6cda9fd5048b1fbaffb907bd9 100644
Binary files a/img/clothes/upper/bathrobe/tattered.png and b/img/clothes/upper/bathrobe/tattered.png differ
diff --git a/img/clothes/upper/bathrobe/torn.png b/img/clothes/upper/bathrobe/torn.png
index be2829b6ac5dad02e86086c926f7b0520eb45618..fc7dd33a3ca16741a7d8ef86ca554f6052af146f 100644
Binary files a/img/clothes/upper/bathrobe/torn.png and b/img/clothes/upper/bathrobe/torn.png differ
diff --git a/img/clothes/upper/beatnik/4.png b/img/clothes/upper/beatnik/4.png
index 6869f5b34b7815ed3f97faffeda4d698675c35c1..13de52a8827cc116b590b469bb38cab5174bb656 100644
Binary files a/img/clothes/upper/beatnik/4.png and b/img/clothes/upper/beatnik/4.png differ
diff --git a/img/clothes/upper/beatnik/5.png b/img/clothes/upper/beatnik/5.png
index 373cac082fb570aad75e7bb0f0fb5dd656362dab..35c0d4823ea57e2e778f66b9d084f6535be1b649 100644
Binary files a/img/clothes/upper/beatnik/5.png and b/img/clothes/upper/beatnik/5.png differ
diff --git a/img/clothes/upper/beatnik/6.png b/img/clothes/upper/beatnik/6.png
index 98dc80ee612d37088e8aa95eaa64843def53ce5e..35de4c9704d6cbd71bed9597f87394deb179b50f 100644
Binary files a/img/clothes/upper/beatnik/6.png and b/img/clothes/upper/beatnik/6.png differ
diff --git a/img/clothes/upper/beatnik/beatnik.png b/img/clothes/upper/beatnik/beatnik.png
deleted file mode 100644
index 3e69e857c49bdc892d62fbb3197b5cbddc265a1b..0000000000000000000000000000000000000000
Binary files a/img/clothes/upper/beatnik/beatnik.png and /dev/null differ
diff --git a/img/clothes/upper/beatnik/frayed.png b/img/clothes/upper/beatnik/frayed.png
index 743b7c2599f435fa0dbc09ac2b6dfbec557fefdb..7a635eda41bb5375227fffda4dca5736c2231a70 100644
Binary files a/img/clothes/upper/beatnik/frayed.png and b/img/clothes/upper/beatnik/frayed.png differ
diff --git a/img/clothes/upper/beatnik/full.png b/img/clothes/upper/beatnik/full.png
index f69c5f968ab133fa75bc308c8b9bee72f2f9157c..48f0f0633b3590564f45ce233caa4900a5c97f54 100644
Binary files a/img/clothes/upper/beatnik/full.png and b/img/clothes/upper/beatnik/full.png differ
diff --git a/img/clothes/upper/beatnik/hold.png b/img/clothes/upper/beatnik/hold.png
index 6916c16b76a06cc46132e2575f2740bfba7c0661..6394f5135d698368e9ea08b7b3cfd50cdaaf5ffa 100644
Binary files a/img/clothes/upper/beatnik/hold.png and b/img/clothes/upper/beatnik/hold.png differ
diff --git a/img/clothes/upper/beatnik/left.png b/img/clothes/upper/beatnik/left.png
index e7d3648d1ba9f8946a0a6062ccef24a13a689d82..5bfaabf38d7890fc96b798aff885ea2eb3c4178f 100644
Binary files a/img/clothes/upper/beatnik/left.png and b/img/clothes/upper/beatnik/left.png differ
diff --git a/img/clothes/upper/beatnik/left_cover.png b/img/clothes/upper/beatnik/left_cover.png
index f5274c1aa2b59977e36685c439593f33875f900e..b10bd2db14dc66d0f5861f89b4b661f7f9143b5f 100644
Binary files a/img/clothes/upper/beatnik/left_cover.png and b/img/clothes/upper/beatnik/left_cover.png differ
diff --git a/img/clothes/upper/beatnik/right.png b/img/clothes/upper/beatnik/right.png
index ba12859fdb6ba6c9e5b765f6dd570c7766959495..6fb759961c79ba9099415d4811f383e82ff73920 100644
Binary files a/img/clothes/upper/beatnik/right.png and b/img/clothes/upper/beatnik/right.png differ
diff --git a/img/clothes/upper/beatnik/right_cover.png b/img/clothes/upper/beatnik/right_cover.png
index bf4705a4253a4fa14b6eaf6409f0143b813e1799..0ff63ab2991e8826642d204508b7352091376fcf 100644
Binary files a/img/clothes/upper/beatnik/right_cover.png and b/img/clothes/upper/beatnik/right_cover.png differ
diff --git a/img/clothes/upper/beatnik/tattered.png b/img/clothes/upper/beatnik/tattered.png
index 9f15ea1814b7a9c7c6ae3e585ddcf06a2cdce1ae..5a064a11fab91e0d6f111a2cbc1e5c2ef5de5359 100644
Binary files a/img/clothes/upper/beatnik/tattered.png and b/img/clothes/upper/beatnik/tattered.png differ
diff --git a/img/clothes/upper/beatnik/torn.png b/img/clothes/upper/beatnik/torn.png
index 99fb97d8603dab20fbca1446e62d6612f1ba5d9c..c2303b0e0d563ac371dd019442bcfa96a2689420 100644
Binary files a/img/clothes/upper/beatnik/torn.png and b/img/clothes/upper/beatnik/torn.png differ
diff --git a/img/clothes/upper/belly/0_acc.png b/img/clothes/upper/belly/0_acc.png
index bd17b0e0cdc0c992c33367cda69885d1068b7ab5..8513191194d04d73f622dff3aa86f4c518040c82 100644
Binary files a/img/clothes/upper/belly/0_acc.png and b/img/clothes/upper/belly/0_acc.png differ
diff --git a/img/clothes/upper/belly/0_gray.png b/img/clothes/upper/belly/0_gray.png
index 5ab1a0cb1b8cca34f6f4918a441afc6bab66c032..3cfa812a0526bb4ae1e6afdd3a23ec866731c949 100644
Binary files a/img/clothes/upper/belly/0_gray.png and b/img/clothes/upper/belly/0_gray.png differ
diff --git a/img/clothes/upper/belly/3_acc.png b/img/clothes/upper/belly/3_acc.png
index 1ec7c560c59311622bdd5f030faf951f8b65e9db..83acdac5be1bc473346f9274d405431c3e117531 100644
Binary files a/img/clothes/upper/belly/3_acc.png and b/img/clothes/upper/belly/3_acc.png differ
diff --git a/img/clothes/upper/belly/3_gray.png b/img/clothes/upper/belly/3_gray.png
index b7683881be410b9de94cf580aec05d8c1047e1b5..86e3c860c063a885bfcda66a9707572c4238de83 100644
Binary files a/img/clothes/upper/belly/3_gray.png and b/img/clothes/upper/belly/3_gray.png differ
diff --git a/img/clothes/upper/belly/4_acc.png b/img/clothes/upper/belly/4_acc.png
index ed4e5346579da145bc02fcfcac4830e60ce61811..4ac3edc838377cc520ceebbbe0a14258a8e89069 100644
Binary files a/img/clothes/upper/belly/4_acc.png and b/img/clothes/upper/belly/4_acc.png differ
diff --git a/img/clothes/upper/belly/4_gray.png b/img/clothes/upper/belly/4_gray.png
index b7683881be410b9de94cf580aec05d8c1047e1b5..86e3c860c063a885bfcda66a9707572c4238de83 100644
Binary files a/img/clothes/upper/belly/4_gray.png and b/img/clothes/upper/belly/4_gray.png differ
diff --git a/img/clothes/upper/belly/5_acc.png b/img/clothes/upper/belly/5_acc.png
index 32a190b079503165c2266ac5ad757469015cebac..1889320907fc1a239a7774b1420d654b0dd65b51 100644
Binary files a/img/clothes/upper/belly/5_acc.png and b/img/clothes/upper/belly/5_acc.png differ
diff --git a/img/clothes/upper/belly/5_gray.png b/img/clothes/upper/belly/5_gray.png
index aa373972bc32ddf1f9f8c9c6946462239aad3dc0..1ac9f470e6c4efaaca99b9ad4b0d2b1b69d6d801 100644
Binary files a/img/clothes/upper/belly/5_gray.png and b/img/clothes/upper/belly/5_gray.png differ
diff --git a/img/clothes/upper/belly/6_acc.png b/img/clothes/upper/belly/6_acc.png
index f113925dbe965585408dc06baa575568dd6d572e..cdee5a195b781a32ab3b5926682cb1b3890ae7bb 100644
Binary files a/img/clothes/upper/belly/6_acc.png and b/img/clothes/upper/belly/6_acc.png differ
diff --git a/img/clothes/upper/belly/6_gray.png b/img/clothes/upper/belly/6_gray.png
index 88a420b7fd52e342a6e24f6c80a0ca1932311c9e..245f5aac8469f45a05db7f01e2ac2f93b952398e 100644
Binary files a/img/clothes/upper/belly/6_gray.png and b/img/clothes/upper/belly/6_gray.png differ
diff --git a/img/clothes/upper/belly/hold_gray.png b/img/clothes/upper/belly/hold_gray.png
index 3e11eea68010a32afd2cf89c8634c5f2acb31742..8b52338bd9fdcde2d029e4b62abbb98e27c6e20e 100644
Binary files a/img/clothes/upper/belly/hold_gray.png and b/img/clothes/upper/belly/hold_gray.png differ
diff --git a/img/clothes/upper/belly/left_cover_gray.png b/img/clothes/upper/belly/left_cover_gray.png
index dcc17d49fb4794b4abd59f97e5fab8863fce0154..d4090bc732d0e97d54100565851560b80a8008c1 100644
Binary files a/img/clothes/upper/belly/left_cover_gray.png and b/img/clothes/upper/belly/left_cover_gray.png differ
diff --git a/img/clothes/upper/belly/left_gray.png b/img/clothes/upper/belly/left_gray.png
index dcc17d49fb4794b4abd59f97e5fab8863fce0154..d4090bc732d0e97d54100565851560b80a8008c1 100644
Binary files a/img/clothes/upper/belly/left_gray.png and b/img/clothes/upper/belly/left_gray.png differ
diff --git a/img/clothes/upper/belly/mask_frayed.png b/img/clothes/upper/belly/mask_frayed.png
index 052f5010950702d0ef3b22894329e6a2d96290a5..3ff1953969e44f1214605b548684e67d22ac4546 100644
Binary files a/img/clothes/upper/belly/mask_frayed.png and b/img/clothes/upper/belly/mask_frayed.png differ
diff --git a/img/clothes/upper/belly/mask_full.png b/img/clothes/upper/belly/mask_full.png
index 8341271e7f5b445e292d60c9f77cbe50597c39f2..60d180536a8981633cf695bcd23e69f126159012 100644
Binary files a/img/clothes/upper/belly/mask_full.png and b/img/clothes/upper/belly/mask_full.png differ
diff --git a/img/clothes/upper/belly/mask_tattered.png b/img/clothes/upper/belly/mask_tattered.png
index 15d24a644e841cd6e375d3e9acf56deb0846bd3a..88dbba1e021cb5ffa5829c1f9fc6a443f38de651 100644
Binary files a/img/clothes/upper/belly/mask_tattered.png and b/img/clothes/upper/belly/mask_tattered.png differ
diff --git a/img/clothes/upper/belly/mask_torn.png b/img/clothes/upper/belly/mask_torn.png
index cd2bb969f2423823d230407663c18da4464dd911..04d203b5d342f2989e021a4a36350b76866c51ca 100644
Binary files a/img/clothes/upper/belly/mask_torn.png and b/img/clothes/upper/belly/mask_torn.png differ
diff --git a/img/clothes/upper/belly/right_cover_gray.png b/img/clothes/upper/belly/right_cover_gray.png
index 1725cc70094d79f8d004372936cf46f44620e1bd..68fd7dab04d7e5f2ed4f85419b3245a097894601 100644
Binary files a/img/clothes/upper/belly/right_cover_gray.png and b/img/clothes/upper/belly/right_cover_gray.png differ
diff --git a/img/clothes/upper/belly/right_gray.png b/img/clothes/upper/belly/right_gray.png
index 083e1ec94b88549a0a7dc76b56bad05227b6faba..6d756da1b6c77daa1b79d7b93da1265fbf46184f 100644
Binary files a/img/clothes/upper/belly/right_gray.png and b/img/clothes/upper/belly/right_gray.png differ
diff --git a/img/clothes/upper/blackleather/4_alt_gray.png b/img/clothes/upper/blackleather/4_alt_gray.png
index 4ce7af4e53ba82d547812510921afd4a46e947ae..7589c1972c7597d86adb2e7bc48ca5d5a77ded24 100644
Binary files a/img/clothes/upper/blackleather/4_alt_gray.png and b/img/clothes/upper/blackleather/4_alt_gray.png differ
diff --git a/img/clothes/upper/blackleather/4_gray.png b/img/clothes/upper/blackleather/4_gray.png
index 16c9dd15a51a3619cd60d85e4b04c2debb4a8065..4cafefe78e66353f2a22836f18f93d2369467414 100644
Binary files a/img/clothes/upper/blackleather/4_gray.png and b/img/clothes/upper/blackleather/4_gray.png differ
diff --git a/img/clothes/upper/blackleather/5_alt_gray.png b/img/clothes/upper/blackleather/5_alt_gray.png
index a25b01164b82ec3ebc47e12e2dbffaa4c1d25563..2b1353daa7c398ff0e95db073e48a2373d00450c 100644
Binary files a/img/clothes/upper/blackleather/5_alt_gray.png and b/img/clothes/upper/blackleather/5_alt_gray.png differ
diff --git a/img/clothes/upper/blackleather/5_gray.png b/img/clothes/upper/blackleather/5_gray.png
index 576a28238acadf55fd9681f7094de6560144a767..7eaf476865d2e0472673deaad71ff022f0fb92ff 100644
Binary files a/img/clothes/upper/blackleather/5_gray.png and b/img/clothes/upper/blackleather/5_gray.png differ
diff --git a/img/clothes/upper/blackleather/acc_frayed_alt_gray.png b/img/clothes/upper/blackleather/acc_frayed_alt_gray.png
index faf0a330166c1459aa2ccc4b65a36ab7ab0e32ec..3b079d671f32d9431da7ed7e0a5f4fe10b2610b7 100644
Binary files a/img/clothes/upper/blackleather/acc_frayed_alt_gray.png and b/img/clothes/upper/blackleather/acc_frayed_alt_gray.png differ
diff --git a/img/clothes/upper/blackleather/acc_frayed_gray.png b/img/clothes/upper/blackleather/acc_frayed_gray.png
index 3c81b1d36f4c3f4e3466628ab8e80e8b4891ef31..08ab9bd4b813c63e9204f1ddcd88a1a3cfc0f39c 100644
Binary files a/img/clothes/upper/blackleather/acc_frayed_gray.png and b/img/clothes/upper/blackleather/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/blackleather/acc_full_alt_gray.png b/img/clothes/upper/blackleather/acc_full_alt_gray.png
index faf0a330166c1459aa2ccc4b65a36ab7ab0e32ec..3b079d671f32d9431da7ed7e0a5f4fe10b2610b7 100644
Binary files a/img/clothes/upper/blackleather/acc_full_alt_gray.png and b/img/clothes/upper/blackleather/acc_full_alt_gray.png differ
diff --git a/img/clothes/upper/blackleather/acc_full_gray.png b/img/clothes/upper/blackleather/acc_full_gray.png
index 3c81b1d36f4c3f4e3466628ab8e80e8b4891ef31..08ab9bd4b813c63e9204f1ddcd88a1a3cfc0f39c 100644
Binary files a/img/clothes/upper/blackleather/acc_full_gray.png and b/img/clothes/upper/blackleather/acc_full_gray.png differ
diff --git a/img/clothes/upper/blackleather/acc_tattered_alt_gray.png b/img/clothes/upper/blackleather/acc_tattered_alt_gray.png
index b19d94fdad2566b8751acc8f1f4152f8616c30bc..7d8558f0c73650615447e115490c0a77555a3f1b 100644
Binary files a/img/clothes/upper/blackleather/acc_tattered_alt_gray.png and b/img/clothes/upper/blackleather/acc_tattered_alt_gray.png differ
diff --git a/img/clothes/upper/blackleather/acc_tattered_gray.png b/img/clothes/upper/blackleather/acc_tattered_gray.png
index 9c7733fc66633c089a58083806be13345458ef97..541f411c5b2da06a142095af286636c36a28300a 100644
Binary files a/img/clothes/upper/blackleather/acc_tattered_gray.png and b/img/clothes/upper/blackleather/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/blackleather/acc_torn_alt_gray.png b/img/clothes/upper/blackleather/acc_torn_alt_gray.png
index 35855a3eb031bf838b5ad166264d5901d51f3e50..aaf8b7b685866a82767dbf1cbdc2fde66ba46e5e 100644
Binary files a/img/clothes/upper/blackleather/acc_torn_alt_gray.png and b/img/clothes/upper/blackleather/acc_torn_alt_gray.png differ
diff --git a/img/clothes/upper/blackleather/acc_torn_gray.png b/img/clothes/upper/blackleather/acc_torn_gray.png
index 5285e873964c73947ed3bd42873ce4443669a961..d83f2b7dcbe2f0c35cfbb191dc705755ab56ae41 100644
Binary files a/img/clothes/upper/blackleather/acc_torn_gray.png and b/img/clothes/upper/blackleather/acc_torn_gray.png differ
diff --git a/img/clothes/upper/blackleather/frayed_alt_gray.png b/img/clothes/upper/blackleather/frayed_alt_gray.png
index 8b538b58e187eeeec64787f61c695abf66d3b8b1..74f6d65452f89a6b73fe6b909c8d2851e3ff7168 100644
Binary files a/img/clothes/upper/blackleather/frayed_alt_gray.png and b/img/clothes/upper/blackleather/frayed_alt_gray.png differ
diff --git a/img/clothes/upper/blackleather/frayed_gray.png b/img/clothes/upper/blackleather/frayed_gray.png
index e3775a8b3b76164b1cf0e868a7535a7f7b22632c..cdbef6de9092d703c10fe0802ee06bc543c8c369 100644
Binary files a/img/clothes/upper/blackleather/frayed_gray.png and b/img/clothes/upper/blackleather/frayed_gray.png differ
diff --git a/img/clothes/upper/blackleather/full_alt_gray.png b/img/clothes/upper/blackleather/full_alt_gray.png
index 2e2ff25ae1cd100d336db31784a363f38ed0616d..9093eb31a59b5cf6b207994d1ce97447045002f6 100644
Binary files a/img/clothes/upper/blackleather/full_alt_gray.png and b/img/clothes/upper/blackleather/full_alt_gray.png differ
diff --git a/img/clothes/upper/blackleather/full_gray.png b/img/clothes/upper/blackleather/full_gray.png
index a8bd996a43972dae93c869e5ed176866631003de..a0406fafbf18afab079fc310701b1960d24568b2 100644
Binary files a/img/clothes/upper/blackleather/full_gray.png and b/img/clothes/upper/blackleather/full_gray.png differ
diff --git a/img/clothes/upper/blackleather/hold_gray.png b/img/clothes/upper/blackleather/hold_gray.png
index c7407eb25c8150f1c8d5cdf42ee41ed67925a08d..4df949b08d7e3335b2d7c1b77825f742be8d26db 100644
Binary files a/img/clothes/upper/blackleather/hold_gray.png and b/img/clothes/upper/blackleather/hold_gray.png differ
diff --git a/img/clothes/upper/blackleather/left_cover_gray.png b/img/clothes/upper/blackleather/left_cover_gray.png
index 73b694d52a38dafbe689613a6d5fa3f6009098e4..8b16b885a02393947534f67640396c40a411ceaf 100644
Binary files a/img/clothes/upper/blackleather/left_cover_gray.png and b/img/clothes/upper/blackleather/left_cover_gray.png differ
diff --git a/img/clothes/upper/blackleather/left_gray.png b/img/clothes/upper/blackleather/left_gray.png
index 472f8494cddb683c19024114d0bc87c7f5ce1f5c..e5b0e44bfc297414bb233010aa1527184346fa94 100644
Binary files a/img/clothes/upper/blackleather/left_gray.png and b/img/clothes/upper/blackleather/left_gray.png differ
diff --git a/img/clothes/upper/blackleather/right_cover_gray.png b/img/clothes/upper/blackleather/right_cover_gray.png
index 9d43af41f26c6219a348de091bed3af989f491c1..8372f48b6c913bde0d0280b3c8e7dd1086810d4a 100644
Binary files a/img/clothes/upper/blackleather/right_cover_gray.png and b/img/clothes/upper/blackleather/right_cover_gray.png differ
diff --git a/img/clothes/upper/blackleather/right_gray.png b/img/clothes/upper/blackleather/right_gray.png
index 4daa8822590fe75fa4f2d75d6e84e66b4614d8f2..6cd9d030aa8ec31b66ecf62c244acc24d2987413 100644
Binary files a/img/clothes/upper/blackleather/right_gray.png and b/img/clothes/upper/blackleather/right_gray.png differ
diff --git a/img/clothes/upper/blackleather/tattered_alt_gray.png b/img/clothes/upper/blackleather/tattered_alt_gray.png
index ec5588b7ca36d664110b6689437bf241e2f8ce5d..959c5ddb62616bb5a1f8869c15e5ba9884611ce3 100644
Binary files a/img/clothes/upper/blackleather/tattered_alt_gray.png and b/img/clothes/upper/blackleather/tattered_alt_gray.png differ
diff --git a/img/clothes/upper/blackleather/tattered_gray.png b/img/clothes/upper/blackleather/tattered_gray.png
index 90102d8db4d301a49e2c41ade1a330c881b15dd7..88a73a91650bc19f8e2341e3518d4fbab2c53701 100644
Binary files a/img/clothes/upper/blackleather/tattered_gray.png and b/img/clothes/upper/blackleather/tattered_gray.png differ
diff --git a/img/clothes/upper/blackleather/torn_alt_gray.png b/img/clothes/upper/blackleather/torn_alt_gray.png
index 181b1afec769d6741171561b52a4d81a9076eb80..309a808f7602474635feb65466ef9714f33f3358 100644
Binary files a/img/clothes/upper/blackleather/torn_alt_gray.png and b/img/clothes/upper/blackleather/torn_alt_gray.png differ
diff --git a/img/clothes/upper/blackleather/torn_gray.png b/img/clothes/upper/blackleather/torn_gray.png
index b46232283a5263e7fd2da4698d4adbcf3d660175..ea12a5701654a763320ddc03c87f251370db2ec9 100644
Binary files a/img/clothes/upper/blackleather/torn_gray.png and b/img/clothes/upper/blackleather/torn_gray.png differ
diff --git a/img/clothes/upper/blazershirt/1_acc_gray.png b/img/clothes/upper/blazershirt/1_acc_gray.png
index a8bab0d406587db87840aee93215e2f1a55aa4b2..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/blazershirt/1_acc_gray.png and b/img/clothes/upper/blazershirt/1_acc_gray.png differ
diff --git a/img/clothes/upper/blazershirt/1_gray.png b/img/clothes/upper/blazershirt/1_gray.png
index 995796d8e24f62ec2e3a0587c43ee07ede2de534..25a2639e5e0723ae78a642e1ea689d32e8b726a5 100644
Binary files a/img/clothes/upper/blazershirt/1_gray.png and b/img/clothes/upper/blazershirt/1_gray.png differ
diff --git a/img/clothes/upper/blazershirt/2_acc_gray.png b/img/clothes/upper/blazershirt/2_acc_gray.png
index a8bab0d406587db87840aee93215e2f1a55aa4b2..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/blazershirt/2_acc_gray.png and b/img/clothes/upper/blazershirt/2_acc_gray.png differ
diff --git a/img/clothes/upper/blazershirt/2_gray.png b/img/clothes/upper/blazershirt/2_gray.png
index d72ab87d1815f31092b533a8072e5b612c681cbe..8551a2bafbed8671b3f089c780bfdbc2889d6ac2 100644
Binary files a/img/clothes/upper/blazershirt/2_gray.png and b/img/clothes/upper/blazershirt/2_gray.png differ
diff --git a/img/clothes/upper/blazershirt/3_acc_gray.png b/img/clothes/upper/blazershirt/3_acc_gray.png
index 268298c97a385c18c4b5b32ba75a15fa2b2a6423..c8437169c11a5c00a571a608e429d47915db02e5 100644
Binary files a/img/clothes/upper/blazershirt/3_acc_gray.png and b/img/clothes/upper/blazershirt/3_acc_gray.png differ
diff --git a/img/clothes/upper/blazershirt/3_gray.png b/img/clothes/upper/blazershirt/3_gray.png
index 0421c450cf9df8ffa29871376d9f49e3405f6136..84e73b23bf0b09283430f1e45dd283159d23d57d 100644
Binary files a/img/clothes/upper/blazershirt/3_gray.png and b/img/clothes/upper/blazershirt/3_gray.png differ
diff --git a/img/clothes/upper/blazershirt/4_acc_gray.png b/img/clothes/upper/blazershirt/4_acc_gray.png
index 7bb31a02f91a02a271d0d3d10866910d14c1374d..e89307cc545ec2dfc41ec40614df0de9fc6d0cae 100644
Binary files a/img/clothes/upper/blazershirt/4_acc_gray.png and b/img/clothes/upper/blazershirt/4_acc_gray.png differ
diff --git a/img/clothes/upper/blazershirt/4_gray.png b/img/clothes/upper/blazershirt/4_gray.png
index b525b2371b5e44e8102ad20e3522262dd2d7c654..ca9cca5a0b15ff457fc5af8aaf86906b140b5da6 100644
Binary files a/img/clothes/upper/blazershirt/4_gray.png and b/img/clothes/upper/blazershirt/4_gray.png differ
diff --git a/img/clothes/upper/blazershirt/5_acc_gray.png b/img/clothes/upper/blazershirt/5_acc_gray.png
index 9c94ded4a3b3902c56676a20fe5cb7ce91fc7093..d0db5d32615b56c8d437c6076540d7506b409cb3 100644
Binary files a/img/clothes/upper/blazershirt/5_acc_gray.png and b/img/clothes/upper/blazershirt/5_acc_gray.png differ
diff --git a/img/clothes/upper/blazershirt/5_gray.png b/img/clothes/upper/blazershirt/5_gray.png
index 821d5e07553e2cdfb664d79c4467cdfd14f1ab31..ca627d9a8a96953f103f90f5636f44a613162d53 100644
Binary files a/img/clothes/upper/blazershirt/5_gray.png and b/img/clothes/upper/blazershirt/5_gray.png differ
diff --git a/img/clothes/upper/blazershirt/acc_frayed_alt_gray.png b/img/clothes/upper/blazershirt/acc_frayed_alt_gray.png
index c97600a91a011d6478d61849e6421265c05ee329..4b3e162fd07006b521b0ffaf238a5dabc8900381 100644
Binary files a/img/clothes/upper/blazershirt/acc_frayed_alt_gray.png and b/img/clothes/upper/blazershirt/acc_frayed_alt_gray.png differ
diff --git a/img/clothes/upper/blazershirt/acc_frayed_gray.png b/img/clothes/upper/blazershirt/acc_frayed_gray.png
index 8a075a214b1beced7e581d3ac038ecfb8bb05a67..af8828601b1baf29b4bd83930a435891b65e0aa4 100644
Binary files a/img/clothes/upper/blazershirt/acc_frayed_gray.png and b/img/clothes/upper/blazershirt/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/blazershirt/acc_full_alt_gray.png b/img/clothes/upper/blazershirt/acc_full_alt_gray.png
index 95e587e44104a28a6677794daf900a4e6d973945..ea64bf2b69cecc70da7816acf4636a600669d9db 100644
Binary files a/img/clothes/upper/blazershirt/acc_full_alt_gray.png and b/img/clothes/upper/blazershirt/acc_full_alt_gray.png differ
diff --git a/img/clothes/upper/blazershirt/acc_full_gray.png b/img/clothes/upper/blazershirt/acc_full_gray.png
index 44d300fd3ea79db5eef7eca09e54436f3d750004..941cbed1b0054c58ede70c040228f9a007b311aa 100644
Binary files a/img/clothes/upper/blazershirt/acc_full_gray.png and b/img/clothes/upper/blazershirt/acc_full_gray.png differ
diff --git a/img/clothes/upper/blazershirt/acc_tattered_alt_gray.png b/img/clothes/upper/blazershirt/acc_tattered_alt_gray.png
index ac226ab610b0d31fbbeb8e9eccdf222ecae95fad..ef745cca1d6804d0d0c34283b9f4e09586f882f0 100644
Binary files a/img/clothes/upper/blazershirt/acc_tattered_alt_gray.png and b/img/clothes/upper/blazershirt/acc_tattered_alt_gray.png differ
diff --git a/img/clothes/upper/blazershirt/acc_tattered_gray.png b/img/clothes/upper/blazershirt/acc_tattered_gray.png
index cb42230800627907491d7a77041de73277013dc7..6f0655750eef25448485526b201b1afa38e977fd 100644
Binary files a/img/clothes/upper/blazershirt/acc_tattered_gray.png and b/img/clothes/upper/blazershirt/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/blazershirt/acc_torn_alt_gray.png b/img/clothes/upper/blazershirt/acc_torn_alt_gray.png
index 76fc31d87b1df5b53d240731871830e72b42a990..4366f2dc37144677f943afeed808435f6ab1b412 100644
Binary files a/img/clothes/upper/blazershirt/acc_torn_alt_gray.png and b/img/clothes/upper/blazershirt/acc_torn_alt_gray.png differ
diff --git a/img/clothes/upper/blazershirt/acc_torn_gray.png b/img/clothes/upper/blazershirt/acc_torn_gray.png
index 5a2df56552ce8b76020d179a894f4794d3850e77..023e3f8b434b5ded186b132d2f1d24441073d259 100644
Binary files a/img/clothes/upper/blazershirt/acc_torn_gray.png and b/img/clothes/upper/blazershirt/acc_torn_gray.png differ
diff --git a/img/clothes/upper/blazershirt/frayed_gray.png b/img/clothes/upper/blazershirt/frayed_gray.png
index 25e053c68c9dd8f629fb7ff61f6aa2f43bcc1dec..a032ebbd8d880f6f0055a55ed17a222b742c25ca 100644
Binary files a/img/clothes/upper/blazershirt/frayed_gray.png and b/img/clothes/upper/blazershirt/frayed_gray.png differ
diff --git a/img/clothes/upper/blazershirt/full_gray.png b/img/clothes/upper/blazershirt/full_gray.png
index bdea8f4dbf0f57734e246c8fe629177c325535e7..e97ee29dad4cc60910c8b5f61250f304a2b1c060 100644
Binary files a/img/clothes/upper/blazershirt/full_gray.png and b/img/clothes/upper/blazershirt/full_gray.png differ
diff --git a/img/clothes/upper/blazershirt/hold_gray.png b/img/clothes/upper/blazershirt/hold_gray.png
index e27bbb6e33f6bfa1660f1adb8a4a329e59b10625..c0d69d7d7f7226005a104f3442ab17268df2e5c9 100644
Binary files a/img/clothes/upper/blazershirt/hold_gray.png and b/img/clothes/upper/blazershirt/hold_gray.png differ
diff --git a/img/clothes/upper/blazershirt/left_acc_gray.png b/img/clothes/upper/blazershirt/left_acc_gray.png
index 7917e9b837b16c7f1444c80f87cdc3e75d091165..eaa4a468455f01f3e93032951db804ebdd0462f1 100644
Binary files a/img/clothes/upper/blazershirt/left_acc_gray.png and b/img/clothes/upper/blazershirt/left_acc_gray.png differ
diff --git a/img/clothes/upper/blazershirt/left_cover_acc_gray.png b/img/clothes/upper/blazershirt/left_cover_acc_gray.png
index 5828384a1ef66f45ad93aab3b320316348fd583e..b5d7e74f5bfaf7bb63c85baea9f11c96a8f58ddc 100644
Binary files a/img/clothes/upper/blazershirt/left_cover_acc_gray.png and b/img/clothes/upper/blazershirt/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/blazershirt/left_cover_gray.png b/img/clothes/upper/blazershirt/left_cover_gray.png
index bdc02d86a19df66e6e37c0ad5f715f444a97bc6b..45589f6dcfca3a81ef6caa28e184ae0f59e1efdd 100644
Binary files a/img/clothes/upper/blazershirt/left_cover_gray.png and b/img/clothes/upper/blazershirt/left_cover_gray.png differ
diff --git a/img/clothes/upper/blazershirt/left_gray.png b/img/clothes/upper/blazershirt/left_gray.png
index 809032c6cda8c50c08f127049ea2bf75f35c64f6..f2486af0b1e575e58186ca7424822666ade28431 100644
Binary files a/img/clothes/upper/blazershirt/left_gray.png and b/img/clothes/upper/blazershirt/left_gray.png differ
diff --git a/img/clothes/upper/blazershirt/right_acc_gray.png b/img/clothes/upper/blazershirt/right_acc_gray.png
index ec976c01e3a56e59a4e9905be36e31b1d4c69ada..0ea67abae629f0b7672dd4a52c71df9bab76a247 100644
Binary files a/img/clothes/upper/blazershirt/right_acc_gray.png and b/img/clothes/upper/blazershirt/right_acc_gray.png differ
diff --git a/img/clothes/upper/blazershirt/right_cover_acc_gray.png b/img/clothes/upper/blazershirt/right_cover_acc_gray.png
index 71118bccb3257a0997f44d760c205ce513511c62..469bb9509adc407035aaca89d8d3f4c4c816f395 100644
Binary files a/img/clothes/upper/blazershirt/right_cover_acc_gray.png and b/img/clothes/upper/blazershirt/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/blazershirt/right_cover_gray.png b/img/clothes/upper/blazershirt/right_cover_gray.png
index 1cac6be8a0d65a8cc76a171a1148aad073bcea40..68e95774668c889103cfef5be8913cc1dd874bb4 100644
Binary files a/img/clothes/upper/blazershirt/right_cover_gray.png and b/img/clothes/upper/blazershirt/right_cover_gray.png differ
diff --git a/img/clothes/upper/blazershirt/right_gray.png b/img/clothes/upper/blazershirt/right_gray.png
index 2d0c5ed39fb16e91793d1c428ce15f8350336ee1..d230ccf67115ce779605e2fe03564e7a90d649ba 100644
Binary files a/img/clothes/upper/blazershirt/right_gray.png and b/img/clothes/upper/blazershirt/right_gray.png differ
diff --git a/img/clothes/upper/blazershirt/tattered_gray.png b/img/clothes/upper/blazershirt/tattered_gray.png
index 72c25dc0c965aa10d207757b72f9925b61da4663..72ac48139314b85aa9e92002644f200be5ef6b80 100644
Binary files a/img/clothes/upper/blazershirt/tattered_gray.png and b/img/clothes/upper/blazershirt/tattered_gray.png differ
diff --git a/img/clothes/upper/blazershirt/torn_gray.png b/img/clothes/upper/blazershirt/torn_gray.png
index be8c4104dd3ace5ed81bbf17b2083c12d1e84887..738e8a7105221c663882525009bed914b6822a22 100644
Binary files a/img/clothes/upper/blazershirt/torn_gray.png and b/img/clothes/upper/blazershirt/torn_gray.png differ
diff --git a/img/clothes/upper/blouse/0_gray.png b/img/clothes/upper/blouse/0_gray.png
index 999224006cbf8c1ce146c1329bb92d52d679238d..d88186a50874f2ffe2ccfa1cfdc243207a14480f 100644
Binary files a/img/clothes/upper/blouse/0_gray.png and b/img/clothes/upper/blouse/0_gray.png differ
diff --git a/img/clothes/upper/blouse/1_gray.png b/img/clothes/upper/blouse/1_gray.png
index 44ff80fddb071c297fab0d75c4149dc2baaf3d1a..57107ad526dff2123312962c8c19d66807dc7fc1 100644
Binary files a/img/clothes/upper/blouse/1_gray.png and b/img/clothes/upper/blouse/1_gray.png differ
diff --git a/img/clothes/upper/blouse/2_gray.png b/img/clothes/upper/blouse/2_gray.png
index bf6a20bb8798cce02b996a4f145cb46445254530..9c01ae9f42d53964e5ba4b07fff5b026457cde46 100644
Binary files a/img/clothes/upper/blouse/2_gray.png and b/img/clothes/upper/blouse/2_gray.png differ
diff --git a/img/clothes/upper/blouse/3_gray.png b/img/clothes/upper/blouse/3_gray.png
index c2a34dc724883e7014a99a461bb971f195105b5a..c5bf242c5e46869315ee068a3dfacec4e3868255 100644
Binary files a/img/clothes/upper/blouse/3_gray.png and b/img/clothes/upper/blouse/3_gray.png differ
diff --git a/img/clothes/upper/blouse/4_gray.png b/img/clothes/upper/blouse/4_gray.png
index f3730f31b62cc785899edfdf16d55ca9d88c6316..eb66c59b868fe37f31ae546137caebab592ec088 100644
Binary files a/img/clothes/upper/blouse/4_gray.png and b/img/clothes/upper/blouse/4_gray.png differ
diff --git a/img/clothes/upper/blouse/frayed_gray.png b/img/clothes/upper/blouse/frayed_gray.png
index d63da30e67f0268ae004488d09e598d4f3aac484..419c62c083620656e5e751a70945490b5ad60901 100644
Binary files a/img/clothes/upper/blouse/frayed_gray.png and b/img/clothes/upper/blouse/frayed_gray.png differ
diff --git a/img/clothes/upper/blouse/full_gray.png b/img/clothes/upper/blouse/full_gray.png
index 577d57f1168594e1c6d150affaba0fbe10cba84a..366b2511d688eb9471771af4c831f90eb478cfd9 100644
Binary files a/img/clothes/upper/blouse/full_gray.png and b/img/clothes/upper/blouse/full_gray.png differ
diff --git a/img/clothes/upper/blouse/tattered_gray.png b/img/clothes/upper/blouse/tattered_gray.png
index fabaa1f1bb3139c7d324bb998588f4a148a2c044..4224e9971f7d3d1b62c668196d3c94d1f743c36d 100644
Binary files a/img/clothes/upper/blouse/tattered_gray.png and b/img/clothes/upper/blouse/tattered_gray.png differ
diff --git a/img/clothes/upper/blouse/torn_gray.png b/img/clothes/upper/blouse/torn_gray.png
index 2d87228810d33eae10f175bed0f8c51cee2f184a..c23688463d2b8f00c54e31c2aa45e85712565e7a 100644
Binary files a/img/clothes/upper/blouse/torn_gray.png and b/img/clothes/upper/blouse/torn_gray.png differ
diff --git a/img/clothes/upper/bodybase.png b/img/clothes/upper/bodybase.png
index f29bfe317e10063d00a46870001afa49539ab8d6..5cb6880e447d595b7ea4b431e50032979750ce70 100644
Binary files a/img/clothes/upper/bodybase.png and b/img/clothes/upper/bodybase.png differ
diff --git a/img/clothes/upper/boxy/2_gray.png b/img/clothes/upper/boxy/2_gray.png
index cb3604f35c7c82023b415632682ff197e87cc02c..0c6c223a8030787fcb0d97de357b6d48478b45cd 100644
Binary files a/img/clothes/upper/boxy/2_gray.png and b/img/clothes/upper/boxy/2_gray.png differ
diff --git a/img/clothes/upper/boxy/3_gray.png b/img/clothes/upper/boxy/3_gray.png
index 1ee0486e5c19eb56e7c898929a294b13cb84c1ee..8f04803ed792dcb18373fe512d8cfb3f51ecec06 100644
Binary files a/img/clothes/upper/boxy/3_gray.png and b/img/clothes/upper/boxy/3_gray.png differ
diff --git a/img/clothes/upper/boxy/4_gray.png b/img/clothes/upper/boxy/4_gray.png
index 7b18647a2f2ac27206b6a4b345020282ae4692f9..434fb8ae40b4774645e8fbf398cc422c5e014fc1 100644
Binary files a/img/clothes/upper/boxy/4_gray.png and b/img/clothes/upper/boxy/4_gray.png differ
diff --git a/img/clothes/upper/boxy/5_gray.png b/img/clothes/upper/boxy/5_gray.png
index aa17df63476be1f1a7dfc17050d5d28154291cbf..ae47c1a5bfaa85dea43c3ffbadb967088dbd0496 100644
Binary files a/img/clothes/upper/boxy/5_gray.png and b/img/clothes/upper/boxy/5_gray.png differ
diff --git a/img/clothes/upper/boxy/acc_frayed_gray.png b/img/clothes/upper/boxy/acc_frayed_gray.png
index b9c730f21c9c6b46ceae8067c3f4dd814e750348..af4085086102594318d97b89694d6d52960b91c9 100644
Binary files a/img/clothes/upper/boxy/acc_frayed_gray.png and b/img/clothes/upper/boxy/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/boxy/acc_full_gray.png b/img/clothes/upper/boxy/acc_full_gray.png
index 745f0b2ca7a3cec71e4beca5705ad7d4ac0ba138..2dc06fb07ff3a1c1ef713463a395536d4932bf85 100644
Binary files a/img/clothes/upper/boxy/acc_full_gray.png and b/img/clothes/upper/boxy/acc_full_gray.png differ
diff --git a/img/clothes/upper/boxy/acc_tattered_gray.png b/img/clothes/upper/boxy/acc_tattered_gray.png
index 62a13b962e3e7199cc59f49616716dd43549b9e7..8c85c7f2240cf58b7e39ddec92ad456e8eef6089 100644
Binary files a/img/clothes/upper/boxy/acc_tattered_gray.png and b/img/clothes/upper/boxy/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/boxy/acc_torn_gray.png b/img/clothes/upper/boxy/acc_torn_gray.png
index d9b65bef6dfd1568a0aba4dc7d7661aa4acf161f..8b2d959e75149e8355488cb76e8168c51aa80075 100644
Binary files a/img/clothes/upper/boxy/acc_torn_gray.png and b/img/clothes/upper/boxy/acc_torn_gray.png differ
diff --git a/img/clothes/upper/boxy/frayed_gray.png b/img/clothes/upper/boxy/frayed_gray.png
index adbecbd42519c30f80a3f69661c123cf23d07c43..e76507bdfc226df6f4e77bbad5fd388d18ae01f7 100644
Binary files a/img/clothes/upper/boxy/frayed_gray.png and b/img/clothes/upper/boxy/frayed_gray.png differ
diff --git a/img/clothes/upper/boxy/full_gray.png b/img/clothes/upper/boxy/full_gray.png
index ded92daca3b796ee2fe5828605ada573e9778a8b..fe68cb1a2ed96b59824e200c5b04a9729b7ca800 100644
Binary files a/img/clothes/upper/boxy/full_gray.png and b/img/clothes/upper/boxy/full_gray.png differ
diff --git a/img/clothes/upper/boxy/hold_gray.png b/img/clothes/upper/boxy/hold_gray.png
index 048694b3483eee497cb82aa6e3ed21b1adfa61a7..e3d87873a038bb366a7e0a976c091ac0bc442212 100644
Binary files a/img/clothes/upper/boxy/hold_gray.png and b/img/clothes/upper/boxy/hold_gray.png differ
diff --git a/img/clothes/upper/boxy/left_cover_gray.png b/img/clothes/upper/boxy/left_cover_gray.png
index aac4e2e08b169c0647efcb9616ebfd9b1d94612d..447c5e064ac0c27f24a722130b53450bdced47ff 100644
Binary files a/img/clothes/upper/boxy/left_cover_gray.png and b/img/clothes/upper/boxy/left_cover_gray.png differ
diff --git a/img/clothes/upper/boxy/left_gray.png b/img/clothes/upper/boxy/left_gray.png
index dd1f102488d72ac289545dea12f047b70d694c18..eba6c923ba54ed4306c03afc6fa4a321545c5105 100644
Binary files a/img/clothes/upper/boxy/left_gray.png and b/img/clothes/upper/boxy/left_gray.png differ
diff --git a/img/clothes/upper/boxy/right_cover_gray.png b/img/clothes/upper/boxy/right_cover_gray.png
index 9f08234258361b0a2dbbc1b82e2bf2f6413bc8ec..e5573338754e82e83d59136d0f87f177b7da8d02 100644
Binary files a/img/clothes/upper/boxy/right_cover_gray.png and b/img/clothes/upper/boxy/right_cover_gray.png differ
diff --git a/img/clothes/upper/boxy/right_gray.png b/img/clothes/upper/boxy/right_gray.png
index e98c89e37bd6f9e5b06b4c48143eb119725b7ffd..335f697dfcc7a357c7360a723c3de942a80bea69 100644
Binary files a/img/clothes/upper/boxy/right_gray.png and b/img/clothes/upper/boxy/right_gray.png differ
diff --git a/img/clothes/upper/boxy/tattered_gray.png b/img/clothes/upper/boxy/tattered_gray.png
index a3b7fff0180e60244ac744b38b29ea28b83b89c7..9cae2a2d5f851e698e76c41d6df186efad003d95 100644
Binary files a/img/clothes/upper/boxy/tattered_gray.png and b/img/clothes/upper/boxy/tattered_gray.png differ
diff --git a/img/clothes/upper/boxy/torn_gray.png b/img/clothes/upper/boxy/torn_gray.png
index ded92daca3b796ee2fe5828605ada573e9778a8b..fe68cb1a2ed96b59824e200c5b04a9729b7ca800 100644
Binary files a/img/clothes/upper/boxy/torn_gray.png and b/img/clothes/upper/boxy/torn_gray.png differ
diff --git a/img/clothes/upper/brownleather/4_alt_gray.png b/img/clothes/upper/brownleather/4_alt_gray.png
index 21c54482dfdd0198f409f8960d2801d85c5a6f93..c4342f98c28594ee78bb2e66a6d3e6342fc3fdbc 100644
Binary files a/img/clothes/upper/brownleather/4_alt_gray.png and b/img/clothes/upper/brownleather/4_alt_gray.png differ
diff --git a/img/clothes/upper/brownleather/4_gray.png b/img/clothes/upper/brownleather/4_gray.png
index 0d96396319e47ea43cafa6c941a41b5d4ece1295..2d81da6891703c40b74f36c1b043f6185cd383d4 100644
Binary files a/img/clothes/upper/brownleather/4_gray.png and b/img/clothes/upper/brownleather/4_gray.png differ
diff --git a/img/clothes/upper/brownleather/5_alt_gray.png b/img/clothes/upper/brownleather/5_alt_gray.png
index 270dfefe00874b4e6e090ea458a045c69f409d26..17186591e288c29a67b176500bbf8ada78a8e478 100644
Binary files a/img/clothes/upper/brownleather/5_alt_gray.png and b/img/clothes/upper/brownleather/5_alt_gray.png differ
diff --git a/img/clothes/upper/brownleather/5_gray.png b/img/clothes/upper/brownleather/5_gray.png
index 4f61ec2581f68962b2e27fa2fcf490aa3d8487e1..734a25dc297bc72527bc53228f42ea68486a61ce 100644
Binary files a/img/clothes/upper/brownleather/5_gray.png and b/img/clothes/upper/brownleather/5_gray.png differ
diff --git a/img/clothes/upper/brownleather/frayed_alt_gray.png b/img/clothes/upper/brownleather/frayed_alt_gray.png
index 3ec0b0df8dfc90d7b9a9788185d6d46ee2977262..e14ed3909403a60e7f3e449e8dbf937667826263 100644
Binary files a/img/clothes/upper/brownleather/frayed_alt_gray.png and b/img/clothes/upper/brownleather/frayed_alt_gray.png differ
diff --git a/img/clothes/upper/brownleather/frayed_gray.png b/img/clothes/upper/brownleather/frayed_gray.png
index 2bfc5a84bb57ff9dded3bbe2fbbe16813c28c187..7af1eb2803a09733a2394a5707fc5926e6eef16c 100644
Binary files a/img/clothes/upper/brownleather/frayed_gray.png and b/img/clothes/upper/brownleather/frayed_gray.png differ
diff --git a/img/clothes/upper/brownleather/full_alt_gray.png b/img/clothes/upper/brownleather/full_alt_gray.png
index 3ec0b0df8dfc90d7b9a9788185d6d46ee2977262..e14ed3909403a60e7f3e449e8dbf937667826263 100644
Binary files a/img/clothes/upper/brownleather/full_alt_gray.png and b/img/clothes/upper/brownleather/full_alt_gray.png differ
diff --git a/img/clothes/upper/brownleather/full_gray.png b/img/clothes/upper/brownleather/full_gray.png
index 8afe5bd65e10a9ad0db30d6158d48de1b5a2e909..0510b4b960797aa02af61b1a38203520e92f6a60 100644
Binary files a/img/clothes/upper/brownleather/full_gray.png and b/img/clothes/upper/brownleather/full_gray.png differ
diff --git a/img/clothes/upper/brownleather/hold_gray.png b/img/clothes/upper/brownleather/hold_gray.png
index f871cf1e79edbb81396210afeb9c682e5c9b651f..344f61fcf4fbd950dce1b7fb27691fa0423007ba 100644
Binary files a/img/clothes/upper/brownleather/hold_gray.png and b/img/clothes/upper/brownleather/hold_gray.png differ
diff --git a/img/clothes/upper/brownleather/left_cover_gray.png b/img/clothes/upper/brownleather/left_cover_gray.png
index 203cc7dc08c2d24f6ac26688e802c17b60d521cd..7232c1beccaf6e81353e8ac12595b3749c2d58e6 100644
Binary files a/img/clothes/upper/brownleather/left_cover_gray.png and b/img/clothes/upper/brownleather/left_cover_gray.png differ
diff --git a/img/clothes/upper/brownleather/left_gray.png b/img/clothes/upper/brownleather/left_gray.png
index cf6c9d26672f4fbd9cb0dfc3bc70bc636e7b5000..802d8938454ef04cd95789f8ce0ab27af7785b4a 100644
Binary files a/img/clothes/upper/brownleather/left_gray.png and b/img/clothes/upper/brownleather/left_gray.png differ
diff --git a/img/clothes/upper/brownleather/right_cover_gray.png b/img/clothes/upper/brownleather/right_cover_gray.png
index 281aa10daa8a04c3ef3f99c6286e1a10c9d92fb2..92c3027a235c1ea111fbae5fd4276c9bb4cc1c6c 100644
Binary files a/img/clothes/upper/brownleather/right_cover_gray.png and b/img/clothes/upper/brownleather/right_cover_gray.png differ
diff --git a/img/clothes/upper/brownleather/right_gray.png b/img/clothes/upper/brownleather/right_gray.png
index 096367a65a6ad0c920b05046185e9850a4d4b8e8..674c1ba8bb73996ee86d34d4ac6efec0984f78ee 100644
Binary files a/img/clothes/upper/brownleather/right_gray.png and b/img/clothes/upper/brownleather/right_gray.png differ
diff --git a/img/clothes/upper/brownleather/tattered_alt_gray.png b/img/clothes/upper/brownleather/tattered_alt_gray.png
index eea0c530a5299da0a38cc1b9e2bceae1a9fa3f45..9d527e346447f73ea67c3a46b2d964d7cf81a09e 100644
Binary files a/img/clothes/upper/brownleather/tattered_alt_gray.png and b/img/clothes/upper/brownleather/tattered_alt_gray.png differ
diff --git a/img/clothes/upper/brownleather/tattered_gray.png b/img/clothes/upper/brownleather/tattered_gray.png
index b6117c4d65125ed1ef686cd1516323bbc10dcd23..0c1be0f3e5121553f8764b86b826d4cdb90be5c5 100644
Binary files a/img/clothes/upper/brownleather/tattered_gray.png and b/img/clothes/upper/brownleather/tattered_gray.png differ
diff --git a/img/clothes/upper/brownleather/torn_alt_gray.png b/img/clothes/upper/brownleather/torn_alt_gray.png
index 9c8a89c62dde4204a4736c8c6ace5ab08d5e6893..be31e172ed866d40e2f95f16b3fab09329c669e1 100644
Binary files a/img/clothes/upper/brownleather/torn_alt_gray.png and b/img/clothes/upper/brownleather/torn_alt_gray.png differ
diff --git a/img/clothes/upper/brownleather/torn_gray.png b/img/clothes/upper/brownleather/torn_gray.png
index 1ccadda76b8d9f49581b3209871affa3153e35e6..5ae74e62a92cac80675999827b7f3efd2728ac8d 100644
Binary files a/img/clothes/upper/brownleather/torn_gray.png and b/img/clothes/upper/brownleather/torn_gray.png differ
diff --git a/img/clothes/upper/buttondown/1_gray.png b/img/clothes/upper/buttondown/1_gray.png
index d171412372ecc74be91fad8896717d39fa7a0bf5..3c98d78582ed469170617b0cbf34afe932a8a2c2 100644
Binary files a/img/clothes/upper/buttondown/1_gray.png and b/img/clothes/upper/buttondown/1_gray.png differ
diff --git a/img/clothes/upper/buttondown/2_gray.png b/img/clothes/upper/buttondown/2_gray.png
index 5ee2112eb933786f707da07e326520e1be5fef5f..5dac4b7aa266af95a3fd65368c4d9eca81e65b84 100644
Binary files a/img/clothes/upper/buttondown/2_gray.png and b/img/clothes/upper/buttondown/2_gray.png differ
diff --git a/img/clothes/upper/buttondown/3_gray.png b/img/clothes/upper/buttondown/3_gray.png
index 6bfc7c12827e6a483db6d5299afe1989c24b93ae..aafff68976da76ece272ec4dfdebd0c8c3cc3034 100644
Binary files a/img/clothes/upper/buttondown/3_gray.png and b/img/clothes/upper/buttondown/3_gray.png differ
diff --git a/img/clothes/upper/buttondown/4_gray.png b/img/clothes/upper/buttondown/4_gray.png
index 96ce81001f7efe3f6dd6f0e51899befa43ac0583..67e1f76fc5e05c0d095dfdb84529f32e99a01ddc 100644
Binary files a/img/clothes/upper/buttondown/4_gray.png and b/img/clothes/upper/buttondown/4_gray.png differ
diff --git a/img/clothes/upper/buttondown/5_gray.png b/img/clothes/upper/buttondown/5_gray.png
index 9a0f44d5bf894e6f67f89277aca43cdf83c5a281..f03ae750d45acad51d36e806b6491a113fc6d999 100644
Binary files a/img/clothes/upper/buttondown/5_gray.png and b/img/clothes/upper/buttondown/5_gray.png differ
diff --git a/img/clothes/upper/buttondown/frayed_gray.png b/img/clothes/upper/buttondown/frayed_gray.png
index 2f794887f93bd52777b6154884d7e1479d60d041..01cbbb9a0e0cc77ff6d5aa2d61f1c3c9f9960aab 100644
Binary files a/img/clothes/upper/buttondown/frayed_gray.png and b/img/clothes/upper/buttondown/frayed_gray.png differ
diff --git a/img/clothes/upper/buttondown/full_gray.png b/img/clothes/upper/buttondown/full_gray.png
index 605d284a7b0dd2a5cc64623eedc4409993daff6f..001f126df8c159c1bdc05b158204a5540255ac27 100644
Binary files a/img/clothes/upper/buttondown/full_gray.png and b/img/clothes/upper/buttondown/full_gray.png differ
diff --git a/img/clothes/upper/buttondown/hold_gray.png b/img/clothes/upper/buttondown/hold_gray.png
index e27bbb6e33f6bfa1660f1adb8a4a329e59b10625..c0d69d7d7f7226005a104f3442ab17268df2e5c9 100644
Binary files a/img/clothes/upper/buttondown/hold_gray.png and b/img/clothes/upper/buttondown/hold_gray.png differ
diff --git a/img/clothes/upper/buttondown/hold_rolled_gray.png b/img/clothes/upper/buttondown/hold_rolled_gray.png
index d7e098b93948a6197eebfca4973a4973a58e43fc..bae7537333e42e98aef6e05faf9561db83191139 100644
Binary files a/img/clothes/upper/buttondown/hold_rolled_gray.png and b/img/clothes/upper/buttondown/hold_rolled_gray.png differ
diff --git a/img/clothes/upper/buttondown/left_cover_gray.png b/img/clothes/upper/buttondown/left_cover_gray.png
index bdc02d86a19df66e6e37c0ad5f715f444a97bc6b..45589f6dcfca3a81ef6caa28e184ae0f59e1efdd 100644
Binary files a/img/clothes/upper/buttondown/left_cover_gray.png and b/img/clothes/upper/buttondown/left_cover_gray.png differ
diff --git a/img/clothes/upper/buttondown/left_cover_rolled_gray.png b/img/clothes/upper/buttondown/left_cover_rolled_gray.png
index 9a55b8c5a159a33cbb3fa7c4317b4c217e84c9e1..d29bca5848c7957b25d413733d206984bfac6267 100644
Binary files a/img/clothes/upper/buttondown/left_cover_rolled_gray.png and b/img/clothes/upper/buttondown/left_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/buttondown/left_gray.png b/img/clothes/upper/buttondown/left_gray.png
index 838935e00256f040be7d649fa581055230802e80..1d72ec4fd81a4d43ddbb15586995c6bf2031b5ee 100644
Binary files a/img/clothes/upper/buttondown/left_gray.png and b/img/clothes/upper/buttondown/left_gray.png differ
diff --git a/img/clothes/upper/buttondown/left_rolled_gray.png b/img/clothes/upper/buttondown/left_rolled_gray.png
index 8457f17da47b8ac20ff5a605cfdc699eb33163f3..a6cb490c8caa43ebc941153f8a5178d31da57ac8 100644
Binary files a/img/clothes/upper/buttondown/left_rolled_gray.png and b/img/clothes/upper/buttondown/left_rolled_gray.png differ
diff --git a/img/clothes/upper/buttondown/right_cover_gray.png b/img/clothes/upper/buttondown/right_cover_gray.png
index 3eeb1ff53219314697393cb486dbcad27e7683b2..17253a9ed08b08687565c7f5e9b3c8cf14c740a2 100644
Binary files a/img/clothes/upper/buttondown/right_cover_gray.png and b/img/clothes/upper/buttondown/right_cover_gray.png differ
diff --git a/img/clothes/upper/buttondown/right_cover_rolled_gray.png b/img/clothes/upper/buttondown/right_cover_rolled_gray.png
index c7f6b6b4805ef586179db6430690fc3bab3c47c9..55e21b4169a77db749abecab2d0a285bbd7bb4c1 100644
Binary files a/img/clothes/upper/buttondown/right_cover_rolled_gray.png and b/img/clothes/upper/buttondown/right_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/buttondown/right_gray.png b/img/clothes/upper/buttondown/right_gray.png
index 584ae0c926be586ed780eec2afccdc79070ea97b..8e2ea6c3508707062090027f478ea3e8064b5e8e 100644
Binary files a/img/clothes/upper/buttondown/right_gray.png and b/img/clothes/upper/buttondown/right_gray.png differ
diff --git a/img/clothes/upper/buttondown/right_rolled_gray.png b/img/clothes/upper/buttondown/right_rolled_gray.png
index a31dfafaed13265a6f05c5b3c1af88a06df24cdc..f79bb7e85527e6e29ef2b8a8be58b1da5e5e76a6 100644
Binary files a/img/clothes/upper/buttondown/right_rolled_gray.png and b/img/clothes/upper/buttondown/right_rolled_gray.png differ
diff --git a/img/clothes/upper/buttondown/tattered_gray.png b/img/clothes/upper/buttondown/tattered_gray.png
index 5c507998221009cee4ad759f02d0675b6446cedb..5f0c1f1be4c1f7e2b57c3cd33b4e59367ba6a8fb 100644
Binary files a/img/clothes/upper/buttondown/tattered_gray.png and b/img/clothes/upper/buttondown/tattered_gray.png differ
diff --git a/img/clothes/upper/buttondown/torn_gray.png b/img/clothes/upper/buttondown/torn_gray.png
index 7343fe5ab6f17ec10ce0271e2543809811aa74db..30ff1241b707faa659824f19473567d8f6c60f8e 100644
Binary files a/img/clothes/upper/buttondown/torn_gray.png and b/img/clothes/upper/buttondown/torn_gray.png differ
diff --git a/img/clothes/upper/cable/4_gray.png b/img/clothes/upper/cable/4_gray.png
index d66414571c8c75ac02e8220798ea87d229aab949..61e768a7168ca5afb4a739ac5c15d7cc073bfa56 100644
Binary files a/img/clothes/upper/cable/4_gray.png and b/img/clothes/upper/cable/4_gray.png differ
diff --git a/img/clothes/upper/cable/5_gray.png b/img/clothes/upper/cable/5_gray.png
index 5889cd632b39a9d17d5c7beb0d9a22900c3f9150..2cbedca773aa853df1caeb68a7d8e98a645c0b70 100644
Binary files a/img/clothes/upper/cable/5_gray.png and b/img/clothes/upper/cable/5_gray.png differ
diff --git a/img/clothes/upper/cable/6_gray.png b/img/clothes/upper/cable/6_gray.png
index b43b959e2f2d7081d865efa643494a18d5f63155..9781c72b21fdc6e4cc6df7b2ba790a409cb5acb5 100644
Binary files a/img/clothes/upper/cable/6_gray.png and b/img/clothes/upper/cable/6_gray.png differ
diff --git a/img/clothes/upper/cable/frayed_gray.png b/img/clothes/upper/cable/frayed_gray.png
index 9a35ac221947ea368112171b1ee47e083d410bb8..f979c88927a31fd31483bb25e3f9409ae0a8cf03 100644
Binary files a/img/clothes/upper/cable/frayed_gray.png and b/img/clothes/upper/cable/frayed_gray.png differ
diff --git a/img/clothes/upper/cable/full_gray.png b/img/clothes/upper/cable/full_gray.png
index 9a35ac221947ea368112171b1ee47e083d410bb8..f979c88927a31fd31483bb25e3f9409ae0a8cf03 100644
Binary files a/img/clothes/upper/cable/full_gray.png and b/img/clothes/upper/cable/full_gray.png differ
diff --git a/img/clothes/upper/cable/hold_gray.png b/img/clothes/upper/cable/hold_gray.png
index 5a7bca4e8fcb862451b8d5c2c53cd305ea5fb3ff..3e77b9e864b8b1b3de9b3793d8d1e6ad7e91930c 100644
Binary files a/img/clothes/upper/cable/hold_gray.png and b/img/clothes/upper/cable/hold_gray.png differ
diff --git a/img/clothes/upper/cable/left_cover_gray.png b/img/clothes/upper/cable/left_cover_gray.png
index 44931a3df84b774181b936e936d176df6735f9e9..925dd10478027ee57851c1ddf7a3922eaa4e0ca4 100644
Binary files a/img/clothes/upper/cable/left_cover_gray.png and b/img/clothes/upper/cable/left_cover_gray.png differ
diff --git a/img/clothes/upper/cable/left_gray.png b/img/clothes/upper/cable/left_gray.png
index b4491532b94455486bda5368481118ad3445ff15..1704c9760b9d953ecedfd89521a60ce165a75bfc 100644
Binary files a/img/clothes/upper/cable/left_gray.png and b/img/clothes/upper/cable/left_gray.png differ
diff --git a/img/clothes/upper/cable/right_cover_gray.png b/img/clothes/upper/cable/right_cover_gray.png
index 12fa599f03232493cf27cc8679e0190f3d2b63ed..bba89ca81f3e84bca36cf1a9e9f7d91b5245164e 100644
Binary files a/img/clothes/upper/cable/right_cover_gray.png and b/img/clothes/upper/cable/right_cover_gray.png differ
diff --git a/img/clothes/upper/cable/right_gray.png b/img/clothes/upper/cable/right_gray.png
index e17ca189a43b43a071bbc7f5a44f973fe5821b43..5613d1c067c6304db30f01e409dd64c46bdb29ca 100644
Binary files a/img/clothes/upper/cable/right_gray.png and b/img/clothes/upper/cable/right_gray.png differ
diff --git a/img/clothes/upper/cable/tattered_gray.png b/img/clothes/upper/cable/tattered_gray.png
index 9a35ac221947ea368112171b1ee47e083d410bb8..f979c88927a31fd31483bb25e3f9409ae0a8cf03 100644
Binary files a/img/clothes/upper/cable/tattered_gray.png and b/img/clothes/upper/cable/tattered_gray.png differ
diff --git a/img/clothes/upper/cable/torn_gray.png b/img/clothes/upper/cable/torn_gray.png
index 9a35ac221947ea368112171b1ee47e083d410bb8..f979c88927a31fd31483bb25e3f9409ae0a8cf03 100644
Binary files a/img/clothes/upper/cable/torn_gray.png and b/img/clothes/upper/cable/torn_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/3_gray.png b/img/clothes/upper/cableknitcardigan/3_gray.png
index 1688aa0ae527c5adf1fd25667b4da12966cdbc4c..9e7cc5839d71bc7336fe7bfd6f0cfea5630b8cf9 100644
Binary files a/img/clothes/upper/cableknitcardigan/3_gray.png and b/img/clothes/upper/cableknitcardigan/3_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/4_gray.png b/img/clothes/upper/cableknitcardigan/4_gray.png
index 4218b54913756f4a0be3ae5386f7783b1f5d2070..0133d5b68f50400acd2af239769f4c3f1aa9f171 100644
Binary files a/img/clothes/upper/cableknitcardigan/4_gray.png and b/img/clothes/upper/cableknitcardigan/4_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/5_gray.png b/img/clothes/upper/cableknitcardigan/5_gray.png
index 7927793db3f6d71139e085f06ffc43335661815f..a2b24dd7f4c720d7cb9a17ad74f0d721c0d2a336 100644
Binary files a/img/clothes/upper/cableknitcardigan/5_gray.png and b/img/clothes/upper/cableknitcardigan/5_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/frayed_gray.png b/img/clothes/upper/cableknitcardigan/frayed_gray.png
index d33dc373f7bf905576c765f53362932a6d69d82d..1b2f4bf91c2fb2cbbc9d7d708d1ae5d923fbb4df 100644
Binary files a/img/clothes/upper/cableknitcardigan/frayed_gray.png and b/img/clothes/upper/cableknitcardigan/frayed_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/full_gray.png b/img/clothes/upper/cableknitcardigan/full_gray.png
index 6f34ff9b6f6a8611a8e326bf3dea6ee44f9b2cf0..6808881ebe1785a2d65bd28dca20abae9aeb4aef 100644
Binary files a/img/clothes/upper/cableknitcardigan/full_gray.png and b/img/clothes/upper/cableknitcardigan/full_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/hold_gray.png b/img/clothes/upper/cableknitcardigan/hold_gray.png
index 35d7a8ea53ad772df08197398d8ad96089e748c8..dd2536f7c6eddd9ec7ef1799aff5d8d92ce6e75d 100644
Binary files a/img/clothes/upper/cableknitcardigan/hold_gray.png and b/img/clothes/upper/cableknitcardigan/hold_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/left_cover_gray.png b/img/clothes/upper/cableknitcardigan/left_cover_gray.png
index 682810ee7427a52ee215680bf1c9fb698c88c5f0..03d9f80ecd6885b078e5e79ea983b9b9240fe866 100644
Binary files a/img/clothes/upper/cableknitcardigan/left_cover_gray.png and b/img/clothes/upper/cableknitcardigan/left_cover_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/left_gray.png b/img/clothes/upper/cableknitcardigan/left_gray.png
index 681c439d84e0ce1951ede156a67f4a2c3cc1d66d..2391599b5d3f21bdbc63ca6e285d2ea1c380220e 100644
Binary files a/img/clothes/upper/cableknitcardigan/left_gray.png and b/img/clothes/upper/cableknitcardigan/left_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/right_cover_gray.png b/img/clothes/upper/cableknitcardigan/right_cover_gray.png
index 423f1d1a91276e4d6feeb303df4baa7e759783db..fae40555e63ad3249ecbc26960d71b876a22a00d 100644
Binary files a/img/clothes/upper/cableknitcardigan/right_cover_gray.png and b/img/clothes/upper/cableknitcardigan/right_cover_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/right_gray.png b/img/clothes/upper/cableknitcardigan/right_gray.png
index de7a5ab4bb4e00af9ac067a5545623f2b931da28..6f4a076607309887f775c6cd94103e7ba0250238 100644
Binary files a/img/clothes/upper/cableknitcardigan/right_gray.png and b/img/clothes/upper/cableknitcardigan/right_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/tattered_gray.png b/img/clothes/upper/cableknitcardigan/tattered_gray.png
index 385d630721e38855edbc1dd109d9e54493a5a200..6d8eb1d7529dd19aea90291b1daa9d2cae9f8913 100644
Binary files a/img/clothes/upper/cableknitcardigan/tattered_gray.png and b/img/clothes/upper/cableknitcardigan/tattered_gray.png differ
diff --git a/img/clothes/upper/cableknitcardigan/torn_gray.png b/img/clothes/upper/cableknitcardigan/torn_gray.png
index 7fa972f5b46e939266629149fc1da7c3ffde20c0..55e13cb561fdae4b4721512f276e79d9baf39835 100644
Binary files a/img/clothes/upper/cableknitcardigan/torn_gray.png and b/img/clothes/upper/cableknitcardigan/torn_gray.png differ
diff --git a/img/clothes/upper/camo/frayed_gray.png b/img/clothes/upper/camo/frayed_gray.png
index 470e7bfe668fc9a0936a174ce15adb8eafd0422e..77c1fc2a1fe3521473a84969199d74443169151c 100644
Binary files a/img/clothes/upper/camo/frayed_gray.png and b/img/clothes/upper/camo/frayed_gray.png differ
diff --git a/img/clothes/upper/camo/full_gray.png b/img/clothes/upper/camo/full_gray.png
index eb4c6c2a563e808a475d888576d1ca668933dd39..04ab2cb8aff0e1c4ed9f98444bf36a5165082a50 100644
Binary files a/img/clothes/upper/camo/full_gray.png and b/img/clothes/upper/camo/full_gray.png differ
diff --git a/img/clothes/upper/camo/hold_gray.png b/img/clothes/upper/camo/hold_gray.png
index 66057f6e969e79d3f57e44e078c5a890a88c0a76..54bff26cb7fb2d6d253acfa27e8ccdbe79a3d12d 100644
Binary files a/img/clothes/upper/camo/hold_gray.png and b/img/clothes/upper/camo/hold_gray.png differ
diff --git a/img/clothes/upper/camo/left_cover_gray.png b/img/clothes/upper/camo/left_cover_gray.png
index f726b93afa15335ec2c3b307ee576139c426890e..c008e98fe7e83885da6d1d85517967b606412ba1 100644
Binary files a/img/clothes/upper/camo/left_cover_gray.png and b/img/clothes/upper/camo/left_cover_gray.png differ
diff --git a/img/clothes/upper/camo/left_gray.png b/img/clothes/upper/camo/left_gray.png
index c3b4c0c1885303ec30fc5d03f0f97ae9ba49433a..df8484a8c8027d5c8389ef43918dd2615cbc6a1c 100644
Binary files a/img/clothes/upper/camo/left_gray.png and b/img/clothes/upper/camo/left_gray.png differ
diff --git a/img/clothes/upper/camo/right_cover_gray.png b/img/clothes/upper/camo/right_cover_gray.png
index f6db0cdb4225782c2edc7a8b04ad0934ab859271..b056b3addfbe8d92704e15f0609cd31cbc66b37d 100644
Binary files a/img/clothes/upper/camo/right_cover_gray.png and b/img/clothes/upper/camo/right_cover_gray.png differ
diff --git a/img/clothes/upper/camo/right_gray.png b/img/clothes/upper/camo/right_gray.png
index 586c85ec9a49fcfa6fc517ef50c94c6d74e45d46..04c83a5549883534fe6a446aacdaf0dd41b47e39 100644
Binary files a/img/clothes/upper/camo/right_gray.png and b/img/clothes/upper/camo/right_gray.png differ
diff --git a/img/clothes/upper/camo/tattered_gray.png b/img/clothes/upper/camo/tattered_gray.png
index 03f0eacae675438eed8d19d34ae891e9400118a9..8183635abfec08acb97ba81a2fe5c4b61d64c906 100644
Binary files a/img/clothes/upper/camo/tattered_gray.png and b/img/clothes/upper/camo/tattered_gray.png differ
diff --git a/img/clothes/upper/camo/torn_gray.png b/img/clothes/upper/camo/torn_gray.png
index 5c2b5a90dae31286dda675d06d3d0b690ee7e4cb..d7749160a2338771c6abf47a16cbfea271c830ee 100644
Binary files a/img/clothes/upper/camo/torn_gray.png and b/img/clothes/upper/camo/torn_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/3_gray.png b/img/clothes/upper/cat hoodie/3_gray.png
index a1aba688ec822fc4398efa38e548a6fe90a55894..22399c4f9a69cc8a37858fd289a3d2d0e6deedca 100644
Binary files a/img/clothes/upper/cat hoodie/3_gray.png and b/img/clothes/upper/cat hoodie/3_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/4_gray.png b/img/clothes/upper/cat hoodie/4_gray.png
index 95e674a29d5c79e64a0cf5f8c25bc4567586dae6..2296ead1cdcf39f3948c09a0db78e6d77aa6601e 100644
Binary files a/img/clothes/upper/cat hoodie/4_gray.png and b/img/clothes/upper/cat hoodie/4_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/5_gray.png b/img/clothes/upper/cat hoodie/5_gray.png
index be54861aa407a383106147807bc0e31ab9e7865e..39fc11bd447e572361655486af5f6748390c5e39 100644
Binary files a/img/clothes/upper/cat hoodie/5_gray.png and b/img/clothes/upper/cat hoodie/5_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/acc.png b/img/clothes/upper/cat hoodie/acc.png
index 923577e311abc40d258784a1fe02f33bf513d81f..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/cat hoodie/acc.png and b/img/clothes/upper/cat hoodie/acc.png differ
diff --git a/img/clothes/upper/cat hoodie/acc_down.png b/img/clothes/upper/cat hoodie/acc_down.png
index 923577e311abc40d258784a1fe02f33bf513d81f..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/cat hoodie/acc_down.png and b/img/clothes/upper/cat hoodie/acc_down.png differ
diff --git a/img/clothes/upper/cat hoodie/acc_gray.png b/img/clothes/upper/cat hoodie/acc_gray.png
index 923577e311abc40d258784a1fe02f33bf513d81f..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/cat hoodie/acc_gray.png and b/img/clothes/upper/cat hoodie/acc_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/frayed_down_gray.png b/img/clothes/upper/cat hoodie/frayed_down_gray.png
index 101338de0e684a336da143ea5188dffac5d0a325..0c8fcb54b1d4b4d4e5dc9af2f7710398136e3751 100644
Binary files a/img/clothes/upper/cat hoodie/frayed_down_gray.png and b/img/clothes/upper/cat hoodie/frayed_down_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/frayed_gray.png b/img/clothes/upper/cat hoodie/frayed_gray.png
index 9038f40fba147e5adf6b3bbf68281462cb5f6c50..d5b67c59f779ab7bba29dfb3a609fe63b0284076 100644
Binary files a/img/clothes/upper/cat hoodie/frayed_gray.png and b/img/clothes/upper/cat hoodie/frayed_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/full_down_gray.png b/img/clothes/upper/cat hoodie/full_down_gray.png
index 44229c814dbc37e516354790a4fed999c03c88d7..9477fc029f23f7db85bb9e56d7d559a629a6be10 100644
Binary files a/img/clothes/upper/cat hoodie/full_down_gray.png and b/img/clothes/upper/cat hoodie/full_down_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/full_gray.png b/img/clothes/upper/cat hoodie/full_gray.png
index 45adb515be0d53abd73c4499cca7aa19d69c2235..920d242c57708d78fe7511e03cd82bb170edf7f7 100644
Binary files a/img/clothes/upper/cat hoodie/full_gray.png and b/img/clothes/upper/cat hoodie/full_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/hold_gray.png b/img/clothes/upper/cat hoodie/hold_gray.png
index 5eab75029841b39cf503286711e7bb17855365e5..7152ad04c6ca7b51f60f4372e33c7ee4033c39fb 100644
Binary files a/img/clothes/upper/cat hoodie/hold_gray.png and b/img/clothes/upper/cat hoodie/hold_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/left_cover_gray.png b/img/clothes/upper/cat hoodie/left_cover_gray.png
index 25091c71d4687e051069af88b550100b29e184f1..cc08958e79f0119f26cb7cea68b1d40b173e24a7 100644
Binary files a/img/clothes/upper/cat hoodie/left_cover_gray.png and b/img/clothes/upper/cat hoodie/left_cover_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/left_gray.png b/img/clothes/upper/cat hoodie/left_gray.png
index 8943b59aaa7fa159d3beeec11680fee448065efa..ad0649fb60114fb9be0f16128fc6da19d2b4bd5b 100644
Binary files a/img/clothes/upper/cat hoodie/left_gray.png and b/img/clothes/upper/cat hoodie/left_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/right_cover_gray.png b/img/clothes/upper/cat hoodie/right_cover_gray.png
index 652e858b1d55afb58ed38dd114eaf5d4cc3308a3..803103d59d65ce4a7641097f68ba281994ff0e26 100644
Binary files a/img/clothes/upper/cat hoodie/right_cover_gray.png and b/img/clothes/upper/cat hoodie/right_cover_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/right_gray.png b/img/clothes/upper/cat hoodie/right_gray.png
index b72c433f41df91bb738f57bc04ef52a035c2562a..5fbafdccf06b89f9b4d60dbd3130ced1e9a912c9 100644
Binary files a/img/clothes/upper/cat hoodie/right_gray.png and b/img/clothes/upper/cat hoodie/right_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/tattered_down_gray.png b/img/clothes/upper/cat hoodie/tattered_down_gray.png
index c4a9a41aa73db80ec2228e573e2c060f7b9943bd..43c80b4c0dede8c69cabd11bce3d26299f0cf74d 100644
Binary files a/img/clothes/upper/cat hoodie/tattered_down_gray.png and b/img/clothes/upper/cat hoodie/tattered_down_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/tattered_gray.png b/img/clothes/upper/cat hoodie/tattered_gray.png
index 88cbe2e87714a74347ed0d647b7fb3419b927d4b..684bb844ad9941692c3039cfe7f1163d5688b988 100644
Binary files a/img/clothes/upper/cat hoodie/tattered_gray.png and b/img/clothes/upper/cat hoodie/tattered_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/torn_down_gray.png b/img/clothes/upper/cat hoodie/torn_down_gray.png
index f87e51218fff157896ed1dc36e4191e01934b67f..d5e45bbe74ae0508f19e663071621ee2ee649727 100644
Binary files a/img/clothes/upper/cat hoodie/torn_down_gray.png and b/img/clothes/upper/cat hoodie/torn_down_gray.png differ
diff --git a/img/clothes/upper/cat hoodie/torn_gray.png b/img/clothes/upper/cat hoodie/torn_gray.png
index 68dca7b8818ae65243807c491a9f7f0829d06783..40939fef59810c53729a887f61f18f0d6e726a55 100644
Binary files a/img/clothes/upper/cat hoodie/torn_gray.png and b/img/clothes/upper/cat hoodie/torn_gray.png differ
diff --git a/img/clothes/upper/catsuit/1_gray.png b/img/clothes/upper/catsuit/1_gray.png
index 09026fc12cd6db6080753f6d62ccba4bc1162e32..ac62046959b805ddb5a03e28b706119e911e5392 100644
Binary files a/img/clothes/upper/catsuit/1_gray.png and b/img/clothes/upper/catsuit/1_gray.png differ
diff --git a/img/clothes/upper/catsuit/2_gray.png b/img/clothes/upper/catsuit/2_gray.png
index 0bf0fdb7687dbad5090431937d6a60fe2184a1d7..e44dfb728e85e0beba56314ae92ae9626e8d1ee6 100644
Binary files a/img/clothes/upper/catsuit/2_gray.png and b/img/clothes/upper/catsuit/2_gray.png differ
diff --git a/img/clothes/upper/catsuit/3_gray.png b/img/clothes/upper/catsuit/3_gray.png
index 0f77687701dee32254d826b5970b18217c9d98e0..96e1c493529357c0590ef9a2d000273aa1dcd58e 100644
Binary files a/img/clothes/upper/catsuit/3_gray.png and b/img/clothes/upper/catsuit/3_gray.png differ
diff --git a/img/clothes/upper/catsuit/4_gray.png b/img/clothes/upper/catsuit/4_gray.png
index d9c0f494259d0decbf96b6a993e63b182366183b..2ea785d98e5caba38add7d7df505ecf30c71be6a 100644
Binary files a/img/clothes/upper/catsuit/4_gray.png and b/img/clothes/upper/catsuit/4_gray.png differ
diff --git a/img/clothes/upper/catsuit/5_gray.png b/img/clothes/upper/catsuit/5_gray.png
index 69d16a28f13980ac45e59e02e098f7eee2176a90..a90f58244f733d7e3023e981b21b0ce619b9fb27 100644
Binary files a/img/clothes/upper/catsuit/5_gray.png and b/img/clothes/upper/catsuit/5_gray.png differ
diff --git a/img/clothes/upper/catsuit/frayed_gray.png b/img/clothes/upper/catsuit/frayed_gray.png
index 10258c35fb4629a73770bd8c141bdefdf4776a98..d08fefb0e8c6d8e2809104ea2021d75cffac8411 100644
Binary files a/img/clothes/upper/catsuit/frayed_gray.png and b/img/clothes/upper/catsuit/frayed_gray.png differ
diff --git a/img/clothes/upper/catsuit/full_gray.png b/img/clothes/upper/catsuit/full_gray.png
index 22dab2ce10861357ad023aa88d84519ef44ccb64..822627c0f15767d03116c0ced2a13da9eb08e824 100644
Binary files a/img/clothes/upper/catsuit/full_gray.png and b/img/clothes/upper/catsuit/full_gray.png differ
diff --git a/img/clothes/upper/catsuit/hold_gray.png b/img/clothes/upper/catsuit/hold_gray.png
index 15b518c64a0d79c203cb5b196c84a81b9e869c68..3fc8a526293bc47bbfad45fec688ad481b8872e7 100644
Binary files a/img/clothes/upper/catsuit/hold_gray.png and b/img/clothes/upper/catsuit/hold_gray.png differ
diff --git a/img/clothes/upper/catsuit/left_cover_gray.png b/img/clothes/upper/catsuit/left_cover_gray.png
index 0a8db947ddda98bd6b6c90708ae9a7ad9a420bc7..709b69009b27bee86b4e6a4af319f00c7bd2f5cb 100644
Binary files a/img/clothes/upper/catsuit/left_cover_gray.png and b/img/clothes/upper/catsuit/left_cover_gray.png differ
diff --git a/img/clothes/upper/catsuit/left_gray.png b/img/clothes/upper/catsuit/left_gray.png
index ba8b4c3c76a0bcbbb8646be51c5532a13a8e3a5b..a762587a78317c775ed89991196a5bca06a9fadf 100644
Binary files a/img/clothes/upper/catsuit/left_gray.png and b/img/clothes/upper/catsuit/left_gray.png differ
diff --git a/img/clothes/upper/catsuit/right_cover_gray.png b/img/clothes/upper/catsuit/right_cover_gray.png
index b27a218ce9e383616576b24f3e6395ac41b963b9..93b760776ae01d80eab2d57d57167163f9e4a3a9 100644
Binary files a/img/clothes/upper/catsuit/right_cover_gray.png and b/img/clothes/upper/catsuit/right_cover_gray.png differ
diff --git a/img/clothes/upper/catsuit/right_gray.png b/img/clothes/upper/catsuit/right_gray.png
index af4f613696a4321634d751d1daf6320e575c36d4..c7709015b7d3adafb4a0684f5532fd63871cbb56 100644
Binary files a/img/clothes/upper/catsuit/right_gray.png and b/img/clothes/upper/catsuit/right_gray.png differ
diff --git a/img/clothes/upper/catsuit/tattered_gray.png b/img/clothes/upper/catsuit/tattered_gray.png
index f25b8feeda7a492bb2aed64680c4eede81e0a39a..eb57a32b084c53c0244c8e4db96e9354e7f85972 100644
Binary files a/img/clothes/upper/catsuit/tattered_gray.png and b/img/clothes/upper/catsuit/tattered_gray.png differ
diff --git a/img/clothes/upper/catsuit/torn_gray.png b/img/clothes/upper/catsuit/torn_gray.png
index 2637995db669c221103fdab9ec68cf5a98912b28..0c30d91b069b7fee41aa0f7713447b002456fc3c 100644
Binary files a/img/clothes/upper/catsuit/torn_gray.png and b/img/clothes/upper/catsuit/torn_gray.png differ
diff --git a/img/clothes/upper/checkered/frayed.png b/img/clothes/upper/checkered/frayed.png
index a88174a5aae9252dea728d2a75b40673c80aa924..b20ccf387aaf213df3fba33720c312bf9dfff0a7 100644
Binary files a/img/clothes/upper/checkered/frayed.png and b/img/clothes/upper/checkered/frayed.png differ
diff --git a/img/clothes/upper/checkered/full.png b/img/clothes/upper/checkered/full.png
index 6fa6d45eae99fcd3240f55d3bce943db14e8e430..f3cd9201462e48cc55d686c8207eb2167c5d9931 100644
Binary files a/img/clothes/upper/checkered/full.png and b/img/clothes/upper/checkered/full.png differ
diff --git a/img/clothes/upper/checkered/hold.png b/img/clothes/upper/checkered/hold.png
index 638b35f37c8c85fdbf7e0e77c85a700c9c3e5202..a5b8702d8eaf6ed3dfafd45a98984c870efc9120 100644
Binary files a/img/clothes/upper/checkered/hold.png and b/img/clothes/upper/checkered/hold.png differ
diff --git a/img/clothes/upper/checkered/left.png b/img/clothes/upper/checkered/left.png
index 4efb5e0d38765d5e9004203adeaf685ab4260f29..f6c299caafdb8c28e2def0c598de925dd12ae824 100644
Binary files a/img/clothes/upper/checkered/left.png and b/img/clothes/upper/checkered/left.png differ
diff --git a/img/clothes/upper/checkered/left_cover.png b/img/clothes/upper/checkered/left_cover.png
index 9936e59f5d3222a58016214f26d62dfb6b3f13f7..51f0aaa22e1c48793bb744968887734a08829783 100644
Binary files a/img/clothes/upper/checkered/left_cover.png and b/img/clothes/upper/checkered/left_cover.png differ
diff --git a/img/clothes/upper/checkered/right.png b/img/clothes/upper/checkered/right.png
index fdcb1ccfe08f4fb6e29e9f99adfca7e3a3ff1ceb..dcb4e0f62b0e013ce926d939b6523bdd22d09ea5 100644
Binary files a/img/clothes/upper/checkered/right.png and b/img/clothes/upper/checkered/right.png differ
diff --git a/img/clothes/upper/checkered/right_cover.png b/img/clothes/upper/checkered/right_cover.png
index 857619fbb63173a85b366124499873f00ec17439..52d78a89353e661900c6ab2d9c126f0f40fb5874 100644
Binary files a/img/clothes/upper/checkered/right_cover.png and b/img/clothes/upper/checkered/right_cover.png differ
diff --git a/img/clothes/upper/checkered/tattered.png b/img/clothes/upper/checkered/tattered.png
index ecbb6a8145d333d1b11f6fe13bc9b5417607dc4e..e31e2209361103562259886fa9f88c7ad8662b0a 100644
Binary files a/img/clothes/upper/checkered/tattered.png and b/img/clothes/upper/checkered/tattered.png differ
diff --git a/img/clothes/upper/checkered/torn.png b/img/clothes/upper/checkered/torn.png
index c1870e00fb9d0b8310b535aed0fa8f88490d7e5f..00f5ab7c2dc59062ebc2d03ca53b90a632820a32 100644
Binary files a/img/clothes/upper/checkered/torn.png and b/img/clothes/upper/checkered/torn.png differ
diff --git a/img/clothes/upper/cheerleader/0_acc.png b/img/clothes/upper/cheerleader/0_acc.png
index f9747e9ebc21c534e5d738a4b10b65ac860b5b4f..d9e915361b18a300c65cd58008f04006cf86530d 100644
Binary files a/img/clothes/upper/cheerleader/0_acc.png and b/img/clothes/upper/cheerleader/0_acc.png differ
diff --git a/img/clothes/upper/cheerleader/0_gray.png b/img/clothes/upper/cheerleader/0_gray.png
index a9d17d1d2f06b8ef481b22c0ed7f5a3ffbf048d3..5a05ae6e03b638cfd6dbcf86a3f55afdf59cc36c 100644
Binary files a/img/clothes/upper/cheerleader/0_gray.png and b/img/clothes/upper/cheerleader/0_gray.png differ
diff --git a/img/clothes/upper/cheerleader/1_acc.png b/img/clothes/upper/cheerleader/1_acc.png
index c5981c8753c06a62ca6353097497232784a01660..a17ef837c03500039bfbaffc2b15457beb445384 100644
Binary files a/img/clothes/upper/cheerleader/1_acc.png and b/img/clothes/upper/cheerleader/1_acc.png differ
diff --git a/img/clothes/upper/cheerleader/1_gray.png b/img/clothes/upper/cheerleader/1_gray.png
index 6b98e4b26e25f5f8aa0172e3d1a78246fa2a0e61..69030baeb56f1d4c014d95290fae20a59c189ae2 100644
Binary files a/img/clothes/upper/cheerleader/1_gray.png and b/img/clothes/upper/cheerleader/1_gray.png differ
diff --git a/img/clothes/upper/cheerleader/2_acc.png b/img/clothes/upper/cheerleader/2_acc.png
index 2c93c085d34d1ffa105b13404061fdcb1db44a07..ad754aebead8b03f62ee6afdaf1fed5d56289b8f 100644
Binary files a/img/clothes/upper/cheerleader/2_acc.png and b/img/clothes/upper/cheerleader/2_acc.png differ
diff --git a/img/clothes/upper/cheerleader/2_gray.png b/img/clothes/upper/cheerleader/2_gray.png
index cd066116aa2136dcdcf4fdc5809bc804a8db3d1d..6294c276664dc42a854228832ad3b1ec4fc8086e 100644
Binary files a/img/clothes/upper/cheerleader/2_gray.png and b/img/clothes/upper/cheerleader/2_gray.png differ
diff --git a/img/clothes/upper/cheerleader/3_acc.png b/img/clothes/upper/cheerleader/3_acc.png
index 01625f857912d91376f63ca62ee679c4ab602c0d..904ca7c568d9d6a77ad7f9333b1b569c7f71cb66 100644
Binary files a/img/clothes/upper/cheerleader/3_acc.png and b/img/clothes/upper/cheerleader/3_acc.png differ
diff --git a/img/clothes/upper/cheerleader/3_gray.png b/img/clothes/upper/cheerleader/3_gray.png
index a96258972572c772d746681fa42998454e46abeb..040f707cb4c6551b845d62a194443853263c07e9 100644
Binary files a/img/clothes/upper/cheerleader/3_gray.png and b/img/clothes/upper/cheerleader/3_gray.png differ
diff --git a/img/clothes/upper/cheerleader/4_acc.png b/img/clothes/upper/cheerleader/4_acc.png
index 25903ed48f77317efddb272b74631bd25bd0776e..31075bdf057c854bf52609a94ce365f06183f03c 100644
Binary files a/img/clothes/upper/cheerleader/4_acc.png and b/img/clothes/upper/cheerleader/4_acc.png differ
diff --git a/img/clothes/upper/cheerleader/4_gray.png b/img/clothes/upper/cheerleader/4_gray.png
index 975c4e901e8ad306ada39f3a0cb7fd67aef3bd68..608be21429b39d7f2a27ad23dd17fed0d75368b7 100644
Binary files a/img/clothes/upper/cheerleader/4_gray.png and b/img/clothes/upper/cheerleader/4_gray.png differ
diff --git a/img/clothes/upper/cheerleader/5_acc.png b/img/clothes/upper/cheerleader/5_acc.png
index a37c3351f4be0da5b61be927fc2134600c5e7838..176dabc290621987dd47254bd5f08cac6df974c7 100644
Binary files a/img/clothes/upper/cheerleader/5_acc.png and b/img/clothes/upper/cheerleader/5_acc.png differ
diff --git a/img/clothes/upper/cheerleader/5_gray.png b/img/clothes/upper/cheerleader/5_gray.png
index 8dac0d91dbbfc02a62fd5389cae1cb5509971636..20667cc9f22ed82d2a97404e4293d2d2de20fd88 100644
Binary files a/img/clothes/upper/cheerleader/5_gray.png and b/img/clothes/upper/cheerleader/5_gray.png differ
diff --git a/img/clothes/upper/cheerleader/6_acc.png b/img/clothes/upper/cheerleader/6_acc.png
index a37c3351f4be0da5b61be927fc2134600c5e7838..176dabc290621987dd47254bd5f08cac6df974c7 100644
Binary files a/img/clothes/upper/cheerleader/6_acc.png and b/img/clothes/upper/cheerleader/6_acc.png differ
diff --git a/img/clothes/upper/cheerleader/6_gray.png b/img/clothes/upper/cheerleader/6_gray.png
index 8dac0d91dbbfc02a62fd5389cae1cb5509971636..20667cc9f22ed82d2a97404e4293d2d2de20fd88 100644
Binary files a/img/clothes/upper/cheerleader/6_gray.png and b/img/clothes/upper/cheerleader/6_gray.png differ
diff --git a/img/clothes/upper/cheerleader/acc.png b/img/clothes/upper/cheerleader/acc.png
index b48861e8553b74ce0ed3884cc2ef67f2bcf333c5..75884da9060d9e8d964d56c6b140135c991acabb 100644
Binary files a/img/clothes/upper/cheerleader/acc.png and b/img/clothes/upper/cheerleader/acc.png differ
diff --git a/img/clothes/upper/cheerleader/frayed_gray.png b/img/clothes/upper/cheerleader/frayed_gray.png
index d1ceb7fa46b128ccc623b9429967bad5d13a875f..99f7d6b1d2b985ba64568c3121e2c6ef5515bb59 100644
Binary files a/img/clothes/upper/cheerleader/frayed_gray.png and b/img/clothes/upper/cheerleader/frayed_gray.png differ
diff --git a/img/clothes/upper/cheerleader/full_gray.png b/img/clothes/upper/cheerleader/full_gray.png
index d1ceb7fa46b128ccc623b9429967bad5d13a875f..99f7d6b1d2b985ba64568c3121e2c6ef5515bb59 100644
Binary files a/img/clothes/upper/cheerleader/full_gray.png and b/img/clothes/upper/cheerleader/full_gray.png differ
diff --git a/img/clothes/upper/cheerleader/tattered_gray.png b/img/clothes/upper/cheerleader/tattered_gray.png
index d1ceb7fa46b128ccc623b9429967bad5d13a875f..99f7d6b1d2b985ba64568c3121e2c6ef5515bb59 100644
Binary files a/img/clothes/upper/cheerleader/tattered_gray.png and b/img/clothes/upper/cheerleader/tattered_gray.png differ
diff --git a/img/clothes/upper/cheerleader/torn_gray.png b/img/clothes/upper/cheerleader/torn_gray.png
index d1ceb7fa46b128ccc623b9429967bad5d13a875f..99f7d6b1d2b985ba64568c3121e2c6ef5515bb59 100644
Binary files a/img/clothes/upper/cheerleader/torn_gray.png and b/img/clothes/upper/cheerleader/torn_gray.png differ
diff --git a/img/clothes/upper/cheongsam/1_gray.png b/img/clothes/upper/cheongsam/1_gray.png
index d93c50ca4d3ee79eb184f25e21bb984f855b90d4..f0d7569fc57d61c432071e5a2cb123ceea7539a8 100644
Binary files a/img/clothes/upper/cheongsam/1_gray.png and b/img/clothes/upper/cheongsam/1_gray.png differ
diff --git a/img/clothes/upper/cheongsam/2_gray.png b/img/clothes/upper/cheongsam/2_gray.png
index dab00c3ee1abbe9b2bfa57ac46abc8ca51052a82..4f02178345f68f9351137ab91e4110ca792daf49 100644
Binary files a/img/clothes/upper/cheongsam/2_gray.png and b/img/clothes/upper/cheongsam/2_gray.png differ
diff --git a/img/clothes/upper/cheongsam/3_gray.png b/img/clothes/upper/cheongsam/3_gray.png
index 57b1fe9abe484f2fce27b16d140aa3ed70d09781..b9e155d1119d5377ed5ecaf465f0ee159b5ff6ad 100644
Binary files a/img/clothes/upper/cheongsam/3_gray.png and b/img/clothes/upper/cheongsam/3_gray.png differ
diff --git a/img/clothes/upper/cheongsam/4_gray.png b/img/clothes/upper/cheongsam/4_gray.png
index 56528c2cde1588ffaa2c810ed56823dcc13b4c96..97884fd59a1f5eeeed84094d1468fcc5aa2a7820 100644
Binary files a/img/clothes/upper/cheongsam/4_gray.png and b/img/clothes/upper/cheongsam/4_gray.png differ
diff --git a/img/clothes/upper/cheongsam/5_gray.png b/img/clothes/upper/cheongsam/5_gray.png
index 1618fdde0689e213e46ab42463ab4933f1c7528f..e032a0853b03d421c7d5d68c54c69517273d4392 100644
Binary files a/img/clothes/upper/cheongsam/5_gray.png and b/img/clothes/upper/cheongsam/5_gray.png differ
diff --git a/img/clothes/upper/cheongsam/acc.png b/img/clothes/upper/cheongsam/acc.png
index 67f40062c1c3f8d9b0eccd0abf1419b984f2c3cf..85721b05b64d406f0f93ea61856a980636a1c6fa 100644
Binary files a/img/clothes/upper/cheongsam/acc.png and b/img/clothes/upper/cheongsam/acc.png differ
diff --git a/img/clothes/upper/cheongsam/frayed_gray.png b/img/clothes/upper/cheongsam/frayed_gray.png
index ce4f16e48bf6500d8c916085f29c65b72a9fc8af..5c505cd7410841393603f1667744dd71cb9fc418 100644
Binary files a/img/clothes/upper/cheongsam/frayed_gray.png and b/img/clothes/upper/cheongsam/frayed_gray.png differ
diff --git a/img/clothes/upper/cheongsam/full_gray.png b/img/clothes/upper/cheongsam/full_gray.png
index ce4f16e48bf6500d8c916085f29c65b72a9fc8af..5c505cd7410841393603f1667744dd71cb9fc418 100644
Binary files a/img/clothes/upper/cheongsam/full_gray.png and b/img/clothes/upper/cheongsam/full_gray.png differ
diff --git a/img/clothes/upper/cheongsam/hold_gray.png b/img/clothes/upper/cheongsam/hold_gray.png
index 4efd61a1f6e8f5690a15dabcc8dfb253c48509d0..f530ceaa4cae7afcf3fe435a54d2bee1e6cbed37 100644
Binary files a/img/clothes/upper/cheongsam/hold_gray.png and b/img/clothes/upper/cheongsam/hold_gray.png differ
diff --git a/img/clothes/upper/cheongsam/left_cover_gray.png b/img/clothes/upper/cheongsam/left_cover_gray.png
index 534ee3216a088c0f643b3d7344e6aa03398c97b9..371a18cb784f207cd2a9225191e29bc8d4952711 100644
Binary files a/img/clothes/upper/cheongsam/left_cover_gray.png and b/img/clothes/upper/cheongsam/left_cover_gray.png differ
diff --git a/img/clothes/upper/cheongsam/left_gray.png b/img/clothes/upper/cheongsam/left_gray.png
index f2bce7315d3212aab3487a138f641998b90095a6..d57760437408f1d944ad04ab176e455bf1f9becc 100644
Binary files a/img/clothes/upper/cheongsam/left_gray.png and b/img/clothes/upper/cheongsam/left_gray.png differ
diff --git a/img/clothes/upper/cheongsam/right_cover_gray.png b/img/clothes/upper/cheongsam/right_cover_gray.png
index 6268fdf74797bed3748b57a0ff9069742eac329c..6bdb692c82e61d9e47409da0e4b8a95106f1e34a 100644
Binary files a/img/clothes/upper/cheongsam/right_cover_gray.png and b/img/clothes/upper/cheongsam/right_cover_gray.png differ
diff --git a/img/clothes/upper/cheongsam/right_gray.png b/img/clothes/upper/cheongsam/right_gray.png
index fbb2de3d2072836e5f53cf583287dae420e20c6c..11919f9e9ca915fda95bf56bc00908bd09d4608c 100644
Binary files a/img/clothes/upper/cheongsam/right_gray.png and b/img/clothes/upper/cheongsam/right_gray.png differ
diff --git a/img/clothes/upper/cheongsam/tattered_gray.png b/img/clothes/upper/cheongsam/tattered_gray.png
index ce4f16e48bf6500d8c916085f29c65b72a9fc8af..5c505cd7410841393603f1667744dd71cb9fc418 100644
Binary files a/img/clothes/upper/cheongsam/tattered_gray.png and b/img/clothes/upper/cheongsam/tattered_gray.png differ
diff --git a/img/clothes/upper/cheongsam/torn_gray.png b/img/clothes/upper/cheongsam/torn_gray.png
index ce4f16e48bf6500d8c916085f29c65b72a9fc8af..5c505cd7410841393603f1667744dd71cb9fc418 100644
Binary files a/img/clothes/upper/cheongsam/torn_gray.png and b/img/clothes/upper/cheongsam/torn_gray.png differ
diff --git a/img/clothes/upper/cheongsamshort/1_gray.png b/img/clothes/upper/cheongsamshort/1_gray.png
index d93c50ca4d3ee79eb184f25e21bb984f855b90d4..f0d7569fc57d61c432071e5a2cb123ceea7539a8 100644
Binary files a/img/clothes/upper/cheongsamshort/1_gray.png and b/img/clothes/upper/cheongsamshort/1_gray.png differ
diff --git a/img/clothes/upper/cheongsamshort/2_gray.png b/img/clothes/upper/cheongsamshort/2_gray.png
index dab00c3ee1abbe9b2bfa57ac46abc8ca51052a82..4f02178345f68f9351137ab91e4110ca792daf49 100644
Binary files a/img/clothes/upper/cheongsamshort/2_gray.png and b/img/clothes/upper/cheongsamshort/2_gray.png differ
diff --git a/img/clothes/upper/cheongsamshort/3_gray.png b/img/clothes/upper/cheongsamshort/3_gray.png
index 57b1fe9abe484f2fce27b16d140aa3ed70d09781..b9e155d1119d5377ed5ecaf465f0ee159b5ff6ad 100644
Binary files a/img/clothes/upper/cheongsamshort/3_gray.png and b/img/clothes/upper/cheongsamshort/3_gray.png differ
diff --git a/img/clothes/upper/cheongsamshort/4_gray.png b/img/clothes/upper/cheongsamshort/4_gray.png
index 11c186701630218a9e2b4ffdafc79a1d7fa6a415..97884fd59a1f5eeeed84094d1468fcc5aa2a7820 100644
Binary files a/img/clothes/upper/cheongsamshort/4_gray.png and b/img/clothes/upper/cheongsamshort/4_gray.png differ
diff --git a/img/clothes/upper/cheongsamshort/5_gray.png b/img/clothes/upper/cheongsamshort/5_gray.png
index 1618fdde0689e213e46ab42463ab4933f1c7528f..e032a0853b03d421c7d5d68c54c69517273d4392 100644
Binary files a/img/clothes/upper/cheongsamshort/5_gray.png and b/img/clothes/upper/cheongsamshort/5_gray.png differ
diff --git a/img/clothes/upper/cheongsamshort/acc.png b/img/clothes/upper/cheongsamshort/acc.png
index 1d2cd502a436f870dfe6323fb1de5dab67a84dec..1937f714862043849f8580ca412196094abe9b4a 100644
Binary files a/img/clothes/upper/cheongsamshort/acc.png and b/img/clothes/upper/cheongsamshort/acc.png differ
diff --git a/img/clothes/upper/cheongsamshort/frayed_gray.png b/img/clothes/upper/cheongsamshort/frayed_gray.png
index 01eaba0fb50eba4bb10035b1376f4c1c1449c398..59d3241b277f7f1ddda7ea35b0f843812a6d08bd 100644
Binary files a/img/clothes/upper/cheongsamshort/frayed_gray.png and b/img/clothes/upper/cheongsamshort/frayed_gray.png differ
diff --git a/img/clothes/upper/cheongsamshort/full_gray.png b/img/clothes/upper/cheongsamshort/full_gray.png
index 01eaba0fb50eba4bb10035b1376f4c1c1449c398..59d3241b277f7f1ddda7ea35b0f843812a6d08bd 100644
Binary files a/img/clothes/upper/cheongsamshort/full_gray.png and b/img/clothes/upper/cheongsamshort/full_gray.png differ
diff --git a/img/clothes/upper/cheongsamshort/tattered_gray.png b/img/clothes/upper/cheongsamshort/tattered_gray.png
index 01eaba0fb50eba4bb10035b1376f4c1c1449c398..59d3241b277f7f1ddda7ea35b0f843812a6d08bd 100644
Binary files a/img/clothes/upper/cheongsamshort/tattered_gray.png and b/img/clothes/upper/cheongsamshort/tattered_gray.png differ
diff --git a/img/clothes/upper/cheongsamshort/torn_gray.png b/img/clothes/upper/cheongsamshort/torn_gray.png
index 01eaba0fb50eba4bb10035b1376f4c1c1449c398..59d3241b277f7f1ddda7ea35b0f843812a6d08bd 100644
Binary files a/img/clothes/upper/cheongsamshort/torn_gray.png and b/img/clothes/upper/cheongsamshort/torn_gray.png differ
diff --git a/img/clothes/upper/christmas/3.png b/img/clothes/upper/christmas/3.png
index 15dd1de9689a693f79362432d4236079a086b1cd..4f629923d2af6f60e4c1f36e381a56c8c8f5967f 100644
Binary files a/img/clothes/upper/christmas/3.png and b/img/clothes/upper/christmas/3.png differ
diff --git a/img/clothes/upper/christmas/5.png b/img/clothes/upper/christmas/5.png
index f33ba1f8653267a6686232be68cd1fbb82fc8a94..24af8e93915ef4dd9e1e7e6ec4c6a1c279601039 100644
Binary files a/img/clothes/upper/christmas/5.png and b/img/clothes/upper/christmas/5.png differ
diff --git a/img/clothes/upper/christmas/6.png b/img/clothes/upper/christmas/6.png
index cf4964e733421dd7f9ed6eda164a7b632f1d1491..19448f7c2abddcd9fc184e25d1a6981eda6e4a34 100644
Binary files a/img/clothes/upper/christmas/6.png and b/img/clothes/upper/christmas/6.png differ
diff --git a/img/clothes/upper/christmas/frayed.png b/img/clothes/upper/christmas/frayed.png
index d1e7af011eb5166a882f75020627468cc71e08ca..72915bca15295147676aaf07318fd7f86d43dc30 100644
Binary files a/img/clothes/upper/christmas/frayed.png and b/img/clothes/upper/christmas/frayed.png differ
diff --git a/img/clothes/upper/christmas/full.png b/img/clothes/upper/christmas/full.png
index 169d49dd01f7deaff826ec4c036f46629b0b0ef3..5ddbb5a278303c12c547a3fa5245448a35801fec 100644
Binary files a/img/clothes/upper/christmas/full.png and b/img/clothes/upper/christmas/full.png differ
diff --git a/img/clothes/upper/christmas/hold.png b/img/clothes/upper/christmas/hold.png
index dbbeecc904abfb2cbe74fd3565975b22a29fca69..66174b16e3dbd79e23f1467748d690a19ed4ed3e 100644
Binary files a/img/clothes/upper/christmas/hold.png and b/img/clothes/upper/christmas/hold.png differ
diff --git a/img/clothes/upper/christmas/left.png b/img/clothes/upper/christmas/left.png
index 868c53aa7a87001832c28d37ac3b5b2dae648643..5474e4e1ce372484b3778cdd0d63d0a73d0e12a8 100644
Binary files a/img/clothes/upper/christmas/left.png and b/img/clothes/upper/christmas/left.png differ
diff --git a/img/clothes/upper/christmas/left_cover.png b/img/clothes/upper/christmas/left_cover.png
index 72f601239773816cb0a4cc53ddae989fda8fb43c..57f9f7934c8b771a59338c926d782153008f481c 100644
Binary files a/img/clothes/upper/christmas/left_cover.png and b/img/clothes/upper/christmas/left_cover.png differ
diff --git a/img/clothes/upper/christmas/right.png b/img/clothes/upper/christmas/right.png
index 18f0ac454374ba17a4d083234ea70c6549cae251..8704705de379a8f734e5839764aeca0901756694 100644
Binary files a/img/clothes/upper/christmas/right.png and b/img/clothes/upper/christmas/right.png differ
diff --git a/img/clothes/upper/christmas/right_cover.png b/img/clothes/upper/christmas/right_cover.png
index 7c23d1ae15173d599e33ae6f0915c3d48f5b0ecf..8afe9efe83d885a8de43962e54faf45e68d21de0 100644
Binary files a/img/clothes/upper/christmas/right_cover.png and b/img/clothes/upper/christmas/right_cover.png differ
diff --git a/img/clothes/upper/christmas/tattered.png b/img/clothes/upper/christmas/tattered.png
index 88a902387c00e5f64b5613a08a413f2eba5b40ea..864161ed0bc672c559cf913f6af2ff1ea8e8d12f 100644
Binary files a/img/clothes/upper/christmas/tattered.png and b/img/clothes/upper/christmas/tattered.png differ
diff --git a/img/clothes/upper/christmas/torn.png b/img/clothes/upper/christmas/torn.png
index e82f6f11b8a35276e53a3bbdbf68f04a2ff6231f..bd3e436a7823ec6c0cfe53301a60049884508ae5 100644
Binary files a/img/clothes/upper/christmas/torn.png and b/img/clothes/upper/christmas/torn.png differ
diff --git a/img/clothes/upper/christmasdress/3.png b/img/clothes/upper/christmasdress/3.png
index 15dd1de9689a693f79362432d4236079a086b1cd..4f629923d2af6f60e4c1f36e381a56c8c8f5967f 100644
Binary files a/img/clothes/upper/christmasdress/3.png and b/img/clothes/upper/christmasdress/3.png differ
diff --git a/img/clothes/upper/christmasdress/5.png b/img/clothes/upper/christmasdress/5.png
index f33ba1f8653267a6686232be68cd1fbb82fc8a94..24af8e93915ef4dd9e1e7e6ec4c6a1c279601039 100644
Binary files a/img/clothes/upper/christmasdress/5.png and b/img/clothes/upper/christmasdress/5.png differ
diff --git a/img/clothes/upper/christmasdress/6.png b/img/clothes/upper/christmasdress/6.png
index cf4964e733421dd7f9ed6eda164a7b632f1d1491..19448f7c2abddcd9fc184e25d1a6981eda6e4a34 100644
Binary files a/img/clothes/upper/christmasdress/6.png and b/img/clothes/upper/christmasdress/6.png differ
diff --git a/img/clothes/upper/christmasdress/frayed.png b/img/clothes/upper/christmasdress/frayed.png
index 497838f12ee8c1233e2296033c756dba0b191ee7..5529cafdc0679be0544c99e35adba1b89f338e71 100644
Binary files a/img/clothes/upper/christmasdress/frayed.png and b/img/clothes/upper/christmasdress/frayed.png differ
diff --git a/img/clothes/upper/christmasdress/full.png b/img/clothes/upper/christmasdress/full.png
index 39ea05c9fe5adc70f5fcd9c742ce9d6b393be375..148b81f1601112227dfafe069517712e9442c07f 100644
Binary files a/img/clothes/upper/christmasdress/full.png and b/img/clothes/upper/christmasdress/full.png differ
diff --git a/img/clothes/upper/christmasdress/hold.png b/img/clothes/upper/christmasdress/hold.png
index dbbeecc904abfb2cbe74fd3565975b22a29fca69..66174b16e3dbd79e23f1467748d690a19ed4ed3e 100644
Binary files a/img/clothes/upper/christmasdress/hold.png and b/img/clothes/upper/christmasdress/hold.png differ
diff --git a/img/clothes/upper/christmasdress/left.png b/img/clothes/upper/christmasdress/left.png
index 868c53aa7a87001832c28d37ac3b5b2dae648643..5474e4e1ce372484b3778cdd0d63d0a73d0e12a8 100644
Binary files a/img/clothes/upper/christmasdress/left.png and b/img/clothes/upper/christmasdress/left.png differ
diff --git a/img/clothes/upper/christmasdress/left_cover.png b/img/clothes/upper/christmasdress/left_cover.png
index 72f601239773816cb0a4cc53ddae989fda8fb43c..57f9f7934c8b771a59338c926d782153008f481c 100644
Binary files a/img/clothes/upper/christmasdress/left_cover.png and b/img/clothes/upper/christmasdress/left_cover.png differ
diff --git a/img/clothes/upper/christmasdress/right.png b/img/clothes/upper/christmasdress/right.png
index 18f0ac454374ba17a4d083234ea70c6549cae251..8704705de379a8f734e5839764aeca0901756694 100644
Binary files a/img/clothes/upper/christmasdress/right.png and b/img/clothes/upper/christmasdress/right.png differ
diff --git a/img/clothes/upper/christmasdress/right_cover.png b/img/clothes/upper/christmasdress/right_cover.png
index 7c23d1ae15173d599e33ae6f0915c3d48f5b0ecf..8afe9efe83d885a8de43962e54faf45e68d21de0 100644
Binary files a/img/clothes/upper/christmasdress/right_cover.png and b/img/clothes/upper/christmasdress/right_cover.png differ
diff --git a/img/clothes/upper/christmasdress/tattered.png b/img/clothes/upper/christmasdress/tattered.png
index 3784fe50f7433c2f35627e97b3e18e0fb10d36b7..52e51f1d5e708cafd060dd94e0517fe92a821c34 100644
Binary files a/img/clothes/upper/christmasdress/tattered.png and b/img/clothes/upper/christmasdress/tattered.png differ
diff --git a/img/clothes/upper/christmasdress/torn.png b/img/clothes/upper/christmasdress/torn.png
index 9ff470d0183f928980bb90c050d8ad2653ced866..3f86d4ed9af5f08d36fe2252219458e5ea12c99e 100644
Binary files a/img/clothes/upper/christmasdress/torn.png and b/img/clothes/upper/christmasdress/torn.png differ
diff --git a/img/clothes/upper/classicsundress/frayed_gray.png b/img/clothes/upper/classicsundress/frayed_gray.png
index 08eb8bda32707a1b01e96d4270efdcdfa72e2d0e..1d00cf8738381e8f8c739065646d1b4eb2947936 100644
Binary files a/img/clothes/upper/classicsundress/frayed_gray.png and b/img/clothes/upper/classicsundress/frayed_gray.png differ
diff --git a/img/clothes/upper/classicsundress/full_gray.png b/img/clothes/upper/classicsundress/full_gray.png
index 0571d6b26f63991a9389a36cb40be52fde014462..fc615c450bed6271ea244b45ad846e52d6b2e50d 100644
Binary files a/img/clothes/upper/classicsundress/full_gray.png and b/img/clothes/upper/classicsundress/full_gray.png differ
diff --git a/img/clothes/upper/classicsundress/tattered_gray.png b/img/clothes/upper/classicsundress/tattered_gray.png
index 761133671fa4cc7a3b94a373a9202336ec3c034b..40b2e9aa9f783469aab4517d4d86c3bcd953f6ba 100644
Binary files a/img/clothes/upper/classicsundress/tattered_gray.png and b/img/clothes/upper/classicsundress/tattered_gray.png differ
diff --git a/img/clothes/upper/classicsundress/torn_gray.png b/img/clothes/upper/classicsundress/torn_gray.png
index 0d2dc61612e1050f8132d10b03b94a3dd5fc0cce..53129b0b9060b97a16291cdc0a304f1bcefb6b30 100644
Binary files a/img/clothes/upper/classicsundress/torn_gray.png and b/img/clothes/upper/classicsundress/torn_gray.png differ
diff --git a/img/clothes/upper/classyvampire/4.png b/img/clothes/upper/classyvampire/4.png
index db939d838677347ed51a9523f43a73659c3b70ad..e9daf24116c877925844b14a1b6414a7ea030b87 100644
Binary files a/img/clothes/upper/classyvampire/4.png and b/img/clothes/upper/classyvampire/4.png differ
diff --git a/img/clothes/upper/classyvampire/5.png b/img/clothes/upper/classyvampire/5.png
index 09da16357ee61403147bd84a7aac86081d7bc8c1..df36477710556ca298485f319da861a8210a8b10 100644
Binary files a/img/clothes/upper/classyvampire/5.png and b/img/clothes/upper/classyvampire/5.png differ
diff --git a/img/clothes/upper/classyvampire/6.png b/img/clothes/upper/classyvampire/6.png
index e11662feef4c28d850704fe42f30fbb2dda764d1..2af53031dda9c566c0c6c33c1c8c3f6cc49f7816 100644
Binary files a/img/clothes/upper/classyvampire/6.png and b/img/clothes/upper/classyvampire/6.png differ
diff --git a/img/clothes/upper/classyvampire/acc_gray.png b/img/clothes/upper/classyvampire/acc_gray.png
index 24060ac0cd543f2ea2181108ecd6b8dd99424922..ff21530c3e41c0e2436e431f625b9a1116a1a03e 100644
Binary files a/img/clothes/upper/classyvampire/acc_gray.png and b/img/clothes/upper/classyvampire/acc_gray.png differ
diff --git a/img/clothes/upper/classyvampire/frayed.png b/img/clothes/upper/classyvampire/frayed.png
index 5d867caec02e8f976925cb7d530ef40d701b5e60..9a60147a50bf4123d8081b414fbe7162e1ec5cc4 100644
Binary files a/img/clothes/upper/classyvampire/frayed.png and b/img/clothes/upper/classyvampire/frayed.png differ
diff --git a/img/clothes/upper/classyvampire/full.png b/img/clothes/upper/classyvampire/full.png
index 536fecb9d56cf644834535f0e4a2ee1c8dd7a08c..9c0ad08ef47bdac9676a09baabc1e18c4b8be3f9 100644
Binary files a/img/clothes/upper/classyvampire/full.png and b/img/clothes/upper/classyvampire/full.png differ
diff --git a/img/clothes/upper/classyvampire/hold.png b/img/clothes/upper/classyvampire/hold.png
index a2203b893bd88fcf0a4e9d9c42621f3db2ba5cf6..731eb58cb28c2b84e059367491c01b57a9ec55c1 100644
Binary files a/img/clothes/upper/classyvampire/hold.png and b/img/clothes/upper/classyvampire/hold.png differ
diff --git a/img/clothes/upper/classyvampire/left.png b/img/clothes/upper/classyvampire/left.png
index 6ca973beb1a133c144edc4d33e487960b8045305..1c9e2bc28ded275c62ef39c6266a81b769bda85d 100644
Binary files a/img/clothes/upper/classyvampire/left.png and b/img/clothes/upper/classyvampire/left.png differ
diff --git a/img/clothes/upper/classyvampire/left_cover.png b/img/clothes/upper/classyvampire/left_cover.png
index a1798bd593ece0a69cba4412853f4c6e7bbdb10e..8eb3d5ca1ca1c44ffa8f6002a708f4e87d9321dd 100644
Binary files a/img/clothes/upper/classyvampire/left_cover.png and b/img/clothes/upper/classyvampire/left_cover.png differ
diff --git a/img/clothes/upper/classyvampire/right.png b/img/clothes/upper/classyvampire/right.png
index 82019d2eab687ebfb2041fc8f6b526b9fb314704..6f929f1a0d9e30205ab865de8931652de915379b 100644
Binary files a/img/clothes/upper/classyvampire/right.png and b/img/clothes/upper/classyvampire/right.png differ
diff --git a/img/clothes/upper/classyvampire/right_cover.png b/img/clothes/upper/classyvampire/right_cover.png
index fc40396ab0320d4b208e5668c3cfeabffddbe0bd..2d760d3ba4adc1761eb729f7033ba899a6fbc2b2 100644
Binary files a/img/clothes/upper/classyvampire/right_cover.png and b/img/clothes/upper/classyvampire/right_cover.png differ
diff --git a/img/clothes/upper/classyvampire/tattered.png b/img/clothes/upper/classyvampire/tattered.png
index 41387f62a397d2b1ca646aacd1f11e306c3ce73b..5e174cfc6981922bfb5243487fcc6c6d01d30a76 100644
Binary files a/img/clothes/upper/classyvampire/tattered.png and b/img/clothes/upper/classyvampire/tattered.png differ
diff --git a/img/clothes/upper/classyvampire/torn.png b/img/clothes/upper/classyvampire/torn.png
index d6f80cbc0d96b5f1ea618b2a248ce0c43d405191..fe1917133aea6136c7fd77bc63b533e702d6c1de 100644
Binary files a/img/clothes/upper/classyvampire/torn.png and b/img/clothes/upper/classyvampire/torn.png differ
diff --git a/img/clothes/upper/cocoon/frayed.png b/img/clothes/upper/cocoon/frayed.png
index c28d6959ab301c4b154702f1841327395bb57d39..3f49da4b6953513319d481cfd362181ccfa9a337 100644
Binary files a/img/clothes/upper/cocoon/frayed.png and b/img/clothes/upper/cocoon/frayed.png differ
diff --git a/img/clothes/upper/cocoon/full.png b/img/clothes/upper/cocoon/full.png
index c28d6959ab301c4b154702f1841327395bb57d39..3f49da4b6953513319d481cfd362181ccfa9a337 100644
Binary files a/img/clothes/upper/cocoon/full.png and b/img/clothes/upper/cocoon/full.png differ
diff --git a/img/clothes/upper/cocoon/mask.png b/img/clothes/upper/cocoon/mask.png
index 653067dd9f0d4e95ac6eb5590745aa2e01d8a290..b640371b3adefe48389277405babee48f65b0b6b 100644
Binary files a/img/clothes/upper/cocoon/mask.png and b/img/clothes/upper/cocoon/mask.png differ
diff --git a/img/clothes/upper/cocoon/tattered.png b/img/clothes/upper/cocoon/tattered.png
index c28d6959ab301c4b154702f1841327395bb57d39..3f49da4b6953513319d481cfd362181ccfa9a337 100644
Binary files a/img/clothes/upper/cocoon/tattered.png and b/img/clothes/upper/cocoon/tattered.png differ
diff --git a/img/clothes/upper/cocoon/torn.png b/img/clothes/upper/cocoon/torn.png
index c28d6959ab301c4b154702f1841327395bb57d39..3f49da4b6953513319d481cfd362181ccfa9a337 100644
Binary files a/img/clothes/upper/cocoon/torn.png and b/img/clothes/upper/cocoon/torn.png differ
diff --git a/img/clothes/upper/colour block crop/1_acc_gray.png b/img/clothes/upper/colour block crop/1_acc_gray.png
index 2add5e087066bbd272390707dd5bf80485109007..8428515ad83f998d3b1856f3b0534ab0d6b57bd7 100644
Binary files a/img/clothes/upper/colour block crop/1_acc_gray.png and b/img/clothes/upper/colour block crop/1_acc_gray.png differ
diff --git a/img/clothes/upper/colour block crop/1_gray.png b/img/clothes/upper/colour block crop/1_gray.png
index d692583665ae43c15a09c833c4ffa9325ff8bd55..f3d1e5c182eecc70564535c1cc6c57b8e01f5714 100644
Binary files a/img/clothes/upper/colour block crop/1_gray.png and b/img/clothes/upper/colour block crop/1_gray.png differ
diff --git a/img/clothes/upper/colour block crop/2_acc_gray.png b/img/clothes/upper/colour block crop/2_acc_gray.png
index 7c980a2290df763a5b169ad7eca8c79822858540..d8fcc2aa9adc1d79469f394fbd975a6e017e0150 100644
Binary files a/img/clothes/upper/colour block crop/2_acc_gray.png and b/img/clothes/upper/colour block crop/2_acc_gray.png differ
diff --git a/img/clothes/upper/colour block crop/2_gray.png b/img/clothes/upper/colour block crop/2_gray.png
index e3275a3a0a06bd232ef6e0b7d0cfddfa8f61f3a1..8900f9b83124188547c7b549662414422682b5db 100644
Binary files a/img/clothes/upper/colour block crop/2_gray.png and b/img/clothes/upper/colour block crop/2_gray.png differ
diff --git a/img/clothes/upper/colour block crop/3_acc_gray.png b/img/clothes/upper/colour block crop/3_acc_gray.png
index df762be5fd2cec654fb310767b9b66deac0a5cec..1028f79052e5d53e25fa208e63096e91ae790dad 100644
Binary files a/img/clothes/upper/colour block crop/3_acc_gray.png and b/img/clothes/upper/colour block crop/3_acc_gray.png differ
diff --git a/img/clothes/upper/colour block crop/3_gray.png b/img/clothes/upper/colour block crop/3_gray.png
index d59b1e8c70ba95c6b62845838e04ef575364f3d2..943eadc4da0d3aca11af858ffd3c7273b273e11e 100644
Binary files a/img/clothes/upper/colour block crop/3_gray.png and b/img/clothes/upper/colour block crop/3_gray.png differ
diff --git a/img/clothes/upper/colour block crop/4_acc_gray.png b/img/clothes/upper/colour block crop/4_acc_gray.png
index 7ce761812dcba54bc55ec2ca27a5b50ab9daa89f..3ec3cac5c481f16a1a0414ff2df115e6e1bad8cb 100644
Binary files a/img/clothes/upper/colour block crop/4_acc_gray.png and b/img/clothes/upper/colour block crop/4_acc_gray.png differ
diff --git a/img/clothes/upper/colour block crop/4_gray.png b/img/clothes/upper/colour block crop/4_gray.png
index da9e8c04b4bc8dfced3a2a8749808a2419f359e6..51c27472610ceb0998d1e9c76921bc44e7014329 100644
Binary files a/img/clothes/upper/colour block crop/4_gray.png and b/img/clothes/upper/colour block crop/4_gray.png differ
diff --git a/img/clothes/upper/colour block crop/5_acc_gray.png b/img/clothes/upper/colour block crop/5_acc_gray.png
index fa647dcefaafbf79725ff12acfdfb3bf3ffee7dc..8f52feeeccdd4817d33dfb9dbbbde13fe6a62bc5 100644
Binary files a/img/clothes/upper/colour block crop/5_acc_gray.png and b/img/clothes/upper/colour block crop/5_acc_gray.png differ
diff --git a/img/clothes/upper/colour block crop/5_gray.png b/img/clothes/upper/colour block crop/5_gray.png
index fd41ab8129f9901506bdd423b0a0eba14c6e8d60..50444d58422707be5f042dbe5a0b6076fa34a880 100644
Binary files a/img/clothes/upper/colour block crop/5_gray.png and b/img/clothes/upper/colour block crop/5_gray.png differ
diff --git a/img/clothes/upper/colour block crop/acc_frayed_gray.png b/img/clothes/upper/colour block crop/acc_frayed_gray.png
index cac9ede86872455a3f75ea0af0bdd3e872ee374e..8c594df2c444e3467d88a3ada272f84049f4e83d 100644
Binary files a/img/clothes/upper/colour block crop/acc_frayed_gray.png and b/img/clothes/upper/colour block crop/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/colour block crop/acc_full_gray.png b/img/clothes/upper/colour block crop/acc_full_gray.png
index f9e957f77c0bc32bc97729a0693cebdc8caede8f..8dfdf90209c76b167c89e26b183fee1d45b156e7 100644
Binary files a/img/clothes/upper/colour block crop/acc_full_gray.png and b/img/clothes/upper/colour block crop/acc_full_gray.png differ
diff --git a/img/clothes/upper/colour block crop/acc_tattered_gray.png b/img/clothes/upper/colour block crop/acc_tattered_gray.png
index c167915c071fc78e18e428dc11da4765dec1a183..2ec7d6fe23409b682a5bfac6860b6ab0ef55de00 100644
Binary files a/img/clothes/upper/colour block crop/acc_tattered_gray.png and b/img/clothes/upper/colour block crop/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/colour block crop/acc_torn_gray.png b/img/clothes/upper/colour block crop/acc_torn_gray.png
index 0ce55ae1dc7b61c002b5cf32c08d70dac25f8351..b04f5da5990598388ae97764ab3bdbeb3f3a1037 100644
Binary files a/img/clothes/upper/colour block crop/acc_torn_gray.png and b/img/clothes/upper/colour block crop/acc_torn_gray.png differ
diff --git a/img/clothes/upper/colour block crop/frayed_gray.png b/img/clothes/upper/colour block crop/frayed_gray.png
index 0723041547014a7ca940d939b1b693042a3c961e..2d6033b6eaade5e579e2e1d46ca3817cbf3d809e 100644
Binary files a/img/clothes/upper/colour block crop/frayed_gray.png and b/img/clothes/upper/colour block crop/frayed_gray.png differ
diff --git a/img/clothes/upper/colour block crop/full_gray.png b/img/clothes/upper/colour block crop/full_gray.png
index f65fc3e12d1377652376753ccbf57287a8fe640e..1648604af770f05482cb732140cb39a6ae156856 100644
Binary files a/img/clothes/upper/colour block crop/full_gray.png and b/img/clothes/upper/colour block crop/full_gray.png differ
diff --git a/img/clothes/upper/colour block crop/hold_acc_gray.png b/img/clothes/upper/colour block crop/hold_acc_gray.png
index 2d35c40582f18495319f157df129948892095be9..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/colour block crop/hold_acc_gray.png and b/img/clothes/upper/colour block crop/hold_acc_gray.png differ
diff --git a/img/clothes/upper/colour block crop/hold_gray.png b/img/clothes/upper/colour block crop/hold_gray.png
index 6da10cbba32c70de0f7323ef838075167a90bd16..38eb10b97eb31ff8a9b9005da44009e994103469 100644
Binary files a/img/clothes/upper/colour block crop/hold_gray.png and b/img/clothes/upper/colour block crop/hold_gray.png differ
diff --git a/img/clothes/upper/colour block crop/left_acc_gray.png b/img/clothes/upper/colour block crop/left_acc_gray.png
index 823282fe958d53eeaf2df9a27b48bf54ded0ca77..bf2346ac4358bae5b210eefe2f576174dd42fe60 100644
Binary files a/img/clothes/upper/colour block crop/left_acc_gray.png and b/img/clothes/upper/colour block crop/left_acc_gray.png differ
diff --git a/img/clothes/upper/colour block crop/left_cover_acc_gray.png b/img/clothes/upper/colour block crop/left_cover_acc_gray.png
index 2cc865a2fc0ec2e54c3d8057acc322e27d2204a5..eb651a9e57c875ccf35b480f770a0df572d27127 100644
Binary files a/img/clothes/upper/colour block crop/left_cover_acc_gray.png and b/img/clothes/upper/colour block crop/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/colour block crop/left_cover_gray.png b/img/clothes/upper/colour block crop/left_cover_gray.png
index 5031ab9bb1c611ddc7d62b1cb54b0167f600e4f6..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/colour block crop/left_cover_gray.png and b/img/clothes/upper/colour block crop/left_cover_gray.png differ
diff --git a/img/clothes/upper/colour block crop/left_gray.png b/img/clothes/upper/colour block crop/left_gray.png
index 5031ab9bb1c611ddc7d62b1cb54b0167f600e4f6..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/colour block crop/left_gray.png and b/img/clothes/upper/colour block crop/left_gray.png differ
diff --git a/img/clothes/upper/colour block crop/right_acc_gray.png b/img/clothes/upper/colour block crop/right_acc_gray.png
index 5031ab9bb1c611ddc7d62b1cb54b0167f600e4f6..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/colour block crop/right_acc_gray.png and b/img/clothes/upper/colour block crop/right_acc_gray.png differ
diff --git a/img/clothes/upper/colour block crop/right_cover_acc_gray.png b/img/clothes/upper/colour block crop/right_cover_acc_gray.png
index 5031ab9bb1c611ddc7d62b1cb54b0167f600e4f6..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/colour block crop/right_cover_acc_gray.png and b/img/clothes/upper/colour block crop/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/colour block crop/right_cover_gray.png b/img/clothes/upper/colour block crop/right_cover_gray.png
index c7432db6ed4c896221329522b1513cee5e74c599..e82f8d24f9361b01dde9cb0160e7cefad6364b54 100644
Binary files a/img/clothes/upper/colour block crop/right_cover_gray.png and b/img/clothes/upper/colour block crop/right_cover_gray.png differ
diff --git a/img/clothes/upper/colour block crop/right_gray.png b/img/clothes/upper/colour block crop/right_gray.png
index 81f7d5fbec31d31fcc39459d00f85684859d4d3d..886db652faa58313cc0c0212ff436571a386f1e1 100644
Binary files a/img/clothes/upper/colour block crop/right_gray.png and b/img/clothes/upper/colour block crop/right_gray.png differ
diff --git a/img/clothes/upper/colour block crop/tattered_gray.png b/img/clothes/upper/colour block crop/tattered_gray.png
index a1d0446c7ce5129fb326366dd72455c85202f82e..632ca3d913dfbac6ac8b18571acc5124669cb8bf 100644
Binary files a/img/clothes/upper/colour block crop/tattered_gray.png and b/img/clothes/upper/colour block crop/tattered_gray.png differ
diff --git a/img/clothes/upper/colour block crop/torn_gray.png b/img/clothes/upper/colour block crop/torn_gray.png
index 9a8f3654db7a1a0e8db4a3a9f9ddc423d397625a..52230f3e23bfec6cd08d04faf3c8f7c3e316f43d 100644
Binary files a/img/clothes/upper/colour block crop/torn_gray.png and b/img/clothes/upper/colour block crop/torn_gray.png differ
diff --git a/img/clothes/upper/cowonesie/frayed.png b/img/clothes/upper/cowonesie/frayed.png
index fbf7dbe59a0bd1dada9887b307c8b0286c1c3640..1c4b43a515bc906bc3c3400cf94e8dc53dbeddf8 100644
Binary files a/img/clothes/upper/cowonesie/frayed.png and b/img/clothes/upper/cowonesie/frayed.png differ
diff --git a/img/clothes/upper/cowonesie/frayed_down.png b/img/clothes/upper/cowonesie/frayed_down.png
index 80c5d30873d7bc1259344fd941ecd535cb80200d..1a3596d4136353f959e966264f7a7d8805abacb7 100644
Binary files a/img/clothes/upper/cowonesie/frayed_down.png and b/img/clothes/upper/cowonesie/frayed_down.png differ
diff --git a/img/clothes/upper/cowonesie/full.png b/img/clothes/upper/cowonesie/full.png
index 59b3711b1af008b5d7871d427d3647a3806369de..d427c883207c676c664d353f35b41b470c6f8330 100644
Binary files a/img/clothes/upper/cowonesie/full.png and b/img/clothes/upper/cowonesie/full.png differ
diff --git a/img/clothes/upper/cowonesie/full_down.png b/img/clothes/upper/cowonesie/full_down.png
index f23fb714b31457ddb954f3db2224aca9ebfec8dc..e534110f44297e0c482c6e7030fc07ae9eaa1734 100644
Binary files a/img/clothes/upper/cowonesie/full_down.png and b/img/clothes/upper/cowonesie/full_down.png differ
diff --git a/img/clothes/upper/cowonesie/hold.png b/img/clothes/upper/cowonesie/hold.png
index cab851015cf573044ab714aeaf6664b2c0ee4529..5994cfbc2672df0d589b3b8bcee8a4c7bb3883e4 100644
Binary files a/img/clothes/upper/cowonesie/hold.png and b/img/clothes/upper/cowonesie/hold.png differ
diff --git a/img/clothes/upper/cowonesie/left.png b/img/clothes/upper/cowonesie/left.png
index a02a0726ef3331404276f6036977bb0f253978e9..b778f493431b6065fa32c0fa6e1927c42ea6e1f9 100644
Binary files a/img/clothes/upper/cowonesie/left.png and b/img/clothes/upper/cowonesie/left.png differ
diff --git a/img/clothes/upper/cowonesie/left_cover.png b/img/clothes/upper/cowonesie/left_cover.png
index cc2954d5afd13d7136e2df08021d195a45297bbc..398c07ec0bc15aed9cffbd9188fcd9c2f77b7d52 100644
Binary files a/img/clothes/upper/cowonesie/left_cover.png and b/img/clothes/upper/cowonesie/left_cover.png differ
diff --git a/img/clothes/upper/cowonesie/right.png b/img/clothes/upper/cowonesie/right.png
index ede993f2da24ed09fcc27bf0a450aa67fd4d722a..3bea038060b55b6d62ab4078b5dbe3077c80aefd 100644
Binary files a/img/clothes/upper/cowonesie/right.png and b/img/clothes/upper/cowonesie/right.png differ
diff --git a/img/clothes/upper/cowonesie/right_cover.png b/img/clothes/upper/cowonesie/right_cover.png
index 51f6c3e8942bddb6f10ed3a70efdeaef307db50a..1b67b6aede66c49045f0a0975c96f2170693f644 100644
Binary files a/img/clothes/upper/cowonesie/right_cover.png and b/img/clothes/upper/cowonesie/right_cover.png differ
diff --git a/img/clothes/upper/cowonesie/tattered.png b/img/clothes/upper/cowonesie/tattered.png
index 69271b0bd2b73ae2e9e62aba09cf5ce4394459d2..a792d471c80cfb75bf6fe4baaaa0a4405597ead6 100644
Binary files a/img/clothes/upper/cowonesie/tattered.png and b/img/clothes/upper/cowonesie/tattered.png differ
diff --git a/img/clothes/upper/cowonesie/tattered_down.png b/img/clothes/upper/cowonesie/tattered_down.png
index 5b92f7a6cd5521c27b7c8a90fbad245cbd7074ea..abc7f87e5406e4faa6f25c0603e1e374ff9dfa5f 100644
Binary files a/img/clothes/upper/cowonesie/tattered_down.png and b/img/clothes/upper/cowonesie/tattered_down.png differ
diff --git a/img/clothes/upper/cowonesie/torn.png b/img/clothes/upper/cowonesie/torn.png
index 266abd63bd3052ccfd4cf3cd6827ca2f44c9e72b..5b8225f245d2e1cc3ae2df7af48cc8d278f4db05 100644
Binary files a/img/clothes/upper/cowonesie/torn.png and b/img/clothes/upper/cowonesie/torn.png differ
diff --git a/img/clothes/upper/cowonesie/torn_down.png b/img/clothes/upper/cowonesie/torn_down.png
index 1bd793122037fe5f54c79f913c3a50ec578b16ed..e5e96b0cb361a568ccc61d550d79b9e954391bec 100644
Binary files a/img/clothes/upper/cowonesie/torn_down.png and b/img/clothes/upper/cowonesie/torn_down.png differ
diff --git a/img/clothes/upper/croppedhoodie/frayed_gray.png b/img/clothes/upper/croppedhoodie/frayed_gray.png
index 2186090e51628d5bb677aaa15d9cdd4d2a221b4b..d61bcf232964878afc125b68126d22a556ed96ce 100644
Binary files a/img/clothes/upper/croppedhoodie/frayed_gray.png and b/img/clothes/upper/croppedhoodie/frayed_gray.png differ
diff --git a/img/clothes/upper/croppedhoodie/full_gray.png b/img/clothes/upper/croppedhoodie/full_gray.png
index f632572b243adad869b11fa9f2558fb1df2d52a5..8c887125fa061d1906c370c21617bc4309223495 100644
Binary files a/img/clothes/upper/croppedhoodie/full_gray.png and b/img/clothes/upper/croppedhoodie/full_gray.png differ
diff --git a/img/clothes/upper/croppedhoodie/hold_gray.png b/img/clothes/upper/croppedhoodie/hold_gray.png
index 69ff3dbffb1a2a6ccfa87e39e87ef90c9e209220..e9aee87fd7b765c23ba5627fe0902b7321fea84c 100644
Binary files a/img/clothes/upper/croppedhoodie/hold_gray.png and b/img/clothes/upper/croppedhoodie/hold_gray.png differ
diff --git a/img/clothes/upper/croppedhoodie/left_cover_gray.png b/img/clothes/upper/croppedhoodie/left_cover_gray.png
index 015f9e1945c65facba3e5106be0199b23b9b03a3..e5a190d775d2bee54fa2077240f8c28befe41fc8 100644
Binary files a/img/clothes/upper/croppedhoodie/left_cover_gray.png and b/img/clothes/upper/croppedhoodie/left_cover_gray.png differ
diff --git a/img/clothes/upper/croppedhoodie/left_gray.png b/img/clothes/upper/croppedhoodie/left_gray.png
index 342fe5317f8730cde4fb42a94640ce6415d0895e..39474ca38839e30fb7043e1b66f7e33f102bdd1a 100644
Binary files a/img/clothes/upper/croppedhoodie/left_gray.png and b/img/clothes/upper/croppedhoodie/left_gray.png differ
diff --git a/img/clothes/upper/croppedhoodie/right_cover_gray.png b/img/clothes/upper/croppedhoodie/right_cover_gray.png
index deec40c644994cd2413dc2bc3208d6b313c67ae5..e21420522723fda8a5f4bb91083d79ea49878376 100644
Binary files a/img/clothes/upper/croppedhoodie/right_cover_gray.png and b/img/clothes/upper/croppedhoodie/right_cover_gray.png differ
diff --git a/img/clothes/upper/croppedhoodie/right_gray.png b/img/clothes/upper/croppedhoodie/right_gray.png
index 7692eb98acfb13451ab3b6c0ca1d5fb79a2d6ceb..7874173b4a13b0f01981c0bc471a569d253bb5ac 100644
Binary files a/img/clothes/upper/croppedhoodie/right_gray.png and b/img/clothes/upper/croppedhoodie/right_gray.png differ
diff --git a/img/clothes/upper/croppedhoodie/tattered_gray.png b/img/clothes/upper/croppedhoodie/tattered_gray.png
index f762d4441d6cb703454ceaf08d1f2cfd5792cad6..6d9bad031deb1a8f15aa4ad9ddd1d64b7d4157c5 100644
Binary files a/img/clothes/upper/croppedhoodie/tattered_gray.png and b/img/clothes/upper/croppedhoodie/tattered_gray.png differ
diff --git a/img/clothes/upper/croppedhoodie/torn_gray.png b/img/clothes/upper/croppedhoodie/torn_gray.png
index 2246b8b98f91f393763b6f254b3dd911b50a0264..477b33c9365e6e1af547ea8ed5c2694f3bb41733 100644
Binary files a/img/clothes/upper/croppedhoodie/torn_gray.png and b/img/clothes/upper/croppedhoodie/torn_gray.png differ
diff --git a/img/clothes/upper/croptop/2_gray.png b/img/clothes/upper/croptop/2_gray.png
index 9f2610324adf80bcb7580761cd4ddae2fca3810d..6f4d364d74a7cd3db62ebcb0b34fdea2185e18e1 100644
Binary files a/img/clothes/upper/croptop/2_gray.png and b/img/clothes/upper/croptop/2_gray.png differ
diff --git a/img/clothes/upper/croptop/3_gray.png b/img/clothes/upper/croptop/3_gray.png
index 9d0bb274780d58dbf6c3d802ea0ab7bf2b563c0d..b67630de46ed9fbc14d1b2961737898c958d1804 100644
Binary files a/img/clothes/upper/croptop/3_gray.png and b/img/clothes/upper/croptop/3_gray.png differ
diff --git a/img/clothes/upper/croptop/4_gray.png b/img/clothes/upper/croptop/4_gray.png
index b3e98fe619171eeebf6fdfd99d54f5188669e1c7..37526033f086e7c0bb7eaa78a28c2afa11c1b0cc 100644
Binary files a/img/clothes/upper/croptop/4_gray.png and b/img/clothes/upper/croptop/4_gray.png differ
diff --git a/img/clothes/upper/croptop/5_gray.png b/img/clothes/upper/croptop/5_gray.png
index a880dbcb238d88c4f2e5a738b8d9ad9adf15cc8e..d6d9aa748f24e5d69e7cbd2c43711e4dbf097723 100644
Binary files a/img/clothes/upper/croptop/5_gray.png and b/img/clothes/upper/croptop/5_gray.png differ
diff --git a/img/clothes/upper/croptop/frayed_gray.png b/img/clothes/upper/croptop/frayed_gray.png
index 95633b7eb7855efb33915a8130c8e5fa30ec7761..14dcf509ced374dfaae47e16ae87aea867379d96 100644
Binary files a/img/clothes/upper/croptop/frayed_gray.png and b/img/clothes/upper/croptop/frayed_gray.png differ
diff --git a/img/clothes/upper/croptop/full_gray.png b/img/clothes/upper/croptop/full_gray.png
index a3fc382f75535a572a91794e1fb5be42dd261768..d5d6eeb7f0023e9f44c36d5aa99cbb2f5e664619 100644
Binary files a/img/clothes/upper/croptop/full_gray.png and b/img/clothes/upper/croptop/full_gray.png differ
diff --git a/img/clothes/upper/croptop/tattered_gray.png b/img/clothes/upper/croptop/tattered_gray.png
index d2c215dfdc1fd912af9bc85723e398aa0c89646c..f9d42cccde19c83b090423d63437534e9a75d7c0 100644
Binary files a/img/clothes/upper/croptop/tattered_gray.png and b/img/clothes/upper/croptop/tattered_gray.png differ
diff --git a/img/clothes/upper/croptop/torn_gray.png b/img/clothes/upper/croptop/torn_gray.png
index 035fadf2d08794107a8023314f1629e7ea33f91f..cbde8b191c7a1e1e47842178821586f20ee3100b 100644
Binary files a/img/clothes/upper/croptop/torn_gray.png and b/img/clothes/upper/croptop/torn_gray.png differ
diff --git a/img/clothes/upper/diving/0_acc.png b/img/clothes/upper/diving/0_acc.png
index 4697f42c1b841361fd1093a597e86dd4b1d37d80..d94881cf33e4ca6691b0d886e10ac90ba9785015 100644
Binary files a/img/clothes/upper/diving/0_acc.png and b/img/clothes/upper/diving/0_acc.png differ
diff --git a/img/clothes/upper/diving/1_acc.png b/img/clothes/upper/diving/1_acc.png
index 4697f42c1b841361fd1093a597e86dd4b1d37d80..d94881cf33e4ca6691b0d886e10ac90ba9785015 100644
Binary files a/img/clothes/upper/diving/1_acc.png and b/img/clothes/upper/diving/1_acc.png differ
diff --git a/img/clothes/upper/diving/2_acc.png b/img/clothes/upper/diving/2_acc.png
index 086a93ff7e7aa703bb91cf375779d7fc8a0e7d51..ab048d14dd7ed51828238fa7b237006987b7d1fe 100644
Binary files a/img/clothes/upper/diving/2_acc.png and b/img/clothes/upper/diving/2_acc.png differ
diff --git a/img/clothes/upper/diving/3_acc.png b/img/clothes/upper/diving/3_acc.png
index 11dd268d1e3b4018c5daeaa70f09b75be21651ed..2f91abf73b58f710a8623ae81a28ef2d32de92cf 100644
Binary files a/img/clothes/upper/diving/3_acc.png and b/img/clothes/upper/diving/3_acc.png differ
diff --git a/img/clothes/upper/diving/4_acc.png b/img/clothes/upper/diving/4_acc.png
index fcb2ff8751127cfd9501d00251ed468601c5b4b4..6aa11718fa3b04b05e08fc9539310bd07c40aabb 100644
Binary files a/img/clothes/upper/diving/4_acc.png and b/img/clothes/upper/diving/4_acc.png differ
diff --git a/img/clothes/upper/diving/5_acc.png b/img/clothes/upper/diving/5_acc.png
index fcb2ff8751127cfd9501d00251ed468601c5b4b4..6aa11718fa3b04b05e08fc9539310bd07c40aabb 100644
Binary files a/img/clothes/upper/diving/5_acc.png and b/img/clothes/upper/diving/5_acc.png differ
diff --git a/img/clothes/upper/diving/6_acc.png b/img/clothes/upper/diving/6_acc.png
index fcb2ff8751127cfd9501d00251ed468601c5b4b4..6aa11718fa3b04b05e08fc9539310bd07c40aabb 100644
Binary files a/img/clothes/upper/diving/6_acc.png and b/img/clothes/upper/diving/6_acc.png differ
diff --git a/img/clothes/upper/diving/acc_frayed.png b/img/clothes/upper/diving/acc_frayed.png
index d8d57eca36bb9e1c27fada54c4b791fa06815ba5..87201529c3971df4e1dd530830a790dd5f8599a2 100644
Binary files a/img/clothes/upper/diving/acc_frayed.png and b/img/clothes/upper/diving/acc_frayed.png differ
diff --git a/img/clothes/upper/diving/acc_full.png b/img/clothes/upper/diving/acc_full.png
index d4ba9ba1565fb816587750070b34a87032d69065..5dcdbee4f7adcc9a7ee297f9d06d7cd8beb259d3 100644
Binary files a/img/clothes/upper/diving/acc_full.png and b/img/clothes/upper/diving/acc_full.png differ
diff --git a/img/clothes/upper/diving/acc_tattered.png b/img/clothes/upper/diving/acc_tattered.png
index ab6cb3d64c7684b13c6ea0afe86d597d316c20ec..cb37e3b78839b317ba7c26b2f74caefc39cdb400 100644
Binary files a/img/clothes/upper/diving/acc_tattered.png and b/img/clothes/upper/diving/acc_tattered.png differ
diff --git a/img/clothes/upper/diving/acc_torn.png b/img/clothes/upper/diving/acc_torn.png
index 401378e2778fdeb42c6e2768003e012ac13b0693..61edbe8b368bafd86b823fde8f5178c5cfd56eb5 100644
Binary files a/img/clothes/upper/diving/acc_torn.png and b/img/clothes/upper/diving/acc_torn.png differ
diff --git a/img/clothes/upper/diving/hold_gray.png b/img/clothes/upper/diving/hold_gray.png
index 369ce010c22c70ba3e3ffe857ba9321814aee991..0b3ce64c4c56e777623fb12e45b4823cb72ff09c 100644
Binary files a/img/clothes/upper/diving/hold_gray.png and b/img/clothes/upper/diving/hold_gray.png differ
diff --git a/img/clothes/upper/diving/left_cover_gray.png b/img/clothes/upper/diving/left_cover_gray.png
index e85608ba7128491bc3b3c1db279be41be56a4805..ed0a6491cb48d3d78f632a896218a0156f04aa84 100644
Binary files a/img/clothes/upper/diving/left_cover_gray.png and b/img/clothes/upper/diving/left_cover_gray.png differ
diff --git a/img/clothes/upper/diving/left_gray.png b/img/clothes/upper/diving/left_gray.png
index 8163e9bbfc4b141801d6112822703d44de49beb7..a78197a860bec5e6c80746965082acdc158cd5fc 100644
Binary files a/img/clothes/upper/diving/left_gray.png and b/img/clothes/upper/diving/left_gray.png differ
diff --git a/img/clothes/upper/diving/right_cover_gray.png b/img/clothes/upper/diving/right_cover_gray.png
index 381ecd269b15599ae51e85fcc66ccff5430aa870..fdc9f7d60e7333ab290e25e29f8036abb235afd7 100644
Binary files a/img/clothes/upper/diving/right_cover_gray.png and b/img/clothes/upper/diving/right_cover_gray.png differ
diff --git a/img/clothes/upper/diving/right_gray.png b/img/clothes/upper/diving/right_gray.png
index b261d0dc8078e2821563d8506fc93a7cc3cd1255..d444909d738c48232fe168fb066c15d884b9a165 100644
Binary files a/img/clothes/upper/diving/right_gray.png and b/img/clothes/upper/diving/right_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/2_gray.png b/img/clothes/upper/doublebreasted/2_gray.png
index 0c38811adcbca50c40c16e014b6e3cb89267b2c8..cd12a23cca2b80fb91d2bdd0cea7645decdc2950 100644
Binary files a/img/clothes/upper/doublebreasted/2_gray.png and b/img/clothes/upper/doublebreasted/2_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/3_gray.png b/img/clothes/upper/doublebreasted/3_gray.png
index 08230f31f7501042223395aef8fe2a08f52bb798..eee4b1eb2850316a57280b1fb45f00adaf6e2e5e 100644
Binary files a/img/clothes/upper/doublebreasted/3_gray.png and b/img/clothes/upper/doublebreasted/3_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/4_gray.png b/img/clothes/upper/doublebreasted/4_gray.png
index 413a0b79b85c66cf5cf05a8eed9e57399e375a64..13cb87ab3efa6f90da3bcb875a916923cb210815 100644
Binary files a/img/clothes/upper/doublebreasted/4_gray.png and b/img/clothes/upper/doublebreasted/4_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/6_gray.png b/img/clothes/upper/doublebreasted/6_gray.png
index 962c1d51171f1e30fdb98c1d1a04be9b938385b6..490a16c6759e785dd68e74db2c6d548ac4d8caf8 100644
Binary files a/img/clothes/upper/doublebreasted/6_gray.png and b/img/clothes/upper/doublebreasted/6_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/acc_gray.png b/img/clothes/upper/doublebreasted/acc_gray.png
index aae905267b17235263ae61c13eb16818ac6e91a7..833e9ef764f756ee5fbbbf351b88ceb758443607 100644
Binary files a/img/clothes/upper/doublebreasted/acc_gray.png and b/img/clothes/upper/doublebreasted/acc_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/frayed_gray.png b/img/clothes/upper/doublebreasted/frayed_gray.png
index 5f5e6833a443633e072fc8c835dd335b79d40cc3..57baa4cc1c2b665d7e7f29f9c0b97463043e4cb9 100644
Binary files a/img/clothes/upper/doublebreasted/frayed_gray.png and b/img/clothes/upper/doublebreasted/frayed_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/full_gray.png b/img/clothes/upper/doublebreasted/full_gray.png
index d46ed00046d5f4383c8c217806f04fb2344c44e5..5e8ad67612143074180711a87bee79eb50d84d91 100644
Binary files a/img/clothes/upper/doublebreasted/full_gray.png and b/img/clothes/upper/doublebreasted/full_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/hold_acc_gray.png b/img/clothes/upper/doublebreasted/hold_acc_gray.png
index 0fdaa5a301a305996759a36a6d94a97254bb20b6..201e819783b94e994dfe539d3f34c08bffe795d2 100644
Binary files a/img/clothes/upper/doublebreasted/hold_acc_gray.png and b/img/clothes/upper/doublebreasted/hold_acc_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/hold_gray.png b/img/clothes/upper/doublebreasted/hold_gray.png
index 50bff4daecea7a83cbbe43c501b4be5432f6a6b4..02a01021790afc8e5f55265ed4e242a8fcfc98f2 100644
Binary files a/img/clothes/upper/doublebreasted/hold_gray.png and b/img/clothes/upper/doublebreasted/hold_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/left_acc_gray.png b/img/clothes/upper/doublebreasted/left_acc_gray.png
index a15b4ae87247c13479943ed0aaba82cd26d32e65..00760c403490647838b7114f2745ea66d060e75c 100644
Binary files a/img/clothes/upper/doublebreasted/left_acc_gray.png and b/img/clothes/upper/doublebreasted/left_acc_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/left_cover_acc_gray.png b/img/clothes/upper/doublebreasted/left_cover_acc_gray.png
index 2acd9d2af085f608e3698fa309f00faf91f3942c..9780f7c9cefd254a997c67a0e9f8ca912074a891 100644
Binary files a/img/clothes/upper/doublebreasted/left_cover_acc_gray.png and b/img/clothes/upper/doublebreasted/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/left_cover_gray.png b/img/clothes/upper/doublebreasted/left_cover_gray.png
index 566a139cc852e0766a05b17afda681afdb3bf045..eaeb3bb80216da682e077f4bd27b45bb115c5ed9 100644
Binary files a/img/clothes/upper/doublebreasted/left_cover_gray.png and b/img/clothes/upper/doublebreasted/left_cover_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/left_gray.png b/img/clothes/upper/doublebreasted/left_gray.png
index dd398b31a5e95406973308499cb930c0ac56e562..f542f4ff9860d8dcc0ff8d93d54e4201a22358af 100644
Binary files a/img/clothes/upper/doublebreasted/left_gray.png and b/img/clothes/upper/doublebreasted/left_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/right_acc_gray.png b/img/clothes/upper/doublebreasted/right_acc_gray.png
index 22c0aad875c9b6db67bc76c1e7e2cda1d7774895..113e9800221912cc31cdb154ac0107183c445e3a 100644
Binary files a/img/clothes/upper/doublebreasted/right_acc_gray.png and b/img/clothes/upper/doublebreasted/right_acc_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/right_cover_acc_gray.png b/img/clothes/upper/doublebreasted/right_cover_acc_gray.png
index 040b2d2a9f5102f380ad4dec950ce843ff435e58..25ab0949f2abfb69e6ed322ecf82118976e86a44 100644
Binary files a/img/clothes/upper/doublebreasted/right_cover_acc_gray.png and b/img/clothes/upper/doublebreasted/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/right_cover_gray.png b/img/clothes/upper/doublebreasted/right_cover_gray.png
index 038d830e5ea33adcf2f6471cc6f3c36d0a7b09a7..264bc8093042a31d394a9d0bbef08645c4c4cf40 100644
Binary files a/img/clothes/upper/doublebreasted/right_cover_gray.png and b/img/clothes/upper/doublebreasted/right_cover_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/right_gray.png b/img/clothes/upper/doublebreasted/right_gray.png
index d2809691a4c3565349f08305684659966eeffe3f..8f2a8e40601ece504463f74c74ce0e4055f34ffc 100644
Binary files a/img/clothes/upper/doublebreasted/right_gray.png and b/img/clothes/upper/doublebreasted/right_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/tattered_gray.png b/img/clothes/upper/doublebreasted/tattered_gray.png
index 57c7536aaa55f2a3138d24d3fe39c582d3414081..f2406a9044cb0c55b995b5697eb15ea4cf32e738 100644
Binary files a/img/clothes/upper/doublebreasted/tattered_gray.png and b/img/clothes/upper/doublebreasted/tattered_gray.png differ
diff --git a/img/clothes/upper/doublebreasted/torn_gray.png b/img/clothes/upper/doublebreasted/torn_gray.png
index b932ed879cd138839446fc4e7f29302ac8fae903..0393dd3f2beb18a6eba067f5251ce0617b137598 100644
Binary files a/img/clothes/upper/doublebreasted/torn_gray.png and b/img/clothes/upper/doublebreasted/torn_gray.png differ
diff --git a/img/clothes/upper/dress/1_alt_gray.png b/img/clothes/upper/dress/1_alt_gray.png
index a65cf1f4f09a7ca578aa23da0680860c4056a86b..ced20d68ae4934142e5b975d1811dc014f23f32b 100644
Binary files a/img/clothes/upper/dress/1_alt_gray.png and b/img/clothes/upper/dress/1_alt_gray.png differ
diff --git a/img/clothes/upper/dress/1_gray.png b/img/clothes/upper/dress/1_gray.png
index a65cf1f4f09a7ca578aa23da0680860c4056a86b..ced20d68ae4934142e5b975d1811dc014f23f32b 100644
Binary files a/img/clothes/upper/dress/1_gray.png and b/img/clothes/upper/dress/1_gray.png differ
diff --git a/img/clothes/upper/dress/2_alt_gray.png b/img/clothes/upper/dress/2_alt_gray.png
index 2bd1a0ac6145dd0e4a7358a0d3642331faa0df8e..24e0612ff016b92084fa172a68109b0a7316ca06 100644
Binary files a/img/clothes/upper/dress/2_alt_gray.png and b/img/clothes/upper/dress/2_alt_gray.png differ
diff --git a/img/clothes/upper/dress/2_gray.png b/img/clothes/upper/dress/2_gray.png
index 2bd1a0ac6145dd0e4a7358a0d3642331faa0df8e..24e0612ff016b92084fa172a68109b0a7316ca06 100644
Binary files a/img/clothes/upper/dress/2_gray.png and b/img/clothes/upper/dress/2_gray.png differ
diff --git a/img/clothes/upper/dress/3_alt_gray.png b/img/clothes/upper/dress/3_alt_gray.png
index e07644c2dbadebc15a8abf63d1b47775f4b35bec..f27a07a4b2d5a8f525a9ed7feb31a249c2a9e91b 100644
Binary files a/img/clothes/upper/dress/3_alt_gray.png and b/img/clothes/upper/dress/3_alt_gray.png differ
diff --git a/img/clothes/upper/dress/3_gray.png b/img/clothes/upper/dress/3_gray.png
index 0db2ed2c071fab96fbdb1a8d021f9c716d7a0e9d..5a3a4008d7839fa20c29175f597e2f417c638a4f 100644
Binary files a/img/clothes/upper/dress/3_gray.png and b/img/clothes/upper/dress/3_gray.png differ
diff --git a/img/clothes/upper/dress/4_alt_gray.png b/img/clothes/upper/dress/4_alt_gray.png
index c88ee225d3cd53a78b42c516eb44c4a66ba46e07..9bbeca282bcf30af2b778e774d5528e889e97d4b 100644
Binary files a/img/clothes/upper/dress/4_alt_gray.png and b/img/clothes/upper/dress/4_alt_gray.png differ
diff --git a/img/clothes/upper/dress/4_gray.png b/img/clothes/upper/dress/4_gray.png
index 5576374a446832185d86a16692112e2f44d74f44..47bbde253cf544fb5e0989eba227d82b66dcaaa8 100644
Binary files a/img/clothes/upper/dress/4_gray.png and b/img/clothes/upper/dress/4_gray.png differ
diff --git a/img/clothes/upper/dress/5_alt_gray.png b/img/clothes/upper/dress/5_alt_gray.png
index d762595b757e65930f475cdcb4667e12da39a415..977b4b0d0e4b801e0f02dd11573c024d270e63b9 100644
Binary files a/img/clothes/upper/dress/5_alt_gray.png and b/img/clothes/upper/dress/5_alt_gray.png differ
diff --git a/img/clothes/upper/dress/5_gray.png b/img/clothes/upper/dress/5_gray.png
index 4b605b3cb9d02438946f9395cbddf48d500396b5..9f645bf80f3ba5c55d01e789b8ad2fe37d159ef2 100644
Binary files a/img/clothes/upper/dress/5_gray.png and b/img/clothes/upper/dress/5_gray.png differ
diff --git a/img/clothes/upper/dress/frayed_alt_gray.png b/img/clothes/upper/dress/frayed_alt_gray.png
index dca27a94edaf441c1b4cb2b8c9de7bf8b128bbea..9e6fbe86e82e091e07a0179d2bb2eb8e7c63b9ed 100644
Binary files a/img/clothes/upper/dress/frayed_alt_gray.png and b/img/clothes/upper/dress/frayed_alt_gray.png differ
diff --git a/img/clothes/upper/dress/frayed_gray.png b/img/clothes/upper/dress/frayed_gray.png
index fa7355f0a6ce7264ad3520251ae9a8c95724aded..e5785a6a34e3af568ea898420cb7e9c25e37d9e5 100644
Binary files a/img/clothes/upper/dress/frayed_gray.png and b/img/clothes/upper/dress/frayed_gray.png differ
diff --git a/img/clothes/upper/dress/full_alt_gray.png b/img/clothes/upper/dress/full_alt_gray.png
index 7c6ddc54eb5b0427187503496835ae05454221d4..81b17d427e08dde21ef9cdd42059df77d5733e22 100644
Binary files a/img/clothes/upper/dress/full_alt_gray.png and b/img/clothes/upper/dress/full_alt_gray.png differ
diff --git a/img/clothes/upper/dress/full_gray.png b/img/clothes/upper/dress/full_gray.png
index c57f06e693cda0f3d0ea3799244e6734ac072b1a..a8ab83fa5df7726d14797e1d214016d3339846a0 100644
Binary files a/img/clothes/upper/dress/full_gray.png and b/img/clothes/upper/dress/full_gray.png differ
diff --git a/img/clothes/upper/dress/hold_gray.png b/img/clothes/upper/dress/hold_gray.png
index 80b486acdec59f625b4c7d06c1595c0099b25e41..d405b78b87c7cae4826a90e13cf7d02af4a39b56 100644
Binary files a/img/clothes/upper/dress/hold_gray.png and b/img/clothes/upper/dress/hold_gray.png differ
diff --git a/img/clothes/upper/dress/hold_rolled_gray.png b/img/clothes/upper/dress/hold_rolled_gray.png
index d7e098b93948a6197eebfca4973a4973a58e43fc..bae7537333e42e98aef6e05faf9561db83191139 100644
Binary files a/img/clothes/upper/dress/hold_rolled_gray.png and b/img/clothes/upper/dress/hold_rolled_gray.png differ
diff --git a/img/clothes/upper/dress/left_cover_gray.png b/img/clothes/upper/dress/left_cover_gray.png
index f34f1c7a0702b3603c4062b06747fbe22cc310cb..2fb747bb15b6b0a31c8f8cfe0eefa65b5b24b574 100644
Binary files a/img/clothes/upper/dress/left_cover_gray.png and b/img/clothes/upper/dress/left_cover_gray.png differ
diff --git a/img/clothes/upper/dress/left_cover_rolled_gray.png b/img/clothes/upper/dress/left_cover_rolled_gray.png
index 9a55b8c5a159a33cbb3fa7c4317b4c217e84c9e1..d29bca5848c7957b25d413733d206984bfac6267 100644
Binary files a/img/clothes/upper/dress/left_cover_rolled_gray.png and b/img/clothes/upper/dress/left_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/dress/left_gray.png b/img/clothes/upper/dress/left_gray.png
index 6ef9cc2b4d75b603e8c3dc2205113b0e4b179571..fbee749b2753aa6624df09d37c6aa5363dca62ae 100644
Binary files a/img/clothes/upper/dress/left_gray.png and b/img/clothes/upper/dress/left_gray.png differ
diff --git a/img/clothes/upper/dress/left_rolled_gray.png b/img/clothes/upper/dress/left_rolled_gray.png
index 8457f17da47b8ac20ff5a605cfdc699eb33163f3..a6cb490c8caa43ebc941153f8a5178d31da57ac8 100644
Binary files a/img/clothes/upper/dress/left_rolled_gray.png and b/img/clothes/upper/dress/left_rolled_gray.png differ
diff --git a/img/clothes/upper/dress/right_cover_gray.png b/img/clothes/upper/dress/right_cover_gray.png
index a27ff353b32e836bc8bae16f3a031196282dff9d..0bbd006cf850ae0392c9cdc46539304cfc287baa 100644
Binary files a/img/clothes/upper/dress/right_cover_gray.png and b/img/clothes/upper/dress/right_cover_gray.png differ
diff --git a/img/clothes/upper/dress/right_cover_rolled_gray.png b/img/clothes/upper/dress/right_cover_rolled_gray.png
index c7f6b6b4805ef586179db6430690fc3bab3c47c9..55e21b4169a77db749abecab2d0a285bbd7bb4c1 100644
Binary files a/img/clothes/upper/dress/right_cover_rolled_gray.png and b/img/clothes/upper/dress/right_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/dress/right_gray.png b/img/clothes/upper/dress/right_gray.png
index 891c372acc8488b0d858b25a93e7f7226fa85560..d0917a7688f895272e8efc510a13b1f5e1582856 100644
Binary files a/img/clothes/upper/dress/right_gray.png and b/img/clothes/upper/dress/right_gray.png differ
diff --git a/img/clothes/upper/dress/right_rolled_gray.png b/img/clothes/upper/dress/right_rolled_gray.png
index 87e6366ad49fe90d1c8da0535a5a664d3023bd9a..9b50e2829132f371faaf4151fad99127c0461827 100644
Binary files a/img/clothes/upper/dress/right_rolled_gray.png and b/img/clothes/upper/dress/right_rolled_gray.png differ
diff --git a/img/clothes/upper/dress/tattered_alt_gray.png b/img/clothes/upper/dress/tattered_alt_gray.png
index 2ea34ed11fc78d73eaadea2ea7b1ef1bcb16f131..ef8fd9468c5f687df6a32e511bb955e27d28e998 100644
Binary files a/img/clothes/upper/dress/tattered_alt_gray.png and b/img/clothes/upper/dress/tattered_alt_gray.png differ
diff --git a/img/clothes/upper/dress/tattered_gray.png b/img/clothes/upper/dress/tattered_gray.png
index 3db29646f1d6ed02eabc96d46ff0350a5a9bc54f..fb15cb29b6ff91bf57e3acde2672e06e818d3d21 100644
Binary files a/img/clothes/upper/dress/tattered_gray.png and b/img/clothes/upper/dress/tattered_gray.png differ
diff --git a/img/clothes/upper/dress/torn_alt_gray.png b/img/clothes/upper/dress/torn_alt_gray.png
index 624a74d36f2ddff0ef12c2dea319048a7e3fc7be..81a4d6b97ef862048e0a645d35ecde6324b00b7f 100644
Binary files a/img/clothes/upper/dress/torn_alt_gray.png and b/img/clothes/upper/dress/torn_alt_gray.png differ
diff --git a/img/clothes/upper/dress/torn_gray.png b/img/clothes/upper/dress/torn_gray.png
index 1857bfa8c8e59ad4c2000c0cf09a4589e1557e06..d712935ca55dd016d7b91fe6a5f2f4440893fcc2 100644
Binary files a/img/clothes/upper/dress/torn_gray.png and b/img/clothes/upper/dress/torn_gray.png differ
diff --git a/img/clothes/upper/drowneddress/frayed.png b/img/clothes/upper/drowneddress/frayed.png
index f9cc52ca17d2dffd91111bf329d58ff19cfa195d..83c207143b98ec79324fe115808660149f5450d4 100644
Binary files a/img/clothes/upper/drowneddress/frayed.png and b/img/clothes/upper/drowneddress/frayed.png differ
diff --git a/img/clothes/upper/drowneddress/full.png b/img/clothes/upper/drowneddress/full.png
index f9cc52ca17d2dffd91111bf329d58ff19cfa195d..83c207143b98ec79324fe115808660149f5450d4 100644
Binary files a/img/clothes/upper/drowneddress/full.png and b/img/clothes/upper/drowneddress/full.png differ
diff --git a/img/clothes/upper/drowneddress/hold.png b/img/clothes/upper/drowneddress/hold.png
index 0a71ce727e163a8b33aa50ca6937c9c337a4bdb7..7764ed6371c7b7bb9eae142b74e4d727b990c4dc 100644
Binary files a/img/clothes/upper/drowneddress/hold.png and b/img/clothes/upper/drowneddress/hold.png differ
diff --git a/img/clothes/upper/drowneddress/left.png b/img/clothes/upper/drowneddress/left.png
index b55ddc98318583b58fd2b92816b98e4a2f68feda..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/drowneddress/left.png and b/img/clothes/upper/drowneddress/left.png differ
diff --git a/img/clothes/upper/drowneddress/right.png b/img/clothes/upper/drowneddress/right.png
index b55ddc98318583b58fd2b92816b98e4a2f68feda..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/drowneddress/right.png and b/img/clothes/upper/drowneddress/right.png differ
diff --git a/img/clothes/upper/drowneddress/tattered.png b/img/clothes/upper/drowneddress/tattered.png
index fb0c86023cabf68cf2a6be4a0818ede859c60357..4c34b9608281f9bda6e33309346bdcbe52f85251 100644
Binary files a/img/clothes/upper/drowneddress/tattered.png and b/img/clothes/upper/drowneddress/tattered.png differ
diff --git a/img/clothes/upper/drowneddress/torn.png b/img/clothes/upper/drowneddress/torn.png
index f9cc52ca17d2dffd91111bf329d58ff19cfa195d..83c207143b98ec79324fe115808660149f5450d4 100644
Binary files a/img/clothes/upper/drowneddress/torn.png and b/img/clothes/upper/drowneddress/torn.png differ
diff --git a/img/clothes/upper/eveninggown/3_gray.png b/img/clothes/upper/eveninggown/3_gray.png
index c157ce833de085b6f36f54dadca8586f6f763b46..edb22ef51bb7ea605507702a9c89db0378b43178 100644
Binary files a/img/clothes/upper/eveninggown/3_gray.png and b/img/clothes/upper/eveninggown/3_gray.png differ
diff --git a/img/clothes/upper/eveninggown/4_gray.png b/img/clothes/upper/eveninggown/4_gray.png
index 08d2dd993272cd31f7c741d399ef3359d9ca5c7e..a1547a4bf4415d5efd9cb4f3cb0431d281f0bccd 100644
Binary files a/img/clothes/upper/eveninggown/4_gray.png and b/img/clothes/upper/eveninggown/4_gray.png differ
diff --git a/img/clothes/upper/eveninggown/6_gray.png b/img/clothes/upper/eveninggown/6_gray.png
index 08d2dd993272cd31f7c741d399ef3359d9ca5c7e..a1547a4bf4415d5efd9cb4f3cb0431d281f0bccd 100644
Binary files a/img/clothes/upper/eveninggown/6_gray.png and b/img/clothes/upper/eveninggown/6_gray.png differ
diff --git a/img/clothes/upper/eveninggown/frayed_gray.png b/img/clothes/upper/eveninggown/frayed_gray.png
index 014f9d788905b7c36bd24d396bc519063b3af814..c42aeea350ebcd5b48ed3b47f6e20263d1d36f3e 100644
Binary files a/img/clothes/upper/eveninggown/frayed_gray.png and b/img/clothes/upper/eveninggown/frayed_gray.png differ
diff --git a/img/clothes/upper/eveninggown/full_gray.png b/img/clothes/upper/eveninggown/full_gray.png
index d878999356c3c8bd2bd186531d348a53e300257e..2505c047bc402e95b70ce47054f1d3be84e68980 100644
Binary files a/img/clothes/upper/eveninggown/full_gray.png and b/img/clothes/upper/eveninggown/full_gray.png differ
diff --git a/img/clothes/upper/eveninggown/tattered_gray.png b/img/clothes/upper/eveninggown/tattered_gray.png
index 0711c76779a9a06e50a257cd94e092a390d57f3b..4dbaa087041371191ea44a3db3bda5b42a0e8196 100644
Binary files a/img/clothes/upper/eveninggown/tattered_gray.png and b/img/clothes/upper/eveninggown/tattered_gray.png differ
diff --git a/img/clothes/upper/eveninggown/torn_gray.png b/img/clothes/upper/eveninggown/torn_gray.png
index 026733a19ee726bf7caf2fddb0d80c7da02dcf76..ac1bf2352a7765a359476ed5b9256f4f518abd18 100644
Binary files a/img/clothes/upper/eveninggown/torn_gray.png and b/img/clothes/upper/eveninggown/torn_gray.png differ
diff --git a/img/clothes/upper/football/acc_gray.png b/img/clothes/upper/football/acc_gray.png
index 25727fe35915345d26e2feb863be024831763163..98dc5950ca5a3c8a8feb66c45b3fe7ea51d30e2c 100644
Binary files a/img/clothes/upper/football/acc_gray.png and b/img/clothes/upper/football/acc_gray.png differ
diff --git a/img/clothes/upper/football/frayed_gray.png b/img/clothes/upper/football/frayed_gray.png
index 021c885bb70fdabb636edcde5da88ed477c6ad9f..482322a67e92488991d09dbbfaa59dd9788b05be 100644
Binary files a/img/clothes/upper/football/frayed_gray.png and b/img/clothes/upper/football/frayed_gray.png differ
diff --git a/img/clothes/upper/football/full_gray.png b/img/clothes/upper/football/full_gray.png
index a0b3845ce05bffd7228b26920aa2b5e12efb8033..5f4f808c772167338e46b215ff38162831919d20 100644
Binary files a/img/clothes/upper/football/full_gray.png and b/img/clothes/upper/football/full_gray.png differ
diff --git a/img/clothes/upper/football/hold_gray.png b/img/clothes/upper/football/hold_gray.png
index 6a542f8163665cec6f602bbe09d5fff628eb699a..f63036f62a4d1b31951f72ad086a543daaa48991 100644
Binary files a/img/clothes/upper/football/hold_gray.png and b/img/clothes/upper/football/hold_gray.png differ
diff --git a/img/clothes/upper/football/left_cover_gray.png b/img/clothes/upper/football/left_cover_gray.png
index 835eb0497386ca5e9b425cb376509cfbb6f16779..fa2e22fa8746be956fb52fa5a024d05ac848a4ad 100644
Binary files a/img/clothes/upper/football/left_cover_gray.png and b/img/clothes/upper/football/left_cover_gray.png differ
diff --git a/img/clothes/upper/football/left_gray.png b/img/clothes/upper/football/left_gray.png
index 9df8eaaf6c8e0e61b0d962938feb0a2e3d513adc..ccbadf39367c1a0f3c7937d57879dbc4df74fc6f 100644
Binary files a/img/clothes/upper/football/left_gray.png and b/img/clothes/upper/football/left_gray.png differ
diff --git a/img/clothes/upper/football/right_cover_gray.png b/img/clothes/upper/football/right_cover_gray.png
index 24f9668c1a77d097a247193509eeda26b4f0bd3a..6ac820e590952e91cdc6d762f87ae3b4e4c57a5c 100644
Binary files a/img/clothes/upper/football/right_cover_gray.png and b/img/clothes/upper/football/right_cover_gray.png differ
diff --git a/img/clothes/upper/football/right_gray.png b/img/clothes/upper/football/right_gray.png
index 1fa938715570cf026f68eeb825319073b7e54c01..30e15ddf9325daa201b4ede52295a7481e50378f 100644
Binary files a/img/clothes/upper/football/right_gray.png and b/img/clothes/upper/football/right_gray.png differ
diff --git a/img/clothes/upper/football/tattered_gray.png b/img/clothes/upper/football/tattered_gray.png
index 75bc23361f6e33ad645924f79836ef39ce0db453..8fcb5a05a7c017fc94c26e3e3e881b1a3d806eca 100644
Binary files a/img/clothes/upper/football/tattered_gray.png and b/img/clothes/upper/football/tattered_gray.png differ
diff --git a/img/clothes/upper/football/torn_gray.png b/img/clothes/upper/football/torn_gray.png
index f78135b6f8c6be3d5bdf4c707d82ebf2581df416..ec28fc5c967987d4dc51088e5ef9ca80c10b2398 100644
Binary files a/img/clothes/upper/football/torn_gray.png and b/img/clothes/upper/football/torn_gray.png differ
diff --git a/img/clothes/upper/full2.png b/img/clothes/upper/full2.png
index b0ec5a62695887e248bcf0bf1120f65b9b40f914..18c78afaf5d70bd534d2a62752e39adb96ab932a 100644
Binary files a/img/clothes/upper/full2.png and b/img/clothes/upper/full2.png differ
diff --git a/img/clothes/upper/futuresuit/0_acc_gray.png b/img/clothes/upper/futuresuit/0_acc_gray.png
index 2f0f378b6026853f7264fff2fe42687a92bc87fa..02bcea55dd8b3761588ffe6350e18d8ded6a4287 100644
Binary files a/img/clothes/upper/futuresuit/0_acc_gray.png and b/img/clothes/upper/futuresuit/0_acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/0_gray.png b/img/clothes/upper/futuresuit/0_gray.png
index 8f9d95bcb59329b7b5f290dede91e2835c2e0fd1..eef5382b36f0c0121c8025defb5d3675cf63952f 100644
Binary files a/img/clothes/upper/futuresuit/0_gray.png and b/img/clothes/upper/futuresuit/0_gray.png differ
diff --git a/img/clothes/upper/futuresuit/1_acc_gray.png b/img/clothes/upper/futuresuit/1_acc_gray.png
index 47f557837cab6e5e607af83d86aed28fe9b244e0..50908f5bde6cba148abd44ae80a8260968c4c9e5 100644
Binary files a/img/clothes/upper/futuresuit/1_acc_gray.png and b/img/clothes/upper/futuresuit/1_acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/1_gray.png b/img/clothes/upper/futuresuit/1_gray.png
index c62bab37629f26630c5434426a2f27ac3ba5dc19..a33ed5bf4e351dc582b129b766eb22bbc9516525 100644
Binary files a/img/clothes/upper/futuresuit/1_gray.png and b/img/clothes/upper/futuresuit/1_gray.png differ
diff --git a/img/clothes/upper/futuresuit/2_acc_gray.png b/img/clothes/upper/futuresuit/2_acc_gray.png
index 6d4a04a626dfefca9e785e69a5e99d6ec252d9a4..31805bc9375b23caf50f5f26a3dd87e93cb83129 100644
Binary files a/img/clothes/upper/futuresuit/2_acc_gray.png and b/img/clothes/upper/futuresuit/2_acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/2_gray.png b/img/clothes/upper/futuresuit/2_gray.png
index adc59a291d35d6718f1cc86a8808c3cbab21673a..817d6369a76ae1af7cbfbcbefd4702fca609b6aa 100644
Binary files a/img/clothes/upper/futuresuit/2_gray.png and b/img/clothes/upper/futuresuit/2_gray.png differ
diff --git a/img/clothes/upper/futuresuit/3_acc_gray.png b/img/clothes/upper/futuresuit/3_acc_gray.png
index f06badd71fe3ea298e631094167e2f7b4605528d..94f1b383f216f475b3449d0e02a49bc422772245 100644
Binary files a/img/clothes/upper/futuresuit/3_acc_gray.png and b/img/clothes/upper/futuresuit/3_acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/3_gray.png b/img/clothes/upper/futuresuit/3_gray.png
index 61cc7a1d28b3143d31fc9e396ac5308846a43230..d6640d6edf062d45eb6e22ce149bf4b221ac5016 100644
Binary files a/img/clothes/upper/futuresuit/3_gray.png and b/img/clothes/upper/futuresuit/3_gray.png differ
diff --git a/img/clothes/upper/futuresuit/4_acc_gray.png b/img/clothes/upper/futuresuit/4_acc_gray.png
index 0bd91420e21af1e2c8de453192e7fa3c1e4483f4..ef5288a3a07cab68244ee18c55d7c472d71037d7 100644
Binary files a/img/clothes/upper/futuresuit/4_acc_gray.png and b/img/clothes/upper/futuresuit/4_acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/4_gray.png b/img/clothes/upper/futuresuit/4_gray.png
index a7709756d176b485f3903073ccfd649d11c5f50b..45e15abbf6d837008a4658c0efb868d5543da0f9 100644
Binary files a/img/clothes/upper/futuresuit/4_gray.png and b/img/clothes/upper/futuresuit/4_gray.png differ
diff --git a/img/clothes/upper/futuresuit/5_acc_gray.png b/img/clothes/upper/futuresuit/5_acc_gray.png
index 6abf7b33e0c4f54e965f21c4fd14416cba192b2c..25a648f3a556714a18e23d90b9efdc13461311f4 100644
Binary files a/img/clothes/upper/futuresuit/5_acc_gray.png and b/img/clothes/upper/futuresuit/5_acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/5_gray.png b/img/clothes/upper/futuresuit/5_gray.png
index c5de9058b77dc39d6c0081158f0bb6694c8debb2..c0017c9787b9a441042764c0cece8e9744d330cf 100644
Binary files a/img/clothes/upper/futuresuit/5_gray.png and b/img/clothes/upper/futuresuit/5_gray.png differ
diff --git a/img/clothes/upper/futuresuit/acc_gray.png b/img/clothes/upper/futuresuit/acc_gray.png
index 755d0703c76f0e74da830aaf89ef8ae9693a03e5..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/futuresuit/acc_gray.png and b/img/clothes/upper/futuresuit/acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/hold.png b/img/clothes/upper/futuresuit/hold.png
index 4fcc8b7590b73af00a261e7efe6df2078bfc7a8c..b26c1296cad2d47c61f45c873d09893aa1a706e3 100644
Binary files a/img/clothes/upper/futuresuit/hold.png and b/img/clothes/upper/futuresuit/hold.png differ
diff --git a/img/clothes/upper/futuresuit/hold_acc_gray.png b/img/clothes/upper/futuresuit/hold_acc_gray.png
index f1ca4cae8069d68c1161fb2b381c0768d075b3aa..3036608f95b5b91a91b775cb609366403ded62c4 100644
Binary files a/img/clothes/upper/futuresuit/hold_acc_gray.png and b/img/clothes/upper/futuresuit/hold_acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/hold_gray.png b/img/clothes/upper/futuresuit/hold_gray.png
index 4fcc8b7590b73af00a261e7efe6df2078bfc7a8c..b26c1296cad2d47c61f45c873d09893aa1a706e3 100644
Binary files a/img/clothes/upper/futuresuit/hold_gray.png and b/img/clothes/upper/futuresuit/hold_gray.png differ
diff --git a/img/clothes/upper/futuresuit/left.png b/img/clothes/upper/futuresuit/left.png
index 25c08cbb317e4a9db86fff0f44587c851d2e5e7e..d4111d2fc62cf3aba7d3570580c78f2ab2648658 100644
Binary files a/img/clothes/upper/futuresuit/left.png and b/img/clothes/upper/futuresuit/left.png differ
diff --git a/img/clothes/upper/futuresuit/left_acc_gray.png b/img/clothes/upper/futuresuit/left_acc_gray.png
index 94d1dcb6d8f68540e410d6e7d51df48e9f8e18c9..55e833c4f701f2ad1f50f2a993c8dea52d7ac3ae 100644
Binary files a/img/clothes/upper/futuresuit/left_acc_gray.png and b/img/clothes/upper/futuresuit/left_acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/left_cover.png b/img/clothes/upper/futuresuit/left_cover.png
index 1e1da70a158d4c5891fb59eaed4674891d1ee191..4c6f6cb6a69816d102fe88b916afb7bfa9f4a72b 100644
Binary files a/img/clothes/upper/futuresuit/left_cover.png and b/img/clothes/upper/futuresuit/left_cover.png differ
diff --git a/img/clothes/upper/futuresuit/left_cover_acc_gray.png b/img/clothes/upper/futuresuit/left_cover_acc_gray.png
index 94d1dcb6d8f68540e410d6e7d51df48e9f8e18c9..55e833c4f701f2ad1f50f2a993c8dea52d7ac3ae 100644
Binary files a/img/clothes/upper/futuresuit/left_cover_acc_gray.png and b/img/clothes/upper/futuresuit/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/left_cover_gray.png b/img/clothes/upper/futuresuit/left_cover_gray.png
index d0a0444ff5b42ce9bd67c202064821e6355992b2..4c6f6cb6a69816d102fe88b916afb7bfa9f4a72b 100644
Binary files a/img/clothes/upper/futuresuit/left_cover_gray.png and b/img/clothes/upper/futuresuit/left_cover_gray.png differ
diff --git a/img/clothes/upper/futuresuit/left_gray.png b/img/clothes/upper/futuresuit/left_gray.png
index 430eab92fcd7185729a2de65137ab959906a9b9f..578b1968c6a6c775bd911171cf10e8f9c29f7f6e 100644
Binary files a/img/clothes/upper/futuresuit/left_gray.png and b/img/clothes/upper/futuresuit/left_gray.png differ
diff --git a/img/clothes/upper/futuresuit/right.png b/img/clothes/upper/futuresuit/right.png
index c236b4f4529ff16f61b9ecb230f384324d807552..03ec78972b910c1f300c21c0d78706eb5bcfbbba 100644
Binary files a/img/clothes/upper/futuresuit/right.png and b/img/clothes/upper/futuresuit/right.png differ
diff --git a/img/clothes/upper/futuresuit/right_acc_gray.png b/img/clothes/upper/futuresuit/right_acc_gray.png
index f1ca4cae8069d68c1161fb2b381c0768d075b3aa..3036608f95b5b91a91b775cb609366403ded62c4 100644
Binary files a/img/clothes/upper/futuresuit/right_acc_gray.png and b/img/clothes/upper/futuresuit/right_acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/right_cover.png b/img/clothes/upper/futuresuit/right_cover.png
index 72ef3fa20914905d6d60bfe1b32eb1eedd6cb71e..659563fc4fddbaa1546269939596631deceeeb11 100644
Binary files a/img/clothes/upper/futuresuit/right_cover.png and b/img/clothes/upper/futuresuit/right_cover.png differ
diff --git a/img/clothes/upper/futuresuit/right_cover_acc_gray.png b/img/clothes/upper/futuresuit/right_cover_acc_gray.png
index f1ca4cae8069d68c1161fb2b381c0768d075b3aa..3036608f95b5b91a91b775cb609366403ded62c4 100644
Binary files a/img/clothes/upper/futuresuit/right_cover_acc_gray.png and b/img/clothes/upper/futuresuit/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/futuresuit/right_cover_gray.png b/img/clothes/upper/futuresuit/right_cover_gray.png
index 9cfe09cf41c1d41a084f96525225a6f277367717..659563fc4fddbaa1546269939596631deceeeb11 100644
Binary files a/img/clothes/upper/futuresuit/right_cover_gray.png and b/img/clothes/upper/futuresuit/right_cover_gray.png differ
diff --git a/img/clothes/upper/futuresuit/right_gray.png b/img/clothes/upper/futuresuit/right_gray.png
index 606a04ebcf731da8a951d05a177017b1f5023320..7828ca4bb14b45709eea9cb5cc6c67dffad305f4 100644
Binary files a/img/clothes/upper/futuresuit/right_gray.png and b/img/clothes/upper/futuresuit/right_gray.png differ
diff --git a/img/clothes/upper/gakuran/acc.png b/img/clothes/upper/gakuran/acc.png
index c1310e07d8e00264c092dbc4a5be40e4452fc1bc..42bbb84ee44a0be591468c285f6065e99dc557bf 100644
Binary files a/img/clothes/upper/gakuran/acc.png and b/img/clothes/upper/gakuran/acc.png differ
diff --git a/img/clothes/upper/gakuran/frayed_gray.png b/img/clothes/upper/gakuran/frayed_gray.png
index d0b25ae85c89ebf5f282043881f8297a219fff2f..c350b82cb02c75ad64691cb1c790bd98a7cf80fd 100644
Binary files a/img/clothes/upper/gakuran/frayed_gray.png and b/img/clothes/upper/gakuran/frayed_gray.png differ
diff --git a/img/clothes/upper/gakuran/full_gray.png b/img/clothes/upper/gakuran/full_gray.png
index ab1dd41c50c034ec3ad2d8e25f1cee348161fa2d..1b9e4c1d9718864659d0fa9539d48ff7bf8aabd9 100644
Binary files a/img/clothes/upper/gakuran/full_gray.png and b/img/clothes/upper/gakuran/full_gray.png differ
diff --git a/img/clothes/upper/gakuran/hold_gray.png b/img/clothes/upper/gakuran/hold_gray.png
index 1663bf34c82a5376ad3dd7d1e1c5d5c30c2e2741..6ae7e7b6e2d3a1390982432ea8431ca53c86bd27 100644
Binary files a/img/clothes/upper/gakuran/hold_gray.png and b/img/clothes/upper/gakuran/hold_gray.png differ
diff --git a/img/clothes/upper/gakuran/left_cover_gray.png b/img/clothes/upper/gakuran/left_cover_gray.png
index 559713e53a6436269db113ac0e2c922efc0b1ff3..59d6a9211ac4ee5a6ae1d9e250fd387e620db3d4 100644
Binary files a/img/clothes/upper/gakuran/left_cover_gray.png and b/img/clothes/upper/gakuran/left_cover_gray.png differ
diff --git a/img/clothes/upper/gakuran/left_gray.png b/img/clothes/upper/gakuran/left_gray.png
index 50c4466a76e78740264cc6e2dc5cb1cb0a1d2c2a..fea90f8dc5ee9f2283da5cfc606c872c27a4ebdc 100644
Binary files a/img/clothes/upper/gakuran/left_gray.png and b/img/clothes/upper/gakuran/left_gray.png differ
diff --git a/img/clothes/upper/gakuran/right_cover_gray.png b/img/clothes/upper/gakuran/right_cover_gray.png
index 4042fd1933a2dbf70ed4068c453b92a0170c6be0..c92a0f84cfd107ae156de11da5c579849b29e790 100644
Binary files a/img/clothes/upper/gakuran/right_cover_gray.png and b/img/clothes/upper/gakuran/right_cover_gray.png differ
diff --git a/img/clothes/upper/gakuran/right_gray.png b/img/clothes/upper/gakuran/right_gray.png
index 63a12a3a06574a71767fd5747520c00331b2c062..71c010a22c7c3be27565516982096ea56d9ad708 100644
Binary files a/img/clothes/upper/gakuran/right_gray.png and b/img/clothes/upper/gakuran/right_gray.png differ
diff --git a/img/clothes/upper/gakuran/tattered_gray.png b/img/clothes/upper/gakuran/tattered_gray.png
index 36a8421d651f98a425ca618082c1e22f14b926ac..5528be5b271c1c30db8880e852da1c936feb2685 100644
Binary files a/img/clothes/upper/gakuran/tattered_gray.png and b/img/clothes/upper/gakuran/tattered_gray.png differ
diff --git a/img/clothes/upper/gakuran/torn_gray.png b/img/clothes/upper/gakuran/torn_gray.png
index 4bb9e7c34c00201ad406d3a6211e0ce7febc5b96..c9662fc47d37557297e3745625268ffa730b4290 100644
Binary files a/img/clothes/upper/gakuran/torn_gray.png and b/img/clothes/upper/gakuran/torn_gray.png differ
diff --git a/img/clothes/upper/gingham/acc.png b/img/clothes/upper/gingham/acc.png
index e6784551123e0f4e9d11a038374888bc11a32110..393f6e6bbfa874a252d66c988c5c55a50c913664 100644
Binary files a/img/clothes/upper/gingham/acc.png and b/img/clothes/upper/gingham/acc.png differ
diff --git a/img/clothes/upper/gingham/acc_frayed.png b/img/clothes/upper/gingham/acc_frayed.png
index 2429dd64b07055a6e095e7ad3132af37fc851642..0e2e5d96e4b939883d5c4947334b225cb8becb9d 100644
Binary files a/img/clothes/upper/gingham/acc_frayed.png and b/img/clothes/upper/gingham/acc_frayed.png differ
diff --git a/img/clothes/upper/gingham/acc_full.png b/img/clothes/upper/gingham/acc_full.png
index faa712209060a6fec2c7180d1f745eca6eb44f30..790170e6c5aabc8d7bf25b03dc78576d532489c0 100644
Binary files a/img/clothes/upper/gingham/acc_full.png and b/img/clothes/upper/gingham/acc_full.png differ
diff --git a/img/clothes/upper/gingham/acc_tattered.png b/img/clothes/upper/gingham/acc_tattered.png
index e62f3bca7ac6cc1c2cb08404b7a2243ae31194df..25b597d314ff869c2f74df2c01f0eb9793e92856 100644
Binary files a/img/clothes/upper/gingham/acc_tattered.png and b/img/clothes/upper/gingham/acc_tattered.png differ
diff --git a/img/clothes/upper/gingham/acc_torn.png b/img/clothes/upper/gingham/acc_torn.png
index 6f47e370b8932c5feccf872fc7a52e93040069be..903658a6476991fcec9534eb367246298c99a56e 100644
Binary files a/img/clothes/upper/gingham/acc_torn.png and b/img/clothes/upper/gingham/acc_torn.png differ
diff --git a/img/clothes/upper/gingham/frayed_gray.png b/img/clothes/upper/gingham/frayed_gray.png
index 8efca6b46d0f2c79e025ce3c5e80ce8a01d70c08..c7fe33dc6615aa93f5aad27411c6f7f590a04417 100644
Binary files a/img/clothes/upper/gingham/frayed_gray.png and b/img/clothes/upper/gingham/frayed_gray.png differ
diff --git a/img/clothes/upper/gingham/full_gray.png b/img/clothes/upper/gingham/full_gray.png
index 4d7f45a36a63785842a208bfcbbbf2c6903a9e03..22cc67f4670d51cbde812f76c7321984b8ac73cf 100644
Binary files a/img/clothes/upper/gingham/full_gray.png and b/img/clothes/upper/gingham/full_gray.png differ
diff --git a/img/clothes/upper/gingham/tattered_gray.png b/img/clothes/upper/gingham/tattered_gray.png
index 2d09319ab88fbb92eeeebbd7862ba7dd90d0ab29..f34f28ac6716b16efa81c30f1781b0676ae2d460 100644
Binary files a/img/clothes/upper/gingham/tattered_gray.png and b/img/clothes/upper/gingham/tattered_gray.png differ
diff --git a/img/clothes/upper/gingham/torn_gray.png b/img/clothes/upper/gingham/torn_gray.png
index 4344c374b26287a5c6c1910d2081d27267e62be1..4565127f057771eaa9bacb32a11cd99f21ead222 100644
Binary files a/img/clothes/upper/gingham/torn_gray.png and b/img/clothes/upper/gingham/torn_gray.png differ
diff --git a/img/clothes/upper/gothic/acc_frayed.png b/img/clothes/upper/gothic/acc_frayed.png
index 717630fab87de041d7c1990367c2a3910e66df4f..52965c98a193e4b2919f6bda5b6bccec962bcdd0 100644
Binary files a/img/clothes/upper/gothic/acc_frayed.png and b/img/clothes/upper/gothic/acc_frayed.png differ
diff --git a/img/clothes/upper/gothic/acc_full.png b/img/clothes/upper/gothic/acc_full.png
index 1319528a4bb0a0c37801a719ae4289241abdd4dc..1bb81b0365f229fbca29fe6f2618ab72f868044e 100644
Binary files a/img/clothes/upper/gothic/acc_full.png and b/img/clothes/upper/gothic/acc_full.png differ
diff --git a/img/clothes/upper/gothic/acc_tattered.png b/img/clothes/upper/gothic/acc_tattered.png
index a3d7366736ddd37cf3bcdd2d0658943b90ad7667..21847a33843939aefc2f83e9abacb36d7978461c 100644
Binary files a/img/clothes/upper/gothic/acc_tattered.png and b/img/clothes/upper/gothic/acc_tattered.png differ
diff --git a/img/clothes/upper/gothic/acc_torn.png b/img/clothes/upper/gothic/acc_torn.png
index ea2f8728153dd7c292b5b39b66afba37a5c9171f..11c35bd05c17d4631fa560ac3e308e1faeaac96b 100644
Binary files a/img/clothes/upper/gothic/acc_torn.png and b/img/clothes/upper/gothic/acc_torn.png differ
diff --git a/img/clothes/upper/gothic/frayed.png b/img/clothes/upper/gothic/frayed.png
index 90bbd216d1359010f8b97f14657ccd633bf49a05..813bbceadf4fe5ae742268d40d5d3ad1da91e345 100644
Binary files a/img/clothes/upper/gothic/frayed.png and b/img/clothes/upper/gothic/frayed.png differ
diff --git a/img/clothes/upper/gothic/frayed_gray.png b/img/clothes/upper/gothic/frayed_gray.png
index 464af2fcfb650677c7f2a9b7a5b12f4f52fa17aa..d0e98bd8a2b68cf29d6b427e81973802c85d4993 100644
Binary files a/img/clothes/upper/gothic/frayed_gray.png and b/img/clothes/upper/gothic/frayed_gray.png differ
diff --git a/img/clothes/upper/gothic/full.png b/img/clothes/upper/gothic/full.png
index 90bbd216d1359010f8b97f14657ccd633bf49a05..813bbceadf4fe5ae742268d40d5d3ad1da91e345 100644
Binary files a/img/clothes/upper/gothic/full.png and b/img/clothes/upper/gothic/full.png differ
diff --git a/img/clothes/upper/gothic/full_gray.png b/img/clothes/upper/gothic/full_gray.png
index 464af2fcfb650677c7f2a9b7a5b12f4f52fa17aa..d0e98bd8a2b68cf29d6b427e81973802c85d4993 100644
Binary files a/img/clothes/upper/gothic/full_gray.png and b/img/clothes/upper/gothic/full_gray.png differ
diff --git a/img/clothes/upper/gothic/hold.png b/img/clothes/upper/gothic/hold.png
index 6b9f1cd0af51c028b125b096f1ca4b5c4c7a2441..97f36b4796e0cbeb8fb8d42dc234df968b74bec2 100644
Binary files a/img/clothes/upper/gothic/hold.png and b/img/clothes/upper/gothic/hold.png differ
diff --git a/img/clothes/upper/gothic/left.png b/img/clothes/upper/gothic/left.png
index 8e770b5ee92258c9ae58f8193ff34efa161e27bd..299a310cadb7e8bc1cc84b99158b618627a1ac91 100644
Binary files a/img/clothes/upper/gothic/left.png and b/img/clothes/upper/gothic/left.png differ
diff --git a/img/clothes/upper/gothic/left_cover.png b/img/clothes/upper/gothic/left_cover.png
index 0d3a077c8011000bb05e100f01ece20801c7d560..e46ecc1324e8b10a0186cebd31e5fd4380263ab0 100644
Binary files a/img/clothes/upper/gothic/left_cover.png and b/img/clothes/upper/gothic/left_cover.png differ
diff --git a/img/clothes/upper/gothic/left_cover_gray.png b/img/clothes/upper/gothic/left_cover_gray.png
index 0d3a077c8011000bb05e100f01ece20801c7d560..e46ecc1324e8b10a0186cebd31e5fd4380263ab0 100644
Binary files a/img/clothes/upper/gothic/left_cover_gray.png and b/img/clothes/upper/gothic/left_cover_gray.png differ
diff --git a/img/clothes/upper/gothic/left_gray.png b/img/clothes/upper/gothic/left_gray.png
index 8e770b5ee92258c9ae58f8193ff34efa161e27bd..299a310cadb7e8bc1cc84b99158b618627a1ac91 100644
Binary files a/img/clothes/upper/gothic/left_gray.png and b/img/clothes/upper/gothic/left_gray.png differ
diff --git a/img/clothes/upper/gothic/right.png b/img/clothes/upper/gothic/right.png
index 9cc7e74186748b0f94ad0fbff2c948bcf942edbc..de91243274b94822b471461a70f6854583737edd 100644
Binary files a/img/clothes/upper/gothic/right.png and b/img/clothes/upper/gothic/right.png differ
diff --git a/img/clothes/upper/gothic/right_cover.png b/img/clothes/upper/gothic/right_cover.png
index c474efeb8dfc0b05d074aa6a923aaadf276b587e..b34300b0f8e56a17f5aee459ae4ee76cb3d4fcc9 100644
Binary files a/img/clothes/upper/gothic/right_cover.png and b/img/clothes/upper/gothic/right_cover.png differ
diff --git a/img/clothes/upper/gothic/right_cover_gray.png b/img/clothes/upper/gothic/right_cover_gray.png
index 6bbb825666011eca49c33df309da1fa44ce4078e..658feec44ac6c9897a8b475cc49a6d4d4fc19372 100644
Binary files a/img/clothes/upper/gothic/right_cover_gray.png and b/img/clothes/upper/gothic/right_cover_gray.png differ
diff --git a/img/clothes/upper/gothic/right_gray.png b/img/clothes/upper/gothic/right_gray.png
index 9cc7e74186748b0f94ad0fbff2c948bcf942edbc..de91243274b94822b471461a70f6854583737edd 100644
Binary files a/img/clothes/upper/gothic/right_gray.png and b/img/clothes/upper/gothic/right_gray.png differ
diff --git a/img/clothes/upper/gothic/tattered.png b/img/clothes/upper/gothic/tattered.png
index 2395a04a1539febff4e1d0978884dfcada510a71..bc9dcedf4a6ad6d1b6bb8cc0f4e6f6527da663de 100644
Binary files a/img/clothes/upper/gothic/tattered.png and b/img/clothes/upper/gothic/tattered.png differ
diff --git a/img/clothes/upper/gothic/tattered_gray.png b/img/clothes/upper/gothic/tattered_gray.png
index 8d4dcae543a25819f333540c84f45fd90afa1457..72100dcafd2f6e5b56e682e94bd2784653e5fe48 100644
Binary files a/img/clothes/upper/gothic/tattered_gray.png and b/img/clothes/upper/gothic/tattered_gray.png differ
diff --git a/img/clothes/upper/gothic/torn.png b/img/clothes/upper/gothic/torn.png
index 2395a04a1539febff4e1d0978884dfcada510a71..bc9dcedf4a6ad6d1b6bb8cc0f4e6f6527da663de 100644
Binary files a/img/clothes/upper/gothic/torn.png and b/img/clothes/upper/gothic/torn.png differ
diff --git a/img/clothes/upper/gothic/torn_gray.png b/img/clothes/upper/gothic/torn_gray.png
index 8d4dcae543a25819f333540c84f45fd90afa1457..72100dcafd2f6e5b56e682e94bd2784653e5fe48 100644
Binary files a/img/clothes/upper/gothic/torn_gray.png and b/img/clothes/upper/gothic/torn_gray.png differ
diff --git a/img/clothes/upper/gothicjacket/4.png b/img/clothes/upper/gothicjacket/4.png
index c4571ac2f99007430d2e9111d92793d445e38269..11287b4a11924db78fdac8a530457a2e9f23a5b3 100644
Binary files a/img/clothes/upper/gothicjacket/4.png and b/img/clothes/upper/gothicjacket/4.png differ
diff --git a/img/clothes/upper/gothicjacket/5.png b/img/clothes/upper/gothicjacket/5.png
index 2d1339e8b39b5feac942e69363861ffed2848b35..26fdba254d3d5fcb8d8d8022e98694d2eee619f9 100644
Binary files a/img/clothes/upper/gothicjacket/5.png and b/img/clothes/upper/gothicjacket/5.png differ
diff --git a/img/clothes/upper/gothicjacket/6.png b/img/clothes/upper/gothicjacket/6.png
index b02537f4fd8d88b389cb4c00f374201b0ab29247..3e6ee4ad6a29625f27d40ac4f71a6d71be8b4956 100644
Binary files a/img/clothes/upper/gothicjacket/6.png and b/img/clothes/upper/gothicjacket/6.png differ
diff --git a/img/clothes/upper/gothicjacket/frayed.png b/img/clothes/upper/gothicjacket/frayed.png
index c1451109aa135b358dad9abada44fd84e80b6200..eab551832b4127043b2dd4a82aedac3f616f8114 100644
Binary files a/img/clothes/upper/gothicjacket/frayed.png and b/img/clothes/upper/gothicjacket/frayed.png differ
diff --git a/img/clothes/upper/gothicjacket/full.png b/img/clothes/upper/gothicjacket/full.png
index 1087e30c5e3202d01a4c050a4bf496ebc1fc8065..34cb8b251a33fc8131ab86739db2af7ca7fd0360 100644
Binary files a/img/clothes/upper/gothicjacket/full.png and b/img/clothes/upper/gothicjacket/full.png differ
diff --git a/img/clothes/upper/gothicjacket/hold.png b/img/clothes/upper/gothicjacket/hold.png
index 3f8207d0bdc5c7f95fd5211a2f51a282f7d4db23..dc4ca9b94cc3f603671a36542c762ad84c3bc8c6 100644
Binary files a/img/clothes/upper/gothicjacket/hold.png and b/img/clothes/upper/gothicjacket/hold.png differ
diff --git a/img/clothes/upper/gothicjacket/left.png b/img/clothes/upper/gothicjacket/left.png
index 0db9d832fd56681c2078acae8b546563e90776c5..578755aa5936be6c17fe1ba4ce3607f969d5207f 100644
Binary files a/img/clothes/upper/gothicjacket/left.png and b/img/clothes/upper/gothicjacket/left.png differ
diff --git a/img/clothes/upper/gothicjacket/left_cover.png b/img/clothes/upper/gothicjacket/left_cover.png
index 673d1af4b2e68d0a71189591b508fa9a5ca7c977..564e84d96fb8969912dce6a9104309e70796facd 100644
Binary files a/img/clothes/upper/gothicjacket/left_cover.png and b/img/clothes/upper/gothicjacket/left_cover.png differ
diff --git a/img/clothes/upper/gothicjacket/right.png b/img/clothes/upper/gothicjacket/right.png
index c54be3651c85340d60eba19a0fba8c6e1033e45b..147539e25fdba0df71e53b10f410062ae5582c0e 100644
Binary files a/img/clothes/upper/gothicjacket/right.png and b/img/clothes/upper/gothicjacket/right.png differ
diff --git a/img/clothes/upper/gothicjacket/right_cover.png b/img/clothes/upper/gothicjacket/right_cover.png
index 6292bdc3945491da373c62ef31de6ac3275a474e..836184d66812a4f878ddaad5a72e59977638cbe8 100644
Binary files a/img/clothes/upper/gothicjacket/right_cover.png and b/img/clothes/upper/gothicjacket/right_cover.png differ
diff --git a/img/clothes/upper/gothicjacket/tattered.png b/img/clothes/upper/gothicjacket/tattered.png
index 032908400fd037b5305f8b8cf4d9bd7723be53b8..1769c3f5c4815b7be129ee8a9b13196676a35182 100644
Binary files a/img/clothes/upper/gothicjacket/tattered.png and b/img/clothes/upper/gothicjacket/tattered.png differ
diff --git a/img/clothes/upper/gothicjacket/torn.png b/img/clothes/upper/gothicjacket/torn.png
index 0cc2c1a6666970729b49233a4fb0e82adf005112..4e70d9d3c69a72e01f72d2c2dfe123b695169d5d 100644
Binary files a/img/clothes/upper/gothicjacket/torn.png and b/img/clothes/upper/gothicjacket/torn.png differ
diff --git a/img/clothes/upper/gothicold/frayed.png b/img/clothes/upper/gothicold/frayed.png
index dfa57202d518be942f5131df10a35490537ae908..9d423f78f706f7b479d073b3996cfd5b0508bb84 100644
Binary files a/img/clothes/upper/gothicold/frayed.png and b/img/clothes/upper/gothicold/frayed.png differ
diff --git a/img/clothes/upper/gothicold/frayed_gray.png b/img/clothes/upper/gothicold/frayed_gray.png
index c8947f7a4f71a05b3b3f92d7d9394b51545a888d..3cde45e5ab9c9b946697e073a4e401acb673105c 100644
Binary files a/img/clothes/upper/gothicold/frayed_gray.png and b/img/clothes/upper/gothicold/frayed_gray.png differ
diff --git a/img/clothes/upper/gothicold/full.png b/img/clothes/upper/gothicold/full.png
index 88d4020361faf0e3a91444010ad0f174ad000372..84e86fe4126668c4a6e186657c83dc41564a3c68 100644
Binary files a/img/clothes/upper/gothicold/full.png and b/img/clothes/upper/gothicold/full.png differ
diff --git a/img/clothes/upper/gothicold/full_gray.png b/img/clothes/upper/gothicold/full_gray.png
index 0c6355d832975e0ba36d3c5091dc859ea21af589..8da930ffcfe5f79eebb0a51b72126a96b5ba4d4f 100644
Binary files a/img/clothes/upper/gothicold/full_gray.png and b/img/clothes/upper/gothicold/full_gray.png differ
diff --git a/img/clothes/upper/gothicold/hold_gray.png b/img/clothes/upper/gothicold/hold_gray.png
index 713f3af2b7f88a19d3f4a7465abe909aeda75475..b4cf36f06dcbd5e38a050513102fdb263499afcf 100644
Binary files a/img/clothes/upper/gothicold/hold_gray.png and b/img/clothes/upper/gothicold/hold_gray.png differ
diff --git a/img/clothes/upper/gothicold/left.png b/img/clothes/upper/gothicold/left.png
index df5533f23bc4196a9daeaa539414f0831d79129e..8708497bc695c6917e5c1c9308d0c84e354a7b0e 100644
Binary files a/img/clothes/upper/gothicold/left.png and b/img/clothes/upper/gothicold/left.png differ
diff --git a/img/clothes/upper/gothicold/left_cover.png b/img/clothes/upper/gothicold/left_cover.png
index 50dca25f11c2728b872eb7c944ffef1f7e3c52df..ec3ecd9006e529bf9aa14c158c7bcdeb7b44d63b 100644
Binary files a/img/clothes/upper/gothicold/left_cover.png and b/img/clothes/upper/gothicold/left_cover.png differ
diff --git a/img/clothes/upper/gothicold/left_cover_gray.png b/img/clothes/upper/gothicold/left_cover_gray.png
index bb84e3f5498f4da5d8730328e96cbafe3f43ae09..811ceb0861d0fb5e607c913096fbdf0ae5f5412e 100644
Binary files a/img/clothes/upper/gothicold/left_cover_gray.png and b/img/clothes/upper/gothicold/left_cover_gray.png differ
diff --git a/img/clothes/upper/gothicold/left_gray.png b/img/clothes/upper/gothicold/left_gray.png
index 532253decea50bb27aa6b30e817f03b158fc089d..f8e4505d49f2228892d21c69487c52d649b3500f 100644
Binary files a/img/clothes/upper/gothicold/left_gray.png and b/img/clothes/upper/gothicold/left_gray.png differ
diff --git a/img/clothes/upper/gothicold/right.png b/img/clothes/upper/gothicold/right.png
index 87c86696a5601c120d259eac01dade1fc47463df..f6a2a5dd39930fff078e168f0a3ee067395bc867 100644
Binary files a/img/clothes/upper/gothicold/right.png and b/img/clothes/upper/gothicold/right.png differ
diff --git a/img/clothes/upper/gothicold/right_cover.png b/img/clothes/upper/gothicold/right_cover.png
index 1f3ea59e90ca84ed2c3b824288e79296a53710f3..35989d99546b64c5e9d7d93ff0a2a28790a36794 100644
Binary files a/img/clothes/upper/gothicold/right_cover.png and b/img/clothes/upper/gothicold/right_cover.png differ
diff --git a/img/clothes/upper/gothicold/right_cover_gray.png b/img/clothes/upper/gothicold/right_cover_gray.png
index c811abcd6b5638d75c3b172bd71cd383c18d90ad..5bdffc4c322291861ade38d70d1f0fe4202ef788 100644
Binary files a/img/clothes/upper/gothicold/right_cover_gray.png and b/img/clothes/upper/gothicold/right_cover_gray.png differ
diff --git a/img/clothes/upper/gothicold/right_gray.png b/img/clothes/upper/gothicold/right_gray.png
index 17ad9f8c7542de39e41c405c094fcef4dfba0e5f..0cc0ffd976c37f32b96776249f40cef86f3acfb8 100644
Binary files a/img/clothes/upper/gothicold/right_gray.png and b/img/clothes/upper/gothicold/right_gray.png differ
diff --git a/img/clothes/upper/gothicold/tattered.png b/img/clothes/upper/gothicold/tattered.png
index 702be1da83e1a5463e20d676e32f4e7d1789b079..8f48246106c08e893b405f376e9642751406b108 100644
Binary files a/img/clothes/upper/gothicold/tattered.png and b/img/clothes/upper/gothicold/tattered.png differ
diff --git a/img/clothes/upper/gothicold/tattered_gray.png b/img/clothes/upper/gothicold/tattered_gray.png
index 25f16a67aca2df37b1b2435af48e2933a9c19075..75111561be067374f65e1ecf458a5cf5f3055c8a 100644
Binary files a/img/clothes/upper/gothicold/tattered_gray.png and b/img/clothes/upper/gothicold/tattered_gray.png differ
diff --git a/img/clothes/upper/gothicold/torn.png b/img/clothes/upper/gothicold/torn.png
index 7410bddb093f8a0de964860f4518de3bd4c3a6c3..edfd315c154dd0e79a5420f3caddd00d26420215 100644
Binary files a/img/clothes/upper/gothicold/torn.png and b/img/clothes/upper/gothicold/torn.png differ
diff --git a/img/clothes/upper/gothicold/torn_gray.png b/img/clothes/upper/gothicold/torn_gray.png
index 7b14c7ffc185533ea6398e9967605bb460a0ba99..b3cd99c02f08ce103a33460ffc6c5a59b9786ef2 100644
Binary files a/img/clothes/upper/gothicold/torn_gray.png and b/img/clothes/upper/gothicold/torn_gray.png differ
diff --git a/img/clothes/upper/gymshirt/1.png b/img/clothes/upper/gymshirt/1.png
index bf87e294286e50a52d0d388072a3cd8680b3fdfd..4b71f90e5a5676a861d561d5e655eb0142904986 100644
Binary files a/img/clothes/upper/gymshirt/1.png and b/img/clothes/upper/gymshirt/1.png differ
diff --git a/img/clothes/upper/gymshirt/2.png b/img/clothes/upper/gymshirt/2.png
index 0f19a8a79e64e0c9e4460a0a29a9d381d81db793..15505c8199bc3d790d8940787d0597e51a4d436c 100644
Binary files a/img/clothes/upper/gymshirt/2.png and b/img/clothes/upper/gymshirt/2.png differ
diff --git a/img/clothes/upper/gymshirt/3.png b/img/clothes/upper/gymshirt/3.png
index 0dc168a490e1196a83457abd40578f4a80a07a4e..3a491c054ba66c3770756d7b443f62dcdc4a9f09 100644
Binary files a/img/clothes/upper/gymshirt/3.png and b/img/clothes/upper/gymshirt/3.png differ
diff --git a/img/clothes/upper/gymshirt/4.png b/img/clothes/upper/gymshirt/4.png
index 5dcc23e7de116b1cb82a60a30b26d5138a95ee3f..aab0f9a3dc2bd2f3ef88a124d4877a655849b19f 100644
Binary files a/img/clothes/upper/gymshirt/4.png and b/img/clothes/upper/gymshirt/4.png differ
diff --git a/img/clothes/upper/gymshirt/5.png b/img/clothes/upper/gymshirt/5.png
index 5ab2aeee8d7bc8055b2c6a95b24537a2e4a4908b..045c82d8ee9e22f8121702fbd28a5de03e96eab3 100644
Binary files a/img/clothes/upper/gymshirt/5.png and b/img/clothes/upper/gymshirt/5.png differ
diff --git a/img/clothes/upper/gymshirt/acc_gray.png b/img/clothes/upper/gymshirt/acc_gray.png
index 5e3aa5379a1d3c6912aebf89b7054f879f67d6bf..ef2d1c1be7a240c3b77d1c382b0fc83833f4470c 100644
Binary files a/img/clothes/upper/gymshirt/acc_gray.png and b/img/clothes/upper/gymshirt/acc_gray.png differ
diff --git a/img/clothes/upper/gymshirt/frayed.png b/img/clothes/upper/gymshirt/frayed.png
index 8b064ec83ae848b0053308cc1c6979134658ca85..d534b65fb9851655229bd0916ac0f47cd44bca76 100644
Binary files a/img/clothes/upper/gymshirt/frayed.png and b/img/clothes/upper/gymshirt/frayed.png differ
diff --git a/img/clothes/upper/gymshirt/full.png b/img/clothes/upper/gymshirt/full.png
index 8b87c6b88c083e6cd9d418b2a28fd3ac2243a6d3..df2b70f054abf485a080f8c22ed7a29e9190a240 100644
Binary files a/img/clothes/upper/gymshirt/full.png and b/img/clothes/upper/gymshirt/full.png differ
diff --git a/img/clothes/upper/gymshirt/hold.png b/img/clothes/upper/gymshirt/hold.png
index 3448a8be11a7a3fb659547a85e0871da74b741cb..630a29a6b8c345000f51ca8331ef69a6790ae1d3 100644
Binary files a/img/clothes/upper/gymshirt/hold.png and b/img/clothes/upper/gymshirt/hold.png differ
diff --git a/img/clothes/upper/gymshirt/hold_acc_gray.png b/img/clothes/upper/gymshirt/hold_acc_gray.png
index 2d7773a334835ac22b9bef5d76b900f3ea78f689..ad16cbcd6bd606350fd1538f8163f7e53ba76d2d 100644
Binary files a/img/clothes/upper/gymshirt/hold_acc_gray.png and b/img/clothes/upper/gymshirt/hold_acc_gray.png differ
diff --git a/img/clothes/upper/gymshirt/left.png b/img/clothes/upper/gymshirt/left.png
index afd65a8cab3e77ad690bb2951178975229cafcf2..293bc7f82b3f666e889b6f372255edb5baf17e42 100644
Binary files a/img/clothes/upper/gymshirt/left.png and b/img/clothes/upper/gymshirt/left.png differ
diff --git a/img/clothes/upper/gymshirt/left_acc_gray.png b/img/clothes/upper/gymshirt/left_acc_gray.png
index 1713e41bfcdccae1812cb54546e7cd74a69988a8..b8d9e978cbbc74505b728291b29011062af2a833 100644
Binary files a/img/clothes/upper/gymshirt/left_acc_gray.png and b/img/clothes/upper/gymshirt/left_acc_gray.png differ
diff --git a/img/clothes/upper/gymshirt/left_cover.png b/img/clothes/upper/gymshirt/left_cover.png
index 4d1620272b4268ca1a7b3859c318680a0438019c..5791c2251e8822e946a51e247156e50edb92c7e6 100644
Binary files a/img/clothes/upper/gymshirt/left_cover.png and b/img/clothes/upper/gymshirt/left_cover.png differ
diff --git a/img/clothes/upper/gymshirt/left_cover_acc_gray.png b/img/clothes/upper/gymshirt/left_cover_acc_gray.png
index 19667bcd451ab13839cd9f8f33fab2b55b30bd1b..337b75877a9d7f7f299a17e492d6a251d6598485 100644
Binary files a/img/clothes/upper/gymshirt/left_cover_acc_gray.png and b/img/clothes/upper/gymshirt/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/gymshirt/right.png b/img/clothes/upper/gymshirt/right.png
index 0e1b1a5a9e5deef7216766bd5a3a39a8593956ad..6c3f154674bd1130719be0c5c4f5d8578ba27fff 100644
Binary files a/img/clothes/upper/gymshirt/right.png and b/img/clothes/upper/gymshirt/right.png differ
diff --git a/img/clothes/upper/gymshirt/right_acc_gray.png b/img/clothes/upper/gymshirt/right_acc_gray.png
index e8da75bfc904ce9f3267f8f90dbcae685ab33f8f..43ca33a2d989197475143fac4926f7f85529aef6 100644
Binary files a/img/clothes/upper/gymshirt/right_acc_gray.png and b/img/clothes/upper/gymshirt/right_acc_gray.png differ
diff --git a/img/clothes/upper/gymshirt/right_cover.png b/img/clothes/upper/gymshirt/right_cover.png
index ed25f9333df172eca3ecaae5e490cc8334214051..a5f93c1d13ef60ad9e7996c67ad5b3fb30e2dbbc 100644
Binary files a/img/clothes/upper/gymshirt/right_cover.png and b/img/clothes/upper/gymshirt/right_cover.png differ
diff --git a/img/clothes/upper/gymshirt/right_cover_acc_gray.png b/img/clothes/upper/gymshirt/right_cover_acc_gray.png
index 81ca44687a8c009bbed70330af2ebd1845d54f66..1fb14e1f8f6803b9be802389a0c744ea39e1c944 100644
Binary files a/img/clothes/upper/gymshirt/right_cover_acc_gray.png and b/img/clothes/upper/gymshirt/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/gymshirt/tattered.png b/img/clothes/upper/gymshirt/tattered.png
index 5e6454de513f00e0f7e31ea21dd08692d44d8790..8f626505d38d254f2c2a9a3e3060bbed934fabf1 100644
Binary files a/img/clothes/upper/gymshirt/tattered.png and b/img/clothes/upper/gymshirt/tattered.png differ
diff --git a/img/clothes/upper/gymshirt/torn.png b/img/clothes/upper/gymshirt/torn.png
index ccf5457c25517d7bc6e86a20735adb70b671d457..821291dc264a7a3b38acf32882ea8c588d4d46ff 100644
Binary files a/img/clothes/upper/gymshirt/torn.png and b/img/clothes/upper/gymshirt/torn.png differ
diff --git a/img/clothes/upper/haltersundress/3_gray.png b/img/clothes/upper/haltersundress/3_gray.png
index 7ae12931e1cdea062a1fd76433cce27d9930fb18..44aac9229b65f0d329b63a261e56bfc51608c7d4 100644
Binary files a/img/clothes/upper/haltersundress/3_gray.png and b/img/clothes/upper/haltersundress/3_gray.png differ
diff --git a/img/clothes/upper/haltersundress/4_gray.png b/img/clothes/upper/haltersundress/4_gray.png
index 44a9c9887dcdc55c5c411cbb68f579f554383e74..118a16689923bd536157b71e7565210244acda1b 100644
Binary files a/img/clothes/upper/haltersundress/4_gray.png and b/img/clothes/upper/haltersundress/4_gray.png differ
diff --git a/img/clothes/upper/haltersundress/5_gray.png b/img/clothes/upper/haltersundress/5_gray.png
index c07aa7813f76fed631c6b8ee4f97ada92da26389..b1ac8ae7568671a21b3ab3982f4af16b785a5d24 100644
Binary files a/img/clothes/upper/haltersundress/5_gray.png and b/img/clothes/upper/haltersundress/5_gray.png differ
diff --git a/img/clothes/upper/haltersundress/frayed_gray.png b/img/clothes/upper/haltersundress/frayed_gray.png
index f0d02e91c9106aa89d503c82129b495f6897d972..93de37e23734b5ff96e47b1af88fd5110e9d3855 100644
Binary files a/img/clothes/upper/haltersundress/frayed_gray.png and b/img/clothes/upper/haltersundress/frayed_gray.png differ
diff --git a/img/clothes/upper/haltersundress/full_gray.png b/img/clothes/upper/haltersundress/full_gray.png
index 0988b29f9b1bc452f202d4bc604b2b2e42ce9349..9783a50b90d7faa4acc0e0f8d19dc0e6c808764a 100644
Binary files a/img/clothes/upper/haltersundress/full_gray.png and b/img/clothes/upper/haltersundress/full_gray.png differ
diff --git a/img/clothes/upper/haltersundress/tattered_gray.png b/img/clothes/upper/haltersundress/tattered_gray.png
index 5fe07b65b9ece6f2b0bb4c198d55e10fa13eecb2..d8d1b993972b746e92bba54260e19ee035d6c653 100644
Binary files a/img/clothes/upper/haltersundress/tattered_gray.png and b/img/clothes/upper/haltersundress/tattered_gray.png differ
diff --git a/img/clothes/upper/haltersundress/torn_gray.png b/img/clothes/upper/haltersundress/torn_gray.png
index 05819cf2405c8f54f127bc232fa6665d210d15ae..284a2c96563b46390f958ccc2ec74ca450f6a1a1 100644
Binary files a/img/clothes/upper/haltersundress/torn_gray.png and b/img/clothes/upper/haltersundress/torn_gray.png differ
diff --git a/img/clothes/upper/hanfu/1_acc_gray.png b/img/clothes/upper/hanfu/1_acc_gray.png
index 4fa91356e9af34d7b86ef1b34fb7e6603a329e41..87049583f548387806524d406067729ca7a9abea 100644
Binary files a/img/clothes/upper/hanfu/1_acc_gray.png and b/img/clothes/upper/hanfu/1_acc_gray.png differ
diff --git a/img/clothes/upper/hanfu/1_gray.png b/img/clothes/upper/hanfu/1_gray.png
index e5fb8b9a93bbea2bc3b08bdd0cfb1115e1195d17..99023f75581afcf95b210af16f9bc1d00d01af6b 100644
Binary files a/img/clothes/upper/hanfu/1_gray.png and b/img/clothes/upper/hanfu/1_gray.png differ
diff --git a/img/clothes/upper/hanfu/3_acc_gray.png b/img/clothes/upper/hanfu/3_acc_gray.png
index 4fa91356e9af34d7b86ef1b34fb7e6603a329e41..87049583f548387806524d406067729ca7a9abea 100644
Binary files a/img/clothes/upper/hanfu/3_acc_gray.png and b/img/clothes/upper/hanfu/3_acc_gray.png differ
diff --git a/img/clothes/upper/hanfu/3_gray.png b/img/clothes/upper/hanfu/3_gray.png
index 65ce3c60eccd8f56ecc5e224e8b882957586164e..21decb3cc36798c71364b83fd13f212a2c6afeeb 100644
Binary files a/img/clothes/upper/hanfu/3_gray.png and b/img/clothes/upper/hanfu/3_gray.png differ
diff --git a/img/clothes/upper/hanfu/5_acc_gray.png b/img/clothes/upper/hanfu/5_acc_gray.png
index 2f745b833976007a89f023a479107c1295743641..9b5613f8a976b1f48cf4a6dae1fe6559de8a1f99 100644
Binary files a/img/clothes/upper/hanfu/5_acc_gray.png and b/img/clothes/upper/hanfu/5_acc_gray.png differ
diff --git a/img/clothes/upper/hanfu/5_gray.png b/img/clothes/upper/hanfu/5_gray.png
index 23c586a3690027d505624317bb436eaaf5f2f88a..f315f8cbb18bbf235e15b07f4e62ff75c5d39c7f 100644
Binary files a/img/clothes/upper/hanfu/5_gray.png and b/img/clothes/upper/hanfu/5_gray.png differ
diff --git a/img/clothes/upper/hanfu/acc_gray.png b/img/clothes/upper/hanfu/acc_gray.png
index 049295a0c0b32fa7d91c3b5aafd84357b2ed7d10..1777b1574efbf33186166c14268f106d8e1f38a5 100644
Binary files a/img/clothes/upper/hanfu/acc_gray.png and b/img/clothes/upper/hanfu/acc_gray.png differ
diff --git a/img/clothes/upper/hanfu/hold_gray.png b/img/clothes/upper/hanfu/hold_gray.png
index 521d06a82626ad3fb38d492d84429849a9a5fe37..bb532c92b0eb6e11bb02b2b170ecce7ff3a7dc01 100644
Binary files a/img/clothes/upper/hanfu/hold_gray.png and b/img/clothes/upper/hanfu/hold_gray.png differ
diff --git a/img/clothes/upper/hanfu/left_cover_gray.png b/img/clothes/upper/hanfu/left_cover_gray.png
index 6bdb350da8fe84dc41c4bb4bcd13254f258ee9ea..ace89ad14d1dafe07dcbb89d758b5996237541ce 100644
Binary files a/img/clothes/upper/hanfu/left_cover_gray.png and b/img/clothes/upper/hanfu/left_cover_gray.png differ
diff --git a/img/clothes/upper/hanfu/left_gray.png b/img/clothes/upper/hanfu/left_gray.png
index e67c0c9b7c7a97a64a691e9b3bd4a18a07c6372c..19a960c09a575f0efcfd132afdb4eb44ddcaa262 100644
Binary files a/img/clothes/upper/hanfu/left_gray.png and b/img/clothes/upper/hanfu/left_gray.png differ
diff --git a/img/clothes/upper/hanfu/right_cover_gray.png b/img/clothes/upper/hanfu/right_cover_gray.png
index b43b8f0b615c79ace2360f089b8783961efbaa1a..1b89d10ded26dfca4b038b655a2af39d6403f9ea 100644
Binary files a/img/clothes/upper/hanfu/right_cover_gray.png and b/img/clothes/upper/hanfu/right_cover_gray.png differ
diff --git a/img/clothes/upper/hanfu/right_gray.png b/img/clothes/upper/hanfu/right_gray.png
index 1877aa4b4a9671d36a81ac823383ecd54a9f6762..1a2f3563abb4f2a85e5c84fb125a4dc3b47bd716 100644
Binary files a/img/clothes/upper/hanfu/right_gray.png and b/img/clothes/upper/hanfu/right_gray.png differ
diff --git a/img/clothes/upper/haremvest/1_gray.png b/img/clothes/upper/haremvest/1_gray.png
index 813b929e12565670c9ba23871811bce7a42a5f3a..daef9781fb33ee029fb12276de108a76052516e5 100644
Binary files a/img/clothes/upper/haremvest/1_gray.png and b/img/clothes/upper/haremvest/1_gray.png differ
diff --git a/img/clothes/upper/haremvest/3_gray.png b/img/clothes/upper/haremvest/3_gray.png
index 9a051274ef070813c57d7c17e40207242efa7b4a..c310c6224c1c5452d2c7846c2f6dc3e29041849d 100644
Binary files a/img/clothes/upper/haremvest/3_gray.png and b/img/clothes/upper/haremvest/3_gray.png differ
diff --git a/img/clothes/upper/haremvest/5_gray.png b/img/clothes/upper/haremvest/5_gray.png
index f6418e872231a15f6ef230d0c5707c0741df3bf8..1f8c18de6717e8dc602bee6d594c1f398f2eb4a3 100644
Binary files a/img/clothes/upper/haremvest/5_gray.png and b/img/clothes/upper/haremvest/5_gray.png differ
diff --git a/img/clothes/upper/haremvest/frayed_gray.png b/img/clothes/upper/haremvest/frayed_gray.png
index ddcb94345ad7bb213b4a3162a12846da637c9f98..e6ae194c1f7163e2d638f4b17c3457cac45dd7d4 100644
Binary files a/img/clothes/upper/haremvest/frayed_gray.png and b/img/clothes/upper/haremvest/frayed_gray.png differ
diff --git a/img/clothes/upper/haremvest/full_gray.png b/img/clothes/upper/haremvest/full_gray.png
index 921000d36b98842b8bb605a107af8e1db46f571f..68818570836394781ad2652c43f8000fc6166d5d 100644
Binary files a/img/clothes/upper/haremvest/full_gray.png and b/img/clothes/upper/haremvest/full_gray.png differ
diff --git a/img/clothes/upper/haremvest/tattered_gray.png b/img/clothes/upper/haremvest/tattered_gray.png
index dc9410acc3f56f71ac68a99783ea6da5b97b7894..988739a7e4d72fe8d46e076a44c3bc120c8695ef 100644
Binary files a/img/clothes/upper/haremvest/tattered_gray.png and b/img/clothes/upper/haremvest/tattered_gray.png differ
diff --git a/img/clothes/upper/haremvest/torn_gray.png b/img/clothes/upper/haremvest/torn_gray.png
index f975230444c28dcf58237f26a580613e296770fa..259a1bafc66dfc65b275f8c0ddb9a5fc8695ce7c 100644
Binary files a/img/clothes/upper/haremvest/torn_gray.png and b/img/clothes/upper/haremvest/torn_gray.png differ
diff --git a/img/clothes/upper/hoodie/1_gray.png b/img/clothes/upper/hoodie/1_gray.png
index 5261eaaf4d562a2a53058fb7b551292930e90c71..2062558de9ef52cb1b0532324e2bc167662e1889 100644
Binary files a/img/clothes/upper/hoodie/1_gray.png and b/img/clothes/upper/hoodie/1_gray.png differ
diff --git a/img/clothes/upper/hoodie/2_gray.png b/img/clothes/upper/hoodie/2_gray.png
index 78ee2192eb4f49176f6c2ddbfc245c8fa22cfe17..d8e4eaaf0985a1a25a6e508acaf20f1e4c986b9e 100644
Binary files a/img/clothes/upper/hoodie/2_gray.png and b/img/clothes/upper/hoodie/2_gray.png differ
diff --git a/img/clothes/upper/hoodie/3_gray.png b/img/clothes/upper/hoodie/3_gray.png
index 88fa8c2c5d34d07fd2f05d6b736af0c81c8ee048..14a55244196e0d20de58f06500fe5bc192bbdb92 100644
Binary files a/img/clothes/upper/hoodie/3_gray.png and b/img/clothes/upper/hoodie/3_gray.png differ
diff --git a/img/clothes/upper/hoodie/4_gray.png b/img/clothes/upper/hoodie/4_gray.png
index a5adf8e8582bc1d943ee452563c4adf44cf792dd..3edaa73b33a0ffef5b1fd10f25a0e5478f576819 100644
Binary files a/img/clothes/upper/hoodie/4_gray.png and b/img/clothes/upper/hoodie/4_gray.png differ
diff --git a/img/clothes/upper/hoodie/5_gray.png b/img/clothes/upper/hoodie/5_gray.png
index 9563de8787d461ff61c237839353293abf1dafbe..4988336d236e778597530ab157db6d911dcc16b0 100644
Binary files a/img/clothes/upper/hoodie/5_gray.png and b/img/clothes/upper/hoodie/5_gray.png differ
diff --git a/img/clothes/upper/hoodie/acc_down_gray.png b/img/clothes/upper/hoodie/acc_down_gray.png
index 958a2d8e4494624d092db0db69c59e9601f419ae..0a13f31b021bdcccdcde759302e5750ad1fc1caa 100644
Binary files a/img/clothes/upper/hoodie/acc_down_gray.png and b/img/clothes/upper/hoodie/acc_down_gray.png differ
diff --git a/img/clothes/upper/hoodie/acc_gray.png b/img/clothes/upper/hoodie/acc_gray.png
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/hoodie/acc_gray.png and b/img/clothes/upper/hoodie/acc_gray.png differ
diff --git a/img/clothes/upper/hoodie/frayed_down_gray.png b/img/clothes/upper/hoodie/frayed_down_gray.png
index f1310a2267428b505c573340b1a3e7ad94ffc7e1..ee88b4ae227d800eadfc8324c095773a31da64b0 100644
Binary files a/img/clothes/upper/hoodie/frayed_down_gray.png and b/img/clothes/upper/hoodie/frayed_down_gray.png differ
diff --git a/img/clothes/upper/hoodie/frayed_gray.png b/img/clothes/upper/hoodie/frayed_gray.png
index 7cf91bc328cd9cd5f54f1418e138e5132203e21b..8f9b1125cf92a96049a4658a41af2a1654f4cc46 100644
Binary files a/img/clothes/upper/hoodie/frayed_gray.png and b/img/clothes/upper/hoodie/frayed_gray.png differ
diff --git a/img/clothes/upper/hoodie/full_down_gray.png b/img/clothes/upper/hoodie/full_down_gray.png
index 3cf0e16fc860a18442f78c85271a6c04d01c4114..f08d895129ee08bf9dc4de2b57efbc09c4f14f53 100644
Binary files a/img/clothes/upper/hoodie/full_down_gray.png and b/img/clothes/upper/hoodie/full_down_gray.png differ
diff --git a/img/clothes/upper/hoodie/full_gray.png b/img/clothes/upper/hoodie/full_gray.png
index 0d61538b1e8d0dd1d2f326d78ec3f386db00ac00..4a0387315ace03bdde931020f88f03f8268e52bb 100644
Binary files a/img/clothes/upper/hoodie/full_gray.png and b/img/clothes/upper/hoodie/full_gray.png differ
diff --git a/img/clothes/upper/hoodie/hold_gray.png b/img/clothes/upper/hoodie/hold_gray.png
index 502e8d4b20589a5f2c6ebab707133db285880500..6f64761136e149ad6342df3559136f17e47cf7c1 100644
Binary files a/img/clothes/upper/hoodie/hold_gray.png and b/img/clothes/upper/hoodie/hold_gray.png differ
diff --git a/img/clothes/upper/hoodie/left_cover_gray.png b/img/clothes/upper/hoodie/left_cover_gray.png
index 6f819273c770f1d538101544193c4e66a97d96cb..b06b01140eb0d2f97c7675fdc10412ab59de6b98 100644
Binary files a/img/clothes/upper/hoodie/left_cover_gray.png and b/img/clothes/upper/hoodie/left_cover_gray.png differ
diff --git a/img/clothes/upper/hoodie/left_gray.png b/img/clothes/upper/hoodie/left_gray.png
index 0d8f475281845043f2d55fd26520f5e1fcf10f95..b67409701a2e7847664aedff70869e492b3eceb9 100644
Binary files a/img/clothes/upper/hoodie/left_gray.png and b/img/clothes/upper/hoodie/left_gray.png differ
diff --git a/img/clothes/upper/hoodie/right_cover_gray.png b/img/clothes/upper/hoodie/right_cover_gray.png
index 5b5d7de63c6805480d052e8f6fb55a257bf37c91..3f953d349493be8e0151ac3764723c0ad4b44132 100644
Binary files a/img/clothes/upper/hoodie/right_cover_gray.png and b/img/clothes/upper/hoodie/right_cover_gray.png differ
diff --git a/img/clothes/upper/hoodie/right_gray.png b/img/clothes/upper/hoodie/right_gray.png
index b1c196d755c09ea57521f1b8972a5f2ee79fe9e9..e08cb0998e2915aedf57d83eda474f08e3dfea0d 100644
Binary files a/img/clothes/upper/hoodie/right_gray.png and b/img/clothes/upper/hoodie/right_gray.png differ
diff --git a/img/clothes/upper/hoodie/tattered_down_gray.png b/img/clothes/upper/hoodie/tattered_down_gray.png
index 573012ac5aaf638ff410942c4c7c50a87ae2173e..6114f9a78e2081aed65ba2bdde4048f1fb163d9b 100644
Binary files a/img/clothes/upper/hoodie/tattered_down_gray.png and b/img/clothes/upper/hoodie/tattered_down_gray.png differ
diff --git a/img/clothes/upper/hoodie/tattered_gray.png b/img/clothes/upper/hoodie/tattered_gray.png
index 35bdf761a56d270495a3fa11d7fa3783d8dc75cf..e38996ffea9f5bd6b2aded8d349c94797a80dab8 100644
Binary files a/img/clothes/upper/hoodie/tattered_gray.png and b/img/clothes/upper/hoodie/tattered_gray.png differ
diff --git a/img/clothes/upper/hoodie/torn_down_gray.png b/img/clothes/upper/hoodie/torn_down_gray.png
index 0de7618de1b33ccd0653c0ea2841712652caeb28..c18b2141d16b24c59766970e77f58560ca159665 100644
Binary files a/img/clothes/upper/hoodie/torn_down_gray.png and b/img/clothes/upper/hoodie/torn_down_gray.png differ
diff --git a/img/clothes/upper/hoodie/torn_gray.png b/img/clothes/upper/hoodie/torn_gray.png
index 51c4ddac073db1b3f66261f8a361e339e80dc8d1..97aca30468c9612b4e8536f02a40994bf0ba6ab5 100644
Binary files a/img/clothes/upper/hoodie/torn_gray.png and b/img/clothes/upper/hoodie/torn_gray.png differ
diff --git a/img/clothes/upper/hunt/4_gray.png b/img/clothes/upper/hunt/4_gray.png
index 8f57995fc808166739250ce4f7332fc099dcb188..9d5822bbce6dfa54669412365941735e3d63ba29 100644
Binary files a/img/clothes/upper/hunt/4_gray.png and b/img/clothes/upper/hunt/4_gray.png differ
diff --git a/img/clothes/upper/hunt/5_gray.png b/img/clothes/upper/hunt/5_gray.png
index 6b0e597676c04f538b2894fdc1ae3a6cf91e9af6..ad2cfb6ccecff3aaa0e712c8e92efc74c24733ad 100644
Binary files a/img/clothes/upper/hunt/5_gray.png and b/img/clothes/upper/hunt/5_gray.png differ
diff --git a/img/clothes/upper/hunt/6_gray.png b/img/clothes/upper/hunt/6_gray.png
index 8dba84fe93094a817ba0a88a5813cd8a74ab79e3..0e8235828c3f94b5dc81fac3f912fb714b7f0926 100644
Binary files a/img/clothes/upper/hunt/6_gray.png and b/img/clothes/upper/hunt/6_gray.png differ
diff --git a/img/clothes/upper/hunt/acc.png b/img/clothes/upper/hunt/acc.png
index d727a0b28a5d78b6fdb72099e520b3aa52169667..ca8d313a58675991c23c04cb1331d6f126da02d9 100644
Binary files a/img/clothes/upper/hunt/acc.png and b/img/clothes/upper/hunt/acc.png differ
diff --git a/img/clothes/upper/hunt/frayed_gray.png b/img/clothes/upper/hunt/frayed_gray.png
index a0c82da35447d96f436753dc187881eac9335443..63a901cd086782bfd860382626d48bd4cff36346 100644
Binary files a/img/clothes/upper/hunt/frayed_gray.png and b/img/clothes/upper/hunt/frayed_gray.png differ
diff --git a/img/clothes/upper/hunt/full_gray.png b/img/clothes/upper/hunt/full_gray.png
index a0c82da35447d96f436753dc187881eac9335443..63a901cd086782bfd860382626d48bd4cff36346 100644
Binary files a/img/clothes/upper/hunt/full_gray.png and b/img/clothes/upper/hunt/full_gray.png differ
diff --git a/img/clothes/upper/hunt/hold_gray.png b/img/clothes/upper/hunt/hold_gray.png
index f4b446d254eca63b65f1cc37f73c18ab4b84cc94..b765d9388c6067b4938302a95fcdd4a54d27c4c2 100644
Binary files a/img/clothes/upper/hunt/hold_gray.png and b/img/clothes/upper/hunt/hold_gray.png differ
diff --git a/img/clothes/upper/hunt/left_cover_gray.png b/img/clothes/upper/hunt/left_cover_gray.png
index c767408294bbd5455fdf56e5ac15bacefc5d031a..07197fe06bec3d074ad1b94b5c6b5d507a40ff2b 100644
Binary files a/img/clothes/upper/hunt/left_cover_gray.png and b/img/clothes/upper/hunt/left_cover_gray.png differ
diff --git a/img/clothes/upper/hunt/left_gray.png b/img/clothes/upper/hunt/left_gray.png
index c02b5d82ea2dafe313c2d8b22b1ed3fc451539ec..54ac771a32748233db1d1f6f261590a8c9d298a2 100644
Binary files a/img/clothes/upper/hunt/left_gray.png and b/img/clothes/upper/hunt/left_gray.png differ
diff --git a/img/clothes/upper/hunt/right_cover_gray.png b/img/clothes/upper/hunt/right_cover_gray.png
index 712b877ffcf2939c9165b1e53c963ac6a3f9e77f..88e40143eed427cb56b3bd8b42665a34c4313f4d 100644
Binary files a/img/clothes/upper/hunt/right_cover_gray.png and b/img/clothes/upper/hunt/right_cover_gray.png differ
diff --git a/img/clothes/upper/hunt/right_gray.png b/img/clothes/upper/hunt/right_gray.png
index 6335bca8545ffe303869de61d6996bd892a913bb..56b6f07fc3d9b7cc9260602760ad393f4a7b7735 100644
Binary files a/img/clothes/upper/hunt/right_gray.png and b/img/clothes/upper/hunt/right_gray.png differ
diff --git a/img/clothes/upper/hunt/tattered_gray.png b/img/clothes/upper/hunt/tattered_gray.png
index a0c82da35447d96f436753dc187881eac9335443..63a901cd086782bfd860382626d48bd4cff36346 100644
Binary files a/img/clothes/upper/hunt/tattered_gray.png and b/img/clothes/upper/hunt/tattered_gray.png differ
diff --git a/img/clothes/upper/hunt/torn_gray.png b/img/clothes/upper/hunt/torn_gray.png
index a0c82da35447d96f436753dc187881eac9335443..63a901cd086782bfd860382626d48bd4cff36346 100644
Binary files a/img/clothes/upper/hunt/torn_gray.png and b/img/clothes/upper/hunt/torn_gray.png differ
diff --git a/img/clothes/upper/jingledress/3.png b/img/clothes/upper/jingledress/3.png
index d181249d3a78fb2ce9970eaeac1abaa2966f4de7..a68e074eabec4ff4335dd95a67ac1ea9cf5eb988 100644
Binary files a/img/clothes/upper/jingledress/3.png and b/img/clothes/upper/jingledress/3.png differ
diff --git a/img/clothes/upper/jingledress/5.png b/img/clothes/upper/jingledress/5.png
index 7bfcf149c45b5a9863938a23c09bc3c015258081..de5745b1e0f3e5b0c2f86f4e3d409eb107a948dd 100644
Binary files a/img/clothes/upper/jingledress/5.png and b/img/clothes/upper/jingledress/5.png differ
diff --git a/img/clothes/upper/jingledress/frayed.png b/img/clothes/upper/jingledress/frayed.png
index 83fbb03586668cc44499d4a4a8af0d4639238415..d44c1150b81cd09a2fec49c70c2f2ed8ebb617c8 100644
Binary files a/img/clothes/upper/jingledress/frayed.png and b/img/clothes/upper/jingledress/frayed.png differ
diff --git a/img/clothes/upper/jingledress/full.png b/img/clothes/upper/jingledress/full.png
index 7c434033db1dd566a13eceb4c5db39028aa6c258..515df88700333fd964e250ee83c5dbb2d23171a3 100644
Binary files a/img/clothes/upper/jingledress/full.png and b/img/clothes/upper/jingledress/full.png differ
diff --git a/img/clothes/upper/jingledress/hold.png b/img/clothes/upper/jingledress/hold.png
index aabc1a7f5ba7c9a173cca22e7abeb277bec6dfa8..937ff5a64ec924125404154ded8aaad1d02154a3 100644
Binary files a/img/clothes/upper/jingledress/hold.png and b/img/clothes/upper/jingledress/hold.png differ
diff --git a/img/clothes/upper/jingledress/left.png b/img/clothes/upper/jingledress/left.png
index c9b06eda69796da3f0e09143b15b2216912b4b5e..fb00db4aacb9c2b5d926343c998074e61096c6c9 100644
Binary files a/img/clothes/upper/jingledress/left.png and b/img/clothes/upper/jingledress/left.png differ
diff --git a/img/clothes/upper/jingledress/left_cover.png b/img/clothes/upper/jingledress/left_cover.png
index 24d4daf2153f5ea3c0c5d19616ef072180640a30..93c8ade32c4ca3621c48282161f0fc0825bd4bcb 100644
Binary files a/img/clothes/upper/jingledress/left_cover.png and b/img/clothes/upper/jingledress/left_cover.png differ
diff --git a/img/clothes/upper/jingledress/right.png b/img/clothes/upper/jingledress/right.png
index 3dc2c1f4e8a542b417d1e5cdaa0ef8bd50bc6b4a..9daf1107cf88e034de3a00a5a230d70fe4218ebc 100644
Binary files a/img/clothes/upper/jingledress/right.png and b/img/clothes/upper/jingledress/right.png differ
diff --git a/img/clothes/upper/jingledress/right_cover.png b/img/clothes/upper/jingledress/right_cover.png
index 356932c4dbec22e7a0972f28233f5b4cabc2ef99..f7a9c50101609e605a009c7b02dbbf0e0bc71168 100644
Binary files a/img/clothes/upper/jingledress/right_cover.png and b/img/clothes/upper/jingledress/right_cover.png differ
diff --git a/img/clothes/upper/jingledress/tattered.png b/img/clothes/upper/jingledress/tattered.png
index e061549a31e38966fd9285ec90ccdab3ff415170..63cbd828eb038eadc552fbb6a785288ea3c3f3ee 100644
Binary files a/img/clothes/upper/jingledress/tattered.png and b/img/clothes/upper/jingledress/tattered.png differ
diff --git a/img/clothes/upper/jingledress/torn.png b/img/clothes/upper/jingledress/torn.png
index 96dae525b2892a97d37c6c949ea0502be4158262..6e42ee4a141534c8b45fff8f40ee72c42874f98b 100644
Binary files a/img/clothes/upper/jingledress/torn.png and b/img/clothes/upper/jingledress/torn.png differ
diff --git a/img/clothes/upper/jingledresssleeveless/3.png b/img/clothes/upper/jingledresssleeveless/3.png
index d181249d3a78fb2ce9970eaeac1abaa2966f4de7..a68e074eabec4ff4335dd95a67ac1ea9cf5eb988 100644
Binary files a/img/clothes/upper/jingledresssleeveless/3.png and b/img/clothes/upper/jingledresssleeveless/3.png differ
diff --git a/img/clothes/upper/jingledresssleeveless/5.png b/img/clothes/upper/jingledresssleeveless/5.png
index 7bfcf149c45b5a9863938a23c09bc3c015258081..de5745b1e0f3e5b0c2f86f4e3d409eb107a948dd 100644
Binary files a/img/clothes/upper/jingledresssleeveless/5.png and b/img/clothes/upper/jingledresssleeveless/5.png differ
diff --git a/img/clothes/upper/jingledresssleeveless/frayed.png b/img/clothes/upper/jingledresssleeveless/frayed.png
index 83fbb03586668cc44499d4a4a8af0d4639238415..d44c1150b81cd09a2fec49c70c2f2ed8ebb617c8 100644
Binary files a/img/clothes/upper/jingledresssleeveless/frayed.png and b/img/clothes/upper/jingledresssleeveless/frayed.png differ
diff --git a/img/clothes/upper/jingledresssleeveless/full.png b/img/clothes/upper/jingledresssleeveless/full.png
index 7c434033db1dd566a13eceb4c5db39028aa6c258..515df88700333fd964e250ee83c5dbb2d23171a3 100644
Binary files a/img/clothes/upper/jingledresssleeveless/full.png and b/img/clothes/upper/jingledresssleeveless/full.png differ
diff --git a/img/clothes/upper/jingledresssleeveless/tattered.png b/img/clothes/upper/jingledresssleeveless/tattered.png
index e061549a31e38966fd9285ec90ccdab3ff415170..63cbd828eb038eadc552fbb6a785288ea3c3f3ee 100644
Binary files a/img/clothes/upper/jingledresssleeveless/tattered.png and b/img/clothes/upper/jingledresssleeveless/tattered.png differ
diff --git a/img/clothes/upper/jingledresssleeveless/torn.png b/img/clothes/upper/jingledresssleeveless/torn.png
index 96dae525b2892a97d37c6c949ea0502be4158262..6e42ee4a141534c8b45fff8f40ee72c42874f98b 100644
Binary files a/img/clothes/upper/jingledresssleeveless/torn.png and b/img/clothes/upper/jingledresssleeveless/torn.png differ
diff --git a/img/clothes/upper/jumper/1_gray.png b/img/clothes/upper/jumper/1_gray.png
index 80bb9b3daa0feee578a6ea4f5d011f2fac4264f6..4f9f72feabc536cfc3560b12c2c661bfd5127bb7 100644
Binary files a/img/clothes/upper/jumper/1_gray.png and b/img/clothes/upper/jumper/1_gray.png differ
diff --git a/img/clothes/upper/jumper/2_gray.png b/img/clothes/upper/jumper/2_gray.png
index 428311d4bd1888303cc5df33066620018f794871..92752dd01b6b386b22edbc7186b3c702b9994e34 100644
Binary files a/img/clothes/upper/jumper/2_gray.png and b/img/clothes/upper/jumper/2_gray.png differ
diff --git a/img/clothes/upper/jumper/3_gray.png b/img/clothes/upper/jumper/3_gray.png
index bf3b2c3a6389babbeb6c24a04a23bdb4375a33a4..23c2c656bbf6eecb59fbd792f40eb92fcfa36eba 100644
Binary files a/img/clothes/upper/jumper/3_gray.png and b/img/clothes/upper/jumper/3_gray.png differ
diff --git a/img/clothes/upper/jumper/4_gray.png b/img/clothes/upper/jumper/4_gray.png
index c3610d371b61dec6a2991ff6676c988f8c8c50f1..801cd1927492a4648f82d5f588392b3d62ad8743 100644
Binary files a/img/clothes/upper/jumper/4_gray.png and b/img/clothes/upper/jumper/4_gray.png differ
diff --git a/img/clothes/upper/jumper/5_gray.png b/img/clothes/upper/jumper/5_gray.png
index beb8f536e3c2f4a7a04e177fbde84902d7a67068..0388efd83af15553ff560fee3aeed31a1fce713a 100644
Binary files a/img/clothes/upper/jumper/5_gray.png and b/img/clothes/upper/jumper/5_gray.png differ
diff --git a/img/clothes/upper/jumper/acc_frayed_gray.png b/img/clothes/upper/jumper/acc_frayed_gray.png
index b5926081b5aa42488dabb96f72acabe2d3ee52cf..4ce89110d82f69ed3ca19c492f5cec20105ebb95 100644
Binary files a/img/clothes/upper/jumper/acc_frayed_gray.png and b/img/clothes/upper/jumper/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/jumper/acc_full_gray.png b/img/clothes/upper/jumper/acc_full_gray.png
index 7600347a58bc322699a701411b7b68abc8523c2e..60f63094d1b3f1ce7900e545640ed46c07ad1b83 100644
Binary files a/img/clothes/upper/jumper/acc_full_gray.png and b/img/clothes/upper/jumper/acc_full_gray.png differ
diff --git a/img/clothes/upper/jumper/acc_tattered_gray.png b/img/clothes/upper/jumper/acc_tattered_gray.png
index 0f45bd53bdf8ec8dc38ddea01081e8581b130790..6dad0170364af4b9b238810ccc6f1d80c6495542 100644
Binary files a/img/clothes/upper/jumper/acc_tattered_gray.png and b/img/clothes/upper/jumper/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/jumper/acc_torn_gray.png b/img/clothes/upper/jumper/acc_torn_gray.png
index db030c033465942710b71c9dc55646f51ccfecd2..c9b43a8c3568db4f88842a66024caeccb2fa0796 100644
Binary files a/img/clothes/upper/jumper/acc_torn_gray.png and b/img/clothes/upper/jumper/acc_torn_gray.png differ
diff --git a/img/clothes/upper/jumper/frayed_gray.png b/img/clothes/upper/jumper/frayed_gray.png
index f1037bfe513a4d94ecd5bfbf3d791730f5fe5527..7acd966b296d223996679eb50cd46e4900253fa4 100644
Binary files a/img/clothes/upper/jumper/frayed_gray.png and b/img/clothes/upper/jumper/frayed_gray.png differ
diff --git a/img/clothes/upper/jumper/full_gray.png b/img/clothes/upper/jumper/full_gray.png
index b86d3b8456e3b5de8192fba8ba5e3b0b4a08cbcb..7acd966b296d223996679eb50cd46e4900253fa4 100644
Binary files a/img/clothes/upper/jumper/full_gray.png and b/img/clothes/upper/jumper/full_gray.png differ
diff --git a/img/clothes/upper/jumper/hold_acc_gray.png b/img/clothes/upper/jumper/hold_acc_gray.png
index 522605ee4760d3b9f0fc2b81472eb349481d0d65..764192a8a671bd2f68bbc36d9e518461816efd11 100644
Binary files a/img/clothes/upper/jumper/hold_acc_gray.png and b/img/clothes/upper/jumper/hold_acc_gray.png differ
diff --git a/img/clothes/upper/jumper/hold_gray.png b/img/clothes/upper/jumper/hold_gray.png
index b3e306524ca010f1cade5d1438987e1b934b697b..eff9ee5f885f0c3c7cba7f662bee9816e1d1aa74 100644
Binary files a/img/clothes/upper/jumper/hold_gray.png and b/img/clothes/upper/jumper/hold_gray.png differ
diff --git a/img/clothes/upper/jumper/left_acc_gray.png b/img/clothes/upper/jumper/left_acc_gray.png
index b3e9f809ddca4d04e00efc36b66d230d5aed5ac5..c46d14a5800e1c907616e504cdbcc085bae31e41 100644
Binary files a/img/clothes/upper/jumper/left_acc_gray.png and b/img/clothes/upper/jumper/left_acc_gray.png differ
diff --git a/img/clothes/upper/jumper/left_cover_acc_gray.png b/img/clothes/upper/jumper/left_cover_acc_gray.png
index 1d0856a7b517d49f038d0548a3d57248d261a0dc..a416550de2c71b6d40f324dd81f1f93792bb1eb0 100644
Binary files a/img/clothes/upper/jumper/left_cover_acc_gray.png and b/img/clothes/upper/jumper/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/jumper/left_cover_gray.png b/img/clothes/upper/jumper/left_cover_gray.png
index 894840d4667cd91d6ff20c0e9911130213bbf951..025579d2ab6984760a8069f9f0014aa275e235d4 100644
Binary files a/img/clothes/upper/jumper/left_cover_gray.png and b/img/clothes/upper/jumper/left_cover_gray.png differ
diff --git a/img/clothes/upper/jumper/left_gray.png b/img/clothes/upper/jumper/left_gray.png
index 03d1e1d364b44951ac0e191ddf5ef6ebb5a0c4f7..3d84359e6483fae265f5c00e1c0351baaee82755 100644
Binary files a/img/clothes/upper/jumper/left_gray.png and b/img/clothes/upper/jumper/left_gray.png differ
diff --git a/img/clothes/upper/jumper/right_acc_gray.png b/img/clothes/upper/jumper/right_acc_gray.png
index 248f27366a7604f77952d9bede3b34c6e28721e7..975cca90be47026036720eb929b2b9fe9c9d4096 100644
Binary files a/img/clothes/upper/jumper/right_acc_gray.png and b/img/clothes/upper/jumper/right_acc_gray.png differ
diff --git a/img/clothes/upper/jumper/right_cover_acc_gray.png b/img/clothes/upper/jumper/right_cover_acc_gray.png
index c55733c2434fcc180f5943528c809383bab87f79..5c68bd4d7d414311205216edf4424f0b5d362812 100644
Binary files a/img/clothes/upper/jumper/right_cover_acc_gray.png and b/img/clothes/upper/jumper/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/jumper/right_cover_gray.png b/img/clothes/upper/jumper/right_cover_gray.png
index e6bfba09cae7f99b20dd811972ead7b53592191f..26cfbae84b6acedda73cc9c48b9774e8f53e783d 100644
Binary files a/img/clothes/upper/jumper/right_cover_gray.png and b/img/clothes/upper/jumper/right_cover_gray.png differ
diff --git a/img/clothes/upper/jumper/right_gray.png b/img/clothes/upper/jumper/right_gray.png
index 2c9c23b617eb47cbf437256d9759a9206605c547..5917fe56ec5d0e5af182acbc1622520840007a4f 100644
Binary files a/img/clothes/upper/jumper/right_gray.png and b/img/clothes/upper/jumper/right_gray.png differ
diff --git a/img/clothes/upper/jumper/tattered_gray.png b/img/clothes/upper/jumper/tattered_gray.png
index 7ffa610f80f34d6930bbaf8f3eeb7bc5f15cd1fa..6252ab9d53e88827acdf15ff245fab43eb3f9999 100644
Binary files a/img/clothes/upper/jumper/tattered_gray.png and b/img/clothes/upper/jumper/tattered_gray.png differ
diff --git a/img/clothes/upper/jumper/torn_gray.png b/img/clothes/upper/jumper/torn_gray.png
index 0add6d1ffbf039f30ec2d51f82af46217a61a448..2e92e82a176bdb804ea38ff0bb49bda8d229546d 100644
Binary files a/img/clothes/upper/jumper/torn_gray.png and b/img/clothes/upper/jumper/torn_gray.png differ
diff --git a/img/clothes/upper/jumperghost/1_gray.png b/img/clothes/upper/jumperghost/1_gray.png
index 80bb9b3daa0feee578a6ea4f5d011f2fac4264f6..4f9f72feabc536cfc3560b12c2c661bfd5127bb7 100644
Binary files a/img/clothes/upper/jumperghost/1_gray.png and b/img/clothes/upper/jumperghost/1_gray.png differ
diff --git a/img/clothes/upper/jumperghost/2_gray.png b/img/clothes/upper/jumperghost/2_gray.png
index 428311d4bd1888303cc5df33066620018f794871..92752dd01b6b386b22edbc7186b3c702b9994e34 100644
Binary files a/img/clothes/upper/jumperghost/2_gray.png and b/img/clothes/upper/jumperghost/2_gray.png differ
diff --git a/img/clothes/upper/jumperghost/3_gray.png b/img/clothes/upper/jumperghost/3_gray.png
index bf3b2c3a6389babbeb6c24a04a23bdb4375a33a4..23c2c656bbf6eecb59fbd792f40eb92fcfa36eba 100644
Binary files a/img/clothes/upper/jumperghost/3_gray.png and b/img/clothes/upper/jumperghost/3_gray.png differ
diff --git a/img/clothes/upper/jumperghost/4_gray.png b/img/clothes/upper/jumperghost/4_gray.png
index c3610d371b61dec6a2991ff6676c988f8c8c50f1..801cd1927492a4648f82d5f588392b3d62ad8743 100644
Binary files a/img/clothes/upper/jumperghost/4_gray.png and b/img/clothes/upper/jumperghost/4_gray.png differ
diff --git a/img/clothes/upper/jumperghost/5_gray.png b/img/clothes/upper/jumperghost/5_gray.png
index beb8f536e3c2f4a7a04e177fbde84902d7a67068..0388efd83af15553ff560fee3aeed31a1fce713a 100644
Binary files a/img/clothes/upper/jumperghost/5_gray.png and b/img/clothes/upper/jumperghost/5_gray.png differ
diff --git a/img/clothes/upper/jumperghost/acc_frayed_gray.png b/img/clothes/upper/jumperghost/acc_frayed_gray.png
index 042d90598ffda0bbba7298c485d005f865b1e85e..04726e6f19af13e2ffe7d774d7541e2c847a4bfb 100644
Binary files a/img/clothes/upper/jumperghost/acc_frayed_gray.png and b/img/clothes/upper/jumperghost/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/jumperghost/acc_full_gray.png b/img/clothes/upper/jumperghost/acc_full_gray.png
index 628df4c6daeabc3e9246b7b51a5a20354109991e..92d83be7c3b8d0185810cd7998c847cde3d9ce8a 100644
Binary files a/img/clothes/upper/jumperghost/acc_full_gray.png and b/img/clothes/upper/jumperghost/acc_full_gray.png differ
diff --git a/img/clothes/upper/jumperghost/acc_tattered_gray.png b/img/clothes/upper/jumperghost/acc_tattered_gray.png
index 306ec82a50f3ab68ddb329143cb027a7d9fa4977..a30ea3270468a4fe6f8f3f7ee94504743e607818 100644
Binary files a/img/clothes/upper/jumperghost/acc_tattered_gray.png and b/img/clothes/upper/jumperghost/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/jumperghost/acc_torn_gray.png b/img/clothes/upper/jumperghost/acc_torn_gray.png
index bcdfd407d9448c721e5f816f6306a6814ab2b0ba..08fe1aff7fc72e19bebe453f387b8b5172547bf5 100644
Binary files a/img/clothes/upper/jumperghost/acc_torn_gray.png and b/img/clothes/upper/jumperghost/acc_torn_gray.png differ
diff --git a/img/clothes/upper/jumperghost/frayed_gray.png b/img/clothes/upper/jumperghost/frayed_gray.png
index f1037bfe513a4d94ecd5bfbf3d791730f5fe5527..7acd966b296d223996679eb50cd46e4900253fa4 100644
Binary files a/img/clothes/upper/jumperghost/frayed_gray.png and b/img/clothes/upper/jumperghost/frayed_gray.png differ
diff --git a/img/clothes/upper/jumperghost/full_gray.png b/img/clothes/upper/jumperghost/full_gray.png
index b86d3b8456e3b5de8192fba8ba5e3b0b4a08cbcb..7acd966b296d223996679eb50cd46e4900253fa4 100644
Binary files a/img/clothes/upper/jumperghost/full_gray.png and b/img/clothes/upper/jumperghost/full_gray.png differ
diff --git a/img/clothes/upper/jumperghost/hold_acc_gray.png b/img/clothes/upper/jumperghost/hold_acc_gray.png
index 522605ee4760d3b9f0fc2b81472eb349481d0d65..764192a8a671bd2f68bbc36d9e518461816efd11 100644
Binary files a/img/clothes/upper/jumperghost/hold_acc_gray.png and b/img/clothes/upper/jumperghost/hold_acc_gray.png differ
diff --git a/img/clothes/upper/jumperghost/hold_gray.png b/img/clothes/upper/jumperghost/hold_gray.png
index b3e306524ca010f1cade5d1438987e1b934b697b..eff9ee5f885f0c3c7cba7f662bee9816e1d1aa74 100644
Binary files a/img/clothes/upper/jumperghost/hold_gray.png and b/img/clothes/upper/jumperghost/hold_gray.png differ
diff --git a/img/clothes/upper/jumperghost/left_acc_gray.png b/img/clothes/upper/jumperghost/left_acc_gray.png
index b3e9f809ddca4d04e00efc36b66d230d5aed5ac5..c46d14a5800e1c907616e504cdbcc085bae31e41 100644
Binary files a/img/clothes/upper/jumperghost/left_acc_gray.png and b/img/clothes/upper/jumperghost/left_acc_gray.png differ
diff --git a/img/clothes/upper/jumperghost/left_cover_acc.png b/img/clothes/upper/jumperghost/left_cover_acc.png
index 2a34330f6a2fd659bc71525b76ee6cf18855ed54..3d3da131c697af7718e9f2bd3c1cddcb4b5f2129 100644
Binary files a/img/clothes/upper/jumperghost/left_cover_acc.png and b/img/clothes/upper/jumperghost/left_cover_acc.png differ
diff --git a/img/clothes/upper/jumperghost/left_cover_acc_gray.png b/img/clothes/upper/jumperghost/left_cover_acc_gray.png
index 1d0856a7b517d49f038d0548a3d57248d261a0dc..a416550de2c71b6d40f324dd81f1f93792bb1eb0 100644
Binary files a/img/clothes/upper/jumperghost/left_cover_acc_gray.png and b/img/clothes/upper/jumperghost/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/jumperghost/left_cover_gray.png b/img/clothes/upper/jumperghost/left_cover_gray.png
index 894840d4667cd91d6ff20c0e9911130213bbf951..025579d2ab6984760a8069f9f0014aa275e235d4 100644
Binary files a/img/clothes/upper/jumperghost/left_cover_gray.png and b/img/clothes/upper/jumperghost/left_cover_gray.png differ
diff --git a/img/clothes/upper/jumperghost/left_gray.png b/img/clothes/upper/jumperghost/left_gray.png
index 03d1e1d364b44951ac0e191ddf5ef6ebb5a0c4f7..3d84359e6483fae265f5c00e1c0351baaee82755 100644
Binary files a/img/clothes/upper/jumperghost/left_gray.png and b/img/clothes/upper/jumperghost/left_gray.png differ
diff --git a/img/clothes/upper/jumperghost/right_acc_gray.png b/img/clothes/upper/jumperghost/right_acc_gray.png
index 248f27366a7604f77952d9bede3b34c6e28721e7..975cca90be47026036720eb929b2b9fe9c9d4096 100644
Binary files a/img/clothes/upper/jumperghost/right_acc_gray.png and b/img/clothes/upper/jumperghost/right_acc_gray.png differ
diff --git a/img/clothes/upper/jumperghost/right_cover_acc_gray.png b/img/clothes/upper/jumperghost/right_cover_acc_gray.png
index c55733c2434fcc180f5943528c809383bab87f79..5c68bd4d7d414311205216edf4424f0b5d362812 100644
Binary files a/img/clothes/upper/jumperghost/right_cover_acc_gray.png and b/img/clothes/upper/jumperghost/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/jumperghost/right_cover_gray.png b/img/clothes/upper/jumperghost/right_cover_gray.png
index e6bfba09cae7f99b20dd811972ead7b53592191f..26cfbae84b6acedda73cc9c48b9774e8f53e783d 100644
Binary files a/img/clothes/upper/jumperghost/right_cover_gray.png and b/img/clothes/upper/jumperghost/right_cover_gray.png differ
diff --git a/img/clothes/upper/jumperghost/right_gray.png b/img/clothes/upper/jumperghost/right_gray.png
index 2c9c23b617eb47cbf437256d9759a9206605c547..5917fe56ec5d0e5af182acbc1622520840007a4f 100644
Binary files a/img/clothes/upper/jumperghost/right_gray.png and b/img/clothes/upper/jumperghost/right_gray.png differ
diff --git a/img/clothes/upper/jumperghost/tattered_gray.png b/img/clothes/upper/jumperghost/tattered_gray.png
index 7ffa610f80f34d6930bbaf8f3eeb7bc5f15cd1fa..6252ab9d53e88827acdf15ff245fab43eb3f9999 100644
Binary files a/img/clothes/upper/jumperghost/tattered_gray.png and b/img/clothes/upper/jumperghost/tattered_gray.png differ
diff --git a/img/clothes/upper/jumperghost/torn_gray.png b/img/clothes/upper/jumperghost/torn_gray.png
index 0add6d1ffbf039f30ec2d51f82af46217a61a448..2e92e82a176bdb804ea38ff0bb49bda8d229546d 100644
Binary files a/img/clothes/upper/jumperghost/torn_gray.png and b/img/clothes/upper/jumperghost/torn_gray.png differ
diff --git a/img/clothes/upper/jumperheart/1_gray.png b/img/clothes/upper/jumperheart/1_gray.png
index 80bb9b3daa0feee578a6ea4f5d011f2fac4264f6..4f9f72feabc536cfc3560b12c2c661bfd5127bb7 100644
Binary files a/img/clothes/upper/jumperheart/1_gray.png and b/img/clothes/upper/jumperheart/1_gray.png differ
diff --git a/img/clothes/upper/jumperheart/2_gray.png b/img/clothes/upper/jumperheart/2_gray.png
index 428311d4bd1888303cc5df33066620018f794871..92752dd01b6b386b22edbc7186b3c702b9994e34 100644
Binary files a/img/clothes/upper/jumperheart/2_gray.png and b/img/clothes/upper/jumperheart/2_gray.png differ
diff --git a/img/clothes/upper/jumperheart/3_gray.png b/img/clothes/upper/jumperheart/3_gray.png
index bf3b2c3a6389babbeb6c24a04a23bdb4375a33a4..23c2c656bbf6eecb59fbd792f40eb92fcfa36eba 100644
Binary files a/img/clothes/upper/jumperheart/3_gray.png and b/img/clothes/upper/jumperheart/3_gray.png differ
diff --git a/img/clothes/upper/jumperheart/4_gray.png b/img/clothes/upper/jumperheart/4_gray.png
index c3610d371b61dec6a2991ff6676c988f8c8c50f1..801cd1927492a4648f82d5f588392b3d62ad8743 100644
Binary files a/img/clothes/upper/jumperheart/4_gray.png and b/img/clothes/upper/jumperheart/4_gray.png differ
diff --git a/img/clothes/upper/jumperheart/5_gray.png b/img/clothes/upper/jumperheart/5_gray.png
index beb8f536e3c2f4a7a04e177fbde84902d7a67068..0388efd83af15553ff560fee3aeed31a1fce713a 100644
Binary files a/img/clothes/upper/jumperheart/5_gray.png and b/img/clothes/upper/jumperheart/5_gray.png differ
diff --git a/img/clothes/upper/jumperheart/acc_frayed_gray.png b/img/clothes/upper/jumperheart/acc_frayed_gray.png
index 86cac5ac629f8e6863cc463e2a62d30305c62bf4..95c6f60e6dce5da6ca8cd36fbd75c7e4200d17e9 100644
Binary files a/img/clothes/upper/jumperheart/acc_frayed_gray.png and b/img/clothes/upper/jumperheart/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/jumperheart/acc_full_gray.png b/img/clothes/upper/jumperheart/acc_full_gray.png
index bf80af8b69af2850f22fdac861a099843ba33f90..a04d4b1ec043266555fb7faa408b1ad590d1dbd0 100644
Binary files a/img/clothes/upper/jumperheart/acc_full_gray.png and b/img/clothes/upper/jumperheart/acc_full_gray.png differ
diff --git a/img/clothes/upper/jumperheart/acc_tattered_gray.png b/img/clothes/upper/jumperheart/acc_tattered_gray.png
index 214fc89cc543abdaf08c816db029d8b8bdaf8c4b..f94785a7546314b76eb4191555ae772cfae96b28 100644
Binary files a/img/clothes/upper/jumperheart/acc_tattered_gray.png and b/img/clothes/upper/jumperheart/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/jumperheart/acc_torn_gray.png b/img/clothes/upper/jumperheart/acc_torn_gray.png
index 0cc465ed5a54f77e767753b57d4b39f85268f7bf..13419086ecd3817290a4b91d3cc299d0fae9098b 100644
Binary files a/img/clothes/upper/jumperheart/acc_torn_gray.png and b/img/clothes/upper/jumperheart/acc_torn_gray.png differ
diff --git a/img/clothes/upper/jumperheart/frayed_gray.png b/img/clothes/upper/jumperheart/frayed_gray.png
index f1037bfe513a4d94ecd5bfbf3d791730f5fe5527..7acd966b296d223996679eb50cd46e4900253fa4 100644
Binary files a/img/clothes/upper/jumperheart/frayed_gray.png and b/img/clothes/upper/jumperheart/frayed_gray.png differ
diff --git a/img/clothes/upper/jumperheart/full_gray.png b/img/clothes/upper/jumperheart/full_gray.png
index b86d3b8456e3b5de8192fba8ba5e3b0b4a08cbcb..7acd966b296d223996679eb50cd46e4900253fa4 100644
Binary files a/img/clothes/upper/jumperheart/full_gray.png and b/img/clothes/upper/jumperheart/full_gray.png differ
diff --git a/img/clothes/upper/jumperheart/hold_acc_gray.png b/img/clothes/upper/jumperheart/hold_acc_gray.png
index 522605ee4760d3b9f0fc2b81472eb349481d0d65..764192a8a671bd2f68bbc36d9e518461816efd11 100644
Binary files a/img/clothes/upper/jumperheart/hold_acc_gray.png and b/img/clothes/upper/jumperheart/hold_acc_gray.png differ
diff --git a/img/clothes/upper/jumperheart/hold_gray.png b/img/clothes/upper/jumperheart/hold_gray.png
index b3e306524ca010f1cade5d1438987e1b934b697b..eff9ee5f885f0c3c7cba7f662bee9816e1d1aa74 100644
Binary files a/img/clothes/upper/jumperheart/hold_gray.png and b/img/clothes/upper/jumperheart/hold_gray.png differ
diff --git a/img/clothes/upper/jumperheart/left_acc_gray.png b/img/clothes/upper/jumperheart/left_acc_gray.png
index b3e9f809ddca4d04e00efc36b66d230d5aed5ac5..c46d14a5800e1c907616e504cdbcc085bae31e41 100644
Binary files a/img/clothes/upper/jumperheart/left_acc_gray.png and b/img/clothes/upper/jumperheart/left_acc_gray.png differ
diff --git a/img/clothes/upper/jumperheart/left_cover_acc_gray.png b/img/clothes/upper/jumperheart/left_cover_acc_gray.png
index 1d0856a7b517d49f038d0548a3d57248d261a0dc..a416550de2c71b6d40f324dd81f1f93792bb1eb0 100644
Binary files a/img/clothes/upper/jumperheart/left_cover_acc_gray.png and b/img/clothes/upper/jumperheart/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/jumperheart/left_cover_gray.png b/img/clothes/upper/jumperheart/left_cover_gray.png
index 894840d4667cd91d6ff20c0e9911130213bbf951..025579d2ab6984760a8069f9f0014aa275e235d4 100644
Binary files a/img/clothes/upper/jumperheart/left_cover_gray.png and b/img/clothes/upper/jumperheart/left_cover_gray.png differ
diff --git a/img/clothes/upper/jumperheart/left_gray.png b/img/clothes/upper/jumperheart/left_gray.png
index 03d1e1d364b44951ac0e191ddf5ef6ebb5a0c4f7..3d84359e6483fae265f5c00e1c0351baaee82755 100644
Binary files a/img/clothes/upper/jumperheart/left_gray.png and b/img/clothes/upper/jumperheart/left_gray.png differ
diff --git a/img/clothes/upper/jumperheart/right_acc_gray.png b/img/clothes/upper/jumperheart/right_acc_gray.png
index 248f27366a7604f77952d9bede3b34c6e28721e7..975cca90be47026036720eb929b2b9fe9c9d4096 100644
Binary files a/img/clothes/upper/jumperheart/right_acc_gray.png and b/img/clothes/upper/jumperheart/right_acc_gray.png differ
diff --git a/img/clothes/upper/jumperheart/right_cover_acc_gray.png b/img/clothes/upper/jumperheart/right_cover_acc_gray.png
index c55733c2434fcc180f5943528c809383bab87f79..5c68bd4d7d414311205216edf4424f0b5d362812 100644
Binary files a/img/clothes/upper/jumperheart/right_cover_acc_gray.png and b/img/clothes/upper/jumperheart/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/jumperheart/right_cover_gray.png b/img/clothes/upper/jumperheart/right_cover_gray.png
index e6bfba09cae7f99b20dd811972ead7b53592191f..26cfbae84b6acedda73cc9c48b9774e8f53e783d 100644
Binary files a/img/clothes/upper/jumperheart/right_cover_gray.png and b/img/clothes/upper/jumperheart/right_cover_gray.png differ
diff --git a/img/clothes/upper/jumperheart/right_gray.png b/img/clothes/upper/jumperheart/right_gray.png
index 2c9c23b617eb47cbf437256d9759a9206605c547..5917fe56ec5d0e5af182acbc1622520840007a4f 100644
Binary files a/img/clothes/upper/jumperheart/right_gray.png and b/img/clothes/upper/jumperheart/right_gray.png differ
diff --git a/img/clothes/upper/jumperheart/tattered_gray.png b/img/clothes/upper/jumperheart/tattered_gray.png
index 7ffa610f80f34d6930bbaf8f3eeb7bc5f15cd1fa..6252ab9d53e88827acdf15ff245fab43eb3f9999 100644
Binary files a/img/clothes/upper/jumperheart/tattered_gray.png and b/img/clothes/upper/jumperheart/tattered_gray.png differ
diff --git a/img/clothes/upper/jumperheart/torn_gray.png b/img/clothes/upper/jumperheart/torn_gray.png
index 0add6d1ffbf039f30ec2d51f82af46217a61a448..2e92e82a176bdb804ea38ff0bb49bda8d229546d 100644
Binary files a/img/clothes/upper/jumperheart/torn_gray.png and b/img/clothes/upper/jumperheart/torn_gray.png differ
diff --git a/img/clothes/upper/jumperskull/1_gray.png b/img/clothes/upper/jumperskull/1_gray.png
index 80bb9b3daa0feee578a6ea4f5d011f2fac4264f6..4f9f72feabc536cfc3560b12c2c661bfd5127bb7 100644
Binary files a/img/clothes/upper/jumperskull/1_gray.png and b/img/clothes/upper/jumperskull/1_gray.png differ
diff --git a/img/clothes/upper/jumperskull/2_gray.png b/img/clothes/upper/jumperskull/2_gray.png
index 428311d4bd1888303cc5df33066620018f794871..92752dd01b6b386b22edbc7186b3c702b9994e34 100644
Binary files a/img/clothes/upper/jumperskull/2_gray.png and b/img/clothes/upper/jumperskull/2_gray.png differ
diff --git a/img/clothes/upper/jumperskull/3_gray.png b/img/clothes/upper/jumperskull/3_gray.png
index bf3b2c3a6389babbeb6c24a04a23bdb4375a33a4..23c2c656bbf6eecb59fbd792f40eb92fcfa36eba 100644
Binary files a/img/clothes/upper/jumperskull/3_gray.png and b/img/clothes/upper/jumperskull/3_gray.png differ
diff --git a/img/clothes/upper/jumperskull/4_gray.png b/img/clothes/upper/jumperskull/4_gray.png
index c3610d371b61dec6a2991ff6676c988f8c8c50f1..801cd1927492a4648f82d5f588392b3d62ad8743 100644
Binary files a/img/clothes/upper/jumperskull/4_gray.png and b/img/clothes/upper/jumperskull/4_gray.png differ
diff --git a/img/clothes/upper/jumperskull/5_gray.png b/img/clothes/upper/jumperskull/5_gray.png
index beb8f536e3c2f4a7a04e177fbde84902d7a67068..0388efd83af15553ff560fee3aeed31a1fce713a 100644
Binary files a/img/clothes/upper/jumperskull/5_gray.png and b/img/clothes/upper/jumperskull/5_gray.png differ
diff --git a/img/clothes/upper/jumperskull/acc_frayed_gray.png b/img/clothes/upper/jumperskull/acc_frayed_gray.png
index d8dedbbf093f8e942d2a279a26171b1fea8e9bb8..84af726558d0f90c78a04e31f0c3d700e9b32a37 100644
Binary files a/img/clothes/upper/jumperskull/acc_frayed_gray.png and b/img/clothes/upper/jumperskull/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/jumperskull/acc_full_gray.png b/img/clothes/upper/jumperskull/acc_full_gray.png
index 120e03c89a2a56a6df33ec2b571bf7dec3100fb9..5ac303a4d9455344de53f4e8586950787f68955d 100644
Binary files a/img/clothes/upper/jumperskull/acc_full_gray.png and b/img/clothes/upper/jumperskull/acc_full_gray.png differ
diff --git a/img/clothes/upper/jumperskull/acc_tattered_gray.png b/img/clothes/upper/jumperskull/acc_tattered_gray.png
index 0f91d5b82f37ed2c1a1c847ed0b03187be084243..6a511965794f5b168cc3f56bca905fddf84f1bed 100644
Binary files a/img/clothes/upper/jumperskull/acc_tattered_gray.png and b/img/clothes/upper/jumperskull/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/jumperskull/acc_torn_gray.png b/img/clothes/upper/jumperskull/acc_torn_gray.png
index eea62be80e10e1cd7a77549e121377ba8f09ca4c..fdde4a80c71bdb2cf38421db75c415846c45cd62 100644
Binary files a/img/clothes/upper/jumperskull/acc_torn_gray.png and b/img/clothes/upper/jumperskull/acc_torn_gray.png differ
diff --git a/img/clothes/upper/jumperskull/frayed_gray.png b/img/clothes/upper/jumperskull/frayed_gray.png
index f1037bfe513a4d94ecd5bfbf3d791730f5fe5527..7acd966b296d223996679eb50cd46e4900253fa4 100644
Binary files a/img/clothes/upper/jumperskull/frayed_gray.png and b/img/clothes/upper/jumperskull/frayed_gray.png differ
diff --git a/img/clothes/upper/jumperskull/full_gray.png b/img/clothes/upper/jumperskull/full_gray.png
index b86d3b8456e3b5de8192fba8ba5e3b0b4a08cbcb..7acd966b296d223996679eb50cd46e4900253fa4 100644
Binary files a/img/clothes/upper/jumperskull/full_gray.png and b/img/clothes/upper/jumperskull/full_gray.png differ
diff --git a/img/clothes/upper/jumperskull/hold_acc_gray.png b/img/clothes/upper/jumperskull/hold_acc_gray.png
index 522605ee4760d3b9f0fc2b81472eb349481d0d65..764192a8a671bd2f68bbc36d9e518461816efd11 100644
Binary files a/img/clothes/upper/jumperskull/hold_acc_gray.png and b/img/clothes/upper/jumperskull/hold_acc_gray.png differ
diff --git a/img/clothes/upper/jumperskull/hold_gray.png b/img/clothes/upper/jumperskull/hold_gray.png
index b3e306524ca010f1cade5d1438987e1b934b697b..eff9ee5f885f0c3c7cba7f662bee9816e1d1aa74 100644
Binary files a/img/clothes/upper/jumperskull/hold_gray.png and b/img/clothes/upper/jumperskull/hold_gray.png differ
diff --git a/img/clothes/upper/jumperskull/left_acc_gray.png b/img/clothes/upper/jumperskull/left_acc_gray.png
index b3e9f809ddca4d04e00efc36b66d230d5aed5ac5..c46d14a5800e1c907616e504cdbcc085bae31e41 100644
Binary files a/img/clothes/upper/jumperskull/left_acc_gray.png and b/img/clothes/upper/jumperskull/left_acc_gray.png differ
diff --git a/img/clothes/upper/jumperskull/left_cover_acc_gray.png b/img/clothes/upper/jumperskull/left_cover_acc_gray.png
index 1d0856a7b517d49f038d0548a3d57248d261a0dc..a416550de2c71b6d40f324dd81f1f93792bb1eb0 100644
Binary files a/img/clothes/upper/jumperskull/left_cover_acc_gray.png and b/img/clothes/upper/jumperskull/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/jumperskull/left_cover_gray.png b/img/clothes/upper/jumperskull/left_cover_gray.png
index 894840d4667cd91d6ff20c0e9911130213bbf951..025579d2ab6984760a8069f9f0014aa275e235d4 100644
Binary files a/img/clothes/upper/jumperskull/left_cover_gray.png and b/img/clothes/upper/jumperskull/left_cover_gray.png differ
diff --git a/img/clothes/upper/jumperskull/left_gray.png b/img/clothes/upper/jumperskull/left_gray.png
index 03d1e1d364b44951ac0e191ddf5ef6ebb5a0c4f7..3d84359e6483fae265f5c00e1c0351baaee82755 100644
Binary files a/img/clothes/upper/jumperskull/left_gray.png and b/img/clothes/upper/jumperskull/left_gray.png differ
diff --git a/img/clothes/upper/jumperskull/right_acc_gray.png b/img/clothes/upper/jumperskull/right_acc_gray.png
index 248f27366a7604f77952d9bede3b34c6e28721e7..975cca90be47026036720eb929b2b9fe9c9d4096 100644
Binary files a/img/clothes/upper/jumperskull/right_acc_gray.png and b/img/clothes/upper/jumperskull/right_acc_gray.png differ
diff --git a/img/clothes/upper/jumperskull/right_cover_acc_gray.png b/img/clothes/upper/jumperskull/right_cover_acc_gray.png
index c55733c2434fcc180f5943528c809383bab87f79..5c68bd4d7d414311205216edf4424f0b5d362812 100644
Binary files a/img/clothes/upper/jumperskull/right_cover_acc_gray.png and b/img/clothes/upper/jumperskull/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/jumperskull/right_cover_gray.png b/img/clothes/upper/jumperskull/right_cover_gray.png
index e6bfba09cae7f99b20dd811972ead7b53592191f..26cfbae84b6acedda73cc9c48b9774e8f53e783d 100644
Binary files a/img/clothes/upper/jumperskull/right_cover_gray.png and b/img/clothes/upper/jumperskull/right_cover_gray.png differ
diff --git a/img/clothes/upper/jumperskull/right_gray.png b/img/clothes/upper/jumperskull/right_gray.png
index 2c9c23b617eb47cbf437256d9759a9206605c547..5917fe56ec5d0e5af182acbc1622520840007a4f 100644
Binary files a/img/clothes/upper/jumperskull/right_gray.png and b/img/clothes/upper/jumperskull/right_gray.png differ
diff --git a/img/clothes/upper/jumperskull/tattered_gray.png b/img/clothes/upper/jumperskull/tattered_gray.png
index 7ffa610f80f34d6930bbaf8f3eeb7bc5f15cd1fa..6252ab9d53e88827acdf15ff245fab43eb3f9999 100644
Binary files a/img/clothes/upper/jumperskull/tattered_gray.png and b/img/clothes/upper/jumperskull/tattered_gray.png differ
diff --git a/img/clothes/upper/jumperskull/torn_gray.png b/img/clothes/upper/jumperskull/torn_gray.png
index 0add6d1ffbf039f30ec2d51f82af46217a61a448..2e92e82a176bdb804ea38ff0bb49bda8d229546d 100644
Binary files a/img/clothes/upper/jumperskull/torn_gray.png and b/img/clothes/upper/jumperskull/torn_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/1_gray.png b/img/clothes/upper/jumperxmas/1_gray.png
index 80bb9b3daa0feee578a6ea4f5d011f2fac4264f6..4f9f72feabc536cfc3560b12c2c661bfd5127bb7 100644
Binary files a/img/clothes/upper/jumperxmas/1_gray.png and b/img/clothes/upper/jumperxmas/1_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/2_gray.png b/img/clothes/upper/jumperxmas/2_gray.png
index 428311d4bd1888303cc5df33066620018f794871..92752dd01b6b386b22edbc7186b3c702b9994e34 100644
Binary files a/img/clothes/upper/jumperxmas/2_gray.png and b/img/clothes/upper/jumperxmas/2_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/3_gray.png b/img/clothes/upper/jumperxmas/3_gray.png
index bf3b2c3a6389babbeb6c24a04a23bdb4375a33a4..23c2c656bbf6eecb59fbd792f40eb92fcfa36eba 100644
Binary files a/img/clothes/upper/jumperxmas/3_gray.png and b/img/clothes/upper/jumperxmas/3_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/4_gray.png b/img/clothes/upper/jumperxmas/4_gray.png
index c3610d371b61dec6a2991ff6676c988f8c8c50f1..801cd1927492a4648f82d5f588392b3d62ad8743 100644
Binary files a/img/clothes/upper/jumperxmas/4_gray.png and b/img/clothes/upper/jumperxmas/4_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/5_gray.png b/img/clothes/upper/jumperxmas/5_gray.png
index beb8f536e3c2f4a7a04e177fbde84902d7a67068..0388efd83af15553ff560fee3aeed31a1fce713a 100644
Binary files a/img/clothes/upper/jumperxmas/5_gray.png and b/img/clothes/upper/jumperxmas/5_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/acc.png b/img/clothes/upper/jumperxmas/acc.png
index 8651e015d3d757b715de126ce3a7a7a9e431ee38..45667623206f2ecfa1b435d6a9067b39f933c4da 100644
Binary files a/img/clothes/upper/jumperxmas/acc.png and b/img/clothes/upper/jumperxmas/acc.png differ
diff --git a/img/clothes/upper/jumperxmas/frayed_gray.png b/img/clothes/upper/jumperxmas/frayed_gray.png
index 0c5e7007b4258990962256464a218dcf83acb20b..4c4ba12234e5e4635d430558f2af6c214d7eac6f 100644
Binary files a/img/clothes/upper/jumperxmas/frayed_gray.png and b/img/clothes/upper/jumperxmas/frayed_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/full_gray.png b/img/clothes/upper/jumperxmas/full_gray.png
index a7f75e84525b24b77b455ab3e180639ebf0adcd4..8a66f4eba318582953d37bf160fa063b2f051914 100644
Binary files a/img/clothes/upper/jumperxmas/full_gray.png and b/img/clothes/upper/jumperxmas/full_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/hold_gray.png b/img/clothes/upper/jumperxmas/hold_gray.png
index b3e306524ca010f1cade5d1438987e1b934b697b..eff9ee5f885f0c3c7cba7f662bee9816e1d1aa74 100644
Binary files a/img/clothes/upper/jumperxmas/hold_gray.png and b/img/clothes/upper/jumperxmas/hold_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/left_cover_gray.png b/img/clothes/upper/jumperxmas/left_cover_gray.png
index 9c7548b753a32c38b1847dd9951a91f852247710..58a54795cfe23b4c788759b763b657a6e0ccef88 100644
Binary files a/img/clothes/upper/jumperxmas/left_cover_gray.png and b/img/clothes/upper/jumperxmas/left_cover_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/left_gray.png b/img/clothes/upper/jumperxmas/left_gray.png
index 98b38de46d79dbcd6f0ca73536e0f935b744a0b2..6dc9736b609385af89adc869df28cc53dfeec210 100644
Binary files a/img/clothes/upper/jumperxmas/left_gray.png and b/img/clothes/upper/jumperxmas/left_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/right_cover_gray.png b/img/clothes/upper/jumperxmas/right_cover_gray.png
index fd5ab667d6dd99f4da54f644e5caea7311986329..5fcc3d6434201d2314f937781cd3cb1f091b38c6 100644
Binary files a/img/clothes/upper/jumperxmas/right_cover_gray.png and b/img/clothes/upper/jumperxmas/right_cover_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/right_gray.png b/img/clothes/upper/jumperxmas/right_gray.png
index 4ba502b4ce7fd32779a1e9d6b2ade9ec48f14cd0..3da59fa6d734b47729c355be645cf0d878d2ceaa 100644
Binary files a/img/clothes/upper/jumperxmas/right_gray.png and b/img/clothes/upper/jumperxmas/right_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/tattered_gray.png b/img/clothes/upper/jumperxmas/tattered_gray.png
index 7b62aa1b7850ff2457f3b433b2873b52f1f2a520..89502c1bf7d443cb176497f6df133afaaa93b54a 100644
Binary files a/img/clothes/upper/jumperxmas/tattered_gray.png and b/img/clothes/upper/jumperxmas/tattered_gray.png differ
diff --git a/img/clothes/upper/jumperxmas/torn_gray.png b/img/clothes/upper/jumperxmas/torn_gray.png
index d3ec505b26e4b0c526e81e7e462302c2d950541a..26ee7ac61614d2ffca1561b27b77fc419d4815e5 100644
Binary files a/img/clothes/upper/jumperxmas/torn_gray.png and b/img/clothes/upper/jumperxmas/torn_gray.png differ
diff --git a/img/clothes/upper/jumpsuit/2.png b/img/clothes/upper/jumpsuit/2.png
index fee812d3c852481b305972a94cb6af7d595e5403..58396b0c21706fe072816ef2fa36aaba15c7d508 100644
Binary files a/img/clothes/upper/jumpsuit/2.png and b/img/clothes/upper/jumpsuit/2.png differ
diff --git a/img/clothes/upper/jumpsuit/3.png b/img/clothes/upper/jumpsuit/3.png
index a83c736c876a5acae4487e64774be02c53c68d60..2b1e8d7a9b3fee9d959baad49f23cf3534c3bc08 100644
Binary files a/img/clothes/upper/jumpsuit/3.png and b/img/clothes/upper/jumpsuit/3.png differ
diff --git a/img/clothes/upper/jumpsuit/4.png b/img/clothes/upper/jumpsuit/4.png
index a35fd6e8fcdc7ae5c4715491536388f60b9a4f68..daff3d5ce109aaa8d654065355c07fb6a327d024 100644
Binary files a/img/clothes/upper/jumpsuit/4.png and b/img/clothes/upper/jumpsuit/4.png differ
diff --git a/img/clothes/upper/jumpsuit/Shoes.png b/img/clothes/upper/jumpsuit/Shoes.png
index 9a9a6f56997d36f94bd24d29584e267c4aacf372..cd5f92beefdf2a749c486bebf2a48712d7eee7a0 100644
Binary files a/img/clothes/upper/jumpsuit/Shoes.png and b/img/clothes/upper/jumpsuit/Shoes.png differ
diff --git a/img/clothes/upper/jumpsuit/frayed.png b/img/clothes/upper/jumpsuit/frayed.png
index 18dc2c3b977ea98f686a70e00dcd573f08151946..2f921963da5884adf1700de74d15ef0a43a365fe 100644
Binary files a/img/clothes/upper/jumpsuit/frayed.png and b/img/clothes/upper/jumpsuit/frayed.png differ
diff --git a/img/clothes/upper/jumpsuit/full.png b/img/clothes/upper/jumpsuit/full.png
index 94b2c0559fb28c08ef4b33ca83e34ecac324fcca..21d485c901cdc400a4cf1d100d950ac66fe5adf5 100644
Binary files a/img/clothes/upper/jumpsuit/full.png and b/img/clothes/upper/jumpsuit/full.png differ
diff --git a/img/clothes/upper/jumpsuit/hold.png b/img/clothes/upper/jumpsuit/hold.png
index f391f3c79591c32ac7f167ad67ddb399d6b5a0ee..646756d7cb3d2022bf9a18f9257f23f72c4aa173 100644
Binary files a/img/clothes/upper/jumpsuit/hold.png and b/img/clothes/upper/jumpsuit/hold.png differ
diff --git a/img/clothes/upper/jumpsuit/left.png b/img/clothes/upper/jumpsuit/left.png
index 09e9ffdb557a24a4e26152455171fb3aaff77ddb..01bd975e353e2b52937e9700771605807bb29eef 100644
Binary files a/img/clothes/upper/jumpsuit/left.png and b/img/clothes/upper/jumpsuit/left.png differ
diff --git a/img/clothes/upper/jumpsuit/left_cover.png b/img/clothes/upper/jumpsuit/left_cover.png
index 28942fe589be4c71a360eacddb46bc4767565f22..a08161d8e4619321c3c4d8b929f80789de73c059 100644
Binary files a/img/clothes/upper/jumpsuit/left_cover.png and b/img/clothes/upper/jumpsuit/left_cover.png differ
diff --git a/img/clothes/upper/jumpsuit/right.png b/img/clothes/upper/jumpsuit/right.png
index 820526ae11b8b0e0f63e0ab8dbbc69c7296292ad..0695c170d0c0c2ca1b1156995a126edc3a8c0495 100644
Binary files a/img/clothes/upper/jumpsuit/right.png and b/img/clothes/upper/jumpsuit/right.png differ
diff --git a/img/clothes/upper/jumpsuit/right_cover.png b/img/clothes/upper/jumpsuit/right_cover.png
index 1172b7db382249b0bd22a087d16c39d405279b3e..ab7784bf52b5981dfc7bb5749f701bc5114919f6 100644
Binary files a/img/clothes/upper/jumpsuit/right_cover.png and b/img/clothes/upper/jumpsuit/right_cover.png differ
diff --git a/img/clothes/upper/jumpsuit/tattered.png b/img/clothes/upper/jumpsuit/tattered.png
index c8ba71531136ba91d474e47193f0831a91302d8c..a3541574d678d47fe81f6034506e9e1db6f75086 100644
Binary files a/img/clothes/upper/jumpsuit/tattered.png and b/img/clothes/upper/jumpsuit/tattered.png differ
diff --git a/img/clothes/upper/jumpsuit/torn.png b/img/clothes/upper/jumpsuit/torn.png
index 6e663f0fc920262b0dada607f9ff76f124a0c854..e8cd307393d044f0789357f4c1779e1369a37afe 100644
Binary files a/img/clothes/upper/jumpsuit/torn.png and b/img/clothes/upper/jumpsuit/torn.png differ
diff --git a/img/clothes/upper/jumpsuitstylish/3_gray.png b/img/clothes/upper/jumpsuitstylish/3_gray.png
index b1639c46523167b44d7f3dbd2b0dd41f2d755045..20eb8790af7bcc664f45a60033efca5c0f036691 100644
Binary files a/img/clothes/upper/jumpsuitstylish/3_gray.png and b/img/clothes/upper/jumpsuitstylish/3_gray.png differ
diff --git a/img/clothes/upper/jumpsuitstylish/5_gray.png b/img/clothes/upper/jumpsuitstylish/5_gray.png
index 5fc0cee5c1403f6942efb712f0fd8da29807f82b..fdc351259ed846cf731b7d6db784d7858602dfe8 100644
Binary files a/img/clothes/upper/jumpsuitstylish/5_gray.png and b/img/clothes/upper/jumpsuitstylish/5_gray.png differ
diff --git a/img/clothes/upper/jumpsuitstylish/frayed_gray.png b/img/clothes/upper/jumpsuitstylish/frayed_gray.png
index 18f32316df4d90a64729f51c51b674b767216488..80335d3439cdc66175fb30c9515f86fdb0cd4818 100644
Binary files a/img/clothes/upper/jumpsuitstylish/frayed_gray.png and b/img/clothes/upper/jumpsuitstylish/frayed_gray.png differ
diff --git a/img/clothes/upper/jumpsuitstylish/full_gray.png b/img/clothes/upper/jumpsuitstylish/full_gray.png
index b38c921a5cdc278171d454ec4dd6244a6f2eb86c..a25afde91d7b878c402b803e02548119ca9f4e34 100644
Binary files a/img/clothes/upper/jumpsuitstylish/full_gray.png and b/img/clothes/upper/jumpsuitstylish/full_gray.png differ
diff --git a/img/clothes/upper/jumpsuitstylish/hold_gray.png b/img/clothes/upper/jumpsuitstylish/hold_gray.png
index 822c3856c61a8964bf1788ff9dac1f327c1a70d5..bc923e98de32f6bcfe4c0c2724e66f383cf1d45a 100644
Binary files a/img/clothes/upper/jumpsuitstylish/hold_gray.png and b/img/clothes/upper/jumpsuitstylish/hold_gray.png differ
diff --git a/img/clothes/upper/jumpsuitstylish/left_cover_gray.png b/img/clothes/upper/jumpsuitstylish/left_cover_gray.png
index 90377a34f627d7bc867ce8f2dc6e911ae1c6759c..1240fe43ba07b9b0f04bb1db508792fc4af7210e 100644
Binary files a/img/clothes/upper/jumpsuitstylish/left_cover_gray.png and b/img/clothes/upper/jumpsuitstylish/left_cover_gray.png differ
diff --git a/img/clothes/upper/jumpsuitstylish/left_gray.png b/img/clothes/upper/jumpsuitstylish/left_gray.png
index ce65b55ef00ca7f3fea842361d82f95ad33f4021..332f658be0d7fd5ad3418d5308266aefc941642f 100644
Binary files a/img/clothes/upper/jumpsuitstylish/left_gray.png and b/img/clothes/upper/jumpsuitstylish/left_gray.png differ
diff --git a/img/clothes/upper/jumpsuitstylish/right_cover_gray.png b/img/clothes/upper/jumpsuitstylish/right_cover_gray.png
index 7f02af37a9f54d5ec093101eb4cd6234e4a93320..7a3e2310f472d8e09570cb6667e71d9809f59385 100644
Binary files a/img/clothes/upper/jumpsuitstylish/right_cover_gray.png and b/img/clothes/upper/jumpsuitstylish/right_cover_gray.png differ
diff --git a/img/clothes/upper/jumpsuitstylish/right_gray.png b/img/clothes/upper/jumpsuitstylish/right_gray.png
index df21352d99b0acd9e5980d6ebc6cf8eaa4d467f8..bc41fb1a730e60f29874295704a5eeeafe0eeab3 100644
Binary files a/img/clothes/upper/jumpsuitstylish/right_gray.png and b/img/clothes/upper/jumpsuitstylish/right_gray.png differ
diff --git a/img/clothes/upper/jumpsuitstylish/tattered_gray.png b/img/clothes/upper/jumpsuitstylish/tattered_gray.png
index 0545a392de25189558e367886ec7fc0bb5990c50..f3ab1f8d3ee15d3f15c2577f13286d5141c49e1f 100644
Binary files a/img/clothes/upper/jumpsuitstylish/tattered_gray.png and b/img/clothes/upper/jumpsuitstylish/tattered_gray.png differ
diff --git a/img/clothes/upper/jumpsuitstylish/torn_gray.png b/img/clothes/upper/jumpsuitstylish/torn_gray.png
index 2cf9286b8db087ad4d9ac9d8030a8902dc818b88..a27ac93d99f4c9f9306a2b50d1a13d27e344ba5a 100644
Binary files a/img/clothes/upper/jumpsuitstylish/torn_gray.png and b/img/clothes/upper/jumpsuitstylish/torn_gray.png differ
diff --git a/img/clothes/upper/karate/frayed.png b/img/clothes/upper/karate/frayed.png
index 5cf909600e8a17c81b94bd75ee2d8a487956a1ed..5ffb36c61107b34b5e4afb3e3332f47015570d4f 100644
Binary files a/img/clothes/upper/karate/frayed.png and b/img/clothes/upper/karate/frayed.png differ
diff --git a/img/clothes/upper/karate/full.png b/img/clothes/upper/karate/full.png
index f2bf221817fe14bcb51ad6c918cbcf40bc45d4e8..488ace89b1c6547f1810a0a691c2f25bb63da64f 100644
Binary files a/img/clothes/upper/karate/full.png and b/img/clothes/upper/karate/full.png differ
diff --git a/img/clothes/upper/karate/hold.png b/img/clothes/upper/karate/hold.png
index 18e491b31c9498faa472936ef86d1f99d7282119..3e465ce2e98b31f41d7c837b59886c8506db0bf0 100644
Binary files a/img/clothes/upper/karate/hold.png and b/img/clothes/upper/karate/hold.png differ
diff --git a/img/clothes/upper/karate/left.png b/img/clothes/upper/karate/left.png
index a067dce3986aee86b56ed106ecd2079002eb7c62..0938d9d50d8dba2731d8322fbb5717227b4e4f0b 100644
Binary files a/img/clothes/upper/karate/left.png and b/img/clothes/upper/karate/left.png differ
diff --git a/img/clothes/upper/karate/left_cover.png b/img/clothes/upper/karate/left_cover.png
index 1ddc44c2a578226385c3bfc81eee623887609492..ec3d4d118a2d70b5fa4e83a3ae113158e1ecf5f6 100644
Binary files a/img/clothes/upper/karate/left_cover.png and b/img/clothes/upper/karate/left_cover.png differ
diff --git a/img/clothes/upper/karate/right.png b/img/clothes/upper/karate/right.png
index ab07e08bbdf6880782389f1542fd5791dba84693..8b4ae42dfcf22f0e42bd1dddc79183645a229a7e 100644
Binary files a/img/clothes/upper/karate/right.png and b/img/clothes/upper/karate/right.png differ
diff --git a/img/clothes/upper/karate/right_cover.png b/img/clothes/upper/karate/right_cover.png
index a6df04026ae282b33dc5c6a5ab6b90194b347bd9..49bee75b98a22b39a76839b5c80534f06063c938 100644
Binary files a/img/clothes/upper/karate/right_cover.png and b/img/clothes/upper/karate/right_cover.png differ
diff --git a/img/clothes/upper/karate/tattered.png b/img/clothes/upper/karate/tattered.png
index c3dcc8bcf665dd604bd09bc95bba2747e509c62c..32ad739c8a3cdd13939de0c726c16afb4fd5c4db 100644
Binary files a/img/clothes/upper/karate/tattered.png and b/img/clothes/upper/karate/tattered.png differ
diff --git a/img/clothes/upper/karate/torn.png b/img/clothes/upper/karate/torn.png
index c086cf15f389ddda4861e782d250f4f95d37c9bb..dc4dc1f551de3aeda9bc9aadcde7441671037ec7 100644
Binary files a/img/clothes/upper/karate/torn.png and b/img/clothes/upper/karate/torn.png differ
diff --git a/img/clothes/upper/keyhole/1_gray.png b/img/clothes/upper/keyhole/1_gray.png
index 84f52d81043782564f081084addef3bdfbb33823..6e3751107c7bb2c1bcdf6c4263912c4e31406188 100644
Binary files a/img/clothes/upper/keyhole/1_gray.png and b/img/clothes/upper/keyhole/1_gray.png differ
diff --git a/img/clothes/upper/keyhole/2_gray.png b/img/clothes/upper/keyhole/2_gray.png
index c132c24be789785b741083c2be30e773ccd8ea67..9252e2a0ce3f8927634a6db6a5d6427c1ee1ce0f 100644
Binary files a/img/clothes/upper/keyhole/2_gray.png and b/img/clothes/upper/keyhole/2_gray.png differ
diff --git a/img/clothes/upper/keyhole/3_gray.png b/img/clothes/upper/keyhole/3_gray.png
index c27df2dab42facf5fb6c2baa2d7995e1f38c082f..5702a216539ea9531c6d7effd7f19dc480639e36 100644
Binary files a/img/clothes/upper/keyhole/3_gray.png and b/img/clothes/upper/keyhole/3_gray.png differ
diff --git a/img/clothes/upper/keyhole/5_gray.png b/img/clothes/upper/keyhole/5_gray.png
index f1d4a7e1ead589f4b60b89031550fa68ebe7ac71..99e93f540b42ef0d23b46512ee37169abb86fcbd 100644
Binary files a/img/clothes/upper/keyhole/5_gray.png and b/img/clothes/upper/keyhole/5_gray.png differ
diff --git a/img/clothes/upper/keyhole/frayed_gray.png b/img/clothes/upper/keyhole/frayed_gray.png
index 7708a0d7e01ec870f4019633acd0e3cfdba177f7..ee6cece3ed92b15d6135d71c97dee9a66be48715 100644
Binary files a/img/clothes/upper/keyhole/frayed_gray.png and b/img/clothes/upper/keyhole/frayed_gray.png differ
diff --git a/img/clothes/upper/keyhole/full_gray.png b/img/clothes/upper/keyhole/full_gray.png
index 5794aca182ebd4200c603ca4ab2c85dbecfe7606..158cce761f4ba3198cda5c3185bb8752f9ef9825 100644
Binary files a/img/clothes/upper/keyhole/full_gray.png and b/img/clothes/upper/keyhole/full_gray.png differ
diff --git a/img/clothes/upper/keyhole/tattered_gray.png b/img/clothes/upper/keyhole/tattered_gray.png
index dac9a8db060108eaa9ce24eb2fccac19aeed15c6..80ad435610549b7307a01ac7994e15fb58e8c68e 100644
Binary files a/img/clothes/upper/keyhole/tattered_gray.png and b/img/clothes/upper/keyhole/tattered_gray.png differ
diff --git a/img/clothes/upper/keyhole/torn_gray.png b/img/clothes/upper/keyhole/torn_gray.png
index 6ad0d517154f0cf295eaf8ae7905f927858a56a6..817e06f1b1d8954fcbc7ef8e5f082494072add1c 100644
Binary files a/img/clothes/upper/keyhole/torn_gray.png and b/img/clothes/upper/keyhole/torn_gray.png differ
diff --git a/img/clothes/upper/kimono/1_alt_gray.png b/img/clothes/upper/kimono/1_alt_gray.png
index e40d1d5ca7ad1faa7e7d4583483b9b3d776c477e..af433e497e89e3dc6226bfa907cf4ccc162f5e97 100644
Binary files a/img/clothes/upper/kimono/1_alt_gray.png and b/img/clothes/upper/kimono/1_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/1_gray.png b/img/clothes/upper/kimono/1_gray.png
index 3d58536326347ecb41c8e4db5fb5390e74bc9e0d..2bb2fedbd4e6e42a580e96293e1189632fe785dc 100644
Binary files a/img/clothes/upper/kimono/1_gray.png and b/img/clothes/upper/kimono/1_gray.png differ
diff --git a/img/clothes/upper/kimono/3_alt_gray.png b/img/clothes/upper/kimono/3_alt_gray.png
index e40d1d5ca7ad1faa7e7d4583483b9b3d776c477e..af433e497e89e3dc6226bfa907cf4ccc162f5e97 100644
Binary files a/img/clothes/upper/kimono/3_alt_gray.png and b/img/clothes/upper/kimono/3_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/3_gray.png b/img/clothes/upper/kimono/3_gray.png
index ef5aeda41562500d3565a59b08688dd321db0de8..24ba65974499a259d3515b700030f9fc02beb236 100644
Binary files a/img/clothes/upper/kimono/3_gray.png and b/img/clothes/upper/kimono/3_gray.png differ
diff --git a/img/clothes/upper/kimono/4_alt_gray.png b/img/clothes/upper/kimono/4_alt_gray.png
index c93b3878cfbb663d227d81c7f714812da2f07da3..410a6405fb76531785412f1da3fd5e33a43e8f69 100644
Binary files a/img/clothes/upper/kimono/4_alt_gray.png and b/img/clothes/upper/kimono/4_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/4_gray.png b/img/clothes/upper/kimono/4_gray.png
index c2f5ab72a872348bdfe4b80c66c295e6eafdf1db..dc42c5ddc35abec75dd78850e5b2abd5b0d6c55f 100644
Binary files a/img/clothes/upper/kimono/4_gray.png and b/img/clothes/upper/kimono/4_gray.png differ
diff --git a/img/clothes/upper/kimono/5_alt_gray.png b/img/clothes/upper/kimono/5_alt_gray.png
index e7990acdd87ed0324d9a6c385712278542464452..0373aff1a03c0e5bf3c550a321466a8bb76e3b77 100644
Binary files a/img/clothes/upper/kimono/5_alt_gray.png and b/img/clothes/upper/kimono/5_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/5_gray.png b/img/clothes/upper/kimono/5_gray.png
index 8b14f46b0a3b2670662391044192ab94818e7c58..173790bea08eaff447223cedd8ca19797a71b095 100644
Binary files a/img/clothes/upper/kimono/5_gray.png and b/img/clothes/upper/kimono/5_gray.png differ
diff --git a/img/clothes/upper/kimono/6_alt_gray.png b/img/clothes/upper/kimono/6_alt_gray.png
index 7c583d35077f9a86e302c86000289c52125673d4..9053e769fa664b1a87575a7e423c870c0d76d763 100644
Binary files a/img/clothes/upper/kimono/6_alt_gray.png and b/img/clothes/upper/kimono/6_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/6_gray.png b/img/clothes/upper/kimono/6_gray.png
index 8b14f46b0a3b2670662391044192ab94818e7c58..173790bea08eaff447223cedd8ca19797a71b095 100644
Binary files a/img/clothes/upper/kimono/6_gray.png and b/img/clothes/upper/kimono/6_gray.png differ
diff --git a/img/clothes/upper/kimono/acc_alt_gray.png b/img/clothes/upper/kimono/acc_alt_gray.png
index 5761fedf7165e4d6a07dc5bb45678493f3bbdffb..637fe3abe1ab763e2973c2041c1418c0511fb69a 100644
Binary files a/img/clothes/upper/kimono/acc_alt_gray.png and b/img/clothes/upper/kimono/acc_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/acc_gray.png b/img/clothes/upper/kimono/acc_gray.png
index 2433936dda244c4a7f0220d833ef258030be6431..f94f9098c6cb015a9852c9218e638055a8ee919f 100644
Binary files a/img/clothes/upper/kimono/acc_gray.png and b/img/clothes/upper/kimono/acc_gray.png differ
diff --git a/img/clothes/upper/kimono/frayed_gray.png b/img/clothes/upper/kimono/frayed_gray.png
index 4eb640dc906e4d83e10754f272006fa3d9181462..41b95db4de7a6001415a8e025bcd4db0988196ee 100644
Binary files a/img/clothes/upper/kimono/frayed_gray.png and b/img/clothes/upper/kimono/frayed_gray.png differ
diff --git a/img/clothes/upper/kimono/full_alt_gray.png b/img/clothes/upper/kimono/full_alt_gray.png
index 5761fedf7165e4d6a07dc5bb45678493f3bbdffb..637fe3abe1ab763e2973c2041c1418c0511fb69a 100644
Binary files a/img/clothes/upper/kimono/full_alt_gray.png and b/img/clothes/upper/kimono/full_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/full_gray.png b/img/clothes/upper/kimono/full_gray.png
index 2433936dda244c4a7f0220d833ef258030be6431..f94f9098c6cb015a9852c9218e638055a8ee919f 100644
Binary files a/img/clothes/upper/kimono/full_gray.png and b/img/clothes/upper/kimono/full_gray.png differ
diff --git a/img/clothes/upper/kimono/hold_alt_gray.png b/img/clothes/upper/kimono/hold_alt_gray.png
index bc72ab925228ac37edb182440ee272cbc2af6de1..4ffc368ac8ee4e13368a39d42812af90e422c491 100644
Binary files a/img/clothes/upper/kimono/hold_alt_gray.png and b/img/clothes/upper/kimono/hold_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/hold_gray.png b/img/clothes/upper/kimono/hold_gray.png
index 3e98fc789cdb356d18022e854ae1b915d2a1f618..c0be26c1470f9fe77a6000c1edc408467dc16e2d 100644
Binary files a/img/clothes/upper/kimono/hold_gray.png and b/img/clothes/upper/kimono/hold_gray.png differ
diff --git a/img/clothes/upper/kimono/left_alt_gray.png b/img/clothes/upper/kimono/left_alt_gray.png
index 1f1f726fb933715e526e1174af16adc05afb962f..789eefdf44d613bf5321c5cebd744d066d9dc084 100644
Binary files a/img/clothes/upper/kimono/left_alt_gray.png and b/img/clothes/upper/kimono/left_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/left_cover_alt_gray.png b/img/clothes/upper/kimono/left_cover_alt_gray.png
index 8be5882c97dba18d19263de8bb949ff3b1484e42..94cfe9f9005c9e6d2321f8eae886c37650c49723 100644
Binary files a/img/clothes/upper/kimono/left_cover_alt_gray.png and b/img/clothes/upper/kimono/left_cover_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/left_cover_gray.png b/img/clothes/upper/kimono/left_cover_gray.png
index 77b0f5979211392fb94a1fb23a567e080c243a89..1c24a8624ff699f5dd3d106906abd79d9f0efe43 100644
Binary files a/img/clothes/upper/kimono/left_cover_gray.png and b/img/clothes/upper/kimono/left_cover_gray.png differ
diff --git a/img/clothes/upper/kimono/left_gray.png b/img/clothes/upper/kimono/left_gray.png
index 603aea99a62b404edd063f65741cd5836d722a87..98599028d1cc6ede68138e047b1c5d33b3a1de2a 100644
Binary files a/img/clothes/upper/kimono/left_gray.png and b/img/clothes/upper/kimono/left_gray.png differ
diff --git a/img/clothes/upper/kimono/right_alt_gray.png b/img/clothes/upper/kimono/right_alt_gray.png
index 3e45ef377f9b194c0b816734bbe0eb2829340aa9..f16b3f4bf5bf522234deceebba80f7b569d59b3b 100644
Binary files a/img/clothes/upper/kimono/right_alt_gray.png and b/img/clothes/upper/kimono/right_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/right_cover_alt_gray.png b/img/clothes/upper/kimono/right_cover_alt_gray.png
index 1f878fc3b80f2401cbf82a8cdac1c8f193d74eaa..140d6bcc5845a7e9722d3884babaeec8491bae8d 100644
Binary files a/img/clothes/upper/kimono/right_cover_alt_gray.png and b/img/clothes/upper/kimono/right_cover_alt_gray.png differ
diff --git a/img/clothes/upper/kimono/right_cover_gray.png b/img/clothes/upper/kimono/right_cover_gray.png
index e9bc0d7bf1f887b5b9efa26132350bb59b76b430..d7f5888090cc995f040b2eb891a700cb8bfce437 100644
Binary files a/img/clothes/upper/kimono/right_cover_gray.png and b/img/clothes/upper/kimono/right_cover_gray.png differ
diff --git a/img/clothes/upper/kimono/right_gray.png b/img/clothes/upper/kimono/right_gray.png
index f2df04952761438cbb4e3bdd77cbc72bb42570fc..043615ba5235425901d941619403285778fc704b 100644
Binary files a/img/clothes/upper/kimono/right_gray.png and b/img/clothes/upper/kimono/right_gray.png differ
diff --git a/img/clothes/upper/kimono/tattered_gray.png b/img/clothes/upper/kimono/tattered_gray.png
index 2227c3a68020bd9b844678a0bd621e9a5cd40dba..08f429a43999fe1f746c0f7f3e503f03db07dd1c 100644
Binary files a/img/clothes/upper/kimono/tattered_gray.png and b/img/clothes/upper/kimono/tattered_gray.png differ
diff --git a/img/clothes/upper/kimono/torn_gray.png b/img/clothes/upper/kimono/torn_gray.png
index c66c2cdcf6bdbf76d701344f01ca3d6e93f41a1f..f8d8f93e5a3acf7c8ab17978b587e8aa0cb6cdff 100644
Binary files a/img/clothes/upper/kimono/torn_gray.png and b/img/clothes/upper/kimono/torn_gray.png differ
diff --git a/img/clothes/upper/kimonomini/1_alt_gray.png b/img/clothes/upper/kimonomini/1_alt_gray.png
index e40d1d5ca7ad1faa7e7d4583483b9b3d776c477e..af433e497e89e3dc6226bfa907cf4ccc162f5e97 100644
Binary files a/img/clothes/upper/kimonomini/1_alt_gray.png and b/img/clothes/upper/kimonomini/1_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/1_gray.png b/img/clothes/upper/kimonomini/1_gray.png
index 3d58536326347ecb41c8e4db5fb5390e74bc9e0d..2bb2fedbd4e6e42a580e96293e1189632fe785dc 100644
Binary files a/img/clothes/upper/kimonomini/1_gray.png and b/img/clothes/upper/kimonomini/1_gray.png differ
diff --git a/img/clothes/upper/kimonomini/3_alt_gray.png b/img/clothes/upper/kimonomini/3_alt_gray.png
index e40d1d5ca7ad1faa7e7d4583483b9b3d776c477e..af433e497e89e3dc6226bfa907cf4ccc162f5e97 100644
Binary files a/img/clothes/upper/kimonomini/3_alt_gray.png and b/img/clothes/upper/kimonomini/3_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/3_gray.png b/img/clothes/upper/kimonomini/3_gray.png
index ef5aeda41562500d3565a59b08688dd321db0de8..24ba65974499a259d3515b700030f9fc02beb236 100644
Binary files a/img/clothes/upper/kimonomini/3_gray.png and b/img/clothes/upper/kimonomini/3_gray.png differ
diff --git a/img/clothes/upper/kimonomini/4_alt_gray.png b/img/clothes/upper/kimonomini/4_alt_gray.png
index c93b3878cfbb663d227d81c7f714812da2f07da3..410a6405fb76531785412f1da3fd5e33a43e8f69 100644
Binary files a/img/clothes/upper/kimonomini/4_alt_gray.png and b/img/clothes/upper/kimonomini/4_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/4_gray.png b/img/clothes/upper/kimonomini/4_gray.png
index c2f5ab72a872348bdfe4b80c66c295e6eafdf1db..dc42c5ddc35abec75dd78850e5b2abd5b0d6c55f 100644
Binary files a/img/clothes/upper/kimonomini/4_gray.png and b/img/clothes/upper/kimonomini/4_gray.png differ
diff --git a/img/clothes/upper/kimonomini/5_alt_gray.png b/img/clothes/upper/kimonomini/5_alt_gray.png
index e7990acdd87ed0324d9a6c385712278542464452..0373aff1a03c0e5bf3c550a321466a8bb76e3b77 100644
Binary files a/img/clothes/upper/kimonomini/5_alt_gray.png and b/img/clothes/upper/kimonomini/5_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/5_gray.png b/img/clothes/upper/kimonomini/5_gray.png
index 8b14f46b0a3b2670662391044192ab94818e7c58..173790bea08eaff447223cedd8ca19797a71b095 100644
Binary files a/img/clothes/upper/kimonomini/5_gray.png and b/img/clothes/upper/kimonomini/5_gray.png differ
diff --git a/img/clothes/upper/kimonomini/6_alt_gray.png b/img/clothes/upper/kimonomini/6_alt_gray.png
index 7c583d35077f9a86e302c86000289c52125673d4..9053e769fa664b1a87575a7e423c870c0d76d763 100644
Binary files a/img/clothes/upper/kimonomini/6_alt_gray.png and b/img/clothes/upper/kimonomini/6_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/6_gray.png b/img/clothes/upper/kimonomini/6_gray.png
index 8b14f46b0a3b2670662391044192ab94818e7c58..173790bea08eaff447223cedd8ca19797a71b095 100644
Binary files a/img/clothes/upper/kimonomini/6_gray.png and b/img/clothes/upper/kimonomini/6_gray.png differ
diff --git a/img/clothes/upper/kimonomini/acc_alt_gray.png b/img/clothes/upper/kimonomini/acc_alt_gray.png
index 5761fedf7165e4d6a07dc5bb45678493f3bbdffb..637fe3abe1ab763e2973c2041c1418c0511fb69a 100644
Binary files a/img/clothes/upper/kimonomini/acc_alt_gray.png and b/img/clothes/upper/kimonomini/acc_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/acc_gray.png b/img/clothes/upper/kimonomini/acc_gray.png
index 2433936dda244c4a7f0220d833ef258030be6431..f94f9098c6cb015a9852c9218e638055a8ee919f 100644
Binary files a/img/clothes/upper/kimonomini/acc_gray.png and b/img/clothes/upper/kimonomini/acc_gray.png differ
diff --git a/img/clothes/upper/kimonomini/frayed_gray.png b/img/clothes/upper/kimonomini/frayed_gray.png
index 4eb640dc906e4d83e10754f272006fa3d9181462..41b95db4de7a6001415a8e025bcd4db0988196ee 100644
Binary files a/img/clothes/upper/kimonomini/frayed_gray.png and b/img/clothes/upper/kimonomini/frayed_gray.png differ
diff --git a/img/clothes/upper/kimonomini/full_alt_gray.png b/img/clothes/upper/kimonomini/full_alt_gray.png
index 5761fedf7165e4d6a07dc5bb45678493f3bbdffb..637fe3abe1ab763e2973c2041c1418c0511fb69a 100644
Binary files a/img/clothes/upper/kimonomini/full_alt_gray.png and b/img/clothes/upper/kimonomini/full_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/full_gray.png b/img/clothes/upper/kimonomini/full_gray.png
index 2433936dda244c4a7f0220d833ef258030be6431..f94f9098c6cb015a9852c9218e638055a8ee919f 100644
Binary files a/img/clothes/upper/kimonomini/full_gray.png and b/img/clothes/upper/kimonomini/full_gray.png differ
diff --git a/img/clothes/upper/kimonomini/hold_alt_gray.png b/img/clothes/upper/kimonomini/hold_alt_gray.png
index bc72ab925228ac37edb182440ee272cbc2af6de1..4ffc368ac8ee4e13368a39d42812af90e422c491 100644
Binary files a/img/clothes/upper/kimonomini/hold_alt_gray.png and b/img/clothes/upper/kimonomini/hold_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/hold_gray.png b/img/clothes/upper/kimonomini/hold_gray.png
index 3e98fc789cdb356d18022e854ae1b915d2a1f618..c0be26c1470f9fe77a6000c1edc408467dc16e2d 100644
Binary files a/img/clothes/upper/kimonomini/hold_gray.png and b/img/clothes/upper/kimonomini/hold_gray.png differ
diff --git a/img/clothes/upper/kimonomini/left_alt_gray.png b/img/clothes/upper/kimonomini/left_alt_gray.png
index 1f1f726fb933715e526e1174af16adc05afb962f..789eefdf44d613bf5321c5cebd744d066d9dc084 100644
Binary files a/img/clothes/upper/kimonomini/left_alt_gray.png and b/img/clothes/upper/kimonomini/left_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/left_cover_alt_gray.png b/img/clothes/upper/kimonomini/left_cover_alt_gray.png
index 8be5882c97dba18d19263de8bb949ff3b1484e42..94cfe9f9005c9e6d2321f8eae886c37650c49723 100644
Binary files a/img/clothes/upper/kimonomini/left_cover_alt_gray.png and b/img/clothes/upper/kimonomini/left_cover_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/left_cover_gray.png b/img/clothes/upper/kimonomini/left_cover_gray.png
index 77b0f5979211392fb94a1fb23a567e080c243a89..1c24a8624ff699f5dd3d106906abd79d9f0efe43 100644
Binary files a/img/clothes/upper/kimonomini/left_cover_gray.png and b/img/clothes/upper/kimonomini/left_cover_gray.png differ
diff --git a/img/clothes/upper/kimonomini/left_gray.png b/img/clothes/upper/kimonomini/left_gray.png
index 603aea99a62b404edd063f65741cd5836d722a87..98599028d1cc6ede68138e047b1c5d33b3a1de2a 100644
Binary files a/img/clothes/upper/kimonomini/left_gray.png and b/img/clothes/upper/kimonomini/left_gray.png differ
diff --git a/img/clothes/upper/kimonomini/right_alt_gray.png b/img/clothes/upper/kimonomini/right_alt_gray.png
index 3e45ef377f9b194c0b816734bbe0eb2829340aa9..f16b3f4bf5bf522234deceebba80f7b569d59b3b 100644
Binary files a/img/clothes/upper/kimonomini/right_alt_gray.png and b/img/clothes/upper/kimonomini/right_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/right_cover_alt_gray.png b/img/clothes/upper/kimonomini/right_cover_alt_gray.png
index 1f878fc3b80f2401cbf82a8cdac1c8f193d74eaa..140d6bcc5845a7e9722d3884babaeec8491bae8d 100644
Binary files a/img/clothes/upper/kimonomini/right_cover_alt_gray.png and b/img/clothes/upper/kimonomini/right_cover_alt_gray.png differ
diff --git a/img/clothes/upper/kimonomini/right_cover_gray.png b/img/clothes/upper/kimonomini/right_cover_gray.png
index e9bc0d7bf1f887b5b9efa26132350bb59b76b430..d7f5888090cc995f040b2eb891a700cb8bfce437 100644
Binary files a/img/clothes/upper/kimonomini/right_cover_gray.png and b/img/clothes/upper/kimonomini/right_cover_gray.png differ
diff --git a/img/clothes/upper/kimonomini/right_gray.png b/img/clothes/upper/kimonomini/right_gray.png
index f2df04952761438cbb4e3bdd77cbc72bb42570fc..043615ba5235425901d941619403285778fc704b 100644
Binary files a/img/clothes/upper/kimonomini/right_gray.png and b/img/clothes/upper/kimonomini/right_gray.png differ
diff --git a/img/clothes/upper/kimonomini/tattered_gray.png b/img/clothes/upper/kimonomini/tattered_gray.png
index 2227c3a68020bd9b844678a0bd621e9a5cd40dba..08f429a43999fe1f746c0f7f3e503f03db07dd1c 100644
Binary files a/img/clothes/upper/kimonomini/tattered_gray.png and b/img/clothes/upper/kimonomini/tattered_gray.png differ
diff --git a/img/clothes/upper/kimonomini/torn_gray.png b/img/clothes/upper/kimonomini/torn_gray.png
index c66c2cdcf6bdbf76d701344f01ca3d6e93f41a1f..f8d8f93e5a3acf7c8ab17978b587e8aa0cb6cdff 100644
Binary files a/img/clothes/upper/kimonomini/torn_gray.png and b/img/clothes/upper/kimonomini/torn_gray.png differ
diff --git a/img/clothes/upper/lacegown/2.png b/img/clothes/upper/lacegown/2.png
index 950793077ae67b1976a07a814e0b1b2bd502a723..1ddc8cdb9453e5b52f50897b9c0f10c4ac60c923 100644
Binary files a/img/clothes/upper/lacegown/2.png and b/img/clothes/upper/lacegown/2.png differ
diff --git a/img/clothes/upper/lacegown/3.png b/img/clothes/upper/lacegown/3.png
index 26809a12275224bca2e627dcb4669ad8b2f09145..07810fbf196512e4bb4badf4ada87c412ec2a358 100644
Binary files a/img/clothes/upper/lacegown/3.png and b/img/clothes/upper/lacegown/3.png differ
diff --git a/img/clothes/upper/lacegown/4.png b/img/clothes/upper/lacegown/4.png
index d8e163a8e4004277a80e8d114db451b74fc175f3..0be83651ca263122d8c287185fa578c8f744e571 100644
Binary files a/img/clothes/upper/lacegown/4.png and b/img/clothes/upper/lacegown/4.png differ
diff --git a/img/clothes/upper/lacegown/5.png b/img/clothes/upper/lacegown/5.png
index 7c5f7b7e1c9594d6a260b01ffdb12be4d1f18450..c61fa3924d8ccbf80327b0571265cb11e7927624 100644
Binary files a/img/clothes/upper/lacegown/5.png and b/img/clothes/upper/lacegown/5.png differ
diff --git a/img/clothes/upper/lacegown/frayed.png b/img/clothes/upper/lacegown/frayed.png
index d2d671e148b47bcafb495bf44f577f84f59e8ea3..368a68ce07785573845aca9f3157c4d397c30f0c 100644
Binary files a/img/clothes/upper/lacegown/frayed.png and b/img/clothes/upper/lacegown/frayed.png differ
diff --git a/img/clothes/upper/lacegown/full.png b/img/clothes/upper/lacegown/full.png
index d2d671e148b47bcafb495bf44f577f84f59e8ea3..368a68ce07785573845aca9f3157c4d397c30f0c 100644
Binary files a/img/clothes/upper/lacegown/full.png and b/img/clothes/upper/lacegown/full.png differ
diff --git a/img/clothes/upper/lacegown/tattered.png b/img/clothes/upper/lacegown/tattered.png
index 326038734eb2c3a718fec0e8645a93d4fdc52dad..fa50c77fea6101dae047c34dff6f3b1e121a02f3 100644
Binary files a/img/clothes/upper/lacegown/tattered.png and b/img/clothes/upper/lacegown/tattered.png differ
diff --git a/img/clothes/upper/lacegown/torn.png b/img/clothes/upper/lacegown/torn.png
index 4f8a3b68417fc980d4e7469d9f22cdd582a1b8ef..d0a1a6ee2fce4eec708bd619ddee630efa95a0b3 100644
Binary files a/img/clothes/upper/lacegown/torn.png and b/img/clothes/upper/lacegown/torn.png differ
diff --git a/img/clothes/upper/leathercropjacket/4_gray.png b/img/clothes/upper/leathercropjacket/4_gray.png
index d52ed13f5cfcc1e0965d61d34cd482599bd8f87a..1676fafbfb45f80d38b88c87fe6bb83dd2ddc356 100644
Binary files a/img/clothes/upper/leathercropjacket/4_gray.png and b/img/clothes/upper/leathercropjacket/4_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/5_gray.png b/img/clothes/upper/leathercropjacket/5_gray.png
index fac058b21a64ed2f1b48977dd6b0b8c33230af6d..b4527de4062022d1164f4efd8edaaf300f92a373 100644
Binary files a/img/clothes/upper/leathercropjacket/5_gray.png and b/img/clothes/upper/leathercropjacket/5_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/acc_frayed_alt_gray.png b/img/clothes/upper/leathercropjacket/acc_frayed_alt_gray.png
index 32e95e00b97968d3f06de8dcf2ef875de24c4d9d..5263774757175fecb644c9f680642d32fff0283b 100644
Binary files a/img/clothes/upper/leathercropjacket/acc_frayed_alt_gray.png and b/img/clothes/upper/leathercropjacket/acc_frayed_alt_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/acc_frayed_gray.png b/img/clothes/upper/leathercropjacket/acc_frayed_gray.png
index 51d46e7c89d9ebf0715b7fcc499c7ea37394fbbf..e047283b8c3acafa9e2be5bd16b8d91367f9c1d6 100644
Binary files a/img/clothes/upper/leathercropjacket/acc_frayed_gray.png and b/img/clothes/upper/leathercropjacket/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/acc_full_alt_gray.png b/img/clothes/upper/leathercropjacket/acc_full_alt_gray.png
index 32e95e00b97968d3f06de8dcf2ef875de24c4d9d..5263774757175fecb644c9f680642d32fff0283b 100644
Binary files a/img/clothes/upper/leathercropjacket/acc_full_alt_gray.png and b/img/clothes/upper/leathercropjacket/acc_full_alt_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/acc_full_gray.png b/img/clothes/upper/leathercropjacket/acc_full_gray.png
index 1e3d7583660adb1f916f3bc7183ef2adaa3a4718..e047283b8c3acafa9e2be5bd16b8d91367f9c1d6 100644
Binary files a/img/clothes/upper/leathercropjacket/acc_full_gray.png and b/img/clothes/upper/leathercropjacket/acc_full_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/acc_tattered_alt_gray.png b/img/clothes/upper/leathercropjacket/acc_tattered_alt_gray.png
index 037973fd9a605ee57c72b43455a42743c531fa36..50c2503ffd4eaa1a5784e6e9ed573de171df92b8 100644
Binary files a/img/clothes/upper/leathercropjacket/acc_tattered_alt_gray.png and b/img/clothes/upper/leathercropjacket/acc_tattered_alt_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/acc_tattered_gray.png b/img/clothes/upper/leathercropjacket/acc_tattered_gray.png
index 2c7eb9e6905a99a556eb9565a394be34667b62a8..9518e35657fe97905bf52300389bfc564a863db7 100644
Binary files a/img/clothes/upper/leathercropjacket/acc_tattered_gray.png and b/img/clothes/upper/leathercropjacket/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/acc_torn_alt_gray.png b/img/clothes/upper/leathercropjacket/acc_torn_alt_gray.png
index 680e4063995e39c9f1d8062e9012af2711baf143..fef6a8d6844458bfb07c2dfc003b5f3a3a0f96d7 100644
Binary files a/img/clothes/upper/leathercropjacket/acc_torn_alt_gray.png and b/img/clothes/upper/leathercropjacket/acc_torn_alt_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/acc_torn_gray.png b/img/clothes/upper/leathercropjacket/acc_torn_gray.png
index 680e4063995e39c9f1d8062e9012af2711baf143..fef6a8d6844458bfb07c2dfc003b5f3a3a0f96d7 100644
Binary files a/img/clothes/upper/leathercropjacket/acc_torn_gray.png and b/img/clothes/upper/leathercropjacket/acc_torn_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/frayed_alt_gray.png b/img/clothes/upper/leathercropjacket/frayed_alt_gray.png
index a08506b74cc46962a2c2d18763a5cefc56a14c91..7557c1dab8380310946d0182e263530d0c384b57 100644
Binary files a/img/clothes/upper/leathercropjacket/frayed_alt_gray.png and b/img/clothes/upper/leathercropjacket/frayed_alt_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/frayed_gray.png b/img/clothes/upper/leathercropjacket/frayed_gray.png
index 2acd1adcc84e6e9ce208a80dd7d5c0e2739da93f..8450b7abd5703d555a2a4e581904a856b4128ce0 100644
Binary files a/img/clothes/upper/leathercropjacket/frayed_gray.png and b/img/clothes/upper/leathercropjacket/frayed_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/full_alt_gray.png b/img/clothes/upper/leathercropjacket/full_alt_gray.png
index fad3a19a302cb5ff0cc14d6ee65e65c3b023ef11..11af67dcbb37369943ed91f974e836264b8b34ca 100644
Binary files a/img/clothes/upper/leathercropjacket/full_alt_gray.png and b/img/clothes/upper/leathercropjacket/full_alt_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/full_gray.png b/img/clothes/upper/leathercropjacket/full_gray.png
index ce05823bd828654527b0f675aa547b7f18098c53..01b599aefbedbb6b2ced6aadbb13e1025d6bf0d4 100644
Binary files a/img/clothes/upper/leathercropjacket/full_gray.png and b/img/clothes/upper/leathercropjacket/full_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/hold_gray.png b/img/clothes/upper/leathercropjacket/hold_gray.png
index f456810b57b6cbf5afc4f8bd0ab52766e8eb3c00..8b3707c39668193ee559c4bf548182015c979bb6 100644
Binary files a/img/clothes/upper/leathercropjacket/hold_gray.png and b/img/clothes/upper/leathercropjacket/hold_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/left_cover_gray.png b/img/clothes/upper/leathercropjacket/left_cover_gray.png
index 9ca3d20fa8f628db56c4da289f8a996dd5c8dc25..2708961d7013b7e1c5fa6a6441445e85b20e5ef2 100644
Binary files a/img/clothes/upper/leathercropjacket/left_cover_gray.png and b/img/clothes/upper/leathercropjacket/left_cover_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/left_gray.png b/img/clothes/upper/leathercropjacket/left_gray.png
index 5bdbd6ebd02324938715701b03344e77a1250078..770527e3000e14d20e1558350dee4a6c582c7e00 100644
Binary files a/img/clothes/upper/leathercropjacket/left_gray.png and b/img/clothes/upper/leathercropjacket/left_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/right_cover_gray.png b/img/clothes/upper/leathercropjacket/right_cover_gray.png
index c7fe0fc2b57ad67b5927e60faa47d7d798a008fd..3a56bb7a16d80330bee92d23418fc0a0847d8ac9 100644
Binary files a/img/clothes/upper/leathercropjacket/right_cover_gray.png and b/img/clothes/upper/leathercropjacket/right_cover_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/right_gray.png b/img/clothes/upper/leathercropjacket/right_gray.png
index c1948b38469efb68bb7c9d5e6f3882dc89917464..c7900b614e9b4e56270a9693fc77f49e4595e703 100644
Binary files a/img/clothes/upper/leathercropjacket/right_gray.png and b/img/clothes/upper/leathercropjacket/right_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/tattered_alt_gray.png b/img/clothes/upper/leathercropjacket/tattered_alt_gray.png
index 0bb143bbdefe2d364af0649018ae28c5a47860d1..b89552d1e7146407a51ce5bfa42c2a94299bcef6 100644
Binary files a/img/clothes/upper/leathercropjacket/tattered_alt_gray.png and b/img/clothes/upper/leathercropjacket/tattered_alt_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/tattered_gray.png b/img/clothes/upper/leathercropjacket/tattered_gray.png
index f615e35cb2bb8242a29629a7699b76300d1e392f..36ced9a9ab836d2af4fe45161324b612d9a644b6 100644
Binary files a/img/clothes/upper/leathercropjacket/tattered_gray.png and b/img/clothes/upper/leathercropjacket/tattered_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/torn_alt_gray.png b/img/clothes/upper/leathercropjacket/torn_alt_gray.png
index 356fd8aeccf1c15510a88c091991b3e5b0e75289..b7eb168763d036dca1f6f9b56fde74f2ec94bbaa 100644
Binary files a/img/clothes/upper/leathercropjacket/torn_alt_gray.png and b/img/clothes/upper/leathercropjacket/torn_alt_gray.png differ
diff --git a/img/clothes/upper/leathercropjacket/torn_gray.png b/img/clothes/upper/leathercropjacket/torn_gray.png
index 3b5ad0388003f474ebb4e11fb9c4b66722f594db..a0cd0fc16cea7ab5a747bcdfb9f5767c7cdf909b 100644
Binary files a/img/clothes/upper/leathercropjacket/torn_gray.png and b/img/clothes/upper/leathercropjacket/torn_gray.png differ
diff --git a/img/clothes/upper/leathercroptop/4_gray.png b/img/clothes/upper/leathercroptop/4_gray.png
index 7c504ad16dd22419b7292294c45783b90551ae07..2b8603688649d1c74f70fc381491146c95ed2bac 100644
Binary files a/img/clothes/upper/leathercroptop/4_gray.png and b/img/clothes/upper/leathercroptop/4_gray.png differ
diff --git a/img/clothes/upper/leathercroptop/5_gray.png b/img/clothes/upper/leathercroptop/5_gray.png
index e71e5b39b4c3d5d6a1877e0a4d35d897ee6c8bf0..14aa8647a054ef4b150c40365d3e35f05f1c0a7f 100644
Binary files a/img/clothes/upper/leathercroptop/5_gray.png and b/img/clothes/upper/leathercroptop/5_gray.png differ
diff --git a/img/clothes/upper/leathercroptop/frayed_gray.png b/img/clothes/upper/leathercroptop/frayed_gray.png
index 9ea992de61b43b7b6ac3fc2c9fe3ff990220767e..fa905cb7d750a3ad3de0977275850f05c1703adc 100644
Binary files a/img/clothes/upper/leathercroptop/frayed_gray.png and b/img/clothes/upper/leathercroptop/frayed_gray.png differ
diff --git a/img/clothes/upper/leathercroptop/full_gray.png b/img/clothes/upper/leathercroptop/full_gray.png
index a3db29278f396204e0d055a29c5ddbb1fb839247..f5da2f52f6f4634967848a777e5c84bbec300319 100644
Binary files a/img/clothes/upper/leathercroptop/full_gray.png and b/img/clothes/upper/leathercroptop/full_gray.png differ
diff --git a/img/clothes/upper/leathercroptop/tattered_gray.png b/img/clothes/upper/leathercroptop/tattered_gray.png
index 57cb886b6d32976219c342ffe1d26c3b3dba2224..4d3728da6022c6ecea3c2d37793ca7420ccfcfc1 100644
Binary files a/img/clothes/upper/leathercroptop/tattered_gray.png and b/img/clothes/upper/leathercroptop/tattered_gray.png differ
diff --git a/img/clothes/upper/leathercroptop/torn_gray.png b/img/clothes/upper/leathercroptop/torn_gray.png
index 492b07bf4d032a59ead79bcdbc4d125d2f76fcf2..7299fc2cbab0acb3efaced25f2a9b5b4cca99672 100644
Binary files a/img/clothes/upper/leathercroptop/torn_gray.png and b/img/clothes/upper/leathercroptop/torn_gray.png differ
diff --git a/img/clothes/upper/leathercroptopzip/4_gray.png b/img/clothes/upper/leathercroptopzip/4_gray.png
index 7c504ad16dd22419b7292294c45783b90551ae07..2b8603688649d1c74f70fc381491146c95ed2bac 100644
Binary files a/img/clothes/upper/leathercroptopzip/4_gray.png and b/img/clothes/upper/leathercroptopzip/4_gray.png differ
diff --git a/img/clothes/upper/leathercroptopzip/5_gray.png b/img/clothes/upper/leathercroptopzip/5_gray.png
index e71e5b39b4c3d5d6a1877e0a4d35d897ee6c8bf0..14aa8647a054ef4b150c40365d3e35f05f1c0a7f 100644
Binary files a/img/clothes/upper/leathercroptopzip/5_gray.png and b/img/clothes/upper/leathercroptopzip/5_gray.png differ
diff --git a/img/clothes/upper/leathercroptopzip/acc_frayed_gray.png b/img/clothes/upper/leathercroptopzip/acc_frayed_gray.png
index ea546c30a728987141a68239f42e295f82e3a2c9..a7b27a8ef9aaf1defba5a6260f28c662c8a1c437 100644
Binary files a/img/clothes/upper/leathercroptopzip/acc_frayed_gray.png and b/img/clothes/upper/leathercroptopzip/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/leathercroptopzip/acc_full_gray.png b/img/clothes/upper/leathercroptopzip/acc_full_gray.png
index ea546c30a728987141a68239f42e295f82e3a2c9..a7b27a8ef9aaf1defba5a6260f28c662c8a1c437 100644
Binary files a/img/clothes/upper/leathercroptopzip/acc_full_gray.png and b/img/clothes/upper/leathercroptopzip/acc_full_gray.png differ
diff --git a/img/clothes/upper/leathercroptopzip/acc_tattered_gray.png b/img/clothes/upper/leathercroptopzip/acc_tattered_gray.png
index b514194db4345c52155658239b81585db7f4ea5f..056f4382d367b7997d55609f09463c00e8618ce3 100644
Binary files a/img/clothes/upper/leathercroptopzip/acc_tattered_gray.png and b/img/clothes/upper/leathercroptopzip/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/leathercroptopzip/acc_torn_gray.png b/img/clothes/upper/leathercroptopzip/acc_torn_gray.png
index ea546c30a728987141a68239f42e295f82e3a2c9..a7b27a8ef9aaf1defba5a6260f28c662c8a1c437 100644
Binary files a/img/clothes/upper/leathercroptopzip/acc_torn_gray.png and b/img/clothes/upper/leathercroptopzip/acc_torn_gray.png differ
diff --git a/img/clothes/upper/leathercroptopzip/frayed_gray.png b/img/clothes/upper/leathercroptopzip/frayed_gray.png
index 9ea992de61b43b7b6ac3fc2c9fe3ff990220767e..fa905cb7d750a3ad3de0977275850f05c1703adc 100644
Binary files a/img/clothes/upper/leathercroptopzip/frayed_gray.png and b/img/clothes/upper/leathercroptopzip/frayed_gray.png differ
diff --git a/img/clothes/upper/leathercroptopzip/full_gray.png b/img/clothes/upper/leathercroptopzip/full_gray.png
index a3db29278f396204e0d055a29c5ddbb1fb839247..f5da2f52f6f4634967848a777e5c84bbec300319 100644
Binary files a/img/clothes/upper/leathercroptopzip/full_gray.png and b/img/clothes/upper/leathercroptopzip/full_gray.png differ
diff --git a/img/clothes/upper/leathercroptopzip/tattered_gray.png b/img/clothes/upper/leathercroptopzip/tattered_gray.png
index 57cb886b6d32976219c342ffe1d26c3b3dba2224..4d3728da6022c6ecea3c2d37793ca7420ccfcfc1 100644
Binary files a/img/clothes/upper/leathercroptopzip/tattered_gray.png and b/img/clothes/upper/leathercroptopzip/tattered_gray.png differ
diff --git a/img/clothes/upper/leathercroptopzip/torn_gray.png b/img/clothes/upper/leathercroptopzip/torn_gray.png
index 492b07bf4d032a59ead79bcdbc4d125d2f76fcf2..7299fc2cbab0acb3efaced25f2a9b5b4cca99672 100644
Binary files a/img/clothes/upper/leathercroptopzip/torn_gray.png and b/img/clothes/upper/leathercroptopzip/torn_gray.png differ
diff --git a/img/clothes/upper/leatherdress/1_gray.png b/img/clothes/upper/leatherdress/1_gray.png
index f14736b8ea820552cceccfcd97dea8e1fba515a1..f49449ad7d99ec6d355937dd9bf6f5379aa7bc38 100644
Binary files a/img/clothes/upper/leatherdress/1_gray.png and b/img/clothes/upper/leatherdress/1_gray.png differ
diff --git a/img/clothes/upper/leatherdress/2_gray.png b/img/clothes/upper/leatherdress/2_gray.png
index 7466b4b9dfc030a897fbcdc9296daaef2fef83b0..ba517230a09f65a96a66f621e9e689df4c398317 100644
Binary files a/img/clothes/upper/leatherdress/2_gray.png and b/img/clothes/upper/leatherdress/2_gray.png differ
diff --git a/img/clothes/upper/leatherdress/3_gray.png b/img/clothes/upper/leatherdress/3_gray.png
index e9be553471e590dcc1eeccd02901e3b1bbb5ee28..e1dbdfcc1af4418d8d30237af538320af7ccb66f 100644
Binary files a/img/clothes/upper/leatherdress/3_gray.png and b/img/clothes/upper/leatherdress/3_gray.png differ
diff --git a/img/clothes/upper/leatherdress/4_gray.png b/img/clothes/upper/leatherdress/4_gray.png
index d9d2170db0aedf29c5226fc281702e68fa261d9f..c06c958784ed512d69c931b7d6ec3f397e5fef15 100644
Binary files a/img/clothes/upper/leatherdress/4_gray.png and b/img/clothes/upper/leatherdress/4_gray.png differ
diff --git a/img/clothes/upper/leatherdress/5_gray.png b/img/clothes/upper/leatherdress/5_gray.png
index 4e2b9e2a9ad45a3aa0cad6bb0e5a2a4bd1a1bac1..bbbd6f9515cdde335cefde866429215d6b00acfb 100644
Binary files a/img/clothes/upper/leatherdress/5_gray.png and b/img/clothes/upper/leatherdress/5_gray.png differ
diff --git a/img/clothes/upper/leatherdress/6_gray.png b/img/clothes/upper/leatherdress/6_gray.png
index 03448f0aabe7f31c5a697ee3945f3342f911910d..b605c2465e141742dc98951a4a10502f1c184cc8 100644
Binary files a/img/clothes/upper/leatherdress/6_gray.png and b/img/clothes/upper/leatherdress/6_gray.png differ
diff --git a/img/clothes/upper/leatherdress/frayed_gray.png b/img/clothes/upper/leatherdress/frayed_gray.png
index e42e40fbb0b68e4d9a5e4de8e18de5b6285d0fdd..47f5665b2a04d44a66bbbe84ef191010835f8887 100644
Binary files a/img/clothes/upper/leatherdress/frayed_gray.png and b/img/clothes/upper/leatherdress/frayed_gray.png differ
diff --git a/img/clothes/upper/leatherdress/full_gray.png b/img/clothes/upper/leatherdress/full_gray.png
index ceb097685c170f20b3daa14d1a84b5a0db3f739a..48b6cab664872cef75bbb4506a02596f83f819ce 100644
Binary files a/img/clothes/upper/leatherdress/full_gray.png and b/img/clothes/upper/leatherdress/full_gray.png differ
diff --git a/img/clothes/upper/leatherdress/tattered_gray.png b/img/clothes/upper/leatherdress/tattered_gray.png
index 4a1a8d05eabc357d61f9f980f29b3ac6fd6a4abb..f228ac1140603bab37789b11249c9dce72b8288d 100644
Binary files a/img/clothes/upper/leatherdress/tattered_gray.png and b/img/clothes/upper/leatherdress/tattered_gray.png differ
diff --git a/img/clothes/upper/leatherdress/torn_gray.png b/img/clothes/upper/leatherdress/torn_gray.png
index e17b0008c925c2fadec0d1707232b12fb7dc2a1f..aeff0f5e1144fa6c582bd1592fe09ddfe9723bf1 100644
Binary files a/img/clothes/upper/leatherdress/torn_gray.png and b/img/clothes/upper/leatherdress/torn_gray.png differ
diff --git a/img/clothes/upper/leathertop/4_gray.png b/img/clothes/upper/leathertop/4_gray.png
index 59cf39409c3671914405fbcabc95945223deb088..f15d696e6ca6c28423f72a84df4da6a0b29acc53 100644
Binary files a/img/clothes/upper/leathertop/4_gray.png and b/img/clothes/upper/leathertop/4_gray.png differ
diff --git a/img/clothes/upper/leathertop/5_gray.png b/img/clothes/upper/leathertop/5_gray.png
index 500f039e9e9458e11ed8cee0e3347366f47c2c85..af072b597555cef7ee41531728e2d8870d63c568 100644
Binary files a/img/clothes/upper/leathertop/5_gray.png and b/img/clothes/upper/leathertop/5_gray.png differ
diff --git a/img/clothes/upper/leathertop/frayed_gray.png b/img/clothes/upper/leathertop/frayed_gray.png
index e79425aae9c13cc8a4164fa4f603f9e2e24d09ca..b6f1618e8e8e8f3b0e32fa67c74af45efd099a2a 100644
Binary files a/img/clothes/upper/leathertop/frayed_gray.png and b/img/clothes/upper/leathertop/frayed_gray.png differ
diff --git a/img/clothes/upper/leathertop/full_gray.png b/img/clothes/upper/leathertop/full_gray.png
index e91eb4668652c82948200225353ba26ca5c5e495..8e86c9494ea1c87890af030e422a387af68f6d05 100644
Binary files a/img/clothes/upper/leathertop/full_gray.png and b/img/clothes/upper/leathertop/full_gray.png differ
diff --git a/img/clothes/upper/leathertop/tattered_gray.png b/img/clothes/upper/leathertop/tattered_gray.png
index a2b6e22adb736b9d79d8be985957f3a981e7e509..0a35ca53de72d3124bb9c31b524eddb30ee9b9da 100644
Binary files a/img/clothes/upper/leathertop/tattered_gray.png and b/img/clothes/upper/leathertop/tattered_gray.png differ
diff --git a/img/clothes/upper/leathertop/torn_gray.png b/img/clothes/upper/leathertop/torn_gray.png
index c82dfb373f09a7027cdbe3710141f9fcb9dca1db..4cd704c2a8b26d1bfc409ad586aa1408c41bbab9 100644
Binary files a/img/clothes/upper/leathertop/torn_gray.png and b/img/clothes/upper/leathertop/torn_gray.png differ
diff --git a/img/clothes/upper/leathertopzip/4_gray.png b/img/clothes/upper/leathertopzip/4_gray.png
index edd18bd398b637c1168571b1d8c6bc648b611ecb..6c94e1d0120b0dca09685a540b747bfad1454fdb 100644
Binary files a/img/clothes/upper/leathertopzip/4_gray.png and b/img/clothes/upper/leathertopzip/4_gray.png differ
diff --git a/img/clothes/upper/leathertopzip/5_gray.png b/img/clothes/upper/leathertopzip/5_gray.png
index b8dc7a1e96571ff5b81c2a72c857f02df6812a70..abf5d6a508346d9bd96170a94c39ce050e6cbb47 100644
Binary files a/img/clothes/upper/leathertopzip/5_gray.png and b/img/clothes/upper/leathertopzip/5_gray.png differ
diff --git a/img/clothes/upper/leathertopzip/acc_frayed_gray.png b/img/clothes/upper/leathertopzip/acc_frayed_gray.png
index 3991b9147aaac7d19f268cfa916fc743e2f2fb7c..7628d947d8cf4d070e38897c09016cc6792a7d56 100644
Binary files a/img/clothes/upper/leathertopzip/acc_frayed_gray.png and b/img/clothes/upper/leathertopzip/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/leathertopzip/acc_full_gray.png b/img/clothes/upper/leathertopzip/acc_full_gray.png
index 718e2c5c3ca3e5f463fb2a4b73f541eca44b7fc0..7628d947d8cf4d070e38897c09016cc6792a7d56 100644
Binary files a/img/clothes/upper/leathertopzip/acc_full_gray.png and b/img/clothes/upper/leathertopzip/acc_full_gray.png differ
diff --git a/img/clothes/upper/leathertopzip/acc_tattered_gray.png b/img/clothes/upper/leathertopzip/acc_tattered_gray.png
index 811d33b1e335afa69c6bb32401f5ac71b35f9c47..36435ef6bf5aa4344b02dcb397ef219efd3bea8b 100644
Binary files a/img/clothes/upper/leathertopzip/acc_tattered_gray.png and b/img/clothes/upper/leathertopzip/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/leathertopzip/acc_torn_gray.png b/img/clothes/upper/leathertopzip/acc_torn_gray.png
index b7a1e944851fa2bb0c81405da4e3b594748799fc..7628d947d8cf4d070e38897c09016cc6792a7d56 100644
Binary files a/img/clothes/upper/leathertopzip/acc_torn_gray.png and b/img/clothes/upper/leathertopzip/acc_torn_gray.png differ
diff --git a/img/clothes/upper/leathertopzip/frayed_gray.png b/img/clothes/upper/leathertopzip/frayed_gray.png
index 413a3dd3d854416e0f62faee84b0bfd15c1b5d8c..bd3aa8708077d57619e0de0ed18df153308faae3 100644
Binary files a/img/clothes/upper/leathertopzip/frayed_gray.png and b/img/clothes/upper/leathertopzip/frayed_gray.png differ
diff --git a/img/clothes/upper/leathertopzip/full_gray.png b/img/clothes/upper/leathertopzip/full_gray.png
index 50106ed6d36171f8fc30e9815ebd2af0f1982d19..99c6983a7d7cbb7cd457529b9bc9a90abb09116b 100644
Binary files a/img/clothes/upper/leathertopzip/full_gray.png and b/img/clothes/upper/leathertopzip/full_gray.png differ
diff --git a/img/clothes/upper/leathertopzip/tattered_gray.png b/img/clothes/upper/leathertopzip/tattered_gray.png
index 4493facd2a51b439706e7ac1f42e9d2b8a997dee..e2b4e572037efaac271f9ce29bea1575af979e15 100644
Binary files a/img/clothes/upper/leathertopzip/tattered_gray.png and b/img/clothes/upper/leathertopzip/tattered_gray.png differ
diff --git a/img/clothes/upper/leathertopzip/torn_gray.png b/img/clothes/upper/leathertopzip/torn_gray.png
index 7aabec07af7febba9eb8716e59e36283e5d08112..88314a35b7b2b240074b137e2c71c2a577d4bc9a 100644
Binary files a/img/clothes/upper/leathertopzip/torn_gray.png and b/img/clothes/upper/leathertopzip/torn_gray.png differ
diff --git a/img/clothes/upper/leder/frayed.png b/img/clothes/upper/leder/frayed.png
index c6a95c7b28b72e4db1a30d899a876706df68e703..ecbcccb5fbf16d8f4863b60e6490be029d02eeef 100644
Binary files a/img/clothes/upper/leder/frayed.png and b/img/clothes/upper/leder/frayed.png differ
diff --git a/img/clothes/upper/leder/full.png b/img/clothes/upper/leder/full.png
index 48a93057bf3077a912bd2c951398b8249f1fd0d5..a91cdf5e4ad8b0f7d22ff42efd0ad0845dcabbb5 100644
Binary files a/img/clothes/upper/leder/full.png and b/img/clothes/upper/leder/full.png differ
diff --git a/img/clothes/upper/leder/hold.png b/img/clothes/upper/leder/hold.png
index f1074e26ef389058c7a20c73320fb3d14d203e91..2b35a22db3ad5773215a422d3cfd305688e264bf 100644
Binary files a/img/clothes/upper/leder/hold.png and b/img/clothes/upper/leder/hold.png differ
diff --git a/img/clothes/upper/leder/left.png b/img/clothes/upper/leder/left.png
index 436c20d703663376e6f36754a141ca71f2e493ad..a28f189eec026dc3360c15455d422894928a7d91 100644
Binary files a/img/clothes/upper/leder/left.png and b/img/clothes/upper/leder/left.png differ
diff --git a/img/clothes/upper/leder/left_cover.png b/img/clothes/upper/leder/left_cover.png
index 8a6b2d98e7036be08436eca8b46a9ea1a2b4ecf3..cdf7872dc863729b097f0f07b6efcf19c9620f96 100644
Binary files a/img/clothes/upper/leder/left_cover.png and b/img/clothes/upper/leder/left_cover.png differ
diff --git a/img/clothes/upper/leder/right.png b/img/clothes/upper/leder/right.png
index 5502e553a63a76a452e38fed0eba0d0119eb48d0..bd0e54b872787656d8c5394e24c60e09893a8b6d 100644
Binary files a/img/clothes/upper/leder/right.png and b/img/clothes/upper/leder/right.png differ
diff --git a/img/clothes/upper/leder/right_cover.png b/img/clothes/upper/leder/right_cover.png
index 5e207b779ee99a4f24efe5757c9e27448e685b61..a8f26c8ca09fa95af70f8f5e312272d0fd31f6db 100644
Binary files a/img/clothes/upper/leder/right_cover.png and b/img/clothes/upper/leder/right_cover.png differ
diff --git a/img/clothes/upper/leder/tattered.png b/img/clothes/upper/leder/tattered.png
index 100df4e4e7a61ddc0d8e6caafee724c6146b749a..4a6ad3b43fd047f3d645782680a16cd33adb165c 100644
Binary files a/img/clothes/upper/leder/tattered.png and b/img/clothes/upper/leder/tattered.png differ
diff --git a/img/clothes/upper/leder/torn.png b/img/clothes/upper/leder/torn.png
index 4feef6acb6212a50ae5448c67c30cab531832b12..cc2590cb65b9bf946566f6c00b098c8da94df7ba 100644
Binary files a/img/clothes/upper/leder/torn.png and b/img/clothes/upper/leder/torn.png differ
diff --git a/img/clothes/upper/letterman/4_gray.png b/img/clothes/upper/letterman/4_gray.png
index 0cc7ebe4464caa89c3ca2cdff12d2fc7db05eacf..08dfe8070b71f2cbb976f7f6ade0ef0550c964f2 100644
Binary files a/img/clothes/upper/letterman/4_gray.png and b/img/clothes/upper/letterman/4_gray.png differ
diff --git a/img/clothes/upper/letterman/5_gray.png b/img/clothes/upper/letterman/5_gray.png
index 915958256fab1b70d2c43fbc8666fa697c089b29..7a2488c0b36f28f236da4053b2dceac582783963 100644
Binary files a/img/clothes/upper/letterman/5_gray.png and b/img/clothes/upper/letterman/5_gray.png differ
diff --git a/img/clothes/upper/letterman/6_gray.png b/img/clothes/upper/letterman/6_gray.png
index b27123e6aafd5995debbdc4e11309a1d54c59224..c5fe256e925e6adbcfb812f5e94d864eecb0586e 100644
Binary files a/img/clothes/upper/letterman/6_gray.png and b/img/clothes/upper/letterman/6_gray.png differ
diff --git a/img/clothes/upper/letterman/acc.png b/img/clothes/upper/letterman/acc.png
index 3bfc2f8dd37dd3db599424036468694f7ee8a2ab..3b8b72af3722553e0c9b7a459bcbd5e2d19ddf19 100644
Binary files a/img/clothes/upper/letterman/acc.png and b/img/clothes/upper/letterman/acc.png differ
diff --git a/img/clothes/upper/letterman/frayed_gray.png b/img/clothes/upper/letterman/frayed_gray.png
index 8acbe9446c5dab322a9b61e14b700358782ec8fe..ad18c4a4bd7b54f94902b477dba2d1001c9481c0 100644
Binary files a/img/clothes/upper/letterman/frayed_gray.png and b/img/clothes/upper/letterman/frayed_gray.png differ
diff --git a/img/clothes/upper/letterman/full_gray.png b/img/clothes/upper/letterman/full_gray.png
index 9be7f570e988da0ec9860a4fd36327535b0b00bc..6c9e91e0eb14f60f07e6e7b36448f75af969b41e 100644
Binary files a/img/clothes/upper/letterman/full_gray.png and b/img/clothes/upper/letterman/full_gray.png differ
diff --git a/img/clothes/upper/letterman/hold.png b/img/clothes/upper/letterman/hold.png
index 73340441ec57201558a3247923d3379af14e7361..5afb54a4a9858caa1a1289c0403a494991b9d6d8 100644
Binary files a/img/clothes/upper/letterman/hold.png and b/img/clothes/upper/letterman/hold.png differ
diff --git a/img/clothes/upper/letterman/hold_acc_gray.png b/img/clothes/upper/letterman/hold_acc_gray.png
index d00493dbdb7bbedf42896353295f772f6cf08f10..4432c6088039594b6728ffe582861821de362d9a 100644
Binary files a/img/clothes/upper/letterman/hold_acc_gray.png and b/img/clothes/upper/letterman/hold_acc_gray.png differ
diff --git a/img/clothes/upper/letterman/left.png b/img/clothes/upper/letterman/left.png
index 1020f042f2fb8117d4806f6da745fa55a7cdacda..e41675030e6760146aaedb4a95f00da23421c61e 100644
Binary files a/img/clothes/upper/letterman/left.png and b/img/clothes/upper/letterman/left.png differ
diff --git a/img/clothes/upper/letterman/left_acc_gray.png b/img/clothes/upper/letterman/left_acc_gray.png
index fe08d6b351f5dc6e92c44a41a2c1923d4cede34f..8064a1efe22dd8e2b6371b407228c28de06e24c9 100644
Binary files a/img/clothes/upper/letterman/left_acc_gray.png and b/img/clothes/upper/letterman/left_acc_gray.png differ
diff --git a/img/clothes/upper/letterman/left_cover.png b/img/clothes/upper/letterman/left_cover.png
index 2f0c3864752623be094cb94533483687921a99de..6a1b24fc8b0d7d0d5b78715360e380ac144994e0 100644
Binary files a/img/clothes/upper/letterman/left_cover.png and b/img/clothes/upper/letterman/left_cover.png differ
diff --git a/img/clothes/upper/letterman/left_cover_acc_gray.png b/img/clothes/upper/letterman/left_cover_acc_gray.png
index b37191de41efc55af3fc05369185b6c30795a741..6ec5514baf2af91e5c3018c329dfd424235fa229 100644
Binary files a/img/clothes/upper/letterman/left_cover_acc_gray.png and b/img/clothes/upper/letterman/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/letterman/right.png b/img/clothes/upper/letterman/right.png
index 3a75d4612a7bd35e9e3cd61221c3f4dc29f3cbe8..975693ddbe200c34f834a6ce9d28ea835bf423f6 100644
Binary files a/img/clothes/upper/letterman/right.png and b/img/clothes/upper/letterman/right.png differ
diff --git a/img/clothes/upper/letterman/right_acc_gray.png b/img/clothes/upper/letterman/right_acc_gray.png
index 731dd156262d72a5f3bf2bff35d1e4f816f5962d..bf663c3595e8b2fb233708f10ef3b6566b63bb68 100644
Binary files a/img/clothes/upper/letterman/right_acc_gray.png and b/img/clothes/upper/letterman/right_acc_gray.png differ
diff --git a/img/clothes/upper/letterman/right_cover.png b/img/clothes/upper/letterman/right_cover.png
index bb6cb75fcacebba4e65b914d6ea64494d4ba9580..f567348791bfe807ecd8f7c63f92c6cbc2a7e172 100644
Binary files a/img/clothes/upper/letterman/right_cover.png and b/img/clothes/upper/letterman/right_cover.png differ
diff --git a/img/clothes/upper/letterman/right_cover_acc_gray.png b/img/clothes/upper/letterman/right_cover_acc_gray.png
index e811bbe733a021c5bde713cc92bb7595ae2f4de1..870951bbcf51c8b2f369d419cab116e80e5ed542 100644
Binary files a/img/clothes/upper/letterman/right_cover_acc_gray.png and b/img/clothes/upper/letterman/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/letterman/tattered_gray.png b/img/clothes/upper/letterman/tattered_gray.png
index d12967ce272a1c03be73b4feebf1b643f2f6ed10..e089e132a278d116c01abc3621b57e138daa7555 100644
Binary files a/img/clothes/upper/letterman/tattered_gray.png and b/img/clothes/upper/letterman/tattered_gray.png differ
diff --git a/img/clothes/upper/letterman/torn_gray.png b/img/clothes/upper/letterman/torn_gray.png
index 4eb9d4b73202879eaf3f1bab7f5955bf57874a18..faf9d4f5496466fe49327c030301570139f88ed4 100644
Binary files a/img/clothes/upper/letterman/torn_gray.png and b/img/clothes/upper/letterman/torn_gray.png differ
diff --git a/img/clothes/upper/lifevest/acc_gray.png b/img/clothes/upper/lifevest/acc_gray.png
index 00da7da3b8c73bc4ae6b4dc2eaa84ab146855e7c..a62b1b6705d4ce5da48d3c5ea641d396dad3ea50 100644
Binary files a/img/clothes/upper/lifevest/acc_gray.png and b/img/clothes/upper/lifevest/acc_gray.png differ
diff --git a/img/clothes/upper/lifevest/frayed_gray.png b/img/clothes/upper/lifevest/frayed_gray.png
index 66844828ee4f569c41c2a19e90f9da097fbecf28..1d016e0cc5585d8f2eb08fb6b4727e641f400fee 100644
Binary files a/img/clothes/upper/lifevest/frayed_gray.png and b/img/clothes/upper/lifevest/frayed_gray.png differ
diff --git a/img/clothes/upper/lifevest/full_gray.png b/img/clothes/upper/lifevest/full_gray.png
index 93e42583b8f2ee8123026b384246cca3f28e0dbb..192b80d851e55829e4762ed81b8b2daf2dba29da 100644
Binary files a/img/clothes/upper/lifevest/full_gray.png and b/img/clothes/upper/lifevest/full_gray.png differ
diff --git a/img/clothes/upper/lifevest/tattered_gray.png b/img/clothes/upper/lifevest/tattered_gray.png
index a62c3cad61b52c60b9ea6d264cd74f95c4154deb..5b015c5ef348792022925427cf414ca1e2e2fe3d 100644
Binary files a/img/clothes/upper/lifevest/tattered_gray.png and b/img/clothes/upper/lifevest/tattered_gray.png differ
diff --git a/img/clothes/upper/lifevest/torn_gray.png b/img/clothes/upper/lifevest/torn_gray.png
index 7af591d0b072f9b18f59aff5fd732fcb9f3a1906..105ebfb8f2f5849234922d01716b61437b1ebef2 100644
Binary files a/img/clothes/upper/lifevest/torn_gray.png and b/img/clothes/upper/lifevest/torn_gray.png differ
diff --git a/img/clothes/upper/maid/0.png b/img/clothes/upper/maid/0.png
index 969d101b3c6b9ede8db4a0c9e016a646da24c873..4893dec8021172d8697b6399c09f9a159097ebdb 100644
Binary files a/img/clothes/upper/maid/0.png and b/img/clothes/upper/maid/0.png differ
diff --git a/img/clothes/upper/maid/1.png b/img/clothes/upper/maid/1.png
index d7cccd0dd99af1434afd3d4d556c8975b9575d34..8a4b11a7f259f36ce70c323d35023e63eb3934e0 100644
Binary files a/img/clothes/upper/maid/1.png and b/img/clothes/upper/maid/1.png differ
diff --git a/img/clothes/upper/maid/3.png b/img/clothes/upper/maid/3.png
index 4143dd84e73f7418b0fdd6f90ad6f6e8356b1406..8f8b8549bd1b9a664f4c7b2094d96e2b4e461f06 100644
Binary files a/img/clothes/upper/maid/3.png and b/img/clothes/upper/maid/3.png differ
diff --git a/img/clothes/upper/maid/4.png b/img/clothes/upper/maid/4.png
index dcbbe10956c8125d527dc449549dcb97d7b6e9f8..e773e23c5e9a4f5423c8e8ce6f0d1b8f67006f06 100644
Binary files a/img/clothes/upper/maid/4.png and b/img/clothes/upper/maid/4.png differ
diff --git a/img/clothes/upper/maid/5.png b/img/clothes/upper/maid/5.png
index 30b50ee5fc838952c9c08908444c32e0bf230ee1..e773e23c5e9a4f5423c8e8ce6f0d1b8f67006f06 100644
Binary files a/img/clothes/upper/maid/5.png and b/img/clothes/upper/maid/5.png differ
diff --git a/img/clothes/upper/maid/frayed.png b/img/clothes/upper/maid/frayed.png
index 9b6270651a7f24d93079ab997bcbe587d66e45ce..0f5a1d6de123b55411b9de43174e201da5a6c0a3 100644
Binary files a/img/clothes/upper/maid/frayed.png and b/img/clothes/upper/maid/frayed.png differ
diff --git a/img/clothes/upper/maid/full.png b/img/clothes/upper/maid/full.png
index 9aab5892038c828074d8b4f83be93a96f34054f4..cd9c8983fae3987f814e53d1422ad643d56fa085 100644
Binary files a/img/clothes/upper/maid/full.png and b/img/clothes/upper/maid/full.png differ
diff --git a/img/clothes/upper/maid/hold.png b/img/clothes/upper/maid/hold.png
index e0272a0023aa98c5db5f4801ca0b585810fe006a..fb550f5ea07cb0d3ef07eb46b1f2c6f877fd82da 100644
Binary files a/img/clothes/upper/maid/hold.png and b/img/clothes/upper/maid/hold.png differ
diff --git a/img/clothes/upper/maid/left.png b/img/clothes/upper/maid/left.png
index 92e2763a8ba02216c05247d6e11749b8ab15ba41..6476595b26713e55dae4db87ec9cc27ec39fe952 100644
Binary files a/img/clothes/upper/maid/left.png and b/img/clothes/upper/maid/left.png differ
diff --git a/img/clothes/upper/maid/left_cover.png b/img/clothes/upper/maid/left_cover.png
index 5440feeb484846dea79286f0cf04279e2043bd60..1ee1b45ca6bddf81b5af0db7ac909c3cd8e5a6f1 100644
Binary files a/img/clothes/upper/maid/left_cover.png and b/img/clothes/upper/maid/left_cover.png differ
diff --git a/img/clothes/upper/maid/right.png b/img/clothes/upper/maid/right.png
index c4b231e9661bb23e8e26646ae4021bb045f1b0f1..03698e8f2cb84787d06d3d0f86713c5f934be27d 100644
Binary files a/img/clothes/upper/maid/right.png and b/img/clothes/upper/maid/right.png differ
diff --git a/img/clothes/upper/maid/right_cover.png b/img/clothes/upper/maid/right_cover.png
index c9fb39c43d81b40cf1b0446c5ec4f45a629c8acb..f7d0c2430fcddb9cffbff8f26dada71fd7101409 100644
Binary files a/img/clothes/upper/maid/right_cover.png and b/img/clothes/upper/maid/right_cover.png differ
diff --git a/img/clothes/upper/maid/tattered.png b/img/clothes/upper/maid/tattered.png
index 023ec1aeea54b62989659e0aa0b41a61d49b8345..e9575ad785c0515c8a5710d5775af4d89496d70f 100644
Binary files a/img/clothes/upper/maid/tattered.png and b/img/clothes/upper/maid/tattered.png differ
diff --git a/img/clothes/upper/maid/torn.png b/img/clothes/upper/maid/torn.png
index d4e3ee802cde5ab0a086ab57fca04fec5337733e..4c8ee918e13f2c83664a507b96bda6012fd479af 100644
Binary files a/img/clothes/upper/maid/torn.png and b/img/clothes/upper/maid/torn.png differ
diff --git a/img/clothes/upper/monk/2.png b/img/clothes/upper/monk/2.png
index 748b8c12abc2638ffb9ae2a660b30b69e1bec6ab..0ae09e62c9d228de44f12e31850a0639a3c86b23 100644
Binary files a/img/clothes/upper/monk/2.png and b/img/clothes/upper/monk/2.png differ
diff --git a/img/clothes/upper/monk/3.png b/img/clothes/upper/monk/3.png
index 62f48b742c1260b9dacb4a383923b7e62dfbabdb..72f718d76759fe4e84b7edc783373a36d8d7190b 100644
Binary files a/img/clothes/upper/monk/3.png and b/img/clothes/upper/monk/3.png differ
diff --git a/img/clothes/upper/monk/4.png b/img/clothes/upper/monk/4.png
index d3c64b43a65aa4d63be1d912eccd51b2d34e3e51..9495939f62064f0d6a66df80da803b071be0b372 100644
Binary files a/img/clothes/upper/monk/4.png and b/img/clothes/upper/monk/4.png differ
diff --git a/img/clothes/upper/monk/5.png b/img/clothes/upper/monk/5.png
index 91dc2537e52a18eb11dde74964e673b1f703709e..f61393da5e4fed61b66eaff63f9d7fea59764997 100644
Binary files a/img/clothes/upper/monk/5.png and b/img/clothes/upper/monk/5.png differ
diff --git a/img/clothes/upper/monk/frayed.png b/img/clothes/upper/monk/frayed.png
index d99442db11f4bc32097d1fd8562d65c902cc2c49..4d5d196dfbc985065257353ba509e82832e883de 100644
Binary files a/img/clothes/upper/monk/frayed.png and b/img/clothes/upper/monk/frayed.png differ
diff --git a/img/clothes/upper/monk/full.png b/img/clothes/upper/monk/full.png
index c2c47e95d3bfc2a7800d478286bac809e2694621..6b1f3791770e2791f1d6a0e5e4a992e5ad86406d 100644
Binary files a/img/clothes/upper/monk/full.png and b/img/clothes/upper/monk/full.png differ
diff --git a/img/clothes/upper/monk/hold.png b/img/clothes/upper/monk/hold.png
index 690c6d1857947b06d04667c7bb202044a0841653..8f5486dab906b037f4df9022dc2b418ee0858ccc 100644
Binary files a/img/clothes/upper/monk/hold.png and b/img/clothes/upper/monk/hold.png differ
diff --git a/img/clothes/upper/monk/left.png b/img/clothes/upper/monk/left.png
index 6edc6726ad96428cde2ae90167efe25f240279a7..524fb3d9731ea36b3526e8073d8ec62634dd31e6 100644
Binary files a/img/clothes/upper/monk/left.png and b/img/clothes/upper/monk/left.png differ
diff --git a/img/clothes/upper/monk/left_cover.png b/img/clothes/upper/monk/left_cover.png
index c3bb0c8687c0ce56b1a2fdc554624f64ed06fc57..919f797b9c2bd3b220be51511dad82f3d00d2149 100644
Binary files a/img/clothes/upper/monk/left_cover.png and b/img/clothes/upper/monk/left_cover.png differ
diff --git a/img/clothes/upper/monk/right.png b/img/clothes/upper/monk/right.png
index 0b658bdaa6750ed62e2c79621b60dea14ea77385..59f1db470ad7aaa62e10f804f38733b10d43425b 100644
Binary files a/img/clothes/upper/monk/right.png and b/img/clothes/upper/monk/right.png differ
diff --git a/img/clothes/upper/monk/right_cover.png b/img/clothes/upper/monk/right_cover.png
index 1cfb235fc6ef010c7a18fa9e4254e38cca91960b..050f6280ce2c72f0b2b505561c1e59c657391576 100644
Binary files a/img/clothes/upper/monk/right_cover.png and b/img/clothes/upper/monk/right_cover.png differ
diff --git a/img/clothes/upper/monk/tattered.png b/img/clothes/upper/monk/tattered.png
index 53ef55f3317b14b1f5d14b512005ad9f6da4038b..71e47f1614578cbd6e757afd734c62a5196226a5 100644
Binary files a/img/clothes/upper/monk/tattered.png and b/img/clothes/upper/monk/tattered.png differ
diff --git a/img/clothes/upper/monk/torn.png b/img/clothes/upper/monk/torn.png
index 97d6b98b6da174d99b180b86669b2a2a520ab7e5..27f5ee4709ddb73448677e02b9530ad818186646 100644
Binary files a/img/clothes/upper/monk/torn.png and b/img/clothes/upper/monk/torn.png differ
diff --git a/img/clothes/upper/monklewd/2.png b/img/clothes/upper/monklewd/2.png
index 27dc85554cec16e2c1a0b747aa7b0adafda197b5..f6939b8897bf258ec8473e8b62fbc7b59ccd859b 100644
Binary files a/img/clothes/upper/monklewd/2.png and b/img/clothes/upper/monklewd/2.png differ
diff --git a/img/clothes/upper/monklewd/4.png b/img/clothes/upper/monklewd/4.png
index 1a611128611f28ab43e6332a64815e4d2e820506..9bb28ac470cf28e039d5dcd9587576d0ddc6ad86 100644
Binary files a/img/clothes/upper/monklewd/4.png and b/img/clothes/upper/monklewd/4.png differ
diff --git a/img/clothes/upper/monklewd/5.png b/img/clothes/upper/monklewd/5.png
index 7a45b8b366b1bf5697ceb0006e71f9a2a12114f0..0d464d3f7049ca172d82a0cce55d63546d6137f6 100644
Binary files a/img/clothes/upper/monklewd/5.png and b/img/clothes/upper/monklewd/5.png differ
diff --git a/img/clothes/upper/monklewd/frayed.png b/img/clothes/upper/monklewd/frayed.png
index b9def27b29f4ea243c65ad6d37d3e52e4f25354e..7a8643dd68590579d69999e3f132e22f781207de 100644
Binary files a/img/clothes/upper/monklewd/frayed.png and b/img/clothes/upper/monklewd/frayed.png differ
diff --git a/img/clothes/upper/monklewd/full.png b/img/clothes/upper/monklewd/full.png
index f9e612dc37f5318049e882536f641dc1680ef31f..a4e9cab6aa201429acd01b40b8a6c04ca65811e1 100644
Binary files a/img/clothes/upper/monklewd/full.png and b/img/clothes/upper/monklewd/full.png differ
diff --git a/img/clothes/upper/monklewd/tattered.png b/img/clothes/upper/monklewd/tattered.png
index 6c18491a05430d280f6308c80e70feaed9bbec15..5642247767142cc8783c2fd50b921699cf283790 100644
Binary files a/img/clothes/upper/monklewd/tattered.png and b/img/clothes/upper/monklewd/tattered.png differ
diff --git a/img/clothes/upper/monklewd/torn.png b/img/clothes/upper/monklewd/torn.png
index 98ae3d9ac81cf0019ce3cb85565ebbbc054b2d4b..f397fe137a5eb333a80c5cbe917a9eb2ac7c376b 100644
Binary files a/img/clothes/upper/monklewd/torn.png and b/img/clothes/upper/monklewd/torn.png differ
diff --git a/img/clothes/upper/monster/1_gray.png b/img/clothes/upper/monster/1_gray.png
index 263b2373807f26fd8158a84a334a75fdf906d37c..156b280a73a6c8bd3c6309694ae4fe2d275f88f3 100644
Binary files a/img/clothes/upper/monster/1_gray.png and b/img/clothes/upper/monster/1_gray.png differ
diff --git a/img/clothes/upper/monster/2_gray.png b/img/clothes/upper/monster/2_gray.png
index 6e74018da4f3ed653a3081564679fca2785d33a7..d760723765fbe5689501e2a310096c0894a1e7bd 100644
Binary files a/img/clothes/upper/monster/2_gray.png and b/img/clothes/upper/monster/2_gray.png differ
diff --git a/img/clothes/upper/monster/3_gray.png b/img/clothes/upper/monster/3_gray.png
index f008998d07c1de3f15be39b8d191368ace4fbe0d..7b755fcfb08bac0cff8c52b81350345dc4b28160 100644
Binary files a/img/clothes/upper/monster/3_gray.png and b/img/clothes/upper/monster/3_gray.png differ
diff --git a/img/clothes/upper/monster/4_gray.png b/img/clothes/upper/monster/4_gray.png
index 9096c7abed61343e99e71166a68aa97716c418c2..847d9bb27884b08f1bd8020c5777feead43fa541 100644
Binary files a/img/clothes/upper/monster/4_gray.png and b/img/clothes/upper/monster/4_gray.png differ
diff --git a/img/clothes/upper/monster/acc.png b/img/clothes/upper/monster/acc.png
index b120188a982da8576a62317522ed3daad69655e9..b8a6e8b0d31008344e12584b29b8a3fef17703e6 100644
Binary files a/img/clothes/upper/monster/acc.png and b/img/clothes/upper/monster/acc.png differ
diff --git a/img/clothes/upper/monster/acc_down.png b/img/clothes/upper/monster/acc_down.png
index b120188a982da8576a62317522ed3daad69655e9..b8a6e8b0d31008344e12584b29b8a3fef17703e6 100644
Binary files a/img/clothes/upper/monster/acc_down.png and b/img/clothes/upper/monster/acc_down.png differ
diff --git a/img/clothes/upper/monster/frayed_down_gray.png b/img/clothes/upper/monster/frayed_down_gray.png
index 9091138bd50885651dbb0942e7a7c2e9e5ac9260..bac5e1a90734e3ff3164e0ad2354e7b7f24d158f 100644
Binary files a/img/clothes/upper/monster/frayed_down_gray.png and b/img/clothes/upper/monster/frayed_down_gray.png differ
diff --git a/img/clothes/upper/monster/frayed_gray.png b/img/clothes/upper/monster/frayed_gray.png
index 9091138bd50885651dbb0942e7a7c2e9e5ac9260..bac5e1a90734e3ff3164e0ad2354e7b7f24d158f 100644
Binary files a/img/clothes/upper/monster/frayed_gray.png and b/img/clothes/upper/monster/frayed_gray.png differ
diff --git a/img/clothes/upper/monster/full_down_gray.png b/img/clothes/upper/monster/full_down_gray.png
index 670b60ddebe65844cad3a5cdede86fea3854aa51..a2f3566bd0086236886aeb0e05ee48d67f40c3b2 100644
Binary files a/img/clothes/upper/monster/full_down_gray.png and b/img/clothes/upper/monster/full_down_gray.png differ
diff --git a/img/clothes/upper/monster/full_gray.png b/img/clothes/upper/monster/full_gray.png
index 670b60ddebe65844cad3a5cdede86fea3854aa51..a2f3566bd0086236886aeb0e05ee48d67f40c3b2 100644
Binary files a/img/clothes/upper/monster/full_gray.png and b/img/clothes/upper/monster/full_gray.png differ
diff --git a/img/clothes/upper/monster/hold_acc.png b/img/clothes/upper/monster/hold_acc.png
index ba5efd55bbf432750c1958053bf29ad7177cfe22..5053b73259325468adc8cea8933fabf64275109f 100644
Binary files a/img/clothes/upper/monster/hold_acc.png and b/img/clothes/upper/monster/hold_acc.png differ
diff --git a/img/clothes/upper/monster/hold_gray.png b/img/clothes/upper/monster/hold_gray.png
index 82f0f950c8b4be649092bf2826fe069a53765a16..1b83ebde4385938a44377814a40f3c4af7592752 100644
Binary files a/img/clothes/upper/monster/hold_gray.png and b/img/clothes/upper/monster/hold_gray.png differ
diff --git a/img/clothes/upper/monster/left_acc.png b/img/clothes/upper/monster/left_acc.png
index 32c59bfb9f19266e93c9ade1f5f14e710b21ab52..cd028b777ae1314bec37a5b736bbc6d9baa158cc 100644
Binary files a/img/clothes/upper/monster/left_acc.png and b/img/clothes/upper/monster/left_acc.png differ
diff --git a/img/clothes/upper/monster/left_cover_acc.png b/img/clothes/upper/monster/left_cover_acc.png
index 299ab1a188f1c74d42307a55fc43ce1162a77f9b..dc4dbb2eb652a1dd3a34d8b93222741b7c343a13 100644
Binary files a/img/clothes/upper/monster/left_cover_acc.png and b/img/clothes/upper/monster/left_cover_acc.png differ
diff --git a/img/clothes/upper/monster/left_cover_gray.png b/img/clothes/upper/monster/left_cover_gray.png
index 84b4e256fd79afe687b483207100ed3790da2c4d..7dfa90239bca42e3aa853b40d30485027d6e66bb 100644
Binary files a/img/clothes/upper/monster/left_cover_gray.png and b/img/clothes/upper/monster/left_cover_gray.png differ
diff --git a/img/clothes/upper/monster/left_gray.png b/img/clothes/upper/monster/left_gray.png
index c11d8a53cf78044f4c3f1641ed6575906badfaf2..ea4ca98f823924d632832c8dfa9e54acf09f9418 100644
Binary files a/img/clothes/upper/monster/left_gray.png and b/img/clothes/upper/monster/left_gray.png differ
diff --git a/img/clothes/upper/monster/right_acc.png b/img/clothes/upper/monster/right_acc.png
index 51fe1d82435f8464ef65a5ed9d0c119e4395cfbf..7d2e9e00cb98525c261687a24c2850f0ffb40f88 100644
Binary files a/img/clothes/upper/monster/right_acc.png and b/img/clothes/upper/monster/right_acc.png differ
diff --git a/img/clothes/upper/monster/right_cover_acc.png b/img/clothes/upper/monster/right_cover_acc.png
index 7b411bbe10551d6f6291dba0ef3b14e16b706485..7c47eb8eda871b55bd1190b708a781907b6afa8b 100644
Binary files a/img/clothes/upper/monster/right_cover_acc.png and b/img/clothes/upper/monster/right_cover_acc.png differ
diff --git a/img/clothes/upper/monster/right_cover_gray.png b/img/clothes/upper/monster/right_cover_gray.png
index a064ebde8fee1f209d89b6d4813b5cd300af8950..6b2243539694d61f9177567bd7b29d4842590cf6 100644
Binary files a/img/clothes/upper/monster/right_cover_gray.png and b/img/clothes/upper/monster/right_cover_gray.png differ
diff --git a/img/clothes/upper/monster/right_gray.png b/img/clothes/upper/monster/right_gray.png
index 66ceabd64fbf6286a64c31f0ba586fc84d71291d..4831332f49fc876362dfc1b56870bf2ad8df2da2 100644
Binary files a/img/clothes/upper/monster/right_gray.png and b/img/clothes/upper/monster/right_gray.png differ
diff --git a/img/clothes/upper/monster/tattered_down_gray.png b/img/clothes/upper/monster/tattered_down_gray.png
index 9c156350f14dd90e05aa701c486ff7d92414d455..9ae5bff7428b721235eaa1110be074513879bf5f 100644
Binary files a/img/clothes/upper/monster/tattered_down_gray.png and b/img/clothes/upper/monster/tattered_down_gray.png differ
diff --git a/img/clothes/upper/monster/tattered_gray.png b/img/clothes/upper/monster/tattered_gray.png
index 9c156350f14dd90e05aa701c486ff7d92414d455..9ae5bff7428b721235eaa1110be074513879bf5f 100644
Binary files a/img/clothes/upper/monster/tattered_gray.png and b/img/clothes/upper/monster/tattered_gray.png differ
diff --git a/img/clothes/upper/monster/torn_down_gray.png b/img/clothes/upper/monster/torn_down_gray.png
index ec11aa5be05ac4d6f16e9d5dce26289656d049f4..b7444b70d1996923b2c2fab1fb614cd2703ad60e 100644
Binary files a/img/clothes/upper/monster/torn_down_gray.png and b/img/clothes/upper/monster/torn_down_gray.png differ
diff --git a/img/clothes/upper/monster/torn_gray.png b/img/clothes/upper/monster/torn_gray.png
index ec11aa5be05ac4d6f16e9d5dce26289656d049f4..b7444b70d1996923b2c2fab1fb614cd2703ad60e 100644
Binary files a/img/clothes/upper/monster/torn_gray.png and b/img/clothes/upper/monster/torn_gray.png differ
diff --git a/img/clothes/upper/mummy/frayed.png b/img/clothes/upper/mummy/frayed.png
index 35d22cc81775d4cb742161750aae5727d345539b..431188302d55f345d71aefd1130fc72a0699d919 100644
Binary files a/img/clothes/upper/mummy/frayed.png and b/img/clothes/upper/mummy/frayed.png differ
diff --git a/img/clothes/upper/mummy/full.png b/img/clothes/upper/mummy/full.png
index 9029171fd0d1f880a176dfcac2637e71f82640b2..3c67a86b8681de218666d525fea1e3bf71b8e617 100644
Binary files a/img/clothes/upper/mummy/full.png and b/img/clothes/upper/mummy/full.png differ
diff --git a/img/clothes/upper/mummy/hold.png b/img/clothes/upper/mummy/hold.png
index d47f1478b22eeee1782402287e8544046e65f8f3..45a6f079d3914f5ba63bffef8a61e91ddc0313fa 100644
Binary files a/img/clothes/upper/mummy/hold.png and b/img/clothes/upper/mummy/hold.png differ
diff --git a/img/clothes/upper/mummy/left.png b/img/clothes/upper/mummy/left.png
index 9e4e6ab2a66770d745c4660b83670256d44b4b89..4448ca556cacc4f366d2dd21c25e9daca8d70f8f 100644
Binary files a/img/clothes/upper/mummy/left.png and b/img/clothes/upper/mummy/left.png differ
diff --git a/img/clothes/upper/mummy/left_cover.png b/img/clothes/upper/mummy/left_cover.png
index 4c911600a9baae08f58012021be9ad9fe0bb47ca..a5dbf90ae5da34bede1b6271e4d0e6a6e3934276 100644
Binary files a/img/clothes/upper/mummy/left_cover.png and b/img/clothes/upper/mummy/left_cover.png differ
diff --git a/img/clothes/upper/mummy/right.png b/img/clothes/upper/mummy/right.png
index cc3a6047cfed63bb9a735e89032c325cc5d27bbe..ad2823fe1ae417100af2b62302908d45106c5150 100644
Binary files a/img/clothes/upper/mummy/right.png and b/img/clothes/upper/mummy/right.png differ
diff --git a/img/clothes/upper/mummy/right_cover.png b/img/clothes/upper/mummy/right_cover.png
index a8e1ff1f024316a051b473b64334c9b25427e812..bd61c35482f3685cc24c1ad47661eb3b37930104 100644
Binary files a/img/clothes/upper/mummy/right_cover.png and b/img/clothes/upper/mummy/right_cover.png differ
diff --git a/img/clothes/upper/mummy/tattered.png b/img/clothes/upper/mummy/tattered.png
index 17f4ea0aa9575e58dc2b30ddac348f75ca1cfccc..10a2a8325a726fe758522a1fa0a63d57bcd9ae93 100644
Binary files a/img/clothes/upper/mummy/tattered.png and b/img/clothes/upper/mummy/tattered.png differ
diff --git a/img/clothes/upper/mummy/torn.png b/img/clothes/upper/mummy/torn.png
index e1736c2b5bb523d14ba514e6f63ca0f14d7ae3eb..2c6fdfc191306e433545d587d4caf3b1ae1a1779 100644
Binary files a/img/clothes/upper/mummy/torn.png and b/img/clothes/upper/mummy/torn.png differ
diff --git a/img/clothes/upper/nun/2.png b/img/clothes/upper/nun/2.png
index af2e9b99d563de2f3d440eb14208ba6d4ef95d01..84e27a2ec15bc60c987aea77011c3ebd2ef02c0f 100644
Binary files a/img/clothes/upper/nun/2.png and b/img/clothes/upper/nun/2.png differ
diff --git a/img/clothes/upper/nun/3.png b/img/clothes/upper/nun/3.png
index f9e273204b0e34d81b1d0e7ff0d38208afa100fe..18a9c935674fc06c9958de51c412b4f3eb47e6db 100644
Binary files a/img/clothes/upper/nun/3.png and b/img/clothes/upper/nun/3.png differ
diff --git a/img/clothes/upper/nun/4.png b/img/clothes/upper/nun/4.png
index 90f0c12d765933cdb2d7a3ecd86feded1e9a1c9a..593e9f862ab16add1ea73ac189886c4d42780dc4 100644
Binary files a/img/clothes/upper/nun/4.png and b/img/clothes/upper/nun/4.png differ
diff --git a/img/clothes/upper/nun/5.png b/img/clothes/upper/nun/5.png
index 23eec48b319d1dae98e882a972726f4ea6bf24d7..49355d8dcb56b34d90a6032da990c496a8f0663a 100644
Binary files a/img/clothes/upper/nun/5.png and b/img/clothes/upper/nun/5.png differ
diff --git a/img/clothes/upper/nun/frayed.png b/img/clothes/upper/nun/frayed.png
index b4fbf354cc8c4ae63633dead9a45033f5ab3d5b5..38bfaac8d0c12e5bd331dd52874b50c4cd2ab086 100644
Binary files a/img/clothes/upper/nun/frayed.png and b/img/clothes/upper/nun/frayed.png differ
diff --git a/img/clothes/upper/nun/full.png b/img/clothes/upper/nun/full.png
index 341b948d80adea9b714d6960cd7d51ff16af69b5..f16be6249fa952fcf3f370951c9d52ddc1560ada 100644
Binary files a/img/clothes/upper/nun/full.png and b/img/clothes/upper/nun/full.png differ
diff --git a/img/clothes/upper/nun/hold.png b/img/clothes/upper/nun/hold.png
index 53f51c2330131996f0b32bdca348a8c7040fe6cd..24cd5847ddc6ed0c5e68cdf6d42409edb9cc4f07 100644
Binary files a/img/clothes/upper/nun/hold.png and b/img/clothes/upper/nun/hold.png differ
diff --git a/img/clothes/upper/nun/left.png b/img/clothes/upper/nun/left.png
index 62b56d2ccf54177285e23c48520c06451bd846d7..26c3ab1ed756bdfdb8c04f060705a8c5d2fd8f3c 100644
Binary files a/img/clothes/upper/nun/left.png and b/img/clothes/upper/nun/left.png differ
diff --git a/img/clothes/upper/nun/left_cover.png b/img/clothes/upper/nun/left_cover.png
index 568d28756b3db001b0af0c6cf3676f4f315c1416..73f7fab53f377a5b1d70d389cf0017a551419bda 100644
Binary files a/img/clothes/upper/nun/left_cover.png and b/img/clothes/upper/nun/left_cover.png differ
diff --git a/img/clothes/upper/nun/right.png b/img/clothes/upper/nun/right.png
index b7d8638b47ab7490750f1f8513a98cb8062b9be5..473b0e0403101a6aa54c2fed927e3603332f72f9 100644
Binary files a/img/clothes/upper/nun/right.png and b/img/clothes/upper/nun/right.png differ
diff --git a/img/clothes/upper/nun/right_cover.png b/img/clothes/upper/nun/right_cover.png
index 5bca35a103e3d073af7328cdc4c662ef243946e7..a9d434fbede27e7d0acee76754da532e675d3d50 100644
Binary files a/img/clothes/upper/nun/right_cover.png and b/img/clothes/upper/nun/right_cover.png differ
diff --git a/img/clothes/upper/nun/tattered.png b/img/clothes/upper/nun/tattered.png
index 4d31da7dd2397d437c6b22055d28946f885e8b96..df3cafb964265b78f10476b3277bc0b396a8de2e 100644
Binary files a/img/clothes/upper/nun/tattered.png and b/img/clothes/upper/nun/tattered.png differ
diff --git a/img/clothes/upper/nun/torn.png b/img/clothes/upper/nun/torn.png
index fb4ca277522d27f1ddab4c6d011b88dd5e21dca1..908f285342f892378561a4aeedc390e35fb94bed 100644
Binary files a/img/clothes/upper/nun/torn.png and b/img/clothes/upper/nun/torn.png differ
diff --git a/img/clothes/upper/nunlewd/1.png b/img/clothes/upper/nunlewd/1.png
index 703e070ae1c4c2744d2f026728ddf9cd5c81d170..219dfeba0590e28e272e77cec56ae0689a73c9cf 100644
Binary files a/img/clothes/upper/nunlewd/1.png and b/img/clothes/upper/nunlewd/1.png differ
diff --git a/img/clothes/upper/nunlewd/3.png b/img/clothes/upper/nunlewd/3.png
index a1253d268200edf8220d7233292bf2c21d0c39fe..69e7e9fbe0c07dd4277e5e8ec5f3e77e87add637 100644
Binary files a/img/clothes/upper/nunlewd/3.png and b/img/clothes/upper/nunlewd/3.png differ
diff --git a/img/clothes/upper/nunlewd/4.png b/img/clothes/upper/nunlewd/4.png
index 287489dee976060e5e0d7b86267beeba0ceeb0f1..40e50aceb47fe46b7df5cfaa3985132f0349dcc8 100644
Binary files a/img/clothes/upper/nunlewd/4.png and b/img/clothes/upper/nunlewd/4.png differ
diff --git a/img/clothes/upper/nunlewd/5.png b/img/clothes/upper/nunlewd/5.png
index 9f12ede7a856a8d8e881f631a79b85b4a986548b..abcecf56799c160c152e44cd76f6f033d47a6756 100644
Binary files a/img/clothes/upper/nunlewd/5.png and b/img/clothes/upper/nunlewd/5.png differ
diff --git a/img/clothes/upper/nunlewd/frayed.png b/img/clothes/upper/nunlewd/frayed.png
index 01809baa05af09b8de839d5990a97ba25109ed61..25323d3b2b74589076da228544a9597eafebd189 100644
Binary files a/img/clothes/upper/nunlewd/frayed.png and b/img/clothes/upper/nunlewd/frayed.png differ
diff --git a/img/clothes/upper/nunlewd/full.png b/img/clothes/upper/nunlewd/full.png
index aa9610f7c5bd6c7818e8d90123e349db9f74d9d9..106eb545cdb385183480183d2ff4e428c58c66f4 100644
Binary files a/img/clothes/upper/nunlewd/full.png and b/img/clothes/upper/nunlewd/full.png differ
diff --git a/img/clothes/upper/nunlewd/tattered.png b/img/clothes/upper/nunlewd/tattered.png
index 425da45446b245b6c7216e89c514a4baf5e20113..7e7e16e23a01793ab9a81c847d2aff3a1af269ae 100644
Binary files a/img/clothes/upper/nunlewd/tattered.png and b/img/clothes/upper/nunlewd/tattered.png differ
diff --git a/img/clothes/upper/nunlewd/torn.png b/img/clothes/upper/nunlewd/torn.png
index 8edce7f4e1066bc3da4fdccc9f5ec5777751de7b..d05781e96a16dc424718b63633aad5ec27270616 100644
Binary files a/img/clothes/upper/nunlewd/torn.png and b/img/clothes/upper/nunlewd/torn.png differ
diff --git a/img/clothes/upper/openshoulderlolita/4_gray.png b/img/clothes/upper/openshoulderlolita/4_gray.png
index 525b0a78dc4e5e32bdabdf3aa744426954e043d5..551b252a7f5e54c715f41b2439884531009a05d2 100644
Binary files a/img/clothes/upper/openshoulderlolita/4_gray.png and b/img/clothes/upper/openshoulderlolita/4_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/5_gray.png b/img/clothes/upper/openshoulderlolita/5_gray.png
index 7cedcd4f9b9f30b1d786538e2358b32ebced477e..f8fba00d18b93da51efc31f81b2f97cd50e2694b 100644
Binary files a/img/clothes/upper/openshoulderlolita/5_gray.png and b/img/clothes/upper/openshoulderlolita/5_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/6_gray.png b/img/clothes/upper/openshoulderlolita/6_gray.png
index c2db8f1607fff9eaf7975965ba823e0ef267623d..09490a00e8c4027070d4e07a2a7f4a464320ab19 100644
Binary files a/img/clothes/upper/openshoulderlolita/6_gray.png and b/img/clothes/upper/openshoulderlolita/6_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/acc_frayed_gray.png b/img/clothes/upper/openshoulderlolita/acc_frayed_gray.png
index 6876973ec092315e6ab9c1845e4d55259b0e4356..ee09bd7f73b00960d94122599f623ba4a02d2b5f 100644
Binary files a/img/clothes/upper/openshoulderlolita/acc_frayed_gray.png and b/img/clothes/upper/openshoulderlolita/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/acc_full_gray.png b/img/clothes/upper/openshoulderlolita/acc_full_gray.png
index de83ba21f1ef1f50acdc477a813b27a7988874b1..ee09bd7f73b00960d94122599f623ba4a02d2b5f 100644
Binary files a/img/clothes/upper/openshoulderlolita/acc_full_gray.png and b/img/clothes/upper/openshoulderlolita/acc_full_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/acc_tattered_gray.png b/img/clothes/upper/openshoulderlolita/acc_tattered_gray.png
index d75486b3ec5dbb087938624d5aedede56d9ea6d4..cf9307f5e82d85e2d993a7f5e5c26b48a2a17891 100644
Binary files a/img/clothes/upper/openshoulderlolita/acc_tattered_gray.png and b/img/clothes/upper/openshoulderlolita/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/acc_torn_gray.png b/img/clothes/upper/openshoulderlolita/acc_torn_gray.png
index 6ed11b5608f74abc6a807f43e813acc0c9caf4d2..ec2762ad3b6225a92d3848b008c2eebd4c34de5d 100644
Binary files a/img/clothes/upper/openshoulderlolita/acc_torn_gray.png and b/img/clothes/upper/openshoulderlolita/acc_torn_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/frayed_gray.png b/img/clothes/upper/openshoulderlolita/frayed_gray.png
index 1de77915fe1d04f71035809552eaa3183b3d6dff..c567ab174b1a5494dea378fc174e56b2be4ca485 100644
Binary files a/img/clothes/upper/openshoulderlolita/frayed_gray.png and b/img/clothes/upper/openshoulderlolita/frayed_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/full_gray.png b/img/clothes/upper/openshoulderlolita/full_gray.png
index 7650ca906dc0880a68468d7af20ba7f7292bc0ab..ed4149dfe98d64ffcaecc44c623154a1290b8007 100644
Binary files a/img/clothes/upper/openshoulderlolita/full_gray.png and b/img/clothes/upper/openshoulderlolita/full_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/hold_acc_gray.png b/img/clothes/upper/openshoulderlolita/hold_acc_gray.png
index 846711e7a735736bf639b51073959972db2704f2..4c6a3348cb9c551a6ca5bc4f39f1ec564ccde648 100644
Binary files a/img/clothes/upper/openshoulderlolita/hold_acc_gray.png and b/img/clothes/upper/openshoulderlolita/hold_acc_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/hold_gray.png b/img/clothes/upper/openshoulderlolita/hold_gray.png
index 8917eb9148dd09bf75847c3bc24a747aa9b357a4..dca1b6acef8ff59080bc896f37fd07a4f7dfa420 100644
Binary files a/img/clothes/upper/openshoulderlolita/hold_gray.png and b/img/clothes/upper/openshoulderlolita/hold_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/left_acc_gray.png b/img/clothes/upper/openshoulderlolita/left_acc_gray.png
index de1f0067cbdb3ddfe080b68ceba79ee8e242107b..127fc3a4111623a79824bfb8e6f60785c4530e87 100644
Binary files a/img/clothes/upper/openshoulderlolita/left_acc_gray.png and b/img/clothes/upper/openshoulderlolita/left_acc_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/left_cover_acc_gray.png b/img/clothes/upper/openshoulderlolita/left_cover_acc_gray.png
index 333f00b47b47e520896f7fabde26dd861335c2eb..e25ee10addd5b3d872aa7c1863345a5a072f1861 100644
Binary files a/img/clothes/upper/openshoulderlolita/left_cover_acc_gray.png and b/img/clothes/upper/openshoulderlolita/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/left_cover_gray.png b/img/clothes/upper/openshoulderlolita/left_cover_gray.png
index 945f0a5fc4012dd4c1ab57f79df36cc70da4b3f1..ce97a357e17fa314d9915d0fae934dae6825ee43 100644
Binary files a/img/clothes/upper/openshoulderlolita/left_cover_gray.png and b/img/clothes/upper/openshoulderlolita/left_cover_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/left_gray.png b/img/clothes/upper/openshoulderlolita/left_gray.png
index 9eefc593ffa2935b7e7115c87a9ee15003e22933..cc938317f4292182e22cd72f688ff8a9014b0aec 100644
Binary files a/img/clothes/upper/openshoulderlolita/left_gray.png and b/img/clothes/upper/openshoulderlolita/left_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/right_acc_gray.png b/img/clothes/upper/openshoulderlolita/right_acc_gray.png
index aac24e0cec899457e29951e98829f77ba2b6eef7..292abe37b79d4dc78806474f3cb078dfce45659b 100644
Binary files a/img/clothes/upper/openshoulderlolita/right_acc_gray.png and b/img/clothes/upper/openshoulderlolita/right_acc_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/right_cover_acc_gray.png b/img/clothes/upper/openshoulderlolita/right_cover_acc_gray.png
index b7b482acd99af77a9abb6df72a3d5623ec1e8a96..d32ca9cc15445e7fe4e85d7e4419a705374eb8d3 100644
Binary files a/img/clothes/upper/openshoulderlolita/right_cover_acc_gray.png and b/img/clothes/upper/openshoulderlolita/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/right_cover_gray.png b/img/clothes/upper/openshoulderlolita/right_cover_gray.png
index 35cff496638024c081ec6e88d0621b0128b079a1..54573feb5827a51fbd4f822dd4b1151845880ed6 100644
Binary files a/img/clothes/upper/openshoulderlolita/right_cover_gray.png and b/img/clothes/upper/openshoulderlolita/right_cover_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/right_gray.png b/img/clothes/upper/openshoulderlolita/right_gray.png
index 1b03dbb125d4f920e32b30a51029b5ff03accc64..6120637e7cfa237a87403cdd7c1de29239b0ad2d 100644
Binary files a/img/clothes/upper/openshoulderlolita/right_gray.png and b/img/clothes/upper/openshoulderlolita/right_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/tattered_gray.png b/img/clothes/upper/openshoulderlolita/tattered_gray.png
index 466db58a62b7bea9c03d928fc40aebb6c5626955..0a4ba790d1ef1881f194cb2034004ed67a7ec8f5 100644
Binary files a/img/clothes/upper/openshoulderlolita/tattered_gray.png and b/img/clothes/upper/openshoulderlolita/tattered_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolita/torn_gray.png b/img/clothes/upper/openshoulderlolita/torn_gray.png
index 7d62c44b46d048ef5fe7392746835a796ba5ceab..65b81a3f5952928cf1093ac8664bda13cb2a0f48 100644
Binary files a/img/clothes/upper/openshoulderlolita/torn_gray.png and b/img/clothes/upper/openshoulderlolita/torn_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/3_gray.png b/img/clothes/upper/openshoulderlolitaclassic/3_gray.png
index 932896d801161f0806313a9e1cd88a163ad87df5..09dc218d7ce1108066104e014287244a1b94d25e 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/3_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/3_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/acc_frayed_gray.png b/img/clothes/upper/openshoulderlolitaclassic/acc_frayed_gray.png
index fcf09b5d040e670346b475ba6d33f4a453993c42..f8c20c5f0a0d30f7e226be2e8edae4d83c5279a0 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/acc_frayed_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/acc_full_gray.png b/img/clothes/upper/openshoulderlolitaclassic/acc_full_gray.png
index 7a0afdae28458a0e6f8fcc7f1f94fc1116717468..93f1fad978e218e0617942a45293b26c6267b0ff 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/acc_full_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/acc_full_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/acc_tattered_gray.png b/img/clothes/upper/openshoulderlolitaclassic/acc_tattered_gray.png
index 57a709989ae236384b4a255c49c19944db84bbcb..dee641332cc1112374b1b5b62fb774daed2f4496 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/acc_tattered_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/acc_torn_gray.png b/img/clothes/upper/openshoulderlolitaclassic/acc_torn_gray.png
index 7998abc67ddacab7c665741895b27ee9f91d60de..4ed849b553600fc684c541705c8857c57bcdbd9e 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/acc_torn_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/acc_torn_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/frayed_gray.png b/img/clothes/upper/openshoulderlolitaclassic/frayed_gray.png
index 2f8d9e9ef8941ceb2119c15d8d8ec092265b171f..0b1b3d7c1ad66d8b1c97ed0a65e839dae2c97030 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/frayed_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/frayed_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/full_gray.png b/img/clothes/upper/openshoulderlolitaclassic/full_gray.png
index 70da5a28576c61b30e60929e07ae9d1e857e22dd..88be264172762a5dd2a1c5db4f9872a997efbcc5 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/full_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/full_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/hold_gray.png b/img/clothes/upper/openshoulderlolitaclassic/hold_gray.png
index 8917eb9148dd09bf75847c3bc24a747aa9b357a4..dca1b6acef8ff59080bc896f37fd07a4f7dfa420 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/hold_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/hold_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/left_cover_gray.png b/img/clothes/upper/openshoulderlolitaclassic/left_cover_gray.png
index 945f0a5fc4012dd4c1ab57f79df36cc70da4b3f1..ce97a357e17fa314d9915d0fae934dae6825ee43 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/left_cover_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/left_cover_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/left_gray.png b/img/clothes/upper/openshoulderlolitaclassic/left_gray.png
index bab5dfdd17bba03d8516534a8defc6e37e2a8e41..322f9a9621fc8f95c899c762fe63e9750b882bbe 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/left_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/left_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/right_cover_gray.png b/img/clothes/upper/openshoulderlolitaclassic/right_cover_gray.png
index 35cff496638024c081ec6e88d0621b0128b079a1..54573feb5827a51fbd4f822dd4b1151845880ed6 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/right_cover_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/right_cover_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/right_gray.png b/img/clothes/upper/openshoulderlolitaclassic/right_gray.png
index 0e6289ec7f50c6e0a633aff7f29c0ee5233cb3b2..1056916becd4c48a997e4e68fa84871260cde3bd 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/right_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/right_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/tattered_gray.png b/img/clothes/upper/openshoulderlolitaclassic/tattered_gray.png
index b31e43bdc6f465eac9878ad7b26e514008535149..cc1ab88f7b66f79faa3f05671c0cd3d0edb83af6 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/tattered_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/tattered_gray.png differ
diff --git a/img/clothes/upper/openshoulderlolitaclassic/torn_gray.png b/img/clothes/upper/openshoulderlolitaclassic/torn_gray.png
index 7dea8387fb94c7295e8aa7bd197c5d0652878a37..6f3e27a6441ce19947a36464a318ca64c71a7650 100644
Binary files a/img/clothes/upper/openshoulderlolitaclassic/torn_gray.png and b/img/clothes/upper/openshoulderlolitaclassic/torn_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/2_gray.png b/img/clothes/upper/openshoulderscrop/2_gray.png
index bd48149b1adbaecca06e98332baa9782c81ea0f4..32daa8f60d02f5ffb5d3e69b66f61fb775cca771 100644
Binary files a/img/clothes/upper/openshoulderscrop/2_gray.png and b/img/clothes/upper/openshoulderscrop/2_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/3_gray.png b/img/clothes/upper/openshoulderscrop/3_gray.png
index baceaf1a880f9efa27353684feeecb448e8530f3..f2614b1d36fa75c7b96626e0bb6f9c0dc7cd73ba 100644
Binary files a/img/clothes/upper/openshoulderscrop/3_gray.png and b/img/clothes/upper/openshoulderscrop/3_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/4_gray.png b/img/clothes/upper/openshoulderscrop/4_gray.png
index 7c90989a43dc639ae46d6c09c271484215d0ed0b..aaba0dc25a66c1a4a275c2ffa5cac198d1758831 100644
Binary files a/img/clothes/upper/openshoulderscrop/4_gray.png and b/img/clothes/upper/openshoulderscrop/4_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/5_gray.png b/img/clothes/upper/openshoulderscrop/5_gray.png
index 10d9e414bb7b8d35fd34cc2e33fc9c2b2b1dd33f..1c872a9085455dafff2ad4b3f559423c2f319fab 100644
Binary files a/img/clothes/upper/openshoulderscrop/5_gray.png and b/img/clothes/upper/openshoulderscrop/5_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/frayed_gray.png b/img/clothes/upper/openshoulderscrop/frayed_gray.png
index 41157586f9e89c84acad2e41b2bebeb99d6a18fa..2559faace9c7050b99d5cd7e9de0c9d62a7e826e 100644
Binary files a/img/clothes/upper/openshoulderscrop/frayed_gray.png and b/img/clothes/upper/openshoulderscrop/frayed_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/full_gray.png b/img/clothes/upper/openshoulderscrop/full_gray.png
index 41157586f9e89c84acad2e41b2bebeb99d6a18fa..2559faace9c7050b99d5cd7e9de0c9d62a7e826e 100644
Binary files a/img/clothes/upper/openshoulderscrop/full_gray.png and b/img/clothes/upper/openshoulderscrop/full_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/hold_gray.png b/img/clothes/upper/openshoulderscrop/hold_gray.png
index 0899c70ba3dbe446d69ae2a5bd878fb34c9816b6..7dd2a21924b3f29f5503d4681d3a48c6ae37afc6 100644
Binary files a/img/clothes/upper/openshoulderscrop/hold_gray.png and b/img/clothes/upper/openshoulderscrop/hold_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/left_cover_gray.png b/img/clothes/upper/openshoulderscrop/left_cover_gray.png
index 02c11f596d2d787a5c47daaa383dcc9688a42647..2b73354b038e29a039d50dccbb1a1f5d3a5098da 100644
Binary files a/img/clothes/upper/openshoulderscrop/left_cover_gray.png and b/img/clothes/upper/openshoulderscrop/left_cover_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/left_gray.png b/img/clothes/upper/openshoulderscrop/left_gray.png
index 51f56b407178a5b4b20c7711753a7446367ead1b..8cd798da80379b5182c2a9f176c67ec0c6ec0169 100644
Binary files a/img/clothes/upper/openshoulderscrop/left_gray.png and b/img/clothes/upper/openshoulderscrop/left_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/right_cover_gray.png b/img/clothes/upper/openshoulderscrop/right_cover_gray.png
index cd7ba7a1800ed3d31ca69613e3ee729c5ed5c9d4..2a5dbb926bb6716f2a7fd1ed94bd6374c5d70406 100644
Binary files a/img/clothes/upper/openshoulderscrop/right_cover_gray.png and b/img/clothes/upper/openshoulderscrop/right_cover_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/right_gray.png b/img/clothes/upper/openshoulderscrop/right_gray.png
index 2f03bfddf292f293c16b2e4281697280ccfb2e66..77bffcbaa96d45d7fdeb48c40e384b40c7fa5bbf 100644
Binary files a/img/clothes/upper/openshoulderscrop/right_gray.png and b/img/clothes/upper/openshoulderscrop/right_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/tattered_gray.png b/img/clothes/upper/openshoulderscrop/tattered_gray.png
index 41157586f9e89c84acad2e41b2bebeb99d6a18fa..2559faace9c7050b99d5cd7e9de0c9d62a7e826e 100644
Binary files a/img/clothes/upper/openshoulderscrop/tattered_gray.png and b/img/clothes/upper/openshoulderscrop/tattered_gray.png differ
diff --git a/img/clothes/upper/openshoulderscrop/torn_gray.png b/img/clothes/upper/openshoulderscrop/torn_gray.png
index 41157586f9e89c84acad2e41b2bebeb99d6a18fa..2559faace9c7050b99d5cd7e9de0c9d62a7e826e 100644
Binary files a/img/clothes/upper/openshoulderscrop/torn_gray.png and b/img/clothes/upper/openshoulderscrop/torn_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/2_gray.png b/img/clothes/upper/openshouldersweater/2_gray.png
index a8d4de9b911f4a759d55107d0e7a7d54996768de..baf5a375b40eb91580f8969b57b7a2f50776ba2c 100644
Binary files a/img/clothes/upper/openshouldersweater/2_gray.png and b/img/clothes/upper/openshouldersweater/2_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/3_gray.png b/img/clothes/upper/openshouldersweater/3_gray.png
index a11fecd8b3aff3728e5edcc37d851a5d4428799f..5d2393ac782d79fdac2e627aa345139c849b17d4 100644
Binary files a/img/clothes/upper/openshouldersweater/3_gray.png and b/img/clothes/upper/openshouldersweater/3_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/4_gray.png b/img/clothes/upper/openshouldersweater/4_gray.png
index cc17b1786a3092a8938515629ae5d12735ed7295..57e738dbe6107b844b46225a821ada9aa64daff1 100644
Binary files a/img/clothes/upper/openshouldersweater/4_gray.png and b/img/clothes/upper/openshouldersweater/4_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/5_gray.png b/img/clothes/upper/openshouldersweater/5_gray.png
index 069b7d8f0d8a5b6911d7d250fe7b0b272627ca25..49b5afb0470d68189bd01a41622e4ea5b1c3a4ed 100644
Binary files a/img/clothes/upper/openshouldersweater/5_gray.png and b/img/clothes/upper/openshouldersweater/5_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/6_gray.png b/img/clothes/upper/openshouldersweater/6_gray.png
index 3e9c2173f05f7bb4a48cee8c43eefe8983f0d125..7c950d5afffee171d446f59e8cdc280b675c87dc 100644
Binary files a/img/clothes/upper/openshouldersweater/6_gray.png and b/img/clothes/upper/openshouldersweater/6_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/frayed_gray.png b/img/clothes/upper/openshouldersweater/frayed_gray.png
index 5874de902077afb52bd63dece02a78032eb53c3c..9647c7b5b773816810a97a0d4e94efcc40b6fce1 100644
Binary files a/img/clothes/upper/openshouldersweater/frayed_gray.png and b/img/clothes/upper/openshouldersweater/frayed_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/full_gray.png b/img/clothes/upper/openshouldersweater/full_gray.png
index 5f86b1fbe0150f3f65f88e9464b8c18d1335863b..96460af775dde8c42689724e23dd0059b99655df 100644
Binary files a/img/clothes/upper/openshouldersweater/full_gray.png and b/img/clothes/upper/openshouldersweater/full_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/hold_gray.png b/img/clothes/upper/openshouldersweater/hold_gray.png
index a630ecddb954bf4e46f71f73e58b927d2320a417..dcb59f7302de4960ba8879ea6bcd89aa8f835cdd 100644
Binary files a/img/clothes/upper/openshouldersweater/hold_gray.png and b/img/clothes/upper/openshouldersweater/hold_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/left_cover_gray.png b/img/clothes/upper/openshouldersweater/left_cover_gray.png
index 45bf2b8127cccd0e03eb4b3734d1613b1d6c2f87..13018c4138624d46a32143665b9d4b37d5bc36bd 100644
Binary files a/img/clothes/upper/openshouldersweater/left_cover_gray.png and b/img/clothes/upper/openshouldersweater/left_cover_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/left_gray.png b/img/clothes/upper/openshouldersweater/left_gray.png
index 0dcff866e09e9da6b611cfc7c27a06485344f5f6..c7343334c352f7a7abd707f5754adbf17a32821d 100644
Binary files a/img/clothes/upper/openshouldersweater/left_gray.png and b/img/clothes/upper/openshouldersweater/left_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/right_cover_gray.png b/img/clothes/upper/openshouldersweater/right_cover_gray.png
index a6888a354a466cdd0d6d53169a684bb4c4e9cbc7..0efa324b856add796bcb6b2893d3f27b00b8f515 100644
Binary files a/img/clothes/upper/openshouldersweater/right_cover_gray.png and b/img/clothes/upper/openshouldersweater/right_cover_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/right_gray.png b/img/clothes/upper/openshouldersweater/right_gray.png
index 6da3922fac5e6c0fa9b77e5e09008bd4e7d6c626..2bccc116f547a5aebb057641780bf03e2ae2744f 100644
Binary files a/img/clothes/upper/openshouldersweater/right_gray.png and b/img/clothes/upper/openshouldersweater/right_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/tattered_gray.png b/img/clothes/upper/openshouldersweater/tattered_gray.png
index c523cfbca61963d641ceb82b10441138e707bd22..ca81b80dbee9d8bd00fe33c86d278f0e78821624 100644
Binary files a/img/clothes/upper/openshouldersweater/tattered_gray.png and b/img/clothes/upper/openshouldersweater/tattered_gray.png differ
diff --git a/img/clothes/upper/openshouldersweater/torn_gray.png b/img/clothes/upper/openshouldersweater/torn_gray.png
index d848078a4838c7e46330594921f7c44da0b08a20..2370081ff7f91d7bb2252959dc6e8fe7fd66ea32 100644
Binary files a/img/clothes/upper/openshouldersweater/torn_gray.png and b/img/clothes/upper/openshouldersweater/torn_gray.png differ
diff --git a/img/clothes/upper/overalls/acc_frayed_gray.png b/img/clothes/upper/overalls/acc_frayed_gray.png
index 900a90a9eec7be927b223d6e6d016a264cb8ffe5..e9980e1d7bb39f47bf57a1d5665752adc424430a 100644
Binary files a/img/clothes/upper/overalls/acc_frayed_gray.png and b/img/clothes/upper/overalls/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/overalls/acc_full_gray.png b/img/clothes/upper/overalls/acc_full_gray.png
index fe9993857a88f358e7d72982cbbe3605a5e9f750..e9fd2ef04fe103894cc9f4acbe6d22407fa7f8d6 100644
Binary files a/img/clothes/upper/overalls/acc_full_gray.png and b/img/clothes/upper/overalls/acc_full_gray.png differ
diff --git a/img/clothes/upper/overalls/acc_tattered_gray.png b/img/clothes/upper/overalls/acc_tattered_gray.png
index e885624853258ab710bf1fde3a27107dfabb909e..13564b830eafb722339286505a8864685050adbe 100644
Binary files a/img/clothes/upper/overalls/acc_tattered_gray.png and b/img/clothes/upper/overalls/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/overalls/acc_torn_gray.png b/img/clothes/upper/overalls/acc_torn_gray.png
index e885624853258ab710bf1fde3a27107dfabb909e..13564b830eafb722339286505a8864685050adbe 100644
Binary files a/img/clothes/upper/overalls/acc_torn_gray.png and b/img/clothes/upper/overalls/acc_torn_gray.png differ
diff --git a/img/clothes/upper/overalls/frayed.png b/img/clothes/upper/overalls/frayed.png
index 2909df2dfb6b7d54e72988cf1e25517a585859c6..69c96904fac0f9ec22f7895f8f9f3e818e49f4d2 100644
Binary files a/img/clothes/upper/overalls/frayed.png and b/img/clothes/upper/overalls/frayed.png differ
diff --git a/img/clothes/upper/overalls/frayed_gray.png b/img/clothes/upper/overalls/frayed_gray.png
index 8b45c3fe86ace82ce185e65be9ffa25c1b31f5d7..d8808e3b2432827a0f8815f4875b5b598f010ae1 100644
Binary files a/img/clothes/upper/overalls/frayed_gray.png and b/img/clothes/upper/overalls/frayed_gray.png differ
diff --git a/img/clothes/upper/overalls/full.png b/img/clothes/upper/overalls/full.png
index 56e196fc84d21d64ce8e013f0503c30f228cec16..c7583cc2663b760f2d3d6433b0909d68687af862 100644
Binary files a/img/clothes/upper/overalls/full.png and b/img/clothes/upper/overalls/full.png differ
diff --git a/img/clothes/upper/overalls/full_gray.png b/img/clothes/upper/overalls/full_gray.png
index 4f516a5b43b9b0e54fec8f052c64e694c207a6fe..8eb4c75cbfb2a1f0c3d4c321bdebcb3679a3d48d 100644
Binary files a/img/clothes/upper/overalls/full_gray.png and b/img/clothes/upper/overalls/full_gray.png differ
diff --git a/img/clothes/upper/overalls/tattered.png b/img/clothes/upper/overalls/tattered.png
index 7e8ad711e7eb8e6b462c29814c792d12322dd667..d30cfd72bab255dde3a7f1f45f08b2390fd2ce28 100644
Binary files a/img/clothes/upper/overalls/tattered.png and b/img/clothes/upper/overalls/tattered.png differ
diff --git a/img/clothes/upper/overalls/tattered_gray.png b/img/clothes/upper/overalls/tattered_gray.png
index f82cd30a37699baa6e985183b3bccf4c925e509b..32059b58dfb4c48d29706e72d7a29fbe6772b177 100644
Binary files a/img/clothes/upper/overalls/tattered_gray.png and b/img/clothes/upper/overalls/tattered_gray.png differ
diff --git a/img/clothes/upper/overalls/torn.png b/img/clothes/upper/overalls/torn.png
index df470ba2c9bc06caea59a8d4fb26d85554b1ab46..7a1fb8f5bd7d7f1fb7aeb0485ccc1e7032765739 100644
Binary files a/img/clothes/upper/overalls/torn.png and b/img/clothes/upper/overalls/torn.png differ
diff --git a/img/clothes/upper/overalls/torn_gray.png b/img/clothes/upper/overalls/torn_gray.png
index fcb899dab77c1dc75b2a88fce2651f09485aee85..18efa36be5616c28d9b3ef8b260375d4b7cbfe57 100644
Binary files a/img/clothes/upper/overalls/torn_gray.png and b/img/clothes/upper/overalls/torn_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/1_gray.png b/img/clothes/upper/oversizedbuttondown/1_gray.png
index d171412372ecc74be91fad8896717d39fa7a0bf5..3c98d78582ed469170617b0cbf34afe932a8a2c2 100644
Binary files a/img/clothes/upper/oversizedbuttondown/1_gray.png and b/img/clothes/upper/oversizedbuttondown/1_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/2_gray.png b/img/clothes/upper/oversizedbuttondown/2_gray.png
index 5ee2112eb933786f707da07e326520e1be5fef5f..5dac4b7aa266af95a3fd65368c4d9eca81e65b84 100644
Binary files a/img/clothes/upper/oversizedbuttondown/2_gray.png and b/img/clothes/upper/oversizedbuttondown/2_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/3_gray.png b/img/clothes/upper/oversizedbuttondown/3_gray.png
index 6bfc7c12827e6a483db6d5299afe1989c24b93ae..aafff68976da76ece272ec4dfdebd0c8c3cc3034 100644
Binary files a/img/clothes/upper/oversizedbuttondown/3_gray.png and b/img/clothes/upper/oversizedbuttondown/3_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/4_gray.png b/img/clothes/upper/oversizedbuttondown/4_gray.png
index 96ce81001f7efe3f6dd6f0e51899befa43ac0583..67e1f76fc5e05c0d095dfdb84529f32e99a01ddc 100644
Binary files a/img/clothes/upper/oversizedbuttondown/4_gray.png and b/img/clothes/upper/oversizedbuttondown/4_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/5_gray.png b/img/clothes/upper/oversizedbuttondown/5_gray.png
index 9a0f44d5bf894e6f67f89277aca43cdf83c5a281..f03ae750d45acad51d36e806b6491a113fc6d999 100644
Binary files a/img/clothes/upper/oversizedbuttondown/5_gray.png and b/img/clothes/upper/oversizedbuttondown/5_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/frayed_gray.png b/img/clothes/upper/oversizedbuttondown/frayed_gray.png
index 657f024493e7535d709c538f302f041828dd4dfc..5af2cfc2a721c31804c687654b0b58ba26d42b4d 100644
Binary files a/img/clothes/upper/oversizedbuttondown/frayed_gray.png and b/img/clothes/upper/oversizedbuttondown/frayed_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/full_gray.png b/img/clothes/upper/oversizedbuttondown/full_gray.png
index d8598a83d7b3c23898957380971b39b054cc68ed..303f04001395e6f094f8355845468e7e6de51174 100644
Binary files a/img/clothes/upper/oversizedbuttondown/full_gray.png and b/img/clothes/upper/oversizedbuttondown/full_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/hold_gray.png b/img/clothes/upper/oversizedbuttondown/hold_gray.png
index e27bbb6e33f6bfa1660f1adb8a4a329e59b10625..c0d69d7d7f7226005a104f3442ab17268df2e5c9 100644
Binary files a/img/clothes/upper/oversizedbuttondown/hold_gray.png and b/img/clothes/upper/oversizedbuttondown/hold_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/hold_rolled_gray.png b/img/clothes/upper/oversizedbuttondown/hold_rolled_gray.png
index d7e098b93948a6197eebfca4973a4973a58e43fc..bae7537333e42e98aef6e05faf9561db83191139 100644
Binary files a/img/clothes/upper/oversizedbuttondown/hold_rolled_gray.png and b/img/clothes/upper/oversizedbuttondown/hold_rolled_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/left_cover_gray.png b/img/clothes/upper/oversizedbuttondown/left_cover_gray.png
index bdc02d86a19df66e6e37c0ad5f715f444a97bc6b..45589f6dcfca3a81ef6caa28e184ae0f59e1efdd 100644
Binary files a/img/clothes/upper/oversizedbuttondown/left_cover_gray.png and b/img/clothes/upper/oversizedbuttondown/left_cover_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/left_cover_rolled_gray.png b/img/clothes/upper/oversizedbuttondown/left_cover_rolled_gray.png
index 9a55b8c5a159a33cbb3fa7c4317b4c217e84c9e1..d29bca5848c7957b25d413733d206984bfac6267 100644
Binary files a/img/clothes/upper/oversizedbuttondown/left_cover_rolled_gray.png and b/img/clothes/upper/oversizedbuttondown/left_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/left_gray.png b/img/clothes/upper/oversizedbuttondown/left_gray.png
index 838935e00256f040be7d649fa581055230802e80..1d72ec4fd81a4d43ddbb15586995c6bf2031b5ee 100644
Binary files a/img/clothes/upper/oversizedbuttondown/left_gray.png and b/img/clothes/upper/oversizedbuttondown/left_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/left_rolled_gray.png b/img/clothes/upper/oversizedbuttondown/left_rolled_gray.png
index 8457f17da47b8ac20ff5a605cfdc699eb33163f3..a6cb490c8caa43ebc941153f8a5178d31da57ac8 100644
Binary files a/img/clothes/upper/oversizedbuttondown/left_rolled_gray.png and b/img/clothes/upper/oversizedbuttondown/left_rolled_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/right_cover_gray.png b/img/clothes/upper/oversizedbuttondown/right_cover_gray.png
index 3eeb1ff53219314697393cb486dbcad27e7683b2..17253a9ed08b08687565c7f5e9b3c8cf14c740a2 100644
Binary files a/img/clothes/upper/oversizedbuttondown/right_cover_gray.png and b/img/clothes/upper/oversizedbuttondown/right_cover_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/right_cover_rolled_gray.png b/img/clothes/upper/oversizedbuttondown/right_cover_rolled_gray.png
index c7f6b6b4805ef586179db6430690fc3bab3c47c9..55e21b4169a77db749abecab2d0a285bbd7bb4c1 100644
Binary files a/img/clothes/upper/oversizedbuttondown/right_cover_rolled_gray.png and b/img/clothes/upper/oversizedbuttondown/right_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/right_gray.png b/img/clothes/upper/oversizedbuttondown/right_gray.png
index 584ae0c926be586ed780eec2afccdc79070ea97b..8e2ea6c3508707062090027f478ea3e8064b5e8e 100644
Binary files a/img/clothes/upper/oversizedbuttondown/right_gray.png and b/img/clothes/upper/oversizedbuttondown/right_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/right_rolled_gray.png b/img/clothes/upper/oversizedbuttondown/right_rolled_gray.png
index a31dfafaed13265a6f05c5b3c1af88a06df24cdc..f79bb7e85527e6e29ef2b8a8be58b1da5e5e76a6 100644
Binary files a/img/clothes/upper/oversizedbuttondown/right_rolled_gray.png and b/img/clothes/upper/oversizedbuttondown/right_rolled_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/tattered_gray.png b/img/clothes/upper/oversizedbuttondown/tattered_gray.png
index dec02862bab8dfe3dc082c18b93b34fa40984081..610a118bfd8f3f9c47a8863f144a446b14733b65 100644
Binary files a/img/clothes/upper/oversizedbuttondown/tattered_gray.png and b/img/clothes/upper/oversizedbuttondown/tattered_gray.png differ
diff --git a/img/clothes/upper/oversizedbuttondown/torn_gray.png b/img/clothes/upper/oversizedbuttondown/torn_gray.png
index c7f0ad2d1de236fc182df684d236eb855d5b9cb1..d85e0eacd9ccf9035344837752866d40d4473ac2 100644
Binary files a/img/clothes/upper/oversizedbuttondown/torn_gray.png and b/img/clothes/upper/oversizedbuttondown/torn_gray.png differ
diff --git a/img/clothes/upper/patient/frayed_gray.png b/img/clothes/upper/patient/frayed_gray.png
index b1e5f17c56cee5f73b7e959d9c0ffb05157e28e2..c277cc7c58e288ef618f3e025821c6c22877829b 100644
Binary files a/img/clothes/upper/patient/frayed_gray.png and b/img/clothes/upper/patient/frayed_gray.png differ
diff --git a/img/clothes/upper/patient/full_gray.png b/img/clothes/upper/patient/full_gray.png
index 181d71030b63f6644df7c36dae4895accda71bdc..7e963ff2e0ace32d5b12a08bdf94304f6e77be74 100644
Binary files a/img/clothes/upper/patient/full_gray.png and b/img/clothes/upper/patient/full_gray.png differ
diff --git a/img/clothes/upper/patient/hold_gray.png b/img/clothes/upper/patient/hold_gray.png
index 5c81e884425ed53ee6408b87415a68a3ca1889ae..514758c6f9fc6b400c9e5c0e0c636e52cee021b7 100644
Binary files a/img/clothes/upper/patient/hold_gray.png and b/img/clothes/upper/patient/hold_gray.png differ
diff --git a/img/clothes/upper/patient/left_cover_gray.png b/img/clothes/upper/patient/left_cover_gray.png
index 89d609b3c1895504731344091113b3c835b1124a..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/patient/left_cover_gray.png and b/img/clothes/upper/patient/left_cover_gray.png differ
diff --git a/img/clothes/upper/patient/left_gray.png b/img/clothes/upper/patient/left_gray.png
index 7d97df60394450344a1d846ae29b9d5c7843267a..b9f91923cb66a8520646a289364368a5644d3c3b 100644
Binary files a/img/clothes/upper/patient/left_gray.png and b/img/clothes/upper/patient/left_gray.png differ
diff --git a/img/clothes/upper/patient/right_cover_gray.png b/img/clothes/upper/patient/right_cover_gray.png
index a271276bdd9e537f892e1f8174dbee9cbcdf3977..00068fe48212c28bc3cc93bd872d1ed493634dae 100644
Binary files a/img/clothes/upper/patient/right_cover_gray.png and b/img/clothes/upper/patient/right_cover_gray.png differ
diff --git a/img/clothes/upper/patient/right_gray.png b/img/clothes/upper/patient/right_gray.png
index efc24000d1d25210047a2e4cde678c5bbbcd66c7..955218a57dfd3ef581c6bff31e049c56eb3f98a6 100644
Binary files a/img/clothes/upper/patient/right_gray.png and b/img/clothes/upper/patient/right_gray.png differ
diff --git a/img/clothes/upper/patient/tattered_gray.png b/img/clothes/upper/patient/tattered_gray.png
index 6d4baea45a355fef147148cf2ba742fb9adc6744..82331f7428eaf7142bb115387e276b12f4687924 100644
Binary files a/img/clothes/upper/patient/tattered_gray.png and b/img/clothes/upper/patient/tattered_gray.png differ
diff --git a/img/clothes/upper/patient/torn_gray.png b/img/clothes/upper/patient/torn_gray.png
index 9d0dd877e54011858db61373c1ea88d2fb050b9a..00eeaef8d2396fdba98de253594b4aca0d578663 100644
Binary files a/img/clothes/upper/patient/torn_gray.png and b/img/clothes/upper/patient/torn_gray.png differ
diff --git a/img/clothes/upper/peacoat/1_acc_gray.png b/img/clothes/upper/peacoat/1_acc_gray.png
index f2b463901ba9eff7e2bd8c8930ccb29f940937f4..5d1cedcf0e0837e03a624da4e957b517bbbf5753 100644
Binary files a/img/clothes/upper/peacoat/1_acc_gray.png and b/img/clothes/upper/peacoat/1_acc_gray.png differ
diff --git a/img/clothes/upper/peacoat/1_gray.png b/img/clothes/upper/peacoat/1_gray.png
index 96de696e0185840f904a5c0a1d5287f61a5408e4..ca36bd269bb0294979511b33d4333d3e2c370a20 100644
Binary files a/img/clothes/upper/peacoat/1_gray.png and b/img/clothes/upper/peacoat/1_gray.png differ
diff --git a/img/clothes/upper/peacoat/3_acc_gray.png b/img/clothes/upper/peacoat/3_acc_gray.png
index 22fc2c718b73fa34a1706db37f40c982a6208bc7..5d1cedcf0e0837e03a624da4e957b517bbbf5753 100644
Binary files a/img/clothes/upper/peacoat/3_acc_gray.png and b/img/clothes/upper/peacoat/3_acc_gray.png differ
diff --git a/img/clothes/upper/peacoat/3_gray.png b/img/clothes/upper/peacoat/3_gray.png
index b71fd6bed078ca642eb85c98aebd190eb65d3eb4..f2268c4f4ef946fd047dcaca268b7a9746578e2e 100644
Binary files a/img/clothes/upper/peacoat/3_gray.png and b/img/clothes/upper/peacoat/3_gray.png differ
diff --git a/img/clothes/upper/peacoat/5_acc_gray.png b/img/clothes/upper/peacoat/5_acc_gray.png
index abf5777a36d3ae361f2f7ba9e7fffdd2d6d86d61..eafd7e6064a1f6e2401f91b681e343fcff4bfead 100644
Binary files a/img/clothes/upper/peacoat/5_acc_gray.png and b/img/clothes/upper/peacoat/5_acc_gray.png differ
diff --git a/img/clothes/upper/peacoat/5_gray.png b/img/clothes/upper/peacoat/5_gray.png
index 7bd3783acacd1e73c99fa94ac506595fc160c31a..e03cec9719ff3edb5ba6ed91e4b0de3be444c75f 100644
Binary files a/img/clothes/upper/peacoat/5_gray.png and b/img/clothes/upper/peacoat/5_gray.png differ
diff --git a/img/clothes/upper/peacoat/acc_frayed_gray.png b/img/clothes/upper/peacoat/acc_frayed_gray.png
index 363f61399823789242851f03ff639dade1190b94..f8379a1e537a173c18562a90de22ba4967944dc8 100644
Binary files a/img/clothes/upper/peacoat/acc_frayed_gray.png and b/img/clothes/upper/peacoat/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/peacoat/acc_full_gray.png b/img/clothes/upper/peacoat/acc_full_gray.png
index 185d8d36095ef1c19913401bb1142123fcadc04a..f8379a1e537a173c18562a90de22ba4967944dc8 100644
Binary files a/img/clothes/upper/peacoat/acc_full_gray.png and b/img/clothes/upper/peacoat/acc_full_gray.png differ
diff --git a/img/clothes/upper/peacoat/acc_tattered_gray.png b/img/clothes/upper/peacoat/acc_tattered_gray.png
index aa29270518c3055d03793adbf3ebb770252c4cad..53a8a34d5a9d13b8a0c406f199d9f0db1e7fe7f1 100644
Binary files a/img/clothes/upper/peacoat/acc_tattered_gray.png and b/img/clothes/upper/peacoat/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/peacoat/acc_torn_gray.png b/img/clothes/upper/peacoat/acc_torn_gray.png
index da6f6fa25ad112f8b242d174cc7ede70a88619c0..53a8a34d5a9d13b8a0c406f199d9f0db1e7fe7f1 100644
Binary files a/img/clothes/upper/peacoat/acc_torn_gray.png and b/img/clothes/upper/peacoat/acc_torn_gray.png differ
diff --git a/img/clothes/upper/peacoat/frayed_gray.png b/img/clothes/upper/peacoat/frayed_gray.png
index f5cf10d654a5427aed240b11a1e9c940da637906..1554e052c2b915356fd62579f00675821c59f56f 100644
Binary files a/img/clothes/upper/peacoat/frayed_gray.png and b/img/clothes/upper/peacoat/frayed_gray.png differ
diff --git a/img/clothes/upper/peacoat/full_gray.png b/img/clothes/upper/peacoat/full_gray.png
index 1f5d44a0b4de2392d287c4875cff05ccec390fec..160be22c2e3a27168282cbc33056ac4547d40163 100644
Binary files a/img/clothes/upper/peacoat/full_gray.png and b/img/clothes/upper/peacoat/full_gray.png differ
diff --git a/img/clothes/upper/peacoat/hold_gray.png b/img/clothes/upper/peacoat/hold_gray.png
index dd1e3778af0f9b0803b95459b86bd87cd021df72..89d833415fc9748386273354012bd593046e1ff4 100644
Binary files a/img/clothes/upper/peacoat/hold_gray.png and b/img/clothes/upper/peacoat/hold_gray.png differ
diff --git a/img/clothes/upper/peacoat/left_cover_gray.png b/img/clothes/upper/peacoat/left_cover_gray.png
index 5508588a31b1c0a157c4a6f594f80685adc319b5..4535bf51bf0167a105dcdec058658bf6b84c5520 100644
Binary files a/img/clothes/upper/peacoat/left_cover_gray.png and b/img/clothes/upper/peacoat/left_cover_gray.png differ
diff --git a/img/clothes/upper/peacoat/left_gray.png b/img/clothes/upper/peacoat/left_gray.png
index 813f4a1035c3788e4c21d751df727f8b01615582..3e118e5a85d4c5b09cb03317e8c3e02e5415f190 100644
Binary files a/img/clothes/upper/peacoat/left_gray.png and b/img/clothes/upper/peacoat/left_gray.png differ
diff --git a/img/clothes/upper/peacoat/right_cover_gray.png b/img/clothes/upper/peacoat/right_cover_gray.png
index f9420444cc701ab13bae555cbe2bf3341e1d2672..bce6667f13b4c55d7dc7d1fdd4eb5409f27d6700 100644
Binary files a/img/clothes/upper/peacoat/right_cover_gray.png and b/img/clothes/upper/peacoat/right_cover_gray.png differ
diff --git a/img/clothes/upper/peacoat/right_gray.png b/img/clothes/upper/peacoat/right_gray.png
index 9486ed440bf8cd4fc7515fb2f1ec62c438023411..b8ae428b0d3e11ae409ac7b364bbc7f425135891 100644
Binary files a/img/clothes/upper/peacoat/right_gray.png and b/img/clothes/upper/peacoat/right_gray.png differ
diff --git a/img/clothes/upper/peacoat/tattered_gray.png b/img/clothes/upper/peacoat/tattered_gray.png
index 24cb28066e8b9eb36a8696013c97e25436291498..64b3cd4b3f4a9aa47f87cb97b5dcbdcb9fcb0186 100644
Binary files a/img/clothes/upper/peacoat/tattered_gray.png and b/img/clothes/upper/peacoat/tattered_gray.png differ
diff --git a/img/clothes/upper/peacoat/torn_gray.png b/img/clothes/upper/peacoat/torn_gray.png
index 3800b2280df0bbe2ab023791fa3d06546da60275..0a2d673fecc7040214d460a4f3ec1eb6cfca7cae 100644
Binary files a/img/clothes/upper/peacoat/torn_gray.png and b/img/clothes/upper/peacoat/torn_gray.png differ
diff --git a/img/clothes/upper/pinknurse/1.png b/img/clothes/upper/pinknurse/1.png
index 64189f8447b2c625d9024b999e43d5334f604332..deb706135c085e3a0129b957a49f2799f8876709 100644
Binary files a/img/clothes/upper/pinknurse/1.png and b/img/clothes/upper/pinknurse/1.png differ
diff --git a/img/clothes/upper/pinknurse/2.png b/img/clothes/upper/pinknurse/2.png
index e06e6c617314e2b705c14222e24fa7e6fafbb8b3..2b5861229f209d7dd09b828146f04e6a0d5c4a54 100644
Binary files a/img/clothes/upper/pinknurse/2.png and b/img/clothes/upper/pinknurse/2.png differ
diff --git a/img/clothes/upper/pinknurse/3.png b/img/clothes/upper/pinknurse/3.png
index 8d2a7e57453083d119970a88c5db8e34b862f201..1454f34b9da8da4fea5c4f862c894da2d7f65d9a 100644
Binary files a/img/clothes/upper/pinknurse/3.png and b/img/clothes/upper/pinknurse/3.png differ
diff --git a/img/clothes/upper/pinknurse/4.png b/img/clothes/upper/pinknurse/4.png
index 66d061e204e216e1d04ea50ff5218fe3f3318eb5..e33b981d52d51edb095caf815e5c2e75e31d45f7 100644
Binary files a/img/clothes/upper/pinknurse/4.png and b/img/clothes/upper/pinknurse/4.png differ
diff --git a/img/clothes/upper/pinknurse/5.png b/img/clothes/upper/pinknurse/5.png
index ae16349c9315c13f57bc7e1a749b48db12b8ef23..67d69ef248980e2573e46af2eb33a67259b7fe87 100644
Binary files a/img/clothes/upper/pinknurse/5.png and b/img/clothes/upper/pinknurse/5.png differ
diff --git a/img/clothes/upper/pinknurse/frayed.png b/img/clothes/upper/pinknurse/frayed.png
index 02c5abdfc0f9a48407ac19db7f295b912086e18b..098e265c1fc8c420357da0a93db01b63507658cd 100644
Binary files a/img/clothes/upper/pinknurse/frayed.png and b/img/clothes/upper/pinknurse/frayed.png differ
diff --git a/img/clothes/upper/pinknurse/full.png b/img/clothes/upper/pinknurse/full.png
index 02c5abdfc0f9a48407ac19db7f295b912086e18b..098e265c1fc8c420357da0a93db01b63507658cd 100644
Binary files a/img/clothes/upper/pinknurse/full.png and b/img/clothes/upper/pinknurse/full.png differ
diff --git a/img/clothes/upper/pinknurse/hold.png b/img/clothes/upper/pinknurse/hold.png
index e94a783c1ec478d9421338fb0e4312597bf6a9c5..ee195b4b26b489637c2d4d5c8091469ab1dae8b6 100644
Binary files a/img/clothes/upper/pinknurse/hold.png and b/img/clothes/upper/pinknurse/hold.png differ
diff --git a/img/clothes/upper/pinknurse/left.png b/img/clothes/upper/pinknurse/left.png
index 6acc83276dd53fec7196a94b911bde0727255065..36a3077de8165aa547dca531f45a2c290bd57d81 100644
Binary files a/img/clothes/upper/pinknurse/left.png and b/img/clothes/upper/pinknurse/left.png differ
diff --git a/img/clothes/upper/pinknurse/left_cover.png b/img/clothes/upper/pinknurse/left_cover.png
index fad1839455e534308c1bec130f619b19a106acbe..cc12d62a2bd4c80b7d87f35a385792db1ec0f661 100644
Binary files a/img/clothes/upper/pinknurse/left_cover.png and b/img/clothes/upper/pinknurse/left_cover.png differ
diff --git a/img/clothes/upper/pinknurse/right.png b/img/clothes/upper/pinknurse/right.png
index c655a67d86b76c4a31f8b42c422b9ddb119ad682..3988ea7b42568116c658e15e2894ffc206931d88 100644
Binary files a/img/clothes/upper/pinknurse/right.png and b/img/clothes/upper/pinknurse/right.png differ
diff --git a/img/clothes/upper/pinknurse/right_cover.png b/img/clothes/upper/pinknurse/right_cover.png
index 2b5c885db944cecf77cf22970844f3c5918a0efa..795e3a67b2c63f95bfd2779330bbf72715105f1a 100644
Binary files a/img/clothes/upper/pinknurse/right_cover.png and b/img/clothes/upper/pinknurse/right_cover.png differ
diff --git a/img/clothes/upper/pinknurse/tattered.png b/img/clothes/upper/pinknurse/tattered.png
index 02c5abdfc0f9a48407ac19db7f295b912086e18b..098e265c1fc8c420357da0a93db01b63507658cd 100644
Binary files a/img/clothes/upper/pinknurse/tattered.png and b/img/clothes/upper/pinknurse/tattered.png differ
diff --git a/img/clothes/upper/pinknurse/torn.png b/img/clothes/upper/pinknurse/torn.png
index 02c5abdfc0f9a48407ac19db7f295b912086e18b..098e265c1fc8c420357da0a93db01b63507658cd 100644
Binary files a/img/clothes/upper/pinknurse/torn.png and b/img/clothes/upper/pinknurse/torn.png differ
diff --git a/img/clothes/upper/pinksweater/frayed.png b/img/clothes/upper/pinksweater/frayed.png
index 39ac1a7086c1561c10ba19f1a203de8d83321324..43923a0a7fc8a8814879b6812d4ec20dfe0a84bb 100644
Binary files a/img/clothes/upper/pinksweater/frayed.png and b/img/clothes/upper/pinksweater/frayed.png differ
diff --git a/img/clothes/upper/pinksweater/full.png b/img/clothes/upper/pinksweater/full.png
index 39ac1a7086c1561c10ba19f1a203de8d83321324..43923a0a7fc8a8814879b6812d4ec20dfe0a84bb 100644
Binary files a/img/clothes/upper/pinksweater/full.png and b/img/clothes/upper/pinksweater/full.png differ
diff --git a/img/clothes/upper/pinksweater/hold.png b/img/clothes/upper/pinksweater/hold.png
index fd1aaed271c6bab305f946eb976f3363266fb11b..4fbc4d0da8fe671c1883af9a84fcf2533e05b04e 100644
Binary files a/img/clothes/upper/pinksweater/hold.png and b/img/clothes/upper/pinksweater/hold.png differ
diff --git a/img/clothes/upper/pinksweater/left.png b/img/clothes/upper/pinksweater/left.png
index da22525edf62e27a25802096e9731a0d3299acd0..dd39f5357508453871f27a32645f1925dfe45b6d 100644
Binary files a/img/clothes/upper/pinksweater/left.png and b/img/clothes/upper/pinksweater/left.png differ
diff --git a/img/clothes/upper/pinksweater/left_cover.png b/img/clothes/upper/pinksweater/left_cover.png
index d1800b76ce47119970af59238ef1d62e0ae3ecb0..4d162ab4ac4ebcc5e4a36a85fe6eb2ee8f8b4503 100644
Binary files a/img/clothes/upper/pinksweater/left_cover.png and b/img/clothes/upper/pinksweater/left_cover.png differ
diff --git a/img/clothes/upper/pinksweater/right.png b/img/clothes/upper/pinksweater/right.png
index ee31b6ce09ef2f492f97dad94e1d18ada9a9732b..10f16b1b45e323bf9d29570fb2bcfebcc5780587 100644
Binary files a/img/clothes/upper/pinksweater/right.png and b/img/clothes/upper/pinksweater/right.png differ
diff --git a/img/clothes/upper/pinksweater/right_cover.png b/img/clothes/upper/pinksweater/right_cover.png
index 37d624a315e198e21a312bbbf0f58dcddf714fa7..b1c5dd8bb436a71293ae7e835fb1c9de38900fc8 100644
Binary files a/img/clothes/upper/pinksweater/right_cover.png and b/img/clothes/upper/pinksweater/right_cover.png differ
diff --git a/img/clothes/upper/pinksweater/tattered.png b/img/clothes/upper/pinksweater/tattered.png
index 39ac1a7086c1561c10ba19f1a203de8d83321324..43923a0a7fc8a8814879b6812d4ec20dfe0a84bb 100644
Binary files a/img/clothes/upper/pinksweater/tattered.png and b/img/clothes/upper/pinksweater/tattered.png differ
diff --git a/img/clothes/upper/pinksweater/torn.png b/img/clothes/upper/pinksweater/torn.png
index 39ac1a7086c1561c10ba19f1a203de8d83321324..43923a0a7fc8a8814879b6812d4ec20dfe0a84bb 100644
Binary files a/img/clothes/upper/pinksweater/torn.png and b/img/clothes/upper/pinksweater/torn.png differ
diff --git a/img/clothes/upper/pinksweaterlarge/frayed.png b/img/clothes/upper/pinksweaterlarge/frayed.png
index a831f8a12c1b1c0e6b4cdb65350cb89889ec960f..8a3534337942790f8c63dd3ca9b3dcaeb52e414a 100644
Binary files a/img/clothes/upper/pinksweaterlarge/frayed.png and b/img/clothes/upper/pinksweaterlarge/frayed.png differ
diff --git a/img/clothes/upper/pinksweaterlarge/full.png b/img/clothes/upper/pinksweaterlarge/full.png
index a831f8a12c1b1c0e6b4cdb65350cb89889ec960f..8a3534337942790f8c63dd3ca9b3dcaeb52e414a 100644
Binary files a/img/clothes/upper/pinksweaterlarge/full.png and b/img/clothes/upper/pinksweaterlarge/full.png differ
diff --git a/img/clothes/upper/pinksweaterlarge/hold.png b/img/clothes/upper/pinksweaterlarge/hold.png
index fd1aaed271c6bab305f946eb976f3363266fb11b..4fbc4d0da8fe671c1883af9a84fcf2533e05b04e 100644
Binary files a/img/clothes/upper/pinksweaterlarge/hold.png and b/img/clothes/upper/pinksweaterlarge/hold.png differ
diff --git a/img/clothes/upper/pinksweaterlarge/left.png b/img/clothes/upper/pinksweaterlarge/left.png
index da22525edf62e27a25802096e9731a0d3299acd0..dd39f5357508453871f27a32645f1925dfe45b6d 100644
Binary files a/img/clothes/upper/pinksweaterlarge/left.png and b/img/clothes/upper/pinksweaterlarge/left.png differ
diff --git a/img/clothes/upper/pinksweaterlarge/left_cover.png b/img/clothes/upper/pinksweaterlarge/left_cover.png
index d1800b76ce47119970af59238ef1d62e0ae3ecb0..4d162ab4ac4ebcc5e4a36a85fe6eb2ee8f8b4503 100644
Binary files a/img/clothes/upper/pinksweaterlarge/left_cover.png and b/img/clothes/upper/pinksweaterlarge/left_cover.png differ
diff --git a/img/clothes/upper/pinksweaterlarge/right.png b/img/clothes/upper/pinksweaterlarge/right.png
index ee31b6ce09ef2f492f97dad94e1d18ada9a9732b..10f16b1b45e323bf9d29570fb2bcfebcc5780587 100644
Binary files a/img/clothes/upper/pinksweaterlarge/right.png and b/img/clothes/upper/pinksweaterlarge/right.png differ
diff --git a/img/clothes/upper/pinksweaterlarge/right_cover.png b/img/clothes/upper/pinksweaterlarge/right_cover.png
index 37d624a315e198e21a312bbbf0f58dcddf714fa7..b1c5dd8bb436a71293ae7e835fb1c9de38900fc8 100644
Binary files a/img/clothes/upper/pinksweaterlarge/right_cover.png and b/img/clothes/upper/pinksweaterlarge/right_cover.png differ
diff --git a/img/clothes/upper/pinksweaterlarge/tattered.png b/img/clothes/upper/pinksweaterlarge/tattered.png
index a831f8a12c1b1c0e6b4cdb65350cb89889ec960f..8a3534337942790f8c63dd3ca9b3dcaeb52e414a 100644
Binary files a/img/clothes/upper/pinksweaterlarge/tattered.png and b/img/clothes/upper/pinksweaterlarge/tattered.png differ
diff --git a/img/clothes/upper/pinksweaterlarge/torn.png b/img/clothes/upper/pinksweaterlarge/torn.png
index a831f8a12c1b1c0e6b4cdb65350cb89889ec960f..8a3534337942790f8c63dd3ca9b3dcaeb52e414a 100644
Binary files a/img/clothes/upper/pinksweaterlarge/torn.png and b/img/clothes/upper/pinksweaterlarge/torn.png differ
diff --git a/img/clothes/upper/pjs/frayed_gray.png b/img/clothes/upper/pjs/frayed_gray.png
index 5cb2e7dd7949da8bbe89c47a745b9869dcf2569d..7a461f442323449508c0bad7467e9bca9cebf97c 100644
Binary files a/img/clothes/upper/pjs/frayed_gray.png and b/img/clothes/upper/pjs/frayed_gray.png differ
diff --git a/img/clothes/upper/pjs/full_gray.png b/img/clothes/upper/pjs/full_gray.png
index 8a42167849c20c1a5ac223fbe929f78400bc4d16..6388446103f31ed44d1b0b017a08035933810e5e 100644
Binary files a/img/clothes/upper/pjs/full_gray.png and b/img/clothes/upper/pjs/full_gray.png differ
diff --git a/img/clothes/upper/pjs/hold_gray.png b/img/clothes/upper/pjs/hold_gray.png
index 808d3756b64e723eb443d66739805636d4ef1eb5..c465120acc3b513652b2a88806f47ffdc43e9fcc 100644
Binary files a/img/clothes/upper/pjs/hold_gray.png and b/img/clothes/upper/pjs/hold_gray.png differ
diff --git a/img/clothes/upper/pjs/left_cover_gray.png b/img/clothes/upper/pjs/left_cover_gray.png
index 17c50466284e70eb5c518bf32d14b9b0f717908e..8ba385e85b81d8317727de2964f3f5d2aa47bb1d 100644
Binary files a/img/clothes/upper/pjs/left_cover_gray.png and b/img/clothes/upper/pjs/left_cover_gray.png differ
diff --git a/img/clothes/upper/pjs/left_gray.png b/img/clothes/upper/pjs/left_gray.png
index d11139a9ffedd7dc3ec2f87768f4a554b53073a6..ba38e68c95675e40736ec20343af9e7d20f83bdb 100644
Binary files a/img/clothes/upper/pjs/left_gray.png and b/img/clothes/upper/pjs/left_gray.png differ
diff --git a/img/clothes/upper/pjs/right_cover_gray.png b/img/clothes/upper/pjs/right_cover_gray.png
index 76752836c5d8aa78a6e2b9987e98cb585b4493e0..035efd50b2570d428ffcc57af62d2f1535878697 100644
Binary files a/img/clothes/upper/pjs/right_cover_gray.png and b/img/clothes/upper/pjs/right_cover_gray.png differ
diff --git a/img/clothes/upper/pjs/right_gray.png b/img/clothes/upper/pjs/right_gray.png
index d368537f3cc7da097037951b0c91513ae59dad38..16a29c1f42f005ce9e181ae887949644af331779 100644
Binary files a/img/clothes/upper/pjs/right_gray.png and b/img/clothes/upper/pjs/right_gray.png differ
diff --git a/img/clothes/upper/pjs/tattered_gray.png b/img/clothes/upper/pjs/tattered_gray.png
index 15d44c299baa59bc6ea8cf3c28c1b77c60dd1b2a..000c1189ec1ec1546bacea05af5e7212dfc7d05d 100644
Binary files a/img/clothes/upper/pjs/tattered_gray.png and b/img/clothes/upper/pjs/tattered_gray.png differ
diff --git a/img/clothes/upper/pjs/torn_gray.png b/img/clothes/upper/pjs/torn_gray.png
index d03da6f0fee4e87095e681ee4231a890872db3b3..d2b79f7ce4c1851cbea14ddcc871349c4ffd4b93 100644
Binary files a/img/clothes/upper/pjs/torn_gray.png and b/img/clothes/upper/pjs/torn_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/4_gray.png b/img/clothes/upper/pjsmoon/4_gray.png
index 236301bf5f6bfec2e12f93b386a713fb19a99654..44f8ce4725533c1bf560b67db7b09d894d40e69f 100644
Binary files a/img/clothes/upper/pjsmoon/4_gray.png and b/img/clothes/upper/pjsmoon/4_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/5_gray.png b/img/clothes/upper/pjsmoon/5_gray.png
index d83f9f7971dd8b06073acc85b649414edbb09254..f48c668f6695fe1dbb5f7819bb47da2ecebef075 100644
Binary files a/img/clothes/upper/pjsmoon/5_gray.png and b/img/clothes/upper/pjsmoon/5_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/6_gray.png b/img/clothes/upper/pjsmoon/6_gray.png
index 95c9ba548b023db23cdc265f6d710630ff17642d..44009c0c7655f3b365966779ab218ef02e2898f6 100644
Binary files a/img/clothes/upper/pjsmoon/6_gray.png and b/img/clothes/upper/pjsmoon/6_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/acc.png b/img/clothes/upper/pjsmoon/acc.png
index 93c2a8c59f5fefd9a59f992c57fe9329804ed16c..83acea00a781148eae669388cc3de295606f6030 100644
Binary files a/img/clothes/upper/pjsmoon/acc.png and b/img/clothes/upper/pjsmoon/acc.png differ
diff --git a/img/clothes/upper/pjsmoon/frayed_gray.png b/img/clothes/upper/pjsmoon/frayed_gray.png
index 2ef5745f588e29bca6967f4dc88f43d9ef55e3dd..f1817ad032a8e26a88b1efdcb5530fa2ba8adfb3 100644
Binary files a/img/clothes/upper/pjsmoon/frayed_gray.png and b/img/clothes/upper/pjsmoon/frayed_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/full_gray.png b/img/clothes/upper/pjsmoon/full_gray.png
index 84a6ca91b578da01fd045a998130d666219f168b..8a86fb2b2e9c361ac69c0dabf0a5aa44ce2161c4 100644
Binary files a/img/clothes/upper/pjsmoon/full_gray.png and b/img/clothes/upper/pjsmoon/full_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/hold_gray.png b/img/clothes/upper/pjsmoon/hold_gray.png
index f2e1105ef791d50df5768809d77fbaf33b54545c..e79b0b42b09c97982655fd2e357b065f6561927b 100644
Binary files a/img/clothes/upper/pjsmoon/hold_gray.png and b/img/clothes/upper/pjsmoon/hold_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/left_cover_gray.png b/img/clothes/upper/pjsmoon/left_cover_gray.png
index 3c51b8453398cbaff5b34cf1221fb093c947629a..7bedff54a908bf465a42013d5ccf29741f68a228 100644
Binary files a/img/clothes/upper/pjsmoon/left_cover_gray.png and b/img/clothes/upper/pjsmoon/left_cover_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/left_gray.png b/img/clothes/upper/pjsmoon/left_gray.png
index aa5a808b3f31e779eff21c8a0ae683553196d2d6..a5649f45a9522437c02701388bb383855571658e 100644
Binary files a/img/clothes/upper/pjsmoon/left_gray.png and b/img/clothes/upper/pjsmoon/left_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/right_cover_gray.png b/img/clothes/upper/pjsmoon/right_cover_gray.png
index 9cd395b077cb4c89c7f6f9f58a6816cea7daf215..eace031f603e59c65de0b2ef1cf7c2302057ad57 100644
Binary files a/img/clothes/upper/pjsmoon/right_cover_gray.png and b/img/clothes/upper/pjsmoon/right_cover_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/right_gray.png b/img/clothes/upper/pjsmoon/right_gray.png
index 62261014c22fe33900275f4af40eae94adb25b70..ab79068378800925b5143b83409b354c20690446 100644
Binary files a/img/clothes/upper/pjsmoon/right_gray.png and b/img/clothes/upper/pjsmoon/right_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/tattered_gray.png b/img/clothes/upper/pjsmoon/tattered_gray.png
index 4763415ab9bca7a8ebe8c0cc24741b795421d836..14b61233a7d280b2f46d4d3f94ad726602e6bd1b 100644
Binary files a/img/clothes/upper/pjsmoon/tattered_gray.png and b/img/clothes/upper/pjsmoon/tattered_gray.png differ
diff --git a/img/clothes/upper/pjsmoon/torn_gray.png b/img/clothes/upper/pjsmoon/torn_gray.png
index d55491b082445b32381eec491e7d4524695ab19a..6cdaa3860a54e86f50f3c3edfeffee27b2f1342d 100644
Binary files a/img/clothes/upper/pjsmoon/torn_gray.png and b/img/clothes/upper/pjsmoon/torn_gray.png differ
diff --git a/img/clothes/upper/pjsstar/4_gray.png b/img/clothes/upper/pjsstar/4_gray.png
index 236301bf5f6bfec2e12f93b386a713fb19a99654..44f8ce4725533c1bf560b67db7b09d894d40e69f 100644
Binary files a/img/clothes/upper/pjsstar/4_gray.png and b/img/clothes/upper/pjsstar/4_gray.png differ
diff --git a/img/clothes/upper/pjsstar/5_gray.png b/img/clothes/upper/pjsstar/5_gray.png
index d83f9f7971dd8b06073acc85b649414edbb09254..f48c668f6695fe1dbb5f7819bb47da2ecebef075 100644
Binary files a/img/clothes/upper/pjsstar/5_gray.png and b/img/clothes/upper/pjsstar/5_gray.png differ
diff --git a/img/clothes/upper/pjsstar/6_gray.png b/img/clothes/upper/pjsstar/6_gray.png
index 95c9ba548b023db23cdc265f6d710630ff17642d..44009c0c7655f3b365966779ab218ef02e2898f6 100644
Binary files a/img/clothes/upper/pjsstar/6_gray.png and b/img/clothes/upper/pjsstar/6_gray.png differ
diff --git a/img/clothes/upper/pjsstar/acc.png b/img/clothes/upper/pjsstar/acc.png
index e46ec10871be9a8e5071a3120d7965c8db215e9c..e3d3ccb5b4e8857e077c11b7ff453394757dbf6d 100644
Binary files a/img/clothes/upper/pjsstar/acc.png and b/img/clothes/upper/pjsstar/acc.png differ
diff --git a/img/clothes/upper/pjsstar/frayed_gray.png b/img/clothes/upper/pjsstar/frayed_gray.png
index 6338e32b0ccab12d6cf5d1acffa6dcbbc403250c..6ea4323a245c823d2442fea460e46e5000164116 100644
Binary files a/img/clothes/upper/pjsstar/frayed_gray.png and b/img/clothes/upper/pjsstar/frayed_gray.png differ
diff --git a/img/clothes/upper/pjsstar/full_gray.png b/img/clothes/upper/pjsstar/full_gray.png
index a349a0936813035a89b94789400fa8a33150b49d..dd62003fb75c3863d1741ca5c5a4dd26a5b2acbd 100644
Binary files a/img/clothes/upper/pjsstar/full_gray.png and b/img/clothes/upper/pjsstar/full_gray.png differ
diff --git a/img/clothes/upper/pjsstar/hold_gray.png b/img/clothes/upper/pjsstar/hold_gray.png
index e158adbbcaf01da1b411bea9fe347da5ed080109..6e10de540355e9e5551eb711390e59a157a2c6f5 100644
Binary files a/img/clothes/upper/pjsstar/hold_gray.png and b/img/clothes/upper/pjsstar/hold_gray.png differ
diff --git a/img/clothes/upper/pjsstar/left_cover_gray.png b/img/clothes/upper/pjsstar/left_cover_gray.png
index bb1f147acc93e8c6d84d0c4e55004c0bfddf8d46..bfde47f8ed55e6dc5c07699801d0ff30f500b9dc 100644
Binary files a/img/clothes/upper/pjsstar/left_cover_gray.png and b/img/clothes/upper/pjsstar/left_cover_gray.png differ
diff --git a/img/clothes/upper/pjsstar/left_gray.png b/img/clothes/upper/pjsstar/left_gray.png
index b99388feddde3fedc08ad9a26fde898735e05728..d12aa00856e70763e9e0a78d83afb9d1ffd28c0d 100644
Binary files a/img/clothes/upper/pjsstar/left_gray.png and b/img/clothes/upper/pjsstar/left_gray.png differ
diff --git a/img/clothes/upper/pjsstar/right_cover_gray.png b/img/clothes/upper/pjsstar/right_cover_gray.png
index eb74ec6e92e0071009c4ca9ca9436898282d4cb7..52c6d2b59c32a6d338785e53c71eabb6d5c9a1d7 100644
Binary files a/img/clothes/upper/pjsstar/right_cover_gray.png and b/img/clothes/upper/pjsstar/right_cover_gray.png differ
diff --git a/img/clothes/upper/pjsstar/right_gray.png b/img/clothes/upper/pjsstar/right_gray.png
index 719ae9e2f0dd8d29dd788e2f7bea777b8a162490..399fef5787a0168c25f9d295e799dc60b0db3655 100644
Binary files a/img/clothes/upper/pjsstar/right_gray.png and b/img/clothes/upper/pjsstar/right_gray.png differ
diff --git a/img/clothes/upper/pjsstar/tattered_gray.png b/img/clothes/upper/pjsstar/tattered_gray.png
index 4a378c940035d200a398630a4c0b000e78944e78..cec28385aa8e7c35f46f0f0ec6c615fb332efc74 100644
Binary files a/img/clothes/upper/pjsstar/tattered_gray.png and b/img/clothes/upper/pjsstar/tattered_gray.png differ
diff --git a/img/clothes/upper/pjsstar/torn_gray.png b/img/clothes/upper/pjsstar/torn_gray.png
index 29a1890602736bf59411b279b67d249d403444ec..d24fe211f4a187cd8e5d059a96433f06b283527f 100644
Binary files a/img/clothes/upper/pjsstar/torn_gray.png and b/img/clothes/upper/pjsstar/torn_gray.png differ
diff --git a/img/clothes/upper/plant/frayed.png b/img/clothes/upper/plant/frayed.png
index 6b1c7e69cd9fbdc14f1a53f97131f5ec18b3b27b..22aa1842f1c04814c2def9e17270ca348190b73e 100644
Binary files a/img/clothes/upper/plant/frayed.png and b/img/clothes/upper/plant/frayed.png differ
diff --git a/img/clothes/upper/plant/full.png b/img/clothes/upper/plant/full.png
index 6b1c7e69cd9fbdc14f1a53f97131f5ec18b3b27b..22aa1842f1c04814c2def9e17270ca348190b73e 100644
Binary files a/img/clothes/upper/plant/full.png and b/img/clothes/upper/plant/full.png differ
diff --git a/img/clothes/upper/plant/tattered.png b/img/clothes/upper/plant/tattered.png
index 6b1c7e69cd9fbdc14f1a53f97131f5ec18b3b27b..22aa1842f1c04814c2def9e17270ca348190b73e 100644
Binary files a/img/clothes/upper/plant/tattered.png and b/img/clothes/upper/plant/tattered.png differ
diff --git a/img/clothes/upper/plant/torn.png b/img/clothes/upper/plant/torn.png
index 6b1c7e69cd9fbdc14f1a53f97131f5ec18b3b27b..22aa1842f1c04814c2def9e17270ca348190b73e 100644
Binary files a/img/clothes/upper/plant/torn.png and b/img/clothes/upper/plant/torn.png differ
diff --git a/img/clothes/upper/plasticnurse/1.png b/img/clothes/upper/plasticnurse/1.png
index cec578494c6c8e86cc0cf2290fa3d1d09ff418e5..bb13a7fbcbe751494cf3e96a1f6d1484c16908fb 100644
Binary files a/img/clothes/upper/plasticnurse/1.png and b/img/clothes/upper/plasticnurse/1.png differ
diff --git a/img/clothes/upper/plasticnurse/2.png b/img/clothes/upper/plasticnurse/2.png
index 1b6f17798fd4ead6e604d969d6beac98aee79f28..3f665c94d7f82a1a6c0a28268b5f1dc1ed9826a4 100644
Binary files a/img/clothes/upper/plasticnurse/2.png and b/img/clothes/upper/plasticnurse/2.png differ
diff --git a/img/clothes/upper/plasticnurse/3.png b/img/clothes/upper/plasticnurse/3.png
index e53656f8ba35a7666329352d58c7179800a6c57b..4b3d70b9fdb55149820412cd23ae188d5a7ed8e2 100644
Binary files a/img/clothes/upper/plasticnurse/3.png and b/img/clothes/upper/plasticnurse/3.png differ
diff --git a/img/clothes/upper/plasticnurse/4.png b/img/clothes/upper/plasticnurse/4.png
index edaea26dd0a6f4f4f9fcacd44244674200725f35..8bcc1677249786177af15ff34f1c62ed405c05ca 100644
Binary files a/img/clothes/upper/plasticnurse/4.png and b/img/clothes/upper/plasticnurse/4.png differ
diff --git a/img/clothes/upper/plasticnurse/5.png b/img/clothes/upper/plasticnurse/5.png
index 0d90b4f4bfece5bdb3e8b48e5726029c859f643c..f7c881fe65fd77c979ac3795f8601c118d478371 100644
Binary files a/img/clothes/upper/plasticnurse/5.png and b/img/clothes/upper/plasticnurse/5.png differ
diff --git a/img/clothes/upper/plasticnurse/frayed.png b/img/clothes/upper/plasticnurse/frayed.png
index b236d3963298f4b52dc94d1e22d552d86118637e..55ea7fae75c294688bf333a7858d7a71f97a921c 100644
Binary files a/img/clothes/upper/plasticnurse/frayed.png and b/img/clothes/upper/plasticnurse/frayed.png differ
diff --git a/img/clothes/upper/plasticnurse/full.png b/img/clothes/upper/plasticnurse/full.png
index b236d3963298f4b52dc94d1e22d552d86118637e..55ea7fae75c294688bf333a7858d7a71f97a921c 100644
Binary files a/img/clothes/upper/plasticnurse/full.png and b/img/clothes/upper/plasticnurse/full.png differ
diff --git a/img/clothes/upper/plasticnurse/hold.png b/img/clothes/upper/plasticnurse/hold.png
index e94a783c1ec478d9421338fb0e4312597bf6a9c5..ee195b4b26b489637c2d4d5c8091469ab1dae8b6 100644
Binary files a/img/clothes/upper/plasticnurse/hold.png and b/img/clothes/upper/plasticnurse/hold.png differ
diff --git a/img/clothes/upper/plasticnurse/left.png b/img/clothes/upper/plasticnurse/left.png
index 6acc83276dd53fec7196a94b911bde0727255065..36a3077de8165aa547dca531f45a2c290bd57d81 100644
Binary files a/img/clothes/upper/plasticnurse/left.png and b/img/clothes/upper/plasticnurse/left.png differ
diff --git a/img/clothes/upper/plasticnurse/left_cover.png b/img/clothes/upper/plasticnurse/left_cover.png
index fad1839455e534308c1bec130f619b19a106acbe..cc12d62a2bd4c80b7d87f35a385792db1ec0f661 100644
Binary files a/img/clothes/upper/plasticnurse/left_cover.png and b/img/clothes/upper/plasticnurse/left_cover.png differ
diff --git a/img/clothes/upper/plasticnurse/right.png b/img/clothes/upper/plasticnurse/right.png
index d235e5f8d7c34c02b88df090550d8124aeb5b391..2137182cab75cc0eabd95496c792557ee6d997bb 100644
Binary files a/img/clothes/upper/plasticnurse/right.png and b/img/clothes/upper/plasticnurse/right.png differ
diff --git a/img/clothes/upper/plasticnurse/right_cover.png b/img/clothes/upper/plasticnurse/right_cover.png
index 2b5c885db944cecf77cf22970844f3c5918a0efa..795e3a67b2c63f95bfd2779330bbf72715105f1a 100644
Binary files a/img/clothes/upper/plasticnurse/right_cover.png and b/img/clothes/upper/plasticnurse/right_cover.png differ
diff --git a/img/clothes/upper/plasticnurse/tattered.png b/img/clothes/upper/plasticnurse/tattered.png
index b236d3963298f4b52dc94d1e22d552d86118637e..55ea7fae75c294688bf333a7858d7a71f97a921c 100644
Binary files a/img/clothes/upper/plasticnurse/tattered.png and b/img/clothes/upper/plasticnurse/tattered.png differ
diff --git a/img/clothes/upper/plasticnurse/torn.png b/img/clothes/upper/plasticnurse/torn.png
index b236d3963298f4b52dc94d1e22d552d86118637e..55ea7fae75c294688bf333a7858d7a71f97a921c 100644
Binary files a/img/clothes/upper/plasticnurse/torn.png and b/img/clothes/upper/plasticnurse/torn.png differ
diff --git a/img/clothes/upper/polo/1_gray.png b/img/clothes/upper/polo/1_gray.png
index d692583665ae43c15a09c833c4ffa9325ff8bd55..f3d1e5c182eecc70564535c1cc6c57b8e01f5714 100644
Binary files a/img/clothes/upper/polo/1_gray.png and b/img/clothes/upper/polo/1_gray.png differ
diff --git a/img/clothes/upper/polo/2_gray.png b/img/clothes/upper/polo/2_gray.png
index 627b390736f583e2a9342455223f8fb03422c86b..398eb35d6719ed2589934af13d2f1da170013eb1 100644
Binary files a/img/clothes/upper/polo/2_gray.png and b/img/clothes/upper/polo/2_gray.png differ
diff --git a/img/clothes/upper/polo/3_gray.png b/img/clothes/upper/polo/3_gray.png
index 54687ac0916dbc54fe0a55dd0797f551b3aad9d1..62a06fc546e93ac9c4cfcc1dbcd4bd1ce014551b 100644
Binary files a/img/clothes/upper/polo/3_gray.png and b/img/clothes/upper/polo/3_gray.png differ
diff --git a/img/clothes/upper/polo/4_gray.png b/img/clothes/upper/polo/4_gray.png
index acff689ad3da106739444178b9a6cfcde9e313fb..f419c50e395a824b30e4c3a3dc77b6f05a47ba02 100644
Binary files a/img/clothes/upper/polo/4_gray.png and b/img/clothes/upper/polo/4_gray.png differ
diff --git a/img/clothes/upper/polo/acc_gray.png b/img/clothes/upper/polo/acc_gray.png
index a1b379458423bdb49d0a69eed4ee7c59a0223bc0..10e03ab6b36fe6de3c04e8eb6854a3ef5aad2042 100644
Binary files a/img/clothes/upper/polo/acc_gray.png and b/img/clothes/upper/polo/acc_gray.png differ
diff --git a/img/clothes/upper/polo/frayed_gray.png b/img/clothes/upper/polo/frayed_gray.png
index eb3636c8650e2c24b2180c704c4d7c469535bce1..e57b1d06fe28aab69b9f857adff0c0125846fd39 100644
Binary files a/img/clothes/upper/polo/frayed_gray.png and b/img/clothes/upper/polo/frayed_gray.png differ
diff --git a/img/clothes/upper/polo/full_gray.png b/img/clothes/upper/polo/full_gray.png
index f710786adac472bf9f32ec57e6a05bc8fcf41a69..b98d1fb0928167cf3105de2697bb8aa038764b0e 100644
Binary files a/img/clothes/upper/polo/full_gray.png and b/img/clothes/upper/polo/full_gray.png differ
diff --git a/img/clothes/upper/polo/hold_acc_gray.png b/img/clothes/upper/polo/hold_acc_gray.png
index 4a0f4217b4a3b730dc8b4e8f4c615f9ac8ca8aa3..468fcd70965e50de50a99c8d55d9dd5c2d99c109 100644
Binary files a/img/clothes/upper/polo/hold_acc_gray.png and b/img/clothes/upper/polo/hold_acc_gray.png differ
diff --git a/img/clothes/upper/polo/hold_gray.png b/img/clothes/upper/polo/hold_gray.png
index 61131fda0a4160aebe2a30de1165804b80206c8f..1514dc10027008965429f85b2b27386faf000d5f 100644
Binary files a/img/clothes/upper/polo/hold_gray.png and b/img/clothes/upper/polo/hold_gray.png differ
diff --git a/img/clothes/upper/polo/left_acc_gray.png b/img/clothes/upper/polo/left_acc_gray.png
index 73850616c23bb378287432fb9ac40defa03513af..2eb3c14b704a457594d983ec4d14d1f613e5148b 100644
Binary files a/img/clothes/upper/polo/left_acc_gray.png and b/img/clothes/upper/polo/left_acc_gray.png differ
diff --git a/img/clothes/upper/polo/left_cover.png b/img/clothes/upper/polo/left_cover.png
index 345809cba19266870d0a8214f7bba2641a8ebe59..6923cbe5217fc6ac8f521171a7af0582113252e1 100644
Binary files a/img/clothes/upper/polo/left_cover.png and b/img/clothes/upper/polo/left_cover.png differ
diff --git a/img/clothes/upper/polo/left_cover_acc_gray.png b/img/clothes/upper/polo/left_cover_acc_gray.png
index 1dcd698a4218de835fc3066ef40aaced0639f06b..92a19795d556991315c4d692a9802b6a26489324 100644
Binary files a/img/clothes/upper/polo/left_cover_acc_gray.png and b/img/clothes/upper/polo/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/polo/left_cover_gray.png b/img/clothes/upper/polo/left_cover_gray.png
index 4b95dca7d1834a95f45749aafd0b2bf2f236462f..95efad83f1219c9ca0c6ba4953710031eb7e5b7e 100644
Binary files a/img/clothes/upper/polo/left_cover_gray.png and b/img/clothes/upper/polo/left_cover_gray.png differ
diff --git a/img/clothes/upper/polo/left_gray.png b/img/clothes/upper/polo/left_gray.png
index 3405b002bfaf60c39638ae9ac83e1eb87643d72b..892931f0b12cc5d6a58081ef9a64e8d7db6c347b 100644
Binary files a/img/clothes/upper/polo/left_gray.png and b/img/clothes/upper/polo/left_gray.png differ
diff --git a/img/clothes/upper/polo/right_acc_gray.png b/img/clothes/upper/polo/right_acc_gray.png
index 9898e399cdbff1f32244ff594fc1d6c628be5581..1ec2900d3c0606e914e22c8b7af22e14771d2aca 100644
Binary files a/img/clothes/upper/polo/right_acc_gray.png and b/img/clothes/upper/polo/right_acc_gray.png differ
diff --git a/img/clothes/upper/polo/right_cover_acc_gray.png b/img/clothes/upper/polo/right_cover_acc_gray.png
index 6fe7334ec66da6ae7089be416ca5c971e795dc38..5d8b8cce0c1087ce1fde71add7a384002850b3aa 100644
Binary files a/img/clothes/upper/polo/right_cover_acc_gray.png and b/img/clothes/upper/polo/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/polo/right_cover_gray.png b/img/clothes/upper/polo/right_cover_gray.png
index dacc36775b52ce279f57ca048c22275a6b545b44..efb3c414966e4b53967e16317171a1b78cd76d8c 100644
Binary files a/img/clothes/upper/polo/right_cover_gray.png and b/img/clothes/upper/polo/right_cover_gray.png differ
diff --git a/img/clothes/upper/polo/right_gray.png b/img/clothes/upper/polo/right_gray.png
index e3d91f25da8fb4ebb4263582e9dc76638e7c7145..48bd0f2e4720a37d443a40e699f9ecfbfb4bfd71 100644
Binary files a/img/clothes/upper/polo/right_gray.png and b/img/clothes/upper/polo/right_gray.png differ
diff --git a/img/clothes/upper/polo/tattered_gray.png b/img/clothes/upper/polo/tattered_gray.png
index 7fff9abb6687a2ff8a3cc0800b3a1a3c91b69727..13f2f8992ecd096679052ceae4a5d7567c9dc24a 100644
Binary files a/img/clothes/upper/polo/tattered_gray.png and b/img/clothes/upper/polo/tattered_gray.png differ
diff --git a/img/clothes/upper/polo/torn_gray.png b/img/clothes/upper/polo/torn_gray.png
index f0eb571cbc649ba8f4cb24c9cf469c83bbeb4a69..ac789c87c4f344408f2e7bdeff6bb9feedde3aab 100644
Binary files a/img/clothes/upper/polo/torn_gray.png and b/img/clothes/upper/polo/torn_gray.png differ
diff --git a/img/clothes/upper/prison/frayed.png b/img/clothes/upper/prison/frayed.png
index 272755e389a2b51cb9c0fbc308e4d10a1296ad91..8bbeeb9f34475af9fc273b29795ec15bca55aedb 100644
Binary files a/img/clothes/upper/prison/frayed.png and b/img/clothes/upper/prison/frayed.png differ
diff --git a/img/clothes/upper/prison/full.png b/img/clothes/upper/prison/full.png
index 34e6e8113a244090c2b707750b58b89718b70f60..7b833d281c2353b7e47b4e99aff400dcda8112af 100644
Binary files a/img/clothes/upper/prison/full.png and b/img/clothes/upper/prison/full.png differ
diff --git a/img/clothes/upper/prison/hold.png b/img/clothes/upper/prison/hold.png
index 866f9905fb51c8b9ba9fdb66daea3a08d5fecce6..13a1547bc3ab49a32d0238a533ddde8d8357582e 100644
Binary files a/img/clothes/upper/prison/hold.png and b/img/clothes/upper/prison/hold.png differ
diff --git a/img/clothes/upper/prison/left.png b/img/clothes/upper/prison/left.png
index 315839258bf16036291cfe28d19d02f37e3f3fe6..971679cace1e625a8eaf78c7dc14598c339a1084 100644
Binary files a/img/clothes/upper/prison/left.png and b/img/clothes/upper/prison/left.png differ
diff --git a/img/clothes/upper/prison/left_cover.png b/img/clothes/upper/prison/left_cover.png
index 7b19d919cca6440c9c17d82f5af9a313e0317bff..ac081b49054cb150881f4ad59f2c9642ae45a120 100644
Binary files a/img/clothes/upper/prison/left_cover.png and b/img/clothes/upper/prison/left_cover.png differ
diff --git a/img/clothes/upper/prison/right.png b/img/clothes/upper/prison/right.png
index 0770fd68f9e1046b6edf22c78fb168c4636768b6..7ade8891428cc99109e94a9122f325ad64f5cb01 100644
Binary files a/img/clothes/upper/prison/right.png and b/img/clothes/upper/prison/right.png differ
diff --git a/img/clothes/upper/prison/right_cover.png b/img/clothes/upper/prison/right_cover.png
index 91d805683abacbfc6fbc7183f068715d864f2253..a3f9548fb24d06d87e9d3d88d0c85354aed68ff3 100644
Binary files a/img/clothes/upper/prison/right_cover.png and b/img/clothes/upper/prison/right_cover.png differ
diff --git a/img/clothes/upper/prison/tattered.png b/img/clothes/upper/prison/tattered.png
index 5c213334d77cbb0b11165484859520ca61f14ae1..ef03916bfcca193dba2ac86df502d6e36dc27fb3 100644
Binary files a/img/clothes/upper/prison/tattered.png and b/img/clothes/upper/prison/tattered.png differ
diff --git a/img/clothes/upper/prison/torn.png b/img/clothes/upper/prison/torn.png
index 379e4ebfc27aff5dddfef13729768b73e14039e7..ff19df8b1279ab9b579b7389f02e3ff7faf91db7 100644
Binary files a/img/clothes/upper/prison/torn.png and b/img/clothes/upper/prison/torn.png differ
diff --git a/img/clothes/upper/puffer/frayed_gray.png b/img/clothes/upper/puffer/frayed_gray.png
index 5990de4057ed4ba2c870b4cce079cfdecc5a5825..1b0a0b3d7ea75970d047bcfd90cf5384630b4ce5 100644
Binary files a/img/clothes/upper/puffer/frayed_gray.png and b/img/clothes/upper/puffer/frayed_gray.png differ
diff --git a/img/clothes/upper/puffer/full_gray.png b/img/clothes/upper/puffer/full_gray.png
index 78ce8d0cbe4dbcd745e20f293fbaa1594c436e8e..a9d2e81ca3de776c744bd873c64dc80dca83a0a6 100644
Binary files a/img/clothes/upper/puffer/full_gray.png and b/img/clothes/upper/puffer/full_gray.png differ
diff --git a/img/clothes/upper/puffer/hold_gray.png b/img/clothes/upper/puffer/hold_gray.png
index de4ccd9d984a7f98abfb256a8fa9d0a2bb3bf309..66c36277c34ba85853fc84b2fdec702999f0bee3 100644
Binary files a/img/clothes/upper/puffer/hold_gray.png and b/img/clothes/upper/puffer/hold_gray.png differ
diff --git a/img/clothes/upper/puffer/left_cover_gray.png b/img/clothes/upper/puffer/left_cover_gray.png
index c1e2f64b0dda4c352b8c6c7cb963cf631bf4c991..74a9c2500b66985c83771c3434f176bb21c3bb5f 100644
Binary files a/img/clothes/upper/puffer/left_cover_gray.png and b/img/clothes/upper/puffer/left_cover_gray.png differ
diff --git a/img/clothes/upper/puffer/left_gray.png b/img/clothes/upper/puffer/left_gray.png
index 2017fe9fc3bd97999cff2c9e8e515287a04f8b67..bf193c2797c102a7dded2cc25bddf4dbb683dab8 100644
Binary files a/img/clothes/upper/puffer/left_gray.png and b/img/clothes/upper/puffer/left_gray.png differ
diff --git a/img/clothes/upper/puffer/right_cover_gray.png b/img/clothes/upper/puffer/right_cover_gray.png
index ea3d0bb99d7aeacc7ef55d47d8d6428542b369ee..c683a5343f1b5d3b53271adcbb752424dabca4ca 100644
Binary files a/img/clothes/upper/puffer/right_cover_gray.png and b/img/clothes/upper/puffer/right_cover_gray.png differ
diff --git a/img/clothes/upper/puffer/right_gray.png b/img/clothes/upper/puffer/right_gray.png
index 9e1e7943458e304d634ccb4bba8a543ff3a9ead3..359c320939a40f77bc94583ad28b077edcd6ad18 100644
Binary files a/img/clothes/upper/puffer/right_gray.png and b/img/clothes/upper/puffer/right_gray.png differ
diff --git a/img/clothes/upper/puffer/tattered_gray.png b/img/clothes/upper/puffer/tattered_gray.png
index 63ecdaac5e766fbc02e44e0e8fb64b70da30af9f..5f286854faea0f5ed3da60be1075ad188574e8f3 100644
Binary files a/img/clothes/upper/puffer/tattered_gray.png and b/img/clothes/upper/puffer/tattered_gray.png differ
diff --git a/img/clothes/upper/puffer/torn_gray.png b/img/clothes/upper/puffer/torn_gray.png
index 8b22b0e33f466ccc33d6a9cbe3f73d4ba4bedd7e..4d0f0ab50bf9f9756a67668b819804fae7fad5c4 100644
Binary files a/img/clothes/upper/puffer/torn_gray.png and b/img/clothes/upper/puffer/torn_gray.png differ
diff --git a/img/clothes/upper/racing/acc_gray.png b/img/clothes/upper/racing/acc_gray.png
index 718f4fdd6cc30124ebfac08acff0ddb446774af6..776532b7af477ebf82773284fd490b89764b722a 100644
Binary files a/img/clothes/upper/racing/acc_gray.png and b/img/clothes/upper/racing/acc_gray.png differ
diff --git a/img/clothes/upper/racing/frayed_gray.png b/img/clothes/upper/racing/frayed_gray.png
index 39aed90380a5408fa22ef6c9a5c6e9a29819baeb..40b0bda531c060afc1967ed8f57e76a95d7f6dce 100644
Binary files a/img/clothes/upper/racing/frayed_gray.png and b/img/clothes/upper/racing/frayed_gray.png differ
diff --git a/img/clothes/upper/racing/full_gray.png b/img/clothes/upper/racing/full_gray.png
index 39aed90380a5408fa22ef6c9a5c6e9a29819baeb..40b0bda531c060afc1967ed8f57e76a95d7f6dce 100644
Binary files a/img/clothes/upper/racing/full_gray.png and b/img/clothes/upper/racing/full_gray.png differ
diff --git a/img/clothes/upper/racing/hold_gray.png b/img/clothes/upper/racing/hold_gray.png
index f12d51d83e8f14fcd316e7f86aa7cf3a43b40287..0c8a9c58846259995399d6b5037d41d445ef74bb 100644
Binary files a/img/clothes/upper/racing/hold_gray.png and b/img/clothes/upper/racing/hold_gray.png differ
diff --git a/img/clothes/upper/racing/left_cover_gray.png b/img/clothes/upper/racing/left_cover_gray.png
index 26dabdfec22312f009fa3df5f0b4cd30d18210fb..34a75cca8775d8d3236759b17423930ceb0d3108 100644
Binary files a/img/clothes/upper/racing/left_cover_gray.png and b/img/clothes/upper/racing/left_cover_gray.png differ
diff --git a/img/clothes/upper/racing/left_gray.png b/img/clothes/upper/racing/left_gray.png
index ab3ceb344d212e3f106021c90ca6c77fb2b95733..f35974d15dbac1b531c5790a81d0888a001c6a95 100644
Binary files a/img/clothes/upper/racing/left_gray.png and b/img/clothes/upper/racing/left_gray.png differ
diff --git a/img/clothes/upper/racing/right_cover_gray.png b/img/clothes/upper/racing/right_cover_gray.png
index 3a67ab1a6649cdf4d75c072d373438f2b1591afe..83110a989c71619c6668d36959c2b4744d8026dd 100644
Binary files a/img/clothes/upper/racing/right_cover_gray.png and b/img/clothes/upper/racing/right_cover_gray.png differ
diff --git a/img/clothes/upper/racing/right_gray.png b/img/clothes/upper/racing/right_gray.png
index 2154269f66800fab7a033ab00482bcf62df21ec3..7e95a0057fdcdd848761abb904cf4b8608427aa2 100644
Binary files a/img/clothes/upper/racing/right_gray.png and b/img/clothes/upper/racing/right_gray.png differ
diff --git a/img/clothes/upper/racing/tattered_gray.png b/img/clothes/upper/racing/tattered_gray.png
index 39aed90380a5408fa22ef6c9a5c6e9a29819baeb..40b0bda531c060afc1967ed8f57e76a95d7f6dce 100644
Binary files a/img/clothes/upper/racing/tattered_gray.png and b/img/clothes/upper/racing/tattered_gray.png differ
diff --git a/img/clothes/upper/racing/torn_gray.png b/img/clothes/upper/racing/torn_gray.png
index 39aed90380a5408fa22ef6c9a5c6e9a29819baeb..40b0bda531c060afc1967ed8f57e76a95d7f6dce 100644
Binary files a/img/clothes/upper/racing/torn_gray.png and b/img/clothes/upper/racing/torn_gray.png differ
diff --git a/img/clothes/upper/rag/frayed.png b/img/clothes/upper/rag/frayed.png
index 80b105620d284b406a839014197e902eb358967f..56e9001fa78f1af2f74ec1838a8779d101c239d7 100644
Binary files a/img/clothes/upper/rag/frayed.png and b/img/clothes/upper/rag/frayed.png differ
diff --git a/img/clothes/upper/rag/full.png b/img/clothes/upper/rag/full.png
index 9fa3ca0d2f3e67f819b61aa9296bd4cebff93ad8..d1572d47427d1b30fd6364c9dc37bd97f6be6ebb 100644
Binary files a/img/clothes/upper/rag/full.png and b/img/clothes/upper/rag/full.png differ
diff --git a/img/clothes/upper/rag/tattered.png b/img/clothes/upper/rag/tattered.png
index 97cdab5f2ae1284c3aaa3336456562e131900406..b2b45f8b3f736f3f385a10980d16b1e538113702 100644
Binary files a/img/clothes/upper/rag/tattered.png and b/img/clothes/upper/rag/tattered.png differ
diff --git a/img/clothes/upper/rag/torn.png b/img/clothes/upper/rag/torn.png
index 93a0d0c804694b158e56023f016fc9450f5fed6b..7ae67448d06ffa404aa8500c16efbad60f04bcc6 100644
Binary files a/img/clothes/upper/rag/torn.png and b/img/clothes/upper/rag/torn.png differ
diff --git a/img/clothes/upper/regularshirt/2_gray.png b/img/clothes/upper/regularshirt/2_gray.png
index 9d82f44cb5c1a13384eaebb07dd9bc8d7b146bd9..0d1efacc4e9e6d83311589ffabcd3243442aad07 100644
Binary files a/img/clothes/upper/regularshirt/2_gray.png and b/img/clothes/upper/regularshirt/2_gray.png differ
diff --git a/img/clothes/upper/regularshirt/4_gray.png b/img/clothes/upper/regularshirt/4_gray.png
index eebc7f960d214defe0b7ba60dfad71550a18b18e..e7e62d6765e59513cc767b8d5714600e3ff52440 100644
Binary files a/img/clothes/upper/regularshirt/4_gray.png and b/img/clothes/upper/regularshirt/4_gray.png differ
diff --git a/img/clothes/upper/regularshirt/5_gray.png b/img/clothes/upper/regularshirt/5_gray.png
index d1a1309ae765c06fd3047ed2fab370f559bfa8b2..136239d877031d4bd740010d04e0e256af0ee605 100644
Binary files a/img/clothes/upper/regularshirt/5_gray.png and b/img/clothes/upper/regularshirt/5_gray.png differ
diff --git a/img/clothes/upper/regularshirt/frayed_gray.png b/img/clothes/upper/regularshirt/frayed_gray.png
index 6fe5b392d5eddfc0b3ff94258417e657e052160d..3a1dc41faa132480d49580f240879933485e5096 100644
Binary files a/img/clothes/upper/regularshirt/frayed_gray.png and b/img/clothes/upper/regularshirt/frayed_gray.png differ
diff --git a/img/clothes/upper/regularshirt/full_gray.png b/img/clothes/upper/regularshirt/full_gray.png
index e258db05d73dd7d7b162fc6e24df4344eb9cebe7..e688af6fd40d81ac834297519426b606ef7e2baf 100644
Binary files a/img/clothes/upper/regularshirt/full_gray.png and b/img/clothes/upper/regularshirt/full_gray.png differ
diff --git a/img/clothes/upper/regularshirt/hold_gray.png b/img/clothes/upper/regularshirt/hold_gray.png
index baf90797d039a969bd7059451061d732328a3a0d..00f8fc8686f20cf555de57c204187d0750fff86c 100644
Binary files a/img/clothes/upper/regularshirt/hold_gray.png and b/img/clothes/upper/regularshirt/hold_gray.png differ
diff --git a/img/clothes/upper/regularshirt/left_cover_gray.png b/img/clothes/upper/regularshirt/left_cover_gray.png
index 2d40f29370e29fe5b93e3f28078ab4c7b0e5f0ac..e2140e26e37c9103a77b4edc0aee753e14305607 100644
Binary files a/img/clothes/upper/regularshirt/left_cover_gray.png and b/img/clothes/upper/regularshirt/left_cover_gray.png differ
diff --git a/img/clothes/upper/regularshirt/left_gray.png b/img/clothes/upper/regularshirt/left_gray.png
index 9fe77f250973b42c454771cc6843a16283e492df..979f25821b06622edcbf699a8318e04d5825f7e1 100644
Binary files a/img/clothes/upper/regularshirt/left_gray.png and b/img/clothes/upper/regularshirt/left_gray.png differ
diff --git a/img/clothes/upper/regularshirt/right_cover_gray.png b/img/clothes/upper/regularshirt/right_cover_gray.png
index de47c25dca09776b4902ab45d44a1eb41f5187cb..2641a8c012eaa544bcfca60009a8e73b3c223eef 100644
Binary files a/img/clothes/upper/regularshirt/right_cover_gray.png and b/img/clothes/upper/regularshirt/right_cover_gray.png differ
diff --git a/img/clothes/upper/regularshirt/right_gray.png b/img/clothes/upper/regularshirt/right_gray.png
index aa250e7085b567c7bb2759fd1099c64e9a096863..459ba0a501724f1366aaa0f0cf337602174cbd88 100644
Binary files a/img/clothes/upper/regularshirt/right_gray.png and b/img/clothes/upper/regularshirt/right_gray.png differ
diff --git a/img/clothes/upper/regularshirt/tattered_gray.png b/img/clothes/upper/regularshirt/tattered_gray.png
index c87c2e8b3e942299d4c66ffd5a63a1676f80e007..5f379ddd55a76d55e05c334c06b8a6c3aa706209 100644
Binary files a/img/clothes/upper/regularshirt/tattered_gray.png and b/img/clothes/upper/regularshirt/tattered_gray.png differ
diff --git a/img/clothes/upper/regularshirt/torn_gray.png b/img/clothes/upper/regularshirt/torn_gray.png
index cb34d5c4dbe617137e0f1642d402f66ffb3d1821..3dd2935c503720c0931ac3f5ab62f563dea0a9f3 100644
Binary files a/img/clothes/upper/regularshirt/torn_gray.png and b/img/clothes/upper/regularshirt/torn_gray.png differ
diff --git a/img/clothes/upper/retro/acc_gray.png b/img/clothes/upper/retro/acc_gray.png
index a88e9cc0486cac36874ac21b002e17dc1f9c8ac6..93b380f9ba28a630a1adb4c347317c316a86cca0 100644
Binary files a/img/clothes/upper/retro/acc_gray.png and b/img/clothes/upper/retro/acc_gray.png differ
diff --git a/img/clothes/upper/retro/frayed_gray.png b/img/clothes/upper/retro/frayed_gray.png
index 717d0dc9617399f38a7cad6f745f57ec0e9f424b..28c67ed8aca55e01bf2015a6aadb58d2d6dfa330 100644
Binary files a/img/clothes/upper/retro/frayed_gray.png and b/img/clothes/upper/retro/frayed_gray.png differ
diff --git a/img/clothes/upper/retro/full_gray.png b/img/clothes/upper/retro/full_gray.png
index 59c885af3b73503100a3167c7f5a97d410626a69..f8a6b78bf1eaf85887e94957359e29e1f938a2c7 100644
Binary files a/img/clothes/upper/retro/full_gray.png and b/img/clothes/upper/retro/full_gray.png differ
diff --git a/img/clothes/upper/retro/hold_gray.png b/img/clothes/upper/retro/hold_gray.png
index 81232dd725aad7201f05631ecef7cb4a88853e94..76c2eb3846a066c554d1f6881489d53ac0ec1724 100644
Binary files a/img/clothes/upper/retro/hold_gray.png and b/img/clothes/upper/retro/hold_gray.png differ
diff --git a/img/clothes/upper/retro/left_cover_gray.png b/img/clothes/upper/retro/left_cover_gray.png
index 81ca39b295764bdd0edd700df93a9f2c9f7202dd..a240e94e395d894d3429a77e662714d69373ef80 100644
Binary files a/img/clothes/upper/retro/left_cover_gray.png and b/img/clothes/upper/retro/left_cover_gray.png differ
diff --git a/img/clothes/upper/retro/left_gray.png b/img/clothes/upper/retro/left_gray.png
index cba473c3653d2dc7f2b22a6619bf5048260983d1..f16203d0190b5cbcf8d164631a658cd412124f0a 100644
Binary files a/img/clothes/upper/retro/left_gray.png and b/img/clothes/upper/retro/left_gray.png differ
diff --git a/img/clothes/upper/retro/right_cover_gray.png b/img/clothes/upper/retro/right_cover_gray.png
index 9d58d57969133306eeef177755b41090a7da1730..6ad4b69abc09fcaab18ff6a3f9c7324244d86fbd 100644
Binary files a/img/clothes/upper/retro/right_cover_gray.png and b/img/clothes/upper/retro/right_cover_gray.png differ
diff --git a/img/clothes/upper/retro/right_gray.png b/img/clothes/upper/retro/right_gray.png
index d008e91ea1188d2bb7b933acee9c12c8a0afa74b..70ab50ca98892149cb8b5163a9fe6dc874c44c14 100644
Binary files a/img/clothes/upper/retro/right_gray.png and b/img/clothes/upper/retro/right_gray.png differ
diff --git a/img/clothes/upper/retro/tattered_gray.png b/img/clothes/upper/retro/tattered_gray.png
index 2cb25f0f89a91e3ab909556e6d7d127b9485bf0a..2a0a294d3eda0eb6a5b0155e08ec709b83380a2f 100644
Binary files a/img/clothes/upper/retro/tattered_gray.png and b/img/clothes/upper/retro/tattered_gray.png differ
diff --git a/img/clothes/upper/retro/torn_gray.png b/img/clothes/upper/retro/torn_gray.png
index df4c4f69b1ed9fd370f42fef1842f38b6ebb0ab0..d15392447084551cd3faf04a30e5a818b7944514 100644
Binary files a/img/clothes/upper/retro/torn_gray.png and b/img/clothes/upper/retro/torn_gray.png differ
diff --git a/img/clothes/upper/right.png b/img/clothes/upper/right.png
index 30802ea25b29347a88aa815a041f09fc40af63cf..3f919a6c0a6cac9a38b4da83e2eb1fc0325bd7b5 100644
Binary files a/img/clothes/upper/right.png and b/img/clothes/upper/right.png differ
diff --git a/img/clothes/upper/sailor/1_gray.png b/img/clothes/upper/sailor/1_gray.png
index 73ad7eb8069bdebd1a7d8895c047f731516ce42a..30bcab0951446101a60e439cf53b80faea703f8f 100644
Binary files a/img/clothes/upper/sailor/1_gray.png and b/img/clothes/upper/sailor/1_gray.png differ
diff --git a/img/clothes/upper/sailor/2_gray.png b/img/clothes/upper/sailor/2_gray.png
index f7821977084082385d3c6878e91edbe62b3a0f2d..934bae0c4a48eafd4d1267e336356df019e07002 100644
Binary files a/img/clothes/upper/sailor/2_gray.png and b/img/clothes/upper/sailor/2_gray.png differ
diff --git a/img/clothes/upper/sailor/3_gray.png b/img/clothes/upper/sailor/3_gray.png
index ee80bec662a27c5e4611456d50d2f47a28b51559..39d201eefcc0d5d0bb4bd6de92fa66dddd4d0c57 100644
Binary files a/img/clothes/upper/sailor/3_gray.png and b/img/clothes/upper/sailor/3_gray.png differ
diff --git a/img/clothes/upper/sailor/4_gray.png b/img/clothes/upper/sailor/4_gray.png
index 825623b3bc9603803592489fffee9f2f81e628db..90ee039810dca66905536548b8706be1c8b824c3 100644
Binary files a/img/clothes/upper/sailor/4_gray.png and b/img/clothes/upper/sailor/4_gray.png differ
diff --git a/img/clothes/upper/sailor/acc_gray.png b/img/clothes/upper/sailor/acc_gray.png
index ef760415ccf44c679ac1c81edb995e50cb843e50..3b18458e636e4922b303af515c5ee8ed5d62d022 100644
Binary files a/img/clothes/upper/sailor/acc_gray.png and b/img/clothes/upper/sailor/acc_gray.png differ
diff --git a/img/clothes/upper/sailor/frayed_gray.png b/img/clothes/upper/sailor/frayed_gray.png
index d6b2496918b02ea356c7b076fff16ba5f4322433..3e67355293cdfbfb823c927a9628d1a12c90f57c 100644
Binary files a/img/clothes/upper/sailor/frayed_gray.png and b/img/clothes/upper/sailor/frayed_gray.png differ
diff --git a/img/clothes/upper/sailor/full_gray.png b/img/clothes/upper/sailor/full_gray.png
index c14586e6a95d7ee01c2d43705cee71e43b34be35..3295a5c72323f27af2c413ae07356d39588a24da 100644
Binary files a/img/clothes/upper/sailor/full_gray.png and b/img/clothes/upper/sailor/full_gray.png differ
diff --git a/img/clothes/upper/sailor/hold_gray.png b/img/clothes/upper/sailor/hold_gray.png
index 94091d3b6f005186f167f66c3b6fd8c7e5550146..18c29e00f60cb8a3c827a981ac96f86306cb959a 100644
Binary files a/img/clothes/upper/sailor/hold_gray.png and b/img/clothes/upper/sailor/hold_gray.png differ
diff --git a/img/clothes/upper/sailor/left_cover_gray.png b/img/clothes/upper/sailor/left_cover_gray.png
index 971cd267f0968ccf2a6128ca264afc197cd6c125..3daa7ba5476e40521a08d859323275bc3708ebfa 100644
Binary files a/img/clothes/upper/sailor/left_cover_gray.png and b/img/clothes/upper/sailor/left_cover_gray.png differ
diff --git a/img/clothes/upper/sailor/left_gray.png b/img/clothes/upper/sailor/left_gray.png
index 25bc3a9ff19876c9f21b9de6f838ff5603b72ca2..7a388a56530b201ef441b24cad98924ff92e5088 100644
Binary files a/img/clothes/upper/sailor/left_gray.png and b/img/clothes/upper/sailor/left_gray.png differ
diff --git a/img/clothes/upper/sailor/right_cover_gray.png b/img/clothes/upper/sailor/right_cover_gray.png
index da38ddc931ed732d1380b0bffce23cdb323efadf..5219af5f6dc3782cf77526eba1511e190ef5bf2e 100644
Binary files a/img/clothes/upper/sailor/right_cover_gray.png and b/img/clothes/upper/sailor/right_cover_gray.png differ
diff --git a/img/clothes/upper/sailor/right_gray.png b/img/clothes/upper/sailor/right_gray.png
index bafa5f581096ed69c6a0fff39e171272f8c147ec..313c7171b48b4703357dc0bd239b73cd6f760512 100644
Binary files a/img/clothes/upper/sailor/right_gray.png and b/img/clothes/upper/sailor/right_gray.png differ
diff --git a/img/clothes/upper/sailor/tattered_gray.png b/img/clothes/upper/sailor/tattered_gray.png
index 993f5e7a1ab4cbb0a0f18d302bb8040f5081dfc8..123f607cb2a5badb2d8eea1519a38cf62e188df8 100644
Binary files a/img/clothes/upper/sailor/tattered_gray.png and b/img/clothes/upper/sailor/tattered_gray.png differ
diff --git a/img/clothes/upper/sailor/torn_gray.png b/img/clothes/upper/sailor/torn_gray.png
index f1f03aa0e038b1face9262523050a53ed5ee2500..aa3a2a5d0391fc8dacd588768246c57eae1e50b2 100644
Binary files a/img/clothes/upper/sailor/torn_gray.png and b/img/clothes/upper/sailor/torn_gray.png differ
diff --git a/img/clothes/upper/sailorshort/1_gray.png b/img/clothes/upper/sailorshort/1_gray.png
index 73ad7eb8069bdebd1a7d8895c047f731516ce42a..30bcab0951446101a60e439cf53b80faea703f8f 100644
Binary files a/img/clothes/upper/sailorshort/1_gray.png and b/img/clothes/upper/sailorshort/1_gray.png differ
diff --git a/img/clothes/upper/sailorshort/2_gray.png b/img/clothes/upper/sailorshort/2_gray.png
index 24f6d161c9da4ec0de08c02c38113e11ced68c52..578762ce6f43d172d50cf0505fa2f3731a5f67cd 100644
Binary files a/img/clothes/upper/sailorshort/2_gray.png and b/img/clothes/upper/sailorshort/2_gray.png differ
diff --git a/img/clothes/upper/sailorshort/3_gray.png b/img/clothes/upper/sailorshort/3_gray.png
index bfc7edffd0dc1f5d30373ef38b3c19397ce24164..6c1f7c55d3945b9e2dba70951e26e6f7d4700248 100644
Binary files a/img/clothes/upper/sailorshort/3_gray.png and b/img/clothes/upper/sailorshort/3_gray.png differ
diff --git a/img/clothes/upper/sailorshort/4_gray.png b/img/clothes/upper/sailorshort/4_gray.png
index 2bca1eadaba60cab29a7e8edb9f7e05b2e172d0d..8da2f0a8fcfa07f87e6fdd7bc25f7b51fb404668 100644
Binary files a/img/clothes/upper/sailorshort/4_gray.png and b/img/clothes/upper/sailorshort/4_gray.png differ
diff --git a/img/clothes/upper/sailorshort/acc_gray.png b/img/clothes/upper/sailorshort/acc_gray.png
index ef760415ccf44c679ac1c81edb995e50cb843e50..3b18458e636e4922b303af515c5ee8ed5d62d022 100644
Binary files a/img/clothes/upper/sailorshort/acc_gray.png and b/img/clothes/upper/sailorshort/acc_gray.png differ
diff --git a/img/clothes/upper/sailorshort/frayed_gray.png b/img/clothes/upper/sailorshort/frayed_gray.png
index 872a545985a1c97acc6a06a3f13b893e1400cdfa..d70244357d09d38b14863d36c3f6ec67fd546083 100644
Binary files a/img/clothes/upper/sailorshort/frayed_gray.png and b/img/clothes/upper/sailorshort/frayed_gray.png differ
diff --git a/img/clothes/upper/sailorshort/full_gray.png b/img/clothes/upper/sailorshort/full_gray.png
index 3d6e12d00c785fd2bca2b3d0404baf7ee8532907..6a66e87a918a1eba67b7c20332e3d3d8c17f625c 100644
Binary files a/img/clothes/upper/sailorshort/full_gray.png and b/img/clothes/upper/sailorshort/full_gray.png differ
diff --git a/img/clothes/upper/sailorshort/hold_gray.png b/img/clothes/upper/sailorshort/hold_gray.png
index df0798cc878f620050c834b58b7d9b8e3024fe29..ac5e640aaa92bdfe3c24f58509598b76c7deb78c 100644
Binary files a/img/clothes/upper/sailorshort/hold_gray.png and b/img/clothes/upper/sailorshort/hold_gray.png differ
diff --git a/img/clothes/upper/sailorshort/left_cover_gray.png b/img/clothes/upper/sailorshort/left_cover_gray.png
index 30eac92b6d65481fbcd98cfca43b024f0fdd10e5..7b891414134d4c1410e47a668e7d13dc79699faa 100644
Binary files a/img/clothes/upper/sailorshort/left_cover_gray.png and b/img/clothes/upper/sailorshort/left_cover_gray.png differ
diff --git a/img/clothes/upper/sailorshort/left_gray.png b/img/clothes/upper/sailorshort/left_gray.png
index f898e4c92e8963bd7646f5028b490c431402c48b..b7dcd48763c8c93628e9f961bb3dddb78692eb37 100644
Binary files a/img/clothes/upper/sailorshort/left_gray.png and b/img/clothes/upper/sailorshort/left_gray.png differ
diff --git a/img/clothes/upper/sailorshort/right_cover_gray.png b/img/clothes/upper/sailorshort/right_cover_gray.png
index e6c7bb1d13a3f253d81e72282cbce00284abc18b..d43644eb0cd106d99c433b958f0e8b89b8bf446b 100644
Binary files a/img/clothes/upper/sailorshort/right_cover_gray.png and b/img/clothes/upper/sailorshort/right_cover_gray.png differ
diff --git a/img/clothes/upper/sailorshort/right_gray.png b/img/clothes/upper/sailorshort/right_gray.png
index a8fa5205e50bf012a4bbb658318c13a969d01901..9df766f94cf1d8f014c0382185ea17c0027c2535 100644
Binary files a/img/clothes/upper/sailorshort/right_gray.png and b/img/clothes/upper/sailorshort/right_gray.png differ
diff --git a/img/clothes/upper/sailorshort/tattered_gray.png b/img/clothes/upper/sailorshort/tattered_gray.png
index b913dff4414fd7288a3889bf4375a6f192932c51..c461c38aa39c0281278e5a24ffc3dc0fd7387f09 100644
Binary files a/img/clothes/upper/sailorshort/tattered_gray.png and b/img/clothes/upper/sailorshort/tattered_gray.png differ
diff --git a/img/clothes/upper/sailorshort/torn_gray.png b/img/clothes/upper/sailorshort/torn_gray.png
index 36081926d1112a5f89f5a405527e35fb48d26232..dc68fd85981d4ec645a8d417c80e14acf24d6f8b 100644
Binary files a/img/clothes/upper/sailorshort/torn_gray.png and b/img/clothes/upper/sailorshort/torn_gray.png differ
diff --git a/img/clothes/upper/scarecrow/frayed.png b/img/clothes/upper/scarecrow/frayed.png
index d079a1cae9537cfedbcbf4c9ede5f53c9a56449c..7fc078e6fd05e16ab4fbeb01d01df9b7951d5b3f 100644
Binary files a/img/clothes/upper/scarecrow/frayed.png and b/img/clothes/upper/scarecrow/frayed.png differ
diff --git a/img/clothes/upper/scarecrow/full.png b/img/clothes/upper/scarecrow/full.png
index 7bfa917bf0e54038d4d87456353162a9355324cc..7bcc36a67db5988ca6a6394a1b6bd891da156ae8 100644
Binary files a/img/clothes/upper/scarecrow/full.png and b/img/clothes/upper/scarecrow/full.png differ
diff --git a/img/clothes/upper/scarecrow/hold.png b/img/clothes/upper/scarecrow/hold.png
index c04c9a84f066628f8376676fa7128f45e930addc..06d60e373fae0063e6cd18062a3afc23b107a9b0 100644
Binary files a/img/clothes/upper/scarecrow/hold.png and b/img/clothes/upper/scarecrow/hold.png differ
diff --git a/img/clothes/upper/scarecrow/left.png b/img/clothes/upper/scarecrow/left.png
index 3c54af2d9db2e846cd100363b66d9ed36ea1bbd0..b4dffa2d10bd67a55ed5838009a96300b0492d77 100644
Binary files a/img/clothes/upper/scarecrow/left.png and b/img/clothes/upper/scarecrow/left.png differ
diff --git a/img/clothes/upper/scarecrow/left_cover.png b/img/clothes/upper/scarecrow/left_cover.png
index 632c128de2b8348c772c3dbd6007f69e337b233b..cebf146037c92bf52a89e1a2390cd42e0a585b46 100644
Binary files a/img/clothes/upper/scarecrow/left_cover.png and b/img/clothes/upper/scarecrow/left_cover.png differ
diff --git a/img/clothes/upper/scarecrow/right.png b/img/clothes/upper/scarecrow/right.png
index 4a314c1d6191e85c3b54a3629d7cb97c4d0c7165..480668c576668bfacfe126815e78e883f127aff0 100644
Binary files a/img/clothes/upper/scarecrow/right.png and b/img/clothes/upper/scarecrow/right.png differ
diff --git a/img/clothes/upper/scarecrow/right_cover.png b/img/clothes/upper/scarecrow/right_cover.png
index 45e54862ff0550629664fa2dddb69bea9732452d..3a66f2c40e0a2ee055f7036d536702183a8e7854 100644
Binary files a/img/clothes/upper/scarecrow/right_cover.png and b/img/clothes/upper/scarecrow/right_cover.png differ
diff --git a/img/clothes/upper/scarecrow/tattered.png b/img/clothes/upper/scarecrow/tattered.png
index 3e8296c12842e1da66b298228193b10156dccab0..e374db8fd8188110b020507604fc271b6176668d 100644
Binary files a/img/clothes/upper/scarecrow/tattered.png and b/img/clothes/upper/scarecrow/tattered.png differ
diff --git a/img/clothes/upper/scarecrow/torn.png b/img/clothes/upper/scarecrow/torn.png
index 425c0fb918cb7ccaf239b61fcea63d7dd6780eea..3910c0d356b0958b8e1b0b5e7e50e7328cf03741 100644
Binary files a/img/clothes/upper/scarecrow/torn.png and b/img/clothes/upper/scarecrow/torn.png differ
diff --git a/img/clothes/upper/schoolblouse/1_gray.png b/img/clothes/upper/schoolblouse/1_gray.png
index fe37b0946459815adb43e1bb5f0cc20411a8a2a6..9d28bb3aded9b2b454b158aecdd95b7042082824 100644
Binary files a/img/clothes/upper/schoolblouse/1_gray.png and b/img/clothes/upper/schoolblouse/1_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/2_gray.png b/img/clothes/upper/schoolblouse/2_gray.png
index a18acc8f77f03cad2ac9e01c3f1c4624ec8829d4..e1ae2911746d8df74eff253bc6c478f305cc6e0d 100644
Binary files a/img/clothes/upper/schoolblouse/2_gray.png and b/img/clothes/upper/schoolblouse/2_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/3_gray.png b/img/clothes/upper/schoolblouse/3_gray.png
index cd98c8e23875adfbe34278fc30d44bdb1f7686f9..52e4415976a142b9a29c5ddfb4d4d4f2cb4af6c5 100644
Binary files a/img/clothes/upper/schoolblouse/3_gray.png and b/img/clothes/upper/schoolblouse/3_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/4_gray.png b/img/clothes/upper/schoolblouse/4_gray.png
index 3941ccc2e2ee94e5650325db91628ef57d0a2b21..e0f13b566e91c453ee30295abfad302cdb5d3b55 100644
Binary files a/img/clothes/upper/schoolblouse/4_gray.png and b/img/clothes/upper/schoolblouse/4_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/5_gray.png b/img/clothes/upper/schoolblouse/5_gray.png
index ab390b6cbff9fc764c4982be7b5130e1db35f56e..6618e3012e95e684ca003854a3446f1a6f56b999 100644
Binary files a/img/clothes/upper/schoolblouse/5_gray.png and b/img/clothes/upper/schoolblouse/5_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/frayed_gray.png b/img/clothes/upper/schoolblouse/frayed_gray.png
index 9952ad6a40e1c5dcab5dcaf06f17130fc28f10f6..3d1fc601581ae4453b47a8f9abd2add480bc8e17 100644
Binary files a/img/clothes/upper/schoolblouse/frayed_gray.png and b/img/clothes/upper/schoolblouse/frayed_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/full_gray.png b/img/clothes/upper/schoolblouse/full_gray.png
index e2e1aec3fbaec094e5f9a5fd6ce758332db8f72d..50dec18b0c952afd1e9ae49b2b50b90cb33a2e48 100644
Binary files a/img/clothes/upper/schoolblouse/full_gray.png and b/img/clothes/upper/schoolblouse/full_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/hold_gray.png b/img/clothes/upper/schoolblouse/hold_gray.png
index 85e0c3ef931f8811de94e72f71f5c350bd8ab34a..f5749fa053633bf2cbea002ce258dc400f858e63 100644
Binary files a/img/clothes/upper/schoolblouse/hold_gray.png and b/img/clothes/upper/schoolblouse/hold_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/hold_rolled_gray.png b/img/clothes/upper/schoolblouse/hold_rolled_gray.png
index d7e098b93948a6197eebfca4973a4973a58e43fc..bae7537333e42e98aef6e05faf9561db83191139 100644
Binary files a/img/clothes/upper/schoolblouse/hold_rolled_gray.png and b/img/clothes/upper/schoolblouse/hold_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/left_cover_gray.png b/img/clothes/upper/schoolblouse/left_cover_gray.png
index 5cad32dd06667a503332375841262e1ab7170d86..7fd4b0d8ab93afede0897ebcb32d52a6569be58c 100644
Binary files a/img/clothes/upper/schoolblouse/left_cover_gray.png and b/img/clothes/upper/schoolblouse/left_cover_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/left_cover_rolled_gray.png b/img/clothes/upper/schoolblouse/left_cover_rolled_gray.png
index 9a55b8c5a159a33cbb3fa7c4317b4c217e84c9e1..d29bca5848c7957b25d413733d206984bfac6267 100644
Binary files a/img/clothes/upper/schoolblouse/left_cover_rolled_gray.png and b/img/clothes/upper/schoolblouse/left_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/left_gray.png b/img/clothes/upper/schoolblouse/left_gray.png
index 838935e00256f040be7d649fa581055230802e80..1d72ec4fd81a4d43ddbb15586995c6bf2031b5ee 100644
Binary files a/img/clothes/upper/schoolblouse/left_gray.png and b/img/clothes/upper/schoolblouse/left_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/left_rolled_gray.png b/img/clothes/upper/schoolblouse/left_rolled_gray.png
index 8457f17da47b8ac20ff5a605cfdc699eb33163f3..a6cb490c8caa43ebc941153f8a5178d31da57ac8 100644
Binary files a/img/clothes/upper/schoolblouse/left_rolled_gray.png and b/img/clothes/upper/schoolblouse/left_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/right_cover_gray.png b/img/clothes/upper/schoolblouse/right_cover_gray.png
index 27c375afe5e76962af3b75d03a6476e6eb4184f4..06c5ef1e19ee2b65963cbbf771567134bad0a6b8 100644
Binary files a/img/clothes/upper/schoolblouse/right_cover_gray.png and b/img/clothes/upper/schoolblouse/right_cover_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/right_cover_rolled_gray.png b/img/clothes/upper/schoolblouse/right_cover_rolled_gray.png
index c7f6b6b4805ef586179db6430690fc3bab3c47c9..55e21b4169a77db749abecab2d0a285bbd7bb4c1 100644
Binary files a/img/clothes/upper/schoolblouse/right_cover_rolled_gray.png and b/img/clothes/upper/schoolblouse/right_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/right_gray.png b/img/clothes/upper/schoolblouse/right_gray.png
index d90c7c0ecc94e4bcfc8719aed851d7c61761a800..dba61d8656cecead4f83801f09abe5a319b9a798 100644
Binary files a/img/clothes/upper/schoolblouse/right_gray.png and b/img/clothes/upper/schoolblouse/right_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/right_rolled_gray.png b/img/clothes/upper/schoolblouse/right_rolled_gray.png
index a31dfafaed13265a6f05c5b3c1af88a06df24cdc..f79bb7e85527e6e29ef2b8a8be58b1da5e5e76a6 100644
Binary files a/img/clothes/upper/schoolblouse/right_rolled_gray.png and b/img/clothes/upper/schoolblouse/right_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/tattered_gray.png b/img/clothes/upper/schoolblouse/tattered_gray.png
index 232072f6722bbbfcc236ad5ef95efe86a0eced73..e9f343cb4f8f9cdc8c193cdae6920e374eeecce2 100644
Binary files a/img/clothes/upper/schoolblouse/tattered_gray.png and b/img/clothes/upper/schoolblouse/tattered_gray.png differ
diff --git a/img/clothes/upper/schoolblouse/torn_gray.png b/img/clothes/upper/schoolblouse/torn_gray.png
index 16ef627a78ab21ff67bce9c736700d30e6a3b74a..1b0846e6ea7ee54e38ea08604f5586e8d3709408 100644
Binary files a/img/clothes/upper/schoolblouse/torn_gray.png and b/img/clothes/upper/schoolblouse/torn_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/1_alt_gray.png b/img/clothes/upper/schoolcardigan/1_alt_gray.png
index fe37b0946459815adb43e1bb5f0cc20411a8a2a6..9d28bb3aded9b2b454b158aecdd95b7042082824 100644
Binary files a/img/clothes/upper/schoolcardigan/1_alt_gray.png and b/img/clothes/upper/schoolcardigan/1_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/1_gray.png b/img/clothes/upper/schoolcardigan/1_gray.png
index b55ddc98318583b58fd2b92816b98e4a2f68feda..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/schoolcardigan/1_gray.png and b/img/clothes/upper/schoolcardigan/1_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/2_alt_gray.png b/img/clothes/upper/schoolcardigan/2_alt_gray.png
index a18acc8f77f03cad2ac9e01c3f1c4624ec8829d4..e1ae2911746d8df74eff253bc6c478f305cc6e0d 100644
Binary files a/img/clothes/upper/schoolcardigan/2_alt_gray.png and b/img/clothes/upper/schoolcardigan/2_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/2_gray.png b/img/clothes/upper/schoolcardigan/2_gray.png
index a98717c64529eacf5149394353f334b15804d9a4..78b7b19d61f5ae21947273a3ef7d72ce3a891acd 100644
Binary files a/img/clothes/upper/schoolcardigan/2_gray.png and b/img/clothes/upper/schoolcardigan/2_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/3_alt_gray.png b/img/clothes/upper/schoolcardigan/3_alt_gray.png
index cd98c8e23875adfbe34278fc30d44bdb1f7686f9..52e4415976a142b9a29c5ddfb4d4d4f2cb4af6c5 100644
Binary files a/img/clothes/upper/schoolcardigan/3_alt_gray.png and b/img/clothes/upper/schoolcardigan/3_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/3_gray.png b/img/clothes/upper/schoolcardigan/3_gray.png
index badd05139c44b68a49e68f254ba988e407532c0a..6c38d66460f9e3743e050f829351ddb9643d765e 100644
Binary files a/img/clothes/upper/schoolcardigan/3_gray.png and b/img/clothes/upper/schoolcardigan/3_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/4_alt_gray.png b/img/clothes/upper/schoolcardigan/4_alt_gray.png
index 3941ccc2e2ee94e5650325db91628ef57d0a2b21..e0f13b566e91c453ee30295abfad302cdb5d3b55 100644
Binary files a/img/clothes/upper/schoolcardigan/4_alt_gray.png and b/img/clothes/upper/schoolcardigan/4_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/4_gray.png b/img/clothes/upper/schoolcardigan/4_gray.png
index 6db23fe1d557cbe1a7829b2094c0e891685a9246..42ec08dc9ebe264c67f321cbd5ee926b3d649a30 100644
Binary files a/img/clothes/upper/schoolcardigan/4_gray.png and b/img/clothes/upper/schoolcardigan/4_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/5_alt_gray.png b/img/clothes/upper/schoolcardigan/5_alt_gray.png
index ab390b6cbff9fc764c4982be7b5130e1db35f56e..6618e3012e95e684ca003854a3446f1a6f56b999 100644
Binary files a/img/clothes/upper/schoolcardigan/5_alt_gray.png and b/img/clothes/upper/schoolcardigan/5_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/5_gray.png b/img/clothes/upper/schoolcardigan/5_gray.png
index ba306db259155a26b34c7ee73403887e1e65d325..db6dbf49645c4b6ff0eb620491421c5ae85003df 100644
Binary files a/img/clothes/upper/schoolcardigan/5_gray.png and b/img/clothes/upper/schoolcardigan/5_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/acc_frayed_alt_gray.png b/img/clothes/upper/schoolcardigan/acc_frayed_alt_gray.png
index 31ddb23cc8e0be6eb653ae6f2ca884507a9240f8..dd3d113fc9f31b868175ea7dec369e7d1224206f 100644
Binary files a/img/clothes/upper/schoolcardigan/acc_frayed_alt_gray.png and b/img/clothes/upper/schoolcardigan/acc_frayed_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/acc_frayed_gray.png b/img/clothes/upper/schoolcardigan/acc_frayed_gray.png
index 458c23cdbdd6cb1606f7c094d61249f3e4495123..1c0806daaed1fffb309a7978387a6c495843d311 100644
Binary files a/img/clothes/upper/schoolcardigan/acc_frayed_gray.png and b/img/clothes/upper/schoolcardigan/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/acc_full_alt_gray.png b/img/clothes/upper/schoolcardigan/acc_full_alt_gray.png
index 01c32a4a15baf1d463e750f1a76c3ff0beadb706..371b99c39ed0b8e5d424b8ea35fc151353c5605f 100644
Binary files a/img/clothes/upper/schoolcardigan/acc_full_alt_gray.png and b/img/clothes/upper/schoolcardigan/acc_full_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/acc_full_gray.png b/img/clothes/upper/schoolcardigan/acc_full_gray.png
index cedc97f35b03df39fd373cf8bb0e30cb24bc1045..1c0806daaed1fffb309a7978387a6c495843d311 100644
Binary files a/img/clothes/upper/schoolcardigan/acc_full_gray.png and b/img/clothes/upper/schoolcardigan/acc_full_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/acc_gray.png b/img/clothes/upper/schoolcardigan/acc_gray.png
index cedc97f35b03df39fd373cf8bb0e30cb24bc1045..1c0806daaed1fffb309a7978387a6c495843d311 100644
Binary files a/img/clothes/upper/schoolcardigan/acc_gray.png and b/img/clothes/upper/schoolcardigan/acc_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/acc_tattered_alt_gray.png b/img/clothes/upper/schoolcardigan/acc_tattered_alt_gray.png
index 69e69bd51c044d36362f9a451798c39c2629b032..1558c7941ae718ebe1dc6f893f4527942375ecc6 100644
Binary files a/img/clothes/upper/schoolcardigan/acc_tattered_alt_gray.png and b/img/clothes/upper/schoolcardigan/acc_tattered_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/acc_tattered_gray.png b/img/clothes/upper/schoolcardigan/acc_tattered_gray.png
index cedc97f35b03df39fd373cf8bb0e30cb24bc1045..1c0806daaed1fffb309a7978387a6c495843d311 100644
Binary files a/img/clothes/upper/schoolcardigan/acc_tattered_gray.png and b/img/clothes/upper/schoolcardigan/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/acc_torn_alt_gray.png b/img/clothes/upper/schoolcardigan/acc_torn_alt_gray.png
index 05f8b1f77ff56a11d01adaa8bf1838508ce7b217..89aea709c310852b589d54674b48b16e1b722cd8 100644
Binary files a/img/clothes/upper/schoolcardigan/acc_torn_alt_gray.png and b/img/clothes/upper/schoolcardigan/acc_torn_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/acc_torn_gray.png b/img/clothes/upper/schoolcardigan/acc_torn_gray.png
index cedc97f35b03df39fd373cf8bb0e30cb24bc1045..1c0806daaed1fffb309a7978387a6c495843d311 100644
Binary files a/img/clothes/upper/schoolcardigan/acc_torn_gray.png and b/img/clothes/upper/schoolcardigan/acc_torn_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/back_alt_gray.png b/img/clothes/upper/schoolcardigan/back_alt_gray.png
index a17ff463756ca7572d31fe3886b726fe9b66952a..8e78a4f9667b7370e0258850182a591c7b246164 100644
Binary files a/img/clothes/upper/schoolcardigan/back_alt_gray.png and b/img/clothes/upper/schoolcardigan/back_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/back_gray.png b/img/clothes/upper/schoolcardigan/back_gray.png
index 0e2ffd003595a00a1ada0bad6110d62687ad8d8d..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/clothes/upper/schoolcardigan/back_gray.png and b/img/clothes/upper/schoolcardigan/back_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/frayed_alt_gray.png b/img/clothes/upper/schoolcardigan/frayed_alt_gray.png
index 9952ad6a40e1c5dcab5dcaf06f17130fc28f10f6..3d1fc601581ae4453b47a8f9abd2add480bc8e17 100644
Binary files a/img/clothes/upper/schoolcardigan/frayed_alt_gray.png and b/img/clothes/upper/schoolcardigan/frayed_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/frayed_gray.png b/img/clothes/upper/schoolcardigan/frayed_gray.png
index cc0ff4d261fd1874645cd8684e4e8dfd75755d17..911d30d058aeb96bf95c4b72e014098b7303ca1c 100644
Binary files a/img/clothes/upper/schoolcardigan/frayed_gray.png and b/img/clothes/upper/schoolcardigan/frayed_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/full_alt_gray.png b/img/clothes/upper/schoolcardigan/full_alt_gray.png
index e2e1aec3fbaec094e5f9a5fd6ce758332db8f72d..50dec18b0c952afd1e9ae49b2b50b90cb33a2e48 100644
Binary files a/img/clothes/upper/schoolcardigan/full_alt_gray.png and b/img/clothes/upper/schoolcardigan/full_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/full_gray.png b/img/clothes/upper/schoolcardigan/full_gray.png
index 49c01b4716afd749da5e84e53e70367580d66a22..43b41202dc3a9f53cbd0e973c544845645f77939 100644
Binary files a/img/clothes/upper/schoolcardigan/full_gray.png and b/img/clothes/upper/schoolcardigan/full_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/hold_alt_gray.png b/img/clothes/upper/schoolcardigan/hold_alt_gray.png
index fc5219cc48bd17c58da4eba5ded3343fe844326d..cd438d827f603c675528af74976869a3be6a9a9f 100644
Binary files a/img/clothes/upper/schoolcardigan/hold_alt_gray.png and b/img/clothes/upper/schoolcardigan/hold_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/hold_alt_rolled_gray.png b/img/clothes/upper/schoolcardigan/hold_alt_rolled_gray.png
index d7e098b93948a6197eebfca4973a4973a58e43fc..bae7537333e42e98aef6e05faf9561db83191139 100644
Binary files a/img/clothes/upper/schoolcardigan/hold_alt_rolled_gray.png and b/img/clothes/upper/schoolcardigan/hold_alt_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/hold_gray.png b/img/clothes/upper/schoolcardigan/hold_gray.png
index efa1213b5d4db4277372c859dd6f770471e90802..36e45cc9a47db61c98fcf3e9e7403d7121d4bce7 100644
Binary files a/img/clothes/upper/schoolcardigan/hold_gray.png and b/img/clothes/upper/schoolcardigan/hold_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/left_alt_gray.png b/img/clothes/upper/schoolcardigan/left_alt_gray.png
index 3fea10d8771deb2746dd72f2c9404a3a203d69fb..9f43bcdda938d1ba9b7d2119439cc12eb545b760 100644
Binary files a/img/clothes/upper/schoolcardigan/left_alt_gray.png and b/img/clothes/upper/schoolcardigan/left_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/left_alt_rolled_gray.png b/img/clothes/upper/schoolcardigan/left_alt_rolled_gray.png
index 8457f17da47b8ac20ff5a605cfdc699eb33163f3..a6cb490c8caa43ebc941153f8a5178d31da57ac8 100644
Binary files a/img/clothes/upper/schoolcardigan/left_alt_rolled_gray.png and b/img/clothes/upper/schoolcardigan/left_alt_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/left_cover_alt_gray.png b/img/clothes/upper/schoolcardigan/left_cover_alt_gray.png
index 5cad32dd06667a503332375841262e1ab7170d86..7fd4b0d8ab93afede0897ebcb32d52a6569be58c 100644
Binary files a/img/clothes/upper/schoolcardigan/left_cover_alt_gray.png and b/img/clothes/upper/schoolcardigan/left_cover_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/left_cover_alt_rolled_gray.png b/img/clothes/upper/schoolcardigan/left_cover_alt_rolled_gray.png
index 9a55b8c5a159a33cbb3fa7c4317b4c217e84c9e1..d29bca5848c7957b25d413733d206984bfac6267 100644
Binary files a/img/clothes/upper/schoolcardigan/left_cover_alt_rolled_gray.png and b/img/clothes/upper/schoolcardigan/left_cover_alt_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/left_cover_gray.png b/img/clothes/upper/schoolcardigan/left_cover_gray.png
index c528352de686e95767c6764a1f8a94079aafdb08..0b65249aa2144558054fffe8d557516e82eff6b2 100644
Binary files a/img/clothes/upper/schoolcardigan/left_cover_gray.png and b/img/clothes/upper/schoolcardigan/left_cover_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/left_gray.png b/img/clothes/upper/schoolcardigan/left_gray.png
index 0e54e8dcc79624e076742dcd25840dd25bc0217c..1d9312e18b2386810c3a098468927a4575cacdad 100644
Binary files a/img/clothes/upper/schoolcardigan/left_gray.png and b/img/clothes/upper/schoolcardigan/left_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/right_alt_gray.png b/img/clothes/upper/schoolcardigan/right_alt_gray.png
index d90c7c0ecc94e4bcfc8719aed851d7c61761a800..dba61d8656cecead4f83801f09abe5a319b9a798 100644
Binary files a/img/clothes/upper/schoolcardigan/right_alt_gray.png and b/img/clothes/upper/schoolcardigan/right_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/right_alt_rolled_gray.png b/img/clothes/upper/schoolcardigan/right_alt_rolled_gray.png
index a31dfafaed13265a6f05c5b3c1af88a06df24cdc..f79bb7e85527e6e29ef2b8a8be58b1da5e5e76a6 100644
Binary files a/img/clothes/upper/schoolcardigan/right_alt_rolled_gray.png and b/img/clothes/upper/schoolcardigan/right_alt_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/right_cover_alt_gray.png b/img/clothes/upper/schoolcardigan/right_cover_alt_gray.png
index a124925e98e15cdf48b252b99062b4718b19d41c..0ad51f079b9b5391aaed779a96037b392705eedd 100644
Binary files a/img/clothes/upper/schoolcardigan/right_cover_alt_gray.png and b/img/clothes/upper/schoolcardigan/right_cover_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/right_cover_alt_rolled_gray.png b/img/clothes/upper/schoolcardigan/right_cover_alt_rolled_gray.png
index c7f6b6b4805ef586179db6430690fc3bab3c47c9..55e21b4169a77db749abecab2d0a285bbd7bb4c1 100644
Binary files a/img/clothes/upper/schoolcardigan/right_cover_alt_rolled_gray.png and b/img/clothes/upper/schoolcardigan/right_cover_alt_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/right_cover_gray.png b/img/clothes/upper/schoolcardigan/right_cover_gray.png
index 6b255126a1bb82560d1f5dad947dbad09050aa70..b5a931a069e9c3ec3da74a5007168849262e6eac 100644
Binary files a/img/clothes/upper/schoolcardigan/right_cover_gray.png and b/img/clothes/upper/schoolcardigan/right_cover_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/right_gray.png b/img/clothes/upper/schoolcardigan/right_gray.png
index 12cd7ea2083db7c304186812baeb9e77c9c77a7f..ed0e2d22a0f3206edd80c4b1bef939db0f9c2fe3 100644
Binary files a/img/clothes/upper/schoolcardigan/right_gray.png and b/img/clothes/upper/schoolcardigan/right_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/tattered_alt_gray.png b/img/clothes/upper/schoolcardigan/tattered_alt_gray.png
index 232072f6722bbbfcc236ad5ef95efe86a0eced73..e9f343cb4f8f9cdc8c193cdae6920e374eeecce2 100644
Binary files a/img/clothes/upper/schoolcardigan/tattered_alt_gray.png and b/img/clothes/upper/schoolcardigan/tattered_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/tattered_gray.png b/img/clothes/upper/schoolcardigan/tattered_gray.png
index ea62910edbe4dc8c005834b4e7d2ce53f45daf59..66842d56340d25bb147eb55ad5e38da95ac083ce 100644
Binary files a/img/clothes/upper/schoolcardigan/tattered_gray.png and b/img/clothes/upper/schoolcardigan/tattered_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/torn_alt_gray.png b/img/clothes/upper/schoolcardigan/torn_alt_gray.png
index 16ef627a78ab21ff67bce9c736700d30e6a3b74a..1b0846e6ea7ee54e38ea08604f5586e8d3709408 100644
Binary files a/img/clothes/upper/schoolcardigan/torn_alt_gray.png and b/img/clothes/upper/schoolcardigan/torn_alt_gray.png differ
diff --git a/img/clothes/upper/schoolcardigan/torn_gray.png b/img/clothes/upper/schoolcardigan/torn_gray.png
index 35effe4d02fb3f825240c152f72b6c712847f7eb..edd63f493b0e5d303b4ba4a9ec64fc4b7f371e5c 100644
Binary files a/img/clothes/upper/schoolcardigan/torn_gray.png and b/img/clothes/upper/schoolcardigan/torn_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/3_gray.png b/img/clothes/upper/schoolshirt/3_gray.png
index c182ab5cc2385424933977f0be365baff23d0abf..4e8adfabbc9605d009166ebca5a13ad63f39c9c5 100644
Binary files a/img/clothes/upper/schoolshirt/3_gray.png and b/img/clothes/upper/schoolshirt/3_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/5_gray.png b/img/clothes/upper/schoolshirt/5_gray.png
index 7f1c1fae90cba88f4fba5a7705bb3c04ce1540a6..65cc4ad692ca6e0264fb6eb5496abaa098119f64 100644
Binary files a/img/clothes/upper/schoolshirt/5_gray.png and b/img/clothes/upper/schoolshirt/5_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/6_gray.png b/img/clothes/upper/schoolshirt/6_gray.png
index ab54e4a02529cbddfbfa98a2f8f5daf7f514c137..7741f194a65e3a9c25f5c50fc7bf01a29eacf1e3 100644
Binary files a/img/clothes/upper/schoolshirt/6_gray.png and b/img/clothes/upper/schoolshirt/6_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/acc_gray.png b/img/clothes/upper/schoolshirt/acc_gray.png
index de8c273daa7845035cc64eb245b88786a3e6fbed..70b31150bc9ecdeaf17e5f95dfa7b6893bf03959 100644
Binary files a/img/clothes/upper/schoolshirt/acc_gray.png and b/img/clothes/upper/schoolshirt/acc_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/frayed_gray.png b/img/clothes/upper/schoolshirt/frayed_gray.png
index 48af7243791fd9a081f7890bf78fe090ddc8a359..d3287ba3e7dc0ab6b76b7847f61520d570df5140 100644
Binary files a/img/clothes/upper/schoolshirt/frayed_gray.png and b/img/clothes/upper/schoolshirt/frayed_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/full_gray.png b/img/clothes/upper/schoolshirt/full_gray.png
index a641e12b09823e048b1ceef87d6c20c55fcb459a..996a6a102edfa66687e879823c8a1841cfbd8dad 100644
Binary files a/img/clothes/upper/schoolshirt/full_gray.png and b/img/clothes/upper/schoolshirt/full_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/hold_gray.png b/img/clothes/upper/schoolshirt/hold_gray.png
index 0f388c185311612edea5d2fbbd8fe803e0783f46..9eb86aa7122a5ccd8d437b5d0046d75bf4a71618 100644
Binary files a/img/clothes/upper/schoolshirt/hold_gray.png and b/img/clothes/upper/schoolshirt/hold_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/left_cover_gray.png b/img/clothes/upper/schoolshirt/left_cover_gray.png
index fdf25c2f98bb04b798b90ed8930e65be33b8dcaf..d3037fae142a54cef904153f6e8cd0972924194c 100644
Binary files a/img/clothes/upper/schoolshirt/left_cover_gray.png and b/img/clothes/upper/schoolshirt/left_cover_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/left_gray.png b/img/clothes/upper/schoolshirt/left_gray.png
index 0acd3fc40caf11473493199c2c37a039dd8ea238..1e7d02a4f3fd26de1021939124a4d62ac0bf3f14 100644
Binary files a/img/clothes/upper/schoolshirt/left_gray.png and b/img/clothes/upper/schoolshirt/left_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/right_cover_gray.png b/img/clothes/upper/schoolshirt/right_cover_gray.png
index 17d6870766e154328fd98ca19ccef91f69cd2a24..fee57d3b8c253fb60b78e5a48a958f7fbff0d847 100644
Binary files a/img/clothes/upper/schoolshirt/right_cover_gray.png and b/img/clothes/upper/schoolshirt/right_cover_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/right_gray.png b/img/clothes/upper/schoolshirt/right_gray.png
index 7993ac70809122a2af0e8d9e931357ab51c4f54f..fcaac0dfa5a002de0a3ee329f191fc41e8157e19 100644
Binary files a/img/clothes/upper/schoolshirt/right_gray.png and b/img/clothes/upper/schoolshirt/right_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/tattered_gray.png b/img/clothes/upper/schoolshirt/tattered_gray.png
index db5e569e04e2888aa6f5f82d7c480c152c3a4b45..334b035367aaf5bac158ac03e3f3cf8ebd35c9f0 100644
Binary files a/img/clothes/upper/schoolshirt/tattered_gray.png and b/img/clothes/upper/schoolshirt/tattered_gray.png differ
diff --git a/img/clothes/upper/schoolshirt/torn_gray.png b/img/clothes/upper/schoolshirt/torn_gray.png
index 960e7d3f339bff6bbe178e0c398adb35a5818365..3af3ce92490072e8427aba7a5f6ae11a52628094 100644
Binary files a/img/clothes/upper/schoolshirt/torn_gray.png and b/img/clothes/upper/schoolshirt/torn_gray.png differ
diff --git a/img/clothes/upper/schoolvest/1_gray.png b/img/clothes/upper/schoolvest/1_gray.png
index 5255647c5310b7008f51063cd805d07443022c6a..18da473a12c0a316b8fa5c7d97960876de3a9d59 100644
Binary files a/img/clothes/upper/schoolvest/1_gray.png and b/img/clothes/upper/schoolvest/1_gray.png differ
diff --git a/img/clothes/upper/schoolvest/2_gray.png b/img/clothes/upper/schoolvest/2_gray.png
index 91a4e7b2cf94d1958de5f397ba7ed93224711eba..1574519075f5add1540feb2675e2a0690e7fcba4 100644
Binary files a/img/clothes/upper/schoolvest/2_gray.png and b/img/clothes/upper/schoolvest/2_gray.png differ
diff --git a/img/clothes/upper/schoolvest/3_gray.png b/img/clothes/upper/schoolvest/3_gray.png
index 9b23b6afae723a53dce0566537669f381063ae75..3825639c6f87bd42463fd69dbc3096f005ff3112 100644
Binary files a/img/clothes/upper/schoolvest/3_gray.png and b/img/clothes/upper/schoolvest/3_gray.png differ
diff --git a/img/clothes/upper/schoolvest/4_gray.png b/img/clothes/upper/schoolvest/4_gray.png
index b8c35de6b2f859b86dbade7a5f656767c708773e..7253e6ae25d9794152eed73f73b788524e9cba1a 100644
Binary files a/img/clothes/upper/schoolvest/4_gray.png and b/img/clothes/upper/schoolvest/4_gray.png differ
diff --git a/img/clothes/upper/schoolvest/5_gray.png b/img/clothes/upper/schoolvest/5_gray.png
index efd7bf454a6d02aac6594b2f68390694515d242f..64f22c55a56d2eef156a5f844ff8660c70371cbd 100644
Binary files a/img/clothes/upper/schoolvest/5_gray.png and b/img/clothes/upper/schoolvest/5_gray.png differ
diff --git a/img/clothes/upper/schoolvest/acc_frayed_gray.png b/img/clothes/upper/schoolvest/acc_frayed_gray.png
index 7c858d48569ca39222b8296bf549b1b1bfc7527c..5395678665bfb95d3016aa5f62abfc7c7bde5a52 100644
Binary files a/img/clothes/upper/schoolvest/acc_frayed_gray.png and b/img/clothes/upper/schoolvest/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/schoolvest/acc_full_gray.png b/img/clothes/upper/schoolvest/acc_full_gray.png
index 33e6a5012afebad91c27a6b624d3a7a04f0cb5e1..047b146884d3e9f97b290d5cbe51361da0c67190 100644
Binary files a/img/clothes/upper/schoolvest/acc_full_gray.png and b/img/clothes/upper/schoolvest/acc_full_gray.png differ
diff --git a/img/clothes/upper/schoolvest/acc_tattered_gray.png b/img/clothes/upper/schoolvest/acc_tattered_gray.png
index 280004298994cca447747d3b94bc99d481e6c485..7b0a763088631fb261df6b371c1b980a9d445f5d 100644
Binary files a/img/clothes/upper/schoolvest/acc_tattered_gray.png and b/img/clothes/upper/schoolvest/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/schoolvest/acc_torn_gray.png b/img/clothes/upper/schoolvest/acc_torn_gray.png
index c4a6ea8a3399cf972a4cf5c037251c1425cde79b..75a9e183f08131c8b05bb33540ffc77b7af9f105 100644
Binary files a/img/clothes/upper/schoolvest/acc_torn_gray.png and b/img/clothes/upper/schoolvest/acc_torn_gray.png differ
diff --git a/img/clothes/upper/schoolvest/frayed_gray.png b/img/clothes/upper/schoolvest/frayed_gray.png
index ea29d986d1391143daacdd3c0de009ada0883f32..96c9bc8559822a54d552d55b4f67ba033c0b8928 100644
Binary files a/img/clothes/upper/schoolvest/frayed_gray.png and b/img/clothes/upper/schoolvest/frayed_gray.png differ
diff --git a/img/clothes/upper/schoolvest/full_gray.png b/img/clothes/upper/schoolvest/full_gray.png
index 1041f51a25377144d94fa7eb3897c37490015f77..6a6ad60008e70df19c01f40db0fae9f70d9efa3c 100644
Binary files a/img/clothes/upper/schoolvest/full_gray.png and b/img/clothes/upper/schoolvest/full_gray.png differ
diff --git a/img/clothes/upper/schoolvest/hold_gray.png b/img/clothes/upper/schoolvest/hold_gray.png
index 96e8c46cf53b414929d5a5ea890d7c328add65a6..9e57ce20cc3d89f66beb8ca6f9e12088ceffc949 100644
Binary files a/img/clothes/upper/schoolvest/hold_gray.png and b/img/clothes/upper/schoolvest/hold_gray.png differ
diff --git a/img/clothes/upper/schoolvest/hold_rolled_gray.png b/img/clothes/upper/schoolvest/hold_rolled_gray.png
index d7e098b93948a6197eebfca4973a4973a58e43fc..bae7537333e42e98aef6e05faf9561db83191139 100644
Binary files a/img/clothes/upper/schoolvest/hold_rolled_gray.png and b/img/clothes/upper/schoolvest/hold_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolvest/left_cover_gray.png b/img/clothes/upper/schoolvest/left_cover_gray.png
index 45e70b22fc5d115b0a3f1c23bc906c88737e23a1..29109e39da8567b6506f4f5a95cfa875228d0f9c 100644
Binary files a/img/clothes/upper/schoolvest/left_cover_gray.png and b/img/clothes/upper/schoolvest/left_cover_gray.png differ
diff --git a/img/clothes/upper/schoolvest/left_cover_rolled_gray.png b/img/clothes/upper/schoolvest/left_cover_rolled_gray.png
index 9a55b8c5a159a33cbb3fa7c4317b4c217e84c9e1..d29bca5848c7957b25d413733d206984bfac6267 100644
Binary files a/img/clothes/upper/schoolvest/left_cover_rolled_gray.png and b/img/clothes/upper/schoolvest/left_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolvest/left_gray.png b/img/clothes/upper/schoolvest/left_gray.png
index 65179eba4aa3c97e87950af3e0e5fd1b52450726..f542f4ff9860d8dcc0ff8d93d54e4201a22358af 100644
Binary files a/img/clothes/upper/schoolvest/left_gray.png and b/img/clothes/upper/schoolvest/left_gray.png differ
diff --git a/img/clothes/upper/schoolvest/left_rolled_gray.png b/img/clothes/upper/schoolvest/left_rolled_gray.png
index 8457f17da47b8ac20ff5a605cfdc699eb33163f3..a6cb490c8caa43ebc941153f8a5178d31da57ac8 100644
Binary files a/img/clothes/upper/schoolvest/left_rolled_gray.png and b/img/clothes/upper/schoolvest/left_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolvest/right_cover_gray.png b/img/clothes/upper/schoolvest/right_cover_gray.png
index 538a41cefedb56611d86aaa72b3fa13f8acab56d..a3f3a6736d3632b62f37c2f4f723d2b2c17b8bf1 100644
Binary files a/img/clothes/upper/schoolvest/right_cover_gray.png and b/img/clothes/upper/schoolvest/right_cover_gray.png differ
diff --git a/img/clothes/upper/schoolvest/right_cover_rolled_gray.png b/img/clothes/upper/schoolvest/right_cover_rolled_gray.png
index c7f6b6b4805ef586179db6430690fc3bab3c47c9..55e21b4169a77db749abecab2d0a285bbd7bb4c1 100644
Binary files a/img/clothes/upper/schoolvest/right_cover_rolled_gray.png and b/img/clothes/upper/schoolvest/right_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolvest/right_gray.png b/img/clothes/upper/schoolvest/right_gray.png
index f066ca7f627fc7728efaa45810bd6a667d4f4564..20c51d9d9127334b15a5a36ab27a8a6650c2f835 100644
Binary files a/img/clothes/upper/schoolvest/right_gray.png and b/img/clothes/upper/schoolvest/right_gray.png differ
diff --git a/img/clothes/upper/schoolvest/right_rolled_gray.png b/img/clothes/upper/schoolvest/right_rolled_gray.png
index a31dfafaed13265a6f05c5b3c1af88a06df24cdc..f79bb7e85527e6e29ef2b8a8be58b1da5e5e76a6 100644
Binary files a/img/clothes/upper/schoolvest/right_rolled_gray.png and b/img/clothes/upper/schoolvest/right_rolled_gray.png differ
diff --git a/img/clothes/upper/schoolvest/tattered_gray.png b/img/clothes/upper/schoolvest/tattered_gray.png
index 07e129835650154e2288293fde8f9b31e7e0342e..d6e9dfdb703dff1b9902b9f0f39c4e2be105d011 100644
Binary files a/img/clothes/upper/schoolvest/tattered_gray.png and b/img/clothes/upper/schoolvest/tattered_gray.png differ
diff --git a/img/clothes/upper/schoolvest/torn_gray.png b/img/clothes/upper/schoolvest/torn_gray.png
index b37a6877da4ab20f6c8c6a855ea0650f3c645482..7ded483a13339d1133ac6cdb894c551e99f0a2ed 100644
Binary files a/img/clothes/upper/schoolvest/torn_gray.png and b/img/clothes/upper/schoolvest/torn_gray.png differ
diff --git a/img/clothes/upper/scout/acc_gray.png b/img/clothes/upper/scout/acc_gray.png
index 18c7a0f7545cffc7991c2158391602da504e5762..22f64dc35829d1503df41dc5e27e5770eb1b64f6 100644
Binary files a/img/clothes/upper/scout/acc_gray.png and b/img/clothes/upper/scout/acc_gray.png differ
diff --git a/img/clothes/upper/scout/frayed_gray.png b/img/clothes/upper/scout/frayed_gray.png
index 4326a418c5f649a0d0572d2dee8aa75a93652a77..fde327083b8b9584af9b21814a53c9c1278d25af 100644
Binary files a/img/clothes/upper/scout/frayed_gray.png and b/img/clothes/upper/scout/frayed_gray.png differ
diff --git a/img/clothes/upper/scout/full_gray.png b/img/clothes/upper/scout/full_gray.png
index 125be1649cd42ed9aad28417a8da9005a19f7e7f..cc0c7904a80a0c4748dad70d0e1a8425da72fc78 100644
Binary files a/img/clothes/upper/scout/full_gray.png and b/img/clothes/upper/scout/full_gray.png differ
diff --git a/img/clothes/upper/scout/hold_gray.png b/img/clothes/upper/scout/hold_gray.png
index ca94ba815bacc1c0fc8a28aff33289aec9d9ea84..1c423ae9089a7b3430cb3fe446b20881fa695728 100644
Binary files a/img/clothes/upper/scout/hold_gray.png and b/img/clothes/upper/scout/hold_gray.png differ
diff --git a/img/clothes/upper/scout/left_cover_gray.png b/img/clothes/upper/scout/left_cover_gray.png
index 84eac3b038d1f6dbc99eabc1a50dd366b43ed563..b493e5d3480c2183316862c80b7d8601036869e1 100644
Binary files a/img/clothes/upper/scout/left_cover_gray.png and b/img/clothes/upper/scout/left_cover_gray.png differ
diff --git a/img/clothes/upper/scout/left_gray.png b/img/clothes/upper/scout/left_gray.png
index e8efdee437fce9b392016e18f567da7e989a5c4b..9e36b0d2e18b8b6619a76a07774243267f9077c0 100644
Binary files a/img/clothes/upper/scout/left_gray.png and b/img/clothes/upper/scout/left_gray.png differ
diff --git a/img/clothes/upper/scout/right_cover_gray.png b/img/clothes/upper/scout/right_cover_gray.png
index cdf9da247aa4c7cc54bdf384ee09c2a4f505eaa9..7ad6a352edd49566b5238c501fb97fd6a78efcdb 100644
Binary files a/img/clothes/upper/scout/right_cover_gray.png and b/img/clothes/upper/scout/right_cover_gray.png differ
diff --git a/img/clothes/upper/scout/right_gray.png b/img/clothes/upper/scout/right_gray.png
index 84ced127dc9524e8a54260d9ff3ab56de12f0f68..b1b6bb1fae285cb3d6d3c033299a16a622743d1a 100644
Binary files a/img/clothes/upper/scout/right_gray.png and b/img/clothes/upper/scout/right_gray.png differ
diff --git a/img/clothes/upper/scout/tattered_gray.png b/img/clothes/upper/scout/tattered_gray.png
index e3df8b46ceb11f533556781e7ffc270ba8536ef3..75bf314e9057f1624598e36e41b5616f80ee0fc0 100644
Binary files a/img/clothes/upper/scout/tattered_gray.png and b/img/clothes/upper/scout/tattered_gray.png differ
diff --git a/img/clothes/upper/scout/torn_gray.png b/img/clothes/upper/scout/torn_gray.png
index 034434a6cb3e3d79041228c41c0558bc857d472a..d4ebec0ae72ecb3d83575dc4ca95fba885e5457e 100644
Binary files a/img/clothes/upper/scout/torn_gray.png and b/img/clothes/upper/scout/torn_gray.png differ
diff --git a/img/clothes/upper/serafuku/0_gray.png b/img/clothes/upper/serafuku/0_gray.png
index 8bc1d9f6a25d84c1a7f20b94e96ef9e7dd99dafd..a261949e32355d426b4d8c0840db596835465da4 100644
Binary files a/img/clothes/upper/serafuku/0_gray.png and b/img/clothes/upper/serafuku/0_gray.png differ
diff --git a/img/clothes/upper/serafuku/2_gray.png b/img/clothes/upper/serafuku/2_gray.png
index 6499f27c77174ded98d968c7798d5ee769a888a8..228b63e662a459a9a590292c046a66b48a8bb770 100644
Binary files a/img/clothes/upper/serafuku/2_gray.png and b/img/clothes/upper/serafuku/2_gray.png differ
diff --git a/img/clothes/upper/serafuku/3_gray.png b/img/clothes/upper/serafuku/3_gray.png
index c7e13b44522cad37185abb1273608be810c03ab4..9f9c2a0a8705ec596c6fcc0c247fedcf2cd36219 100644
Binary files a/img/clothes/upper/serafuku/3_gray.png and b/img/clothes/upper/serafuku/3_gray.png differ
diff --git a/img/clothes/upper/serafuku/4_gray.png b/img/clothes/upper/serafuku/4_gray.png
index ee74ef9f183e0eef457f12d571548171b4f1fcf4..842269464883e70102ca3f36a7714ce9a9c52bae 100644
Binary files a/img/clothes/upper/serafuku/4_gray.png and b/img/clothes/upper/serafuku/4_gray.png differ
diff --git a/img/clothes/upper/serafuku/acc_gray.png b/img/clothes/upper/serafuku/acc_gray.png
index 09c3500a4fb540b9264337fbb5b8fc11ed28c39d..ee58131712ae4d7407c0e018241b6fefd4141595 100644
Binary files a/img/clothes/upper/serafuku/acc_gray.png and b/img/clothes/upper/serafuku/acc_gray.png differ
diff --git a/img/clothes/upper/serafuku/frayed_gray.png b/img/clothes/upper/serafuku/frayed_gray.png
index e7cb4c306493c1f092955a610543d67bdb88907e..4f71cd67e712f4803b9c3ccd1c92b0c0e09044b6 100644
Binary files a/img/clothes/upper/serafuku/frayed_gray.png and b/img/clothes/upper/serafuku/frayed_gray.png differ
diff --git a/img/clothes/upper/serafuku/full_gray.png b/img/clothes/upper/serafuku/full_gray.png
index e7cb4c306493c1f092955a610543d67bdb88907e..4f71cd67e712f4803b9c3ccd1c92b0c0e09044b6 100644
Binary files a/img/clothes/upper/serafuku/full_gray.png and b/img/clothes/upper/serafuku/full_gray.png differ
diff --git a/img/clothes/upper/serafuku/hold_gray.png b/img/clothes/upper/serafuku/hold_gray.png
index bf8d3fdbda28046fd324689ef9008abc1a3054ad..51d3cbde00865079807336aa7be94a5278532f1e 100644
Binary files a/img/clothes/upper/serafuku/hold_gray.png and b/img/clothes/upper/serafuku/hold_gray.png differ
diff --git a/img/clothes/upper/serafuku/left_cover_gray.png b/img/clothes/upper/serafuku/left_cover_gray.png
index 07e16f3b9caec9b5efc98bf2c993593b7b76be81..3f401306c9e6eb6b5b67c16b8859c97b906b664b 100644
Binary files a/img/clothes/upper/serafuku/left_cover_gray.png and b/img/clothes/upper/serafuku/left_cover_gray.png differ
diff --git a/img/clothes/upper/serafuku/left_gray.png b/img/clothes/upper/serafuku/left_gray.png
index 8f2c4023d4b3c7a7859b75eae78060d8cf31413f..4bad9f8bcaf2c4bf3a28017f8c4247e3e78f3bc9 100644
Binary files a/img/clothes/upper/serafuku/left_gray.png and b/img/clothes/upper/serafuku/left_gray.png differ
diff --git a/img/clothes/upper/serafuku/right_cover_gray.png b/img/clothes/upper/serafuku/right_cover_gray.png
index 8e20e4a16c4c71d0e7fbbd53db64f550b915a89f..8e40aa0fc119962e947b82460c1df4f1195e8ce2 100644
Binary files a/img/clothes/upper/serafuku/right_cover_gray.png and b/img/clothes/upper/serafuku/right_cover_gray.png differ
diff --git a/img/clothes/upper/serafuku/right_gray.png b/img/clothes/upper/serafuku/right_gray.png
index 7bbcc8e0a3b4d19df843e6897d0e7193b8e48edd..651fc229862da92097a7c1c83aa4ab7481b778d0 100644
Binary files a/img/clothes/upper/serafuku/right_gray.png and b/img/clothes/upper/serafuku/right_gray.png differ
diff --git a/img/clothes/upper/serafuku/tattered_gray.png b/img/clothes/upper/serafuku/tattered_gray.png
index e7cb4c306493c1f092955a610543d67bdb88907e..4f71cd67e712f4803b9c3ccd1c92b0c0e09044b6 100644
Binary files a/img/clothes/upper/serafuku/tattered_gray.png and b/img/clothes/upper/serafuku/tattered_gray.png differ
diff --git a/img/clothes/upper/serafuku/torn_gray.png b/img/clothes/upper/serafuku/torn_gray.png
index e7cb4c306493c1f092955a610543d67bdb88907e..4f71cd67e712f4803b9c3ccd1c92b0c0e09044b6 100644
Binary files a/img/clothes/upper/serafuku/torn_gray.png and b/img/clothes/upper/serafuku/torn_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/4_gray.png b/img/clothes/upper/serafuku_new/4_gray.png
index e58247bd39fa025fb0b832f851d017e66b7ae6ca..e78908bb01cce549aa9d74477f9bf528eb8eb2df 100644
Binary files a/img/clothes/upper/serafuku_new/4_gray.png and b/img/clothes/upper/serafuku_new/4_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/5_gray.png b/img/clothes/upper/serafuku_new/5_gray.png
index 94a53a9253c088f993f17a7daea2fcef26fe778e..76af8b9c110b8c2cea5ba695e6299dc9ecdd3765 100644
Binary files a/img/clothes/upper/serafuku_new/5_gray.png and b/img/clothes/upper/serafuku_new/5_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/6_gray.png b/img/clothes/upper/serafuku_new/6_gray.png
index 2719a7c5e0410a5ce755898b6e287ef3695d0252..e016c38e5b9571834ff4d85952bbe6e5fd69e934 100644
Binary files a/img/clothes/upper/serafuku_new/6_gray.png and b/img/clothes/upper/serafuku_new/6_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/acc_gray.png b/img/clothes/upper/serafuku_new/acc_gray.png
index edf1e62001997f3d278c1fb930ead06582861706..30e2bb584526d032a463faf6e875d39e6b3a4918 100644
Binary files a/img/clothes/upper/serafuku_new/acc_gray.png and b/img/clothes/upper/serafuku_new/acc_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/frayed_gray.png b/img/clothes/upper/serafuku_new/frayed_gray.png
index ba4e444b9277c10fa87975dfd27956fd2cef63aa..72c975b19377e64cc84ae847f47e845ae4015fc2 100644
Binary files a/img/clothes/upper/serafuku_new/frayed_gray.png and b/img/clothes/upper/serafuku_new/frayed_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/full_gray.png b/img/clothes/upper/serafuku_new/full_gray.png
index 23e62df274d253ed6191d5c747ce4ce800d69c8c..085baa69afb3b30bc24709fcd6a11265aafeb1cd 100644
Binary files a/img/clothes/upper/serafuku_new/full_gray.png and b/img/clothes/upper/serafuku_new/full_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/hold_acc_gray.png b/img/clothes/upper/serafuku_new/hold_acc_gray.png
index 54590fc4bdce01e07508b93340f6d5541a1d6097..fc1c078156cbf6947ae6908538e0ebde0335862e 100644
Binary files a/img/clothes/upper/serafuku_new/hold_acc_gray.png and b/img/clothes/upper/serafuku_new/hold_acc_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/hold_gray.png b/img/clothes/upper/serafuku_new/hold_gray.png
index 59a6c7f99f74d865eb5aba4861798f1ebdc65545..b78b3c6a39570be0441793716ed1c82d4485a4cb 100644
Binary files a/img/clothes/upper/serafuku_new/hold_gray.png and b/img/clothes/upper/serafuku_new/hold_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/left_acc_gray.png b/img/clothes/upper/serafuku_new/left_acc_gray.png
index adaa43e552042f5ee895e43d0aa13bc4bc271797..59637f45acb7302095e530da38191d99feb09a1c 100644
Binary files a/img/clothes/upper/serafuku_new/left_acc_gray.png and b/img/clothes/upper/serafuku_new/left_acc_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/left_cover_acc_gray.png b/img/clothes/upper/serafuku_new/left_cover_acc_gray.png
index 3f748da5316ba09bff1c4e79bb7a3b7604f1ca26..81f57a1eb93884336501ce639a1e89adb6e5af18 100644
Binary files a/img/clothes/upper/serafuku_new/left_cover_acc_gray.png and b/img/clothes/upper/serafuku_new/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/left_cover_gray.png b/img/clothes/upper/serafuku_new/left_cover_gray.png
index 540e639e90cfc751c3579f2d612999c494db0806..a816c358d1827e2467babc0285d0145c8a9bdd7a 100644
Binary files a/img/clothes/upper/serafuku_new/left_cover_gray.png and b/img/clothes/upper/serafuku_new/left_cover_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/left_gray.png b/img/clothes/upper/serafuku_new/left_gray.png
index af68a37bbe70ab1abb001cb8a32a188a6234133f..30ffc85faac8e8b03e33de583f5d565019833ff5 100644
Binary files a/img/clothes/upper/serafuku_new/left_gray.png and b/img/clothes/upper/serafuku_new/left_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/right_acc_gray.png b/img/clothes/upper/serafuku_new/right_acc_gray.png
index a42411c423db6f4a808bbf6959fc937ffa3c9c1d..a872c1a159959d162ca6a68afd96aa688e7868bd 100644
Binary files a/img/clothes/upper/serafuku_new/right_acc_gray.png and b/img/clothes/upper/serafuku_new/right_acc_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/right_cover_acc_gray.png b/img/clothes/upper/serafuku_new/right_cover_acc_gray.png
index 0c870bcc6a3f8bb3b7d306719bb4f434cc0499f7..65fcd8d1b01a7a91938c93c3ada002839a1dd396 100644
Binary files a/img/clothes/upper/serafuku_new/right_cover_acc_gray.png and b/img/clothes/upper/serafuku_new/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/right_cover_gray.png b/img/clothes/upper/serafuku_new/right_cover_gray.png
index fad2c8fc1aa1d84802776700ace5e32259549b66..61ecf76d86c9392bfde035b15058bd5ee0393db0 100644
Binary files a/img/clothes/upper/serafuku_new/right_cover_gray.png and b/img/clothes/upper/serafuku_new/right_cover_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/right_gray.png b/img/clothes/upper/serafuku_new/right_gray.png
index ac190d8e1e41f8afabf4edf526124bb8611f2e4c..1b4ef13a8ba36da98d073842d9adb010d018ab88 100644
Binary files a/img/clothes/upper/serafuku_new/right_gray.png and b/img/clothes/upper/serafuku_new/right_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/tattered_gray.png b/img/clothes/upper/serafuku_new/tattered_gray.png
index c3085c34e4543d2a8fdb71a8952325193c55e3ae..3b5cfac86cc34b7acd9c9635c6c3f6e3cd5d13f0 100644
Binary files a/img/clothes/upper/serafuku_new/tattered_gray.png and b/img/clothes/upper/serafuku_new/tattered_gray.png differ
diff --git a/img/clothes/upper/serafuku_new/torn_gray.png b/img/clothes/upper/serafuku_new/torn_gray.png
index 99ea93f0a0c250552932bd82419e72ee681397d1..4461f495a5df35033990abbb6c43062383a0761a 100644
Binary files a/img/clothes/upper/serafuku_new/torn_gray.png and b/img/clothes/upper/serafuku_new/torn_gray.png differ
diff --git a/img/clothes/upper/shadbelly/3.png b/img/clothes/upper/shadbelly/3.png
index 693a08093a378e6c3060a7dc7ad7485c27e084b0..f07d226513aea112e6250f8ac42a322ff74a0b0a 100644
Binary files a/img/clothes/upper/shadbelly/3.png and b/img/clothes/upper/shadbelly/3.png differ
diff --git a/img/clothes/upper/shadbelly/5.png b/img/clothes/upper/shadbelly/5.png
index e1046e770c75bddc10928329b7edcd23c52f23af..3abe677bb8a5ad931fb5f4d935f388afd782ee9a 100644
Binary files a/img/clothes/upper/shadbelly/5.png and b/img/clothes/upper/shadbelly/5.png differ
diff --git a/img/clothes/upper/shadbelly/frayed.png b/img/clothes/upper/shadbelly/frayed.png
index 6b879587326af1286fc5d2b70968e8d37791c898..f8aabed26ebe8eb9b34fa01b6562e5d7655f5fc7 100644
Binary files a/img/clothes/upper/shadbelly/frayed.png and b/img/clothes/upper/shadbelly/frayed.png differ
diff --git a/img/clothes/upper/shadbelly/full.png b/img/clothes/upper/shadbelly/full.png
index 6b879587326af1286fc5d2b70968e8d37791c898..f8aabed26ebe8eb9b34fa01b6562e5d7655f5fc7 100644
Binary files a/img/clothes/upper/shadbelly/full.png and b/img/clothes/upper/shadbelly/full.png differ
diff --git a/img/clothes/upper/shadbelly/hold.png b/img/clothes/upper/shadbelly/hold.png
index 3d6f8f6d15d43c77dcfe104512da57b41851db04..6c0e403c671c2b0392b3d020b7d61a0e014b8d29 100644
Binary files a/img/clothes/upper/shadbelly/hold.png and b/img/clothes/upper/shadbelly/hold.png differ
diff --git a/img/clothes/upper/shadbelly/left.png b/img/clothes/upper/shadbelly/left.png
index cfb8f4adb2922d48b097dcfe1e9d836552f911cf..1194612ad4e2ec0cd47e33ba08731887566b2d0a 100644
Binary files a/img/clothes/upper/shadbelly/left.png and b/img/clothes/upper/shadbelly/left.png differ
diff --git a/img/clothes/upper/shadbelly/left_cover.png b/img/clothes/upper/shadbelly/left_cover.png
index b44817681380b5db87e329212eda91b5a13b3d93..e33292e6f1fb4d1ec43d6223c514d3601fa19517 100644
Binary files a/img/clothes/upper/shadbelly/left_cover.png and b/img/clothes/upper/shadbelly/left_cover.png differ
diff --git a/img/clothes/upper/shadbelly/right.png b/img/clothes/upper/shadbelly/right.png
index b28022c935a8e74eae4cf5b9624d7578f49727e9..092d295ba37844bad160933a5dc8e7293dabbeef 100644
Binary files a/img/clothes/upper/shadbelly/right.png and b/img/clothes/upper/shadbelly/right.png differ
diff --git a/img/clothes/upper/shadbelly/right_cover.png b/img/clothes/upper/shadbelly/right_cover.png
index 5f8effec04a261ea0396f6ab5ed34836f095b582..c4c97e8fcc53be59e5ba3e6c64f99f7bc123494e 100644
Binary files a/img/clothes/upper/shadbelly/right_cover.png and b/img/clothes/upper/shadbelly/right_cover.png differ
diff --git a/img/clothes/upper/shadbelly/tattered.png b/img/clothes/upper/shadbelly/tattered.png
index 6b879587326af1286fc5d2b70968e8d37791c898..f8aabed26ebe8eb9b34fa01b6562e5d7655f5fc7 100644
Binary files a/img/clothes/upper/shadbelly/tattered.png and b/img/clothes/upper/shadbelly/tattered.png differ
diff --git a/img/clothes/upper/shadbelly/torn.png b/img/clothes/upper/shadbelly/torn.png
index 6b879587326af1286fc5d2b70968e8d37791c898..f8aabed26ebe8eb9b34fa01b6562e5d7655f5fc7 100644
Binary files a/img/clothes/upper/shadbelly/torn.png and b/img/clothes/upper/shadbelly/torn.png differ
diff --git a/img/clothes/upper/shortballgown/3_gray.png b/img/clothes/upper/shortballgown/3_gray.png
index 91256161a2d5b8dda5b1cd8ed53c8ac1a4b88e18..ba2e16c3ccf6ca644a5fd9ed3f2fe93d9192c84a 100644
Binary files a/img/clothes/upper/shortballgown/3_gray.png and b/img/clothes/upper/shortballgown/3_gray.png differ
diff --git a/img/clothes/upper/shortballgown/5_gray.png b/img/clothes/upper/shortballgown/5_gray.png
index 6b95e3dd18300980c9735b40f9dcb91a460465c5..249321b2b8b19808ce5a2aa7b4c6a9d55d4926e4 100644
Binary files a/img/clothes/upper/shortballgown/5_gray.png and b/img/clothes/upper/shortballgown/5_gray.png differ
diff --git a/img/clothes/upper/shortballgown/acc_gray.png b/img/clothes/upper/shortballgown/acc_gray.png
index ccea0ec02ba282c88e880a6869b4248a797f325c..c805d3bcecf7659aadf12586f72911a7b969104d 100644
Binary files a/img/clothes/upper/shortballgown/acc_gray.png and b/img/clothes/upper/shortballgown/acc_gray.png differ
diff --git a/img/clothes/upper/shortballgown/frayed_gray.png b/img/clothes/upper/shortballgown/frayed_gray.png
index 6593c1d45a7ee5c7e84bc277846db9b748520a74..ab8ad1382baa2972adae2dd45df13d4f4576e060 100644
Binary files a/img/clothes/upper/shortballgown/frayed_gray.png and b/img/clothes/upper/shortballgown/frayed_gray.png differ
diff --git a/img/clothes/upper/shortballgown/full_gray.png b/img/clothes/upper/shortballgown/full_gray.png
index 0b7b9f12f7bc1e2780914c718098390f5c33d21d..403e1e96bed425ff2d2199b8acf4852f2c748f84 100644
Binary files a/img/clothes/upper/shortballgown/full_gray.png and b/img/clothes/upper/shortballgown/full_gray.png differ
diff --git a/img/clothes/upper/shortballgown/tattered_gray.png b/img/clothes/upper/shortballgown/tattered_gray.png
index 23cef4dba589782ba1056af3cec1b157d5e0f90d..77336e4ff708ac84b05827b7c064d7dabaab4379 100644
Binary files a/img/clothes/upper/shortballgown/tattered_gray.png and b/img/clothes/upper/shortballgown/tattered_gray.png differ
diff --git a/img/clothes/upper/shortballgown/torn_gray.png b/img/clothes/upper/shortballgown/torn_gray.png
index 69a7757993493e3650cb83695ba9cd055ee8f67d..523504afc2d9b401471c973308ce225d5e9691ba 100644
Binary files a/img/clothes/upper/shortballgown/torn_gray.png and b/img/clothes/upper/shortballgown/torn_gray.png differ
diff --git a/img/clothes/upper/shrinemaiden/3.png b/img/clothes/upper/shrinemaiden/3.png
index 3160ebb3fa3c7f08ae896e15f9168bcd18f3f940..d0433c34e55c1bf9573fadcc91b3008a47157aca 100644
Binary files a/img/clothes/upper/shrinemaiden/3.png and b/img/clothes/upper/shrinemaiden/3.png differ
diff --git a/img/clothes/upper/shrinemaiden/4.png b/img/clothes/upper/shrinemaiden/4.png
index 25baf6ce2c8a73371edcec017a2e6a3d1f8219f2..ae016c6e2568296ad77ec080d41ca453d1bc95ed 100644
Binary files a/img/clothes/upper/shrinemaiden/4.png and b/img/clothes/upper/shrinemaiden/4.png differ
diff --git a/img/clothes/upper/shrinemaiden/5.png b/img/clothes/upper/shrinemaiden/5.png
index 2bfff4028d0908cdab696f81e0956c02fe54d6fb..5fb36977b4bf1ce26175e9ba39cbce784a2a1e97 100644
Binary files a/img/clothes/upper/shrinemaiden/5.png and b/img/clothes/upper/shrinemaiden/5.png differ
diff --git a/img/clothes/upper/shrinemaiden/frayed.png b/img/clothes/upper/shrinemaiden/frayed.png
index 0ec5b5c8ea96a2926cdfa865475a22a49d052c4a..3374cf78b067c15e3c5112e1e85b2958cdbe0389 100644
Binary files a/img/clothes/upper/shrinemaiden/frayed.png and b/img/clothes/upper/shrinemaiden/frayed.png differ
diff --git a/img/clothes/upper/shrinemaiden/full.png b/img/clothes/upper/shrinemaiden/full.png
index 2a869bf0ce1282580e6f668c12fc4651bb896bb8..6948015b9fd0932b3446e331a07702f365ca0e68 100644
Binary files a/img/clothes/upper/shrinemaiden/full.png and b/img/clothes/upper/shrinemaiden/full.png differ
diff --git a/img/clothes/upper/shrinemaiden/hold.png b/img/clothes/upper/shrinemaiden/hold.png
index ffd61fd566ac24638f0e6dd9f268ab21d2b52cc6..69ecc1534be7e9d86715be2759d4a5f75241e98b 100644
Binary files a/img/clothes/upper/shrinemaiden/hold.png and b/img/clothes/upper/shrinemaiden/hold.png differ
diff --git a/img/clothes/upper/shrinemaiden/left.png b/img/clothes/upper/shrinemaiden/left.png
index 24624b8bac081920dcf4592d039d4efac337e952..d82fa2aaba26d739938f00229cb3528cefd9dae7 100644
Binary files a/img/clothes/upper/shrinemaiden/left.png and b/img/clothes/upper/shrinemaiden/left.png differ
diff --git a/img/clothes/upper/shrinemaiden/left_cover.png b/img/clothes/upper/shrinemaiden/left_cover.png
index 4ab7789b4c7eaa24cf8bb62afaa953571629c0d8..d7a80f3fecd8ce1ca4944c9aa4d0b3d42349e856 100644
Binary files a/img/clothes/upper/shrinemaiden/left_cover.png and b/img/clothes/upper/shrinemaiden/left_cover.png differ
diff --git a/img/clothes/upper/shrinemaiden/right.png b/img/clothes/upper/shrinemaiden/right.png
index a36afe9777f04749f52686f0001058c0f67ef05c..81061bdb881ab502e0db4fbd1737fd7ae370e2f7 100644
Binary files a/img/clothes/upper/shrinemaiden/right.png and b/img/clothes/upper/shrinemaiden/right.png differ
diff --git a/img/clothes/upper/shrinemaiden/right_cover.png b/img/clothes/upper/shrinemaiden/right_cover.png
index 0d1318cf570099a134cbd06694744bf4ccec1c8a..e6039788bfe61a5cffcd1216f44d5eff98a8bbf2 100644
Binary files a/img/clothes/upper/shrinemaiden/right_cover.png and b/img/clothes/upper/shrinemaiden/right_cover.png differ
diff --git a/img/clothes/upper/shrinemaiden/tattered.png b/img/clothes/upper/shrinemaiden/tattered.png
index 8d2e9cb570faa5c7c172d024e7bee05278ffef3f..81cbddde8d81fff4822b179897ffbb1edd57f04c 100644
Binary files a/img/clothes/upper/shrinemaiden/tattered.png and b/img/clothes/upper/shrinemaiden/tattered.png differ
diff --git a/img/clothes/upper/shrinemaiden/torn.png b/img/clothes/upper/shrinemaiden/torn.png
index cefcbf9687b211ec1e3f46077d201771774b1156..e8740f8e688ab179a29482e55acd1a2813ebd3ff 100644
Binary files a/img/clothes/upper/shrinemaiden/torn.png and b/img/clothes/upper/shrinemaiden/torn.png differ
diff --git a/img/clothes/upper/singlebreasted/2_gray.png b/img/clothes/upper/singlebreasted/2_gray.png
index 7fa6af5692819786187ac11ed477c21f34c962a2..332f6437f033d13f3c3dabac195a045bc93a5111 100644
Binary files a/img/clothes/upper/singlebreasted/2_gray.png and b/img/clothes/upper/singlebreasted/2_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/3_gray.png b/img/clothes/upper/singlebreasted/3_gray.png
index 08230f31f7501042223395aef8fe2a08f52bb798..eee4b1eb2850316a57280b1fb45f00adaf6e2e5e 100644
Binary files a/img/clothes/upper/singlebreasted/3_gray.png and b/img/clothes/upper/singlebreasted/3_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/4_gray.png b/img/clothes/upper/singlebreasted/4_gray.png
index 83e67df2c7b6aa2055f3b9a3b5543fbbcf88ba90..ff652dc74f313622c7b8acd5437645bb6a7fb344 100644
Binary files a/img/clothes/upper/singlebreasted/4_gray.png and b/img/clothes/upper/singlebreasted/4_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/6_gray.png b/img/clothes/upper/singlebreasted/6_gray.png
index 962c1d51171f1e30fdb98c1d1a04be9b938385b6..490a16c6759e785dd68e74db2c6d548ac4d8caf8 100644
Binary files a/img/clothes/upper/singlebreasted/6_gray.png and b/img/clothes/upper/singlebreasted/6_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/acc_gray.png b/img/clothes/upper/singlebreasted/acc_gray.png
index aae905267b17235263ae61c13eb16818ac6e91a7..833e9ef764f756ee5fbbbf351b88ceb758443607 100644
Binary files a/img/clothes/upper/singlebreasted/acc_gray.png and b/img/clothes/upper/singlebreasted/acc_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/frayed_gray.png b/img/clothes/upper/singlebreasted/frayed_gray.png
index f2cbd0345b6f0800c757133ae70eb49d05569efe..4d1aa89a013f7635d9a770fc27f0f4523d5785d8 100644
Binary files a/img/clothes/upper/singlebreasted/frayed_gray.png and b/img/clothes/upper/singlebreasted/frayed_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/full_gray.png b/img/clothes/upper/singlebreasted/full_gray.png
index e73e74942bcce09abb0c5abc0ad961aaf19b899a..f6a91bb0f91e1f05fce50860f46ba38ec84102d2 100644
Binary files a/img/clothes/upper/singlebreasted/full_gray.png and b/img/clothes/upper/singlebreasted/full_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/hold_acc_gray.png b/img/clothes/upper/singlebreasted/hold_acc_gray.png
index 0fdaa5a301a305996759a36a6d94a97254bb20b6..201e819783b94e994dfe539d3f34c08bffe795d2 100644
Binary files a/img/clothes/upper/singlebreasted/hold_acc_gray.png and b/img/clothes/upper/singlebreasted/hold_acc_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/hold_gray.png b/img/clothes/upper/singlebreasted/hold_gray.png
index 50bff4daecea7a83cbbe43c501b4be5432f6a6b4..02a01021790afc8e5f55265ed4e242a8fcfc98f2 100644
Binary files a/img/clothes/upper/singlebreasted/hold_gray.png and b/img/clothes/upper/singlebreasted/hold_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/left_acc_gray.png b/img/clothes/upper/singlebreasted/left_acc_gray.png
index a15b4ae87247c13479943ed0aaba82cd26d32e65..00760c403490647838b7114f2745ea66d060e75c 100644
Binary files a/img/clothes/upper/singlebreasted/left_acc_gray.png and b/img/clothes/upper/singlebreasted/left_acc_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/left_cover_acc_gray.png b/img/clothes/upper/singlebreasted/left_cover_acc_gray.png
index 2acd9d2af085f608e3698fa309f00faf91f3942c..9780f7c9cefd254a997c67a0e9f8ca912074a891 100644
Binary files a/img/clothes/upper/singlebreasted/left_cover_acc_gray.png and b/img/clothes/upper/singlebreasted/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/left_cover_gray.png b/img/clothes/upper/singlebreasted/left_cover_gray.png
index 566a139cc852e0766a05b17afda681afdb3bf045..eaeb3bb80216da682e077f4bd27b45bb115c5ed9 100644
Binary files a/img/clothes/upper/singlebreasted/left_cover_gray.png and b/img/clothes/upper/singlebreasted/left_cover_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/left_gray.png b/img/clothes/upper/singlebreasted/left_gray.png
index dd398b31a5e95406973308499cb930c0ac56e562..f542f4ff9860d8dcc0ff8d93d54e4201a22358af 100644
Binary files a/img/clothes/upper/singlebreasted/left_gray.png and b/img/clothes/upper/singlebreasted/left_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/right_acc_gray.png b/img/clothes/upper/singlebreasted/right_acc_gray.png
index 22c0aad875c9b6db67bc76c1e7e2cda1d7774895..113e9800221912cc31cdb154ac0107183c445e3a 100644
Binary files a/img/clothes/upper/singlebreasted/right_acc_gray.png and b/img/clothes/upper/singlebreasted/right_acc_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/right_cover_acc_gray.png b/img/clothes/upper/singlebreasted/right_cover_acc_gray.png
index 040b2d2a9f5102f380ad4dec950ce843ff435e58..25ab0949f2abfb69e6ed322ecf82118976e86a44 100644
Binary files a/img/clothes/upper/singlebreasted/right_cover_acc_gray.png and b/img/clothes/upper/singlebreasted/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/right_cover_gray.png b/img/clothes/upper/singlebreasted/right_cover_gray.png
index 038d830e5ea33adcf2f6471cc6f3c36d0a7b09a7..264bc8093042a31d394a9d0bbef08645c4c4cf40 100644
Binary files a/img/clothes/upper/singlebreasted/right_cover_gray.png and b/img/clothes/upper/singlebreasted/right_cover_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/right_gray.png b/img/clothes/upper/singlebreasted/right_gray.png
index d2809691a4c3565349f08305684659966eeffe3f..8f2a8e40601ece504463f74c74ce0e4055f34ffc 100644
Binary files a/img/clothes/upper/singlebreasted/right_gray.png and b/img/clothes/upper/singlebreasted/right_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/tattered_gray.png b/img/clothes/upper/singlebreasted/tattered_gray.png
index 5b105cc1f1daae256464023fba7b15922ce19616..f920e4a55dedeede9fdc0588f4a8a357e19666ed 100644
Binary files a/img/clothes/upper/singlebreasted/tattered_gray.png and b/img/clothes/upper/singlebreasted/tattered_gray.png differ
diff --git a/img/clothes/upper/singlebreasted/torn_gray.png b/img/clothes/upper/singlebreasted/torn_gray.png
index abd610c24924030bd1466b1228dc4fdfb2ba445e..6ada5a369bc0ffa72572b23b351203554f2feab7 100644
Binary files a/img/clothes/upper/singlebreasted/torn_gray.png and b/img/clothes/upper/singlebreasted/torn_gray.png differ
diff --git a/img/clothes/upper/skele/frayed.png b/img/clothes/upper/skele/frayed.png
index ce9d8939aa417c707b15785152f36e1763a2d207..badf339f7f540bc8de26cd6d7a3a849781317f1e 100644
Binary files a/img/clothes/upper/skele/frayed.png and b/img/clothes/upper/skele/frayed.png differ
diff --git a/img/clothes/upper/skele/full.png b/img/clothes/upper/skele/full.png
index 21518d18c6334a731bed6485e08e344b3448b84a..25c1d45cfb40413ff13916c6db6ca0d8b9e1ee86 100644
Binary files a/img/clothes/upper/skele/full.png and b/img/clothes/upper/skele/full.png differ
diff --git a/img/clothes/upper/skele/hold.png b/img/clothes/upper/skele/hold.png
index 9e94553320950f002597df636168a23758e8973f..674e9017e5c5182a62d3929ab86432fe4b222e6a 100644
Binary files a/img/clothes/upper/skele/hold.png and b/img/clothes/upper/skele/hold.png differ
diff --git a/img/clothes/upper/skele/left.png b/img/clothes/upper/skele/left.png
index 5f38eb4aa91f104a05cec46587e7974655e9404d..bbbcd88ec5cc81cb522496611b48ece4d3259c5c 100644
Binary files a/img/clothes/upper/skele/left.png and b/img/clothes/upper/skele/left.png differ
diff --git a/img/clothes/upper/skele/left_cover.png b/img/clothes/upper/skele/left_cover.png
index 4086736eb4d712aa2db640d2f9a6b8c614f1d49d..f4e7959cbbb1c1a92b0cca74cdec01b5f01e4c28 100644
Binary files a/img/clothes/upper/skele/left_cover.png and b/img/clothes/upper/skele/left_cover.png differ
diff --git a/img/clothes/upper/skele/right.png b/img/clothes/upper/skele/right.png
index 5a01b02252eda04e041f43301121e900d4e6be3b..2ab8662046f53680164d161a578ff07222c4bc66 100644
Binary files a/img/clothes/upper/skele/right.png and b/img/clothes/upper/skele/right.png differ
diff --git a/img/clothes/upper/skele/right_cover.png b/img/clothes/upper/skele/right_cover.png
index b29439e5c0d175766186847349e1f2499bffb833..ba21d1d0d633cc3237a353fa81d2c5765819904e 100644
Binary files a/img/clothes/upper/skele/right_cover.png and b/img/clothes/upper/skele/right_cover.png differ
diff --git a/img/clothes/upper/skele/tattered.png b/img/clothes/upper/skele/tattered.png
index 126be042f8d0d3db6808bc01e87c8f0b28c45899..c352458cedc77c57e5e6dcfffa196973216b5bf9 100644
Binary files a/img/clothes/upper/skele/tattered.png and b/img/clothes/upper/skele/tattered.png differ
diff --git a/img/clothes/upper/skele/torn.png b/img/clothes/upper/skele/torn.png
index 82841a17c17d1228020fd890ebb4b3c7287fc8cc..8e02bc63fea4d09166fed563253bd004810c0055 100644
Binary files a/img/clothes/upper/skele/torn.png and b/img/clothes/upper/skele/torn.png differ
diff --git a/img/clothes/upper/skimpylolita/2_gray.png b/img/clothes/upper/skimpylolita/2_gray.png
index 3623da79c677cddb702eb1e1101ee8398ae95dd1..8dd91aaf89fe83e91d0c2ca77feb0fb14a7bbb81 100644
Binary files a/img/clothes/upper/skimpylolita/2_gray.png and b/img/clothes/upper/skimpylolita/2_gray.png differ
diff --git a/img/clothes/upper/skimpylolita/3_gray.png b/img/clothes/upper/skimpylolita/3_gray.png
index e1e977ba2440d126c3dee531a3b0b46339a52763..6eda958e710db1a3a862c45952a796712aa399f5 100644
Binary files a/img/clothes/upper/skimpylolita/3_gray.png and b/img/clothes/upper/skimpylolita/3_gray.png differ
diff --git a/img/clothes/upper/skimpylolita/4_gray.png b/img/clothes/upper/skimpylolita/4_gray.png
index 0a842d9994f7202e541cb05a35a4d0d842957d74..efbd2a085e76ec0e009332bcbf285e9804e94d1c 100644
Binary files a/img/clothes/upper/skimpylolita/4_gray.png and b/img/clothes/upper/skimpylolita/4_gray.png differ
diff --git a/img/clothes/upper/skimpylolita/5_gray.png b/img/clothes/upper/skimpylolita/5_gray.png
index e7ce96262869698f129569f7d550a1cf5b9b5757..e04a7df5d7d6be0028a276c11f70fdf46d2c97db 100644
Binary files a/img/clothes/upper/skimpylolita/5_gray.png and b/img/clothes/upper/skimpylolita/5_gray.png differ
diff --git a/img/clothes/upper/skimpylolita/acc.png b/img/clothes/upper/skimpylolita/acc.png
index c637227aa1da8df8b43f0f01e53f000dd9921a98..0cf790c839e4cec5d5e5c33730fa6d6192226898 100644
Binary files a/img/clothes/upper/skimpylolita/acc.png and b/img/clothes/upper/skimpylolita/acc.png differ
diff --git a/img/clothes/upper/skimpylolita/frayed_gray.png b/img/clothes/upper/skimpylolita/frayed_gray.png
index 36b8f8ebc812396becbd00bf53b16e65e6be7fdf..f1a4c28e7a21aa2adc1382aea46dd177dadc765a 100644
Binary files a/img/clothes/upper/skimpylolita/frayed_gray.png and b/img/clothes/upper/skimpylolita/frayed_gray.png differ
diff --git a/img/clothes/upper/skimpylolita/full_gray.png b/img/clothes/upper/skimpylolita/full_gray.png
index 36b8f8ebc812396becbd00bf53b16e65e6be7fdf..f1a4c28e7a21aa2adc1382aea46dd177dadc765a 100644
Binary files a/img/clothes/upper/skimpylolita/full_gray.png and b/img/clothes/upper/skimpylolita/full_gray.png differ
diff --git a/img/clothes/upper/skimpylolita/hold.png b/img/clothes/upper/skimpylolita/hold.png
index 483f98fabc039a0dc156b1867cb22b5e15b47fa6..337c2a7a663f008738d554d8e804920596bfe8a7 100644
Binary files a/img/clothes/upper/skimpylolita/hold.png and b/img/clothes/upper/skimpylolita/hold.png differ
diff --git a/img/clothes/upper/skimpylolita/left.png b/img/clothes/upper/skimpylolita/left.png
index 19538ade5bb73ab8a3dc4c2d2524f61c63c76184..0df593f42f6a4ee4192457a6e15936f7e5f152b6 100644
Binary files a/img/clothes/upper/skimpylolita/left.png and b/img/clothes/upper/skimpylolita/left.png differ
diff --git a/img/clothes/upper/skimpylolita/left_cover.png b/img/clothes/upper/skimpylolita/left_cover.png
index 19538ade5bb73ab8a3dc4c2d2524f61c63c76184..0df593f42f6a4ee4192457a6e15936f7e5f152b6 100644
Binary files a/img/clothes/upper/skimpylolita/left_cover.png and b/img/clothes/upper/skimpylolita/left_cover.png differ
diff --git a/img/clothes/upper/skimpylolita/right.png b/img/clothes/upper/skimpylolita/right.png
index 483f98fabc039a0dc156b1867cb22b5e15b47fa6..337c2a7a663f008738d554d8e804920596bfe8a7 100644
Binary files a/img/clothes/upper/skimpylolita/right.png and b/img/clothes/upper/skimpylolita/right.png differ
diff --git a/img/clothes/upper/skimpylolita/right_cover.png b/img/clothes/upper/skimpylolita/right_cover.png
index 483f98fabc039a0dc156b1867cb22b5e15b47fa6..337c2a7a663f008738d554d8e804920596bfe8a7 100644
Binary files a/img/clothes/upper/skimpylolita/right_cover.png and b/img/clothes/upper/skimpylolita/right_cover.png differ
diff --git a/img/clothes/upper/skimpylolita/tattered_gray.png b/img/clothes/upper/skimpylolita/tattered_gray.png
index ed75c98aa2c2651fe22fab44f7279e7902f72aac..99ef1ea195bc665ca5667b65924408a3fe08da24 100644
Binary files a/img/clothes/upper/skimpylolita/tattered_gray.png and b/img/clothes/upper/skimpylolita/tattered_gray.png differ
diff --git a/img/clothes/upper/skimpylolita/torn_gray.png b/img/clothes/upper/skimpylolita/torn_gray.png
index 18dfd8e5c945f25ffc033d2c00e33f0b1b979a4e..96bc423d45ceeba416a2f31353df039869238f94 100644
Binary files a/img/clothes/upper/skimpylolita/torn_gray.png and b/img/clothes/upper/skimpylolita/torn_gray.png differ
diff --git a/img/clothes/upper/slut/1_gray.png b/img/clothes/upper/slut/1_gray.png
index ce0d748510b6dd87b3641eaefa7c8aa71b3147a7..bf387cb639be4c1f453035f0602edcf518dbe3a1 100644
Binary files a/img/clothes/upper/slut/1_gray.png and b/img/clothes/upper/slut/1_gray.png differ
diff --git a/img/clothes/upper/slut/2_gray.png b/img/clothes/upper/slut/2_gray.png
index e711955b40ffa917f21852454fbca92f90b5fab7..369b66883fdf38857d3ead829ffacbe02439e184 100644
Binary files a/img/clothes/upper/slut/2_gray.png and b/img/clothes/upper/slut/2_gray.png differ
diff --git a/img/clothes/upper/slut/3_gray.png b/img/clothes/upper/slut/3_gray.png
index 6d256f1e02dbf8920685b9edafea2c54d264bb72..b89bcf606ec4e09661db8271d3d61d169bc2648c 100644
Binary files a/img/clothes/upper/slut/3_gray.png and b/img/clothes/upper/slut/3_gray.png differ
diff --git a/img/clothes/upper/slut/4_gray.png b/img/clothes/upper/slut/4_gray.png
index a846d498bdfd6b7189ab92aa9e1d1c454a404f58..37f4ed177106c9f128708fcd0dc7c0ec7e4e50c2 100644
Binary files a/img/clothes/upper/slut/4_gray.png and b/img/clothes/upper/slut/4_gray.png differ
diff --git a/img/clothes/upper/slut/5_gray.png b/img/clothes/upper/slut/5_gray.png
index 260ae21435514981aa8efa8fb78c5718db2eed76..8e708c3bd1b6a5cb61934f5337c71f4f025cb5a0 100644
Binary files a/img/clothes/upper/slut/5_gray.png and b/img/clothes/upper/slut/5_gray.png differ
diff --git a/img/clothes/upper/slut/acc_frayed_gray.png b/img/clothes/upper/slut/acc_frayed_gray.png
index 008a9b8232af50c4a8578ca47e4f484708906989..fbe4ad2544c3880485f8a3b9ab35a57a6c1c1c70 100644
Binary files a/img/clothes/upper/slut/acc_frayed_gray.png and b/img/clothes/upper/slut/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/slut/acc_full_gray.png b/img/clothes/upper/slut/acc_full_gray.png
index 1d896ebfdb605871407dcf687179feb11c62ee95..0e6a41bbdddb27546d6f3fa05b70d7af4e772b3d 100644
Binary files a/img/clothes/upper/slut/acc_full_gray.png and b/img/clothes/upper/slut/acc_full_gray.png differ
diff --git a/img/clothes/upper/slut/acc_tattered_gray.png b/img/clothes/upper/slut/acc_tattered_gray.png
index ebf3d19797547fa3b92f88a7f0e759cbb742289c..7ee36a411ac1e5b879d24ca8240cc5360f0d4dcf 100644
Binary files a/img/clothes/upper/slut/acc_tattered_gray.png and b/img/clothes/upper/slut/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/slut/acc_torn_gray.png b/img/clothes/upper/slut/acc_torn_gray.png
index 85a6e19b0121ca8ff54ee0776350f04080badc59..f0fd76dbd986b52375a41a944524737cc5374e52 100644
Binary files a/img/clothes/upper/slut/acc_torn_gray.png and b/img/clothes/upper/slut/acc_torn_gray.png differ
diff --git a/img/clothes/upper/slut/frayed_gray.png b/img/clothes/upper/slut/frayed_gray.png
index c8d5cd6e214a19eb4727c62bd350a817b8f71b8f..a4fb2e97b89ae80a22d0b780da0c9fe62e0269e3 100644
Binary files a/img/clothes/upper/slut/frayed_gray.png and b/img/clothes/upper/slut/frayed_gray.png differ
diff --git a/img/clothes/upper/slut/full_gray.png b/img/clothes/upper/slut/full_gray.png
index 66dc1fa59a6dcb00f36f703f4f83a72d2f55f60d..625773562c437cf6745c87b7906d838501b146ee 100644
Binary files a/img/clothes/upper/slut/full_gray.png and b/img/clothes/upper/slut/full_gray.png differ
diff --git a/img/clothes/upper/slut/hold_gray.png b/img/clothes/upper/slut/hold_gray.png
index 896b43163b81e8b88f9818a6b9a47b1b823bef55..b28d5cea5fe212250215f55eeb49d11e862d01bf 100644
Binary files a/img/clothes/upper/slut/hold_gray.png and b/img/clothes/upper/slut/hold_gray.png differ
diff --git a/img/clothes/upper/slut/left_cover_gray.png b/img/clothes/upper/slut/left_cover_gray.png
index 93dd992f007ebe6281b379a97ef7372cea10f300..ddf722d8373bdba81c65d60b8e1a352a4106ba22 100644
Binary files a/img/clothes/upper/slut/left_cover_gray.png and b/img/clothes/upper/slut/left_cover_gray.png differ
diff --git a/img/clothes/upper/slut/left_gray.png b/img/clothes/upper/slut/left_gray.png
index 3c2456a47d1ef9c7b2ac262085fbb55af547df8b..fcf8dfaa46f80625d6f9c8fa96958d0e80faf105 100644
Binary files a/img/clothes/upper/slut/left_gray.png and b/img/clothes/upper/slut/left_gray.png differ
diff --git a/img/clothes/upper/slut/right_cover_gray.png b/img/clothes/upper/slut/right_cover_gray.png
index 2cb7956ede7a471202ae3bdd54d8738e4d842482..cc0a1ed2c7b8819855c9c637fc13cbbc29b75790 100644
Binary files a/img/clothes/upper/slut/right_cover_gray.png and b/img/clothes/upper/slut/right_cover_gray.png differ
diff --git a/img/clothes/upper/slut/right_gray.png b/img/clothes/upper/slut/right_gray.png
index 8bbdc467caac1299cb8f811e22b2e52bd53adc09..2c0d1a1905a61678e818fd25eef054fe84224d72 100644
Binary files a/img/clothes/upper/slut/right_gray.png and b/img/clothes/upper/slut/right_gray.png differ
diff --git a/img/clothes/upper/slut/tattered_gray.png b/img/clothes/upper/slut/tattered_gray.png
index 4ec36cf41353dc5fd4bd0a92db3522b5fee95d8f..a84e6b46b70bc6f91780bd28a95abfc767531354 100644
Binary files a/img/clothes/upper/slut/tattered_gray.png and b/img/clothes/upper/slut/tattered_gray.png differ
diff --git a/img/clothes/upper/slut/torn_gray.png b/img/clothes/upper/slut/torn_gray.png
index fa69a8eb5c3ab16ed33276b9316ef84691581b9f..f96645f63a03b22d17fe6e05eae5acdcd805fcee 100644
Binary files a/img/clothes/upper/slut/torn_gray.png and b/img/clothes/upper/slut/torn_gray.png differ
diff --git a/img/clothes/upper/slutler/4.png b/img/clothes/upper/slutler/4.png
index 24a645b31017dae118b3c50a583a78b445041fad..6c7554b906cb817c020510b311f133e49d268382 100644
Binary files a/img/clothes/upper/slutler/4.png and b/img/clothes/upper/slutler/4.png differ
diff --git a/img/clothes/upper/slutler/5.png b/img/clothes/upper/slutler/5.png
index 5eb535225a0fabdad0d802dad815687c80aee01d..12f24a09a220a7d4e8fa9cf287591fcc07c55703 100644
Binary files a/img/clothes/upper/slutler/5.png and b/img/clothes/upper/slutler/5.png differ
diff --git a/img/clothes/upper/slutler/frayed.png b/img/clothes/upper/slutler/frayed.png
index c6173175154a3292892ffe1348d93a59949561b9..634bf6cf1fc0abbef920b6fb7bae771081cafbbf 100644
Binary files a/img/clothes/upper/slutler/frayed.png and b/img/clothes/upper/slutler/frayed.png differ
diff --git a/img/clothes/upper/slutler/full.png b/img/clothes/upper/slutler/full.png
index 0158db210933fe60e766ed588b8327a48ebd830b..ced40b51a9c2c5bcc4e4716d731012fc711ea647 100644
Binary files a/img/clothes/upper/slutler/full.png and b/img/clothes/upper/slutler/full.png differ
diff --git a/img/clothes/upper/slutler/tattered.png b/img/clothes/upper/slutler/tattered.png
index 80d90187d62d7b865168e9c3c0b26d8f3cb29c79..62750c43f364c5d0b4a9fd9fee447e1e8fc21872 100644
Binary files a/img/clothes/upper/slutler/tattered.png and b/img/clothes/upper/slutler/tattered.png differ
diff --git a/img/clothes/upper/slutler/torn.png b/img/clothes/upper/slutler/torn.png
index e39519e92882002de5978747392f02e9f1f696f5..a254278687ff05a23280709aec50fb2b1059c852 100644
Binary files a/img/clothes/upper/slutler/torn.png and b/img/clothes/upper/slutler/torn.png differ
diff --git a/img/clothes/upper/soccer/acc_gray.png b/img/clothes/upper/soccer/acc_gray.png
index 1d901671fe8b1f5e6befd9eff042f11bd2b4a680..24eab8dffb0cbc909edf195a77fca35262a6f170 100644
Binary files a/img/clothes/upper/soccer/acc_gray.png and b/img/clothes/upper/soccer/acc_gray.png differ
diff --git a/img/clothes/upper/soccer/frayed_gray.png b/img/clothes/upper/soccer/frayed_gray.png
index d368ab1a77bba8632f49f7b14f6ef3d13eab89f9..8ea5d75048ba0fc5bdebff210a669cfec2f78d4c 100644
Binary files a/img/clothes/upper/soccer/frayed_gray.png and b/img/clothes/upper/soccer/frayed_gray.png differ
diff --git a/img/clothes/upper/soccer/full_gray.png b/img/clothes/upper/soccer/full_gray.png
index d537adde69f8c849fa32a8a2121bf73a770e6b7d..cbc91fc25b37b03eb685df357b71e9c15408712c 100644
Binary files a/img/clothes/upper/soccer/full_gray.png and b/img/clothes/upper/soccer/full_gray.png differ
diff --git a/img/clothes/upper/soccer/hold_gray.png b/img/clothes/upper/soccer/hold_gray.png
index 72b303de7fadab7d0dd23dad27f86214516e8f16..08103e667d9c7ba942cc707dd7b60b7c7667e466 100644
Binary files a/img/clothes/upper/soccer/hold_gray.png and b/img/clothes/upper/soccer/hold_gray.png differ
diff --git a/img/clothes/upper/soccer/left_cover_gray.png b/img/clothes/upper/soccer/left_cover_gray.png
index f726b93afa15335ec2c3b307ee576139c426890e..c008e98fe7e83885da6d1d85517967b606412ba1 100644
Binary files a/img/clothes/upper/soccer/left_cover_gray.png and b/img/clothes/upper/soccer/left_cover_gray.png differ
diff --git a/img/clothes/upper/soccer/left_gray.png b/img/clothes/upper/soccer/left_gray.png
index cba473c3653d2dc7f2b22a6619bf5048260983d1..f16203d0190b5cbcf8d164631a658cd412124f0a 100644
Binary files a/img/clothes/upper/soccer/left_gray.png and b/img/clothes/upper/soccer/left_gray.png differ
diff --git a/img/clothes/upper/soccer/right_cover_gray.png b/img/clothes/upper/soccer/right_cover_gray.png
index fc1082c1cf443be8e77d04f0378df556f49a9f6d..8281e900a2cf75102b596083341cd5a9f1827023 100644
Binary files a/img/clothes/upper/soccer/right_cover_gray.png and b/img/clothes/upper/soccer/right_cover_gray.png differ
diff --git a/img/clothes/upper/soccer/right_gray.png b/img/clothes/upper/soccer/right_gray.png
index b82834cb57125f05db59d87ea6f2c2180ce11233..5e0d6c132ec9ea20844ad9e3861aff0c657d6c60 100644
Binary files a/img/clothes/upper/soccer/right_gray.png and b/img/clothes/upper/soccer/right_gray.png differ
diff --git a/img/clothes/upper/soccer/tattered_gray.png b/img/clothes/upper/soccer/tattered_gray.png
index 0c3f088adf984a214ef839d3ccaf510d390f907c..e64fd339c4d224f7b0d2e290f9a61c9b5ec53603 100644
Binary files a/img/clothes/upper/soccer/tattered_gray.png and b/img/clothes/upper/soccer/tattered_gray.png differ
diff --git a/img/clothes/upper/soccer/torn_gray.png b/img/clothes/upper/soccer/torn_gray.png
index 95baa14b10b42515f13139722d85117aef99b408..abc0f2b0a639996c81fcb79eea921a8b1d0c1c6a 100644
Binary files a/img/clothes/upper/soccer/torn_gray.png and b/img/clothes/upper/soccer/torn_gray.png differ
diff --git a/img/clothes/upper/split/2_gray.png b/img/clothes/upper/split/2_gray.png
index 733235dad72844c6b60bb70ebcf61338e5128bc6..6a4399c8e3e01a43da80e5bb503c802e5e9a36c5 100644
Binary files a/img/clothes/upper/split/2_gray.png and b/img/clothes/upper/split/2_gray.png differ
diff --git a/img/clothes/upper/split/3_gray.png b/img/clothes/upper/split/3_gray.png
index 531095f269088092abf29bc76a3bfde7f1f260e0..72c138250a63297009ef0f6a364499db9081f20b 100644
Binary files a/img/clothes/upper/split/3_gray.png and b/img/clothes/upper/split/3_gray.png differ
diff --git a/img/clothes/upper/split/4_gray.png b/img/clothes/upper/split/4_gray.png
index 6cc0c177bb1b86e4ddc9f304abef63a2d15da60c..006f89799c87ee0552593a1d391927a97cc9f7c9 100644
Binary files a/img/clothes/upper/split/4_gray.png and b/img/clothes/upper/split/4_gray.png differ
diff --git a/img/clothes/upper/split/5_gray.png b/img/clothes/upper/split/5_gray.png
index 43e5c250c5fea7b8dccb8c6512f107fdc72e6244..fc4c7193ed4fd765ac226679e4d8d9f65ee3b863 100644
Binary files a/img/clothes/upper/split/5_gray.png and b/img/clothes/upper/split/5_gray.png differ
diff --git a/img/clothes/upper/split/acc_gray.png b/img/clothes/upper/split/acc_gray.png
index 3b8f2b91fbf1346ab78d4b5269e6b73a5c2498f9..cd0ad6854704ecbd68ef3b55d54814b7c689fad5 100644
Binary files a/img/clothes/upper/split/acc_gray.png and b/img/clothes/upper/split/acc_gray.png differ
diff --git a/img/clothes/upper/split/frayed_gray.png b/img/clothes/upper/split/frayed_gray.png
index 29b7d8f17dd79d34b93f4274ef529b2dedb27089..be7ec41fae5e0684f087af8a00ac6584ce84163c 100644
Binary files a/img/clothes/upper/split/frayed_gray.png and b/img/clothes/upper/split/frayed_gray.png differ
diff --git a/img/clothes/upper/split/full_gray.png b/img/clothes/upper/split/full_gray.png
index 37a6a70f2dac3400ed4eb708e36e6f88fb9b2ef5..63d2adececa64999daea873596a86f67bcc50f2b 100644
Binary files a/img/clothes/upper/split/full_gray.png and b/img/clothes/upper/split/full_gray.png differ
diff --git a/img/clothes/upper/split/hold_gray.png b/img/clothes/upper/split/hold_gray.png
index 64435f3a7574d13f78e3c03a2da2b1018e96a491..eae89d0c9320d9a0278e576c01f0668a4d8ed1b2 100644
Binary files a/img/clothes/upper/split/hold_gray.png and b/img/clothes/upper/split/hold_gray.png differ
diff --git a/img/clothes/upper/split/left_cover_gray.png b/img/clothes/upper/split/left_cover_gray.png
index 2486a1681676453b4f43b322ebf55cb20c8d5b3d..71f2e5ee7ddc223d70325cfdd438e91229d6fbda 100644
Binary files a/img/clothes/upper/split/left_cover_gray.png and b/img/clothes/upper/split/left_cover_gray.png differ
diff --git a/img/clothes/upper/split/left_gray.png b/img/clothes/upper/split/left_gray.png
index b05d4651e9679e5eb7b3e90637c4c7f2d1d0e888..957aa6922cb7066b2416d51b14b883fa472f6ce7 100644
Binary files a/img/clothes/upper/split/left_gray.png and b/img/clothes/upper/split/left_gray.png differ
diff --git a/img/clothes/upper/split/right_cover_gray.png b/img/clothes/upper/split/right_cover_gray.png
index a792d62f6282ed4f009eb61a1182c9c3c138acd9..ac42294dcbca36b370fd43696ffd8f103c4a53b7 100644
Binary files a/img/clothes/upper/split/right_cover_gray.png and b/img/clothes/upper/split/right_cover_gray.png differ
diff --git a/img/clothes/upper/split/right_gray.png b/img/clothes/upper/split/right_gray.png
index 76451fb0993cf97970042680c093d78cba605287..1877edc5fba17fa9eb3016c12f72439191bd8784 100644
Binary files a/img/clothes/upper/split/right_gray.png and b/img/clothes/upper/split/right_gray.png differ
diff --git a/img/clothes/upper/split/tattered_gray.png b/img/clothes/upper/split/tattered_gray.png
index 2b645f8d4f5e755c1c1be6972e1d1bba9bf5f379..8cdc2d9f9b4963a87715f1eba963084169c832a8 100644
Binary files a/img/clothes/upper/split/tattered_gray.png and b/img/clothes/upper/split/tattered_gray.png differ
diff --git a/img/clothes/upper/split/torn_gray.png b/img/clothes/upper/split/torn_gray.png
index 5355433c2fc23497a95382b0d226fd1c8f76c64d..8d7178759dc79b2e9b0fc0d37ccab3ef3594ec9b 100644
Binary files a/img/clothes/upper/split/torn_gray.png and b/img/clothes/upper/split/torn_gray.png differ
diff --git a/img/clothes/upper/straightjacket/frayed.png b/img/clothes/upper/straightjacket/frayed.png
index 505b22c604d38e272f3d2bce5bf4c21e0fcff9e8..c39023eb120158071e6830ba7664b733b0e18bc4 100644
Binary files a/img/clothes/upper/straightjacket/frayed.png and b/img/clothes/upper/straightjacket/frayed.png differ
diff --git a/img/clothes/upper/straightjacket/full.png b/img/clothes/upper/straightjacket/full.png
index 505b22c604d38e272f3d2bce5bf4c21e0fcff9e8..c39023eb120158071e6830ba7664b733b0e18bc4 100644
Binary files a/img/clothes/upper/straightjacket/full.png and b/img/clothes/upper/straightjacket/full.png differ
diff --git a/img/clothes/upper/straightjacket/tattered.png b/img/clothes/upper/straightjacket/tattered.png
index 505b22c604d38e272f3d2bce5bf4c21e0fcff9e8..c39023eb120158071e6830ba7664b733b0e18bc4 100644
Binary files a/img/clothes/upper/straightjacket/tattered.png and b/img/clothes/upper/straightjacket/tattered.png differ
diff --git a/img/clothes/upper/straightjacket/torn.png b/img/clothes/upper/straightjacket/torn.png
index 505b22c604d38e272f3d2bce5bf4c21e0fcff9e8..c39023eb120158071e6830ba7664b733b0e18bc4 100644
Binary files a/img/clothes/upper/straightjacket/torn.png and b/img/clothes/upper/straightjacket/torn.png differ
diff --git a/img/clothes/upper/straightjacket_unbound/bound.png b/img/clothes/upper/straightjacket_unbound/bound.png
index 6fc95a1f3ad9d71a56441ee826628e4268fa1271..3d077b21542701487f87dec892e7668ef824464d 100644
Binary files a/img/clothes/upper/straightjacket_unbound/bound.png and b/img/clothes/upper/straightjacket_unbound/bound.png differ
diff --git a/img/clothes/upper/straightjacket_unbound/frayed.png b/img/clothes/upper/straightjacket_unbound/frayed.png
index fcc8bedf266ec9ad43638f1cc80a9b1c5a929286..f7a9a4d522c643bf8d584027db349e53be43f236 100644
Binary files a/img/clothes/upper/straightjacket_unbound/frayed.png and b/img/clothes/upper/straightjacket_unbound/frayed.png differ
diff --git a/img/clothes/upper/straightjacket_unbound/full.png b/img/clothes/upper/straightjacket_unbound/full.png
index fcc8bedf266ec9ad43638f1cc80a9b1c5a929286..f7a9a4d522c643bf8d584027db349e53be43f236 100644
Binary files a/img/clothes/upper/straightjacket_unbound/full.png and b/img/clothes/upper/straightjacket_unbound/full.png differ
diff --git a/img/clothes/upper/straightjacket_unbound/hold.png b/img/clothes/upper/straightjacket_unbound/hold.png
index 882983db67ed30a54a5f801124ba6b0465b741c1..b5011ab2101e2cc19a4031406377661ab92e8fea 100644
Binary files a/img/clothes/upper/straightjacket_unbound/hold.png and b/img/clothes/upper/straightjacket_unbound/hold.png differ
diff --git a/img/clothes/upper/straightjacket_unbound/left.png b/img/clothes/upper/straightjacket_unbound/left.png
index ff2ed77adb6311c0fff526114f4ec7123e12106a..0426888164a1ab4fc69c85c79bbad702eb44c127 100644
Binary files a/img/clothes/upper/straightjacket_unbound/left.png and b/img/clothes/upper/straightjacket_unbound/left.png differ
diff --git a/img/clothes/upper/straightjacket_unbound/left_cover.png b/img/clothes/upper/straightjacket_unbound/left_cover.png
index b8bdc8cff3592e42abd5f527687d78dc098c842c..409f28711b5008f9793e079e128d4f756a3d0849 100644
Binary files a/img/clothes/upper/straightjacket_unbound/left_cover.png and b/img/clothes/upper/straightjacket_unbound/left_cover.png differ
diff --git a/img/clothes/upper/straightjacket_unbound/right.png b/img/clothes/upper/straightjacket_unbound/right.png
index c0fe8eeda252fbd33a3e4bba8b1124c9ea07b9f4..584692e1763f0fb675f874df8b3affb3dc71bc0e 100644
Binary files a/img/clothes/upper/straightjacket_unbound/right.png and b/img/clothes/upper/straightjacket_unbound/right.png differ
diff --git a/img/clothes/upper/straightjacket_unbound/right_cover.png b/img/clothes/upper/straightjacket_unbound/right_cover.png
index 94ec3c2d7b832bdad62a20e3ac48875df7a2e67c..e27f66092e11813fefd9b5d8aa1b72c424b91bf1 100644
Binary files a/img/clothes/upper/straightjacket_unbound/right_cover.png and b/img/clothes/upper/straightjacket_unbound/right_cover.png differ
diff --git a/img/clothes/upper/straightjacket_unbound/tattered.png b/img/clothes/upper/straightjacket_unbound/tattered.png
index fcc8bedf266ec9ad43638f1cc80a9b1c5a929286..f7a9a4d522c643bf8d584027db349e53be43f236 100644
Binary files a/img/clothes/upper/straightjacket_unbound/tattered.png and b/img/clothes/upper/straightjacket_unbound/tattered.png differ
diff --git a/img/clothes/upper/straightjacket_unbound/torn.png b/img/clothes/upper/straightjacket_unbound/torn.png
index fcc8bedf266ec9ad43638f1cc80a9b1c5a929286..f7a9a4d522c643bf8d584027db349e53be43f236 100644
Binary files a/img/clothes/upper/straightjacket_unbound/torn.png and b/img/clothes/upper/straightjacket_unbound/torn.png differ
diff --git a/img/clothes/upper/sundress/0_gray.png b/img/clothes/upper/sundress/0_gray.png
index 88605657fe50fb1fbe0be4114df0d0b5f6f21e79..27cc35c3be5db713726f4a3a45a065b962dff9fb 100644
Binary files a/img/clothes/upper/sundress/0_gray.png and b/img/clothes/upper/sundress/0_gray.png differ
diff --git a/img/clothes/upper/sundress/3_gray.png b/img/clothes/upper/sundress/3_gray.png
index 6b0508143d5127ba5c3f678ad072f3ef76a01283..f46a89bc8449d8d7728dc372e4d5fc5033eb0d87 100644
Binary files a/img/clothes/upper/sundress/3_gray.png and b/img/clothes/upper/sundress/3_gray.png differ
diff --git a/img/clothes/upper/sundress/4_gray.png b/img/clothes/upper/sundress/4_gray.png
index fdf7d4e70aabc62e55cfaff95156755e64357771..b1d0751c06e9da17eee3ce64281c5fb8478d4e60 100644
Binary files a/img/clothes/upper/sundress/4_gray.png and b/img/clothes/upper/sundress/4_gray.png differ
diff --git a/img/clothes/upper/sundress/5_gray.png b/img/clothes/upper/sundress/5_gray.png
index a4976259022b93c98dd5a82d55b77a0d71f44476..869540c36ba93fe2bf4b83dd45f2b1c9f00a6f74 100644
Binary files a/img/clothes/upper/sundress/5_gray.png and b/img/clothes/upper/sundress/5_gray.png differ
diff --git a/img/clothes/upper/sundress/frayed_gray.png b/img/clothes/upper/sundress/frayed_gray.png
index fed90b549e6e7877bba4661e7a9ba9d549877b9b..1d85684c1bd05019d3dc0cd6d009781ab28daba8 100644
Binary files a/img/clothes/upper/sundress/frayed_gray.png and b/img/clothes/upper/sundress/frayed_gray.png differ
diff --git a/img/clothes/upper/sundress/full_gray.png b/img/clothes/upper/sundress/full_gray.png
index c7448fd421c467bb7b9f507360c6bb6d7b66852f..9003e1e1bc151187bf5f425709041d0842c31390 100644
Binary files a/img/clothes/upper/sundress/full_gray.png and b/img/clothes/upper/sundress/full_gray.png differ
diff --git a/img/clothes/upper/sundress/tattered_gray.png b/img/clothes/upper/sundress/tattered_gray.png
index 43877132ee36b9038421d4ea6cba5497381b0f49..5c498a6fe7dd7b61c6be2e4a9fd0b0f8db7463e3 100644
Binary files a/img/clothes/upper/sundress/tattered_gray.png and b/img/clothes/upper/sundress/tattered_gray.png differ
diff --git a/img/clothes/upper/sundress/torn_gray.png b/img/clothes/upper/sundress/torn_gray.png
index 7cb9e15f33d0220e162bd67bd6cfdcb75e0666f6..7e331f4cfed872ed3ad88c16cfab53b97805d4ee 100644
Binary files a/img/clothes/upper/sundress/torn_gray.png and b/img/clothes/upper/sundress/torn_gray.png differ
diff --git a/img/clothes/upper/sweater/frayed.png b/img/clothes/upper/sweater/frayed.png
index 5b11bf71f2c719d3961717de073dd423b67e1d33..aba7428c611121cd814728386eede26c8c69cb55 100644
Binary files a/img/clothes/upper/sweater/frayed.png and b/img/clothes/upper/sweater/frayed.png differ
diff --git a/img/clothes/upper/sweater/full.png b/img/clothes/upper/sweater/full.png
index 6a018a71a84fc42f3d80c545bd1d681f26a1d773..aba7428c611121cd814728386eede26c8c69cb55 100644
Binary files a/img/clothes/upper/sweater/full.png and b/img/clothes/upper/sweater/full.png differ
diff --git a/img/clothes/upper/sweater/hold.png b/img/clothes/upper/sweater/hold.png
index 32592b8e32565044f435f0a60ffb6e0734771153..c17be2246c3d3c00b030dcb03b6423d184f66c1d 100644
Binary files a/img/clothes/upper/sweater/hold.png and b/img/clothes/upper/sweater/hold.png differ
diff --git a/img/clothes/upper/sweater/left.png b/img/clothes/upper/sweater/left.png
index 0b3837b31cb407874c46225c55ecabc940f9962c..23aae288902329f41ff95089938b0b9221f33786 100644
Binary files a/img/clothes/upper/sweater/left.png and b/img/clothes/upper/sweater/left.png differ
diff --git a/img/clothes/upper/sweater/left_cover.png b/img/clothes/upper/sweater/left_cover.png
index 2c879c0038cb43bde014699381deda58241bd41c..4f262433338988d2e7ac938b0d39c528e00b5198 100644
Binary files a/img/clothes/upper/sweater/left_cover.png and b/img/clothes/upper/sweater/left_cover.png differ
diff --git a/img/clothes/upper/sweater/right.png b/img/clothes/upper/sweater/right.png
index 7309e8688a747346d07640210418a6833db93285..9e77abb0a07ae22429f58584f329da275a2f88c3 100644
Binary files a/img/clothes/upper/sweater/right.png and b/img/clothes/upper/sweater/right.png differ
diff --git a/img/clothes/upper/sweater/right_cover.png b/img/clothes/upper/sweater/right_cover.png
index 1f80a932e498e377e1cd39e2604bf74499f73187..a3d0e3f98cdaf6bcf83963f41e43617eb845d8d8 100644
Binary files a/img/clothes/upper/sweater/right_cover.png and b/img/clothes/upper/sweater/right_cover.png differ
diff --git a/img/clothes/upper/sweater/tattered.png b/img/clothes/upper/sweater/tattered.png
index 5b11bf71f2c719d3961717de073dd423b67e1d33..aba7428c611121cd814728386eede26c8c69cb55 100644
Binary files a/img/clothes/upper/sweater/tattered.png and b/img/clothes/upper/sweater/tattered.png differ
diff --git a/img/clothes/upper/sweater/torn.png b/img/clothes/upper/sweater/torn.png
index 5b11bf71f2c719d3961717de073dd423b67e1d33..aba7428c611121cd814728386eede26c8c69cb55 100644
Binary files a/img/clothes/upper/sweater/torn.png and b/img/clothes/upper/sweater/torn.png differ
diff --git a/img/clothes/upper/sweaterlarge/frayed.png b/img/clothes/upper/sweaterlarge/frayed.png
index d1579bf91aaed046b37586c01b10e966c36c9837..5624c77738c47e25a74362ec1404ace7b9c0f7c2 100644
Binary files a/img/clothes/upper/sweaterlarge/frayed.png and b/img/clothes/upper/sweaterlarge/frayed.png differ
diff --git a/img/clothes/upper/sweaterlarge/full.png b/img/clothes/upper/sweaterlarge/full.png
index d1579bf91aaed046b37586c01b10e966c36c9837..5624c77738c47e25a74362ec1404ace7b9c0f7c2 100644
Binary files a/img/clothes/upper/sweaterlarge/full.png and b/img/clothes/upper/sweaterlarge/full.png differ
diff --git a/img/clothes/upper/sweaterlarge/hold.png b/img/clothes/upper/sweaterlarge/hold.png
index 32592b8e32565044f435f0a60ffb6e0734771153..c17be2246c3d3c00b030dcb03b6423d184f66c1d 100644
Binary files a/img/clothes/upper/sweaterlarge/hold.png and b/img/clothes/upper/sweaterlarge/hold.png differ
diff --git a/img/clothes/upper/sweaterlarge/left.png b/img/clothes/upper/sweaterlarge/left.png
index 0b3837b31cb407874c46225c55ecabc940f9962c..23aae288902329f41ff95089938b0b9221f33786 100644
Binary files a/img/clothes/upper/sweaterlarge/left.png and b/img/clothes/upper/sweaterlarge/left.png differ
diff --git a/img/clothes/upper/sweaterlarge/left_cover.png b/img/clothes/upper/sweaterlarge/left_cover.png
index 2c879c0038cb43bde014699381deda58241bd41c..4f262433338988d2e7ac938b0d39c528e00b5198 100644
Binary files a/img/clothes/upper/sweaterlarge/left_cover.png and b/img/clothes/upper/sweaterlarge/left_cover.png differ
diff --git a/img/clothes/upper/sweaterlarge/right.png b/img/clothes/upper/sweaterlarge/right.png
index 7309e8688a747346d07640210418a6833db93285..9e77abb0a07ae22429f58584f329da275a2f88c3 100644
Binary files a/img/clothes/upper/sweaterlarge/right.png and b/img/clothes/upper/sweaterlarge/right.png differ
diff --git a/img/clothes/upper/sweaterlarge/right_cover.png b/img/clothes/upper/sweaterlarge/right_cover.png
index 1f80a932e498e377e1cd39e2604bf74499f73187..a3d0e3f98cdaf6bcf83963f41e43617eb845d8d8 100644
Binary files a/img/clothes/upper/sweaterlarge/right_cover.png and b/img/clothes/upper/sweaterlarge/right_cover.png differ
diff --git a/img/clothes/upper/sweaterlarge/tattered.png b/img/clothes/upper/sweaterlarge/tattered.png
index d1579bf91aaed046b37586c01b10e966c36c9837..5624c77738c47e25a74362ec1404ace7b9c0f7c2 100644
Binary files a/img/clothes/upper/sweaterlarge/tattered.png and b/img/clothes/upper/sweaterlarge/tattered.png differ
diff --git a/img/clothes/upper/sweaterlarge/torn.png b/img/clothes/upper/sweaterlarge/torn.png
index d1579bf91aaed046b37586c01b10e966c36c9837..5624c77738c47e25a74362ec1404ace7b9c0f7c2 100644
Binary files a/img/clothes/upper/sweaterlarge/torn.png and b/img/clothes/upper/sweaterlarge/torn.png differ
diff --git a/img/clothes/upper/swimshirt/acc_frayed.png b/img/clothes/upper/swimshirt/acc_frayed.png
index 67147a88c1f1569d6db611ec1c7d9b0f9dcb5851..118a0da3747954f6f92ab4357feffb9db285c19d 100644
Binary files a/img/clothes/upper/swimshirt/acc_frayed.png and b/img/clothes/upper/swimshirt/acc_frayed.png differ
diff --git a/img/clothes/upper/swimshirt/acc_full.png b/img/clothes/upper/swimshirt/acc_full.png
index 012e452997c672793f558902f3367ad28923e7e2..77a4f2e576d8632194db288744f85e5dc63a08a1 100644
Binary files a/img/clothes/upper/swimshirt/acc_full.png and b/img/clothes/upper/swimshirt/acc_full.png differ
diff --git a/img/clothes/upper/swimshirt/acc_tattered.png b/img/clothes/upper/swimshirt/acc_tattered.png
index bcffb01dca1cfbc6a7ef8754cf33871a9f61f1e2..ec511a7fa148527a197ad556328124372f6f2706 100644
Binary files a/img/clothes/upper/swimshirt/acc_tattered.png and b/img/clothes/upper/swimshirt/acc_tattered.png differ
diff --git a/img/clothes/upper/swimshirt/acc_torn.png b/img/clothes/upper/swimshirt/acc_torn.png
index 72b7245543e94eabd46cc99aaf563663889feaf9..fe113dd873912a1613e4c15f8e171ba041735804 100644
Binary files a/img/clothes/upper/swimshirt/acc_torn.png and b/img/clothes/upper/swimshirt/acc_torn.png differ
diff --git a/img/clothes/upper/swimshirt/frayed.png b/img/clothes/upper/swimshirt/frayed.png
index d4e5281093eb2fbbdca7137b8cf3087fb7130d2b..75070118a56ca5a947e47f1c1a31d92d4abb4296 100644
Binary files a/img/clothes/upper/swimshirt/frayed.png and b/img/clothes/upper/swimshirt/frayed.png differ
diff --git a/img/clothes/upper/swimshirt/full.png b/img/clothes/upper/swimshirt/full.png
index c13680d4f19ba7d71d10a71c56596b5c7178921f..fe7f7e771a0094d1a6591a0d4b9295eb58557546 100644
Binary files a/img/clothes/upper/swimshirt/full.png and b/img/clothes/upper/swimshirt/full.png differ
diff --git a/img/clothes/upper/swimshirt/hold_gray.png b/img/clothes/upper/swimshirt/hold_gray.png
index e4e9ef112624407546617ae2327e820a5f09c907..ef29ff4b8ed3d0033a2bd2c6f135a9cf87943717 100644
Binary files a/img/clothes/upper/swimshirt/hold_gray.png and b/img/clothes/upper/swimshirt/hold_gray.png differ
diff --git a/img/clothes/upper/swimshirt/left.png b/img/clothes/upper/swimshirt/left.png
index 9e1607a7cb809b4bca63cf97efde665f4fa9c428..1bbf08b517467669c86b6394008b1e74a6590840 100644
Binary files a/img/clothes/upper/swimshirt/left.png and b/img/clothes/upper/swimshirt/left.png differ
diff --git a/img/clothes/upper/swimshirt/left_cover.png b/img/clothes/upper/swimshirt/left_cover.png
index 0b9fb1b18e97fc45e5808d26e52f2d1347211e87..6d659bd41de5059e63e8631cbdae2b5f7351cda5 100644
Binary files a/img/clothes/upper/swimshirt/left_cover.png and b/img/clothes/upper/swimshirt/left_cover.png differ
diff --git a/img/clothes/upper/swimshirt/right.png b/img/clothes/upper/swimshirt/right.png
index 3796d29ff042483d8d845e365b7101395a071f5f..317d425e34e6f5e62b5b1ee420d36bbf4a5d090c 100644
Binary files a/img/clothes/upper/swimshirt/right.png and b/img/clothes/upper/swimshirt/right.png differ
diff --git a/img/clothes/upper/swimshirt/right_cover.png b/img/clothes/upper/swimshirt/right_cover.png
index 21123770ad5a78e5d352192791856e58d560f926..dd6c49bf920850620ba506b72409657bbd1e4929 100644
Binary files a/img/clothes/upper/swimshirt/right_cover.png and b/img/clothes/upper/swimshirt/right_cover.png differ
diff --git a/img/clothes/upper/swimshirt/tattered.png b/img/clothes/upper/swimshirt/tattered.png
index f3d25215eb74603264221f75c0168317d364b161..ddb897207643fd43a3a4d07395a03ccab81e09e1 100644
Binary files a/img/clothes/upper/swimshirt/tattered.png and b/img/clothes/upper/swimshirt/tattered.png differ
diff --git a/img/clothes/upper/swimshirt/torn.png b/img/clothes/upper/swimshirt/torn.png
index bf14024e36418396c11db83e7c49f13d6f90f967..da5d652fcba65117283584c80a650b88a5ca2d4f 100644
Binary files a/img/clothes/upper/swimshirt/torn.png and b/img/clothes/upper/swimshirt/torn.png differ
diff --git a/img/clothes/upper/tanktop/4_gray.png b/img/clothes/upper/tanktop/4_gray.png
index 2932c5738611348cd2e65da92eb91e817a65de63..0b51560ece13da30b243da6076b693f76b2195f7 100644
Binary files a/img/clothes/upper/tanktop/4_gray.png and b/img/clothes/upper/tanktop/4_gray.png differ
diff --git a/img/clothes/upper/tanktop/5_gray.png b/img/clothes/upper/tanktop/5_gray.png
index 6a725d5307cf1613afb40f5a9e236201539df9be..1ebabf636af7c7645b1417ddb206e5afdb14b4ea 100644
Binary files a/img/clothes/upper/tanktop/5_gray.png and b/img/clothes/upper/tanktop/5_gray.png differ
diff --git a/img/clothes/upper/tanktop/6_gray.png b/img/clothes/upper/tanktop/6_gray.png
index 27cdb69a1ce794f9c1709a77d796f2319b92b117..d0a7c10cff0863ad88fb76d62526cf3644ada191 100644
Binary files a/img/clothes/upper/tanktop/6_gray.png and b/img/clothes/upper/tanktop/6_gray.png differ
diff --git a/img/clothes/upper/tanktop/frayed_gray.png b/img/clothes/upper/tanktop/frayed_gray.png
index 1a30580d8fd13cb3523a9d40996184d94b5a2092..d84bac71c4b9b7b8c539d032863716abfb9b2abf 100644
Binary files a/img/clothes/upper/tanktop/frayed_gray.png and b/img/clothes/upper/tanktop/frayed_gray.png differ
diff --git a/img/clothes/upper/tanktop/full_gray.png b/img/clothes/upper/tanktop/full_gray.png
index 92d5a2a2307f59a8ed5826e9a90c129877bc0e91..8b1779ad1e7a5ec9c8fc49a08145814036d76673 100644
Binary files a/img/clothes/upper/tanktop/full_gray.png and b/img/clothes/upper/tanktop/full_gray.png differ
diff --git a/img/clothes/upper/tanktop/tattered_gray.png b/img/clothes/upper/tanktop/tattered_gray.png
index 60713bc67f376c54c3933f1b766fb0821e0d7098..d361ec4482d7cb5f8cb13d5875c024e479a34824 100644
Binary files a/img/clothes/upper/tanktop/tattered_gray.png and b/img/clothes/upper/tanktop/tattered_gray.png differ
diff --git a/img/clothes/upper/tanktop/torn_gray.png b/img/clothes/upper/tanktop/torn_gray.png
index bc7724d92a9b1d29d869edc6dd3fb6abe4ec6864..c53996d5f8a319120ab7be354c867f7f80c20242 100644
Binary files a/img/clothes/upper/tanktop/torn_gray.png and b/img/clothes/upper/tanktop/torn_gray.png differ
diff --git a/img/clothes/upper/tiefronttop/1_gray.png b/img/clothes/upper/tiefronttop/1_gray.png
index 9ad608d5402c3d4e0553c80b3452181a3099a3d5..7247f5d814a53aad9dbc11b9d911e0ad063598ce 100644
Binary files a/img/clothes/upper/tiefronttop/1_gray.png and b/img/clothes/upper/tiefronttop/1_gray.png differ
diff --git a/img/clothes/upper/tiefronttop/2_gray.png b/img/clothes/upper/tiefronttop/2_gray.png
index 30fbdfbcfd448ca1970070f7e3ac4abddce8ab46..b9d6bca2e2edaf41561ff35d12efcbd9beb2ea30 100644
Binary files a/img/clothes/upper/tiefronttop/2_gray.png and b/img/clothes/upper/tiefronttop/2_gray.png differ
diff --git a/img/clothes/upper/tiefronttop/3_gray.png b/img/clothes/upper/tiefronttop/3_gray.png
index 29177ab5c3b4d8525063caef8b24cd7a3466f06d..91655405efdad57829b26534bebef6eaf2b59d6d 100644
Binary files a/img/clothes/upper/tiefronttop/3_gray.png and b/img/clothes/upper/tiefronttop/3_gray.png differ
diff --git a/img/clothes/upper/tiefronttop/4_gray.png b/img/clothes/upper/tiefronttop/4_gray.png
index 01e5526e0ec82443abe38b173491e80cdc5c6471..68df5f00c0b210bd35678e9d880ce0e62abd9d33 100644
Binary files a/img/clothes/upper/tiefronttop/4_gray.png and b/img/clothes/upper/tiefronttop/4_gray.png differ
diff --git a/img/clothes/upper/tiefronttop/5_gray.png b/img/clothes/upper/tiefronttop/5_gray.png
index 47b42fba82bc4f06e477d262e57a474f98a39bfe..00b1422ab4ad7a609c507d8a431ce478ed46ee4b 100644
Binary files a/img/clothes/upper/tiefronttop/5_gray.png and b/img/clothes/upper/tiefronttop/5_gray.png differ
diff --git a/img/clothes/upper/towel/3_gray.png b/img/clothes/upper/towel/3_gray.png
index 70edbda454dbd10314176917087eb9cb2bde3d6f..b8f6916275f95d808670b8d6e494696333ccf20a 100644
Binary files a/img/clothes/upper/towel/3_gray.png and b/img/clothes/upper/towel/3_gray.png differ
diff --git a/img/clothes/upper/towel/4_gray.png b/img/clothes/upper/towel/4_gray.png
index 66674e0583a2f9f205ea60d7b2457661f1bd523e..3991b6b8e4ff1de99f136a037998a1555ed1ab52 100644
Binary files a/img/clothes/upper/towel/4_gray.png and b/img/clothes/upper/towel/4_gray.png differ
diff --git a/img/clothes/upper/towel/5_gray.png b/img/clothes/upper/towel/5_gray.png
index de9ede607e49f5b22a63a9c582e32a5ba1cb96f8..a31ece84e326d8a5e9ecfc7a59e3197916ca56b7 100644
Binary files a/img/clothes/upper/towel/5_gray.png and b/img/clothes/upper/towel/5_gray.png differ
diff --git a/img/clothes/upper/towel/frayed_gray.png b/img/clothes/upper/towel/frayed_gray.png
index 42db54e44897e29436222671fe3f67f095956ee2..926c2d5e6c0b9024f0022834e3130d89edb242db 100644
Binary files a/img/clothes/upper/towel/frayed_gray.png and b/img/clothes/upper/towel/frayed_gray.png differ
diff --git a/img/clothes/upper/towel/full_gray.png b/img/clothes/upper/towel/full_gray.png
index dbe2d1755c0a194ea9dfe7f146f90f9f87876de0..926c2d5e6c0b9024f0022834e3130d89edb242db 100644
Binary files a/img/clothes/upper/towel/full_gray.png and b/img/clothes/upper/towel/full_gray.png differ
diff --git a/img/clothes/upper/towel/tattered_gray.png b/img/clothes/upper/towel/tattered_gray.png
index 5b819a268e67a9c5ee0775071e643251602ce903..926c2d5e6c0b9024f0022834e3130d89edb242db 100644
Binary files a/img/clothes/upper/towel/tattered_gray.png and b/img/clothes/upper/towel/tattered_gray.png differ
diff --git a/img/clothes/upper/towel/torn_gray.png b/img/clothes/upper/towel/torn_gray.png
index cc545e99505b4b08c55f2cc359aefc32fe550777..926c2d5e6c0b9024f0022834e3130d89edb242db 100644
Binary files a/img/clothes/upper/towel/torn_gray.png and b/img/clothes/upper/towel/torn_gray.png differ
diff --git a/img/clothes/upper/towellarge/3_gray.png b/img/clothes/upper/towellarge/3_gray.png
index 5a40916092562a5407aac5b335c84640f893a70d..b8f6916275f95d808670b8d6e494696333ccf20a 100644
Binary files a/img/clothes/upper/towellarge/3_gray.png and b/img/clothes/upper/towellarge/3_gray.png differ
diff --git a/img/clothes/upper/towellarge/4_gray.png b/img/clothes/upper/towellarge/4_gray.png
index be49413e7f6a6b2eb13a09de443023673b0756d6..919fcb94bde8e46e01e4b11998198aa3b1454626 100644
Binary files a/img/clothes/upper/towellarge/4_gray.png and b/img/clothes/upper/towellarge/4_gray.png differ
diff --git a/img/clothes/upper/towellarge/5_gray.png b/img/clothes/upper/towellarge/5_gray.png
index ae94b03e93d921c50e9487df798c4c17ea7f82ad..18a8b86d2d2c0521613a14ed0812ae8c65e7c3ef 100644
Binary files a/img/clothes/upper/towellarge/5_gray.png and b/img/clothes/upper/towellarge/5_gray.png differ
diff --git a/img/clothes/upper/towellarge/frayed_gray.png b/img/clothes/upper/towellarge/frayed_gray.png
index 078598b61ae4b255b5eb43f5e9d540cedaca3ddc..b771dc1a258c84de8158d87a9f102531810a2ddd 100644
Binary files a/img/clothes/upper/towellarge/frayed_gray.png and b/img/clothes/upper/towellarge/frayed_gray.png differ
diff --git a/img/clothes/upper/towellarge/full_gray.png b/img/clothes/upper/towellarge/full_gray.png
index 078598b61ae4b255b5eb43f5e9d540cedaca3ddc..b771dc1a258c84de8158d87a9f102531810a2ddd 100644
Binary files a/img/clothes/upper/towellarge/full_gray.png and b/img/clothes/upper/towellarge/full_gray.png differ
diff --git a/img/clothes/upper/towellarge/tattered_gray.png b/img/clothes/upper/towellarge/tattered_gray.png
index 078598b61ae4b255b5eb43f5e9d540cedaca3ddc..b771dc1a258c84de8158d87a9f102531810a2ddd 100644
Binary files a/img/clothes/upper/towellarge/tattered_gray.png and b/img/clothes/upper/towellarge/tattered_gray.png differ
diff --git a/img/clothes/upper/towellarge/torn_gray.png b/img/clothes/upper/towellarge/torn_gray.png
index 078598b61ae4b255b5eb43f5e9d540cedaca3ddc..b771dc1a258c84de8158d87a9f102531810a2ddd 100644
Binary files a/img/clothes/upper/towellarge/torn_gray.png and b/img/clothes/upper/towellarge/torn_gray.png differ
diff --git a/img/clothes/upper/traditionalmaid/4.png b/img/clothes/upper/traditionalmaid/4.png
index 05a0ce32699bfaabac12ad41af2d79f9a89e2044..5355aacb57581d87128d263c389a3007386eba60 100644
Binary files a/img/clothes/upper/traditionalmaid/4.png and b/img/clothes/upper/traditionalmaid/4.png differ
diff --git a/img/clothes/upper/traditionalmaid/5.png b/img/clothes/upper/traditionalmaid/5.png
index 3e21e3b95d9230f43d251567e65b9fd4ac80f207..43c4fe7a0f37b1364396630f79ea26cbaf911dec 100644
Binary files a/img/clothes/upper/traditionalmaid/5.png and b/img/clothes/upper/traditionalmaid/5.png differ
diff --git a/img/clothes/upper/traditionalmaid/6.png b/img/clothes/upper/traditionalmaid/6.png
index 05a81d94b1b2a078c90c1b55a64fb279cf23726c..be55af9bd8ab2ba65b9341f408c280a01618ccc6 100644
Binary files a/img/clothes/upper/traditionalmaid/6.png and b/img/clothes/upper/traditionalmaid/6.png differ
diff --git a/img/clothes/upper/traditionalmaid/frayed.png b/img/clothes/upper/traditionalmaid/frayed.png
index 5960a5e259fb06a16bc7d055036750d5e306ed18..ce591b44cd26261f9b37091e08659e71eda8607a 100644
Binary files a/img/clothes/upper/traditionalmaid/frayed.png and b/img/clothes/upper/traditionalmaid/frayed.png differ
diff --git a/img/clothes/upper/traditionalmaid/full.png b/img/clothes/upper/traditionalmaid/full.png
index 8267c269c865d53eb861c6ea68aa72891e44cd3f..a709862c58c22c90b5253854d428a5de469c0efc 100644
Binary files a/img/clothes/upper/traditionalmaid/full.png and b/img/clothes/upper/traditionalmaid/full.png differ
diff --git a/img/clothes/upper/traditionalmaid/hold.png b/img/clothes/upper/traditionalmaid/hold.png
index ac58c3864955f3400bd0660930fd618dcfb4d82b..c39705afa8f409305ae157b2d38b567e19a7e682 100644
Binary files a/img/clothes/upper/traditionalmaid/hold.png and b/img/clothes/upper/traditionalmaid/hold.png differ
diff --git a/img/clothes/upper/traditionalmaid/left.png b/img/clothes/upper/traditionalmaid/left.png
index dd194219bff1d80e207d44f8b4ba18c5f259489e..bba2f1714f5d337273628b73f8cb71d2aa9f147b 100644
Binary files a/img/clothes/upper/traditionalmaid/left.png and b/img/clothes/upper/traditionalmaid/left.png differ
diff --git a/img/clothes/upper/traditionalmaid/left_cover.png b/img/clothes/upper/traditionalmaid/left_cover.png
index d227c123fb6cd2dab353e8bee03b9fda73adac03..02beef6c3d7a3d9f6b322f7aa49c25b6094ce006 100644
Binary files a/img/clothes/upper/traditionalmaid/left_cover.png and b/img/clothes/upper/traditionalmaid/left_cover.png differ
diff --git a/img/clothes/upper/traditionalmaid/right.png b/img/clothes/upper/traditionalmaid/right.png
index d0097a57db4e3c792d9e6c362f243f44d13de0c1..5d76ab610b1fc30a07fca455010dd6b512f96b21 100644
Binary files a/img/clothes/upper/traditionalmaid/right.png and b/img/clothes/upper/traditionalmaid/right.png differ
diff --git a/img/clothes/upper/traditionalmaid/right_cover.png b/img/clothes/upper/traditionalmaid/right_cover.png
index 018fd26396c84845e33bfff3f7504af9683d225a..e1ea82aa276906dbd0694c4254ca69a47c7ffe6f 100644
Binary files a/img/clothes/upper/traditionalmaid/right_cover.png and b/img/clothes/upper/traditionalmaid/right_cover.png differ
diff --git a/img/clothes/upper/traditionalmaid/tattered.png b/img/clothes/upper/traditionalmaid/tattered.png
index a10273758da8f95756a97c147f790ca2113afcbb..9c2aac7791431fbccc0373ecaf46bed51aea9b76 100644
Binary files a/img/clothes/upper/traditionalmaid/tattered.png and b/img/clothes/upper/traditionalmaid/tattered.png differ
diff --git a/img/clothes/upper/traditionalmaid/torn.png b/img/clothes/upper/traditionalmaid/torn.png
index 411a584e04e6038f39a63bc951c309e8bce22b4e..b23ffbda968688639025bead2f9af6e2edc6bddb 100644
Binary files a/img/clothes/upper/traditionalmaid/torn.png and b/img/clothes/upper/traditionalmaid/torn.png differ
diff --git a/img/clothes/upper/transparentnurse/frayed.png b/img/clothes/upper/transparentnurse/frayed.png
index 540b64fb1482c7805ed0a699e6181e2c3aa66d4d..6de06c9eef457de7f9b2138497a06f20ee917c57 100644
Binary files a/img/clothes/upper/transparentnurse/frayed.png and b/img/clothes/upper/transparentnurse/frayed.png differ
diff --git a/img/clothes/upper/transparentnurse/full.png b/img/clothes/upper/transparentnurse/full.png
index 540b64fb1482c7805ed0a699e6181e2c3aa66d4d..6de06c9eef457de7f9b2138497a06f20ee917c57 100644
Binary files a/img/clothes/upper/transparentnurse/full.png and b/img/clothes/upper/transparentnurse/full.png differ
diff --git a/img/clothes/upper/transparentnurse/hold.png b/img/clothes/upper/transparentnurse/hold.png
index e94a783c1ec478d9421338fb0e4312597bf6a9c5..ee195b4b26b489637c2d4d5c8091469ab1dae8b6 100644
Binary files a/img/clothes/upper/transparentnurse/hold.png and b/img/clothes/upper/transparentnurse/hold.png differ
diff --git a/img/clothes/upper/transparentnurse/left.png b/img/clothes/upper/transparentnurse/left.png
index 18a6fc8028a2e14947ab160d86053db4f6e4255a..bec7e7b76f8efdedf25e623d300599ce900fd00e 100644
Binary files a/img/clothes/upper/transparentnurse/left.png and b/img/clothes/upper/transparentnurse/left.png differ
diff --git a/img/clothes/upper/transparentnurse/left_cover.png b/img/clothes/upper/transparentnurse/left_cover.png
index fad1839455e534308c1bec130f619b19a106acbe..cc12d62a2bd4c80b7d87f35a385792db1ec0f661 100644
Binary files a/img/clothes/upper/transparentnurse/left_cover.png and b/img/clothes/upper/transparentnurse/left_cover.png differ
diff --git a/img/clothes/upper/transparentnurse/right.png b/img/clothes/upper/transparentnurse/right.png
index aca2cfa5d21983bbfd72b1032c400aa3fc3d4edb..0cd185b0d56affee416031d2d85018a952f0719d 100644
Binary files a/img/clothes/upper/transparentnurse/right.png and b/img/clothes/upper/transparentnurse/right.png differ
diff --git a/img/clothes/upper/transparentnurse/right_cover.png b/img/clothes/upper/transparentnurse/right_cover.png
index 2b5c885db944cecf77cf22970844f3c5918a0efa..795e3a67b2c63f95bfd2779330bbf72715105f1a 100644
Binary files a/img/clothes/upper/transparentnurse/right_cover.png and b/img/clothes/upper/transparentnurse/right_cover.png differ
diff --git a/img/clothes/upper/transparentnurse/tattered.png b/img/clothes/upper/transparentnurse/tattered.png
index 540b64fb1482c7805ed0a699e6181e2c3aa66d4d..6de06c9eef457de7f9b2138497a06f20ee917c57 100644
Binary files a/img/clothes/upper/transparentnurse/tattered.png and b/img/clothes/upper/transparentnurse/tattered.png differ
diff --git a/img/clothes/upper/transparentnurse/torn.png b/img/clothes/upper/transparentnurse/torn.png
index 540b64fb1482c7805ed0a699e6181e2c3aa66d4d..6de06c9eef457de7f9b2138497a06f20ee917c57 100644
Binary files a/img/clothes/upper/transparentnurse/torn.png and b/img/clothes/upper/transparentnurse/torn.png differ
diff --git a/img/clothes/upper/tshirt/frayed_gray.png b/img/clothes/upper/tshirt/frayed_gray.png
index 133221d9e3a00e36b25a6ff4ee8b4f7bf710c639..d787d10cc94e9d9cd7ac11bb4917d1c67a260614 100644
Binary files a/img/clothes/upper/tshirt/frayed_gray.png and b/img/clothes/upper/tshirt/frayed_gray.png differ
diff --git a/img/clothes/upper/tshirt/full_gray.png b/img/clothes/upper/tshirt/full_gray.png
index d861aea21a86bbe23a3bc9de6e2c000e51d53aa6..50022ee1e69eb1b0db52728194315d9a6baa063e 100644
Binary files a/img/clothes/upper/tshirt/full_gray.png and b/img/clothes/upper/tshirt/full_gray.png differ
diff --git a/img/clothes/upper/tshirt/hold_gray.png b/img/clothes/upper/tshirt/hold_gray.png
index 6bb60d63f66ea13abc992a2f9cbd5f2bd5b715a9..49d139fe8552a4e2ea76415d90b6bb4f536a7fa6 100644
Binary files a/img/clothes/upper/tshirt/hold_gray.png and b/img/clothes/upper/tshirt/hold_gray.png differ
diff --git a/img/clothes/upper/tshirt/left_cover_gray.png b/img/clothes/upper/tshirt/left_cover_gray.png
index 8851ace02be99f8f6ac013634889aea300c7554e..43845ffbf3b59a19ca86ac6e79d5e77b69960e8a 100644
Binary files a/img/clothes/upper/tshirt/left_cover_gray.png and b/img/clothes/upper/tshirt/left_cover_gray.png differ
diff --git a/img/clothes/upper/tshirt/left_gray.png b/img/clothes/upper/tshirt/left_gray.png
index cba473c3653d2dc7f2b22a6619bf5048260983d1..f16203d0190b5cbcf8d164631a658cd412124f0a 100644
Binary files a/img/clothes/upper/tshirt/left_gray.png and b/img/clothes/upper/tshirt/left_gray.png differ
diff --git a/img/clothes/upper/tshirt/right_cover_gray.png b/img/clothes/upper/tshirt/right_cover_gray.png
index 7b5f00d9837c01c05f786f3a0538f0b32594c36e..6b38c5f9bd0d9ff602480aafa04e737be2b80a26 100644
Binary files a/img/clothes/upper/tshirt/right_cover_gray.png and b/img/clothes/upper/tshirt/right_cover_gray.png differ
diff --git a/img/clothes/upper/tshirt/right_gray.png b/img/clothes/upper/tshirt/right_gray.png
index d008e91ea1188d2bb7b933acee9c12c8a0afa74b..70ab50ca98892149cb8b5163a9fe6dc874c44c14 100644
Binary files a/img/clothes/upper/tshirt/right_gray.png and b/img/clothes/upper/tshirt/right_gray.png differ
diff --git a/img/clothes/upper/tshirt/tattered_gray.png b/img/clothes/upper/tshirt/tattered_gray.png
index 4517c49296178bc3822726ec0a9d83446da29542..9960c97dced8d08b6d179945899138ba1d574cb8 100644
Binary files a/img/clothes/upper/tshirt/tattered_gray.png and b/img/clothes/upper/tshirt/tattered_gray.png differ
diff --git a/img/clothes/upper/tshirt/torn_gray.png b/img/clothes/upper/tshirt/torn_gray.png
index 2965c607ba25016cde1b964d719de7ae3842c3e8..ee2bffa55d516ed64b5cb8212064712e4fdcfde2 100644
Binary files a/img/clothes/upper/tshirt/torn_gray.png and b/img/clothes/upper/tshirt/torn_gray.png differ
diff --git a/img/clothes/upper/tubetop/2_gray.png b/img/clothes/upper/tubetop/2_gray.png
index 20b221b7059db944db886a8baf0147e7d05ef35b..5a19b05fa988249a64e882f70845f92a5b8e1a2e 100644
Binary files a/img/clothes/upper/tubetop/2_gray.png and b/img/clothes/upper/tubetop/2_gray.png differ
diff --git a/img/clothes/upper/tubetop/3_gray.png b/img/clothes/upper/tubetop/3_gray.png
index 9913283aa41f6f3cbb36b1eb5c09079d5c65b385..6dc7ca4ee21153852d36e9de623371d269766179 100644
Binary files a/img/clothes/upper/tubetop/3_gray.png and b/img/clothes/upper/tubetop/3_gray.png differ
diff --git a/img/clothes/upper/tubetop/4_gray.png b/img/clothes/upper/tubetop/4_gray.png
index e1d7d7ed066ac90d9030bbb574c2adaf162c1270..fed28019860d8fa08144122a2a3b9a2dd86660a2 100644
Binary files a/img/clothes/upper/tubetop/4_gray.png and b/img/clothes/upper/tubetop/4_gray.png differ
diff --git a/img/clothes/upper/tubetop/5_gray.png b/img/clothes/upper/tubetop/5_gray.png
index cde4cab59a99022b9da3c3678dab5146ef623617..80b1a3544de6ad7f00c752142703d16f5d1fe7a3 100644
Binary files a/img/clothes/upper/tubetop/5_gray.png and b/img/clothes/upper/tubetop/5_gray.png differ
diff --git a/img/clothes/upper/tubetop/frayed_gray.png b/img/clothes/upper/tubetop/frayed_gray.png
index e8dd719f8c71632d543aac02e2a7b5e21191bf4e..67590d3829096182bab68407a0e33b0f677f5433 100644
Binary files a/img/clothes/upper/tubetop/frayed_gray.png and b/img/clothes/upper/tubetop/frayed_gray.png differ
diff --git a/img/clothes/upper/tubetop/full_gray.png b/img/clothes/upper/tubetop/full_gray.png
index 5820fa888e2aa58d0e267a4de951f040a7b28dea..5e3f74a21bcf31dea2d1b17c82176a85319ef75c 100644
Binary files a/img/clothes/upper/tubetop/full_gray.png and b/img/clothes/upper/tubetop/full_gray.png differ
diff --git a/img/clothes/upper/tubetop/tattered_gray.png b/img/clothes/upper/tubetop/tattered_gray.png
index bdea5dd8dd06e0d04c1bc7ab46575b567f9f6c76..98d20f4fb4c6472943fb0ecbc7dc8d4a59a21818 100644
Binary files a/img/clothes/upper/tubetop/tattered_gray.png and b/img/clothes/upper/tubetop/tattered_gray.png differ
diff --git a/img/clothes/upper/tubetop/torn_gray.png b/img/clothes/upper/tubetop/torn_gray.png
index d647f03846a0d71ae32a01cc944cdde0ce833436..2147835d4581552c6c01b19f0349c0383e01c327 100644
Binary files a/img/clothes/upper/tubetop/torn_gray.png and b/img/clothes/upper/tubetop/torn_gray.png differ
diff --git a/img/clothes/upper/turtleneck/2_gray.png b/img/clothes/upper/turtleneck/2_gray.png
index 6e1b572c15c81639bfe56ae31d62f594146dc16a..8c347f2dc80763f9b215da2bf865567df2ee7c7a 100644
Binary files a/img/clothes/upper/turtleneck/2_gray.png and b/img/clothes/upper/turtleneck/2_gray.png differ
diff --git a/img/clothes/upper/turtleneck/3_gray.png b/img/clothes/upper/turtleneck/3_gray.png
index e881e2b82e9b6c31a8631f1bbedcb5cac7ef47c7..3def29eba44e19e3346f29c18f0949d9b2c173c7 100644
Binary files a/img/clothes/upper/turtleneck/3_gray.png and b/img/clothes/upper/turtleneck/3_gray.png differ
diff --git a/img/clothes/upper/turtleneck/4_gray.png b/img/clothes/upper/turtleneck/4_gray.png
index 4c6165bb8e86ab83ac05cbca5889071ca69efd3e..257f3c58a703e3c4cd216ae6ecc0bf02dc99921f 100644
Binary files a/img/clothes/upper/turtleneck/4_gray.png and b/img/clothes/upper/turtleneck/4_gray.png differ
diff --git a/img/clothes/upper/turtleneck/5_gray.png b/img/clothes/upper/turtleneck/5_gray.png
index 044ed3770ae1131f1b38eb63751591c493b268e9..6f21c76fc74e782b08029edd9c12ef5fd26f886a 100644
Binary files a/img/clothes/upper/turtleneck/5_gray.png and b/img/clothes/upper/turtleneck/5_gray.png differ
diff --git a/img/clothes/upper/turtleneck/6_gray.png b/img/clothes/upper/turtleneck/6_gray.png
index 98e4c49a2112a11832acf6de9fab85e42daa95e5..dc65079bd4ab8b306eafd8a68ca35d7c6c58257d 100644
Binary files a/img/clothes/upper/turtleneck/6_gray.png and b/img/clothes/upper/turtleneck/6_gray.png differ
diff --git a/img/clothes/upper/turtleneck/frayed_gray.png b/img/clothes/upper/turtleneck/frayed_gray.png
index 276d423ad8f0a01c094c3f98283d1381dcc98dfa..230037663f212c34804cffe3e05ec6ca808acaa2 100644
Binary files a/img/clothes/upper/turtleneck/frayed_gray.png and b/img/clothes/upper/turtleneck/frayed_gray.png differ
diff --git a/img/clothes/upper/turtleneck/full_gray.png b/img/clothes/upper/turtleneck/full_gray.png
index 2cefad6ad3646c2d752b73f66fb733454b8d1d5f..4ad4cb6d9140d1256c2a1bfeeb72a3b385483a47 100644
Binary files a/img/clothes/upper/turtleneck/full_gray.png and b/img/clothes/upper/turtleneck/full_gray.png differ
diff --git a/img/clothes/upper/turtleneck/hold_gray.png b/img/clothes/upper/turtleneck/hold_gray.png
index ace01180393cfb1d88be8a749cb2202ff16fc36e..87ae434047420fa0bd26afa0c7f1c1cb3deeb4c5 100644
Binary files a/img/clothes/upper/turtleneck/hold_gray.png and b/img/clothes/upper/turtleneck/hold_gray.png differ
diff --git a/img/clothes/upper/turtleneck/left_cover_gray.png b/img/clothes/upper/turtleneck/left_cover_gray.png
index ff9530879497417a6e44f1728dcbba2da8a73fa4..ba4cb2b62c330ab13e895f662eee8f683360de7a 100644
Binary files a/img/clothes/upper/turtleneck/left_cover_gray.png and b/img/clothes/upper/turtleneck/left_cover_gray.png differ
diff --git a/img/clothes/upper/turtleneck/left_gray.png b/img/clothes/upper/turtleneck/left_gray.png
index ac66d26f16f635c891b60450f05b18d4dd8e6ec9..5629cf66ef5ee1fc00467202f6499197aa024a38 100644
Binary files a/img/clothes/upper/turtleneck/left_gray.png and b/img/clothes/upper/turtleneck/left_gray.png differ
diff --git a/img/clothes/upper/turtleneck/right_cover_gray.png b/img/clothes/upper/turtleneck/right_cover_gray.png
index 2336fd866265ff8e3215dea3dfb0743fe31e40f5..a2bf64a7f31fdccd17d5cba902e890fc3daa9252 100644
Binary files a/img/clothes/upper/turtleneck/right_cover_gray.png and b/img/clothes/upper/turtleneck/right_cover_gray.png differ
diff --git a/img/clothes/upper/turtleneck/right_gray.png b/img/clothes/upper/turtleneck/right_gray.png
index 8c276e710b24281952ff13d85c4ea58d44a2c585..5dd2f1bc2a78b75343ad8de65a7679662adcaf2e 100644
Binary files a/img/clothes/upper/turtleneck/right_gray.png and b/img/clothes/upper/turtleneck/right_gray.png differ
diff --git a/img/clothes/upper/turtleneck/tattered_gray.png b/img/clothes/upper/turtleneck/tattered_gray.png
index 6151018d6d268886d09c3c30f6efce0f9808ef5f..4a432b2dac55c92c64d0dea6ee8ec8a1b9faaa17 100644
Binary files a/img/clothes/upper/turtleneck/tattered_gray.png and b/img/clothes/upper/turtleneck/tattered_gray.png differ
diff --git a/img/clothes/upper/turtleneck/torn_gray.png b/img/clothes/upper/turtleneck/torn_gray.png
index 325d9c896442938a4a5e73aa6bb5aa5ad6c2dff9..d8c0bc6e325d1bb808fb63489edd44e28fac2442 100644
Binary files a/img/clothes/upper/turtleneck/torn_gray.png and b/img/clothes/upper/turtleneck/torn_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/1_gray.png b/img/clothes/upper/turtleneckjumper/1_gray.png
index 5261eaaf4d562a2a53058fb7b551292930e90c71..2062558de9ef52cb1b0532324e2bc167662e1889 100644
Binary files a/img/clothes/upper/turtleneckjumper/1_gray.png and b/img/clothes/upper/turtleneckjumper/1_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/2_gray.png b/img/clothes/upper/turtleneckjumper/2_gray.png
index 78ee2192eb4f49176f6c2ddbfc245c8fa22cfe17..d8e4eaaf0985a1a25a6e508acaf20f1e4c986b9e 100644
Binary files a/img/clothes/upper/turtleneckjumper/2_gray.png and b/img/clothes/upper/turtleneckjumper/2_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/3_gray.png b/img/clothes/upper/turtleneckjumper/3_gray.png
index bb89d12d76b71cfa63c80934f9703a02de56fe8f..61e768a7168ca5afb4a739ac5c15d7cc073bfa56 100644
Binary files a/img/clothes/upper/turtleneckjumper/3_gray.png and b/img/clothes/upper/turtleneckjumper/3_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/5_gray.png b/img/clothes/upper/turtleneckjumper/5_gray.png
index 72df94a705ddaa6f6f01ee05615b3d16d195affc..dcb9d1912f8baec01a5690b7f1d8d0cf8cc6cc85 100644
Binary files a/img/clothes/upper/turtleneckjumper/5_gray.png and b/img/clothes/upper/turtleneckjumper/5_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/6_gray.png b/img/clothes/upper/turtleneckjumper/6_gray.png
index 6c1cfda049791d1b4cb01039eb1b70e069b0267f..23cc6748f41d4d4233337edf0fc6c829bd592066 100644
Binary files a/img/clothes/upper/turtleneckjumper/6_gray.png and b/img/clothes/upper/turtleneckjumper/6_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/frayed_gray.png b/img/clothes/upper/turtleneckjumper/frayed_gray.png
index 8d3c9ee723d2d5066b45b955979d95c2c38240b4..5fed172da0a406ff32589ae3e8b14297e0f7f0f1 100644
Binary files a/img/clothes/upper/turtleneckjumper/frayed_gray.png and b/img/clothes/upper/turtleneckjumper/frayed_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/full_gray.png b/img/clothes/upper/turtleneckjumper/full_gray.png
index baab889f2999a650e2ab2d309690568b96f2f3bf..b153a7957f895eb2ec1711a9058c7096d6f7c989 100644
Binary files a/img/clothes/upper/turtleneckjumper/full_gray.png and b/img/clothes/upper/turtleneckjumper/full_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/hold_gray.png b/img/clothes/upper/turtleneckjumper/hold_gray.png
index ace01180393cfb1d88be8a749cb2202ff16fc36e..87ae434047420fa0bd26afa0c7f1c1cb3deeb4c5 100644
Binary files a/img/clothes/upper/turtleneckjumper/hold_gray.png and b/img/clothes/upper/turtleneckjumper/hold_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/left_cover_gray.png b/img/clothes/upper/turtleneckjumper/left_cover_gray.png
index 44931a3df84b774181b936e936d176df6735f9e9..925dd10478027ee57851c1ddf7a3922eaa4e0ca4 100644
Binary files a/img/clothes/upper/turtleneckjumper/left_cover_gray.png and b/img/clothes/upper/turtleneckjumper/left_cover_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/left_gray.png b/img/clothes/upper/turtleneckjumper/left_gray.png
index b4491532b94455486bda5368481118ad3445ff15..1704c9760b9d953ecedfd89521a60ce165a75bfc 100644
Binary files a/img/clothes/upper/turtleneckjumper/left_gray.png and b/img/clothes/upper/turtleneckjumper/left_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/right_cover_gray.png b/img/clothes/upper/turtleneckjumper/right_cover_gray.png
index 12fa599f03232493cf27cc8679e0190f3d2b63ed..bba89ca81f3e84bca36cf1a9e9f7d91b5245164e 100644
Binary files a/img/clothes/upper/turtleneckjumper/right_cover_gray.png and b/img/clothes/upper/turtleneckjumper/right_cover_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/right_gray.png b/img/clothes/upper/turtleneckjumper/right_gray.png
index e17ca189a43b43a071bbc7f5a44f973fe5821b43..5613d1c067c6304db30f01e409dd64c46bdb29ca 100644
Binary files a/img/clothes/upper/turtleneckjumper/right_gray.png and b/img/clothes/upper/turtleneckjumper/right_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/tattered_gray.png b/img/clothes/upper/turtleneckjumper/tattered_gray.png
index e47271638a2619d782ccb35a6c74dc897cdf34b3..23e71209fb5505a8140eb01f0f077d25477684c9 100644
Binary files a/img/clothes/upper/turtleneckjumper/tattered_gray.png and b/img/clothes/upper/turtleneckjumper/tattered_gray.png differ
diff --git a/img/clothes/upper/turtleneckjumper/torn_gray.png b/img/clothes/upper/turtleneckjumper/torn_gray.png
index e5497ea5fc52cc85815738dc7b0cec2f9295f98e..bd735cf78f70908607e5a26516f584f9c384d9df 100644
Binary files a/img/clothes/upper/turtleneckjumper/torn_gray.png and b/img/clothes/upper/turtleneckjumper/torn_gray.png differ
diff --git a/img/clothes/upper/tuxedo/4.png b/img/clothes/upper/tuxedo/4.png
index 3319d305e5ef756cd51000b2413cce84e2c09911..a6711e629b29d47a2d15040771623d275bc081dc 100644
Binary files a/img/clothes/upper/tuxedo/4.png and b/img/clothes/upper/tuxedo/4.png differ
diff --git a/img/clothes/upper/tuxedo/5.png b/img/clothes/upper/tuxedo/5.png
index d7f2737051ba858f1238182e73eeb5bd868f2b34..5031b4ccd749c3853c83251dee634e3bb5934486 100644
Binary files a/img/clothes/upper/tuxedo/5.png and b/img/clothes/upper/tuxedo/5.png differ
diff --git a/img/clothes/upper/tuxedo/6.png b/img/clothes/upper/tuxedo/6.png
index b4766ef24de60d0ffca2b62f0c37524943bc4850..f9a19ad71f955e74be387eb13d8c799ba7937838 100644
Binary files a/img/clothes/upper/tuxedo/6.png and b/img/clothes/upper/tuxedo/6.png differ
diff --git a/img/clothes/upper/tuxedo/frayed.png b/img/clothes/upper/tuxedo/frayed.png
index 55be7ae106fa488237bac95fe2eaef323ba5bb66..17588e7cca958ba724dc4e1f60af0b469e884d18 100644
Binary files a/img/clothes/upper/tuxedo/frayed.png and b/img/clothes/upper/tuxedo/frayed.png differ
diff --git a/img/clothes/upper/tuxedo/full.png b/img/clothes/upper/tuxedo/full.png
index d8e02d30cac9f7255746928bde91581f1eb71ed3..e2d3326b0542b0a691f19d9cb9d3ce0c46158f71 100644
Binary files a/img/clothes/upper/tuxedo/full.png and b/img/clothes/upper/tuxedo/full.png differ
diff --git a/img/clothes/upper/tuxedo/hold.png b/img/clothes/upper/tuxedo/hold.png
index 78bbeed4649327ac80411d29e5063d9009f3ef4a..e44bf43d364b76751293faf2b1b49ab38481220d 100644
Binary files a/img/clothes/upper/tuxedo/hold.png and b/img/clothes/upper/tuxedo/hold.png differ
diff --git a/img/clothes/upper/tuxedo/left.png b/img/clothes/upper/tuxedo/left.png
index 9ddced19c3d5fdf6d5f9180b0d1051a1d2bce976..50e05d2ebc5ec3039a66e16b026d15747de5c213 100644
Binary files a/img/clothes/upper/tuxedo/left.png and b/img/clothes/upper/tuxedo/left.png differ
diff --git a/img/clothes/upper/tuxedo/left_cover.png b/img/clothes/upper/tuxedo/left_cover.png
index 2a74d0a879ca0763591788a41fd1c987a56b84c9..5f0304fa691c38602e4300b6a69afddaf9166b83 100644
Binary files a/img/clothes/upper/tuxedo/left_cover.png and b/img/clothes/upper/tuxedo/left_cover.png differ
diff --git a/img/clothes/upper/tuxedo/right.png b/img/clothes/upper/tuxedo/right.png
index 24631aa18fc74b3efb3f45d0522c6135d7e4347f..de74f20d6265bb2ccac733fa0e5bdce7d17b9fe4 100644
Binary files a/img/clothes/upper/tuxedo/right.png and b/img/clothes/upper/tuxedo/right.png differ
diff --git a/img/clothes/upper/tuxedo/right_cover.png b/img/clothes/upper/tuxedo/right_cover.png
index 9f8e15f5a53dd795c09b87d8bf14be09bb41b44e..8dfa031f25e54443895bc92a763adb51d71d2a39 100644
Binary files a/img/clothes/upper/tuxedo/right_cover.png and b/img/clothes/upper/tuxedo/right_cover.png differ
diff --git a/img/clothes/upper/tuxedo/tattered.png b/img/clothes/upper/tuxedo/tattered.png
index 43fe9e7316f92d168d029db3ec6cf75da33a7c60..e046e75aa299dc7277752882001080a22b945da8 100644
Binary files a/img/clothes/upper/tuxedo/tattered.png and b/img/clothes/upper/tuxedo/tattered.png differ
diff --git a/img/clothes/upper/tuxedo/torn.png b/img/clothes/upper/tuxedo/torn.png
index 1f798b6ebfa3b1553c6bca807cd81d9c9bd73942..b117aaa9f4a4f82578e0d2b7605da49b4c3de21c 100644
Binary files a/img/clothes/upper/tuxedo/torn.png and b/img/clothes/upper/tuxedo/torn.png differ
diff --git a/img/clothes/upper/utility/5_gray.png b/img/clothes/upper/utility/5_gray.png
index 91cc8f3ee8cb5f5969628d5649dbcfebe8cafa6e..8764012d2433b432a25f6f7851844983bb51680c 100644
Binary files a/img/clothes/upper/utility/5_gray.png and b/img/clothes/upper/utility/5_gray.png differ
diff --git a/img/clothes/upper/utility/frayed_gray.png b/img/clothes/upper/utility/frayed_gray.png
index 9ec53f0dc7a499f77f3d592f4dcba3f3667bbc9b..e2ba50635d8bd118ef35dd7b9e95a01fba6890bb 100644
Binary files a/img/clothes/upper/utility/frayed_gray.png and b/img/clothes/upper/utility/frayed_gray.png differ
diff --git a/img/clothes/upper/utility/full_gray.png b/img/clothes/upper/utility/full_gray.png
index 97f5879385104c2cd133577e70b2a093ab4a1f4c..a2176b8124add18d2397b5bdbca67c468882f240 100644
Binary files a/img/clothes/upper/utility/full_gray.png and b/img/clothes/upper/utility/full_gray.png differ
diff --git a/img/clothes/upper/utility/tattered_gray.png b/img/clothes/upper/utility/tattered_gray.png
index cf672455190513b4f08b0e0048fc3a210df67a86..378e6450bc24e39d943696e8b3459a1917fd0b3a 100644
Binary files a/img/clothes/upper/utility/tattered_gray.png and b/img/clothes/upper/utility/tattered_gray.png differ
diff --git a/img/clothes/upper/utility/torn_gray.png b/img/clothes/upper/utility/torn_gray.png
index 714d6f76f0b2ca4b59034bcd7914586ccce201c0..485df36e4d2c5f67ab594bc2f7501740d873ae73 100644
Binary files a/img/clothes/upper/utility/torn_gray.png and b/img/clothes/upper/utility/torn_gray.png differ
diff --git a/img/clothes/upper/utilityshirt/5_acc_gray.png b/img/clothes/upper/utilityshirt/5_acc_gray.png
index 03af2ee0917df6e20a2b6990c7cb238a76a47e07..8764012d2433b432a25f6f7851844983bb51680c 100644
Binary files a/img/clothes/upper/utilityshirt/5_acc_gray.png and b/img/clothes/upper/utilityshirt/5_acc_gray.png differ
diff --git a/img/clothes/upper/utilityshirt/5_gray.png b/img/clothes/upper/utilityshirt/5_gray.png
index 03af2ee0917df6e20a2b6990c7cb238a76a47e07..8764012d2433b432a25f6f7851844983bb51680c 100644
Binary files a/img/clothes/upper/utilityshirt/5_gray.png and b/img/clothes/upper/utilityshirt/5_gray.png differ
diff --git a/img/clothes/upper/utilityshirt/acc_frayed_gray.png b/img/clothes/upper/utilityshirt/acc_frayed_gray.png
index 9ec53f0dc7a499f77f3d592f4dcba3f3667bbc9b..e2ba50635d8bd118ef35dd7b9e95a01fba6890bb 100644
Binary files a/img/clothes/upper/utilityshirt/acc_frayed_gray.png and b/img/clothes/upper/utilityshirt/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/utilityshirt/acc_full_gray.png b/img/clothes/upper/utilityshirt/acc_full_gray.png
index 97f5879385104c2cd133577e70b2a093ab4a1f4c..a2176b8124add18d2397b5bdbca67c468882f240 100644
Binary files a/img/clothes/upper/utilityshirt/acc_full_gray.png and b/img/clothes/upper/utilityshirt/acc_full_gray.png differ
diff --git a/img/clothes/upper/utilityshirt/acc_gray.png b/img/clothes/upper/utilityshirt/acc_gray.png
index 64b4b410f5f612de4ee65434dd4a96ece0b79558..1e062c8b6e07f8d5f95cda5af9ebf8345f5a00be 100644
Binary files a/img/clothes/upper/utilityshirt/acc_gray.png and b/img/clothes/upper/utilityshirt/acc_gray.png differ
diff --git a/img/clothes/upper/utilityshirt/acc_tattered_gray.png b/img/clothes/upper/utilityshirt/acc_tattered_gray.png
index cf672455190513b4f08b0e0048fc3a210df67a86..378e6450bc24e39d943696e8b3459a1917fd0b3a 100644
Binary files a/img/clothes/upper/utilityshirt/acc_tattered_gray.png and b/img/clothes/upper/utilityshirt/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/utilityshirt/acc_torn_gray.png b/img/clothes/upper/utilityshirt/acc_torn_gray.png
index 714d6f76f0b2ca4b59034bcd7914586ccce201c0..485df36e4d2c5f67ab594bc2f7501740d873ae73 100644
Binary files a/img/clothes/upper/utilityshirt/acc_torn_gray.png and b/img/clothes/upper/utilityshirt/acc_torn_gray.png differ
diff --git a/img/clothes/upper/utilityshirt/frayed_gray.png b/img/clothes/upper/utilityshirt/frayed_gray.png
index 442f3437a7dd2b350262525745e2cb0b2bcf8b9d..711c0bad0f4db3585aa122c60a772339d53b74f9 100644
Binary files a/img/clothes/upper/utilityshirt/frayed_gray.png and b/img/clothes/upper/utilityshirt/frayed_gray.png differ
diff --git a/img/clothes/upper/utilityshirt/full_gray.png b/img/clothes/upper/utilityshirt/full_gray.png
index 7f25c39b065eaccb8189d0061dcd8d018f0b0d8c..28099a8c9f4607f0f883015cb6533299f2fe0388 100644
Binary files a/img/clothes/upper/utilityshirt/full_gray.png and b/img/clothes/upper/utilityshirt/full_gray.png differ
diff --git a/img/clothes/upper/utilityshirt/tattered_gray.png b/img/clothes/upper/utilityshirt/tattered_gray.png
index 308d0d5ea76d59dd38ffa7a21c83fbbcb05a332d..cdbe187a8a4e0dee40db8354dcf3f0bae203773b 100644
Binary files a/img/clothes/upper/utilityshirt/tattered_gray.png and b/img/clothes/upper/utilityshirt/tattered_gray.png differ
diff --git a/img/clothes/upper/utilityshirt/torn_gray.png b/img/clothes/upper/utilityshirt/torn_gray.png
index 5f109d81d294c68bcd306a4f9b7d2bd180c81361..45a3275a0fd0370d541bd005d086e7251dfccd64 100644
Binary files a/img/clothes/upper/utilityshirt/torn_gray.png and b/img/clothes/upper/utilityshirt/torn_gray.png differ
diff --git a/img/clothes/upper/vampire/3_gray.png b/img/clothes/upper/vampire/3_gray.png
index 467ef6468f6051f254297bc601429883f76b07b2..fb18942da46d8772a365f9b2cc29fff6fb8e6c54 100644
Binary files a/img/clothes/upper/vampire/3_gray.png and b/img/clothes/upper/vampire/3_gray.png differ
diff --git a/img/clothes/upper/vampire/5_gray.png b/img/clothes/upper/vampire/5_gray.png
index 3edc03843b56373157db07b11ca4ea75d20945ae..6cb324a25908a26958fd46cc8a5e652be897b8a4 100644
Binary files a/img/clothes/upper/vampire/5_gray.png and b/img/clothes/upper/vampire/5_gray.png differ
diff --git a/img/clothes/upper/vampire/6_gray.png b/img/clothes/upper/vampire/6_gray.png
index 864802a618d83b3f2de95231e85987c656ac5574..5dab9384418144c2677fdee3db9023a2e94fbc04 100644
Binary files a/img/clothes/upper/vampire/6_gray.png and b/img/clothes/upper/vampire/6_gray.png differ
diff --git a/img/clothes/upper/vampire/frayed_gray.png b/img/clothes/upper/vampire/frayed_gray.png
index 5bbd323b73ebbf74a6ea10f63f7f2387166c6066..7595fbc1e42d122fe172e6576cc83a4919d074c1 100644
Binary files a/img/clothes/upper/vampire/frayed_gray.png and b/img/clothes/upper/vampire/frayed_gray.png differ
diff --git a/img/clothes/upper/vampire/full_gray.png b/img/clothes/upper/vampire/full_gray.png
index 7d42e40061d885f60dfec628eb62f1b3a7024a35..0c2c8f3c0c4bad4fcc35f6f5009a2902596675f8 100644
Binary files a/img/clothes/upper/vampire/full_gray.png and b/img/clothes/upper/vampire/full_gray.png differ
diff --git a/img/clothes/upper/vampire/hold_gray.png b/img/clothes/upper/vampire/hold_gray.png
index 1b8a01d7537202adf73d558cc1c0ba16a1ed6e06..01713c239a5bada56f814bef86a771b6a34ecc80 100644
Binary files a/img/clothes/upper/vampire/hold_gray.png and b/img/clothes/upper/vampire/hold_gray.png differ
diff --git a/img/clothes/upper/vampire/left_cover_gray.png b/img/clothes/upper/vampire/left_cover_gray.png
index 8300522e7ee2b0d0e02bd28dcf3da2df6b91abe8..1c1b7212093fb8949a0033a262e46eae0441f160 100644
Binary files a/img/clothes/upper/vampire/left_cover_gray.png and b/img/clothes/upper/vampire/left_cover_gray.png differ
diff --git a/img/clothes/upper/vampire/left_gray.png b/img/clothes/upper/vampire/left_gray.png
index b3feb90805d086785a62e1d2855d8db792e73b99..c2149c332c37d3659e85dfda110089ac83d32e84 100644
Binary files a/img/clothes/upper/vampire/left_gray.png and b/img/clothes/upper/vampire/left_gray.png differ
diff --git a/img/clothes/upper/vampire/right_cover_gray.png b/img/clothes/upper/vampire/right_cover_gray.png
index e1e3b5286a9b393431d7c6d6d473edbf0c40cdce..92143a7621087b5280f9dd4a283a676f1bbb040a 100644
Binary files a/img/clothes/upper/vampire/right_cover_gray.png and b/img/clothes/upper/vampire/right_cover_gray.png differ
diff --git a/img/clothes/upper/vampire/right_gray.png b/img/clothes/upper/vampire/right_gray.png
index cb8131f438e4344ad2f150e09cffdae49d1c5022..efc20784dad72df85feff83cd42edb575200bac3 100644
Binary files a/img/clothes/upper/vampire/right_gray.png and b/img/clothes/upper/vampire/right_gray.png differ
diff --git a/img/clothes/upper/vampire/tattered_gray.png b/img/clothes/upper/vampire/tattered_gray.png
index 1dff86a7feb6e9bd5b08bc5391b1f6e34a449be3..b2c73544d6bcf150436e7c7993b87b1a9eb1b55b 100644
Binary files a/img/clothes/upper/vampire/tattered_gray.png and b/img/clothes/upper/vampire/tattered_gray.png differ
diff --git a/img/clothes/upper/vampire/torn_gray.png b/img/clothes/upper/vampire/torn_gray.png
index ca95c90384f5b74031654235da9c99390ca8290b..08c6d0d32b51f6d46d7bc5394a5b25267e783026 100644
Binary files a/img/clothes/upper/vampire/torn_gray.png and b/img/clothes/upper/vampire/torn_gray.png differ
diff --git a/img/clothes/upper/victorianmaid/2.png b/img/clothes/upper/victorianmaid/2.png
index f8c4c1fca213f5bb13dab4a605fcdc1003bf2666..8372d1e5fb831e089e6229caad676fa8578ee39f 100644
Binary files a/img/clothes/upper/victorianmaid/2.png and b/img/clothes/upper/victorianmaid/2.png differ
diff --git a/img/clothes/upper/victorianmaid/3.png b/img/clothes/upper/victorianmaid/3.png
index 6d2cbc751c57a076f0d23485cd03f7a427f3fdb9..38ffc2bd07a398a03eb76aff9596d326277aae9e 100644
Binary files a/img/clothes/upper/victorianmaid/3.png and b/img/clothes/upper/victorianmaid/3.png differ
diff --git a/img/clothes/upper/victorianmaid/4.png b/img/clothes/upper/victorianmaid/4.png
index 08e57601e5af82e27028546ded688b81dba8e6cd..7a206565f93375376420e9b094ae01f6743918f5 100644
Binary files a/img/clothes/upper/victorianmaid/4.png and b/img/clothes/upper/victorianmaid/4.png differ
diff --git a/img/clothes/upper/victorianmaid/5.png b/img/clothes/upper/victorianmaid/5.png
index 8f8da027b33efcae3c785b029254771cb2dde5ec..f97221548cccc5b1cb3931daef29b36daa9126ef 100644
Binary files a/img/clothes/upper/victorianmaid/5.png and b/img/clothes/upper/victorianmaid/5.png differ
diff --git a/img/clothes/upper/victorianmaid/frayed.png b/img/clothes/upper/victorianmaid/frayed.png
index 0b328dcdda530d07d176fab2e1b557951fa070a6..165c4de699d881321f17ace61aed850c6ab38e2e 100644
Binary files a/img/clothes/upper/victorianmaid/frayed.png and b/img/clothes/upper/victorianmaid/frayed.png differ
diff --git a/img/clothes/upper/victorianmaid/full.png b/img/clothes/upper/victorianmaid/full.png
index 038a9350887a4578cd9eae84254a3caaa14d919d..73f9de9c90c445644eed4704542d2d6009db6a79 100644
Binary files a/img/clothes/upper/victorianmaid/full.png and b/img/clothes/upper/victorianmaid/full.png differ
diff --git a/img/clothes/upper/victorianmaid/hold.png b/img/clothes/upper/victorianmaid/hold.png
index 6d14371efda02ac38682e00878d8cc0825a0c7c3..43736bcf4ec531465b712737e4c6d7c256aef587 100644
Binary files a/img/clothes/upper/victorianmaid/hold.png and b/img/clothes/upper/victorianmaid/hold.png differ
diff --git a/img/clothes/upper/victorianmaid/left.png b/img/clothes/upper/victorianmaid/left.png
index 42a65b2150e3f471a1dcd4aa180c557cabad80db..bcf05adeb5ee458b440a0ab20cd9a5d364e33bdc 100644
Binary files a/img/clothes/upper/victorianmaid/left.png and b/img/clothes/upper/victorianmaid/left.png differ
diff --git a/img/clothes/upper/victorianmaid/left_cover.png b/img/clothes/upper/victorianmaid/left_cover.png
index 3aadeb58594e96b75d642a4f689dcff579ab98b9..75446d5c90ee9036e4406546dd214e652467ce2e 100644
Binary files a/img/clothes/upper/victorianmaid/left_cover.png and b/img/clothes/upper/victorianmaid/left_cover.png differ
diff --git a/img/clothes/upper/victorianmaid/right.png b/img/clothes/upper/victorianmaid/right.png
index c67b030d2065948dfac87d1f1e236d66da3c41df..4dfbd1ff739fa65c8555eeee9dde720d7282752e 100644
Binary files a/img/clothes/upper/victorianmaid/right.png and b/img/clothes/upper/victorianmaid/right.png differ
diff --git a/img/clothes/upper/victorianmaid/right_cover.png b/img/clothes/upper/victorianmaid/right_cover.png
index 9877429861d28ed41ed5262cbab71092e455960f..7a0a50b74feb3ecdf961cafbee2f044083352574 100644
Binary files a/img/clothes/upper/victorianmaid/right_cover.png and b/img/clothes/upper/victorianmaid/right_cover.png differ
diff --git a/img/clothes/upper/victorianmaid/tattered.png b/img/clothes/upper/victorianmaid/tattered.png
index 7e6f396d43bc0e8e91c152e1c504b72258b15173..10902cb18a112ec823e2b2a6d704ee1037ace8d1 100644
Binary files a/img/clothes/upper/victorianmaid/tattered.png and b/img/clothes/upper/victorianmaid/tattered.png differ
diff --git a/img/clothes/upper/victorianmaid/torn.png b/img/clothes/upper/victorianmaid/torn.png
index 2c82de5560cf6c7c06ee926f900a666c3f8d49b6..4f8de5ea3ac63ba1b9cf215d6480a43bff7c19d3 100644
Binary files a/img/clothes/upper/victorianmaid/torn.png and b/img/clothes/upper/victorianmaid/torn.png differ
diff --git a/img/clothes/upper/virginkiller/1_gray.png b/img/clothes/upper/virginkiller/1_gray.png
index 57d98f8c6bad4be5bc35879a5864ea077a3fdf10..760230690d078f3bf7b297065f46f038150d6015 100644
Binary files a/img/clothes/upper/virginkiller/1_gray.png and b/img/clothes/upper/virginkiller/1_gray.png differ
diff --git a/img/clothes/upper/virginkiller/2_gray.png b/img/clothes/upper/virginkiller/2_gray.png
index 5f9a987ccf9f1eb8295f6659d7b4fe1df47a7f74..a4a04a79e4047a645cc352f9bded3286c99d1f3f 100644
Binary files a/img/clothes/upper/virginkiller/2_gray.png and b/img/clothes/upper/virginkiller/2_gray.png differ
diff --git a/img/clothes/upper/virginkiller/3_gray.png b/img/clothes/upper/virginkiller/3_gray.png
index e3e39b0904e2f8129acf03f27640eca8a4b69a7c..05e52b5eb3e366e95d0c75bec60913ee5bab3482 100644
Binary files a/img/clothes/upper/virginkiller/3_gray.png and b/img/clothes/upper/virginkiller/3_gray.png differ
diff --git a/img/clothes/upper/virginkiller/4_gray.png b/img/clothes/upper/virginkiller/4_gray.png
index ab4e7ece0a40660a3742cf069f09eb1095f8f892..84c431d024a264daf38bb031c3b32cb2e5a02b4c 100644
Binary files a/img/clothes/upper/virginkiller/4_gray.png and b/img/clothes/upper/virginkiller/4_gray.png differ
diff --git a/img/clothes/upper/virginkiller/frayed_gray.png b/img/clothes/upper/virginkiller/frayed_gray.png
index dc16e198560ec597a49a4845edf0531c599702f9..31a23d40544e61d26dbc09b8b304eade1fd8f1cf 100644
Binary files a/img/clothes/upper/virginkiller/frayed_gray.png and b/img/clothes/upper/virginkiller/frayed_gray.png differ
diff --git a/img/clothes/upper/virginkiller/full_gray.png b/img/clothes/upper/virginkiller/full_gray.png
index 8784764136186ed79b9e968ddd151b4977c15559..46de5c585af8c564da08a51fbb11d83290449c67 100644
Binary files a/img/clothes/upper/virginkiller/full_gray.png and b/img/clothes/upper/virginkiller/full_gray.png differ
diff --git a/img/clothes/upper/virginkiller/tattered_gray.png b/img/clothes/upper/virginkiller/tattered_gray.png
index b655b4fa56f3d8af951352dac5f6bdadc32a33ee..992168f06cecaecbeafce3120ca6a621f11ca68c 100644
Binary files a/img/clothes/upper/virginkiller/tattered_gray.png and b/img/clothes/upper/virginkiller/tattered_gray.png differ
diff --git a/img/clothes/upper/virginkiller/torn_gray.png b/img/clothes/upper/virginkiller/torn_gray.png
index cecaca2d809393415b9940ef07b85dcc44f44ba0..05caf546d4cf97e0d4c3e6417074f427663c8021 100644
Binary files a/img/clothes/upper/virginkiller/torn_gray.png and b/img/clothes/upper/virginkiller/torn_gray.png differ
diff --git a/img/clothes/upper/virginkillerdress/1_gray.png b/img/clothes/upper/virginkillerdress/1_gray.png
index 57d98f8c6bad4be5bc35879a5864ea077a3fdf10..760230690d078f3bf7b297065f46f038150d6015 100644
Binary files a/img/clothes/upper/virginkillerdress/1_gray.png and b/img/clothes/upper/virginkillerdress/1_gray.png differ
diff --git a/img/clothes/upper/virginkillerdress/2_gray.png b/img/clothes/upper/virginkillerdress/2_gray.png
index 5f9a987ccf9f1eb8295f6659d7b4fe1df47a7f74..a4a04a79e4047a645cc352f9bded3286c99d1f3f 100644
Binary files a/img/clothes/upper/virginkillerdress/2_gray.png and b/img/clothes/upper/virginkillerdress/2_gray.png differ
diff --git a/img/clothes/upper/virginkillerdress/3_gray.png b/img/clothes/upper/virginkillerdress/3_gray.png
index e3e39b0904e2f8129acf03f27640eca8a4b69a7c..05e52b5eb3e366e95d0c75bec60913ee5bab3482 100644
Binary files a/img/clothes/upper/virginkillerdress/3_gray.png and b/img/clothes/upper/virginkillerdress/3_gray.png differ
diff --git a/img/clothes/upper/virginkillerdress/4_gray.png b/img/clothes/upper/virginkillerdress/4_gray.png
index ab4e7ece0a40660a3742cf069f09eb1095f8f892..84c431d024a264daf38bb031c3b32cb2e5a02b4c 100644
Binary files a/img/clothes/upper/virginkillerdress/4_gray.png and b/img/clothes/upper/virginkillerdress/4_gray.png differ
diff --git a/img/clothes/upper/virginkillerdress/frayed_gray.png b/img/clothes/upper/virginkillerdress/frayed_gray.png
index d343086c3d18af04942bdd5460ecabe5d7b2769a..655a5d8f4a0bb9f01f754b27283b082a4a599fec 100644
Binary files a/img/clothes/upper/virginkillerdress/frayed_gray.png and b/img/clothes/upper/virginkillerdress/frayed_gray.png differ
diff --git a/img/clothes/upper/virginkillerdress/full_gray.png b/img/clothes/upper/virginkillerdress/full_gray.png
index 5527c8401795fa68ff915195d511da556ff7a725..1d8ac35136ef1822740d97de89a0e2e4e357ce39 100644
Binary files a/img/clothes/upper/virginkillerdress/full_gray.png and b/img/clothes/upper/virginkillerdress/full_gray.png differ
diff --git a/img/clothes/upper/virginkillerdress/tattered_gray.png b/img/clothes/upper/virginkillerdress/tattered_gray.png
index dc62abf39c6d9513946753314f8415280c41d01a..de7fcaa0e1002ddac0706f55747f8226f7385a73 100644
Binary files a/img/clothes/upper/virginkillerdress/tattered_gray.png and b/img/clothes/upper/virginkillerdress/tattered_gray.png differ
diff --git a/img/clothes/upper/virginkillerdress/torn_gray.png b/img/clothes/upper/virginkillerdress/torn_gray.png
index 1fa548625feb9bf49dbe19dbd7a97c961eb1bb9d..e78896d361fecaa2c59132e33019da31086031d7 100644
Binary files a/img/clothes/upper/virginkillerdress/torn_gray.png and b/img/clothes/upper/virginkillerdress/torn_gray.png differ
diff --git a/img/clothes/upper/vneck/1_gray.png b/img/clothes/upper/vneck/1_gray.png
index 5dc2137383aa8eb84332eef4b6ccf9fb3ae30cf4..5402a46c63abf4e7508b62095fcd372ecea85237 100644
Binary files a/img/clothes/upper/vneck/1_gray.png and b/img/clothes/upper/vneck/1_gray.png differ
diff --git a/img/clothes/upper/vneck/2_gray.png b/img/clothes/upper/vneck/2_gray.png
index 04a4cc4fa1ff5a397c00b5676e060a8c2e7eec4e..423c4569064b42a0b1e44db4b274fee3d2087de6 100644
Binary files a/img/clothes/upper/vneck/2_gray.png and b/img/clothes/upper/vneck/2_gray.png differ
diff --git a/img/clothes/upper/vneck/3_gray.png b/img/clothes/upper/vneck/3_gray.png
index c226c78a7ce2754984e70023c4eb0a10c37a9a60..98a033fb2b1352c5360e87a3fbadd03869310f28 100644
Binary files a/img/clothes/upper/vneck/3_gray.png and b/img/clothes/upper/vneck/3_gray.png differ
diff --git a/img/clothes/upper/vneck/4_gray.png b/img/clothes/upper/vneck/4_gray.png
index 912497fbb21c5e8e12acbae52fe2c1c31c2c4387..86f5d8be9cccca0c687615f68905e221f7225f29 100644
Binary files a/img/clothes/upper/vneck/4_gray.png and b/img/clothes/upper/vneck/4_gray.png differ
diff --git a/img/clothes/upper/vneck/5_gray.png b/img/clothes/upper/vneck/5_gray.png
index 98192b39914d71ced35b16e55b0bc517f56c2a5a..c970481e19b30620bd2df1ab5efda2fc28d14e52 100644
Binary files a/img/clothes/upper/vneck/5_gray.png and b/img/clothes/upper/vneck/5_gray.png differ
diff --git a/img/clothes/upper/vneck/frayed_gray.png b/img/clothes/upper/vneck/frayed_gray.png
index 40ba5fa99372342952b82cb190ea04258dc9a7ab..4d0ab934b6f87e0668f253a80925a06cead31739 100644
Binary files a/img/clothes/upper/vneck/frayed_gray.png and b/img/clothes/upper/vneck/frayed_gray.png differ
diff --git a/img/clothes/upper/vneck/full_gray.png b/img/clothes/upper/vneck/full_gray.png
index a72bc2e68b1d039560ebc57c577e9fd96d620261..00257c559b6daf42213814820b2f7cd488c1eed5 100644
Binary files a/img/clothes/upper/vneck/full_gray.png and b/img/clothes/upper/vneck/full_gray.png differ
diff --git a/img/clothes/upper/vneck/hold_gray.png b/img/clothes/upper/vneck/hold_gray.png
index df61c2d8cebaf4d1f25a240980e76799be273e8c..bf88f738993fa92c8dd624adfee75ba37d6da371 100644
Binary files a/img/clothes/upper/vneck/hold_gray.png and b/img/clothes/upper/vneck/hold_gray.png differ
diff --git a/img/clothes/upper/vneck/left_cover_gray.png b/img/clothes/upper/vneck/left_cover_gray.png
index 03792505aabd7d5d5158c6a917a4235c40727edf..22241bcc6932ccf2af5e11bf70230264a82e205f 100644
Binary files a/img/clothes/upper/vneck/left_cover_gray.png and b/img/clothes/upper/vneck/left_cover_gray.png differ
diff --git a/img/clothes/upper/vneck/left_gray.png b/img/clothes/upper/vneck/left_gray.png
index 60b461448acceb71dbdd6858ce4ab9f759f06ab7..41c48cec6a5ec671d5cb11fdb36695d6ee4057de 100644
Binary files a/img/clothes/upper/vneck/left_gray.png and b/img/clothes/upper/vneck/left_gray.png differ
diff --git a/img/clothes/upper/vneck/right_cover_gray.png b/img/clothes/upper/vneck/right_cover_gray.png
index fd4e2d8901faa5d421c627e80f31c3c35a7f85d8..7fb2063c0519f106a43e782a568eb7b2215993f3 100644
Binary files a/img/clothes/upper/vneck/right_cover_gray.png and b/img/clothes/upper/vneck/right_cover_gray.png differ
diff --git a/img/clothes/upper/vneck/right_gray.png b/img/clothes/upper/vneck/right_gray.png
index bb308d1e46978128cd9a4cbad8b139e8494e6272..66c5f5e9989646e392a5196448ff006809404aa7 100644
Binary files a/img/clothes/upper/vneck/right_gray.png and b/img/clothes/upper/vneck/right_gray.png differ
diff --git a/img/clothes/upper/vneck/tattered_gray.png b/img/clothes/upper/vneck/tattered_gray.png
index 2b7167e0a1fd967be6eb2f993b277c79cbaf7cc6..8cd084f43ccbe886430f596853166e2936d5c213 100644
Binary files a/img/clothes/upper/vneck/tattered_gray.png and b/img/clothes/upper/vneck/tattered_gray.png differ
diff --git a/img/clothes/upper/vneck/torn_gray.png b/img/clothes/upper/vneck/torn_gray.png
index dbfcfcc2649c617db44c7f4d81e5e834a29184a1..b99ba17e039b5a5827822534fb2bfe5f1122b1ce 100644
Binary files a/img/clothes/upper/vneck/torn_gray.png and b/img/clothes/upper/vneck/torn_gray.png differ
diff --git a/img/clothes/upper/waistcoat/1_gray.png b/img/clothes/upper/waistcoat/1_gray.png
index 8254234c6677a8aad68658ebdf4e9e7348aaa1dc..42a6fda0f97b81040ac6ce9072ac0fbf39a46ed1 100644
Binary files a/img/clothes/upper/waistcoat/1_gray.png and b/img/clothes/upper/waistcoat/1_gray.png differ
diff --git a/img/clothes/upper/waistcoat/2_gray.png b/img/clothes/upper/waistcoat/2_gray.png
index 7a1e0d4ec6c9cd8a7b2a9bdef6f3e0984317bb2f..ddf21d3953f2d76e6ccd167aeb5e53f103dd4a12 100644
Binary files a/img/clothes/upper/waistcoat/2_gray.png and b/img/clothes/upper/waistcoat/2_gray.png differ
diff --git a/img/clothes/upper/waistcoat/3_gray.png b/img/clothes/upper/waistcoat/3_gray.png
index 138e5d8a136e6fa3cdc4177a790ff7f8621f89d1..0f5d0b28adf1ca128368c93c3c9531530bf8a8ad 100644
Binary files a/img/clothes/upper/waistcoat/3_gray.png and b/img/clothes/upper/waistcoat/3_gray.png differ
diff --git a/img/clothes/upper/waistcoat/4_gray.png b/img/clothes/upper/waistcoat/4_gray.png
index 913e158ccbad3180c229ca44851bccd303b4c3d9..a3df412c9793bbc121a8cc0c44229919b63841e8 100644
Binary files a/img/clothes/upper/waistcoat/4_gray.png and b/img/clothes/upper/waistcoat/4_gray.png differ
diff --git a/img/clothes/upper/waistcoat/5_gray.png b/img/clothes/upper/waistcoat/5_gray.png
index 369e7b89b792d417d244a3a5e32819a75f371371..3201d4d5f8d1c607777ccf90784d4789e80ddbd3 100644
Binary files a/img/clothes/upper/waistcoat/5_gray.png and b/img/clothes/upper/waistcoat/5_gray.png differ
diff --git a/img/clothes/upper/waistcoat/acc_frayed_alt_gray.png b/img/clothes/upper/waistcoat/acc_frayed_alt_gray.png
index e4bcf0bd04d8ba6488ad597e0735dedd1ebf8bbc..41950e6c75d9d3c34b0e4cb438862542920eaa37 100644
Binary files a/img/clothes/upper/waistcoat/acc_frayed_alt_gray.png and b/img/clothes/upper/waistcoat/acc_frayed_alt_gray.png differ
diff --git a/img/clothes/upper/waistcoat/acc_frayed_gray.png b/img/clothes/upper/waistcoat/acc_frayed_gray.png
index 68f8ff6296c4cb45cec33ff32c5c5669db622620..8e91acbbfae979a2deda5bbfa23a3e6bd396e690 100644
Binary files a/img/clothes/upper/waistcoat/acc_frayed_gray.png and b/img/clothes/upper/waistcoat/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/waistcoat/acc_full_alt_gray.png b/img/clothes/upper/waistcoat/acc_full_alt_gray.png
index e4bcf0bd04d8ba6488ad597e0735dedd1ebf8bbc..41950e6c75d9d3c34b0e4cb438862542920eaa37 100644
Binary files a/img/clothes/upper/waistcoat/acc_full_alt_gray.png and b/img/clothes/upper/waistcoat/acc_full_alt_gray.png differ
diff --git a/img/clothes/upper/waistcoat/acc_full_gray.png b/img/clothes/upper/waistcoat/acc_full_gray.png
index 1e4e35fd26c506a7b240b70519436d60e0bec4a8..14b9fb1a6efb0d48483a4723e5f304ee215cfff1 100644
Binary files a/img/clothes/upper/waistcoat/acc_full_gray.png and b/img/clothes/upper/waistcoat/acc_full_gray.png differ
diff --git a/img/clothes/upper/waistcoat/acc_tattered_alt_gray.png b/img/clothes/upper/waistcoat/acc_tattered_alt_gray.png
index e4bcf0bd04d8ba6488ad597e0735dedd1ebf8bbc..41950e6c75d9d3c34b0e4cb438862542920eaa37 100644
Binary files a/img/clothes/upper/waistcoat/acc_tattered_alt_gray.png and b/img/clothes/upper/waistcoat/acc_tattered_alt_gray.png differ
diff --git a/img/clothes/upper/waistcoat/acc_tattered_gray.png b/img/clothes/upper/waistcoat/acc_tattered_gray.png
index 3aa16fe7166eb4ff7e1524b022551923880120da..1ac9cc019f3b6c53c8429fd3c0ff8b7019f0be47 100644
Binary files a/img/clothes/upper/waistcoat/acc_tattered_gray.png and b/img/clothes/upper/waistcoat/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/waistcoat/acc_torn_alt_gray.png b/img/clothes/upper/waistcoat/acc_torn_alt_gray.png
index e4bcf0bd04d8ba6488ad597e0735dedd1ebf8bbc..41950e6c75d9d3c34b0e4cb438862542920eaa37 100644
Binary files a/img/clothes/upper/waistcoat/acc_torn_alt_gray.png and b/img/clothes/upper/waistcoat/acc_torn_alt_gray.png differ
diff --git a/img/clothes/upper/waistcoat/acc_torn_gray.png b/img/clothes/upper/waistcoat/acc_torn_gray.png
index 1ca04a6dad629d9367f15c96c9568860fdebd072..ff2b212dfc2ecb051b301e36e4bbcfcb54a8d18d 100644
Binary files a/img/clothes/upper/waistcoat/acc_torn_gray.png and b/img/clothes/upper/waistcoat/acc_torn_gray.png differ
diff --git a/img/clothes/upper/waistcoat/frayed_gray.png b/img/clothes/upper/waistcoat/frayed_gray.png
index 2c5feb8a2ba2ea0a391637a36bcf5d8fcb39ef1c..2c90d31be6daecc6bc5b713b4d5fe5c25a9ddf21 100644
Binary files a/img/clothes/upper/waistcoat/frayed_gray.png and b/img/clothes/upper/waistcoat/frayed_gray.png differ
diff --git a/img/clothes/upper/waistcoat/full_gray.png b/img/clothes/upper/waistcoat/full_gray.png
index 2a0a15f8299c2b5d42368e5018124b0e9e1ba2ff..1d7d912afa28118ca8534dec38c5e7f333dec5ee 100644
Binary files a/img/clothes/upper/waistcoat/full_gray.png and b/img/clothes/upper/waistcoat/full_gray.png differ
diff --git a/img/clothes/upper/waistcoat/hold_gray.png b/img/clothes/upper/waistcoat/hold_gray.png
index e27bbb6e33f6bfa1660f1adb8a4a329e59b10625..c0d69d7d7f7226005a104f3442ab17268df2e5c9 100644
Binary files a/img/clothes/upper/waistcoat/hold_gray.png and b/img/clothes/upper/waistcoat/hold_gray.png differ
diff --git a/img/clothes/upper/waistcoat/hold_rolled_gray.png b/img/clothes/upper/waistcoat/hold_rolled_gray.png
index d7e098b93948a6197eebfca4973a4973a58e43fc..bae7537333e42e98aef6e05faf9561db83191139 100644
Binary files a/img/clothes/upper/waistcoat/hold_rolled_gray.png and b/img/clothes/upper/waistcoat/hold_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoat/left_cover_gray.png b/img/clothes/upper/waistcoat/left_cover_gray.png
index bdc02d86a19df66e6e37c0ad5f715f444a97bc6b..45589f6dcfca3a81ef6caa28e184ae0f59e1efdd 100644
Binary files a/img/clothes/upper/waistcoat/left_cover_gray.png and b/img/clothes/upper/waistcoat/left_cover_gray.png differ
diff --git a/img/clothes/upper/waistcoat/left_cover_rolled_gray.png b/img/clothes/upper/waistcoat/left_cover_rolled_gray.png
index 9a55b8c5a159a33cbb3fa7c4317b4c217e84c9e1..d29bca5848c7957b25d413733d206984bfac6267 100644
Binary files a/img/clothes/upper/waistcoat/left_cover_rolled_gray.png and b/img/clothes/upper/waistcoat/left_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoat/left_gray.png b/img/clothes/upper/waistcoat/left_gray.png
index 838935e00256f040be7d649fa581055230802e80..1d72ec4fd81a4d43ddbb15586995c6bf2031b5ee 100644
Binary files a/img/clothes/upper/waistcoat/left_gray.png and b/img/clothes/upper/waistcoat/left_gray.png differ
diff --git a/img/clothes/upper/waistcoat/left_rolled_gray.png b/img/clothes/upper/waistcoat/left_rolled_gray.png
index 8457f17da47b8ac20ff5a605cfdc699eb33163f3..a6cb490c8caa43ebc941153f8a5178d31da57ac8 100644
Binary files a/img/clothes/upper/waistcoat/left_rolled_gray.png and b/img/clothes/upper/waistcoat/left_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoat/right_cover_gray.png b/img/clothes/upper/waistcoat/right_cover_gray.png
index 3eeb1ff53219314697393cb486dbcad27e7683b2..17253a9ed08b08687565c7f5e9b3c8cf14c740a2 100644
Binary files a/img/clothes/upper/waistcoat/right_cover_gray.png and b/img/clothes/upper/waistcoat/right_cover_gray.png differ
diff --git a/img/clothes/upper/waistcoat/right_cover_rolled_gray.png b/img/clothes/upper/waistcoat/right_cover_rolled_gray.png
index c7f6b6b4805ef586179db6430690fc3bab3c47c9..55e21b4169a77db749abecab2d0a285bbd7bb4c1 100644
Binary files a/img/clothes/upper/waistcoat/right_cover_rolled_gray.png and b/img/clothes/upper/waistcoat/right_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoat/right_gray.png b/img/clothes/upper/waistcoat/right_gray.png
index 8b44f6a8a15d280baedb598cd89938bd2d8737b9..8e2ea6c3508707062090027f478ea3e8064b5e8e 100644
Binary files a/img/clothes/upper/waistcoat/right_gray.png and b/img/clothes/upper/waistcoat/right_gray.png differ
diff --git a/img/clothes/upper/waistcoat/right_rolled_gray.png b/img/clothes/upper/waistcoat/right_rolled_gray.png
index a31dfafaed13265a6f05c5b3c1af88a06df24cdc..f79bb7e85527e6e29ef2b8a8be58b1da5e5e76a6 100644
Binary files a/img/clothes/upper/waistcoat/right_rolled_gray.png and b/img/clothes/upper/waistcoat/right_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoat/tattered_gray.png b/img/clothes/upper/waistcoat/tattered_gray.png
index c65ee0a902a0d7e8d59543290f300354ac3e5db5..f9b0de5adbea02bb936475c60e551cb9568a2f20 100644
Binary files a/img/clothes/upper/waistcoat/tattered_gray.png and b/img/clothes/upper/waistcoat/tattered_gray.png differ
diff --git a/img/clothes/upper/waistcoat/torn_gray.png b/img/clothes/upper/waistcoat/torn_gray.png
index 7631df1a91fa2ea84c5c86225603dcc646cbcac8..c5b8e7e6ff56aaa0ecb634641aa2ab222edc9293 100644
Binary files a/img/clothes/upper/waistcoat/torn_gray.png and b/img/clothes/upper/waistcoat/torn_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/1_gray.png b/img/clothes/upper/waistcoatlapel/1_gray.png
index 8254234c6677a8aad68658ebdf4e9e7348aaa1dc..42a6fda0f97b81040ac6ce9072ac0fbf39a46ed1 100644
Binary files a/img/clothes/upper/waistcoatlapel/1_gray.png and b/img/clothes/upper/waistcoatlapel/1_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/2_gray.png b/img/clothes/upper/waistcoatlapel/2_gray.png
index 7a1e0d4ec6c9cd8a7b2a9bdef6f3e0984317bb2f..ddf21d3953f2d76e6ccd167aeb5e53f103dd4a12 100644
Binary files a/img/clothes/upper/waistcoatlapel/2_gray.png and b/img/clothes/upper/waistcoatlapel/2_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/3_gray.png b/img/clothes/upper/waistcoatlapel/3_gray.png
index 138e5d8a136e6fa3cdc4177a790ff7f8621f89d1..0f5d0b28adf1ca128368c93c3c9531530bf8a8ad 100644
Binary files a/img/clothes/upper/waistcoatlapel/3_gray.png and b/img/clothes/upper/waistcoatlapel/3_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/4_gray.png b/img/clothes/upper/waistcoatlapel/4_gray.png
index 913e158ccbad3180c229ca44851bccd303b4c3d9..a3df412c9793bbc121a8cc0c44229919b63841e8 100644
Binary files a/img/clothes/upper/waistcoatlapel/4_gray.png and b/img/clothes/upper/waistcoatlapel/4_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/5_gray.png b/img/clothes/upper/waistcoatlapel/5_gray.png
index 369e7b89b792d417d244a3a5e32819a75f371371..3201d4d5f8d1c607777ccf90784d4789e80ddbd3 100644
Binary files a/img/clothes/upper/waistcoatlapel/5_gray.png and b/img/clothes/upper/waistcoatlapel/5_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/acc_frayed_alt_gray.png b/img/clothes/upper/waistcoatlapel/acc_frayed_alt_gray.png
index e4bcf0bd04d8ba6488ad597e0735dedd1ebf8bbc..41950e6c75d9d3c34b0e4cb438862542920eaa37 100644
Binary files a/img/clothes/upper/waistcoatlapel/acc_frayed_alt_gray.png and b/img/clothes/upper/waistcoatlapel/acc_frayed_alt_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/acc_frayed_gray.png b/img/clothes/upper/waistcoatlapel/acc_frayed_gray.png
index 68f8ff6296c4cb45cec33ff32c5c5669db622620..8e91acbbfae979a2deda5bbfa23a3e6bd396e690 100644
Binary files a/img/clothes/upper/waistcoatlapel/acc_frayed_gray.png and b/img/clothes/upper/waistcoatlapel/acc_frayed_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/acc_full_alt_gray.png b/img/clothes/upper/waistcoatlapel/acc_full_alt_gray.png
index e4bcf0bd04d8ba6488ad597e0735dedd1ebf8bbc..41950e6c75d9d3c34b0e4cb438862542920eaa37 100644
Binary files a/img/clothes/upper/waistcoatlapel/acc_full_alt_gray.png and b/img/clothes/upper/waistcoatlapel/acc_full_alt_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/acc_full_gray.png b/img/clothes/upper/waistcoatlapel/acc_full_gray.png
index 1e4e35fd26c506a7b240b70519436d60e0bec4a8..14b9fb1a6efb0d48483a4723e5f304ee215cfff1 100644
Binary files a/img/clothes/upper/waistcoatlapel/acc_full_gray.png and b/img/clothes/upper/waistcoatlapel/acc_full_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/acc_tattered_alt_gray.png b/img/clothes/upper/waistcoatlapel/acc_tattered_alt_gray.png
index e4bcf0bd04d8ba6488ad597e0735dedd1ebf8bbc..41950e6c75d9d3c34b0e4cb438862542920eaa37 100644
Binary files a/img/clothes/upper/waistcoatlapel/acc_tattered_alt_gray.png and b/img/clothes/upper/waistcoatlapel/acc_tattered_alt_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/acc_tattered_gray.png b/img/clothes/upper/waistcoatlapel/acc_tattered_gray.png
index 3aa16fe7166eb4ff7e1524b022551923880120da..1ac9cc019f3b6c53c8429fd3c0ff8b7019f0be47 100644
Binary files a/img/clothes/upper/waistcoatlapel/acc_tattered_gray.png and b/img/clothes/upper/waistcoatlapel/acc_tattered_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/acc_torn_alt_gray.png b/img/clothes/upper/waistcoatlapel/acc_torn_alt_gray.png
index e4bcf0bd04d8ba6488ad597e0735dedd1ebf8bbc..41950e6c75d9d3c34b0e4cb438862542920eaa37 100644
Binary files a/img/clothes/upper/waistcoatlapel/acc_torn_alt_gray.png and b/img/clothes/upper/waistcoatlapel/acc_torn_alt_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/acc_torn_gray.png b/img/clothes/upper/waistcoatlapel/acc_torn_gray.png
index 1ca04a6dad629d9367f15c96c9568860fdebd072..ff2b212dfc2ecb051b301e36e4bbcfcb54a8d18d 100644
Binary files a/img/clothes/upper/waistcoatlapel/acc_torn_gray.png and b/img/clothes/upper/waistcoatlapel/acc_torn_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/frayed_gray.png b/img/clothes/upper/waistcoatlapel/frayed_gray.png
index a78b4adea98956c4a509132cb5985ff93fe4a101..ba391c20526ed866a8a72a863f445cf014b2beaf 100644
Binary files a/img/clothes/upper/waistcoatlapel/frayed_gray.png and b/img/clothes/upper/waistcoatlapel/frayed_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/full_gray.png b/img/clothes/upper/waistcoatlapel/full_gray.png
index 80210a18dd5f17a1cb2cec3b68a1e545f5537fcd..184da87f1ed20fc8b61a883ada9a67de485e38e9 100644
Binary files a/img/clothes/upper/waistcoatlapel/full_gray.png and b/img/clothes/upper/waistcoatlapel/full_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/hold_gray.png b/img/clothes/upper/waistcoatlapel/hold_gray.png
index e27bbb6e33f6bfa1660f1adb8a4a329e59b10625..c0d69d7d7f7226005a104f3442ab17268df2e5c9 100644
Binary files a/img/clothes/upper/waistcoatlapel/hold_gray.png and b/img/clothes/upper/waistcoatlapel/hold_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/hold_rolled_gray.png b/img/clothes/upper/waistcoatlapel/hold_rolled_gray.png
index d7e098b93948a6197eebfca4973a4973a58e43fc..bae7537333e42e98aef6e05faf9561db83191139 100644
Binary files a/img/clothes/upper/waistcoatlapel/hold_rolled_gray.png and b/img/clothes/upper/waistcoatlapel/hold_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/left_cover_gray.png b/img/clothes/upper/waistcoatlapel/left_cover_gray.png
index bdc02d86a19df66e6e37c0ad5f715f444a97bc6b..45589f6dcfca3a81ef6caa28e184ae0f59e1efdd 100644
Binary files a/img/clothes/upper/waistcoatlapel/left_cover_gray.png and b/img/clothes/upper/waistcoatlapel/left_cover_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/left_cover_rolled_gray.png b/img/clothes/upper/waistcoatlapel/left_cover_rolled_gray.png
index 9a55b8c5a159a33cbb3fa7c4317b4c217e84c9e1..d29bca5848c7957b25d413733d206984bfac6267 100644
Binary files a/img/clothes/upper/waistcoatlapel/left_cover_rolled_gray.png and b/img/clothes/upper/waistcoatlapel/left_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/left_gray.png b/img/clothes/upper/waistcoatlapel/left_gray.png
index 838935e00256f040be7d649fa581055230802e80..1d72ec4fd81a4d43ddbb15586995c6bf2031b5ee 100644
Binary files a/img/clothes/upper/waistcoatlapel/left_gray.png and b/img/clothes/upper/waistcoatlapel/left_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/left_rolled_gray.png b/img/clothes/upper/waistcoatlapel/left_rolled_gray.png
index 8457f17da47b8ac20ff5a605cfdc699eb33163f3..a6cb490c8caa43ebc941153f8a5178d31da57ac8 100644
Binary files a/img/clothes/upper/waistcoatlapel/left_rolled_gray.png and b/img/clothes/upper/waistcoatlapel/left_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/right_cover_gray.png b/img/clothes/upper/waistcoatlapel/right_cover_gray.png
index 3eeb1ff53219314697393cb486dbcad27e7683b2..17253a9ed08b08687565c7f5e9b3c8cf14c740a2 100644
Binary files a/img/clothes/upper/waistcoatlapel/right_cover_gray.png and b/img/clothes/upper/waistcoatlapel/right_cover_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/right_cover_rolled_gray.png b/img/clothes/upper/waistcoatlapel/right_cover_rolled_gray.png
index c7f6b6b4805ef586179db6430690fc3bab3c47c9..55e21b4169a77db749abecab2d0a285bbd7bb4c1 100644
Binary files a/img/clothes/upper/waistcoatlapel/right_cover_rolled_gray.png and b/img/clothes/upper/waistcoatlapel/right_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/right_gray.png b/img/clothes/upper/waistcoatlapel/right_gray.png
index 8b44f6a8a15d280baedb598cd89938bd2d8737b9..8e2ea6c3508707062090027f478ea3e8064b5e8e 100644
Binary files a/img/clothes/upper/waistcoatlapel/right_gray.png and b/img/clothes/upper/waistcoatlapel/right_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/right_rolled_gray.png b/img/clothes/upper/waistcoatlapel/right_rolled_gray.png
index a31dfafaed13265a6f05c5b3c1af88a06df24cdc..f79bb7e85527e6e29ef2b8a8be58b1da5e5e76a6 100644
Binary files a/img/clothes/upper/waistcoatlapel/right_rolled_gray.png and b/img/clothes/upper/waistcoatlapel/right_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/tattered_gray.png b/img/clothes/upper/waistcoatlapel/tattered_gray.png
index d37c889d73739a1982ddb3ed1b3ec7ed453399ad..3586fff073e31d274570c828a1859623a1597b64 100644
Binary files a/img/clothes/upper/waistcoatlapel/tattered_gray.png and b/img/clothes/upper/waistcoatlapel/tattered_gray.png differ
diff --git a/img/clothes/upper/waistcoatlapel/torn_gray.png b/img/clothes/upper/waistcoatlapel/torn_gray.png
index 1165b8ad5693a89eaf1028c55e6a20d67d53e757..d3cdfc9b3355a7471fdcf63990457d2f9fe2f1e5 100644
Binary files a/img/clothes/upper/waistcoatlapel/torn_gray.png and b/img/clothes/upper/waistcoatlapel/torn_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/1_gray.png b/img/clothes/upper/waistcoatlong/1_gray.png
index 8254234c6677a8aad68658ebdf4e9e7348aaa1dc..42a6fda0f97b81040ac6ce9072ac0fbf39a46ed1 100644
Binary files a/img/clothes/upper/waistcoatlong/1_gray.png and b/img/clothes/upper/waistcoatlong/1_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/2_gray.png b/img/clothes/upper/waistcoatlong/2_gray.png
index 7a1e0d4ec6c9cd8a7b2a9bdef6f3e0984317bb2f..ddf21d3953f2d76e6ccd167aeb5e53f103dd4a12 100644
Binary files a/img/clothes/upper/waistcoatlong/2_gray.png and b/img/clothes/upper/waistcoatlong/2_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/3_gray.png b/img/clothes/upper/waistcoatlong/3_gray.png
index 138e5d8a136e6fa3cdc4177a790ff7f8621f89d1..0f5d0b28adf1ca128368c93c3c9531530bf8a8ad 100644
Binary files a/img/clothes/upper/waistcoatlong/3_gray.png and b/img/clothes/upper/waistcoatlong/3_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/4_gray.png b/img/clothes/upper/waistcoatlong/4_gray.png
index 913e158ccbad3180c229ca44851bccd303b4c3d9..a3df412c9793bbc121a8cc0c44229919b63841e8 100644
Binary files a/img/clothes/upper/waistcoatlong/4_gray.png and b/img/clothes/upper/waistcoatlong/4_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/5_gray.png b/img/clothes/upper/waistcoatlong/5_gray.png
index 369e7b89b792d417d244a3a5e32819a75f371371..3201d4d5f8d1c607777ccf90784d4789e80ddbd3 100644
Binary files a/img/clothes/upper/waistcoatlong/5_gray.png and b/img/clothes/upper/waistcoatlong/5_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/acc_gray.png b/img/clothes/upper/waistcoatlong/acc_gray.png
index e4bcf0bd04d8ba6488ad597e0735dedd1ebf8bbc..41950e6c75d9d3c34b0e4cb438862542920eaa37 100644
Binary files a/img/clothes/upper/waistcoatlong/acc_gray.png and b/img/clothes/upper/waistcoatlong/acc_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/frayed_gray.png b/img/clothes/upper/waistcoatlong/frayed_gray.png
index e2fc9ee89b0a2014dffe3915d4fda20798ca2c4a..6f89296af983f7d2083fda95e707315e8622ae4a 100644
Binary files a/img/clothes/upper/waistcoatlong/frayed_gray.png and b/img/clothes/upper/waistcoatlong/frayed_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/full_gray.png b/img/clothes/upper/waistcoatlong/full_gray.png
index 2d02230070991d0e0fcb556409932f7bee69ca1e..06c9bf7600fc9e4fd2947c94379a219d26d885b4 100644
Binary files a/img/clothes/upper/waistcoatlong/full_gray.png and b/img/clothes/upper/waistcoatlong/full_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/hold_gray.png b/img/clothes/upper/waistcoatlong/hold_gray.png
index e27bbb6e33f6bfa1660f1adb8a4a329e59b10625..c0d69d7d7f7226005a104f3442ab17268df2e5c9 100644
Binary files a/img/clothes/upper/waistcoatlong/hold_gray.png and b/img/clothes/upper/waistcoatlong/hold_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/hold_rolled_gray.png b/img/clothes/upper/waistcoatlong/hold_rolled_gray.png
index d7e098b93948a6197eebfca4973a4973a58e43fc..bae7537333e42e98aef6e05faf9561db83191139 100644
Binary files a/img/clothes/upper/waistcoatlong/hold_rolled_gray.png and b/img/clothes/upper/waistcoatlong/hold_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/left_cover_gray.png b/img/clothes/upper/waistcoatlong/left_cover_gray.png
index bdc02d86a19df66e6e37c0ad5f715f444a97bc6b..45589f6dcfca3a81ef6caa28e184ae0f59e1efdd 100644
Binary files a/img/clothes/upper/waistcoatlong/left_cover_gray.png and b/img/clothes/upper/waistcoatlong/left_cover_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/left_cover_rolled_gray.png b/img/clothes/upper/waistcoatlong/left_cover_rolled_gray.png
index 9a55b8c5a159a33cbb3fa7c4317b4c217e84c9e1..d29bca5848c7957b25d413733d206984bfac6267 100644
Binary files a/img/clothes/upper/waistcoatlong/left_cover_rolled_gray.png and b/img/clothes/upper/waistcoatlong/left_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/left_gray.png b/img/clothes/upper/waistcoatlong/left_gray.png
index 838935e00256f040be7d649fa581055230802e80..1d72ec4fd81a4d43ddbb15586995c6bf2031b5ee 100644
Binary files a/img/clothes/upper/waistcoatlong/left_gray.png and b/img/clothes/upper/waistcoatlong/left_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/left_rolled_gray.png b/img/clothes/upper/waistcoatlong/left_rolled_gray.png
index 8457f17da47b8ac20ff5a605cfdc699eb33163f3..a6cb490c8caa43ebc941153f8a5178d31da57ac8 100644
Binary files a/img/clothes/upper/waistcoatlong/left_rolled_gray.png and b/img/clothes/upper/waistcoatlong/left_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/right_cover_gray.png b/img/clothes/upper/waistcoatlong/right_cover_gray.png
index 3eeb1ff53219314697393cb486dbcad27e7683b2..17253a9ed08b08687565c7f5e9b3c8cf14c740a2 100644
Binary files a/img/clothes/upper/waistcoatlong/right_cover_gray.png and b/img/clothes/upper/waistcoatlong/right_cover_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/right_cover_rolled_gray.png b/img/clothes/upper/waistcoatlong/right_cover_rolled_gray.png
index c7f6b6b4805ef586179db6430690fc3bab3c47c9..55e21b4169a77db749abecab2d0a285bbd7bb4c1 100644
Binary files a/img/clothes/upper/waistcoatlong/right_cover_rolled_gray.png and b/img/clothes/upper/waistcoatlong/right_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/right_gray.png b/img/clothes/upper/waistcoatlong/right_gray.png
index 8b44f6a8a15d280baedb598cd89938bd2d8737b9..8e2ea6c3508707062090027f478ea3e8064b5e8e 100644
Binary files a/img/clothes/upper/waistcoatlong/right_gray.png and b/img/clothes/upper/waistcoatlong/right_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/right_rolled_gray.png b/img/clothes/upper/waistcoatlong/right_rolled_gray.png
index a31dfafaed13265a6f05c5b3c1af88a06df24cdc..f79bb7e85527e6e29ef2b8a8be58b1da5e5e76a6 100644
Binary files a/img/clothes/upper/waistcoatlong/right_rolled_gray.png and b/img/clothes/upper/waistcoatlong/right_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/tattered_gray.png b/img/clothes/upper/waistcoatlong/tattered_gray.png
index 85e1999696d79fe5be30570d8664a0cf033aae93..f5731b383e0f0a924b3614de1f20c82ce132a3e3 100644
Binary files a/img/clothes/upper/waistcoatlong/tattered_gray.png and b/img/clothes/upper/waistcoatlong/tattered_gray.png differ
diff --git a/img/clothes/upper/waistcoatlong/torn_gray.png b/img/clothes/upper/waistcoatlong/torn_gray.png
index 65f2efd70ca8d4705bcfdecbaa7eec446b5a314e..db6a3ce55414a134c0f905916d7e2c0d841415f3 100644
Binary files a/img/clothes/upper/waistcoatlong/torn_gray.png and b/img/clothes/upper/waistcoatlong/torn_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/1_gray.png b/img/clothes/upper/waistcoatlonglapel/1_gray.png
index 8254234c6677a8aad68658ebdf4e9e7348aaa1dc..42a6fda0f97b81040ac6ce9072ac0fbf39a46ed1 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/1_gray.png and b/img/clothes/upper/waistcoatlonglapel/1_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/2_gray.png b/img/clothes/upper/waistcoatlonglapel/2_gray.png
index 7a1e0d4ec6c9cd8a7b2a9bdef6f3e0984317bb2f..ddf21d3953f2d76e6ccd167aeb5e53f103dd4a12 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/2_gray.png and b/img/clothes/upper/waistcoatlonglapel/2_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/3_gray.png b/img/clothes/upper/waistcoatlonglapel/3_gray.png
index 138e5d8a136e6fa3cdc4177a790ff7f8621f89d1..0f5d0b28adf1ca128368c93c3c9531530bf8a8ad 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/3_gray.png and b/img/clothes/upper/waistcoatlonglapel/3_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/4_gray.png b/img/clothes/upper/waistcoatlonglapel/4_gray.png
index 913e158ccbad3180c229ca44851bccd303b4c3d9..a3df412c9793bbc121a8cc0c44229919b63841e8 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/4_gray.png and b/img/clothes/upper/waistcoatlonglapel/4_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/5_gray.png b/img/clothes/upper/waistcoatlonglapel/5_gray.png
index 369e7b89b792d417d244a3a5e32819a75f371371..3201d4d5f8d1c607777ccf90784d4789e80ddbd3 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/5_gray.png and b/img/clothes/upper/waistcoatlonglapel/5_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/acc_gray.png b/img/clothes/upper/waistcoatlonglapel/acc_gray.png
index e4bcf0bd04d8ba6488ad597e0735dedd1ebf8bbc..41950e6c75d9d3c34b0e4cb438862542920eaa37 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/acc_gray.png and b/img/clothes/upper/waistcoatlonglapel/acc_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/frayed_gray.png b/img/clothes/upper/waistcoatlonglapel/frayed_gray.png
index 88cfac7f107e902367391098bc467f723a66202b..b952f33f29683a60a7fc9fcbcbf0fbe356634d3b 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/frayed_gray.png and b/img/clothes/upper/waistcoatlonglapel/frayed_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/full_gray.png b/img/clothes/upper/waistcoatlonglapel/full_gray.png
index 62c8558ca1f643224191dc1c7a7d121998cdcc9a..f99cebef3b91fb37aa596ce830e0d564190b6957 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/full_gray.png and b/img/clothes/upper/waistcoatlonglapel/full_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/hold_gray.png b/img/clothes/upper/waistcoatlonglapel/hold_gray.png
index e27bbb6e33f6bfa1660f1adb8a4a329e59b10625..c0d69d7d7f7226005a104f3442ab17268df2e5c9 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/hold_gray.png and b/img/clothes/upper/waistcoatlonglapel/hold_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/hold_rolled_gray.png b/img/clothes/upper/waistcoatlonglapel/hold_rolled_gray.png
index d7e098b93948a6197eebfca4973a4973a58e43fc..bae7537333e42e98aef6e05faf9561db83191139 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/hold_rolled_gray.png and b/img/clothes/upper/waistcoatlonglapel/hold_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/left_cover_gray.png b/img/clothes/upper/waistcoatlonglapel/left_cover_gray.png
index bdc02d86a19df66e6e37c0ad5f715f444a97bc6b..45589f6dcfca3a81ef6caa28e184ae0f59e1efdd 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/left_cover_gray.png and b/img/clothes/upper/waistcoatlonglapel/left_cover_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/left_cover_rolled_gray.png b/img/clothes/upper/waistcoatlonglapel/left_cover_rolled_gray.png
index 9a55b8c5a159a33cbb3fa7c4317b4c217e84c9e1..d29bca5848c7957b25d413733d206984bfac6267 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/left_cover_rolled_gray.png and b/img/clothes/upper/waistcoatlonglapel/left_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/left_gray.png b/img/clothes/upper/waistcoatlonglapel/left_gray.png
index 838935e00256f040be7d649fa581055230802e80..1d72ec4fd81a4d43ddbb15586995c6bf2031b5ee 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/left_gray.png and b/img/clothes/upper/waistcoatlonglapel/left_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/left_rolled_gray.png b/img/clothes/upper/waistcoatlonglapel/left_rolled_gray.png
index 8457f17da47b8ac20ff5a605cfdc699eb33163f3..a6cb490c8caa43ebc941153f8a5178d31da57ac8 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/left_rolled_gray.png and b/img/clothes/upper/waistcoatlonglapel/left_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/right_cover_gray.png b/img/clothes/upper/waistcoatlonglapel/right_cover_gray.png
index 3eeb1ff53219314697393cb486dbcad27e7683b2..17253a9ed08b08687565c7f5e9b3c8cf14c740a2 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/right_cover_gray.png and b/img/clothes/upper/waistcoatlonglapel/right_cover_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/right_cover_rolled_gray.png b/img/clothes/upper/waistcoatlonglapel/right_cover_rolled_gray.png
index c7f6b6b4805ef586179db6430690fc3bab3c47c9..55e21b4169a77db749abecab2d0a285bbd7bb4c1 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/right_cover_rolled_gray.png and b/img/clothes/upper/waistcoatlonglapel/right_cover_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/right_gray.png b/img/clothes/upper/waistcoatlonglapel/right_gray.png
index 8b44f6a8a15d280baedb598cd89938bd2d8737b9..8e2ea6c3508707062090027f478ea3e8064b5e8e 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/right_gray.png and b/img/clothes/upper/waistcoatlonglapel/right_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/right_rolled_gray.png b/img/clothes/upper/waistcoatlonglapel/right_rolled_gray.png
index a31dfafaed13265a6f05c5b3c1af88a06df24cdc..f79bb7e85527e6e29ef2b8a8be58b1da5e5e76a6 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/right_rolled_gray.png and b/img/clothes/upper/waistcoatlonglapel/right_rolled_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/tattered_gray.png b/img/clothes/upper/waistcoatlonglapel/tattered_gray.png
index c87f1b3b8d5b5574ffa0f2428bdbdd2ea223d3e4..5e993d2cc0f01c149b901427a9e84e6f48694f35 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/tattered_gray.png and b/img/clothes/upper/waistcoatlonglapel/tattered_gray.png differ
diff --git a/img/clothes/upper/waistcoatlonglapel/torn_gray.png b/img/clothes/upper/waistcoatlonglapel/torn_gray.png
index 51d3f79b41931d583941815f1a6e4958cfcfb838..009f702c1eaed9f845f78193cc9bada5a54fbd4a 100644
Binary files a/img/clothes/upper/waistcoatlonglapel/torn_gray.png and b/img/clothes/upper/waistcoatlonglapel/torn_gray.png differ
diff --git a/img/clothes/upper/waiter/4.png b/img/clothes/upper/waiter/4.png
index c8d80418fea7a8c7ee1eb1ba129f0fd411a089b6..64d1bbf1fef653abd92e0983c386a02c1d9ca2a4 100644
Binary files a/img/clothes/upper/waiter/4.png and b/img/clothes/upper/waiter/4.png differ
diff --git a/img/clothes/upper/waiter/5.png b/img/clothes/upper/waiter/5.png
index b4cc1dee571d2dbf173425c076afa447fa1872fa..07ca599a99828d4bb16c6c2ee410545b634b672f 100644
Binary files a/img/clothes/upper/waiter/5.png and b/img/clothes/upper/waiter/5.png differ
diff --git a/img/clothes/upper/waiter/6.png b/img/clothes/upper/waiter/6.png
index 78decf5cafc3cfb6302c3f99e95e57d31139d097..22801f1dd4710be5ecbf1a3d933c5d5c6fc391a3 100644
Binary files a/img/clothes/upper/waiter/6.png and b/img/clothes/upper/waiter/6.png differ
diff --git a/img/clothes/upper/waiter/frayed.png b/img/clothes/upper/waiter/frayed.png
index 57cc9fb06df2a9e0d879041146cba0751afa8548..bb8853165a3ec526a40c5644ac97caa9e35c681c 100644
Binary files a/img/clothes/upper/waiter/frayed.png and b/img/clothes/upper/waiter/frayed.png differ
diff --git a/img/clothes/upper/waiter/full.png b/img/clothes/upper/waiter/full.png
index 5fc55b56edfe4746d879f0be451c75f7a0ccc349..cfdcbaeef1ae1b22fc84b28553699e67d8176e57 100644
Binary files a/img/clothes/upper/waiter/full.png and b/img/clothes/upper/waiter/full.png differ
diff --git a/img/clothes/upper/waiter/hold.png b/img/clothes/upper/waiter/hold.png
index 4491b868ab4243e09951e1c9be1a5dbcb79ae47c..7295799bd1fd46a733e6544f219b58ccf755b81b 100644
Binary files a/img/clothes/upper/waiter/hold.png and b/img/clothes/upper/waiter/hold.png differ
diff --git a/img/clothes/upper/waiter/hold_rolled.png b/img/clothes/upper/waiter/hold_rolled.png
index fbec3e49eeb3625423d9380770c9264d14ba249a..034452f86b67ffca6a80db22625f31e8909ec8cf 100644
Binary files a/img/clothes/upper/waiter/hold_rolled.png and b/img/clothes/upper/waiter/hold_rolled.png differ
diff --git a/img/clothes/upper/waiter/left.png b/img/clothes/upper/waiter/left.png
index 793ee591241a8f5e0c7d6d965dd9665ca07f782b..20aca7333f611cda9e32ee681b0af60ed05c4b77 100644
Binary files a/img/clothes/upper/waiter/left.png and b/img/clothes/upper/waiter/left.png differ
diff --git a/img/clothes/upper/waiter/left_cover.png b/img/clothes/upper/waiter/left_cover.png
index bdf95753372a10e3119a913556b02549db6c0ab5..4e4f4197056e17f5fbefd3305ff2a6dc135c2a33 100644
Binary files a/img/clothes/upper/waiter/left_cover.png and b/img/clothes/upper/waiter/left_cover.png differ
diff --git a/img/clothes/upper/waiter/left_cover_rolled.png b/img/clothes/upper/waiter/left_cover_rolled.png
index 755332caae02a82d9529a24502189e3b16f7aa87..c32cc71fff3b678317f0f311e9606a2f0f87cd08 100644
Binary files a/img/clothes/upper/waiter/left_cover_rolled.png and b/img/clothes/upper/waiter/left_cover_rolled.png differ
diff --git a/img/clothes/upper/waiter/left_rolled.png b/img/clothes/upper/waiter/left_rolled.png
index 595098fb90d5dbc2833aa71429936feff5d96858..5220e157e522409800b20b9f68cf1e3221cc7fa8 100644
Binary files a/img/clothes/upper/waiter/left_rolled.png and b/img/clothes/upper/waiter/left_rolled.png differ
diff --git a/img/clothes/upper/waiter/right.png b/img/clothes/upper/waiter/right.png
index 49921292fcea908e3d7054111ad1399a80cb68b0..59e170841f9271d1b823e7d29ca7165df967c482 100644
Binary files a/img/clothes/upper/waiter/right.png and b/img/clothes/upper/waiter/right.png differ
diff --git a/img/clothes/upper/waiter/right_cover.png b/img/clothes/upper/waiter/right_cover.png
index 7ba6dee7af7f25365d4a3a828c9f32d6a64ae378..014a9ac6428209d55bb28e8a08edcf1003662f1e 100644
Binary files a/img/clothes/upper/waiter/right_cover.png and b/img/clothes/upper/waiter/right_cover.png differ
diff --git a/img/clothes/upper/waiter/right_cover_rolled.png b/img/clothes/upper/waiter/right_cover_rolled.png
index 0ba12602601f15fd96e0d1147ee3c2c8f753694a..449ff4873258e26b4515429a2b3018cf5053f668 100644
Binary files a/img/clothes/upper/waiter/right_cover_rolled.png and b/img/clothes/upper/waiter/right_cover_rolled.png differ
diff --git a/img/clothes/upper/waiter/right_rolled.png b/img/clothes/upper/waiter/right_rolled.png
index f91c3cb2c3b360aa3cb67e8e17c2a5ddc9431477..d0886160a116a51385362cbb714012d6acc68318 100644
Binary files a/img/clothes/upper/waiter/right_rolled.png and b/img/clothes/upper/waiter/right_rolled.png differ
diff --git a/img/clothes/upper/waiter/tattered.png b/img/clothes/upper/waiter/tattered.png
index 25557132c74487d3083503c057fc8a1bcdda6445..b524cacd5e9eea8c3f92fd0b50c185eefe38cf2f 100644
Binary files a/img/clothes/upper/waiter/tattered.png and b/img/clothes/upper/waiter/tattered.png differ
diff --git a/img/clothes/upper/waiter/torn.png b/img/clothes/upper/waiter/torn.png
index 5dc72f139d3ddf37f1a4c3a851bf77f7900f4c36..27e75c100a9ce2c302e585f07a22cd544cab6025 100644
Binary files a/img/clothes/upper/waiter/torn.png and b/img/clothes/upper/waiter/torn.png differ
diff --git a/img/clothes/upper/waitress/2_gray.png b/img/clothes/upper/waitress/2_gray.png
index 888a41d4a062f56de92161b3b77bb9e6993ff2a7..5953c4de84f14290c106425cf69b7078663e0dd7 100644
Binary files a/img/clothes/upper/waitress/2_gray.png and b/img/clothes/upper/waitress/2_gray.png differ
diff --git a/img/clothes/upper/waitress/3_gray.png b/img/clothes/upper/waitress/3_gray.png
index 12cd531f3301285db69d9a51d9becad9d10e8bdd..bb14533d9be13ac0d129c1a6aba464d1e6512b29 100644
Binary files a/img/clothes/upper/waitress/3_gray.png and b/img/clothes/upper/waitress/3_gray.png differ
diff --git a/img/clothes/upper/waitress/4_gray.png b/img/clothes/upper/waitress/4_gray.png
index f97577a23f21c1dd0bdc137224f5af29221d0972..844f92a2a3914b818dcf3e96877cd4f4ecf0249d 100644
Binary files a/img/clothes/upper/waitress/4_gray.png and b/img/clothes/upper/waitress/4_gray.png differ
diff --git a/img/clothes/upper/waitress/5_gray.png b/img/clothes/upper/waitress/5_gray.png
index b1aa395aa169e518256fc54d43b900d3b88bfe97..f4b0b7cb8680e0b7b66bd039a9cad23cd65fea82 100644
Binary files a/img/clothes/upper/waitress/5_gray.png and b/img/clothes/upper/waitress/5_gray.png differ
diff --git a/img/clothes/upper/waitress/acc_gray.png b/img/clothes/upper/waitress/acc_gray.png
index 8e9b639f567f5cf5a6972bd3322de360ca2dd2c6..94ed6ed96aac29bd1a6bd78dc653e58a7e5c3937 100644
Binary files a/img/clothes/upper/waitress/acc_gray.png and b/img/clothes/upper/waitress/acc_gray.png differ
diff --git a/img/clothes/upper/waitress/frayed_gray.png b/img/clothes/upper/waitress/frayed_gray.png
index 4b551615bccebd7a426b000208e0f12032b13d61..610c40da5cc48fd2661ace0a25dbe7788fa6c46e 100644
Binary files a/img/clothes/upper/waitress/frayed_gray.png and b/img/clothes/upper/waitress/frayed_gray.png differ
diff --git a/img/clothes/upper/waitress/full_gray.png b/img/clothes/upper/waitress/full_gray.png
index fa3e1bbcb60221fd1bce69302f7fadf9c288d27f..d3a7f61d39b03659ae5b32abaf8fb5d0e1b59bb4 100644
Binary files a/img/clothes/upper/waitress/full_gray.png and b/img/clothes/upper/waitress/full_gray.png differ
diff --git a/img/clothes/upper/waitress/hold_gray.png b/img/clothes/upper/waitress/hold_gray.png
index 34cd0ec9b1ec8112772752eaabc345a578cdc97d..1f06fab7dba6d6d37736bd7d51b04c986c9471b2 100644
Binary files a/img/clothes/upper/waitress/hold_gray.png and b/img/clothes/upper/waitress/hold_gray.png differ
diff --git a/img/clothes/upper/waitress/left_cover_gray.png b/img/clothes/upper/waitress/left_cover_gray.png
index 972d0ee1b02bc7c7428399664b0f2d59bbf40fc8..9571df54eda23621291bbf0c1602f604a6cdddb4 100644
Binary files a/img/clothes/upper/waitress/left_cover_gray.png and b/img/clothes/upper/waitress/left_cover_gray.png differ
diff --git a/img/clothes/upper/waitress/left_gray.png b/img/clothes/upper/waitress/left_gray.png
index 5b2c2dd89ed0f51dd9736210dde2192c6be68402..9d2d6d48cb1ff0378e62a4f8021a3b916af6b510 100644
Binary files a/img/clothes/upper/waitress/left_gray.png and b/img/clothes/upper/waitress/left_gray.png differ
diff --git a/img/clothes/upper/waitress/right_cover_gray.png b/img/clothes/upper/waitress/right_cover_gray.png
index 5caa60775e30acfe9a5b6d8cb158288acc563624..dc58e4dfdc810ee957d08117531c35fbfdb214ff 100644
Binary files a/img/clothes/upper/waitress/right_cover_gray.png and b/img/clothes/upper/waitress/right_cover_gray.png differ
diff --git a/img/clothes/upper/waitress/right_gray.png b/img/clothes/upper/waitress/right_gray.png
index a1d791dcc1e417454b29a5a4cfe5bc23c6d42000..2bc51763911777d28ce2951ddebcb4b53ba1165c 100644
Binary files a/img/clothes/upper/waitress/right_gray.png and b/img/clothes/upper/waitress/right_gray.png differ
diff --git a/img/clothes/upper/waitress/tattered_gray.png b/img/clothes/upper/waitress/tattered_gray.png
index d162ce820b55ebca996ebfd07a5edb83a22e87fa..beb463a4dad7a05112b28bdd6ff5ea084a03d85c 100644
Binary files a/img/clothes/upper/waitress/tattered_gray.png and b/img/clothes/upper/waitress/tattered_gray.png differ
diff --git a/img/clothes/upper/waitress/torn_gray.png b/img/clothes/upper/waitress/torn_gray.png
index 8d352970db5f2d5a56f255cdf21be609018aecf2..3f8b164345981844e6b21af37305296cdd4622d3 100644
Binary files a/img/clothes/upper/waitress/torn_gray.png and b/img/clothes/upper/waitress/torn_gray.png differ
diff --git a/img/clothes/upper/winterjacket/0_alt_gray.png b/img/clothes/upper/winterjacket/0_alt_gray.png
index 255b297ec0b4927753b841072ec0360fbe1e42fe..c3d06c5c46f0058446950ac017dffcf968705c63 100644
Binary files a/img/clothes/upper/winterjacket/0_alt_gray.png and b/img/clothes/upper/winterjacket/0_alt_gray.png differ
diff --git a/img/clothes/upper/winterjacket/1_alt_gray.png b/img/clothes/upper/winterjacket/1_alt_gray.png
index 255b297ec0b4927753b841072ec0360fbe1e42fe..c3d06c5c46f0058446950ac017dffcf968705c63 100644
Binary files a/img/clothes/upper/winterjacket/1_alt_gray.png and b/img/clothes/upper/winterjacket/1_alt_gray.png differ
diff --git a/img/clothes/upper/winterjacket/2_alt_gray.png b/img/clothes/upper/winterjacket/2_alt_gray.png
index 255b297ec0b4927753b841072ec0360fbe1e42fe..c3d06c5c46f0058446950ac017dffcf968705c63 100644
Binary files a/img/clothes/upper/winterjacket/2_alt_gray.png and b/img/clothes/upper/winterjacket/2_alt_gray.png differ
diff --git a/img/clothes/upper/winterjacket/3_alt_gray.png b/img/clothes/upper/winterjacket/3_alt_gray.png
index b03945b68f30054b7565826cc03e56998b63d919..531270b3f49bfd08b129b8c93ef3fe40e3d4b247 100644
Binary files a/img/clothes/upper/winterjacket/3_alt_gray.png and b/img/clothes/upper/winterjacket/3_alt_gray.png differ
diff --git a/img/clothes/upper/winterjacket/3_gray.png b/img/clothes/upper/winterjacket/3_gray.png
index b03945b68f30054b7565826cc03e56998b63d919..531270b3f49bfd08b129b8c93ef3fe40e3d4b247 100644
Binary files a/img/clothes/upper/winterjacket/3_gray.png and b/img/clothes/upper/winterjacket/3_gray.png differ
diff --git a/img/clothes/upper/winterjacket/4_alt_gray.png b/img/clothes/upper/winterjacket/4_alt_gray.png
index 17586ef813f830766e48023df1734637b2019d66..cc9370af3e359f3b7247dea49d7563770d29193f 100644
Binary files a/img/clothes/upper/winterjacket/4_alt_gray.png and b/img/clothes/upper/winterjacket/4_alt_gray.png differ
diff --git a/img/clothes/upper/winterjacket/4_gray.png b/img/clothes/upper/winterjacket/4_gray.png
index 3e9e1eb650e53f64e6d46abf74693141d3906278..8a52b2314eadbd397b1a32b7b1088f8971e26a9d 100644
Binary files a/img/clothes/upper/winterjacket/4_gray.png and b/img/clothes/upper/winterjacket/4_gray.png differ
diff --git a/img/clothes/upper/winterjacket/5_alt_gray.png b/img/clothes/upper/winterjacket/5_alt_gray.png
index 4e67753ebb6ea125b50c909d642f2268ebe0d395..045e45042e5c099fbfa8b68bc797c25b088f6c47 100644
Binary files a/img/clothes/upper/winterjacket/5_alt_gray.png and b/img/clothes/upper/winterjacket/5_alt_gray.png differ
diff --git a/img/clothes/upper/winterjacket/6_alt_gray.png b/img/clothes/upper/winterjacket/6_alt_gray.png
index e76f838ce9ad99e4bed41e8233264322bffefcfa..596172c3137a29d3ab3ffb5feb8c8747a20d838d 100644
Binary files a/img/clothes/upper/winterjacket/6_alt_gray.png and b/img/clothes/upper/winterjacket/6_alt_gray.png differ
diff --git a/img/clothes/upper/winterjacket/6_gray.png b/img/clothes/upper/winterjacket/6_gray.png
index ac4dd3c7bb61a35dbce1f811e769136174359e77..3db8016e3e70834855e80311fcf095b3f657f6e5 100644
Binary files a/img/clothes/upper/winterjacket/6_gray.png and b/img/clothes/upper/winterjacket/6_gray.png differ
diff --git a/img/clothes/upper/winterjacket/acc_gray.png b/img/clothes/upper/winterjacket/acc_gray.png
index 549fd90bad46ad497553ba2fd3bc8931f7862bab..aa8b06889c95ee798d0eb092d9de6d3c7bc25cfe 100644
Binary files a/img/clothes/upper/winterjacket/acc_gray.png and b/img/clothes/upper/winterjacket/acc_gray.png differ
diff --git a/img/clothes/upper/winterjacket/frayed_alt_gray.png b/img/clothes/upper/winterjacket/frayed_alt_gray.png
index 8a23f75e3c8e0a6581d9458700f1e555b581ca59..4f88c4cf538f74d6f0125008d30737fe6ceb1753 100644
Binary files a/img/clothes/upper/winterjacket/frayed_alt_gray.png and b/img/clothes/upper/winterjacket/frayed_alt_gray.png differ
diff --git a/img/clothes/upper/winterjacket/frayed_gray.png b/img/clothes/upper/winterjacket/frayed_gray.png
index b56e9ca5a90f81d49ddc6f07cf2858ed5d907473..dc427b5ee202611d234fdb068e6482de76ef7cbc 100644
Binary files a/img/clothes/upper/winterjacket/frayed_gray.png and b/img/clothes/upper/winterjacket/frayed_gray.png differ
diff --git a/img/clothes/upper/winterjacket/full_alt_gray.png b/img/clothes/upper/winterjacket/full_alt_gray.png
index db3967251de6d0c88069d6ee5d803d1cc4cd1993..d8b5489b1432631cae265ed63b706365117a65ab 100644
Binary files a/img/clothes/upper/winterjacket/full_alt_gray.png and b/img/clothes/upper/winterjacket/full_alt_gray.png differ
diff --git a/img/clothes/upper/winterjacket/full_gray.png b/img/clothes/upper/winterjacket/full_gray.png
index c43232601dd5d78c2adf074e204a54632732ab13..5e16ce75be86072573fdafb8540ef4564a11bd0f 100644
Binary files a/img/clothes/upper/winterjacket/full_gray.png and b/img/clothes/upper/winterjacket/full_gray.png differ
diff --git a/img/clothes/upper/winterjacket/hold_acc_gray.png b/img/clothes/upper/winterjacket/hold_acc_gray.png
index 3b96668a9640400cdc7b385973bf61c1bd3f0a5e..c5186dbe18c8ecd6848f6d55bd3c6d0b923505a7 100644
Binary files a/img/clothes/upper/winterjacket/hold_acc_gray.png and b/img/clothes/upper/winterjacket/hold_acc_gray.png differ
diff --git a/img/clothes/upper/winterjacket/hold_gray.png b/img/clothes/upper/winterjacket/hold_gray.png
index 0e00fbda178ffcb195175ceec71e338d6b06dd38..1a4832635804836bd805973299f76631cd16a2e3 100644
Binary files a/img/clothes/upper/winterjacket/hold_gray.png and b/img/clothes/upper/winterjacket/hold_gray.png differ
diff --git a/img/clothes/upper/winterjacket/left_acc_gray.png b/img/clothes/upper/winterjacket/left_acc_gray.png
index 00f9017a2817a07df29d35ec18ff5b9b2f76723a..83efea44404383e9e75ba7b9cf91751e47e2f027 100644
Binary files a/img/clothes/upper/winterjacket/left_acc_gray.png and b/img/clothes/upper/winterjacket/left_acc_gray.png differ
diff --git a/img/clothes/upper/winterjacket/left_cover_acc_gray.png b/img/clothes/upper/winterjacket/left_cover_acc_gray.png
index 00f9017a2817a07df29d35ec18ff5b9b2f76723a..83efea44404383e9e75ba7b9cf91751e47e2f027 100644
Binary files a/img/clothes/upper/winterjacket/left_cover_acc_gray.png and b/img/clothes/upper/winterjacket/left_cover_acc_gray.png differ
diff --git a/img/clothes/upper/winterjacket/left_cover_gray.png b/img/clothes/upper/winterjacket/left_cover_gray.png
index 8c531167dfa9545302f3b8d9d6463903c6a696e3..6a21afa02b1cc4e3c7b777185e9f79ed683024fa 100644
Binary files a/img/clothes/upper/winterjacket/left_cover_gray.png and b/img/clothes/upper/winterjacket/left_cover_gray.png differ
diff --git a/img/clothes/upper/winterjacket/left_gray.png b/img/clothes/upper/winterjacket/left_gray.png
index 807f6539fa8de2da9b31c495b1d1a01731ec43a4..534053bc47cbb290e64cc336ab20c03b112054ca 100644
Binary files a/img/clothes/upper/winterjacket/left_gray.png and b/img/clothes/upper/winterjacket/left_gray.png differ
diff --git a/img/clothes/upper/winterjacket/right_acc_gray.png b/img/clothes/upper/winterjacket/right_acc_gray.png
index 5d4a3415329b63e4aeab9f549e1f8ddb6b2d5887..7996e0eee762f4b817c74c3aa45ffea5a577ce4a 100644
Binary files a/img/clothes/upper/winterjacket/right_acc_gray.png and b/img/clothes/upper/winterjacket/right_acc_gray.png differ
diff --git a/img/clothes/upper/winterjacket/right_cover_acc_gray.png b/img/clothes/upper/winterjacket/right_cover_acc_gray.png
index e1f467a266c359213779ced8d2cc02cc51884eee..813cd3e5556d10098ad36d82d4ef41e79e9c64c0 100644
Binary files a/img/clothes/upper/winterjacket/right_cover_acc_gray.png and b/img/clothes/upper/winterjacket/right_cover_acc_gray.png differ
diff --git a/img/clothes/upper/winterjacket/right_cover_gray.png b/img/clothes/upper/winterjacket/right_cover_gray.png
index 3b1981f8f256863ee4594c38407e83608efdea39..41ffda2a547cf2dc4058da276265696add15a269 100644
Binary files a/img/clothes/upper/winterjacket/right_cover_gray.png and b/img/clothes/upper/winterjacket/right_cover_gray.png differ
diff --git a/img/clothes/upper/winterjacket/right_gray.png b/img/clothes/upper/winterjacket/right_gray.png
index 4fed23622b5dabd09649328ea39f3172754552c9..8748c334c45ae4863ceb02e813c7e85a001fd312 100644
Binary files a/img/clothes/upper/winterjacket/right_gray.png and b/img/clothes/upper/winterjacket/right_gray.png differ
diff --git a/img/clothes/upper/winterjacket/tattered_alt_gray.png b/img/clothes/upper/winterjacket/tattered_alt_gray.png
index 33d04eef98160921e9d8e57254e59085c07490c3..b92ea914d91f3e6c0edea44323ba634084b017db 100644
Binary files a/img/clothes/upper/winterjacket/tattered_alt_gray.png and b/img/clothes/upper/winterjacket/tattered_alt_gray.png differ
diff --git a/img/clothes/upper/winterjacket/tattered_gray.png b/img/clothes/upper/winterjacket/tattered_gray.png
index cf7a789c88ca91493fd09707309fcfd5b423324c..3e1e954a16cdbd72eea36c129ecf7f35b6e58e37 100644
Binary files a/img/clothes/upper/winterjacket/tattered_gray.png and b/img/clothes/upper/winterjacket/tattered_gray.png differ
diff --git a/img/clothes/upper/winterjacket/torn_alt_gray.png b/img/clothes/upper/winterjacket/torn_alt_gray.png
index f5e9a87895c800169b679bfd2653256e3bae8b19..4f81f39e95d61ffe09ce20dfd1090e82f2b2c59b 100644
Binary files a/img/clothes/upper/winterjacket/torn_alt_gray.png and b/img/clothes/upper/winterjacket/torn_alt_gray.png differ
diff --git a/img/clothes/upper/winterjacket/torn_gray.png b/img/clothes/upper/winterjacket/torn_gray.png
index a3fc3a086622943610eedb05baf4d1ae423562a3..0f0aea5e3c73a698b7926250a6084718674dc2bc 100644
Binary files a/img/clothes/upper/winterjacket/torn_gray.png and b/img/clothes/upper/winterjacket/torn_gray.png differ
diff --git a/img/clothes/upper/witch/3_gray.png b/img/clothes/upper/witch/3_gray.png
index a6ea130ed975ed36f111610a5a57abe9c9b8aebb..6da6f2d860f4dbe5f9d1d20e5a7d6d2ae22e17a3 100644
Binary files a/img/clothes/upper/witch/3_gray.png and b/img/clothes/upper/witch/3_gray.png differ
diff --git a/img/clothes/upper/witch/4_gray.png b/img/clothes/upper/witch/4_gray.png
index 2351346f40f2536d4742b2ab28ee07b925fcf174..b795c67069aa4bbedbbbddd35abc7c7310a1ec72 100644
Binary files a/img/clothes/upper/witch/4_gray.png and b/img/clothes/upper/witch/4_gray.png differ
diff --git a/img/clothes/upper/witch/5_gray.png b/img/clothes/upper/witch/5_gray.png
index f5711728ad8f7a94ac1d908d9a043dae997486fd..afc1beb5dd6063bdae81e3548525899f37d718e5 100644
Binary files a/img/clothes/upper/witch/5_gray.png and b/img/clothes/upper/witch/5_gray.png differ
diff --git a/img/clothes/upper/witch/acc_gray.png b/img/clothes/upper/witch/acc_gray.png
index 485b929864aa251c64c8ae6bade9fbd87cc05f55..d5bf931f1f5faed8d5358141ce2adb68c90ac9d4 100644
Binary files a/img/clothes/upper/witch/acc_gray.png and b/img/clothes/upper/witch/acc_gray.png differ
diff --git a/img/clothes/upper/witch/frayed_gray.png b/img/clothes/upper/witch/frayed_gray.png
index 4f07a9e58a519287abd8ccc2cc368e5bde53e18d..268e49a844671e4807e42f42d0a940da178313ef 100644
Binary files a/img/clothes/upper/witch/frayed_gray.png and b/img/clothes/upper/witch/frayed_gray.png differ
diff --git a/img/clothes/upper/witch/full_gray.png b/img/clothes/upper/witch/full_gray.png
index 8c6dbcb149c0a1c214f0a22d2a2166b5931180a4..a80b3a865add982eec6f7855092e60fe4aa2158d 100644
Binary files a/img/clothes/upper/witch/full_gray.png and b/img/clothes/upper/witch/full_gray.png differ
diff --git a/img/clothes/upper/witch/tattered_gray.png b/img/clothes/upper/witch/tattered_gray.png
index 4d415dd390950c2c844ab31a08a90159d48773f7..461c62d709f45aec134c7c231b0cd81901716a53 100644
Binary files a/img/clothes/upper/witch/tattered_gray.png and b/img/clothes/upper/witch/tattered_gray.png differ
diff --git a/img/clothes/upper/witch/torn_gray.png b/img/clothes/upper/witch/torn_gray.png
index 6ea11167f0eef18904ec83fbdecbd386c09d1282..8c23cbe93b0c7947c86f6b0b400b627859440c19 100644
Binary files a/img/clothes/upper/witch/torn_gray.png and b/img/clothes/upper/witch/torn_gray.png differ
diff --git a/img/eyes/eyeshazel.png b/img/eyes/eyeshazel.png
index fd093dded3852acdaed519f5d5f9b57dc08b389c..5e2b2b9dd4280f6532d19a1e6f60bd7577b5712e 100644
Binary files a/img/eyes/eyeshazel.png and b/img/eyes/eyeshazel.png differ
diff --git a/img/eyes/eyeshazelcolouredcorners.png b/img/eyes/eyeshazelcolouredcorners.png
index dea1c07bfe2a48ad8b5de30ed17a9085561d57ee..e0b0e65365648a586905cf9d8e102cffa0d40816 100644
Binary files a/img/eyes/eyeshazelcolouredcorners.png and b/img/eyes/eyeshazelcolouredcorners.png differ
diff --git a/img/eyes/eyeshazelempty.png b/img/eyes/eyeshazelempty.png
index 5325f948b907abba8c67870c47e2bc042e945756..03517fd2eae699e3380439763d18094b7ba89027 100644
Binary files a/img/eyes/eyeshazelempty.png and b/img/eyes/eyeshazelempty.png differ
diff --git a/img/eyes/sclerabloodshot.png b/img/eyes/sclerabloodshot.png
index 464d5d749ed7da471b63c9535c44f063eb6ce8b4..abf0b0cc33f7dcdafd2e3c1dab6dc183b0049fbb 100644
Binary files a/img/eyes/sclerabloodshot.png and b/img/eyes/sclerabloodshot.png differ
diff --git a/img/face/default/base.png b/img/face/default/base.png
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..26bb59870bf9a22994533a90c5f42d2033cbc718 100644
Binary files a/img/face/default/base.png and b/img/face/default/base.png differ
diff --git a/img/face/default/blush1.png b/img/face/default/blush1.png
index b7e256dc45c416a0ca38b05e28581a36e11b725f..89c8bda973f171002adc5728b64fb59eecdaa7bb 100644
Binary files a/img/face/default/blush1.png and b/img/face/default/blush1.png differ
diff --git a/img/face/default/blush2.png b/img/face/default/blush2.png
index 681386cc955dee58b394d6e9bd8c8c74fcc01366..9f4235d39d27247e22b3aed3847fa5abd356de3a 100644
Binary files a/img/face/default/blush2.png and b/img/face/default/blush2.png differ
diff --git a/img/face/default/blush3.png b/img/face/default/blush3.png
index c4dd5bbbe7355a61e3db896d39906f191eaf6ec6..23947d8b4bf070d0c5d478612e9195f51b63e7a0 100644
Binary files a/img/face/default/blush3.png and b/img/face/default/blush3.png differ
diff --git a/img/face/default/blush4.png b/img/face/default/blush4.png
index 9fd447e064d5ea4a419883db5925dbc174023025..0a9a48eb642e6cc4336ec26e6496fe9beac55794 100644
Binary files a/img/face/default/blush4.png and b/img/face/default/blush4.png differ
diff --git a/img/face/default/blush5.png b/img/face/default/blush5.png
index 6deae353e2553c2ec65db6b0d39fe57de6329692..b909f91718790646f7d9318d9be71072d8106cb4 100644
Binary files a/img/face/default/blush5.png and b/img/face/default/blush5.png differ
diff --git a/img/face/default/browlow.png b/img/face/default/browlow.png
index c8c70b934b5af7c0bfa577572d2fd08b7aa19d29..2de503e28bbb3f5833b0e3b2d529406f8bbe034e 100644
Binary files a/img/face/default/browlow.png and b/img/face/default/browlow.png differ
diff --git a/img/face/default/browmid.png b/img/face/default/browmid.png
index 81ead616f68ab7c77bf49d66f87d52744f0737a8..5ae07dd96a2afe78def71a1cb61a3d536826746a 100644
Binary files a/img/face/default/browmid.png and b/img/face/default/browmid.png differ
diff --git a/img/face/default/broworgasm.png b/img/face/default/broworgasm.png
index d36f26ffc9a5e911e208830a92163038ad1b9fe2..8ab7d2cc22e3b50d780ff6ac504083ec3bbf4f42 100644
Binary files a/img/face/default/broworgasm.png and b/img/face/default/broworgasm.png differ
diff --git a/img/face/default/browtop.png b/img/face/default/browtop.png
index 9d825d41b9b287cb437e5c89467671774b9a386f..b15f5375dd0b1ed723cc8d825d792139800a0f1b 100644
Binary files a/img/face/default/browtop.png and b/img/face/default/browtop.png differ
diff --git a/img/face/default/ears.png b/img/face/default/ears.png
index 3362ab8d33cd715360883d0e00677dbf8795fc6b..891c5a5d84a2d15632325857c8bcf23e24107076 100644
Binary files a/img/face/default/ears.png and b/img/face/default/ears.png differ
diff --git a/img/face/default/eyelids.png b/img/face/default/eyelids.png
index aff6f0f227eea01b81b11d02d8892deb60c616fe..275951bd38ba71ca2deaf562a166022f12af5c9b 100644
Binary files a/img/face/default/eyelids.png and b/img/face/default/eyelids.png differ
diff --git a/img/face/default/eyelids_halfclosed.png b/img/face/default/eyelids_halfclosed.png
index 3992dda003a77ada9bc6088ff5bd860885936238..3c39df0bd5894cbdf8b8efb276b1d42f4028c8e4 100644
Binary files a/img/face/default/eyelids_halfclosed.png and b/img/face/default/eyelids_halfclosed.png differ
diff --git a/img/face/default/eyes.png b/img/face/default/eyes.png
index a69c47571c5d50a1987dcceb85cb77ae5f315152..8a63ca174ce18617a07ecc5f0371c01e593e0e21 100644
Binary files a/img/face/default/eyes.png and b/img/face/default/eyes.png differ
diff --git a/img/face/default/freckles.png b/img/face/default/freckles.png
index 249783084d8d02f5a583bcd82baba607c21faf61..f66bfaf43b3895b9f4972c66d42ce5427806cc56 100644
Binary files a/img/face/default/freckles.png and b/img/face/default/freckles.png differ
diff --git a/img/face/default/iris.png b/img/face/default/iris.png
index 379e339135707d1204a337fc1a23f0852691d0b7..19be4049ce43fe33c0dab36e07175ba5a54acf20 100644
Binary files a/img/face/default/iris.png and b/img/face/default/iris.png differ
diff --git a/img/face/default/iris_halfclosed.png b/img/face/default/iris_halfclosed.png
index 46f21d3a7cd4ff298de2cd11c4543ecfb7fde5c8..cac1ac9cc3385f9886711951ac0855f54e9fe83f 100644
Binary files a/img/face/default/iris_halfclosed.png and b/img/face/default/iris_halfclosed.png differ
diff --git a/img/face/default/iris_halfclosed_left.png b/img/face/default/iris_halfclosed_left.png
index 6503798101db6dff0b291502bee595834e7bf03e..0e9c5c35f50e2957d4e2c1ecfba78849cfb6d177 100644
Binary files a/img/face/default/iris_halfclosed_left.png and b/img/face/default/iris_halfclosed_left.png differ
diff --git a/img/face/default/iris_halfclosed_right.png b/img/face/default/iris_halfclosed_right.png
index 3855195c88e2b75dec26c0f5ece150410339602a..64aeeb84c782f41e43862819e361a94917100990 100644
Binary files a/img/face/default/iris_halfclosed_right.png and b/img/face/default/iris_halfclosed_right.png differ
diff --git a/img/face/default/iris_left.png b/img/face/default/iris_left.png
index afd18832ef51e83abb3a3b674368ff1d263329c7..2bfd8bea1501ccb40f976eea4d28faa467060750 100644
Binary files a/img/face/default/iris_left.png and b/img/face/default/iris_left.png differ
diff --git a/img/face/default/iris_right.png b/img/face/default/iris_right.png
index aadf8f6caaca8975817372cb1d7ef40d94992609..f56890e0736ddd425f48c3bd6a179c341d8494b9 100644
Binary files a/img/face/default/iris_right.png and b/img/face/default/iris_right.png differ
diff --git a/img/face/default/irisempty.png b/img/face/default/irisempty.png
index db44d2b60fd8a253881286798d415f57eb11f645..42e019460fe327eb05f2ad2ebbcbc2660df805d3 100644
Binary files a/img/face/default/irisempty.png and b/img/face/default/irisempty.png differ
diff --git a/img/face/default/irisempty_halfclosed.png b/img/face/default/irisempty_halfclosed.png
index db44d2b60fd8a253881286798d415f57eb11f645..42e019460fe327eb05f2ad2ebbcbc2660df805d3 100644
Binary files a/img/face/default/irisempty_halfclosed.png and b/img/face/default/irisempty_halfclosed.png differ
diff --git a/img/face/default/irisempty_halfclosed_left.png b/img/face/default/irisempty_halfclosed_left.png
index 301ed31e383426cb141304f63ee264b9262238a8..03972e8b24b2e66def2edb75d26652b202b9bd76 100644
Binary files a/img/face/default/irisempty_halfclosed_left.png and b/img/face/default/irisempty_halfclosed_left.png differ
diff --git a/img/face/default/irisempty_halfclosed_right.png b/img/face/default/irisempty_halfclosed_right.png
index 689d8e2ae7151e2406ded0f2aa79afd00fd49abe..b52d76207f7f95bd9c4e05b5cff039367f7d07ae 100644
Binary files a/img/face/default/irisempty_halfclosed_right.png and b/img/face/default/irisempty_halfclosed_right.png differ
diff --git a/img/face/default/irisempty_left.png b/img/face/default/irisempty_left.png
index c2e2d88248e2a81a44932ca83884ee98cec2bcb4..03972e8b24b2e66def2edb75d26652b202b9bd76 100644
Binary files a/img/face/default/irisempty_left.png and b/img/face/default/irisempty_left.png differ
diff --git a/img/face/default/irisempty_right.png b/img/face/default/irisempty_right.png
index 384a6474bca09db979f5139ad36398d806a2b225..b52d76207f7f95bd9c4e05b5cff039367f7d07ae 100644
Binary files a/img/face/default/irisempty_right.png and b/img/face/default/irisempty_right.png differ
diff --git a/img/face/default/lashes.png b/img/face/default/lashes.png
index 70215d4f69c6a31167d3e8e672e3848ac5ce65ac..f82c700066574b327bf711f8d8486739f3060b1d 100644
Binary files a/img/face/default/lashes.png and b/img/face/default/lashes.png differ
diff --git a/img/face/default/lashes_halfclosed.png b/img/face/default/lashes_halfclosed.png
index 1e8eaa151356b9e350744dc01f1e551a0751ff08..ae64aff7dd50e2075289ea3575a4c89b179bf1eb 100644
Binary files a/img/face/default/lashes_halfclosed.png and b/img/face/default/lashes_halfclosed.png differ
diff --git a/img/face/default/makeup/eyeshadows.png b/img/face/default/makeup/eyeshadows.png
index 2967bd6bc44fed0484f3883cb5320cd2a6a63aaa..0773561b8a9f8bac0c2f4f975a19216c132e416a 100644
Binary files a/img/face/default/makeup/eyeshadows.png and b/img/face/default/makeup/eyeshadows.png differ
diff --git a/img/face/default/makeup/eyeshadows_halfclosed.png b/img/face/default/makeup/eyeshadows_halfclosed.png
index 064c09d4a576bf4a5f386332d09f43c0d37c9783..63d031671587e83cdcdca80570329b71902c3508 100644
Binary files a/img/face/default/makeup/eyeshadows_halfclosed.png and b/img/face/default/makeup/eyeshadows_halfclosed.png differ
diff --git a/img/face/default/makeup/lipstick_cry.png b/img/face/default/makeup/lipstick_cry.png
index 85fcaeda1dd18a0d265b1fe1fa670aaa616bab0b..21535f3efa126f8d6d40b9487bdea6c5f7e8cb94 100644
Binary files a/img/face/default/makeup/lipstick_cry.png and b/img/face/default/makeup/lipstick_cry.png differ
diff --git a/img/face/default/makeup/lipstick_frown.png b/img/face/default/makeup/lipstick_frown.png
index 93649adb4d951920dbde41ddaab6f585bff5682c..7e20e512649a523b51f44075b9acb1fa8af8aeda 100644
Binary files a/img/face/default/makeup/lipstick_frown.png and b/img/face/default/makeup/lipstick_frown.png differ
diff --git a/img/face/default/makeup/lipstick_neutral.png b/img/face/default/makeup/lipstick_neutral.png
index 475fc1cee935a440efb6632ffc69430c5174c72d..bb57da724a79a44c074a4665f43403da12b30806 100644
Binary files a/img/face/default/makeup/lipstick_neutral.png and b/img/face/default/makeup/lipstick_neutral.png differ
diff --git a/img/face/default/makeup/lipstick_smile.png b/img/face/default/makeup/lipstick_smile.png
index fba3be97f2c82a34ac26af8ce0152eeced3ff153..bdade5762f704d82d9a1a0eab9f3142087b6c4c2 100644
Binary files a/img/face/default/makeup/lipstick_smile.png and b/img/face/default/makeup/lipstick_smile.png differ
diff --git a/img/face/default/makeup/mascara.png b/img/face/default/makeup/mascara.png
index 43c3c89d66816c0337437ee1f83f8349d17760ca..f0feb409788ccceee96744652d74f91b09a80545 100644
Binary files a/img/face/default/makeup/mascara.png and b/img/face/default/makeup/mascara.png differ
diff --git a/img/face/default/makeup/mascara1.png b/img/face/default/makeup/mascara1.png
index aadb1484551a9a4dcd3aa777b5857ee40e96c99b..186ddd118042062f22c2f444902a8c5ce4b87e09 100644
Binary files a/img/face/default/makeup/mascara1.png and b/img/face/default/makeup/mascara1.png differ
diff --git a/img/face/default/makeup/mascara2.png b/img/face/default/makeup/mascara2.png
index b33052fe478144c739907cb7664e4ac1da3a0590..9fc8f6876ce5b571f9cdcc2e362c447269a11758 100644
Binary files a/img/face/default/makeup/mascara2.png and b/img/face/default/makeup/mascara2.png differ
diff --git a/img/face/default/makeup/mascara3.png b/img/face/default/makeup/mascara3.png
index d18d70cd1a77e6933a65d6aa164090d449e35713..643992387397e6e368d7768e53046cd1479443cd 100644
Binary files a/img/face/default/makeup/mascara3.png and b/img/face/default/makeup/mascara3.png differ
diff --git a/img/face/default/makeup/mascara4.png b/img/face/default/makeup/mascara4.png
index a3b23815790d99367aac96dc3610d426e67044c9..e7c45302fe2076127551e80468524c738cec91a1 100644
Binary files a/img/face/default/makeup/mascara4.png and b/img/face/default/makeup/mascara4.png differ
diff --git a/img/face/default/makeup/mascara_halfclosed.png b/img/face/default/makeup/mascara_halfclosed.png
index d725d4b936b525e936978c7272a9e702524339a2..4b7e27633c0e04a3ca62682344808c9ee142a1c5 100644
Binary files a/img/face/default/makeup/mascara_halfclosed.png and b/img/face/default/makeup/mascara_halfclosed.png differ
diff --git a/img/face/default/mouthcry.png b/img/face/default/mouthcry.png
index f3fb450401a9be9a4143d0c46bf74653d2214f3f..242ad297e04dfac124ebf4bf123d272d61c9e302 100644
Binary files a/img/face/default/mouthcry.png and b/img/face/default/mouthcry.png differ
diff --git a/img/face/default/mouthfrown.png b/img/face/default/mouthfrown.png
index 3864ce0963c0b20d8bb69e0b5f6b48629e4ea541..9d80ba5c20cf66c39964749e14ae6fb8a5e2e060 100644
Binary files a/img/face/default/mouthfrown.png and b/img/face/default/mouthfrown.png differ
diff --git a/img/face/default/mouthneutral.png b/img/face/default/mouthneutral.png
index 142822cd4b1d0855fc0c34cce9f0eddc0e464f20..b30db94c3c44e50fe31f909526cfe277efd463f8 100644
Binary files a/img/face/default/mouthneutral.png and b/img/face/default/mouthneutral.png differ
diff --git a/img/face/default/mouthsmile.png b/img/face/default/mouthsmile.png
index dd7a9c2a3f8f06ebfb02b52ba741366a4e39eed6..50f7c8181b7c486878a916e0a7ec75e5c25d68e1 100644
Binary files a/img/face/default/mouthsmile.png and b/img/face/default/mouthsmile.png differ
diff --git a/img/face/default/red/base.png b/img/face/default/red/base.png
deleted file mode 100644
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/base.png and /dev/null differ
diff --git a/img/face/default/red/blush1.png b/img/face/default/red/blush1.png
deleted file mode 100644
index c7b0ef541376a045c234a4ed85208ba4ef062333..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/blush1.png and /dev/null differ
diff --git a/img/face/default/red/blush2.png b/img/face/default/red/blush2.png
deleted file mode 100644
index 97fb9b05d8960ed92c3b62c64944d69f52c1c628..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/blush2.png and /dev/null differ
diff --git a/img/face/default/red/blush3.png b/img/face/default/red/blush3.png
deleted file mode 100644
index 598c378aa259c300a961b45093d05e845e48d2d5..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/blush3.png and /dev/null differ
diff --git a/img/face/default/red/blush4.png b/img/face/default/red/blush4.png
deleted file mode 100644
index 7488eb69ee19bb71e075a5672c90250d31d2ff5c..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/blush4.png and /dev/null differ
diff --git a/img/face/default/red/blush5.png b/img/face/default/red/blush5.png
deleted file mode 100644
index 1c443869e56d3bd9baeeafe07042c785c4b1f34b..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/blush5.png and /dev/null differ
diff --git a/img/face/default/red/eyelids.png b/img/face/default/red/eyelids.png
deleted file mode 100644
index 71eea4dad96e0180e59cd679e34ac9c23ad9f46e..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/eyelids.png and /dev/null differ
diff --git a/img/face/default/red/eyelids_halfclosed.png b/img/face/default/red/eyelids_halfclosed.png
deleted file mode 100644
index 87fee5148ff98a4e206d3a32b4be0629544a8344..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/eyelids_halfclosed.png and /dev/null differ
diff --git a/img/face/default/red/eyes.png b/img/face/default/red/eyes.png
deleted file mode 100644
index 8d8ad01fd3910189be5848bb775ad429d017cda1..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/eyes.png and /dev/null differ
diff --git a/img/face/default/red/freckles.png b/img/face/default/red/freckles.png
deleted file mode 100644
index 5e28099dd34ecc933b5e4916178d16ebccde2dbb..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/freckles.png and /dev/null differ
diff --git a/img/face/default/red/mouthcry.png b/img/face/default/red/mouthcry.png
deleted file mode 100644
index afb3236bd49275a0d75cbcff7fb43948fe448987..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/mouthcry.png and /dev/null differ
diff --git a/img/face/default/red/mouthfrown.png b/img/face/default/red/mouthfrown.png
deleted file mode 100644
index b3fed1dba1a0990822e8487670357792ef54a649..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/mouthfrown.png and /dev/null differ
diff --git a/img/face/default/red/mouthneutral.png b/img/face/default/red/mouthneutral.png
deleted file mode 100644
index 42c7bab59e5e7a48d46c2495f731652b8810bb1a..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/mouthneutral.png and /dev/null differ
diff --git a/img/face/default/red/mouthsmile.png b/img/face/default/red/mouthsmile.png
deleted file mode 100644
index d653c4731207be076373cc76cd1759e9ad5ae643..0000000000000000000000000000000000000000
Binary files a/img/face/default/red/mouthsmile.png and /dev/null differ
diff --git a/img/face/default/sclera.png b/img/face/default/sclera.png
index fd2a2b9d11da3bdde0983d71861c19387248d148..4f2ab834b5b0b4c7f6dc794a846a86152335bd03 100644
Binary files a/img/face/default/sclera.png and b/img/face/default/sclera.png differ
diff --git a/img/face/default/sclerabloodshot.png b/img/face/default/sclerabloodshot.png
index b1d81375aa8ad96b13dce06aaa77c5bd3e7dbd8f..abf0b0cc33f7dcdafd2e3c1dab6dc183b0049fbb 100644
Binary files a/img/face/default/sclerabloodshot.png and b/img/face/default/sclerabloodshot.png differ
diff --git a/img/face/default/tear1.png b/img/face/default/tear1.png
index 8389a7d0673bd8463f2e893755607f0e17bc9171..6982cf6c80ef32507a55a1ad0c27e94fe0395b96 100644
Binary files a/img/face/default/tear1.png and b/img/face/default/tear1.png differ
diff --git a/img/face/default/tear2.png b/img/face/default/tear2.png
index 15dc8e11b8b08fbbeee6c95e92981cedf02beebf..d254155a617a226c5aac9756ada0056514768d46 100644
Binary files a/img/face/default/tear2.png and b/img/face/default/tear2.png differ
diff --git a/img/face/default/tear3.png b/img/face/default/tear3.png
index f219cebbac12990135e154e50192f1f073970571..7ca8c5aea9d12e5bdbbe7bf2b76eb985a7c44d33 100644
Binary files a/img/face/default/tear3.png and b/img/face/default/tear3.png differ
diff --git a/img/face/default/tear4.png b/img/face/default/tear4.png
index 4bded72eaa4470108adb58b33eca13e885fbbf8f..69ff4f7cd9d19e908b3616203e530d5de35b7cf3 100644
Binary files a/img/face/default/tear4.png and b/img/face/default/tear4.png differ
diff --git a/img/hair/back/afro pouf/feet.png b/img/hair/back/afro pouf/feet.png
index 8771a60e98856dbba531b23487e74004889c7d9a..1a74ff4f465c78942f1e28baf00cf1b77515910d 100644
Binary files a/img/hair/back/afro pouf/feet.png and b/img/hair/back/afro pouf/feet.png differ
diff --git a/img/hair/back/afro pouf/thighs.png b/img/hair/back/afro pouf/thighs.png
index bb4f300c07ba5f7992d8e0c4570a9f4fb01b5194..d66127c4158f35076f01af52d16c2d92482e0afc 100644
Binary files a/img/hair/back/afro pouf/thighs.png and b/img/hair/back/afro pouf/thighs.png differ
diff --git a/img/hair/back/all down/feet.png b/img/hair/back/all down/feet.png
index f6687a8ef0639c34304357ac599848b8039c02c2..db8131794103bf72b8f71abec84351751a20c9f8 100644
Binary files a/img/hair/back/all down/feet.png and b/img/hair/back/all down/feet.png differ
diff --git a/img/hair/back/all down/thighs.png b/img/hair/back/all down/thighs.png
index eacebf1250f2067f04dbb8779de38d132bdf9cfa..f3c55a7027258e36758464049682fe84dd0593f6 100644
Binary files a/img/hair/back/all down/thighs.png and b/img/hair/back/all down/thighs.png differ
diff --git a/img/hair/back/bedhead/feet.png b/img/hair/back/bedhead/feet.png
index 1746bd0b0d38b750f985831151aecc6bcfe6c7b1..61dda34c25437270d839395f1b4ece8453bb3034 100644
Binary files a/img/hair/back/bedhead/feet.png and b/img/hair/back/bedhead/feet.png differ
diff --git a/img/hair/back/bedhead/thighs.png b/img/hair/back/bedhead/thighs.png
index 608237b6605170055b03cdeecde9cad2b268fb22..c265322f757ba6b921a607cf0feed9cda92c918a 100644
Binary files a/img/hair/back/bedhead/thighs.png and b/img/hair/back/bedhead/thighs.png differ
diff --git a/img/hair/back/curl/feet.png b/img/hair/back/curl/feet.png
index 3b2a12b6514d5bb7a36517375353fe6d9f397e5e..84de2edc7e1db545f10fba37d6e09589142ca192 100644
Binary files a/img/hair/back/curl/feet.png and b/img/hair/back/curl/feet.png differ
diff --git a/img/hair/back/curl/thighs.png b/img/hair/back/curl/thighs.png
index bd7adccb67284d2caff1d516eb6bfd7a01a40962..d156d8efb2fb46ae87d50c327f87c2e0b659fe15 100644
Binary files a/img/hair/back/curl/thighs.png and b/img/hair/back/curl/thighs.png differ
diff --git a/img/hair/back/default/feet.png b/img/hair/back/default/feet.png
index ea6203c28d62a3556adfe1094d14a0d4863269ff..a31d032bf446e8facabe011a84cf0bf57fd042a3 100644
Binary files a/img/hair/back/default/feet.png and b/img/hair/back/default/feet.png differ
diff --git a/img/hair/back/default/thighs.png b/img/hair/back/default/thighs.png
index ec99ef19bdd6ab4bff981c1ecdfd84182001e21d..1d2cfa5ecf65b60a2f67186defdede8084f408ff 100644
Binary files a/img/hair/back/default/thighs.png and b/img/hair/back/default/thighs.png differ
diff --git a/img/hair/back/defined curl/feet.png b/img/hair/back/defined curl/feet.png
index 3b2a12b6514d5bb7a36517375353fe6d9f397e5e..84de2edc7e1db545f10fba37d6e09589142ca192 100644
Binary files a/img/hair/back/defined curl/feet.png and b/img/hair/back/defined curl/feet.png differ
diff --git a/img/hair/back/defined curl/thighs.png b/img/hair/back/defined curl/thighs.png
index bd7adccb67284d2caff1d516eb6bfd7a01a40962..d156d8efb2fb46ae87d50c327f87c2e0b659fe15 100644
Binary files a/img/hair/back/defined curl/thighs.png and b/img/hair/back/defined curl/thighs.png differ
diff --git a/img/hair/back/dreads/feet.png b/img/hair/back/dreads/feet.png
index 72f193cd98bd23f03d7078c650d8db7abe59d711..380e0ba7256a789c2f2e8f7e464c86c80e06076c 100644
Binary files a/img/hair/back/dreads/feet.png and b/img/hair/back/dreads/feet.png differ
diff --git a/img/hair/back/dreads/thighs.png b/img/hair/back/dreads/thighs.png
index d48052b3a335e2c06a3137d12fe4cbec967260fb..6db9f527650886b17380187e26400ecc8c00defb 100644
Binary files a/img/hair/back/dreads/thighs.png and b/img/hair/back/dreads/thighs.png differ
diff --git a/img/hair/back/half-up/feet.png b/img/hair/back/half-up/feet.png
index 1311c5d617206f1392740ef934f740fac07a5fdf..db8131794103bf72b8f71abec84351751a20c9f8 100644
Binary files a/img/hair/back/half-up/feet.png and b/img/hair/back/half-up/feet.png differ
diff --git a/img/hair/back/half-up/thighs.png b/img/hair/back/half-up/thighs.png
index ad6c31082eda11d565c3832d6c310a22a033c926..f3c55a7027258e36758464049682fe84dd0593f6 100644
Binary files a/img/hair/back/half-up/thighs.png and b/img/hair/back/half-up/thighs.png differ
diff --git a/img/hair/back/loose/feet.png b/img/hair/back/loose/feet.png
index 1add90d61a47b8c051a74f791413066a6fb0ebdf..b2e6850249e441a07b5ee5719b1fea77da7bb567 100644
Binary files a/img/hair/back/loose/feet.png and b/img/hair/back/loose/feet.png differ
diff --git a/img/hair/back/loose/thighs.png b/img/hair/back/loose/thighs.png
index 3024fd5b35613999b8f48138120c180afbceeb0a..b7258d6590d79233cb78cc17adc3a41c591d0103 100644
Binary files a/img/hair/back/loose/thighs.png and b/img/hair/back/loose/thighs.png differ
diff --git a/img/hair/back/messy ponytail/feet.png b/img/hair/back/messy ponytail/feet.png
index a35974766ad5e87f2454e1008cafafca09f1d769..37174d5d391c4ce545af5b3d17d68ada3a682377 100644
Binary files a/img/hair/back/messy ponytail/feet.png and b/img/hair/back/messy ponytail/feet.png differ
diff --git a/img/hair/back/messy ponytail/navel.png b/img/hair/back/messy ponytail/navel.png
index 4e3b11eae8d153c687cb2921fb895521a7550bcc..bb207e532b07b452bf96e96948d09db204d677ff 100644
Binary files a/img/hair/back/messy ponytail/navel.png and b/img/hair/back/messy ponytail/navel.png differ
diff --git a/img/hair/back/messy ponytail/thighs.png b/img/hair/back/messy ponytail/thighs.png
index 83dfba27bea7600eb7eb19fd57299ec35c7b772b..d0eb84b8b857a0a64691e45d83b51cd31d3bed33 100644
Binary files a/img/hair/back/messy ponytail/thighs.png and b/img/hair/back/messy ponytail/thighs.png differ
diff --git a/img/hair/back/neat/feet.png b/img/hair/back/neat/feet.png
index 2825a20cf3b6596bad7c55af4d40e5c3b6202f3d..f999e1c9457b8a1d2967d6181cc14e9842950d01 100644
Binary files a/img/hair/back/neat/feet.png and b/img/hair/back/neat/feet.png differ
diff --git a/img/hair/back/neat/thighs.png b/img/hair/back/neat/thighs.png
index fa2b31d5d0afb0e572c33233f13c4e82e8f9919f..4df9a2e086a5e319e3502cdd7b9010ee30e2cd8e 100644
Binary files a/img/hair/back/neat/thighs.png and b/img/hair/back/neat/thighs.png differ
diff --git a/img/hair/back/ruffled/chest.png b/img/hair/back/ruffled/chest.png
index 4d1a32f17f6a8a7b6402d1711f990b20b8824027..ae4f5be5aa8ec278bf73a5d3b21d3d3a2be429e3 100644
Binary files a/img/hair/back/ruffled/chest.png and b/img/hair/back/ruffled/chest.png differ
diff --git a/img/hair/back/ruffled/feet.png b/img/hair/back/ruffled/feet.png
index f4ef17341e8875ea117540fe5533699053295f69..3300cbe2524c924e5065313c762b87ff7a23641d 100644
Binary files a/img/hair/back/ruffled/feet.png and b/img/hair/back/ruffled/feet.png differ
diff --git a/img/hair/back/ruffled/navel.png b/img/hair/back/ruffled/navel.png
index 3d66f4c0be7afd96c9b096b5edf1eb8a4786febe..e2ad57969180750365fef357db338419a3050205 100644
Binary files a/img/hair/back/ruffled/navel.png and b/img/hair/back/ruffled/navel.png differ
diff --git a/img/hair/back/ruffled/short.png b/img/hair/back/ruffled/short.png
index 63a55f9019f57534fc8ef500e4cc8fd12d641104..a5bcfa5dcb68dc31a77d3668a07cda2da6d6c4b6 100644
Binary files a/img/hair/back/ruffled/short.png and b/img/hair/back/ruffled/short.png differ
diff --git a/img/hair/back/ruffled/shoulder.png b/img/hair/back/ruffled/shoulder.png
index a1d22a98696a49c69f0b1f932b2294f3bb9b8d6b..7779fffdcb5eed6acff9cee197dece18240019f6 100644
Binary files a/img/hair/back/ruffled/shoulder.png and b/img/hair/back/ruffled/shoulder.png differ
diff --git a/img/hair/back/ruffled/thighs.png b/img/hair/back/ruffled/thighs.png
index 7246d5a4174229d3354ad82d71b7c7f4b3d6090f..fe579845fc8503e1ae30618bb3f7d3510c600dd2 100644
Binary files a/img/hair/back/ruffled/thighs.png and b/img/hair/back/ruffled/thighs.png differ
diff --git a/img/hair/back/sleek/feet.png b/img/hair/back/sleek/feet.png
index a792ba7ccee0d4e9a7ab0b21ebd7412834ae0a4f..70c2901582a69b509bf42f60249c4924fdb05396 100644
Binary files a/img/hair/back/sleek/feet.png and b/img/hair/back/sleek/feet.png differ
diff --git a/img/hair/back/sleek/thighs.png b/img/hair/back/sleek/thighs.png
index 5eb87b427c8a0160fd1da9f7d307cbd430c4ccf1..03aafd935e32c328a3398f2022796943c4e97b84 100644
Binary files a/img/hair/back/sleek/thighs.png and b/img/hair/back/sleek/thighs.png differ
diff --git a/img/hair/back/space buns/feet.png b/img/hair/back/space buns/feet.png
index e8a3eb0cc05f75ddb32f49d81a7ef0bfbf12e3f6..5cfdfea40465a1cb8f26967c2da7ac233ec60ee7 100644
Binary files a/img/hair/back/space buns/feet.png and b/img/hair/back/space buns/feet.png differ
diff --git a/img/hair/back/straight/feet.png b/img/hair/back/straight/feet.png
index 443f125bc15471a1469845442b555304b39c7b3f..371216852de6138770ae284f42f2d3571fa3b4ae 100644
Binary files a/img/hair/back/straight/feet.png and b/img/hair/back/straight/feet.png differ
diff --git a/img/hair/back/thick ponytail/feet.png b/img/hair/back/thick ponytail/feet.png
index 7210cd7567a37dcd77f44d3cacc4c45aab489849..d85ee21d32f42e1913753e6f9e4fe014df454a68 100644
Binary files a/img/hair/back/thick ponytail/feet.png and b/img/hair/back/thick ponytail/feet.png differ
diff --git a/img/hair/back/thick ponytail/thighs.png b/img/hair/back/thick ponytail/thighs.png
index 278e6dc676462093f54bcdd74a6e699325018e56..cd708ccb0c4f68c9b098aeb1dbeb97dcdcc7938c 100644
Binary files a/img/hair/back/thick ponytail/thighs.png and b/img/hair/back/thick ponytail/thighs.png differ
diff --git a/img/hair/fringe/back/chest.png b/img/hair/fringe/back/chest.png
index 30c649ea0b2f5fe272dbbc3dc240c81c7746aa75..4f0deaa6b1b6c1925ffe3f4215c0ef0b5c6795da 100644
Binary files a/img/hair/fringe/back/chest.png and b/img/hair/fringe/back/chest.png differ
diff --git a/img/hair/fringe/back/feet.png b/img/hair/fringe/back/feet.png
index 4a8b817318b1cfee5626f99a06963750fe740d7a..880822e4d83a105fa2eb0dfb86c376fba2a3352a 100644
Binary files a/img/hair/fringe/back/feet.png and b/img/hair/fringe/back/feet.png differ
diff --git a/img/hair/fringe/back/navel.png b/img/hair/fringe/back/navel.png
index 1d823561f9356c4135bc6eca9e798254374b60f0..6c6c42aef1f6f5c608bb9bc5f06b997bd23162c7 100644
Binary files a/img/hair/fringe/back/navel.png and b/img/hair/fringe/back/navel.png differ
diff --git a/img/hair/fringe/back/short.png b/img/hair/fringe/back/short.png
index f1e8a48a45da7eebb8fbe843dc4c94f5ba9fdd2f..9f129023229079f65560a5b500ba5483ccae2746 100644
Binary files a/img/hair/fringe/back/short.png and b/img/hair/fringe/back/short.png differ
diff --git a/img/hair/fringe/back/shoulder.png b/img/hair/fringe/back/shoulder.png
index ee62642549428d34fa5850a49b0e4d4a9c836cd8..6ba8f570d5fde6d50cbff5189a7ae501a81d8ee5 100644
Binary files a/img/hair/fringe/back/shoulder.png and b/img/hair/fringe/back/shoulder.png differ
diff --git a/img/hair/fringe/back/thighs.png b/img/hair/fringe/back/thighs.png
index a558989c51fcaea81d33bd4e6f213bfbc47b79cb..44f3ea8b7504f91eae0923f85afe7e167c70908b 100644
Binary files a/img/hair/fringe/back/thighs.png and b/img/hair/fringe/back/thighs.png differ
diff --git a/img/hair/fringe/bedhead/chest.png b/img/hair/fringe/bedhead/chest.png
index ef91d0d613f4636ba69a48b2e039a503283f5788..9da294598569a89e41bd76290fe4763e61a98993 100644
Binary files a/img/hair/fringe/bedhead/chest.png and b/img/hair/fringe/bedhead/chest.png differ
diff --git a/img/hair/fringe/bedhead/feet.png b/img/hair/fringe/bedhead/feet.png
index ef91d0d613f4636ba69a48b2e039a503283f5788..9da294598569a89e41bd76290fe4763e61a98993 100644
Binary files a/img/hair/fringe/bedhead/feet.png and b/img/hair/fringe/bedhead/feet.png differ
diff --git a/img/hair/fringe/bedhead/navel.png b/img/hair/fringe/bedhead/navel.png
index ef91d0d613f4636ba69a48b2e039a503283f5788..9da294598569a89e41bd76290fe4763e61a98993 100644
Binary files a/img/hair/fringe/bedhead/navel.png and b/img/hair/fringe/bedhead/navel.png differ
diff --git a/img/hair/fringe/bedhead/short.png b/img/hair/fringe/bedhead/short.png
index 270ac1ce685bd2dea9a36e181db053686b91cb95..d22b47075a6b1983d969292a8cc8d7d60e96373b 100644
Binary files a/img/hair/fringe/bedhead/short.png and b/img/hair/fringe/bedhead/short.png differ
diff --git a/img/hair/fringe/bedhead/shoulder.png b/img/hair/fringe/bedhead/shoulder.png
index 6fb087fa9e6c3136fdbcb26b18962ce391178c72..a7d39e674478b9bddb3cf1a828c442786b93402a 100644
Binary files a/img/hair/fringe/bedhead/shoulder.png and b/img/hair/fringe/bedhead/shoulder.png differ
diff --git a/img/hair/fringe/bedhead/thighs.png b/img/hair/fringe/bedhead/thighs.png
index ef91d0d613f4636ba69a48b2e039a503283f5788..9da294598569a89e41bd76290fe4763e61a98993 100644
Binary files a/img/hair/fringe/bedhead/thighs.png and b/img/hair/fringe/bedhead/thighs.png differ
diff --git a/img/hair/fringe/blunt locks/chest.png b/img/hair/fringe/blunt locks/chest.png
index 7ab77e750f6ce11f830761ea26502a0be788dfcc..a9f4373f5d1a79f845a65bba8e5118999f68071a 100644
Binary files a/img/hair/fringe/blunt locks/chest.png and b/img/hair/fringe/blunt locks/chest.png differ
diff --git a/img/hair/fringe/blunt locks/feet.png b/img/hair/fringe/blunt locks/feet.png
index 4c8a5c69cbc45e67431ec497a320e90202362bcc..af53b00df933d605c486afc4e6a00bc9fd2f9dd5 100644
Binary files a/img/hair/fringe/blunt locks/feet.png and b/img/hair/fringe/blunt locks/feet.png differ
diff --git a/img/hair/fringe/blunt locks/navel.png b/img/hair/fringe/blunt locks/navel.png
index efb3e8f1f987f7de93da3c7031db276281a1a073..09b6f3af1b402b58051f21f82dfaefbb94919e8c 100644
Binary files a/img/hair/fringe/blunt locks/navel.png and b/img/hair/fringe/blunt locks/navel.png differ
diff --git a/img/hair/fringe/blunt locks/short.png b/img/hair/fringe/blunt locks/short.png
index 16218f528354a694faaf0823e5ff006093d99c19..dfba09266b8e3e906ec30b3ec6c8fd826fd59439 100644
Binary files a/img/hair/fringe/blunt locks/short.png and b/img/hair/fringe/blunt locks/short.png differ
diff --git a/img/hair/fringe/blunt locks/shoulder.png b/img/hair/fringe/blunt locks/shoulder.png
index e235d9921e959528848890a999b2752129c757d2..df6111a36a2dd46d9e3ab3ab3a0e30b97e67cb9f 100644
Binary files a/img/hair/fringe/blunt locks/shoulder.png and b/img/hair/fringe/blunt locks/shoulder.png differ
diff --git a/img/hair/fringe/blunt locks/thighs.png b/img/hair/fringe/blunt locks/thighs.png
index f3519d3ed39f606c7aa3d9592528f8ace1ee9704..a8ea201324bd3a079116a0aa921bf1c12097a064 100644
Binary files a/img/hair/fringe/blunt locks/thighs.png and b/img/hair/fringe/blunt locks/thighs.png differ
diff --git a/img/hair/fringe/bowl/chest.png b/img/hair/fringe/bowl/chest.png
index d7b00bb81beec8bf6699ee22209461110fdae8ea..417b6d6e1f10805cd6af12e2e12b085c7ae125a8 100644
Binary files a/img/hair/fringe/bowl/chest.png and b/img/hair/fringe/bowl/chest.png differ
diff --git a/img/hair/fringe/bowl/feet.png b/img/hair/fringe/bowl/feet.png
index c048db7f190d3f5fbb5db636b9948104e52076c4..3bfdcdaabaf16068b716fa4cab8b12b5366bd0e5 100644
Binary files a/img/hair/fringe/bowl/feet.png and b/img/hair/fringe/bowl/feet.png differ
diff --git a/img/hair/fringe/bowl/navel.png b/img/hair/fringe/bowl/navel.png
index 18a45230aa4b345c6e2b8cfd9f79f3bace3d8476..d35ad502f1823dde08fe3e6d046c0b810dc4f47a 100644
Binary files a/img/hair/fringe/bowl/navel.png and b/img/hair/fringe/bowl/navel.png differ
diff --git a/img/hair/fringe/bowl/short.png b/img/hair/fringe/bowl/short.png
index a8eff0c00e6389c989bd486dde194eabbf32c0b3..cc352d92981904b7beca65dd726b9c9201cfacad 100644
Binary files a/img/hair/fringe/bowl/short.png and b/img/hair/fringe/bowl/short.png differ
diff --git a/img/hair/fringe/bowl/shoulder.png b/img/hair/fringe/bowl/shoulder.png
index 555c72ee001247b92389c5fdf7eb85d45c925ab0..9cd7c1a6163422da33124396664ca8fce6edc810 100644
Binary files a/img/hair/fringe/bowl/shoulder.png and b/img/hair/fringe/bowl/shoulder.png differ
diff --git a/img/hair/fringe/bowl/thighs.png b/img/hair/fringe/bowl/thighs.png
index 3188193d374c46d5cdf9c77038bee88c2b781421..64178a4ffa10186d72b64ed25e352e3229f86f5e 100644
Binary files a/img/hair/fringe/bowl/thighs.png and b/img/hair/fringe/bowl/thighs.png differ
diff --git a/img/hair/fringe/buzzcut/chest.png b/img/hair/fringe/buzzcut/chest.png
index 0b3f5a64250ea536c7a9a164690c3428524d57e1..a56ed36ad91ec2883eaec12607e5430c578099ce 100644
Binary files a/img/hair/fringe/buzzcut/chest.png and b/img/hair/fringe/buzzcut/chest.png differ
diff --git a/img/hair/fringe/buzzcut/feet.png b/img/hair/fringe/buzzcut/feet.png
index 0b3f5a64250ea536c7a9a164690c3428524d57e1..a56ed36ad91ec2883eaec12607e5430c578099ce 100644
Binary files a/img/hair/fringe/buzzcut/feet.png and b/img/hair/fringe/buzzcut/feet.png differ
diff --git a/img/hair/fringe/buzzcut/navel.png b/img/hair/fringe/buzzcut/navel.png
index 0b3f5a64250ea536c7a9a164690c3428524d57e1..a56ed36ad91ec2883eaec12607e5430c578099ce 100644
Binary files a/img/hair/fringe/buzzcut/navel.png and b/img/hair/fringe/buzzcut/navel.png differ
diff --git a/img/hair/fringe/buzzcut/short.png b/img/hair/fringe/buzzcut/short.png
index 0b3f5a64250ea536c7a9a164690c3428524d57e1..a56ed36ad91ec2883eaec12607e5430c578099ce 100644
Binary files a/img/hair/fringe/buzzcut/short.png and b/img/hair/fringe/buzzcut/short.png differ
diff --git a/img/hair/fringe/buzzcut/shoulder.png b/img/hair/fringe/buzzcut/shoulder.png
index 0b3f5a64250ea536c7a9a164690c3428524d57e1..a56ed36ad91ec2883eaec12607e5430c578099ce 100644
Binary files a/img/hair/fringe/buzzcut/shoulder.png and b/img/hair/fringe/buzzcut/shoulder.png differ
diff --git a/img/hair/fringe/buzzcut/thighs.png b/img/hair/fringe/buzzcut/thighs.png
index 0b3f5a64250ea536c7a9a164690c3428524d57e1..a56ed36ad91ec2883eaec12607e5430c578099ce 100644
Binary files a/img/hair/fringe/buzzcut/thighs.png and b/img/hair/fringe/buzzcut/thighs.png differ
diff --git a/img/hair/fringe/crude/short.png b/img/hair/fringe/crude/short.png
index cb6757250af767264afd8d0721ae255654a73e60..176b41aa22f7318f5658cf781aaaa1abc55a6693 100644
Binary files a/img/hair/fringe/crude/short.png and b/img/hair/fringe/crude/short.png differ
diff --git a/img/hair/fringe/curtain/chest.png b/img/hair/fringe/curtain/chest.png
index 28ea2cc79eb90e90c7746b26e988d2afa1f8093a..3fc72ec159db5eca80eee10f9f346dc010273eb1 100644
Binary files a/img/hair/fringe/curtain/chest.png and b/img/hair/fringe/curtain/chest.png differ
diff --git a/img/hair/fringe/curtain/feet.png b/img/hair/fringe/curtain/feet.png
index 6830a56b217dd4ff7f385f5289db81a269f18197..90423f31bfade6e1be5115f362a51cd834570b53 100644
Binary files a/img/hair/fringe/curtain/feet.png and b/img/hair/fringe/curtain/feet.png differ
diff --git a/img/hair/fringe/curtain/navel.png b/img/hair/fringe/curtain/navel.png
index 82d85f302f1c5df3d5d971fd1912b60ba43293cb..4c62d00e3d00bc9d1eb92647312e676d74dcce40 100644
Binary files a/img/hair/fringe/curtain/navel.png and b/img/hair/fringe/curtain/navel.png differ
diff --git a/img/hair/fringe/curtain/short.png b/img/hair/fringe/curtain/short.png
index 09150595179738b4cffb917f9c29c674d4ec9191..8ed65bed5fecbb25977bd0fd6bc414790ab1adac 100644
Binary files a/img/hair/fringe/curtain/short.png and b/img/hair/fringe/curtain/short.png differ
diff --git a/img/hair/fringe/curtain/shoulder.png b/img/hair/fringe/curtain/shoulder.png
index 7ab462d3893c92158f47252e48695fe7b6431fda..66409465bc5c9e17a6973b1450e2e48da22cad59 100644
Binary files a/img/hair/fringe/curtain/shoulder.png and b/img/hair/fringe/curtain/shoulder.png differ
diff --git a/img/hair/fringe/curtain/thighs.png b/img/hair/fringe/curtain/thighs.png
index 149f8ed14f23fbcf6f81c4bae555545e30a71970..011c15f1fe0ad6826b8f9880f1003171316283f6 100644
Binary files a/img/hair/fringe/curtain/thighs.png and b/img/hair/fringe/curtain/thighs.png differ
diff --git a/img/hair/fringe/default/chest.png b/img/hair/fringe/default/chest.png
index 14523c49ea3b1f51b1895b0950c02faa5bb82bd3..96fc6e2a4fe2c0c6f719cd924d7fb766ef994b0d 100644
Binary files a/img/hair/fringe/default/chest.png and b/img/hair/fringe/default/chest.png differ
diff --git a/img/hair/fringe/default/feet.png b/img/hair/fringe/default/feet.png
index 14523c49ea3b1f51b1895b0950c02faa5bb82bd3..96fc6e2a4fe2c0c6f719cd924d7fb766ef994b0d 100644
Binary files a/img/hair/fringe/default/feet.png and b/img/hair/fringe/default/feet.png differ
diff --git a/img/hair/fringe/default/navel.png b/img/hair/fringe/default/navel.png
index 14523c49ea3b1f51b1895b0950c02faa5bb82bd3..96fc6e2a4fe2c0c6f719cd924d7fb766ef994b0d 100644
Binary files a/img/hair/fringe/default/navel.png and b/img/hair/fringe/default/navel.png differ
diff --git a/img/hair/fringe/default/short.png b/img/hair/fringe/default/short.png
index 14523c49ea3b1f51b1895b0950c02faa5bb82bd3..96fc6e2a4fe2c0c6f719cd924d7fb766ef994b0d 100644
Binary files a/img/hair/fringe/default/short.png and b/img/hair/fringe/default/short.png differ
diff --git a/img/hair/fringe/default/shoulder.png b/img/hair/fringe/default/shoulder.png
index 14523c49ea3b1f51b1895b0950c02faa5bb82bd3..96fc6e2a4fe2c0c6f719cd924d7fb766ef994b0d 100644
Binary files a/img/hair/fringe/default/shoulder.png and b/img/hair/fringe/default/shoulder.png differ
diff --git a/img/hair/fringe/default/thighs.png b/img/hair/fringe/default/thighs.png
index 14523c49ea3b1f51b1895b0950c02faa5bb82bd3..96fc6e2a4fe2c0c6f719cd924d7fb766ef994b0d 100644
Binary files a/img/hair/fringe/default/thighs.png and b/img/hair/fringe/default/thighs.png differ
diff --git a/img/hair/fringe/dread bun/chest.png b/img/hair/fringe/dread bun/chest.png
index 8c49fa5b08d8bf311d1658286e96d1f8e287cd91..b81c17a60c546e29625383127c937b71a831c43d 100644
Binary files a/img/hair/fringe/dread bun/chest.png and b/img/hair/fringe/dread bun/chest.png differ
diff --git a/img/hair/fringe/dread bun/feet.png b/img/hair/fringe/dread bun/feet.png
index 7776ccc1af5f913c62a78b8571752dd91b1bdc55..b81c17a60c546e29625383127c937b71a831c43d 100644
Binary files a/img/hair/fringe/dread bun/feet.png and b/img/hair/fringe/dread bun/feet.png differ
diff --git a/img/hair/fringe/dread bun/navel.png b/img/hair/fringe/dread bun/navel.png
index 86ed135d470f0e862c6fbf45dbabff58cbb72ed3..b81c17a60c546e29625383127c937b71a831c43d 100644
Binary files a/img/hair/fringe/dread bun/navel.png and b/img/hair/fringe/dread bun/navel.png differ
diff --git a/img/hair/fringe/dread bun/short.png b/img/hair/fringe/dread bun/short.png
index 55f122cda4a69f6bb77dac742a9e6cb1a74a0580..b81c17a60c546e29625383127c937b71a831c43d 100644
Binary files a/img/hair/fringe/dread bun/short.png and b/img/hair/fringe/dread bun/short.png differ
diff --git a/img/hair/fringe/dread bun/shoulder.png b/img/hair/fringe/dread bun/shoulder.png
index 88ba0b82dc6210932323e8afd6230d4802d59cc1..b81c17a60c546e29625383127c937b71a831c43d 100644
Binary files a/img/hair/fringe/dread bun/shoulder.png and b/img/hair/fringe/dread bun/shoulder.png differ
diff --git a/img/hair/fringe/dread bun/thighs.png b/img/hair/fringe/dread bun/thighs.png
index 8cdd3a9a87cd6bb4e204cbe32bb791e129a39bf9..b81c17a60c546e29625383127c937b71a831c43d 100644
Binary files a/img/hair/fringe/dread bun/thighs.png and b/img/hair/fringe/dread bun/thighs.png differ
diff --git a/img/hair/fringe/dreadlocks/chest.png b/img/hair/fringe/dreadlocks/chest.png
index 98e93012771b16b280d2ecbbcd8cc56b474381fd..a2bc73ba40e4d20c6ee691dcf39905b1a62cd41c 100644
Binary files a/img/hair/fringe/dreadlocks/chest.png and b/img/hair/fringe/dreadlocks/chest.png differ
diff --git a/img/hair/fringe/dreadlocks/feet.png b/img/hair/fringe/dreadlocks/feet.png
index 98e93012771b16b280d2ecbbcd8cc56b474381fd..a2bc73ba40e4d20c6ee691dcf39905b1a62cd41c 100644
Binary files a/img/hair/fringe/dreadlocks/feet.png and b/img/hair/fringe/dreadlocks/feet.png differ
diff --git a/img/hair/fringe/dreadlocks/navel.png b/img/hair/fringe/dreadlocks/navel.png
index 98e93012771b16b280d2ecbbcd8cc56b474381fd..a2bc73ba40e4d20c6ee691dcf39905b1a62cd41c 100644
Binary files a/img/hair/fringe/dreadlocks/navel.png and b/img/hair/fringe/dreadlocks/navel.png differ
diff --git a/img/hair/fringe/dreadlocks/short.png b/img/hair/fringe/dreadlocks/short.png
index 98e93012771b16b280d2ecbbcd8cc56b474381fd..a2bc73ba40e4d20c6ee691dcf39905b1a62cd41c 100644
Binary files a/img/hair/fringe/dreadlocks/short.png and b/img/hair/fringe/dreadlocks/short.png differ
diff --git a/img/hair/fringe/dreadlocks/shoulder.png b/img/hair/fringe/dreadlocks/shoulder.png
index 98e93012771b16b280d2ecbbcd8cc56b474381fd..a2bc73ba40e4d20c6ee691dcf39905b1a62cd41c 100644
Binary files a/img/hair/fringe/dreadlocks/shoulder.png and b/img/hair/fringe/dreadlocks/shoulder.png differ
diff --git a/img/hair/fringe/dreadlocks/thighs.png b/img/hair/fringe/dreadlocks/thighs.png
index 98e93012771b16b280d2ecbbcd8cc56b474381fd..a2bc73ba40e4d20c6ee691dcf39905b1a62cd41c 100644
Binary files a/img/hair/fringe/dreadlocks/thighs.png and b/img/hair/fringe/dreadlocks/thighs.png differ
diff --git a/img/hair/fringe/drill ringlets/chest.png b/img/hair/fringe/drill ringlets/chest.png
index 1849865abf2669638287dec4745e2a32ed70d6e7..aedf6f984890ae6913c05c45a0322c71ea5d03c9 100644
Binary files a/img/hair/fringe/drill ringlets/chest.png and b/img/hair/fringe/drill ringlets/chest.png differ
diff --git a/img/hair/fringe/drill ringlets/feet.png b/img/hair/fringe/drill ringlets/feet.png
index 4f1e0d968850a930e0ae826b39bdb93d9509b107..16ce1fa1a38dd5ec60b92a6da9ba68fa8cb2d84c 100644
Binary files a/img/hair/fringe/drill ringlets/feet.png and b/img/hair/fringe/drill ringlets/feet.png differ
diff --git a/img/hair/fringe/drill ringlets/navel.png b/img/hair/fringe/drill ringlets/navel.png
index 80a0ed91ea1df86a4025341e858ebbb6a12ae47c..b4b639d5652d845b61f6690c6044666b5979938c 100644
Binary files a/img/hair/fringe/drill ringlets/navel.png and b/img/hair/fringe/drill ringlets/navel.png differ
diff --git a/img/hair/fringe/drill ringlets/short.png b/img/hair/fringe/drill ringlets/short.png
index bf776ac14bd070bbcaefe2d8f886c7be906e8297..0a5e6843256aafd3a03dae6d7ac3f02db3ecc816 100644
Binary files a/img/hair/fringe/drill ringlets/short.png and b/img/hair/fringe/drill ringlets/short.png differ
diff --git a/img/hair/fringe/drill ringlets/shoulder.png b/img/hair/fringe/drill ringlets/shoulder.png
index a45aa170f96411d7e3bda5de503d6a4319d6eb7e..961741d8d069a1260090c34a8a0bd65bcabd9f3e 100644
Binary files a/img/hair/fringe/drill ringlets/shoulder.png and b/img/hair/fringe/drill ringlets/shoulder.png differ
diff --git a/img/hair/fringe/drill ringlets/thighs.png b/img/hair/fringe/drill ringlets/thighs.png
index 4c8b91c619493bbee48ed5a872dea66e953407a6..82402a985c30a26ad817f7fe7e709040315965cc 100644
Binary files a/img/hair/fringe/drill ringlets/thighs.png and b/img/hair/fringe/drill ringlets/thighs.png differ
diff --git a/img/hair/fringe/emo left/chest.png b/img/hair/fringe/emo left/chest.png
index 7f6634e056434026c0746453b3b37b79a0bffed9..a4e915f78da811610a35e35642405585a6a7af80 100644
Binary files a/img/hair/fringe/emo left/chest.png and b/img/hair/fringe/emo left/chest.png differ
diff --git a/img/hair/fringe/emo left/feet.png b/img/hair/fringe/emo left/feet.png
index 7f6634e056434026c0746453b3b37b79a0bffed9..a4e915f78da811610a35e35642405585a6a7af80 100644
Binary files a/img/hair/fringe/emo left/feet.png and b/img/hair/fringe/emo left/feet.png differ
diff --git a/img/hair/fringe/emo left/navel.png b/img/hair/fringe/emo left/navel.png
index 7f6634e056434026c0746453b3b37b79a0bffed9..a4e915f78da811610a35e35642405585a6a7af80 100644
Binary files a/img/hair/fringe/emo left/navel.png and b/img/hair/fringe/emo left/navel.png differ
diff --git a/img/hair/fringe/emo left/short.png b/img/hair/fringe/emo left/short.png
index 7f6634e056434026c0746453b3b37b79a0bffed9..a4e915f78da811610a35e35642405585a6a7af80 100644
Binary files a/img/hair/fringe/emo left/short.png and b/img/hair/fringe/emo left/short.png differ
diff --git a/img/hair/fringe/emo left/shoulder.png b/img/hair/fringe/emo left/shoulder.png
index 7f6634e056434026c0746453b3b37b79a0bffed9..a4e915f78da811610a35e35642405585a6a7af80 100644
Binary files a/img/hair/fringe/emo left/shoulder.png and b/img/hair/fringe/emo left/shoulder.png differ
diff --git a/img/hair/fringe/emo left/thighs.png b/img/hair/fringe/emo left/thighs.png
index 7f6634e056434026c0746453b3b37b79a0bffed9..a4e915f78da811610a35e35642405585a6a7af80 100644
Binary files a/img/hair/fringe/emo left/thighs.png and b/img/hair/fringe/emo left/thighs.png differ
diff --git a/img/hair/fringe/emo right/chest.png b/img/hair/fringe/emo right/chest.png
index e57d2b92024a3c42136e08f46fc21353bb4dec5a..27dc7fddbc9d2991a2f3ca65c9b9d71eb64b67be 100644
Binary files a/img/hair/fringe/emo right/chest.png and b/img/hair/fringe/emo right/chest.png differ
diff --git a/img/hair/fringe/emo right/feet.png b/img/hair/fringe/emo right/feet.png
index e57d2b92024a3c42136e08f46fc21353bb4dec5a..27dc7fddbc9d2991a2f3ca65c9b9d71eb64b67be 100644
Binary files a/img/hair/fringe/emo right/feet.png and b/img/hair/fringe/emo right/feet.png differ
diff --git a/img/hair/fringe/emo right/navel.png b/img/hair/fringe/emo right/navel.png
index e57d2b92024a3c42136e08f46fc21353bb4dec5a..27dc7fddbc9d2991a2f3ca65c9b9d71eb64b67be 100644
Binary files a/img/hair/fringe/emo right/navel.png and b/img/hair/fringe/emo right/navel.png differ
diff --git a/img/hair/fringe/emo right/short.png b/img/hair/fringe/emo right/short.png
index e57d2b92024a3c42136e08f46fc21353bb4dec5a..27dc7fddbc9d2991a2f3ca65c9b9d71eb64b67be 100644
Binary files a/img/hair/fringe/emo right/short.png and b/img/hair/fringe/emo right/short.png differ
diff --git a/img/hair/fringe/emo right/shoulder.png b/img/hair/fringe/emo right/shoulder.png
index e57d2b92024a3c42136e08f46fc21353bb4dec5a..27dc7fddbc9d2991a2f3ca65c9b9d71eb64b67be 100644
Binary files a/img/hair/fringe/emo right/shoulder.png and b/img/hair/fringe/emo right/shoulder.png differ
diff --git a/img/hair/fringe/emo right/thighs.png b/img/hair/fringe/emo right/thighs.png
index e57d2b92024a3c42136e08f46fc21353bb4dec5a..27dc7fddbc9d2991a2f3ca65c9b9d71eb64b67be 100644
Binary files a/img/hair/fringe/emo right/thighs.png and b/img/hair/fringe/emo right/thighs.png differ
diff --git a/img/hair/fringe/emo/chest.png b/img/hair/fringe/emo/chest.png
index 21336b84cc0bb7c6b3e686da05249e7b261f0036..7ee045e933a88e46cffe47e4a7f163b8e7109dc4 100644
Binary files a/img/hair/fringe/emo/chest.png and b/img/hair/fringe/emo/chest.png differ
diff --git a/img/hair/fringe/emo/feet.png b/img/hair/fringe/emo/feet.png
index 21336b84cc0bb7c6b3e686da05249e7b261f0036..7ee045e933a88e46cffe47e4a7f163b8e7109dc4 100644
Binary files a/img/hair/fringe/emo/feet.png and b/img/hair/fringe/emo/feet.png differ
diff --git a/img/hair/fringe/emo/navel.png b/img/hair/fringe/emo/navel.png
index 21336b84cc0bb7c6b3e686da05249e7b261f0036..7ee045e933a88e46cffe47e4a7f163b8e7109dc4 100644
Binary files a/img/hair/fringe/emo/navel.png and b/img/hair/fringe/emo/navel.png differ
diff --git a/img/hair/fringe/emo/short.png b/img/hair/fringe/emo/short.png
index 21336b84cc0bb7c6b3e686da05249e7b261f0036..7ee045e933a88e46cffe47e4a7f163b8e7109dc4 100644
Binary files a/img/hair/fringe/emo/short.png and b/img/hair/fringe/emo/short.png differ
diff --git a/img/hair/fringe/emo/shoulder.png b/img/hair/fringe/emo/shoulder.png
index 21336b84cc0bb7c6b3e686da05249e7b261f0036..7ee045e933a88e46cffe47e4a7f163b8e7109dc4 100644
Binary files a/img/hair/fringe/emo/shoulder.png and b/img/hair/fringe/emo/shoulder.png differ
diff --git a/img/hair/fringe/emo/thighs.png b/img/hair/fringe/emo/thighs.png
index 21336b84cc0bb7c6b3e686da05249e7b261f0036..7ee045e933a88e46cffe47e4a7f163b8e7109dc4 100644
Binary files a/img/hair/fringe/emo/thighs.png and b/img/hair/fringe/emo/thighs.png differ
diff --git a/img/hair/fringe/flat/chest.png b/img/hair/fringe/flat/chest.png
index b3488ff5330a493a05d7e9e7eb247a7d694fbcc2..61b1812c587aa55dc062f34686e997759be40d3c 100644
Binary files a/img/hair/fringe/flat/chest.png and b/img/hair/fringe/flat/chest.png differ
diff --git a/img/hair/fringe/flat/feet.png b/img/hair/fringe/flat/feet.png
index d6264616679dd23813c194f242116813d2af7935..318c9f03a52c490a1c3452957a4e913160ff22d0 100644
Binary files a/img/hair/fringe/flat/feet.png and b/img/hair/fringe/flat/feet.png differ
diff --git a/img/hair/fringe/flat/navel.png b/img/hair/fringe/flat/navel.png
index 98a0b04d6af45df7b6765bb4b583bc0e60517374..36a696c346813b58e20e1bf66f3c7db03266a2a7 100644
Binary files a/img/hair/fringe/flat/navel.png and b/img/hair/fringe/flat/navel.png differ
diff --git a/img/hair/fringe/flat/short.png b/img/hair/fringe/flat/short.png
index f2b8a1935aad83a2593e10d11d3d0ed8c6b123e3..f68b1c9d8f88654ae3852ff3f81a6b87ae0fd88a 100644
Binary files a/img/hair/fringe/flat/short.png and b/img/hair/fringe/flat/short.png differ
diff --git a/img/hair/fringe/flat/shoulder.png b/img/hair/fringe/flat/shoulder.png
index 3750ca754745c8eda7b05cb870d9f8e8ac166fa1..6726aac9d3b0845e5fe82e66324da616a26aa37a 100644
Binary files a/img/hair/fringe/flat/shoulder.png and b/img/hair/fringe/flat/shoulder.png differ
diff --git a/img/hair/fringe/flat/thighs.png b/img/hair/fringe/flat/thighs.png
index 44862dea2ae5f7b0cc6af30f4921b4f9b3fca40a..1d5ebda61c1e1b35ce29573c42e6c69366c50add 100644
Binary files a/img/hair/fringe/flat/thighs.png and b/img/hair/fringe/flat/thighs.png differ
diff --git a/img/hair/fringe/framed/chest.png b/img/hair/fringe/framed/chest.png
index 4b704908dcaa465e87c42f12f2c40ffc124e21ab..5ab8d6b8ffdb3d8efcc5c5aa8a28d96dc5ebb72a 100644
Binary files a/img/hair/fringe/framed/chest.png and b/img/hair/fringe/framed/chest.png differ
diff --git a/img/hair/fringe/framed/feet.png b/img/hair/fringe/framed/feet.png
index 5f6314eeb86f236686562a83e68cb7163da983bb..e86c8429d9c8c11ae0c43656cf3055a377e046b0 100644
Binary files a/img/hair/fringe/framed/feet.png and b/img/hair/fringe/framed/feet.png differ
diff --git a/img/hair/fringe/framed/navel.png b/img/hair/fringe/framed/navel.png
index e9faac685e106412fdbfbf92a08c61aa8a6fa243..c4cc2716f6a587f8fba022270958701bc0cccc48 100644
Binary files a/img/hair/fringe/framed/navel.png and b/img/hair/fringe/framed/navel.png differ
diff --git a/img/hair/fringe/framed/short.png b/img/hair/fringe/framed/short.png
index 315ff3b776e482046e2cbb65c84e433574f633b7..aaa4a81a0558299fbc2f5227c50ee5458f58db07 100644
Binary files a/img/hair/fringe/framed/short.png and b/img/hair/fringe/framed/short.png differ
diff --git a/img/hair/fringe/framed/shoulder.png b/img/hair/fringe/framed/shoulder.png
index 78ff77378e783508cd8a2165f6a88241e424a75e..f85dcc7fb40919a1780b3f9b25234934473a8949 100644
Binary files a/img/hair/fringe/framed/shoulder.png and b/img/hair/fringe/framed/shoulder.png differ
diff --git a/img/hair/fringe/framed/thighs.png b/img/hair/fringe/framed/thighs.png
index 9f495aa83200988b77568a513c5eda538868146f..15a5819544a1f8dcfd5d6a2421585514c8ccd057 100644
Binary files a/img/hair/fringe/framed/thighs.png and b/img/hair/fringe/framed/thighs.png differ
diff --git a/img/hair/fringe/fro/chest.png b/img/hair/fringe/fro/chest.png
index 486f75a77b4f68b56fc311543c7e7e8c0ed3dbd5..ce22f0d09222b7bfb1875f4623bbf5876d5b2fde 100644
Binary files a/img/hair/fringe/fro/chest.png and b/img/hair/fringe/fro/chest.png differ
diff --git a/img/hair/fringe/fro/feet.png b/img/hair/fringe/fro/feet.png
index 1516d8f6415d7b2ca4a37439c38f0d6ce94e9946..3375a1765e213099512d885f520b82a5c0a0d5db 100644
Binary files a/img/hair/fringe/fro/feet.png and b/img/hair/fringe/fro/feet.png differ
diff --git a/img/hair/fringe/fro/mask.png b/img/hair/fringe/fro/mask.png
index 1a98a244f3b31ff54b93c91a50bf25201ff3bfae..1b42513627a554d51d61b3ddbf1462e42fb0b05b 100644
Binary files a/img/hair/fringe/fro/mask.png and b/img/hair/fringe/fro/mask.png differ
diff --git a/img/hair/fringe/fro/navel.png b/img/hair/fringe/fro/navel.png
index 657d4d2961d14deec9cf56edc649ea964a1e5c86..af93305daf16206caaff29b24f5e0e85054df1f1 100644
Binary files a/img/hair/fringe/fro/navel.png and b/img/hair/fringe/fro/navel.png differ
diff --git a/img/hair/fringe/fro/short.png b/img/hair/fringe/fro/short.png
index 10475797dd4683d24b573958a3176185b5b4ac4a..8f733f70c1a62e844427150bc888c6c77cfae176 100644
Binary files a/img/hair/fringe/fro/short.png and b/img/hair/fringe/fro/short.png differ
diff --git a/img/hair/fringe/fro/shoulder.png b/img/hair/fringe/fro/shoulder.png
index 236c98dc2f3f4eedaca7a86942d9e7b4038797bb..04dc2b2b5e1eca2498365992659c49da32dcc7ab 100644
Binary files a/img/hair/fringe/fro/shoulder.png and b/img/hair/fringe/fro/shoulder.png differ
diff --git a/img/hair/fringe/fro/thighs.png b/img/hair/fringe/fro/thighs.png
index f979217dcff153ea22c445d5b2c810ddef0335a2..0509c8503df3f82e90df9b4ae35b7ec14ef16ac1 100644
Binary files a/img/hair/fringe/fro/thighs.png and b/img/hair/fringe/fro/thighs.png differ
diff --git a/img/hair/fringe/front braids/chest.png b/img/hair/fringe/front braids/chest.png
index 3cb7affdf346bb78a03c061fca789484244a7987..8db2ea8a229ef85b8a28e20924a48bfd6d39e837 100644
Binary files a/img/hair/fringe/front braids/chest.png and b/img/hair/fringe/front braids/chest.png differ
diff --git a/img/hair/fringe/front braids/feet.png b/img/hair/fringe/front braids/feet.png
index 1a855a54c82d65bccd9b26f2681c287c8dc58705..c61182acb685b241ebdb710a35bfafde5cdf3629 100644
Binary files a/img/hair/fringe/front braids/feet.png and b/img/hair/fringe/front braids/feet.png differ
diff --git a/img/hair/fringe/front braids/navel.png b/img/hair/fringe/front braids/navel.png
index f3fe1ef1ebcea9ee300e84a9ecde54ecb62f4542..f648526458a87e79081c11436dde4234dea5ac94 100644
Binary files a/img/hair/fringe/front braids/navel.png and b/img/hair/fringe/front braids/navel.png differ
diff --git a/img/hair/fringe/front braids/short.png b/img/hair/fringe/front braids/short.png
index bd0a5c1928dd0bfb2c6a1ea831b7a9c463170cb7..b7ad9ba37c4b2b15d523042f9a5cd02edf234fdd 100644
Binary files a/img/hair/fringe/front braids/short.png and b/img/hair/fringe/front braids/short.png differ
diff --git a/img/hair/fringe/front braids/shoulder.png b/img/hair/fringe/front braids/shoulder.png
index 04cb0538a662a93ded961de9227ebd7e5d85f529..4023cddbbfc8ae89819294c44149cbd18906a049 100644
Binary files a/img/hair/fringe/front braids/shoulder.png and b/img/hair/fringe/front braids/shoulder.png differ
diff --git a/img/hair/fringe/front braids/thighs.png b/img/hair/fringe/front braids/thighs.png
index e763f789d8306e951c52a758aad3935abfeadd94..ad3e9ece21d96cb661f09ac5edcc1e7fae3ac722 100644
Binary files a/img/hair/fringe/front braids/thighs.png and b/img/hair/fringe/front braids/thighs.png differ
diff --git a/img/hair/fringe/hime/chest.png b/img/hair/fringe/hime/chest.png
index d071f3c123761afc2356bec2b1310dbc6af163ef..7d40a24e255852d80679d4e3deee547262a2b779 100644
Binary files a/img/hair/fringe/hime/chest.png and b/img/hair/fringe/hime/chest.png differ
diff --git a/img/hair/fringe/hime/feet.png b/img/hair/fringe/hime/feet.png
index 2c3f047c623255993c6daa10b7bc8933446c065d..6738d19f208ba86c87fbeb042c408c8469bff42d 100644
Binary files a/img/hair/fringe/hime/feet.png and b/img/hair/fringe/hime/feet.png differ
diff --git a/img/hair/fringe/hime/navel.png b/img/hair/fringe/hime/navel.png
index 252854b734589da79d7e1636e1a1224ae3fb7ac4..fd9f535885f27cc6b42aee4d68e3ae7f998a30c0 100644
Binary files a/img/hair/fringe/hime/navel.png and b/img/hair/fringe/hime/navel.png differ
diff --git a/img/hair/fringe/hime/short.png b/img/hair/fringe/hime/short.png
index 7927b3071624df07cf529ae8600f792d499d1bc2..d83244b7b3296891962896c9da9e3496ca85e378 100644
Binary files a/img/hair/fringe/hime/short.png and b/img/hair/fringe/hime/short.png differ
diff --git a/img/hair/fringe/hime/shoulder.png b/img/hair/fringe/hime/shoulder.png
index c1680ea05391979074e68970473d9339f9078f07..772d837b5cb660d2d58c8094f497bc4b1056e931 100644
Binary files a/img/hair/fringe/hime/shoulder.png and b/img/hair/fringe/hime/shoulder.png differ
diff --git a/img/hair/fringe/hime/thighs.png b/img/hair/fringe/hime/thighs.png
index 4b767987130fd517447aae6a69f0165817cc5613..8c4e4c45666d46ce908f9c9fe00adcef944ccdba 100644
Binary files a/img/hair/fringe/hime/thighs.png and b/img/hair/fringe/hime/thighs.png differ
diff --git a/img/hair/fringe/loose/chest.png b/img/hair/fringe/loose/chest.png
index fbd631b260f5ad4a08cecada9cac5ce80c270d8b..9ccf8ff3c00bd92589603306ad84547d417f52f8 100644
Binary files a/img/hair/fringe/loose/chest.png and b/img/hair/fringe/loose/chest.png differ
diff --git a/img/hair/fringe/loose/feet.png b/img/hair/fringe/loose/feet.png
index ffa1e27915630c7aa11ae6cae95c938f1dd6ad69..714aba8ec0a7fd38fe0240cf1260b1b168a7137f 100644
Binary files a/img/hair/fringe/loose/feet.png and b/img/hair/fringe/loose/feet.png differ
diff --git a/img/hair/fringe/loose/navel.png b/img/hair/fringe/loose/navel.png
index ad4556338d4d49f5648dc7527516e07147d7847f..2f782bd6bee860cef60d2be379abd733e4559654 100644
Binary files a/img/hair/fringe/loose/navel.png and b/img/hair/fringe/loose/navel.png differ
diff --git a/img/hair/fringe/loose/short.png b/img/hair/fringe/loose/short.png
index 7f4c56b0eaf02a6413d4f76e69673357efef1852..822a631346e1ddfd02b411280698f73b51cb7c22 100644
Binary files a/img/hair/fringe/loose/short.png and b/img/hair/fringe/loose/short.png differ
diff --git a/img/hair/fringe/loose/shoulder.png b/img/hair/fringe/loose/shoulder.png
index 2c70b8355dcc49aed38191ea08f53932c9d9b8a9..2dc2c0abdb987a9b809f56a1723403a7b8f1b1ee 100644
Binary files a/img/hair/fringe/loose/shoulder.png and b/img/hair/fringe/loose/shoulder.png differ
diff --git a/img/hair/fringe/loose/thighs.png b/img/hair/fringe/loose/thighs.png
index 8e7da207442d555c03831a79bb3b495edc1965ab..eb658ef5e06360e3cc1b70b40a1e441b262368a6 100644
Binary files a/img/hair/fringe/loose/thighs.png and b/img/hair/fringe/loose/thighs.png differ
diff --git a/img/hair/fringe/messy curls/chest.png b/img/hair/fringe/messy curls/chest.png
index 038ee88b076e7ee798c4ca745754fa83468e5bb3..b4419dadc47fbd1fcba3eb4581ebaa91cfaf02e6 100644
Binary files a/img/hair/fringe/messy curls/chest.png and b/img/hair/fringe/messy curls/chest.png differ
diff --git a/img/hair/fringe/messy curls/feet.png b/img/hair/fringe/messy curls/feet.png
index 038ee88b076e7ee798c4ca745754fa83468e5bb3..b4419dadc47fbd1fcba3eb4581ebaa91cfaf02e6 100644
Binary files a/img/hair/fringe/messy curls/feet.png and b/img/hair/fringe/messy curls/feet.png differ
diff --git a/img/hair/fringe/messy curls/navel.png b/img/hair/fringe/messy curls/navel.png
index 038ee88b076e7ee798c4ca745754fa83468e5bb3..b4419dadc47fbd1fcba3eb4581ebaa91cfaf02e6 100644
Binary files a/img/hair/fringe/messy curls/navel.png and b/img/hair/fringe/messy curls/navel.png differ
diff --git a/img/hair/fringe/messy curls/short.png b/img/hair/fringe/messy curls/short.png
index 038ee88b076e7ee798c4ca745754fa83468e5bb3..b4419dadc47fbd1fcba3eb4581ebaa91cfaf02e6 100644
Binary files a/img/hair/fringe/messy curls/short.png and b/img/hair/fringe/messy curls/short.png differ
diff --git a/img/hair/fringe/messy curls/shoulder.png b/img/hair/fringe/messy curls/shoulder.png
index 038ee88b076e7ee798c4ca745754fa83468e5bb3..b4419dadc47fbd1fcba3eb4581ebaa91cfaf02e6 100644
Binary files a/img/hair/fringe/messy curls/shoulder.png and b/img/hair/fringe/messy curls/shoulder.png differ
diff --git a/img/hair/fringe/messy curls/thighs.png b/img/hair/fringe/messy curls/thighs.png
index 038ee88b076e7ee798c4ca745754fa83468e5bb3..b4419dadc47fbd1fcba3eb4581ebaa91cfaf02e6 100644
Binary files a/img/hair/fringe/messy curls/thighs.png and b/img/hair/fringe/messy curls/thighs.png differ
diff --git a/img/hair/fringe/messy/chest.png b/img/hair/fringe/messy/chest.png
index 4bc8d55f97b45aa0a2c5776eecbf2d8474e0b647..e727cbe783a614b4a13e51d46122e809dad103dc 100644
Binary files a/img/hair/fringe/messy/chest.png and b/img/hair/fringe/messy/chest.png differ
diff --git a/img/hair/fringe/messy/feet.png b/img/hair/fringe/messy/feet.png
index e06e72111e71df2e4c3a97a3192881c229e7cb31..f45fb74b8d2f9abc694e712b0b5530916a9eadd4 100644
Binary files a/img/hair/fringe/messy/feet.png and b/img/hair/fringe/messy/feet.png differ
diff --git a/img/hair/fringe/messy/navel.png b/img/hair/fringe/messy/navel.png
index ec29d8306beafecb32a0d0c82e051ac91e150682..e6a79e6711fa40d3b0fb81a2bf0147a710ddb680 100644
Binary files a/img/hair/fringe/messy/navel.png and b/img/hair/fringe/messy/navel.png differ
diff --git a/img/hair/fringe/messy/short.png b/img/hair/fringe/messy/short.png
index 63ce9e2ef5027da782f3a7485d53b7454bb467b9..19c0e21c0e6c703a42dd3f3bddb1f2ea7338b930 100644
Binary files a/img/hair/fringe/messy/short.png and b/img/hair/fringe/messy/short.png differ
diff --git a/img/hair/fringe/messy/shoulder.png b/img/hair/fringe/messy/shoulder.png
index 513272a37547f229b03c0adffd3899b2ba4899c7..e8f6b233146e88d54e706673019a10a00a6cd095 100644
Binary files a/img/hair/fringe/messy/shoulder.png and b/img/hair/fringe/messy/shoulder.png differ
diff --git a/img/hair/fringe/messy/thighs.png b/img/hair/fringe/messy/thighs.png
index 9da7737c2f98697dd11e61ac5b469cc288c78abf..97ac06778d26273b9123d1b5032a9d6feff67267 100644
Binary files a/img/hair/fringe/messy/thighs.png and b/img/hair/fringe/messy/thighs.png differ
diff --git a/img/hair/fringe/middlepart/chest.png b/img/hair/fringe/middlepart/chest.png
index 610c726e78454dcad6ab30abdb9d255a999bb3bb..d262bee42a67508fa283446427b5731a605fe695 100644
Binary files a/img/hair/fringe/middlepart/chest.png and b/img/hair/fringe/middlepart/chest.png differ
diff --git a/img/hair/fringe/middlepart/feet.png b/img/hair/fringe/middlepart/feet.png
index d51f6cd0020305ab4e837e899c555810dece206a..4b6b274f8beb1ccd79efb46c0b0657407eae9cbb 100644
Binary files a/img/hair/fringe/middlepart/feet.png and b/img/hair/fringe/middlepart/feet.png differ
diff --git a/img/hair/fringe/middlepart/navel.png b/img/hair/fringe/middlepart/navel.png
index ca677d9555bb8dd49b46b144c938026b46ccf60e..916aa7a6ded6d49dff79447ad09a3771eafa73c6 100644
Binary files a/img/hair/fringe/middlepart/navel.png and b/img/hair/fringe/middlepart/navel.png differ
diff --git a/img/hair/fringe/middlepart/short.png b/img/hair/fringe/middlepart/short.png
index 4648a2be27ba1e0cd38114947c98938b501975b6..b8a4c745e62a12666ad475df9784e27d45e088ee 100644
Binary files a/img/hair/fringe/middlepart/short.png and b/img/hair/fringe/middlepart/short.png differ
diff --git a/img/hair/fringe/middlepart/shoulder.png b/img/hair/fringe/middlepart/shoulder.png
index 9cb84c006f911c9bf8d2455b7ea8cd608296b6d1..10cf6225303739ef40c43949e49376d97549ae4e 100644
Binary files a/img/hair/fringe/middlepart/shoulder.png and b/img/hair/fringe/middlepart/shoulder.png differ
diff --git a/img/hair/fringe/middlepart/thighs.png b/img/hair/fringe/middlepart/thighs.png
index 5af0dbc967f1538fa650efce7e484878847e9d1b..2b66d5347664da91d20c163e67f8b9fd98436312 100644
Binary files a/img/hair/fringe/middlepart/thighs.png and b/img/hair/fringe/middlepart/thighs.png differ
diff --git a/img/hair/fringe/mohawk/chest.png b/img/hair/fringe/mohawk/chest.png
index 90d4d2448cb3a3d69dda69ea7dbc2343daf5c851..3823804d4319f532c7a7d9ec2a0ca381e22b6623 100644
Binary files a/img/hair/fringe/mohawk/chest.png and b/img/hair/fringe/mohawk/chest.png differ
diff --git a/img/hair/fringe/mohawk/feet.png b/img/hair/fringe/mohawk/feet.png
index 036d96c3bdbca460e5f65c991ee710d17e0a3c9d..d3a330e7296862d9bb3cae796b1ed8af5799dc7c 100644
Binary files a/img/hair/fringe/mohawk/feet.png and b/img/hair/fringe/mohawk/feet.png differ
diff --git a/img/hair/fringe/mohawk/navel.png b/img/hair/fringe/mohawk/navel.png
index dc8072b128bc14d6bc91c6499aa3baa1857bcd36..4e50becde6439828725e6b336305bf65f32e410e 100644
Binary files a/img/hair/fringe/mohawk/navel.png and b/img/hair/fringe/mohawk/navel.png differ
diff --git a/img/hair/fringe/mohawk/short.png b/img/hair/fringe/mohawk/short.png
index a7d96b11a47c81eda8e4d797d61565e35741d0b4..62c104ed16f339e4fd1bdff1db90b2f19ac02a0c 100644
Binary files a/img/hair/fringe/mohawk/short.png and b/img/hair/fringe/mohawk/short.png differ
diff --git a/img/hair/fringe/mohawk/shoulder.png b/img/hair/fringe/mohawk/shoulder.png
index 9096a796a82be64b35b3367d84ee0edd10b6a6f1..0da5e6e681d39e03811fa2dae66264b5270b7907 100644
Binary files a/img/hair/fringe/mohawk/shoulder.png and b/img/hair/fringe/mohawk/shoulder.png differ
diff --git a/img/hair/fringe/mohawk/thighs.png b/img/hair/fringe/mohawk/thighs.png
index c3c3860e582d3c7df91f08064d5ed53ec6926831..c029f2add6e6620810adb80eaac21121f3e98e82 100644
Binary files a/img/hair/fringe/mohawk/thighs.png and b/img/hair/fringe/mohawk/thighs.png differ
diff --git a/img/hair/fringe/old_hime/chest.png b/img/hair/fringe/old_hime/chest.png
index 70c7bdb6d530ac609dbccb23fd89105205f9b78f..5971540a5e2da4aeccad417d32cb29d629e4c3c7 100644
Binary files a/img/hair/fringe/old_hime/chest.png and b/img/hair/fringe/old_hime/chest.png differ
diff --git a/img/hair/fringe/old_hime/feet.pdn b/img/hair/fringe/old_hime/feet.pdn
deleted file mode 100644
index 8f6e1c4d1f25a4be424dff820522142471818d08..0000000000000000000000000000000000000000
Binary files a/img/hair/fringe/old_hime/feet.pdn and /dev/null differ
diff --git a/img/hair/fringe/old_hime/feet.png b/img/hair/fringe/old_hime/feet.png
index a81f1a164ad81163ad1af9f493a67e356d82da13..acb949a3e7648a5ca8396564b145722df279b875 100644
Binary files a/img/hair/fringe/old_hime/feet.png and b/img/hair/fringe/old_hime/feet.png differ
diff --git a/img/hair/fringe/old_hime/navel.png b/img/hair/fringe/old_hime/navel.png
index 48f1079293d990aa55707f8d81f912d930e89b9a..623e1388604014f93a0776cc23db92f91a56711e 100644
Binary files a/img/hair/fringe/old_hime/navel.png and b/img/hair/fringe/old_hime/navel.png differ
diff --git a/img/hair/fringe/old_hime/short.png b/img/hair/fringe/old_hime/short.png
index b19d1a26efe0ae63c789bc6d6313a6b088dffe17..b5bcf2fcdba9eabc8f691378e7dd0bc631c32bae 100644
Binary files a/img/hair/fringe/old_hime/short.png and b/img/hair/fringe/old_hime/short.png differ
diff --git a/img/hair/fringe/old_hime/shoulder.png b/img/hair/fringe/old_hime/shoulder.png
index 7f9b3a12e00b8dfacb4a2e9cc20c1a49dcc70c3b..7035ed534d6d327f16b8723c185e2e8c10d4e8ce 100644
Binary files a/img/hair/fringe/old_hime/shoulder.png and b/img/hair/fringe/old_hime/shoulder.png differ
diff --git a/img/hair/fringe/old_hime/thighs.png b/img/hair/fringe/old_hime/thighs.png
index 1516c8e8d1b7153b804001414e1f9bf7b1544604..2d2dc60c54f3ae670bda0c2a93c83f9e1724ad8b 100644
Binary files a/img/hair/fringe/old_hime/thighs.png and b/img/hair/fringe/old_hime/thighs.png differ
diff --git a/img/hair/fringe/overgrown/chest.png b/img/hair/fringe/overgrown/chest.png
index c5f6f8f5805089e6c73131c0036670ede1d641c2..13589fa55963df76f7462e325ae320f3b6d98c8f 100644
Binary files a/img/hair/fringe/overgrown/chest.png and b/img/hair/fringe/overgrown/chest.png differ
diff --git a/img/hair/fringe/overgrown/feet.png b/img/hair/fringe/overgrown/feet.png
index def77e94807197e520881fd29381330b717b6d4a..efb28352a9d61898a3e21a8d1bcb0d6d15aa0847 100644
Binary files a/img/hair/fringe/overgrown/feet.png and b/img/hair/fringe/overgrown/feet.png differ
diff --git a/img/hair/fringe/overgrown/navel.png b/img/hair/fringe/overgrown/navel.png
index f8d78caed7f6b58ea8830002f588c6f5a618bb60..aa5618dffa4c1529b04d578df9986b43b31ed107 100644
Binary files a/img/hair/fringe/overgrown/navel.png and b/img/hair/fringe/overgrown/navel.png differ
diff --git a/img/hair/fringe/overgrown/short.png b/img/hair/fringe/overgrown/short.png
index 69f9611ae648c16ed3ca0cbcfe15774380848328..e6dd43f397fcf4d6956139b4c7c300e07702e871 100644
Binary files a/img/hair/fringe/overgrown/short.png and b/img/hair/fringe/overgrown/short.png differ
diff --git a/img/hair/fringe/overgrown/shoulder.png b/img/hair/fringe/overgrown/shoulder.png
index ab15fcba7b83690281e9905768ee49cfa83c0c99..349904cfbde7eca0be8707efad69684eda1b8ccf 100644
Binary files a/img/hair/fringe/overgrown/shoulder.png and b/img/hair/fringe/overgrown/shoulder.png differ
diff --git a/img/hair/fringe/overgrown/thighs.png b/img/hair/fringe/overgrown/thighs.png
index 79d495b30f41d9bc5f6e6febe1e3eb6ed9f1ab45..efb28352a9d61898a3e21a8d1bcb0d6d15aa0847 100644
Binary files a/img/hair/fringe/overgrown/thighs.png and b/img/hair/fringe/overgrown/thighs.png differ
diff --git a/img/hair/fringe/parted/chest.png b/img/hair/fringe/parted/chest.png
index 53687496d38750c0dd2a8ef09bf22ca19034da39..e5ccf0ea91a0811de50fcee0fcecda1f52f0aa1e 100644
Binary files a/img/hair/fringe/parted/chest.png and b/img/hair/fringe/parted/chest.png differ
diff --git a/img/hair/fringe/parted/feet.png b/img/hair/fringe/parted/feet.png
index 46a7a7335c1105b36f81e480e8e837fd557d82a5..ab905c0b7e8084a77f5954af6284d684f58ccd58 100644
Binary files a/img/hair/fringe/parted/feet.png and b/img/hair/fringe/parted/feet.png differ
diff --git a/img/hair/fringe/parted/navel.png b/img/hair/fringe/parted/navel.png
index 70429a27d049dbe5fb60aad39a46894e5c911b14..6ba222ff08dc0b75fa5e5387722329b79c3680af 100644
Binary files a/img/hair/fringe/parted/navel.png and b/img/hair/fringe/parted/navel.png differ
diff --git a/img/hair/fringe/parted/short.png b/img/hair/fringe/parted/short.png
index 5bb7352038bfd980bef06a3c45ab4c596988c57a..42a87c1c177effa8288eff12e307b5e910cd1153 100644
Binary files a/img/hair/fringe/parted/short.png and b/img/hair/fringe/parted/short.png differ
diff --git a/img/hair/fringe/parted/shoulder.png b/img/hair/fringe/parted/shoulder.png
index a19000a234a361deb586372c5a59d1e68d1a9ed3..e4d3c56074d1e4cc4d725acd9e47e320ea058729 100644
Binary files a/img/hair/fringe/parted/shoulder.png and b/img/hair/fringe/parted/shoulder.png differ
diff --git a/img/hair/fringe/parted/thighs.png b/img/hair/fringe/parted/thighs.png
index 876a326166368b174b20b301b1563d4b3f677d66..3f0cdd174fe3bcfa6220cd69eeb963619761b43e 100644
Binary files a/img/hair/fringe/parted/thighs.png and b/img/hair/fringe/parted/thighs.png differ
diff --git a/img/hair/fringe/quiff/chest.png b/img/hair/fringe/quiff/chest.png
index 83b5c26f902e3e7d5a3f08dde1947d3fea2be47d..222771dc4f969b54c722895d60909a9d94a376ec 100644
Binary files a/img/hair/fringe/quiff/chest.png and b/img/hair/fringe/quiff/chest.png differ
diff --git a/img/hair/fringe/quiff/feet.png b/img/hair/fringe/quiff/feet.png
index bb4f412dec49e4999ac76ff0af43bdacf2a56696..4a99da795ab324366685981987ab7cb62d45e555 100644
Binary files a/img/hair/fringe/quiff/feet.png and b/img/hair/fringe/quiff/feet.png differ
diff --git a/img/hair/fringe/quiff/navel.png b/img/hair/fringe/quiff/navel.png
index b2292645833dcdff4164635aad7b76ff372b03dd..371e5fab13b840926497f0d1b76f69448411278c 100644
Binary files a/img/hair/fringe/quiff/navel.png and b/img/hair/fringe/quiff/navel.png differ
diff --git a/img/hair/fringe/quiff/short.png b/img/hair/fringe/quiff/short.png
index afc5dd704b7bf0ecbba26493711b5979c743fa4f..d767dd5cc2880dba37db44d1cf80f2268324b401 100644
Binary files a/img/hair/fringe/quiff/short.png and b/img/hair/fringe/quiff/short.png differ
diff --git a/img/hair/fringe/quiff/shoulder.png b/img/hair/fringe/quiff/shoulder.png
index 190730390f2e8017198486ad5119597dc529f3ee..46f840a8ae41c7f6b6852bc20c8a537f77944ce6 100644
Binary files a/img/hair/fringe/quiff/shoulder.png and b/img/hair/fringe/quiff/shoulder.png differ
diff --git a/img/hair/fringe/quiff/thighs.png b/img/hair/fringe/quiff/thighs.png
index 53132a11572f384378bb7e288f3f4f1a9dc0e4c9..d3a8e3fd55f60374ac5b1236b4c63d2305f698f0 100644
Binary files a/img/hair/fringe/quiff/thighs.png and b/img/hair/fringe/quiff/thighs.png differ
diff --git a/img/hair/fringe/ringlet curl/chest.png b/img/hair/fringe/ringlet curl/chest.png
index 02ba9b0027b2eb084c841dc5e1997fc0bcc0304e..688d9dc8b13134b53a62de86ecbf10af58800541 100644
Binary files a/img/hair/fringe/ringlet curl/chest.png and b/img/hair/fringe/ringlet curl/chest.png differ
diff --git a/img/hair/fringe/ringlet curl/feet.png b/img/hair/fringe/ringlet curl/feet.png
index e3224eb2a3a3bb9928f75d1e571184103278226d..2af227c62b04cd892e98f577f9b9c6c5f10c664a 100644
Binary files a/img/hair/fringe/ringlet curl/feet.png and b/img/hair/fringe/ringlet curl/feet.png differ
diff --git a/img/hair/fringe/ringlet curl/navel.png b/img/hair/fringe/ringlet curl/navel.png
index 46d45d6f0b3239625abbfddbbf6f5bf7121d12aa..3324d646ecb3b331461410c38e6fc903be224b03 100644
Binary files a/img/hair/fringe/ringlet curl/navel.png and b/img/hair/fringe/ringlet curl/navel.png differ
diff --git a/img/hair/fringe/ringlet curl/short.png b/img/hair/fringe/ringlet curl/short.png
index 1ad027c056d8cb597471d3376c50877a0f53a959..7b47df4fdf315a452611750cbe44ed570fd601e3 100644
Binary files a/img/hair/fringe/ringlet curl/short.png and b/img/hair/fringe/ringlet curl/short.png differ
diff --git a/img/hair/fringe/ringlet curl/shoulder.png b/img/hair/fringe/ringlet curl/shoulder.png
index 0b58966a62f55b1f665615d11eea4ced56a9bf68..ac39b971e5814149dc20009d710952123529117e 100644
Binary files a/img/hair/fringe/ringlet curl/shoulder.png and b/img/hair/fringe/ringlet curl/shoulder.png differ
diff --git a/img/hair/fringe/ringlet curl/thighs.png b/img/hair/fringe/ringlet curl/thighs.png
index c0fc985fe1589c00bc540bfb203a0581e21bdfc5..f6d1432e1b01b9468e124be0b8b0a3b871fd8f87 100644
Binary files a/img/hair/fringe/ringlet curl/thighs.png and b/img/hair/fringe/ringlet curl/thighs.png differ
diff --git a/img/hair/fringe/ringlets/chest.png b/img/hair/fringe/ringlets/chest.png
index 9991dd8e1d190cec7d8abb611b6cbe2dc1cd219a..64ff577429d47b0621bacf157347c235ec4c5d57 100644
Binary files a/img/hair/fringe/ringlets/chest.png and b/img/hair/fringe/ringlets/chest.png differ
diff --git a/img/hair/fringe/ringlets/feet.png b/img/hair/fringe/ringlets/feet.png
index 3c8e4acc73de807c58f1e92a7abce954626df1f6..2dc93408a19f794cb5340037dd03bdaba219246e 100644
Binary files a/img/hair/fringe/ringlets/feet.png and b/img/hair/fringe/ringlets/feet.png differ
diff --git a/img/hair/fringe/ringlets/navel.png b/img/hair/fringe/ringlets/navel.png
index 92d757d83ad921b3c01bf3a1f7220fdb8b6b180c..1af6f0d2553e733be4c7377f07c19b4e30341ec4 100644
Binary files a/img/hair/fringe/ringlets/navel.png and b/img/hair/fringe/ringlets/navel.png differ
diff --git a/img/hair/fringe/ringlets/short.png b/img/hair/fringe/ringlets/short.png
index 58cad56428b5b35843a5b319051299204765792f..421aa5105b2c24c5585d2849ef46e9dd97ef1e40 100644
Binary files a/img/hair/fringe/ringlets/short.png and b/img/hair/fringe/ringlets/short.png differ
diff --git a/img/hair/fringe/ringlets/shoulder.png b/img/hair/fringe/ringlets/shoulder.png
index 017793907182f211678170adb86cf1b3792b995c..224510e5fabb49558ef955c4d2c003d9a20fb4fb 100644
Binary files a/img/hair/fringe/ringlets/shoulder.png and b/img/hair/fringe/ringlets/shoulder.png differ
diff --git a/img/hair/fringe/ringlets/thighs.png b/img/hair/fringe/ringlets/thighs.png
index db45c0ef440301c0ef1b27ee9a4cf5db8bb4fe75..1b1c0d5bffff0b3cf19a85734a0dc0db19b87d65 100644
Binary files a/img/hair/fringe/ringlets/thighs.png and b/img/hair/fringe/ringlets/thighs.png differ
diff --git a/img/hair/fringe/ruffled/chest.png b/img/hair/fringe/ruffled/chest.png
index 5f6a8f96614073bbde8c6edfc9f101cd00d4c6c9..785035a8d86d58bb347ebdff8baac91b7eca2062 100644
Binary files a/img/hair/fringe/ruffled/chest.png and b/img/hair/fringe/ruffled/chest.png differ
diff --git a/img/hair/fringe/ruffled/feet.png b/img/hair/fringe/ruffled/feet.png
index f8dbb14e13e4499d4528b43772d3627adafd1602..144b6e8c6d99ae794b7cb206df411e1f7e8e4009 100644
Binary files a/img/hair/fringe/ruffled/feet.png and b/img/hair/fringe/ruffled/feet.png differ
diff --git a/img/hair/fringe/ruffled/navel.png b/img/hair/fringe/ruffled/navel.png
index 2e0fd5d4b80f8642a5fe4aff5e8ba8e1094d88f4..0b9760250548eaa781d988e6706390052b7fb859 100644
Binary files a/img/hair/fringe/ruffled/navel.png and b/img/hair/fringe/ruffled/navel.png differ
diff --git a/img/hair/fringe/ruffled/short.png b/img/hair/fringe/ruffled/short.png
index fa686ba07fca3c9ac5b81f14f7dffd9ad62a728c..252d9b21a43214b6e371f98c9f2c3876712090d9 100644
Binary files a/img/hair/fringe/ruffled/short.png and b/img/hair/fringe/ruffled/short.png differ
diff --git a/img/hair/fringe/ruffled/shoulder.png b/img/hair/fringe/ruffled/shoulder.png
index 9944e2f9b819b0f6fff4a404bb99b3fcae9005a9..4b4504020dec577fa46ea4b5e36d327a9e572534 100644
Binary files a/img/hair/fringe/ruffled/shoulder.png and b/img/hair/fringe/ruffled/shoulder.png differ
diff --git a/img/hair/fringe/ruffled/thighs.png b/img/hair/fringe/ruffled/thighs.png
index f3b1bd80891efa8da4eef5d4e76920616c70e97d..722c5e0a02b2c41db08bbb195748b615311557d7 100644
Binary files a/img/hair/fringe/ruffled/thighs.png and b/img/hair/fringe/ruffled/thighs.png differ
diff --git a/img/hair/fringe/sectioned/chest.png b/img/hair/fringe/sectioned/chest.png
index c4dddb3f2dcc66ca7a2f70664be3a8c8cf464dcf..e7e1078760783e72a531189075b0791002506625 100644
Binary files a/img/hair/fringe/sectioned/chest.png and b/img/hair/fringe/sectioned/chest.png differ
diff --git a/img/hair/fringe/sectioned/feet.png b/img/hair/fringe/sectioned/feet.png
index a5475f5ba913774137d07f1014449d34207fc146..5d2c252452656fbb7a09ca616b1ad7eb517fe962 100644
Binary files a/img/hair/fringe/sectioned/feet.png and b/img/hair/fringe/sectioned/feet.png differ
diff --git a/img/hair/fringe/sectioned/navel.png b/img/hair/fringe/sectioned/navel.png
index de681da6f06a5cb1947b1a66708a82d79a8e007f..56650f071b3fac1361fd1bb2f770ea5901f0e1f7 100644
Binary files a/img/hair/fringe/sectioned/navel.png and b/img/hair/fringe/sectioned/navel.png differ
diff --git a/img/hair/fringe/sectioned/short.png b/img/hair/fringe/sectioned/short.png
index db6b56a534b298f44df2b40ffa761aef6d745aa2..2428608a42a459de3faabd9c1da717736d0f4a0d 100644
Binary files a/img/hair/fringe/sectioned/short.png and b/img/hair/fringe/sectioned/short.png differ
diff --git a/img/hair/fringe/sectioned/shoulder.png b/img/hair/fringe/sectioned/shoulder.png
index 3c44ab69fa399a01d17e2805afff77c49ce81b51..9aef0e3ab49d1348bfbf99d500bc981ed48360af 100644
Binary files a/img/hair/fringe/sectioned/shoulder.png and b/img/hair/fringe/sectioned/shoulder.png differ
diff --git a/img/hair/fringe/sectioned/thighs.png b/img/hair/fringe/sectioned/thighs.png
index 347cf8a3e5c5ed6604ee600dac6b3213e4fa92bc..51ddb33182c159cfb061b5b8f5f212d578e9b9d0 100644
Binary files a/img/hair/fringe/sectioned/thighs.png and b/img/hair/fringe/sectioned/thighs.png differ
diff --git a/img/hair/fringe/short air vents/chest.png b/img/hair/fringe/short air vents/chest.png
index b2c2ac3188f6959eadf3bb33324fd9554fa581d5..6e76547a593634ba7d62d0142b092317844eeed5 100644
Binary files a/img/hair/fringe/short air vents/chest.png and b/img/hair/fringe/short air vents/chest.png differ
diff --git a/img/hair/fringe/short air vents/feet.png b/img/hair/fringe/short air vents/feet.png
index b2c2ac3188f6959eadf3bb33324fd9554fa581d5..6e76547a593634ba7d62d0142b092317844eeed5 100644
Binary files a/img/hair/fringe/short air vents/feet.png and b/img/hair/fringe/short air vents/feet.png differ
diff --git a/img/hair/fringe/short air vents/navel.png b/img/hair/fringe/short air vents/navel.png
index b2c2ac3188f6959eadf3bb33324fd9554fa581d5..6e76547a593634ba7d62d0142b092317844eeed5 100644
Binary files a/img/hair/fringe/short air vents/navel.png and b/img/hair/fringe/short air vents/navel.png differ
diff --git a/img/hair/fringe/short air vents/short.png b/img/hair/fringe/short air vents/short.png
index b2c2ac3188f6959eadf3bb33324fd9554fa581d5..6e76547a593634ba7d62d0142b092317844eeed5 100644
Binary files a/img/hair/fringe/short air vents/short.png and b/img/hair/fringe/short air vents/short.png differ
diff --git a/img/hair/fringe/short air vents/shoulder.png b/img/hair/fringe/short air vents/shoulder.png
index b2c2ac3188f6959eadf3bb33324fd9554fa581d5..6e76547a593634ba7d62d0142b092317844eeed5 100644
Binary files a/img/hair/fringe/short air vents/shoulder.png and b/img/hair/fringe/short air vents/shoulder.png differ
diff --git a/img/hair/fringe/short air vents/thighs.png b/img/hair/fringe/short air vents/thighs.png
index b2c2ac3188f6959eadf3bb33324fd9554fa581d5..6e76547a593634ba7d62d0142b092317844eeed5 100644
Binary files a/img/hair/fringe/short air vents/thighs.png and b/img/hair/fringe/short air vents/thighs.png differ
diff --git a/img/hair/fringe/side-pinned/chest.png b/img/hair/fringe/side-pinned/chest.png
index 82d27877a5d9ffdd73ed3132cedbe89be1d9b8bf..3bdec6d5dd829d9fbadec7ec1e466713209b3373 100644
Binary files a/img/hair/fringe/side-pinned/chest.png and b/img/hair/fringe/side-pinned/chest.png differ
diff --git a/img/hair/fringe/side-pinned/feet.png b/img/hair/fringe/side-pinned/feet.png
index 5aa17eb3cf77050afca665bfddf47ada58c46113..7c946b26af19e3725156924e695a713454cf2a60 100644
Binary files a/img/hair/fringe/side-pinned/feet.png and b/img/hair/fringe/side-pinned/feet.png differ
diff --git a/img/hair/fringe/side-pinned/navel.png b/img/hair/fringe/side-pinned/navel.png
index 9c637fe762ff510ded8bc8d0239f598c69eaf681..885d18dc87de9700fe00716788bfcf703438a440 100644
Binary files a/img/hair/fringe/side-pinned/navel.png and b/img/hair/fringe/side-pinned/navel.png differ
diff --git a/img/hair/fringe/side-pinned/short.png b/img/hair/fringe/side-pinned/short.png
index 94550f3e71edf56206dbd9c8dd99a08a1705f2de..f9dc1179d14bc2ea96e80627128db6047c3f6274 100644
Binary files a/img/hair/fringe/side-pinned/short.png and b/img/hair/fringe/side-pinned/short.png differ
diff --git a/img/hair/fringe/side-pinned/shoulder.png b/img/hair/fringe/side-pinned/shoulder.png
index 8b60d71d4d4a4bdb153fb00dd6cefbccc99cddf8..38c3afb17d8a146df55d394976078f31e46fc244 100644
Binary files a/img/hair/fringe/side-pinned/shoulder.png and b/img/hair/fringe/side-pinned/shoulder.png differ
diff --git a/img/hair/fringe/side-pinned/thighs.png b/img/hair/fringe/side-pinned/thighs.png
index da4d5c7355ded4466dc3c95670623a7e2edb24f2..c70e8fdf286fd5e30166db1abbf22541d2bb59ac 100644
Binary files a/img/hair/fringe/side-pinned/thighs.png and b/img/hair/fringe/side-pinned/thighs.png differ
diff --git a/img/hair/fringe/sidecut/chest.png b/img/hair/fringe/sidecut/chest.png
index f19ed59719dc03b44a3a077767608e84334461ed..52f74fa5b7970365977c8ba83ec82fe652215f34 100644
Binary files a/img/hair/fringe/sidecut/chest.png and b/img/hair/fringe/sidecut/chest.png differ
diff --git a/img/hair/fringe/sidecut/feet.png b/img/hair/fringe/sidecut/feet.png
index fa20ddef75058a1b88499882cc6a2111fb1115b2..b0112f73cd5aacbf53d06e3e84dd9f953c17cbab 100644
Binary files a/img/hair/fringe/sidecut/feet.png and b/img/hair/fringe/sidecut/feet.png differ
diff --git a/img/hair/fringe/sidecut/navel.png b/img/hair/fringe/sidecut/navel.png
index 94dad26ce51a33cc4087e372dd3f9fe5c1d6e36a..f67c07a35095bf9f4294f8a455060dbf443054e0 100644
Binary files a/img/hair/fringe/sidecut/navel.png and b/img/hair/fringe/sidecut/navel.png differ
diff --git a/img/hair/fringe/sidecut/short.png b/img/hair/fringe/sidecut/short.png
index ff7fb3f598c9fd81404354bf18f36d02bc754cd8..e5ea8136c12150d86f2016edf91d120d469bfb3c 100644
Binary files a/img/hair/fringe/sidecut/short.png and b/img/hair/fringe/sidecut/short.png differ
diff --git a/img/hair/fringe/sidecut/shoulder.png b/img/hair/fringe/sidecut/shoulder.png
index 954aa364759056ea601ea32bcb6f892d79097f15..df63e13c5ce9cda70317c03ab85bd9f70d062f4f 100644
Binary files a/img/hair/fringe/sidecut/shoulder.png and b/img/hair/fringe/sidecut/shoulder.png differ
diff --git a/img/hair/fringe/sidecut/thighs.png b/img/hair/fringe/sidecut/thighs.png
index 0da57b3339742b9c4a412a3b06c6063dd96e98ba..cc47050ab2e10ab2dd85e6d80db9bffea8026b38 100644
Binary files a/img/hair/fringe/sidecut/thighs.png and b/img/hair/fringe/sidecut/thighs.png differ
diff --git a/img/hair/fringe/sideswept braid/chest.png b/img/hair/fringe/sideswept braid/chest.png
index 147edc025a3dd853a12def1c18a07e896726dff1..f9a10f0a839d4e22c967448e0f93ef3e02da1d73 100644
Binary files a/img/hair/fringe/sideswept braid/chest.png and b/img/hair/fringe/sideswept braid/chest.png differ
diff --git a/img/hair/fringe/sideswept braid/feet.png b/img/hair/fringe/sideswept braid/feet.png
index cfac3cf5a2dbafcb76d9952df7c96bb138e1f765..5275db794e31aaf294b9005a9a78ea39da92f256 100644
Binary files a/img/hair/fringe/sideswept braid/feet.png and b/img/hair/fringe/sideswept braid/feet.png differ
diff --git a/img/hair/fringe/sideswept braid/navel.png b/img/hair/fringe/sideswept braid/navel.png
index 2f7c5cf09720d10552309f1ad4b2d16b89ace9b9..c829e42e8fd15ab987462c88c919f02c1fa11d23 100644
Binary files a/img/hair/fringe/sideswept braid/navel.png and b/img/hair/fringe/sideswept braid/navel.png differ
diff --git a/img/hair/fringe/sideswept braid/short.png b/img/hair/fringe/sideswept braid/short.png
index 80ae2523b89b2cb17f9b83b4138c93682b546d99..a360470a97e61d6c76834e55178d233225b0f3e2 100644
Binary files a/img/hair/fringe/sideswept braid/short.png and b/img/hair/fringe/sideswept braid/short.png differ
diff --git a/img/hair/fringe/sideswept braid/shoulder.png b/img/hair/fringe/sideswept braid/shoulder.png
index 6114cbb7c98e4cefab3889a4462036d0c0a23194..da34ea8a76226fd647a189c298943a2a5112f656 100644
Binary files a/img/hair/fringe/sideswept braid/shoulder.png and b/img/hair/fringe/sideswept braid/shoulder.png differ
diff --git a/img/hair/fringe/sideswept braid/thighs.png b/img/hair/fringe/sideswept braid/thighs.png
index ea962440a114cd56bb141e673e84eebe38978c4f..ec17daf891d4ffbe32e9e53a0dee0d61a0b88934 100644
Binary files a/img/hair/fringe/sideswept braid/thighs.png and b/img/hair/fringe/sideswept braid/thighs.png differ
diff --git a/img/hair/fringe/sleek/chest.png b/img/hair/fringe/sleek/chest.png
index c0500071e3a1c438e135a567b4e28b8dac48fc27..ab87f39d2924bd46e05a44aef5c0bc368a8e733b 100644
Binary files a/img/hair/fringe/sleek/chest.png and b/img/hair/fringe/sleek/chest.png differ
diff --git a/img/hair/fringe/sleek/feet.png b/img/hair/fringe/sleek/feet.png
index c0500071e3a1c438e135a567b4e28b8dac48fc27..ab87f39d2924bd46e05a44aef5c0bc368a8e733b 100644
Binary files a/img/hair/fringe/sleek/feet.png and b/img/hair/fringe/sleek/feet.png differ
diff --git a/img/hair/fringe/sleek/navel.png b/img/hair/fringe/sleek/navel.png
index c0500071e3a1c438e135a567b4e28b8dac48fc27..ab87f39d2924bd46e05a44aef5c0bc368a8e733b 100644
Binary files a/img/hair/fringe/sleek/navel.png and b/img/hair/fringe/sleek/navel.png differ
diff --git a/img/hair/fringe/sleek/short.png b/img/hair/fringe/sleek/short.png
index c0500071e3a1c438e135a567b4e28b8dac48fc27..ab87f39d2924bd46e05a44aef5c0bc368a8e733b 100644
Binary files a/img/hair/fringe/sleek/short.png and b/img/hair/fringe/sleek/short.png differ
diff --git a/img/hair/fringe/sleek/shoulder.png b/img/hair/fringe/sleek/shoulder.png
index c0500071e3a1c438e135a567b4e28b8dac48fc27..ab87f39d2924bd46e05a44aef5c0bc368a8e733b 100644
Binary files a/img/hair/fringe/sleek/shoulder.png and b/img/hair/fringe/sleek/shoulder.png differ
diff --git a/img/hair/fringe/sleek/thighs.png b/img/hair/fringe/sleek/thighs.png
index c0500071e3a1c438e135a567b4e28b8dac48fc27..ab87f39d2924bd46e05a44aef5c0bc368a8e733b 100644
Binary files a/img/hair/fringe/sleek/thighs.png and b/img/hair/fringe/sleek/thighs.png differ
diff --git a/img/hair/fringe/split/chest.png b/img/hair/fringe/split/chest.png
index 43f85d2e661f4740fe7104aca66c28705de6e6e3..760ed4467a30d7e7637eec4d32a74e78bc64e76f 100644
Binary files a/img/hair/fringe/split/chest.png and b/img/hair/fringe/split/chest.png differ
diff --git a/img/hair/fringe/split/feet.png b/img/hair/fringe/split/feet.png
index bcbb7056675844c3c0a3cc1e41f3cc1015be630b..153660062fa048e1d5add5bd4369908771a37ec8 100644
Binary files a/img/hair/fringe/split/feet.png and b/img/hair/fringe/split/feet.png differ
diff --git a/img/hair/fringe/split/navel.png b/img/hair/fringe/split/navel.png
index 4f86d470451f4fa50bc32a983e83ae36bfc9ab8a..434446dbe578a0bfcde7a635f430f014e7bd7193 100644
Binary files a/img/hair/fringe/split/navel.png and b/img/hair/fringe/split/navel.png differ
diff --git a/img/hair/fringe/split/short.png b/img/hair/fringe/split/short.png
index 2e8bc447e1f17abbba9a6e974f0ea9465fc8d957..64f7a984c5ae78960baeff6678dda9bca06c91de 100644
Binary files a/img/hair/fringe/split/short.png and b/img/hair/fringe/split/short.png differ
diff --git a/img/hair/fringe/split/shoulder.png b/img/hair/fringe/split/shoulder.png
index a51cba3d4785ece3bd9149b67234176a19cd8436..06bac5e38d28a00c22847aa774bae41bbca0f9f3 100644
Binary files a/img/hair/fringe/split/shoulder.png and b/img/hair/fringe/split/shoulder.png differ
diff --git a/img/hair/fringe/split/thighs.png b/img/hair/fringe/split/thighs.png
index e50b7e9cde3a1edf783b623f8660b94ad062aecd..8232857370df572a39edbc863b2f77ad03b34a62 100644
Binary files a/img/hair/fringe/split/thighs.png and b/img/hair/fringe/split/thighs.png differ
diff --git a/img/hair/fringe/straight curl/chest.png b/img/hair/fringe/straight curl/chest.png
index 28bd35abef1658e15c9312a9ce3383eea47efd24..90cedf45b0b9123f95745cd619b81185427940ba 100644
Binary files a/img/hair/fringe/straight curl/chest.png and b/img/hair/fringe/straight curl/chest.png differ
diff --git a/img/hair/fringe/straight curl/feet.png b/img/hair/fringe/straight curl/feet.png
index f7a62bed8d930b3d11ffb84cd7bdaa655b64fcdc..1f81cf438e27d037bcf00299c8bb7fdd895b03b2 100644
Binary files a/img/hair/fringe/straight curl/feet.png and b/img/hair/fringe/straight curl/feet.png differ
diff --git a/img/hair/fringe/straight curl/navel.png b/img/hair/fringe/straight curl/navel.png
index 7c658e3ad31c6095a881e69c56fe466a235adb2f..b958e91dfe6443c2349d57e2c3087f6487bf0130 100644
Binary files a/img/hair/fringe/straight curl/navel.png and b/img/hair/fringe/straight curl/navel.png differ
diff --git a/img/hair/fringe/straight curl/short.png b/img/hair/fringe/straight curl/short.png
index 0ef92d4b294ced1e104cc36ff46b2cfb99e99ccd..9ccd36c0752f595b87f1ceb87bbefb67aaa706c1 100644
Binary files a/img/hair/fringe/straight curl/short.png and b/img/hair/fringe/straight curl/short.png differ
diff --git a/img/hair/fringe/straight curl/shoulder.png b/img/hair/fringe/straight curl/shoulder.png
index eb5867a6a1540e9e84fc7ef4ec5f089b4865fd24..37d44ea8a73db94cea0540f5373d2b65d165bae1 100644
Binary files a/img/hair/fringe/straight curl/shoulder.png and b/img/hair/fringe/straight curl/shoulder.png differ
diff --git a/img/hair/fringe/straight curl/thighs.png b/img/hair/fringe/straight curl/thighs.png
index 95ea9b1448baa15e91290a3036b6ebfa014971b0..694848671693509852c213b0089108f6c627a43c 100644
Binary files a/img/hair/fringe/straight curl/thighs.png and b/img/hair/fringe/straight curl/thighs.png differ
diff --git a/img/hair/fringe/straight tails/chest.png b/img/hair/fringe/straight tails/chest.png
index 8ad7c41bcee3ad855949c8056ebe7fd83a0289fd..7e4009f88945823a88ce1756865d3c3a9a2f3cd4 100644
Binary files a/img/hair/fringe/straight tails/chest.png and b/img/hair/fringe/straight tails/chest.png differ
diff --git a/img/hair/fringe/straight tails/feet.png b/img/hair/fringe/straight tails/feet.png
index 6ec14193c77dc6300d4d7e2297dc7a59caefa4aa..3af7fb41bb10f83a8ad45803f7705c65807a2810 100644
Binary files a/img/hair/fringe/straight tails/feet.png and b/img/hair/fringe/straight tails/feet.png differ
diff --git a/img/hair/fringe/straight tails/navel.png b/img/hair/fringe/straight tails/navel.png
index 8ed710d5428140829d5429f93c1728bced9e052a..4da2edcf7347475b61fd2f3dcf0efb62bf4531a0 100644
Binary files a/img/hair/fringe/straight tails/navel.png and b/img/hair/fringe/straight tails/navel.png differ
diff --git a/img/hair/fringe/straight tails/short.png b/img/hair/fringe/straight tails/short.png
index bca0bd1a3a117656b252481d81d27c0e25e61064..00c4aaf4f30e032cdc1ea02698552438962dafd7 100644
Binary files a/img/hair/fringe/straight tails/short.png and b/img/hair/fringe/straight tails/short.png differ
diff --git a/img/hair/fringe/straight tails/shoulder.png b/img/hair/fringe/straight tails/shoulder.png
index 7a0703ca418f6c57b88706939f3e31fe5e5131bf..66f50e3e5d5c06c2f636447680280edce888869d 100644
Binary files a/img/hair/fringe/straight tails/shoulder.png and b/img/hair/fringe/straight tails/shoulder.png differ
diff --git a/img/hair/fringe/straight tails/thighs.png b/img/hair/fringe/straight tails/thighs.png
index 8264c257d5bb7fd8b2d2b374aa3624a043b665a1..7ab0d9677414e6a25ab911d430a453684a382852 100644
Binary files a/img/hair/fringe/straight tails/thighs.png and b/img/hair/fringe/straight tails/thighs.png differ
diff --git a/img/hair/fringe/straight/chest.png b/img/hair/fringe/straight/chest.png
index a563ac0b699da3d2549e78933c6a3af1dc65c3ba..8c2d82c710b68ecfbdf6589f9208580d3f332012 100644
Binary files a/img/hair/fringe/straight/chest.png and b/img/hair/fringe/straight/chest.png differ
diff --git a/img/hair/fringe/straight/feet.png b/img/hair/fringe/straight/feet.png
index 2e18244fc6cd0f658aa21aaad0b0764f44185223..febc9079a6896852ef15a2cdf9053ffc66d88140 100644
Binary files a/img/hair/fringe/straight/feet.png and b/img/hair/fringe/straight/feet.png differ
diff --git a/img/hair/fringe/straight/navel.png b/img/hair/fringe/straight/navel.png
index a39a28de5ec9f4571950ce32a11e0b70c5829255..479b0312db8f37acb24c7c9c075058810212c6f7 100644
Binary files a/img/hair/fringe/straight/navel.png and b/img/hair/fringe/straight/navel.png differ
diff --git a/img/hair/fringe/straight/short.png b/img/hair/fringe/straight/short.png
index 77f7d8da2b39be8610495ef368f70cb6a1743be9..92799e9ed41ffd8f27d6c2dff8182de03d93d611 100644
Binary files a/img/hair/fringe/straight/short.png and b/img/hair/fringe/straight/short.png differ
diff --git a/img/hair/fringe/straight/shoulder.png b/img/hair/fringe/straight/shoulder.png
index 863971b9c0cc4b39546aa65eadeb473dac2ed1de..f2fba2ac774df305a5ee2087e7767d4a306ca50c 100644
Binary files a/img/hair/fringe/straight/shoulder.png and b/img/hair/fringe/straight/shoulder.png differ
diff --git a/img/hair/fringe/straight/thighs.png b/img/hair/fringe/straight/thighs.png
index 95054ff1e050bb9ba63abce1398cc56587c0ad31..febc9079a6896852ef15a2cdf9053ffc66d88140 100644
Binary files a/img/hair/fringe/straight/thighs.png and b/img/hair/fringe/straight/thighs.png differ
diff --git a/img/hair/fringe/swept back/chest.png b/img/hair/fringe/swept back/chest.png
index 2cb205c774981bad6794cd0d19e0447e54b8cc4c..ffc9011b16c118d3c28a0e162ee8b8e6ed0cc4b0 100644
Binary files a/img/hair/fringe/swept back/chest.png and b/img/hair/fringe/swept back/chest.png differ
diff --git a/img/hair/fringe/swept back/feet.png b/img/hair/fringe/swept back/feet.png
index 2cb205c774981bad6794cd0d19e0447e54b8cc4c..ffc9011b16c118d3c28a0e162ee8b8e6ed0cc4b0 100644
Binary files a/img/hair/fringe/swept back/feet.png and b/img/hair/fringe/swept back/feet.png differ
diff --git a/img/hair/fringe/swept back/navel.png b/img/hair/fringe/swept back/navel.png
index 2cb205c774981bad6794cd0d19e0447e54b8cc4c..ffc9011b16c118d3c28a0e162ee8b8e6ed0cc4b0 100644
Binary files a/img/hair/fringe/swept back/navel.png and b/img/hair/fringe/swept back/navel.png differ
diff --git a/img/hair/fringe/swept back/short.png b/img/hair/fringe/swept back/short.png
index 5e128003af1be0c7f406ecd5b2f3857628cf8e39..ac41bd1f61bdf212d84a9d6ac043dca58027c15e 100644
Binary files a/img/hair/fringe/swept back/short.png and b/img/hair/fringe/swept back/short.png differ
diff --git a/img/hair/fringe/swept back/shoulder.png b/img/hair/fringe/swept back/shoulder.png
index 2cb205c774981bad6794cd0d19e0447e54b8cc4c..ffc9011b16c118d3c28a0e162ee8b8e6ed0cc4b0 100644
Binary files a/img/hair/fringe/swept back/shoulder.png and b/img/hair/fringe/swept back/shoulder.png differ
diff --git a/img/hair/fringe/swept back/thighs.png b/img/hair/fringe/swept back/thighs.png
index 2cb205c774981bad6794cd0d19e0447e54b8cc4c..ffc9011b16c118d3c28a0e162ee8b8e6ed0cc4b0 100644
Binary files a/img/hair/fringe/swept back/thighs.png and b/img/hair/fringe/swept back/thighs.png differ
diff --git a/img/hair/fringe/swept left/chest.png b/img/hair/fringe/swept left/chest.png
index 46f700069d3076812166b80e81c8e983f621d86e..a03ee11cb6d641bdfe1e68d2d6040facb9d22ec3 100644
Binary files a/img/hair/fringe/swept left/chest.png and b/img/hair/fringe/swept left/chest.png differ
diff --git a/img/hair/fringe/swept left/feet.png b/img/hair/fringe/swept left/feet.png
index b6670058358caa2b81a57436f898d84ceba342f1..cc0853db38ef06ef89a0135fa3a8ee03ae1383b4 100644
Binary files a/img/hair/fringe/swept left/feet.png and b/img/hair/fringe/swept left/feet.png differ
diff --git a/img/hair/fringe/swept left/navel.png b/img/hair/fringe/swept left/navel.png
index e442bb1dea81623799d081698c281642ddd683ff..a52a69a6628e29019e184eee08a961abd0333c50 100644
Binary files a/img/hair/fringe/swept left/navel.png and b/img/hair/fringe/swept left/navel.png differ
diff --git a/img/hair/fringe/swept left/short.png b/img/hair/fringe/swept left/short.png
index 5f91b422795cae140f24705b4f794db357228250..81e2e2049fc2f195cc4a5ec7c9430d7a44a162ee 100644
Binary files a/img/hair/fringe/swept left/short.png and b/img/hair/fringe/swept left/short.png differ
diff --git a/img/hair/fringe/swept left/shoulder.png b/img/hair/fringe/swept left/shoulder.png
index 3b115d4a0346b4aaacdf598a1ad52c0397a296b8..610991ee0af9c553ed90ab0139b4f3593705f430 100644
Binary files a/img/hair/fringe/swept left/shoulder.png and b/img/hair/fringe/swept left/shoulder.png differ
diff --git a/img/hair/fringe/swept left/thighs.png b/img/hair/fringe/swept left/thighs.png
index 7bc9efd753d06c20e673f96c28f409beca6fb52f..7e20747158b713bea6b452990b816aa83d040c19 100644
Binary files a/img/hair/fringe/swept left/thighs.png and b/img/hair/fringe/swept left/thighs.png differ
diff --git a/img/hair/fringe/thin flaps/chest.png b/img/hair/fringe/thin flaps/chest.png
index c64fa0fb124428ed384fb1c7cffbf4f41499bf6b..ebf14a366e98ffdfc69a038477c0bad1ae2fe02f 100644
Binary files a/img/hair/fringe/thin flaps/chest.png and b/img/hair/fringe/thin flaps/chest.png differ
diff --git a/img/hair/fringe/thin flaps/feet.png b/img/hair/fringe/thin flaps/feet.png
index 4b6d63898fe82cc878c02f166dd30f0cf973853a..175c9d429d881e8332431c94787012b18a29d8c2 100644
Binary files a/img/hair/fringe/thin flaps/feet.png and b/img/hair/fringe/thin flaps/feet.png differ
diff --git a/img/hair/fringe/thin flaps/navel.png b/img/hair/fringe/thin flaps/navel.png
index 3f97ef5766aec92b96c7066255570edeb4e831b1..0a9ce8ade1e11f7cb52476219fd06cf494664b24 100644
Binary files a/img/hair/fringe/thin flaps/navel.png and b/img/hair/fringe/thin flaps/navel.png differ
diff --git a/img/hair/fringe/thin flaps/short.png b/img/hair/fringe/thin flaps/short.png
index 4c5f0b5eb6e89eb275c30241a4fbe39d78f069ce..8aa041da93dc25ef47d676f0eb2d92e3a89f1121 100644
Binary files a/img/hair/fringe/thin flaps/short.png and b/img/hair/fringe/thin flaps/short.png differ
diff --git a/img/hair/fringe/thin flaps/shoulder.png b/img/hair/fringe/thin flaps/shoulder.png
index 9fb82bc936651f8a2edda8fb47c4e17ca1d55bd8..32c460d49cd4d41910cab062c01e7caeb026b18a 100644
Binary files a/img/hair/fringe/thin flaps/shoulder.png and b/img/hair/fringe/thin flaps/shoulder.png differ
diff --git a/img/hair/fringe/thin flaps/thighs.png b/img/hair/fringe/thin flaps/thighs.png
index af73ff7f09405816ad03ffd8960beda1b3b0705e..7c8d6c3f426a0c6850415d1cfb5ecf43ec96978d 100644
Binary files a/img/hair/fringe/thin flaps/thighs.png and b/img/hair/fringe/thin flaps/thighs.png differ
diff --git a/img/hair/fringe/tied back/chest.png b/img/hair/fringe/tied back/chest.png
index 725b0436e9faa8a0979fb3f19068bed28f9c0593..592e9deb3314b0da2fd6cda9be4642c81dfb2c72 100644
Binary files a/img/hair/fringe/tied back/chest.png and b/img/hair/fringe/tied back/chest.png differ
diff --git a/img/hair/fringe/tied back/feet.png b/img/hair/fringe/tied back/feet.png
index 725b0436e9faa8a0979fb3f19068bed28f9c0593..592e9deb3314b0da2fd6cda9be4642c81dfb2c72 100644
Binary files a/img/hair/fringe/tied back/feet.png and b/img/hair/fringe/tied back/feet.png differ
diff --git a/img/hair/fringe/tied back/navel.png b/img/hair/fringe/tied back/navel.png
index 725b0436e9faa8a0979fb3f19068bed28f9c0593..592e9deb3314b0da2fd6cda9be4642c81dfb2c72 100644
Binary files a/img/hair/fringe/tied back/navel.png and b/img/hair/fringe/tied back/navel.png differ
diff --git a/img/hair/fringe/tied back/short.png b/img/hair/fringe/tied back/short.png
index 790459a63fdc16539936f411e71500e929e1168e..110bde8ae528796dd6c9be5a94ad8267f879af01 100644
Binary files a/img/hair/fringe/tied back/short.png and b/img/hair/fringe/tied back/short.png differ
diff --git a/img/hair/fringe/tied back/shoulder.png b/img/hair/fringe/tied back/shoulder.png
index 725b0436e9faa8a0979fb3f19068bed28f9c0593..592e9deb3314b0da2fd6cda9be4642c81dfb2c72 100644
Binary files a/img/hair/fringe/tied back/shoulder.png and b/img/hair/fringe/tied back/shoulder.png differ
diff --git a/img/hair/fringe/tied back/thighs.png b/img/hair/fringe/tied back/thighs.png
index 725b0436e9faa8a0979fb3f19068bed28f9c0593..592e9deb3314b0da2fd6cda9be4642c81dfb2c72 100644
Binary files a/img/hair/fringe/tied back/thighs.png and b/img/hair/fringe/tied back/thighs.png differ
diff --git a/img/hair/fringe/trident/chest.png b/img/hair/fringe/trident/chest.png
index b93c433b497e694db9e55ab35ae90efdfd663b75..84ddeeb21973f6ac8e0b20e9c5e610a0e05ddcb7 100644
Binary files a/img/hair/fringe/trident/chest.png and b/img/hair/fringe/trident/chest.png differ
diff --git a/img/hair/fringe/trident/feet.png b/img/hair/fringe/trident/feet.png
index 2324aae7ce3ca816e065306b600500035bc1fad7..9649fc5b4e10b7b8ed5087adae86fbec52a2d509 100644
Binary files a/img/hair/fringe/trident/feet.png and b/img/hair/fringe/trident/feet.png differ
diff --git a/img/hair/fringe/trident/navel.png b/img/hair/fringe/trident/navel.png
index 11e059c6f96ae8d7353dca6d8a36f7183853e227..f86652c24aea11e74fca0ea91c9b4471cc68916a 100644
Binary files a/img/hair/fringe/trident/navel.png and b/img/hair/fringe/trident/navel.png differ
diff --git a/img/hair/fringe/trident/short.png b/img/hair/fringe/trident/short.png
index 87c16bf3e5489b76ed02988cdb8657b88ea5728c..7ed9099465676f290bbbc22b20fb9e22ab1e5e7f 100644
Binary files a/img/hair/fringe/trident/short.png and b/img/hair/fringe/trident/short.png differ
diff --git a/img/hair/fringe/trident/shoulder.png b/img/hair/fringe/trident/shoulder.png
index e4944ebb6c9a4c7d2cf12788f803ee1e495f458c..0e3d3d9a6c195ca929516b99d9c8e120bf61b7e8 100644
Binary files a/img/hair/fringe/trident/shoulder.png and b/img/hair/fringe/trident/shoulder.png differ
diff --git a/img/hair/fringe/trident/thighs.png b/img/hair/fringe/trident/thighs.png
index 32889611c8d31de4d2839770950f0641d55317d1..bfb89f0392c26d32ff6046eef452c260509e4776 100644
Binary files a/img/hair/fringe/trident/thighs.png and b/img/hair/fringe/trident/thighs.png differ
diff --git a/img/hair/fringe/wide flaps/chest.png b/img/hair/fringe/wide flaps/chest.png
index c83c371ef64e273d6db76a6a3bee4529eba087e0..bffeb192929bf2515630a09bd606622eb966e932 100644
Binary files a/img/hair/fringe/wide flaps/chest.png and b/img/hair/fringe/wide flaps/chest.png differ
diff --git a/img/hair/fringe/wide flaps/feet.png b/img/hair/fringe/wide flaps/feet.png
index 34bfee041ee1a2ce5fabc3b74793edc048a904b9..bd9a1e2b2122d235c5f60d1689590ec96e09330c 100644
Binary files a/img/hair/fringe/wide flaps/feet.png and b/img/hair/fringe/wide flaps/feet.png differ
diff --git a/img/hair/fringe/wide flaps/navel.png b/img/hair/fringe/wide flaps/navel.png
index b789e1f30e71c9acb48e0e43cb8664155bc273fa..300b445501a6b43314ba0211d5bd47af521766e9 100644
Binary files a/img/hair/fringe/wide flaps/navel.png and b/img/hair/fringe/wide flaps/navel.png differ
diff --git a/img/hair/fringe/wide flaps/short.png b/img/hair/fringe/wide flaps/short.png
index 0842b7daa6af36e8b98bcdd5aad7c55e64eda2d1..8fed8700b0114356ac05f6e359e4615bc345d65a 100644
Binary files a/img/hair/fringe/wide flaps/short.png and b/img/hair/fringe/wide flaps/short.png differ
diff --git a/img/hair/fringe/wide flaps/shoulder.png b/img/hair/fringe/wide flaps/shoulder.png
index 39ddfd2e600424c470a0a0bb884a715ca40c6a95..3cb9ac194b641762ff82ae4efaf623be384032fe 100644
Binary files a/img/hair/fringe/wide flaps/shoulder.png and b/img/hair/fringe/wide flaps/shoulder.png differ
diff --git a/img/hair/fringe/wide flaps/thighs.png b/img/hair/fringe/wide flaps/thighs.png
index 6653d3769786717273b03b4b7e39fee4b0008ccc..b31373f69a53fa69f0d24729bb9e1f5c37811820 100644
Binary files a/img/hair/fringe/wide flaps/thighs.png and b/img/hair/fringe/wide flaps/thighs.png differ
diff --git a/img/hair/hair/straight/chest.png b/img/hair/hair/straight/chest.png
index 3ae736e1da912ba6099da18134f50c832ea16f3c..a1e8816b69c6725666364afdaaa1eace261ce7d0 100644
Binary files a/img/hair/hair/straight/chest.png and b/img/hair/hair/straight/chest.png differ
diff --git a/img/hair/hair/straight/feet.png b/img/hair/hair/straight/feet.png
index 409a55b7883db0d5eb220c5cc9f0286e6b7307fa..88c520dca048b61c564debcb3340f770638a586a 100644
Binary files a/img/hair/hair/straight/feet.png and b/img/hair/hair/straight/feet.png differ
diff --git a/img/hair/hair/straight/navel.png b/img/hair/hair/straight/navel.png
index 548931e4199dd588c99ed80774a81341b972484f..559e6842e13f9e00e0a2022c046b43ccb17fa8da 100644
Binary files a/img/hair/hair/straight/navel.png and b/img/hair/hair/straight/navel.png differ
diff --git a/img/hair/hair/straight/short.png b/img/hair/hair/straight/short.png
index 468d35c8d55b1d0150650d39edd7493561d6eeae..e2440e2cb8f1a186fcee4290ba6df552aad472c8 100644
Binary files a/img/hair/hair/straight/short.png and b/img/hair/hair/straight/short.png differ
diff --git a/img/hair/hair/straight/shoulder.png b/img/hair/hair/straight/shoulder.png
index 832f864c5c9756475c54398362e73a007f3cd22c..6490ac7ee05d036d9925df4186ae7cb8ca1359c8 100644
Binary files a/img/hair/hair/straight/shoulder.png and b/img/hair/hair/straight/shoulder.png differ
diff --git a/img/hair/lashesmakeupblack.png b/img/hair/lashesmakeupblack.png
index 0a8f35447d950696b4c1d5a0628f2bd56bdd8ee4..b2210b16a695e32e8e62e167a6aa56f74de5d281 100644
Binary files a/img/hair/lashesmakeupblack.png and b/img/hair/lashesmakeupblack.png differ
diff --git a/img/hair/phair/balls/-1_pb3.png b/img/hair/phair/balls/-1_pb3.png
index 9ecfd3ee595d59906935a58b5ac32d9c50a18cbf..1af1009ee0699c78ed52efbf706894d60d2f0898 100644
Binary files a/img/hair/phair/balls/-1_pb3.png and b/img/hair/phair/balls/-1_pb3.png differ
diff --git a/img/hair/phair/balls/-1_pb5.png b/img/hair/phair/balls/-1_pb5.png
index 6656b524e9e382527994bdc702a4417e98c69067..4a2ac21122d1a4a5a6364339ebb758b3f117f7f9 100644
Binary files a/img/hair/phair/balls/-1_pb5.png and b/img/hair/phair/balls/-1_pb5.png differ
diff --git a/img/hair/phair/balls/-1_pb7.png b/img/hair/phair/balls/-1_pb7.png
index eb05298d2283d600820754613ef028eb8be2a8fa..ad5f589225c0e945ed139e89ee14c5ca15d95980 100644
Binary files a/img/hair/phair/balls/-1_pb7.png and b/img/hair/phair/balls/-1_pb7.png differ
diff --git a/img/hair/phair/balls/-1_pb9.png b/img/hair/phair/balls/-1_pb9.png
index 8dba3b65bc3848fc2cbb0905443e5595b421e66c..18e929871a8dd0399b4bcb2342b9b1889a298eb1 100644
Binary files a/img/hair/phair/balls/-1_pb9.png and b/img/hair/phair/balls/-1_pb9.png differ
diff --git a/img/hair/phair/balls/-2_pb3.png b/img/hair/phair/balls/-2_pb3.png
index c9e340b64f0b785631bba4dbf9fe1f7855b146ae..2b40fb2e3d9bc520302ab0c99e0dc326dc03bdd1 100644
Binary files a/img/hair/phair/balls/-2_pb3.png and b/img/hair/phair/balls/-2_pb3.png differ
diff --git a/img/hair/phair/balls/-2_pb5.png b/img/hair/phair/balls/-2_pb5.png
index 84442c856d306584968ce4de3f77547fe2d93a8d..dcfc647b6dd9ff08ba2ea87d9a7ff640bbecd15a 100644
Binary files a/img/hair/phair/balls/-2_pb5.png and b/img/hair/phair/balls/-2_pb5.png differ
diff --git a/img/hair/phair/balls/-2_pb7.png b/img/hair/phair/balls/-2_pb7.png
index 812f241cbb92b07140d330705d8b527b60ad2d15..5ae426a3272299bd62636464f3f9f84a96588427 100644
Binary files a/img/hair/phair/balls/-2_pb7.png and b/img/hair/phair/balls/-2_pb7.png differ
diff --git a/img/hair/phair/balls/-2_pb9.png b/img/hair/phair/balls/-2_pb9.png
index c6ef13bb0c44adab817fc5c98aeeb647ee465bbd..79c8c72ff60548faeb982ba3e5d65a2bf17f3c92 100644
Binary files a/img/hair/phair/balls/-2_pb9.png and b/img/hair/phair/balls/-2_pb9.png differ
diff --git a/img/hair/phair/balls/0_pb3.png b/img/hair/phair/balls/0_pb3.png
index 9ecfd3ee595d59906935a58b5ac32d9c50a18cbf..1af1009ee0699c78ed52efbf706894d60d2f0898 100644
Binary files a/img/hair/phair/balls/0_pb3.png and b/img/hair/phair/balls/0_pb3.png differ
diff --git a/img/hair/phair/balls/0_pb5.png b/img/hair/phair/balls/0_pb5.png
index 6656b524e9e382527994bdc702a4417e98c69067..4a2ac21122d1a4a5a6364339ebb758b3f117f7f9 100644
Binary files a/img/hair/phair/balls/0_pb5.png and b/img/hair/phair/balls/0_pb5.png differ
diff --git a/img/hair/phair/balls/0_pb7.png b/img/hair/phair/balls/0_pb7.png
index eb05298d2283d600820754613ef028eb8be2a8fa..ad5f589225c0e945ed139e89ee14c5ca15d95980 100644
Binary files a/img/hair/phair/balls/0_pb7.png and b/img/hair/phair/balls/0_pb7.png differ
diff --git a/img/hair/phair/balls/0_pb9.png b/img/hair/phair/balls/0_pb9.png
index 8dba3b65bc3848fc2cbb0905443e5595b421e66c..18e929871a8dd0399b4bcb2342b9b1889a298eb1 100644
Binary files a/img/hair/phair/balls/0_pb9.png and b/img/hair/phair/balls/0_pb9.png differ
diff --git a/img/hair/phair/balls/1_pb3.png b/img/hair/phair/balls/1_pb3.png
index 360d0da8689a416c454ebc1915db5d76a77c83ab..8175081619cef1b65bf3618e70d897cfe772681b 100644
Binary files a/img/hair/phair/balls/1_pb3.png and b/img/hair/phair/balls/1_pb3.png differ
diff --git a/img/hair/phair/balls/1_pb5.png b/img/hair/phair/balls/1_pb5.png
index 187d5bd48c238b8fb19de593a67ccf5aa45a86c7..5d51ce9570f4c7a318290cb66090c81961b339bc 100644
Binary files a/img/hair/phair/balls/1_pb5.png and b/img/hair/phair/balls/1_pb5.png differ
diff --git a/img/hair/phair/balls/1_pb7.png b/img/hair/phair/balls/1_pb7.png
index 4b3ebbf1c17742d77cec392ec35dc06f30b83d46..a759ea060178713c640d3048874a4b91ad3d2cc4 100644
Binary files a/img/hair/phair/balls/1_pb7.png and b/img/hair/phair/balls/1_pb7.png differ
diff --git a/img/hair/phair/balls/1_pb9.png b/img/hair/phair/balls/1_pb9.png
index c1d3d881e7bdc88c67332f5833a4b3977ddf3d06..2d7d2f8d085b3c369dfb64314c479a8df087c718 100644
Binary files a/img/hair/phair/balls/1_pb9.png and b/img/hair/phair/balls/1_pb9.png differ
diff --git a/img/hair/phair/balls/2_pb3.png b/img/hair/phair/balls/2_pb3.png
index 360d0da8689a416c454ebc1915db5d76a77c83ab..8175081619cef1b65bf3618e70d897cfe772681b 100644
Binary files a/img/hair/phair/balls/2_pb3.png and b/img/hair/phair/balls/2_pb3.png differ
diff --git a/img/hair/phair/balls/2_pb5.png b/img/hair/phair/balls/2_pb5.png
index 187d5bd48c238b8fb19de593a67ccf5aa45a86c7..5d51ce9570f4c7a318290cb66090c81961b339bc 100644
Binary files a/img/hair/phair/balls/2_pb5.png and b/img/hair/phair/balls/2_pb5.png differ
diff --git a/img/hair/phair/balls/2_pb7.png b/img/hair/phair/balls/2_pb7.png
index 4b3ebbf1c17742d77cec392ec35dc06f30b83d46..a759ea060178713c640d3048874a4b91ad3d2cc4 100644
Binary files a/img/hair/phair/balls/2_pb7.png and b/img/hair/phair/balls/2_pb7.png differ
diff --git a/img/hair/phair/balls/2_pb9.png b/img/hair/phair/balls/2_pb9.png
index c1d3d881e7bdc88c67332f5833a4b3977ddf3d06..2d7d2f8d085b3c369dfb64314c479a8df087c718 100644
Binary files a/img/hair/phair/balls/2_pb9.png and b/img/hair/phair/balls/2_pb9.png differ
diff --git a/img/hair/phair/balls/3_pb3.png b/img/hair/phair/balls/3_pb3.png
index 22ed61571765135ad53a6273e44bbe98cf9c2029..c8cc42864f9df6fa8da477f459a44aef79bc437a 100644
Binary files a/img/hair/phair/balls/3_pb3.png and b/img/hair/phair/balls/3_pb3.png differ
diff --git a/img/hair/phair/balls/3_pb5.png b/img/hair/phair/balls/3_pb5.png
index 275dc3b88cb8ee41c3837f44399fd7e999d6e3e4..19ec53b04f80419e4f6d23cd7ec99e39e5079de3 100644
Binary files a/img/hair/phair/balls/3_pb5.png and b/img/hair/phair/balls/3_pb5.png differ
diff --git a/img/hair/phair/balls/3_pb7.png b/img/hair/phair/balls/3_pb7.png
index cb8aeb9a5547414f233061c80ddc0e7f63c89da6..9117b3ceba4419ec3ee43bbfc1169a02b74f3542 100644
Binary files a/img/hair/phair/balls/3_pb7.png and b/img/hair/phair/balls/3_pb7.png differ
diff --git a/img/hair/phair/balls/3_pb9.png b/img/hair/phair/balls/3_pb9.png
index 38270c6c716378f3107a7bb81f60b5bcc52da2af..5223deef59927ba8eb13c00d5ab214c33858a982 100644
Binary files a/img/hair/phair/balls/3_pb9.png and b/img/hair/phair/balls/3_pb9.png differ
diff --git a/img/hair/phair/balls/4_pb3.png b/img/hair/phair/balls/4_pb3.png
index ac035e6b7fb5c792ab7db9d0321197b7c25bb8b8..e9ef438ef5e62d12726acda9749332cbc2b827ea 100644
Binary files a/img/hair/phair/balls/4_pb3.png and b/img/hair/phair/balls/4_pb3.png differ
diff --git a/img/hair/phair/balls/4_pb5.png b/img/hair/phair/balls/4_pb5.png
index b26fca9715168d8679c8f0ed0e5901812588ba9f..4311ff38ec1f8ea9f8070231bc31fd7befb61b33 100644
Binary files a/img/hair/phair/balls/4_pb5.png and b/img/hair/phair/balls/4_pb5.png differ
diff --git a/img/hair/phair/balls/4_pb7.png b/img/hair/phair/balls/4_pb7.png
index e3205718fe6f6d295c0f8b035cdf7ada8df76256..f8b43a0a08bfea530c3e92feda272334677ac667 100644
Binary files a/img/hair/phair/balls/4_pb7.png and b/img/hair/phair/balls/4_pb7.png differ
diff --git a/img/hair/phair/balls/4_pb9.png b/img/hair/phair/balls/4_pb9.png
index 39414e5e723afe2b996a3abe1d18133f2e1ae482..7f4115716adb3776841a9c737c8fc26e20fdc73f 100644
Binary files a/img/hair/phair/balls/4_pb9.png and b/img/hair/phair/balls/4_pb9.png differ
diff --git a/img/hair/phair/pb0.png b/img/hair/phair/pb0.png
index 0a9ef1d7a57b76d3004f96e6492338af0434bdaa..d4c96d4a23df73f8341e76da00b33fb9eb422ff2 100644
Binary files a/img/hair/phair/pb0.png and b/img/hair/phair/pb0.png differ
diff --git a/img/hair/phair/pb2.png b/img/hair/phair/pb2.png
index 183af1717a8c8a1532282b4b636c705a9d8630bb..20a41b4bf7378aa7c2fa14cbf56b831266925807 100644
Binary files a/img/hair/phair/pb2.png and b/img/hair/phair/pb2.png differ
diff --git a/img/hair/phair/pb3.png b/img/hair/phair/pb3.png
index 02be4c35a7a205f0d7c34ab250a34766f20c694d..65e0c77c0baead1649a20b299a08835bdad50747 100644
Binary files a/img/hair/phair/pb3.png and b/img/hair/phair/pb3.png differ
diff --git a/img/hair/phair/pb5.png b/img/hair/phair/pb5.png
index fff5f998a2926242e40d965ef17f6d77894993d7..41e2a19d366d4da533d792c57536320076fcdbc0 100644
Binary files a/img/hair/phair/pb5.png and b/img/hair/phair/pb5.png differ
diff --git a/img/hair/phair/pb6.png b/img/hair/phair/pb6.png
index a811a13767199558d88f282da6ff5411e0190449..841637a86c111cdbfd135776eaff0abdec6f9070 100644
Binary files a/img/hair/phair/pb6.png and b/img/hair/phair/pb6.png differ
diff --git a/img/hair/phair/pb7.png b/img/hair/phair/pb7.png
index 606ad9a85e291160cba9120560c0999cf1ae87b8..ed548395f8565c915fd0dde24573ac80bf70b484 100644
Binary files a/img/hair/phair/pb7.png and b/img/hair/phair/pb7.png differ
diff --git a/img/hair/phair/pb8.png b/img/hair/phair/pb8.png
index 43c20142bcc4b32527cc0102e80f331b460465a7..11f4eb155c098d5d88abc4727281b3c7c56afb61 100644
Binary files a/img/hair/phair/pb8.png and b/img/hair/phair/pb8.png differ
diff --git a/img/hair/phair/pb9.png b/img/hair/phair/pb9.png
index f81911977d3cb131d6b4fe228274bf4622d37904..c02b118f467cb03447a615c574a76a7358991c01 100644
Binary files a/img/hair/phair/pb9.png and b/img/hair/phair/pb9.png differ
diff --git a/img/hair/phair/pbstrip1.png b/img/hair/phair/pbstrip1.png
index 8e9904cea0d3a3193867b50464f1b425b89a1a72..1ce77e759d180202f31d368eb9468e78dab2fbda 100644
Binary files a/img/hair/phair/pbstrip1.png and b/img/hair/phair/pbstrip1.png differ
diff --git a/img/hair/phair/pbstrip2.png b/img/hair/phair/pbstrip2.png
index 86462c8b0c8bcdac670316e1b29ba9fe0380aaec..e11f9f622556fe4efab0545fd70a694db7153dfb 100644
Binary files a/img/hair/phair/pbstrip2.png and b/img/hair/phair/pbstrip2.png differ
diff --git a/img/hair/phair/pbstrip3.png b/img/hair/phair/pbstrip3.png
index 8b968673b3af2ac48e614602123c5f09f07edee0..6a38d055aa0595581d10d4e4d468ffc3fc8f3769 100644
Binary files a/img/hair/phair/pbstrip3.png and b/img/hair/phair/pbstrip3.png differ
diff --git a/img/hair/red/backhairfeetred.png b/img/hair/red/backhairfeetred.png
deleted file mode 100644
index ea6203c28d62a3556adfe1094d14a0d4863269ff..0000000000000000000000000000000000000000
Binary files a/img/hair/red/backhairfeetred.png and /dev/null differ
diff --git a/img/hair/red/backhairthighsred.png b/img/hair/red/backhairthighsred.png
deleted file mode 100644
index ec99ef19bdd6ab4bff981c1ecdfd84182001e21d..0000000000000000000000000000000000000000
Binary files a/img/hair/red/backhairthighsred.png and /dev/null differ
diff --git a/img/hair/red/browlowred.png b/img/hair/red/browlowred.png
deleted file mode 100644
index 6292d6ea2dbe86750401607de4a814d6791cb24b..0000000000000000000000000000000000000000
Binary files a/img/hair/red/browlowred.png and /dev/null differ
diff --git a/img/hair/red/browmidred.png b/img/hair/red/browmidred.png
deleted file mode 100644
index 2f6a78da9ddcd3d6285c8c8c316a931483100dea..0000000000000000000000000000000000000000
Binary files a/img/hair/red/browmidred.png and /dev/null differ
diff --git a/img/hair/red/browtopred.png b/img/hair/red/browtopred.png
deleted file mode 100644
index 470b5e914da9a4c045ae2af9bc2a29600a8f0e8c..0000000000000000000000000000000000000000
Binary files a/img/hair/red/browtopred.png and /dev/null differ
diff --git a/img/hair/red/hairchestred.png b/img/hair/red/hairchestred.png
deleted file mode 100644
index 27ab40805b240b0c070560fcf1005b1648a28f75..0000000000000000000000000000000000000000
Binary files a/img/hair/red/hairchestred.png and /dev/null differ
diff --git a/img/hair/red/hairfeetred.png b/img/hair/red/hairfeetred.png
deleted file mode 100644
index fc749f2151aea0c40820e456624fd3ff833340a4..0000000000000000000000000000000000000000
Binary files a/img/hair/red/hairfeetred.png and /dev/null differ
diff --git a/img/hair/red/hairnavelred.png b/img/hair/red/hairnavelred.png
deleted file mode 100644
index 2229dbb0fc1b1a235be1f4f297064e5df07f87cc..0000000000000000000000000000000000000000
Binary files a/img/hair/red/hairnavelred.png and /dev/null differ
diff --git a/img/hair/red/hairshortred.png b/img/hair/red/hairshortred.png
deleted file mode 100644
index 657671dbc3aafab3e623ff04e8a46f9a211faa41..0000000000000000000000000000000000000000
Binary files a/img/hair/red/hairshortred.png and /dev/null differ
diff --git a/img/hair/red/hairshoulderred.png b/img/hair/red/hairshoulderred.png
deleted file mode 100644
index 2ea2fb9b36649805219ec4bc3d2b9f66775b92d2..0000000000000000000000000000000000000000
Binary files a/img/hair/red/hairshoulderred.png and /dev/null differ
diff --git a/img/hair/red/hairthighsred.png b/img/hair/red/hairthighsred.png
deleted file mode 100644
index f8e7cf09cd9d0e319dd6ba7ee0065cf5aa78e83e..0000000000000000000000000000000000000000
Binary files a/img/hair/red/hairthighsred.png and /dev/null differ
diff --git a/img/hair/red/lashesred.png b/img/hair/red/lashesred.png
deleted file mode 100644
index 1e917a0c18c9fa7cab0e40e7218debcb44d06cf3..0000000000000000000000000000000000000000
Binary files a/img/hair/red/lashesred.png and /dev/null differ
diff --git a/img/hair/sides/afro pouf/chest.png b/img/hair/sides/afro pouf/chest.png
index 995badff69ed78c0b5d08a4fb4fef5d092279cfe..8c37d48725ade32a989e9cb8498508e7250ad737 100644
Binary files a/img/hair/sides/afro pouf/chest.png and b/img/hair/sides/afro pouf/chest.png differ
diff --git a/img/hair/sides/afro pouf/feet.png b/img/hair/sides/afro pouf/feet.png
index 79195382a7ad4420913be389fe0033333122e907..d3e118433373e1ab3b2937765faa8d59d5858f4d 100644
Binary files a/img/hair/sides/afro pouf/feet.png and b/img/hair/sides/afro pouf/feet.png differ
diff --git a/img/hair/sides/afro pouf/navel.png b/img/hair/sides/afro pouf/navel.png
index bbf8d079c166a71dac0aa4b242d288951b0bbf30..a6e37cdae6c5cbccfc2c1d8a9e8c272fca10c1b5 100644
Binary files a/img/hair/sides/afro pouf/navel.png and b/img/hair/sides/afro pouf/navel.png differ
diff --git a/img/hair/sides/afro pouf/short.png b/img/hair/sides/afro pouf/short.png
index 3e56c2df0180df17cd59aeb19ae8ec7a910f4430..daba9ba99506a96c3ce28c06719ae193264579fc 100644
Binary files a/img/hair/sides/afro pouf/short.png and b/img/hair/sides/afro pouf/short.png differ
diff --git a/img/hair/sides/afro pouf/shoulder.png b/img/hair/sides/afro pouf/shoulder.png
index ee771cb868157c989e2335d877e02e228632967f..465719c8650d33c86f62b4897a2bec06694dc2b4 100644
Binary files a/img/hair/sides/afro pouf/shoulder.png and b/img/hair/sides/afro pouf/shoulder.png differ
diff --git a/img/hair/sides/afro pouf/thighs.png b/img/hair/sides/afro pouf/thighs.png
index 93eed86540e0576e5a88e5bd6a957e1f0d590250..3bf33179ca22618210fbfef186143a54ac4080c5 100644
Binary files a/img/hair/sides/afro pouf/thighs.png and b/img/hair/sides/afro pouf/thighs.png differ
diff --git a/img/hair/sides/afro puffs/chest.png b/img/hair/sides/afro puffs/chest.png
index 49153ff9af0a431baa0a117019a6702be49bd2a7..e6feac20d6db2b3637e62acb6dd9bf46e795dd21 100644
Binary files a/img/hair/sides/afro puffs/chest.png and b/img/hair/sides/afro puffs/chest.png differ
diff --git a/img/hair/sides/afro puffs/feet.png b/img/hair/sides/afro puffs/feet.png
index 03837589d413cf75807b15b53582be5a10cbff71..e424684fbe4fc7c1c6c69107f2018055390af6a5 100644
Binary files a/img/hair/sides/afro puffs/feet.png and b/img/hair/sides/afro puffs/feet.png differ
diff --git a/img/hair/sides/afro puffs/navel.png b/img/hair/sides/afro puffs/navel.png
index 15700b291b2d7d0c40d8a2a9150d4f526a3e7b45..7d336afcee4e32120bf45c8203cf97cca80b3da7 100644
Binary files a/img/hair/sides/afro puffs/navel.png and b/img/hair/sides/afro puffs/navel.png differ
diff --git a/img/hair/sides/afro puffs/short.png b/img/hair/sides/afro puffs/short.png
index a4abea1f197eed977973294cd9661ec2f6209a2f..9eb3b4663988e0770b28e67d9da4a11381f537ff 100644
Binary files a/img/hair/sides/afro puffs/short.png and b/img/hair/sides/afro puffs/short.png differ
diff --git a/img/hair/sides/afro puffs/shoulder.png b/img/hair/sides/afro puffs/shoulder.png
index 77b9e51c6e162883c930eea972599e961acbafa2..c94488ed6343a477a8e3366f76f7c89a160e9cab 100644
Binary files a/img/hair/sides/afro puffs/shoulder.png and b/img/hair/sides/afro puffs/shoulder.png differ
diff --git a/img/hair/sides/afro puffs/thighs.png b/img/hair/sides/afro puffs/thighs.png
index 6346146e7a88319c17107487d1666d2115c7842f..bf245f9e4ddec069548b86d06419d8931a89f9a3 100644
Binary files a/img/hair/sides/afro puffs/thighs.png and b/img/hair/sides/afro puffs/thighs.png differ
diff --git a/img/hair/sides/all down/chest.png b/img/hair/sides/all down/chest.png
index 8548b712b54276e422ca80ab32632d39240bc02c..8a26c92e71094155c48ca40b6e4b845860d95fa6 100644
Binary files a/img/hair/sides/all down/chest.png and b/img/hair/sides/all down/chest.png differ
diff --git a/img/hair/sides/all down/feet.png b/img/hair/sides/all down/feet.png
index c92296afa89dbfb6e803d2b78d60463adaa7ac7a..0f269c282d6ac7272f7da02ab868cefed7e0badb 100644
Binary files a/img/hair/sides/all down/feet.png and b/img/hair/sides/all down/feet.png differ
diff --git a/img/hair/sides/all down/navel.png b/img/hair/sides/all down/navel.png
index b38adcb213d4fcb59c8efefd76705b550d1da226..20b39a44de20f344d1a71b281d0b7b4edc1f344c 100644
Binary files a/img/hair/sides/all down/navel.png and b/img/hair/sides/all down/navel.png differ
diff --git a/img/hair/sides/all down/short.png b/img/hair/sides/all down/short.png
index 3bad5574bd6c60d0a8233672e54b81b1240ee75d..ba9779876d640d65b60b4d32d8ee08d009fab8a1 100644
Binary files a/img/hair/sides/all down/short.png and b/img/hair/sides/all down/short.png differ
diff --git a/img/hair/sides/all down/shoulder.png b/img/hair/sides/all down/shoulder.png
index 8ff4fcf91c3934240b0f944e5957297d24be4eb7..c151d43b3acaa7b30e31042346e453045a1cf968 100644
Binary files a/img/hair/sides/all down/shoulder.png and b/img/hair/sides/all down/shoulder.png differ
diff --git a/img/hair/sides/all down/thighs.png b/img/hair/sides/all down/thighs.png
index 87a162a1b648e9fefbc68c748d529ef8c2482103..0d3d91212ea66b32246edf00a81bdf0900166071 100644
Binary files a/img/hair/sides/all down/thighs.png and b/img/hair/sides/all down/thighs.png differ
diff --git a/img/hair/sides/bedhead/chest.png b/img/hair/sides/bedhead/chest.png
index 79f42ca7a624e40e70d41c92faf2f97e0a2dff3c..5d1aeb4f2176bdad5488719160f2a3eb6bbfa0dd 100644
Binary files a/img/hair/sides/bedhead/chest.png and b/img/hair/sides/bedhead/chest.png differ
diff --git a/img/hair/sides/bedhead/feet.png b/img/hair/sides/bedhead/feet.png
index 56af7b953d93de4116194dfdec84eca119fcfa7d..8f1e6c5a7eaac2bb52f86e03fc68e0ee83c5c030 100644
Binary files a/img/hair/sides/bedhead/feet.png and b/img/hair/sides/bedhead/feet.png differ
diff --git a/img/hair/sides/bedhead/navel.png b/img/hair/sides/bedhead/navel.png
index 0c86526ac0bfaaa86354d67de11be9172a66243e..3eef1e9611b4291d0319ecb4473b6917f2859d47 100644
Binary files a/img/hair/sides/bedhead/navel.png and b/img/hair/sides/bedhead/navel.png differ
diff --git a/img/hair/sides/bedhead/short.png b/img/hair/sides/bedhead/short.png
index 70b5a271250c53fc0edb1f057e2576f23858a693..1ebdb5c2e1912875c8eaa07c537ff0290fdc9130 100644
Binary files a/img/hair/sides/bedhead/short.png and b/img/hair/sides/bedhead/short.png differ
diff --git a/img/hair/sides/bedhead/shoulder.png b/img/hair/sides/bedhead/shoulder.png
index 170c2053a1a0e420327f9a40851745b88c0ee3a3..6ad65d9a0adda9e27cb43cef08d7e04b84a14902 100644
Binary files a/img/hair/sides/bedhead/shoulder.png and b/img/hair/sides/bedhead/shoulder.png differ
diff --git a/img/hair/sides/bedhead/thighs.png b/img/hair/sides/bedhead/thighs.png
index 6dd03ab3d9b1d72de3d76e8508883f07ca148243..a176cfe6710ca012593f805bf665f144c0a24fdf 100644
Binary files a/img/hair/sides/bedhead/thighs.png and b/img/hair/sides/bedhead/thighs.png differ
diff --git a/img/hair/sides/braid left/chest.png b/img/hair/sides/braid left/chest.png
index 6e96b82b0ed4ce3ced4d5736ffb640c31f6fb368..9b1c451d8ce7bf29749d68daf96c4e9841ef6093 100644
Binary files a/img/hair/sides/braid left/chest.png and b/img/hair/sides/braid left/chest.png differ
diff --git a/img/hair/sides/braid left/feet.png b/img/hair/sides/braid left/feet.png
index 56314a54b1947752e18e986bcef305ae8f9e5208..6e00664202198bbd2c694063a844911e98082bbc 100644
Binary files a/img/hair/sides/braid left/feet.png and b/img/hair/sides/braid left/feet.png differ
diff --git a/img/hair/sides/braid left/navel.png b/img/hair/sides/braid left/navel.png
index 843f8f883027fa5364f2be68d7e73f3206bd67ab..7d9298c37ff24e5e33a82ec75758328ba1c9d38e 100644
Binary files a/img/hair/sides/braid left/navel.png and b/img/hair/sides/braid left/navel.png differ
diff --git a/img/hair/sides/braid left/short.png b/img/hair/sides/braid left/short.png
index 5d1b5d8473ab7edc0d867ff8c9ec630c4cf3e50f..013977b8aab895eaa8a238775555c446c9505a9f 100644
Binary files a/img/hair/sides/braid left/short.png and b/img/hair/sides/braid left/short.png differ
diff --git a/img/hair/sides/braid left/shoulder.png b/img/hair/sides/braid left/shoulder.png
index 77f71098880483554d5dffd9921b22b2b0eb54eb..19dc1819830694c88b8691691be352b6566928f3 100644
Binary files a/img/hair/sides/braid left/shoulder.png and b/img/hair/sides/braid left/shoulder.png differ
diff --git a/img/hair/sides/braid left/thighs.png b/img/hair/sides/braid left/thighs.png
index e6ce312ed1743d7262b8f16c85fc16020b97de03..47e1e9b11ac0db285822b283fae03b893a1bf656 100644
Binary files a/img/hair/sides/braid left/thighs.png and b/img/hair/sides/braid left/thighs.png differ
diff --git a/img/hair/sides/braid right/chest.png b/img/hair/sides/braid right/chest.png
index bd677999833b22462bb8c03a8a012783e8d7f918..0b2d66f71809d746c9f2b39007a7b3b318f242a6 100644
Binary files a/img/hair/sides/braid right/chest.png and b/img/hair/sides/braid right/chest.png differ
diff --git a/img/hair/sides/braid right/feet.png b/img/hair/sides/braid right/feet.png
index eaa194768bf1b78e1534d8f04db43ed2879de6bc..09fcdf8d7739d38dc6cadfe36a5b576284dde6ef 100644
Binary files a/img/hair/sides/braid right/feet.png and b/img/hair/sides/braid right/feet.png differ
diff --git a/img/hair/sides/braid right/navel.png b/img/hair/sides/braid right/navel.png
index 08bc419ade2d3d6725700ab9f8eab25f39353fd4..6cb592bf466ff1246c067dff7a5a5e73a569da86 100644
Binary files a/img/hair/sides/braid right/navel.png and b/img/hair/sides/braid right/navel.png differ
diff --git a/img/hair/sides/braid right/short.png b/img/hair/sides/braid right/short.png
index ef7d0e3a17aa734af6aa42594dfc2df0dbc26720..03fcdf393e4bd5b804ae94f4e8b7a8e0b18ff82a 100644
Binary files a/img/hair/sides/braid right/short.png and b/img/hair/sides/braid right/short.png differ
diff --git a/img/hair/sides/braid right/shoulder.png b/img/hair/sides/braid right/shoulder.png
index 0d8b612f3f54a81f1b760f8eca9196f4e42a94cc..eb7a87e13b2fba09e72e03beda8e4b6816df0dc4 100644
Binary files a/img/hair/sides/braid right/shoulder.png and b/img/hair/sides/braid right/shoulder.png differ
diff --git a/img/hair/sides/braid right/thighs.png b/img/hair/sides/braid right/thighs.png
index 44830c36fbe51422fc2414f962bf567f649e4465..2b2fbd9da6b446fe01681bce82a1b199c25e1832 100644
Binary files a/img/hair/sides/braid right/thighs.png and b/img/hair/sides/braid right/thighs.png differ
diff --git a/img/hair/sides/bubble tails/chest.png b/img/hair/sides/bubble tails/chest.png
index 163c09acf95d96d47fb92d0b4462cb1123c86c7b..a097bfab8c29fde165f1e9f7c60e60bcfaea7b29 100644
Binary files a/img/hair/sides/bubble tails/chest.png and b/img/hair/sides/bubble tails/chest.png differ
diff --git a/img/hair/sides/bubble tails/feet.png b/img/hair/sides/bubble tails/feet.png
index 7e9433e72ff7e2679c665d33272ed185ee8b3c32..6bdcff2b13beef41bf8bd9670b74f5f41a3ed5ec 100644
Binary files a/img/hair/sides/bubble tails/feet.png and b/img/hair/sides/bubble tails/feet.png differ
diff --git a/img/hair/sides/bubble tails/navel.png b/img/hair/sides/bubble tails/navel.png
index c240757a2e50dbe02d987308e48e82f79c52ba37..3ff07112bbe5dcb9384a0fe6c3f2af594db76351 100644
Binary files a/img/hair/sides/bubble tails/navel.png and b/img/hair/sides/bubble tails/navel.png differ
diff --git a/img/hair/sides/bubble tails/short.png b/img/hair/sides/bubble tails/short.png
index 2e33eb6a92e4bac128c1a23191c0246bd2434378..dd687b935cd3e71188aa059298a06d4699e3f7a7 100644
Binary files a/img/hair/sides/bubble tails/short.png and b/img/hair/sides/bubble tails/short.png differ
diff --git a/img/hair/sides/bubble tails/shoulder.png b/img/hair/sides/bubble tails/shoulder.png
index 72dafba39f7e021111d876787da516b3c85b5c62..103b0e6d98ca0ad8e46f966cf96c96db91cab654 100644
Binary files a/img/hair/sides/bubble tails/shoulder.png and b/img/hair/sides/bubble tails/shoulder.png differ
diff --git a/img/hair/sides/bubble tails/thighs.png b/img/hair/sides/bubble tails/thighs.png
index ab8e8c55ec042145c6cb9d8f365a2a7f041d6e33..74967c3eab955558fdbf16f9d1cbab13bfb3f704 100644
Binary files a/img/hair/sides/bubble tails/thighs.png and b/img/hair/sides/bubble tails/thighs.png differ
diff --git a/img/hair/sides/crude/short.png b/img/hair/sides/crude/short.png
index f12ff7e058766f153839e266a772f33dc218c006..797defe9fad98e6d6efa2cf0a6e65355a2428493 100644
Binary files a/img/hair/sides/crude/short.png and b/img/hair/sides/crude/short.png differ
diff --git a/img/hair/sides/curl/chest.png b/img/hair/sides/curl/chest.png
index e3de955f95b7a6207d7b5606bcfd633b4d2f3f54..1910fc09aef09c76278a25406af3ea88b470c088 100644
Binary files a/img/hair/sides/curl/chest.png and b/img/hair/sides/curl/chest.png differ
diff --git a/img/hair/sides/curl/feet.png b/img/hair/sides/curl/feet.png
index 5ad8988b7a47fab01988fc932bdff8a50da98339..6515b249f3ecc63ee8d708c4af9112c2bee7680b 100644
Binary files a/img/hair/sides/curl/feet.png and b/img/hair/sides/curl/feet.png differ
diff --git a/img/hair/sides/curl/navel.png b/img/hair/sides/curl/navel.png
index 333f31c0ab8a8b32297d14f51dfac0ddd96c260a..1ddbf7faa6b6a22e3164883f433722a0fad8559e 100644
Binary files a/img/hair/sides/curl/navel.png and b/img/hair/sides/curl/navel.png differ
diff --git a/img/hair/sides/curl/short.png b/img/hair/sides/curl/short.png
index 7319a7c334bc8851808e2ca0d734ec2de16feca3..cbdbddba26063f52f76f1b57ab8420af441cf56b 100644
Binary files a/img/hair/sides/curl/short.png and b/img/hair/sides/curl/short.png differ
diff --git a/img/hair/sides/curl/shoulder.png b/img/hair/sides/curl/shoulder.png
index b0dda35674cf97859b87302bf4df702ecde6f998..a66389040bf9683f4c41a5fd503cd1bad028e79f 100644
Binary files a/img/hair/sides/curl/shoulder.png and b/img/hair/sides/curl/shoulder.png differ
diff --git a/img/hair/sides/curl/thighs.png b/img/hair/sides/curl/thighs.png
index 4d56823823a845c6418e6812729202eef342723a..3b7f6625e5026b76159b1caccf02bd1264664b56 100644
Binary files a/img/hair/sides/curl/thighs.png and b/img/hair/sides/curl/thighs.png differ
diff --git a/img/hair/sides/curly pigtails/chest.png b/img/hair/sides/curly pigtails/chest.png
index cacfa90b459c4cd7613e15a7a2fd724ae8ef2e88..7401731a9630d5b5cb4801afe8a12f66ac8852df 100644
Binary files a/img/hair/sides/curly pigtails/chest.png and b/img/hair/sides/curly pigtails/chest.png differ
diff --git a/img/hair/sides/curly pigtails/feet.png b/img/hair/sides/curly pigtails/feet.png
index 0185382a69a095586f7f2939bf2600839409f6d1..c6819a8dd7346017d500118c0c5c8201860a3f68 100644
Binary files a/img/hair/sides/curly pigtails/feet.png and b/img/hair/sides/curly pigtails/feet.png differ
diff --git a/img/hair/sides/curly pigtails/navel.png b/img/hair/sides/curly pigtails/navel.png
index 51a328c911a7c0a82dc3b41352610f4f52caad47..18c8dd1fa79926f8be3bc1af57fcee6769a2946e 100644
Binary files a/img/hair/sides/curly pigtails/navel.png and b/img/hair/sides/curly pigtails/navel.png differ
diff --git a/img/hair/sides/curly pigtails/short.png b/img/hair/sides/curly pigtails/short.png
index 34df4aaa87d938b55fec09fb502e0057de89fa2f..0ae4d60414880ee604962fae4372f90a98f2663c 100644
Binary files a/img/hair/sides/curly pigtails/short.png and b/img/hair/sides/curly pigtails/short.png differ
diff --git a/img/hair/sides/curly pigtails/shoulder.png b/img/hair/sides/curly pigtails/shoulder.png
index 681e8fd051453d78e64602ee380ab3d081300a4c..411d00c10b0dcc57d59da6aec4cd98c9c01f036d 100644
Binary files a/img/hair/sides/curly pigtails/shoulder.png and b/img/hair/sides/curly pigtails/shoulder.png differ
diff --git a/img/hair/sides/curly pigtails/thighs.png b/img/hair/sides/curly pigtails/thighs.png
index 82bb6457a0be0a8607a96fe2a9556e194eb515ed..8ea6cf312f93d3c19e231266768a7b8f610a3e19 100644
Binary files a/img/hair/sides/curly pigtails/thighs.png and b/img/hair/sides/curly pigtails/thighs.png differ
diff --git a/img/hair/sides/curly side up/chest.png b/img/hair/sides/curly side up/chest.png
index 6e237e6bfd64bf89539cfae73e10416395ba1885..edf94f11248fcba1a9952172174e33fe792ad2e5 100644
Binary files a/img/hair/sides/curly side up/chest.png and b/img/hair/sides/curly side up/chest.png differ
diff --git a/img/hair/sides/curly side up/feet.png b/img/hair/sides/curly side up/feet.png
index 17367f5aa9f79499e39f755e53e1e6a44c150faf..d9217ea360e9eb6e01323e43a63b4312c686741e 100644
Binary files a/img/hair/sides/curly side up/feet.png and b/img/hair/sides/curly side up/feet.png differ
diff --git a/img/hair/sides/curly side up/navel.png b/img/hair/sides/curly side up/navel.png
index 99da7514aba95a3b72366c6154cf0124b8179572..2f96395f3bf6337927867c5caf1e6d9d25ada7af 100644
Binary files a/img/hair/sides/curly side up/navel.png and b/img/hair/sides/curly side up/navel.png differ
diff --git a/img/hair/sides/curly side up/short.png b/img/hair/sides/curly side up/short.png
index 9b611f77d43ed370b1503328195337b3f8ce6955..fe16fa8bfb0157f0139083b70a4ab8f62de5ddd0 100644
Binary files a/img/hair/sides/curly side up/short.png and b/img/hair/sides/curly side up/short.png differ
diff --git a/img/hair/sides/curly side up/shoulder.png b/img/hair/sides/curly side up/shoulder.png
index 09fa7201dcb1a7b2d0cbc82ee69fc2d9921ffa23..3b7f8661abbcc2633c6ec5fb955753e6e02b24fd 100644
Binary files a/img/hair/sides/curly side up/shoulder.png and b/img/hair/sides/curly side up/shoulder.png differ
diff --git a/img/hair/sides/curly side up/thighs.png b/img/hair/sides/curly side up/thighs.png
index 9e2128569abc36950df0744f4a10f1ee12719fa0..bc7823cbcc75907471732fdbe17c629d666c22f5 100644
Binary files a/img/hair/sides/curly side up/thighs.png and b/img/hair/sides/curly side up/thighs.png differ
diff --git a/img/hair/sides/default/chest.png b/img/hair/sides/default/chest.png
index 80ce15ed851e4adc94c4ede3c51497eb9c3e26a1..4892ade5c0bbec2ad9137c93f754ad13f4bc711c 100644
Binary files a/img/hair/sides/default/chest.png and b/img/hair/sides/default/chest.png differ
diff --git a/img/hair/sides/default/feet.png b/img/hair/sides/default/feet.png
index 74371c8c9ae6b0b9be3a96a56e7688e2ec8975ec..fafd7f803aa1b3961d8b3488479146b0505e865d 100644
Binary files a/img/hair/sides/default/feet.png and b/img/hair/sides/default/feet.png differ
diff --git a/img/hair/sides/default/navel.png b/img/hair/sides/default/navel.png
index f44153e2d704f3b686d70fd2a494fc371d1d4044..63c6fccd772bfb825f41504a4acba1150d38258b 100644
Binary files a/img/hair/sides/default/navel.png and b/img/hair/sides/default/navel.png differ
diff --git a/img/hair/sides/default/short.png b/img/hair/sides/default/short.png
index e7591d10bbf1cdeea3f9accf105023c76b3523a4..d984976469be8b472cb40c22bb10223b0cccdc75 100644
Binary files a/img/hair/sides/default/short.png and b/img/hair/sides/default/short.png differ
diff --git a/img/hair/sides/default/shoulder.png b/img/hair/sides/default/shoulder.png
index b981d3a66a08b81065c975210c35362af11c1707..700dff130b312e68716955a4e3af0bfca7dc391d 100644
Binary files a/img/hair/sides/default/shoulder.png and b/img/hair/sides/default/shoulder.png differ
diff --git a/img/hair/sides/default/thighs.png b/img/hair/sides/default/thighs.png
index 676b384062bea732677504bd096de712d98a7fe0..7a992bb21d1c46330e89c01e427433c0764a551f 100644
Binary files a/img/hair/sides/default/thighs.png and b/img/hair/sides/default/thighs.png differ
diff --git a/img/hair/sides/defined curl/chest.png b/img/hair/sides/defined curl/chest.png
index 3a58f8f06da1c4ee763e93845c7670d7273b8688..2703b590c41503e013d70b995a5c924b30dcb238 100644
Binary files a/img/hair/sides/defined curl/chest.png and b/img/hair/sides/defined curl/chest.png differ
diff --git a/img/hair/sides/defined curl/feet.png b/img/hair/sides/defined curl/feet.png
index 4e087e306516a8fa70fdbb053e8fcbf9fce15e2c..8fa778fc5f6f4d9398f1f67d13a7aaba595b6f77 100644
Binary files a/img/hair/sides/defined curl/feet.png and b/img/hair/sides/defined curl/feet.png differ
diff --git a/img/hair/sides/defined curl/navel.png b/img/hair/sides/defined curl/navel.png
index bd7d09b4942cf3d098e105c8cc9bbb637e0236a3..9200b11691355bdeae07ca9ae22f000b16f33b36 100644
Binary files a/img/hair/sides/defined curl/navel.png and b/img/hair/sides/defined curl/navel.png differ
diff --git a/img/hair/sides/defined curl/short.png b/img/hair/sides/defined curl/short.png
index 74c5006152974b41450256b7c2e18e3a008816cd..10dcb5b1e0f475d3ca2033b013b22d8dc56b4a49 100644
Binary files a/img/hair/sides/defined curl/short.png and b/img/hair/sides/defined curl/short.png differ
diff --git a/img/hair/sides/defined curl/shoulder.png b/img/hair/sides/defined curl/shoulder.png
index 4a37cb6e77476dd1ceb5f83dfc87457d4b4327c4..21da7e960169ec9e5712708cf92cdd8d2302d8aa 100644
Binary files a/img/hair/sides/defined curl/shoulder.png and b/img/hair/sides/defined curl/shoulder.png differ
diff --git a/img/hair/sides/defined curl/thighs.png b/img/hair/sides/defined curl/thighs.png
index f3f969e44f62da9af78ebe49de7f17c2c6d326cb..82ed35fda5e743b57302a0903a24b7ff885cb24b 100644
Binary files a/img/hair/sides/defined curl/thighs.png and b/img/hair/sides/defined curl/thighs.png differ
diff --git a/img/hair/sides/dreads/chest.png b/img/hair/sides/dreads/chest.png
index 5cfd7d2ab9dd75a1955ee1b33b57bf0a033019ac..0f100681010897c6287f8736d9e65ae2eb7bb6ae 100644
Binary files a/img/hair/sides/dreads/chest.png and b/img/hair/sides/dreads/chest.png differ
diff --git a/img/hair/sides/dreads/feet.png b/img/hair/sides/dreads/feet.png
index b107fd77b603907c3caf005961e6632032db4728..a5b26f6ba7e4fc6209f2d1a1ad29e72b88981684 100644
Binary files a/img/hair/sides/dreads/feet.png and b/img/hair/sides/dreads/feet.png differ
diff --git a/img/hair/sides/dreads/navel.png b/img/hair/sides/dreads/navel.png
index c3ed62a26bc29925cf77cbe378104d9d259b34cc..e939923cdf9ebabab4694417cc7fab725baf44ee 100644
Binary files a/img/hair/sides/dreads/navel.png and b/img/hair/sides/dreads/navel.png differ
diff --git a/img/hair/sides/dreads/short.png b/img/hair/sides/dreads/short.png
index 16990fafa79c9455dfe4e726ec855678d8a7dd73..7ba5538fa37ade59add6b9923e0e128f4beea9b0 100644
Binary files a/img/hair/sides/dreads/short.png and b/img/hair/sides/dreads/short.png differ
diff --git a/img/hair/sides/dreads/shoulder.png b/img/hair/sides/dreads/shoulder.png
index 66fc844f7ea4f2805f10d5700ef1c48ece3177e3..ac854a185b5c16cca351392f49243bbf448aeed6 100644
Binary files a/img/hair/sides/dreads/shoulder.png and b/img/hair/sides/dreads/shoulder.png differ
diff --git a/img/hair/sides/dreads/thighs.png b/img/hair/sides/dreads/thighs.png
index baa3a2f8f6c58e3923ee83cbb6e8a5c9b4d69d3a..344c00ee15d13c61de89830e9ed32fb425921e89 100644
Binary files a/img/hair/sides/dreads/thighs.png and b/img/hair/sides/dreads/thighs.png differ
diff --git a/img/hair/sides/drill ringlets/chest.png b/img/hair/sides/drill ringlets/chest.png
index 38fcf28ca00655b061379979791b7baff68aff47..1dd99651bf59cef122ea24ed42d597d5b181796b 100644
Binary files a/img/hair/sides/drill ringlets/chest.png and b/img/hair/sides/drill ringlets/chest.png differ
diff --git a/img/hair/sides/drill ringlets/feet.png b/img/hair/sides/drill ringlets/feet.png
index 7c41afc757a8671de0ecf54e0ecef0242104c7c8..961c7467119b5b02a90b4aba4bbeb20156cabbde 100644
Binary files a/img/hair/sides/drill ringlets/feet.png and b/img/hair/sides/drill ringlets/feet.png differ
diff --git a/img/hair/sides/drill ringlets/navel.png b/img/hair/sides/drill ringlets/navel.png
index 11a9c955708623da76987922fcc9e9e493908cc2..5019574c52911294e5c9a89f0972da3d7f69a874 100644
Binary files a/img/hair/sides/drill ringlets/navel.png and b/img/hair/sides/drill ringlets/navel.png differ
diff --git a/img/hair/sides/drill ringlets/short.png b/img/hair/sides/drill ringlets/short.png
index 0b73c37ab3b921d9a6fe9dab6dfb7b54cb33944c..09c4c87e971366d71101f8953205446ea5fbef90 100644
Binary files a/img/hair/sides/drill ringlets/short.png and b/img/hair/sides/drill ringlets/short.png differ
diff --git a/img/hair/sides/drill ringlets/shoulder.png b/img/hair/sides/drill ringlets/shoulder.png
index d6c3b648584c13407fe46ee2e92a3107bca1bc20..19e9105f1a71335ebef5690e09b0bdd1e24a2e59 100644
Binary files a/img/hair/sides/drill ringlets/shoulder.png and b/img/hair/sides/drill ringlets/shoulder.png differ
diff --git a/img/hair/sides/drill ringlets/thighs.png b/img/hair/sides/drill ringlets/thighs.png
index 7d352ab913de11b26e097fa77aa0fa412842479b..ce90b0a47ceee8dea1256ed8d6e4ec77d9d7794b 100644
Binary files a/img/hair/sides/drill ringlets/thighs.png and b/img/hair/sides/drill ringlets/thighs.png differ
diff --git a/img/hair/sides/flat ponytail/chest.png b/img/hair/sides/flat ponytail/chest.png
index 9c609d69bcc1952f3725ba7c575155f7b9ddc1a3..96dedfccd6f3495e56ae265a6fdca13c19cc8e1f 100644
Binary files a/img/hair/sides/flat ponytail/chest.png and b/img/hair/sides/flat ponytail/chest.png differ
diff --git a/img/hair/sides/flat ponytail/feet.png b/img/hair/sides/flat ponytail/feet.png
index c5959c7b437b72b20eafd62637a709c84437e91d..0b046c26ab992ed6d754af36782611a1ae8edc20 100644
Binary files a/img/hair/sides/flat ponytail/feet.png and b/img/hair/sides/flat ponytail/feet.png differ
diff --git a/img/hair/sides/flat ponytail/navel.png b/img/hair/sides/flat ponytail/navel.png
index 021e4a4a0dab1b30d66aee942d83df570a3c81cd..c0bb03a03c258ee240d0170e894fb6ad921ee387 100644
Binary files a/img/hair/sides/flat ponytail/navel.png and b/img/hair/sides/flat ponytail/navel.png differ
diff --git a/img/hair/sides/flat ponytail/short.png b/img/hair/sides/flat ponytail/short.png
index 49c855b1887803be26324898d8ab157dc78d861b..f767e22815160b2876c0a2fa47d4a16918dfc576 100644
Binary files a/img/hair/sides/flat ponytail/short.png and b/img/hair/sides/flat ponytail/short.png differ
diff --git a/img/hair/sides/flat ponytail/shoulder.png b/img/hair/sides/flat ponytail/shoulder.png
index 9ff48af0450adc7b17e07f27c9c9726e6916e7bc..5f959c2ff09ec61cc2ff566b7fae4cc1e6bd23e2 100644
Binary files a/img/hair/sides/flat ponytail/shoulder.png and b/img/hair/sides/flat ponytail/shoulder.png differ
diff --git a/img/hair/sides/flat ponytail/thighs.png b/img/hair/sides/flat ponytail/thighs.png
index 781055463ed061d573d38e8eb7f6d1ae45b69c80..89f398baac64c532c2d45d6b3371c129d5018a90 100644
Binary files a/img/hair/sides/flat ponytail/thighs.png and b/img/hair/sides/flat ponytail/thighs.png differ
diff --git a/img/hair/sides/fluffy ponytail/chest.png b/img/hair/sides/fluffy ponytail/chest.png
index dbbd5b33054516e0f840483eb9d0da0857c9d295..83126d101e1a723ee8ce727558596b92d37160b4 100644
Binary files a/img/hair/sides/fluffy ponytail/chest.png and b/img/hair/sides/fluffy ponytail/chest.png differ
diff --git a/img/hair/sides/fluffy ponytail/feet.png b/img/hair/sides/fluffy ponytail/feet.png
index ba56c4f375bdef9891e12ba2bfb1b41903e4d31c..94063bf229fe4acfa2e6e2d9cbdf3675db12500c 100644
Binary files a/img/hair/sides/fluffy ponytail/feet.png and b/img/hair/sides/fluffy ponytail/feet.png differ
diff --git a/img/hair/sides/fluffy ponytail/navel.png b/img/hair/sides/fluffy ponytail/navel.png
index 3f6560a2896d31293887356391e839c7aa52ae18..cc2af6f7cdbeb63ab232f6c38336d6b7f09789b5 100644
Binary files a/img/hair/sides/fluffy ponytail/navel.png and b/img/hair/sides/fluffy ponytail/navel.png differ
diff --git a/img/hair/sides/fluffy ponytail/short.png b/img/hair/sides/fluffy ponytail/short.png
index 6ca317e72fa4e4120bdfc90c0727732ef3d248f3..1c462769670c207c87cb0adb71720e9d5b446b61 100644
Binary files a/img/hair/sides/fluffy ponytail/short.png and b/img/hair/sides/fluffy ponytail/short.png differ
diff --git a/img/hair/sides/fluffy ponytail/shoulder.png b/img/hair/sides/fluffy ponytail/shoulder.png
index dd1258a25125276b51dfa5257687a67c64abb43d..eba65c5df27c2b44031c4f88ca74217fd2ec6d5f 100644
Binary files a/img/hair/sides/fluffy ponytail/shoulder.png and b/img/hair/sides/fluffy ponytail/shoulder.png differ
diff --git a/img/hair/sides/fluffy ponytail/thighs.png b/img/hair/sides/fluffy ponytail/thighs.png
index bfc3066d6a24e03dd26751ff782d420b49d9e540..d9af0cc279f4bced77149158ba2b382167b1fbdb 100644
Binary files a/img/hair/sides/fluffy ponytail/thighs.png and b/img/hair/sides/fluffy ponytail/thighs.png differ
diff --git a/img/hair/sides/french bob/chest.png b/img/hair/sides/french bob/chest.png
index a75f4fc75fc28ef23cf00eac767437d34e3a629b..81ab1349b25f5d10d35ec5d56f46c9a7f6562a74 100644
Binary files a/img/hair/sides/french bob/chest.png and b/img/hair/sides/french bob/chest.png differ
diff --git a/img/hair/sides/french bob/feet.png b/img/hair/sides/french bob/feet.png
index a75f4fc75fc28ef23cf00eac767437d34e3a629b..81ab1349b25f5d10d35ec5d56f46c9a7f6562a74 100644
Binary files a/img/hair/sides/french bob/feet.png and b/img/hair/sides/french bob/feet.png differ
diff --git a/img/hair/sides/french bob/navel.png b/img/hair/sides/french bob/navel.png
index a75f4fc75fc28ef23cf00eac767437d34e3a629b..81ab1349b25f5d10d35ec5d56f46c9a7f6562a74 100644
Binary files a/img/hair/sides/french bob/navel.png and b/img/hair/sides/french bob/navel.png differ
diff --git a/img/hair/sides/french bob/short.png b/img/hair/sides/french bob/short.png
index a75f4fc75fc28ef23cf00eac767437d34e3a629b..81ab1349b25f5d10d35ec5d56f46c9a7f6562a74 100644
Binary files a/img/hair/sides/french bob/short.png and b/img/hair/sides/french bob/short.png differ
diff --git a/img/hair/sides/french bob/shoulder.png b/img/hair/sides/french bob/shoulder.png
index a75f4fc75fc28ef23cf00eac767437d34e3a629b..81ab1349b25f5d10d35ec5d56f46c9a7f6562a74 100644
Binary files a/img/hair/sides/french bob/shoulder.png and b/img/hair/sides/french bob/shoulder.png differ
diff --git a/img/hair/sides/french bob/thighs.png b/img/hair/sides/french bob/thighs.png
index a75f4fc75fc28ef23cf00eac767437d34e3a629b..81ab1349b25f5d10d35ec5d56f46c9a7f6562a74 100644
Binary files a/img/hair/sides/french bob/thighs.png and b/img/hair/sides/french bob/thighs.png differ
diff --git a/img/hair/sides/fro/chest.png b/img/hair/sides/fro/chest.png
index 3dc1298c693ea492e6fdff1a2911edd9cc0c84fe..8401fa4f5cf6194fe81d6d765f990d3c1cf819a4 100644
Binary files a/img/hair/sides/fro/chest.png and b/img/hair/sides/fro/chest.png differ
diff --git a/img/hair/sides/fro/feet.png b/img/hair/sides/fro/feet.png
index 5d839f85a5d27bf544041c74c0cc6176fd307edc..6a2d9d7fce608bb12a8b9bfb734bc476b7db026f 100644
Binary files a/img/hair/sides/fro/feet.png and b/img/hair/sides/fro/feet.png differ
diff --git a/img/hair/sides/fro/navel.png b/img/hair/sides/fro/navel.png
index 46aeb0cd5abcb3d9b57e271c05f171b936a59cf7..afe850c69dcd7f469992dd27cd4eaf6b29cc9208 100644
Binary files a/img/hair/sides/fro/navel.png and b/img/hair/sides/fro/navel.png differ
diff --git a/img/hair/sides/fro/short.png b/img/hair/sides/fro/short.png
index db7cc99060c1db763c0f2c9ab27acd77c1b08862..fddd38dae3994ffb58e87a258ba7a0304844fac7 100644
Binary files a/img/hair/sides/fro/short.png and b/img/hair/sides/fro/short.png differ
diff --git a/img/hair/sides/fro/shoulder.png b/img/hair/sides/fro/shoulder.png
index 4e371977186133e1b6918c2e784f78f987e4ad1c..de52b2d2fa95bf5f75775362b600dc69ffef74ff 100644
Binary files a/img/hair/sides/fro/shoulder.png and b/img/hair/sides/fro/shoulder.png differ
diff --git a/img/hair/sides/fro/thighs.png b/img/hair/sides/fro/thighs.png
index 5d839f85a5d27bf544041c74c0cc6176fd307edc..6a2d9d7fce608bb12a8b9bfb734bc476b7db026f 100644
Binary files a/img/hair/sides/fro/thighs.png and b/img/hair/sides/fro/thighs.png differ
diff --git a/img/hair/sides/half-up/chest.png b/img/hair/sides/half-up/chest.png
index b42a2843c516371cb368b1abbd8c92f7577414f3..d3b1a3460cd39c22590296f3137da137a3c50b19 100644
Binary files a/img/hair/sides/half-up/chest.png and b/img/hair/sides/half-up/chest.png differ
diff --git a/img/hair/sides/half-up/feet.png b/img/hair/sides/half-up/feet.png
index aa45608264c2ca084703c842fa5866bc8704b8fd..69cb8265e1e3b9120d1bb297c636c7f67265f034 100644
Binary files a/img/hair/sides/half-up/feet.png and b/img/hair/sides/half-up/feet.png differ
diff --git a/img/hair/sides/half-up/navel.png b/img/hair/sides/half-up/navel.png
index 41d530bdae76e4be8e1af1e4e78f7bbbd8765a31..1a9ee2fd27298ba659fb84df6b794c339b66ae9f 100644
Binary files a/img/hair/sides/half-up/navel.png and b/img/hair/sides/half-up/navel.png differ
diff --git a/img/hair/sides/half-up/short.png b/img/hair/sides/half-up/short.png
index f57d95db42b4c133c802349ff747b0b95089e163..c5f41aeb79e4d7b9a07f3f5cf2bfda7f73ba30a2 100644
Binary files a/img/hair/sides/half-up/short.png and b/img/hair/sides/half-up/short.png differ
diff --git a/img/hair/sides/half-up/shoulder.png b/img/hair/sides/half-up/shoulder.png
index e2ddeabf68ba715b7334e47c96d9861055bffe44..2a71dbc9e5c34b7063cbd3dc5d466317735c1518 100644
Binary files a/img/hair/sides/half-up/shoulder.png and b/img/hair/sides/half-up/shoulder.png differ
diff --git a/img/hair/sides/half-up/thighs.png b/img/hair/sides/half-up/thighs.png
index b42e92d00895eb0bee4be5e3df78992e47df3006..f71818bf1c667f89af2927816be536934c700774 100644
Binary files a/img/hair/sides/half-up/thighs.png and b/img/hair/sides/half-up/thighs.png differ
diff --git a/img/hair/sides/heart braid/chest.png b/img/hair/sides/heart braid/chest.png
index 3b17ced7c267dd90328519a316a438be1a61e7af..142b020576000c24e347588bc7c1e3c7627e1ccb 100644
Binary files a/img/hair/sides/heart braid/chest.png and b/img/hair/sides/heart braid/chest.png differ
diff --git a/img/hair/sides/heart braid/feet.png b/img/hair/sides/heart braid/feet.png
index 53ac2a33faffd4c2e2b5c09b02ac7aa2bc83599b..7363acde9434a468ea1aef704a00ed72ebe4c17f 100644
Binary files a/img/hair/sides/heart braid/feet.png and b/img/hair/sides/heart braid/feet.png differ
diff --git a/img/hair/sides/heart braid/navel.png b/img/hair/sides/heart braid/navel.png
index 6eb268ab2dae953373bc42c30b11afde1053c6f4..dae27eb4919c0132055140e6ef59fee573dc6c3a 100644
Binary files a/img/hair/sides/heart braid/navel.png and b/img/hair/sides/heart braid/navel.png differ
diff --git a/img/hair/sides/heart braid/short.png b/img/hair/sides/heart braid/short.png
index c91386a256595861a9ed0539e0cd2009214f9849..64bff4853ae13110ad6402e70d7b587522597ca7 100644
Binary files a/img/hair/sides/heart braid/short.png and b/img/hair/sides/heart braid/short.png differ
diff --git a/img/hair/sides/heart braid/shoulder.png b/img/hair/sides/heart braid/shoulder.png
index 69563eb409a06b6d45ffc9fd01a4ee86691c32cb..d9df958abc8a451c5d9adc7f5b254660d3c77a25 100644
Binary files a/img/hair/sides/heart braid/shoulder.png and b/img/hair/sides/heart braid/shoulder.png differ
diff --git a/img/hair/sides/heart braid/thighs.png b/img/hair/sides/heart braid/thighs.png
index f7b543d0cb101374940735fa19345ffad1322b0a..b1a1a1f2482cdbeedb828c955fa8b99d3b3da36b 100644
Binary files a/img/hair/sides/heart braid/thighs.png and b/img/hair/sides/heart braid/thighs.png differ
diff --git a/img/hair/sides/jellyfish ponytail/chest.png b/img/hair/sides/jellyfish ponytail/chest.png
index ca955677788f239c76bc72c5b0c797d19bacbfc1..f839663fdce98a45b7992ea6aebe6df4ed85b5b3 100644
Binary files a/img/hair/sides/jellyfish ponytail/chest.png and b/img/hair/sides/jellyfish ponytail/chest.png differ
diff --git a/img/hair/sides/jellyfish ponytail/feet.png b/img/hair/sides/jellyfish ponytail/feet.png
index d690f98e32dcc69446aa2d598290fe286b35981d..d1b0e491eebc7d2d8750aa2de9da48ea7048ce0a 100644
Binary files a/img/hair/sides/jellyfish ponytail/feet.png and b/img/hair/sides/jellyfish ponytail/feet.png differ
diff --git a/img/hair/sides/jellyfish ponytail/navel.png b/img/hair/sides/jellyfish ponytail/navel.png
index 0e5273d7306823438591aeb432402f5a1bd414cb..23664e83f74ce2d77267c26178637eae5aaefde7 100644
Binary files a/img/hair/sides/jellyfish ponytail/navel.png and b/img/hair/sides/jellyfish ponytail/navel.png differ
diff --git a/img/hair/sides/jellyfish ponytail/short.png b/img/hair/sides/jellyfish ponytail/short.png
index 789ffabf2929e815954b89646f1f0f55d8b0c830..bed5689d12e5637e9d55c10e1667e51d28903118 100644
Binary files a/img/hair/sides/jellyfish ponytail/short.png and b/img/hair/sides/jellyfish ponytail/short.png differ
diff --git a/img/hair/sides/jellyfish ponytail/shoulder.png b/img/hair/sides/jellyfish ponytail/shoulder.png
index 72d756027d2ef2d823e5cc9a800af23a4e223785..4565a1cccf4b8f371a4ce393479181e7f6b05d62 100644
Binary files a/img/hair/sides/jellyfish ponytail/shoulder.png and b/img/hair/sides/jellyfish ponytail/shoulder.png differ
diff --git a/img/hair/sides/jellyfish ponytail/thighs.png b/img/hair/sides/jellyfish ponytail/thighs.png
index 063c9bbaf096fd832f4536dfba78acf3e8ebeb55..5ee5e2ac811118e2f77f44a3a8dae0bc5caa5848 100644
Binary files a/img/hair/sides/jellyfish ponytail/thighs.png and b/img/hair/sides/jellyfish ponytail/thighs.png differ
diff --git a/img/hair/sides/jellyfish twintails/chest.png b/img/hair/sides/jellyfish twintails/chest.png
index c82c999c6e98bfbb67bcb399421a3a408a037b00..adb470632f215ced4331bfef792fafff9cec45d9 100644
Binary files a/img/hair/sides/jellyfish twintails/chest.png and b/img/hair/sides/jellyfish twintails/chest.png differ
diff --git a/img/hair/sides/jellyfish twintails/feet.png b/img/hair/sides/jellyfish twintails/feet.png
index dd9272a31af4eeba7911a2d8ccfd414f96fe8e92..1118152a5d0b38ecd3f8713ad40da112a75865d3 100644
Binary files a/img/hair/sides/jellyfish twintails/feet.png and b/img/hair/sides/jellyfish twintails/feet.png differ
diff --git a/img/hair/sides/jellyfish twintails/navel.png b/img/hair/sides/jellyfish twintails/navel.png
index c18cd03008a7531a7bcadf13e5f5a666c779c6a9..1709d177a5c2931cc2a7ab6dd2cc7f09e6a906d6 100644
Binary files a/img/hair/sides/jellyfish twintails/navel.png and b/img/hair/sides/jellyfish twintails/navel.png differ
diff --git a/img/hair/sides/jellyfish twintails/short.png b/img/hair/sides/jellyfish twintails/short.png
index 0dd7c50c6c0e91e87a078d0c1069d40c3129fb9b..7027af0a4486ef68f2a800bfa20510dbbff402bd 100644
Binary files a/img/hair/sides/jellyfish twintails/short.png and b/img/hair/sides/jellyfish twintails/short.png differ
diff --git a/img/hair/sides/jellyfish twintails/shoulder.png b/img/hair/sides/jellyfish twintails/shoulder.png
index 446d5a3cef3921f3b60bd33919b2dc959a9c4f35..c5ec7248b9bd6cd9dc09caaa5309e5ad1ec17527 100644
Binary files a/img/hair/sides/jellyfish twintails/shoulder.png and b/img/hair/sides/jellyfish twintails/shoulder.png differ
diff --git a/img/hair/sides/jellyfish twintails/thighs.png b/img/hair/sides/jellyfish twintails/thighs.png
index 7a35fb4e4fc022a1946861e6b3175da7b84c140d..bbe1bc228a13f705ba54e526419b983a6bd5dd91 100644
Binary files a/img/hair/sides/jellyfish twintails/thighs.png and b/img/hair/sides/jellyfish twintails/thighs.png differ
diff --git a/img/hair/sides/layered bob/chest.png b/img/hair/sides/layered bob/chest.png
index f770749140ac32649cec8bf88c18120faed0a984..d5c4e8b4af8a8d8ca5d2fe3522e08907b347ddd0 100644
Binary files a/img/hair/sides/layered bob/chest.png and b/img/hair/sides/layered bob/chest.png differ
diff --git a/img/hair/sides/layered bob/feet.png b/img/hair/sides/layered bob/feet.png
index b7172d947a86023467a796c7842bc161c6856994..4b9cfdecacd07b222e1e24c6cff1f1d08335bbc3 100644
Binary files a/img/hair/sides/layered bob/feet.png and b/img/hair/sides/layered bob/feet.png differ
diff --git a/img/hair/sides/layered bob/navel.png b/img/hair/sides/layered bob/navel.png
index 01c95d2c846b745f25b33b1aea6fc4c873eb69b1..2ce27c4b0f6a2d7791f82afff35cbee89c9735c5 100644
Binary files a/img/hair/sides/layered bob/navel.png and b/img/hair/sides/layered bob/navel.png differ
diff --git a/img/hair/sides/layered bob/short.png b/img/hair/sides/layered bob/short.png
index cc3dce9c0b801ab3b64f9e0833c95a370f9f50ff..6c3069b4a9bda852f301f81622a1850826717e8e 100644
Binary files a/img/hair/sides/layered bob/short.png and b/img/hair/sides/layered bob/short.png differ
diff --git a/img/hair/sides/layered bob/shoulder.png b/img/hair/sides/layered bob/shoulder.png
index 9bb66e7fe9b267564822f4128f2839ba5b47a528..b4293620ac44c95252475b1a0796610b1274b954 100644
Binary files a/img/hair/sides/layered bob/shoulder.png and b/img/hair/sides/layered bob/shoulder.png differ
diff --git a/img/hair/sides/layered bob/thighs.png b/img/hair/sides/layered bob/thighs.png
index fcf01a8e057ef96008e3592073f7380bd4164197..8d91a829ef085d05e63861d62ef8bb10717ee86c 100644
Binary files a/img/hair/sides/layered bob/thighs.png and b/img/hair/sides/layered bob/thighs.png differ
diff --git a/img/hair/sides/left fishtail/chest.png b/img/hair/sides/left fishtail/chest.png
index 513614696ef2bb458f6c936fd43fd7ec8d705eac..6cf47b5752dd4e5ad78035efaf65f5ef122c9e71 100644
Binary files a/img/hair/sides/left fishtail/chest.png and b/img/hair/sides/left fishtail/chest.png differ
diff --git a/img/hair/sides/left fishtail/feet.png b/img/hair/sides/left fishtail/feet.png
index 38787b7020674c53bb9087569d234c4ee212fd67..d0c8fad11c8b08adfcf006c7fd9df13140cd7f13 100644
Binary files a/img/hair/sides/left fishtail/feet.png and b/img/hair/sides/left fishtail/feet.png differ
diff --git a/img/hair/sides/left fishtail/navel.png b/img/hair/sides/left fishtail/navel.png
index bcc6e56888eef75df4913812652fc0d6ab5394ef..5cd438e480a62c9b9b78f343d92b49d78240d324 100644
Binary files a/img/hair/sides/left fishtail/navel.png and b/img/hair/sides/left fishtail/navel.png differ
diff --git a/img/hair/sides/left fishtail/short.png b/img/hair/sides/left fishtail/short.png
index 7e8c0379c4db695a158826780b12c4e19504a15b..91d0f7c35cb9be61cd723a97ee8cf8803f027de2 100644
Binary files a/img/hair/sides/left fishtail/short.png and b/img/hair/sides/left fishtail/short.png differ
diff --git a/img/hair/sides/left fishtail/shoulder.png b/img/hair/sides/left fishtail/shoulder.png
index a2a4fc9a4ab9b51fec73868e846ac7cdf4afbfa8..3541cf72ba736bed51cf6dc0c15406f6fe63a359 100644
Binary files a/img/hair/sides/left fishtail/shoulder.png and b/img/hair/sides/left fishtail/shoulder.png differ
diff --git a/img/hair/sides/left fishtail/thighs.png b/img/hair/sides/left fishtail/thighs.png
index 4d85991073920753c3610c7010e876df1dfce395..861d26611bebc1f200c0baed53639c455e53f53c 100644
Binary files a/img/hair/sides/left fishtail/thighs.png and b/img/hair/sides/left fishtail/thighs.png differ
diff --git a/img/hair/sides/loop braid/chest.png b/img/hair/sides/loop braid/chest.png
index cc313fbfc95de20029cca06e2ae57297b3b1691d..5890d0093f79e6bcd205978e182143b1108b1f2b 100644
Binary files a/img/hair/sides/loop braid/chest.png and b/img/hair/sides/loop braid/chest.png differ
diff --git a/img/hair/sides/loop braid/feet.png b/img/hair/sides/loop braid/feet.png
index b15f4f8f4618dcd46c78724d7f12f8221fbc0f4c..8ce4a9cc301150d68c6349ea741e5beac049f5ca 100644
Binary files a/img/hair/sides/loop braid/feet.png and b/img/hair/sides/loop braid/feet.png differ
diff --git a/img/hair/sides/loop braid/navel.png b/img/hair/sides/loop braid/navel.png
index 46521bba30e0ff75344c7946be69e1923911eaa5..061784124891cf2ee7d50684db4eee8d918151d3 100644
Binary files a/img/hair/sides/loop braid/navel.png and b/img/hair/sides/loop braid/navel.png differ
diff --git a/img/hair/sides/loop braid/short.png b/img/hair/sides/loop braid/short.png
index a2b808383c85ced2ff4ea1bb06d8fe66107f9749..6cc62c996a27fef91357ffda08d2528a776f0037 100644
Binary files a/img/hair/sides/loop braid/short.png and b/img/hair/sides/loop braid/short.png differ
diff --git a/img/hair/sides/loop braid/shoulder.png b/img/hair/sides/loop braid/shoulder.png
index 463b0f58d08f9253b00258592a06835a8efdac34..3589a6df515d50b31f40597e28787c2d8ce95949 100644
Binary files a/img/hair/sides/loop braid/shoulder.png and b/img/hair/sides/loop braid/shoulder.png differ
diff --git a/img/hair/sides/loop braid/thighs.png b/img/hair/sides/loop braid/thighs.png
index 5c21a9c78795a41565da6f2cc977bc8ba7e7917c..bfe95ba7116eb9071caba70c723dd5e521cffbf2 100644
Binary files a/img/hair/sides/loop braid/thighs.png and b/img/hair/sides/loop braid/thighs.png differ
diff --git a/img/hair/sides/loose/chest.png b/img/hair/sides/loose/chest.png
index ae9f01e3ecfd67f59092c2e3f5602cac6a81a08a..b44b5f846db19b1471ccef32964fc336d5357e04 100644
Binary files a/img/hair/sides/loose/chest.png and b/img/hair/sides/loose/chest.png differ
diff --git a/img/hair/sides/loose/feet.png b/img/hair/sides/loose/feet.png
index 2c10960c2b5127f80275a39b0a13b7d8f302bebd..b05ce8b19b435eb0dba3e1a1d8b8d20b05164370 100644
Binary files a/img/hair/sides/loose/feet.png and b/img/hair/sides/loose/feet.png differ
diff --git a/img/hair/sides/loose/navel.png b/img/hair/sides/loose/navel.png
index 5e5f71a53ee8e98fe59878d08aa9f6d8b923d2a8..87fce7212ee705815121895f3f50aaa64bc25cc9 100644
Binary files a/img/hair/sides/loose/navel.png and b/img/hair/sides/loose/navel.png differ
diff --git a/img/hair/sides/loose/short.png b/img/hair/sides/loose/short.png
index 946d37ac09523492cd5eaf66b3232675ebca702c..7df0b04f0ca8537d69ac0b98923e61ab3fcc7ca7 100644
Binary files a/img/hair/sides/loose/short.png and b/img/hair/sides/loose/short.png differ
diff --git a/img/hair/sides/loose/shoulder.png b/img/hair/sides/loose/shoulder.png
index 0b7e134979129f240d033bc0c3da071e5dacda72..8f9edbdfc1349efdffc15f6bcdfa258405c8341e 100644
Binary files a/img/hair/sides/loose/shoulder.png and b/img/hair/sides/loose/shoulder.png differ
diff --git a/img/hair/sides/loose/thighs.png b/img/hair/sides/loose/thighs.png
index a30c0719149058e945b6f225496070acac1e9111..a15378dc18b8832c7d025d95fa3ee02f0c58065f 100644
Binary files a/img/hair/sides/loose/thighs.png and b/img/hair/sides/loose/thighs.png differ
diff --git a/img/hair/sides/low tails/chest.png b/img/hair/sides/low tails/chest.png
index c6c19e66bbb513f33fbf6238a591254101a72db0..2dff714623df285ef792958090a7810d3df87a90 100644
Binary files a/img/hair/sides/low tails/chest.png and b/img/hair/sides/low tails/chest.png differ
diff --git a/img/hair/sides/low tails/feet.png b/img/hair/sides/low tails/feet.png
index 5215edd113a40cb3fb18a3e7877f442f63485239..a80bab5fdbd260d24522e7205972ae1dc979549a 100644
Binary files a/img/hair/sides/low tails/feet.png and b/img/hair/sides/low tails/feet.png differ
diff --git a/img/hair/sides/low tails/navel.png b/img/hair/sides/low tails/navel.png
index 52453c4fb64de5125c853dbf2e57bf410a5b9200..0d6d69c1d57358c6c6f82aa4a942f9eb07b3cd25 100644
Binary files a/img/hair/sides/low tails/navel.png and b/img/hair/sides/low tails/navel.png differ
diff --git a/img/hair/sides/low tails/short.png b/img/hair/sides/low tails/short.png
index bef2ab3aba5d00255a611c1d8e92b81569165726..8b1bc3ce61c9489d2d5fa1721eb574cca8e5af80 100644
Binary files a/img/hair/sides/low tails/short.png and b/img/hair/sides/low tails/short.png differ
diff --git a/img/hair/sides/low tails/shoulder.png b/img/hair/sides/low tails/shoulder.png
index 51bee623b21bc3909255e3f3b085176cc19dd7bf..f72ffb5268c67c7bb45c810930f6ea99d304a660 100644
Binary files a/img/hair/sides/low tails/shoulder.png and b/img/hair/sides/low tails/shoulder.png differ
diff --git a/img/hair/sides/low tails/thighs.png b/img/hair/sides/low tails/thighs.png
index f4149554a5e67b37d4ee8ab26e95aeaebdc90f14..4a1851255b565700096529ad2200fbf7cd1b31f9 100644
Binary files a/img/hair/sides/low tails/thighs.png and b/img/hair/sides/low tails/thighs.png differ
diff --git a/img/hair/sides/messy bun/chest.png b/img/hair/sides/messy bun/chest.png
index b4802817cb4a458932753987a9922e00aaa4419f..cf56199dd16f408526b0f09c3f3f34ca423b3171 100644
Binary files a/img/hair/sides/messy bun/chest.png and b/img/hair/sides/messy bun/chest.png differ
diff --git a/img/hair/sides/messy bun/feet.png b/img/hair/sides/messy bun/feet.png
index dff341661750ad33601db01e5f0d47abf6fc3b77..15e1f894838f5fb8c8dd9fcb8b1e1e3d1ad891ea 100644
Binary files a/img/hair/sides/messy bun/feet.png and b/img/hair/sides/messy bun/feet.png differ
diff --git a/img/hair/sides/messy bun/navel.png b/img/hair/sides/messy bun/navel.png
index 67f4ab89503f7f31466c5c409b51a0126defa0b8..cf56199dd16f408526b0f09c3f3f34ca423b3171 100644
Binary files a/img/hair/sides/messy bun/navel.png and b/img/hair/sides/messy bun/navel.png differ
diff --git a/img/hair/sides/messy bun/short.png b/img/hair/sides/messy bun/short.png
index ee6aae79b64d1c209e643ed6b6e9dd0e5c0f60ab..21c1eddf59126df90b85b778d27d087d07f2d8b5 100644
Binary files a/img/hair/sides/messy bun/short.png and b/img/hair/sides/messy bun/short.png differ
diff --git a/img/hair/sides/messy bun/shoulder.png b/img/hair/sides/messy bun/shoulder.png
index ee6aae79b64d1c209e643ed6b6e9dd0e5c0f60ab..21c1eddf59126df90b85b778d27d087d07f2d8b5 100644
Binary files a/img/hair/sides/messy bun/shoulder.png and b/img/hair/sides/messy bun/shoulder.png differ
diff --git a/img/hair/sides/messy bun/thighs.png b/img/hair/sides/messy bun/thighs.png
index 22c046c6a3db9db9911866c28f11527929ff65e7..15e1f894838f5fb8c8dd9fcb8b1e1e3d1ad891ea 100644
Binary files a/img/hair/sides/messy bun/thighs.png and b/img/hair/sides/messy bun/thighs.png differ
diff --git a/img/hair/sides/messy ponytail/chest.png b/img/hair/sides/messy ponytail/chest.png
index c812cbbdc41c178e2a8390a995e601cfd9cb7d10..671fc0580ea0ec82170d8277c61b4935798becbc 100644
Binary files a/img/hair/sides/messy ponytail/chest.png and b/img/hair/sides/messy ponytail/chest.png differ
diff --git a/img/hair/sides/messy ponytail/feet.png b/img/hair/sides/messy ponytail/feet.png
index 0f3864bb5b2082b5e0613a306fbdcd9785674ae5..8f37ff64df528c9ef9a66c0c4c59d2241c564013 100644
Binary files a/img/hair/sides/messy ponytail/feet.png and b/img/hair/sides/messy ponytail/feet.png differ
diff --git a/img/hair/sides/messy ponytail/navel.png b/img/hair/sides/messy ponytail/navel.png
index ea560d38f90934466485c7ad9c8e0c1ba6d60b46..12a7466dcdf2b4ce00548ec72d0aac44fdb4a54e 100644
Binary files a/img/hair/sides/messy ponytail/navel.png and b/img/hair/sides/messy ponytail/navel.png differ
diff --git a/img/hair/sides/messy ponytail/short.png b/img/hair/sides/messy ponytail/short.png
index 1f270ee29fbc5f9477f995647790199cbf7f613a..e76f5b6bbbd9f4e316a3629930dc8c1809da767a 100644
Binary files a/img/hair/sides/messy ponytail/short.png and b/img/hair/sides/messy ponytail/short.png differ
diff --git a/img/hair/sides/messy ponytail/shoulder.png b/img/hair/sides/messy ponytail/shoulder.png
index 44790a6412286813f300e7539e4a1114db5adee3..0f5da0694cfb44484a24b293efdd3a703db12656 100644
Binary files a/img/hair/sides/messy ponytail/shoulder.png and b/img/hair/sides/messy ponytail/shoulder.png differ
diff --git a/img/hair/sides/messy ponytail/thighs.png b/img/hair/sides/messy ponytail/thighs.png
index 2cd6a4ec861d0805d4974c47f5e792b44cd74e96..61e07b392f1a7006c68d9fac04c08c0ead58739b 100644
Binary files a/img/hair/sides/messy ponytail/thighs.png and b/img/hair/sides/messy ponytail/thighs.png differ
diff --git a/img/hair/sides/messy/chest.png b/img/hair/sides/messy/chest.png
index 5f7000737ac935dcf224461c7885b4e7dc600804..085ad33c3d0d97a303e2cc28a94e18efed4409d1 100644
Binary files a/img/hair/sides/messy/chest.png and b/img/hair/sides/messy/chest.png differ
diff --git a/img/hair/sides/messy/feet.png b/img/hair/sides/messy/feet.png
index e93b6ddcfab0ffeb1e357ac7b873fdb42b293db7..37cc38a9088638faf672eadf44d2547d4817e877 100644
Binary files a/img/hair/sides/messy/feet.png and b/img/hair/sides/messy/feet.png differ
diff --git a/img/hair/sides/messy/navel.png b/img/hair/sides/messy/navel.png
index 826c4181db6f88592481ba5678c8c7a2813dce43..96e6fcaa2a8a8af30f65ef7efd3c4faff83b82fa 100644
Binary files a/img/hair/sides/messy/navel.png and b/img/hair/sides/messy/navel.png differ
diff --git a/img/hair/sides/messy/short.png b/img/hair/sides/messy/short.png
index 6ebf16c084307185c464d05f6a6b2c078dc424a4..1815dde2f162a639794c20655989adf17b68ff5a 100644
Binary files a/img/hair/sides/messy/short.png and b/img/hair/sides/messy/short.png differ
diff --git a/img/hair/sides/messy/shoulder.png b/img/hair/sides/messy/shoulder.png
index 638f6c5ec98fc076e8a7bde2f2bfc9ceff7908ba..8c2917373928ba32ce319e48e6beac4418526a88 100644
Binary files a/img/hair/sides/messy/shoulder.png and b/img/hair/sides/messy/shoulder.png differ
diff --git a/img/hair/sides/messy/thighs.png b/img/hair/sides/messy/thighs.png
index e93b6ddcfab0ffeb1e357ac7b873fdb42b293db7..37cc38a9088638faf672eadf44d2547d4817e877 100644
Binary files a/img/hair/sides/messy/thighs.png and b/img/hair/sides/messy/thighs.png differ
diff --git a/img/hair/sides/neat/chest.png b/img/hair/sides/neat/chest.png
index fc4609f0bdb6672b220547b61af3dd168e86847f..650aa08bd36b55c284399b7c9e26aa3137b4a05b 100644
Binary files a/img/hair/sides/neat/chest.png and b/img/hair/sides/neat/chest.png differ
diff --git a/img/hair/sides/neat/feet.png b/img/hair/sides/neat/feet.png
index c7054e3b1adb4be442e0d663cdc2b25b482d87f8..7ab8acf7cca242b48d0b60c3a9dbce11d6c96e50 100644
Binary files a/img/hair/sides/neat/feet.png and b/img/hair/sides/neat/feet.png differ
diff --git a/img/hair/sides/neat/navel.png b/img/hair/sides/neat/navel.png
index 43c177d34ff168e8fdd8b1d7fea2bfa70a1ad813..f0b6f5dcb0e173252d72a59d9b90f6599e858f30 100644
Binary files a/img/hair/sides/neat/navel.png and b/img/hair/sides/neat/navel.png differ
diff --git a/img/hair/sides/neat/short.png b/img/hair/sides/neat/short.png
index 18a7ff67ba74ac345984cec3a6ff882784dff9b1..a721a6efb1d89d8ad8c5d9b677b048f00310fada 100644
Binary files a/img/hair/sides/neat/short.png and b/img/hair/sides/neat/short.png differ
diff --git a/img/hair/sides/neat/shoulder.png b/img/hair/sides/neat/shoulder.png
index 5b0394ae9cd30e22b2ac19e3ec1b46a52d4712c2..037e4a458531ea63e2693a5769567f11601ea202 100644
Binary files a/img/hair/sides/neat/shoulder.png and b/img/hair/sides/neat/shoulder.png differ
diff --git a/img/hair/sides/neat/thighs.png b/img/hair/sides/neat/thighs.png
index 52f06d32bbde1669eaf470a06f452bc2c1b233ae..9424174fab9fe3a97cb3480fcfd7563fa4098f90 100644
Binary files a/img/hair/sides/neat/thighs.png and b/img/hair/sides/neat/thighs.png differ
diff --git a/img/hair/sides/pigtails/chest.png b/img/hair/sides/pigtails/chest.png
index 1261ee7669400c581a9418e4e1426db43f325397..5c37ce92303bcfbd4248ddd4d81d5acd38f16591 100644
Binary files a/img/hair/sides/pigtails/chest.png and b/img/hair/sides/pigtails/chest.png differ
diff --git a/img/hair/sides/pigtails/feet.png b/img/hair/sides/pigtails/feet.png
index b9dfaceecfd058a49cb92958d1edbd81f4d4562b..7255df6c5842726b21b735a30055e2ce21c3e851 100644
Binary files a/img/hair/sides/pigtails/feet.png and b/img/hair/sides/pigtails/feet.png differ
diff --git a/img/hair/sides/pigtails/navel.png b/img/hair/sides/pigtails/navel.png
index 51fcc462f18e7c640fedd1fa18e2c63d807aeec8..d30a292250676f85be10a53e6d916dadec309d27 100644
Binary files a/img/hair/sides/pigtails/navel.png and b/img/hair/sides/pigtails/navel.png differ
diff --git a/img/hair/sides/pigtails/short.png b/img/hair/sides/pigtails/short.png
index d4cdb47c052e19ed566886a91b561e619f66a90f..99c7ddf7495dd9a1433857564dc2288fd0b9b798 100644
Binary files a/img/hair/sides/pigtails/short.png and b/img/hair/sides/pigtails/short.png differ
diff --git a/img/hair/sides/pigtails/shoulder.png b/img/hair/sides/pigtails/shoulder.png
index ddcf204ba273520e0e78e7e058e8d307b216b6bf..a239a9f22264ff141b48e17eafe7093f7f1c3380 100644
Binary files a/img/hair/sides/pigtails/shoulder.png and b/img/hair/sides/pigtails/shoulder.png differ
diff --git a/img/hair/sides/pigtails/thighs.png b/img/hair/sides/pigtails/thighs.png
index 3735b96c47837781236e8f88de2c161c71f3f924..87ace2a1f10c49bda333afcca5d22c01a1e973eb 100644
Binary files a/img/hair/sides/pigtails/thighs.png and b/img/hair/sides/pigtails/thighs.png differ
diff --git a/img/hair/sides/ponytail/chest.png b/img/hair/sides/ponytail/chest.png
index d95f5654f034a1ee56a2e23bea19a63547603dd4..55efb59eac8248c4991f21938cc755cf9b80dbdc 100644
Binary files a/img/hair/sides/ponytail/chest.png and b/img/hair/sides/ponytail/chest.png differ
diff --git a/img/hair/sides/ponytail/feet.png b/img/hair/sides/ponytail/feet.png
index 579987e9624b54f6014d1d57ab7c9e51e2dba37d..eaebf4339f69762455389db026b66a6848d5c0d2 100644
Binary files a/img/hair/sides/ponytail/feet.png and b/img/hair/sides/ponytail/feet.png differ
diff --git a/img/hair/sides/ponytail/navel.png b/img/hair/sides/ponytail/navel.png
index 492b44d79e8ca6811757171df7cefc6a0e9acb9b..f0711e133790ee8e2060d9cd135cdb017c4e73b5 100644
Binary files a/img/hair/sides/ponytail/navel.png and b/img/hair/sides/ponytail/navel.png differ
diff --git a/img/hair/sides/ponytail/short.png b/img/hair/sides/ponytail/short.png
index 4054f321691c084b5cc351bd5bd9f72401540b3d..82cf3ff115e0716f2c8e8d0ebb2649da3d38b8f6 100644
Binary files a/img/hair/sides/ponytail/short.png and b/img/hair/sides/ponytail/short.png differ
diff --git a/img/hair/sides/ponytail/shoulder.png b/img/hair/sides/ponytail/shoulder.png
index 3b7b835fb7621eef7f1dc9a5189db030cad3fbc6..7eb6d314e0c28a54b2b8342ef83df863b1176201 100644
Binary files a/img/hair/sides/ponytail/shoulder.png and b/img/hair/sides/ponytail/shoulder.png differ
diff --git a/img/hair/sides/ponytail/thighs.png b/img/hair/sides/ponytail/thighs.png
index 0c553bfeef38210b9c70ebd0848bb39a24a72283..2f55c5e305268b276330f7c42a5b85785c437f04 100644
Binary files a/img/hair/sides/ponytail/thighs.png and b/img/hair/sides/ponytail/thighs.png differ
diff --git a/img/hair/sides/ribbon tail/chest.png b/img/hair/sides/ribbon tail/chest.png
index b8be49c036e7d13a9292c82abf571363fe30f334..f3f7f069060b0b289d42e1648439e8ffb7424f52 100644
Binary files a/img/hair/sides/ribbon tail/chest.png and b/img/hair/sides/ribbon tail/chest.png differ
diff --git a/img/hair/sides/ribbon tail/feet.png b/img/hair/sides/ribbon tail/feet.png
index 8f57810b5ea5352340c9c7a57181a10c0f6dd729..717dd00432cd4a3b12565f4d0dc7aa9e3b7161c5 100644
Binary files a/img/hair/sides/ribbon tail/feet.png and b/img/hair/sides/ribbon tail/feet.png differ
diff --git a/img/hair/sides/ribbon tail/navel.png b/img/hair/sides/ribbon tail/navel.png
index 11e82cd743077bff37d4811b4f6dfb553d5c4443..e1e498171db5c60f4e923cfe93519fc48473984d 100644
Binary files a/img/hair/sides/ribbon tail/navel.png and b/img/hair/sides/ribbon tail/navel.png differ
diff --git a/img/hair/sides/ribbon tail/short.png b/img/hair/sides/ribbon tail/short.png
index b3965dc280dfd9b69e996526e025eea7875b7ed9..e7dd40f5b605480fc7b57947ee0f2bb5d4544039 100644
Binary files a/img/hair/sides/ribbon tail/short.png and b/img/hair/sides/ribbon tail/short.png differ
diff --git a/img/hair/sides/ribbon tail/shoulder.png b/img/hair/sides/ribbon tail/shoulder.png
index 7b36fb597055748105bbf015b9afc8ca71ed5cca..f017ca27545aaadbacac7506d35d3b8b8c78d339 100644
Binary files a/img/hair/sides/ribbon tail/shoulder.png and b/img/hair/sides/ribbon tail/shoulder.png differ
diff --git a/img/hair/sides/ribbon tail/thighs.png b/img/hair/sides/ribbon tail/thighs.png
index 6f5ce1c6597a923c905346f528dde7862e2caa42..62aea8466eff60e0ed5e01fb024c554dee5a7080 100644
Binary files a/img/hair/sides/ribbon tail/thighs.png and b/img/hair/sides/ribbon tail/thighs.png differ
diff --git a/img/hair/sides/right fishtail/chest.png b/img/hair/sides/right fishtail/chest.png
index 3cc77695d160b89668f8d897159a24f44f4501d7..8be727c02f568be3af20eb002e0ac2df2870eb88 100644
Binary files a/img/hair/sides/right fishtail/chest.png and b/img/hair/sides/right fishtail/chest.png differ
diff --git a/img/hair/sides/right fishtail/feet.png b/img/hair/sides/right fishtail/feet.png
index 02a3561cc1c3af34a4f320a3a1948578b4c737a7..6f54334a3a58bdd30d289879c0b73a663eb48527 100644
Binary files a/img/hair/sides/right fishtail/feet.png and b/img/hair/sides/right fishtail/feet.png differ
diff --git a/img/hair/sides/right fishtail/navel.png b/img/hair/sides/right fishtail/navel.png
index 42928da05aeb205d8dbefa481f0442f3117b3bc4..73b0b3e0c6777e7cd416575a7be6cdc582e4b642 100644
Binary files a/img/hair/sides/right fishtail/navel.png and b/img/hair/sides/right fishtail/navel.png differ
diff --git a/img/hair/sides/right fishtail/short.png b/img/hair/sides/right fishtail/short.png
index bad0b25463e3cdcbd3bf0797912694ae22e8208f..aefc92daf933b36c109db47c66651daa97a6416a 100644
Binary files a/img/hair/sides/right fishtail/short.png and b/img/hair/sides/right fishtail/short.png differ
diff --git a/img/hair/sides/right fishtail/shoulder.png b/img/hair/sides/right fishtail/shoulder.png
index 782f274b9d903c164b27227e20fc99337ffd0c9e..f937b4442cc54c50afe23669a95cd70c9f60c1f0 100644
Binary files a/img/hair/sides/right fishtail/shoulder.png and b/img/hair/sides/right fishtail/shoulder.png differ
diff --git a/img/hair/sides/right fishtail/thighs.png b/img/hair/sides/right fishtail/thighs.png
index 818a167741112737399723c33cf3de46610467e2..12f70f65a09b0b079d98e075c6e673da34e260a3 100644
Binary files a/img/hair/sides/right fishtail/thighs.png and b/img/hair/sides/right fishtail/thighs.png differ
diff --git a/img/hair/sides/ruffled/chest.png b/img/hair/sides/ruffled/chest.png
index c0d84dd745824281549c7c2948ccdb510f1965c7..69bdf244f4c9f41b8a1655e7ae25fa289605c212 100644
Binary files a/img/hair/sides/ruffled/chest.png and b/img/hair/sides/ruffled/chest.png differ
diff --git a/img/hair/sides/ruffled/feet.png b/img/hair/sides/ruffled/feet.png
index 33678801c1300244b07c0ccab88a3cb34cbe40e2..bc2bfd73bec785c7948b9a70e7a4e3c15c39422c 100644
Binary files a/img/hair/sides/ruffled/feet.png and b/img/hair/sides/ruffled/feet.png differ
diff --git a/img/hair/sides/ruffled/navel.png b/img/hair/sides/ruffled/navel.png
index 38469dc86a41ff1dcc821f5e51c9d5ec17865814..509c47b0319b2d81048f55a604816dd2f1b21d3b 100644
Binary files a/img/hair/sides/ruffled/navel.png and b/img/hair/sides/ruffled/navel.png differ
diff --git a/img/hair/sides/ruffled/short.png b/img/hair/sides/ruffled/short.png
index ac0ecf44b30c56776e8952e93ef7dd04344aafd2..10d041414b39ab1cd96709babde611c6a9bd98ce 100644
Binary files a/img/hair/sides/ruffled/short.png and b/img/hair/sides/ruffled/short.png differ
diff --git a/img/hair/sides/ruffled/shoulder.png b/img/hair/sides/ruffled/shoulder.png
index 077782489cc3eb3a599ba94cd9d3186cdd2e9e2c..82a6b766f7a3a93316a811a6bba4706cad2e2b0d 100644
Binary files a/img/hair/sides/ruffled/shoulder.png and b/img/hair/sides/ruffled/shoulder.png differ
diff --git a/img/hair/sides/ruffled/thighs.png b/img/hair/sides/ruffled/thighs.png
index e14a2285f21dc581583b9608206cfe9274e05bcf..9043a9579b07a9c0d82bfdf352482f2bdb0faba7 100644
Binary files a/img/hair/sides/ruffled/thighs.png and b/img/hair/sides/ruffled/thighs.png differ
diff --git a/img/hair/sides/sailor buns/chest.png b/img/hair/sides/sailor buns/chest.png
index bcc8f18d040f7eee86f01c9210ff95da5e90e200..2aa468b2f067275ac70830283556ee11c329c2c6 100644
Binary files a/img/hair/sides/sailor buns/chest.png and b/img/hair/sides/sailor buns/chest.png differ
diff --git a/img/hair/sides/sailor buns/feet.png b/img/hair/sides/sailor buns/feet.png
index 8a867bd6abd12bf37044335924ed0631ba340f00..54f3cedb2d53e99deccbdfad09362446b2729efd 100644
Binary files a/img/hair/sides/sailor buns/feet.png and b/img/hair/sides/sailor buns/feet.png differ
diff --git a/img/hair/sides/sailor buns/navel.png b/img/hair/sides/sailor buns/navel.png
index 28f07362373c22cfc823cb22e1c35d06190ff519..ca674055456b250674def16f3f9c9c08ef34f863 100644
Binary files a/img/hair/sides/sailor buns/navel.png and b/img/hair/sides/sailor buns/navel.png differ
diff --git a/img/hair/sides/sailor buns/short.png b/img/hair/sides/sailor buns/short.png
index c57cacfbde7a9e3c8daade6c312c9dd5a26f1d33..0fe8d71f987ea1f2a4465c59cb880c77c31b5fc4 100644
Binary files a/img/hair/sides/sailor buns/short.png and b/img/hair/sides/sailor buns/short.png differ
diff --git a/img/hair/sides/sailor buns/shoulder.png b/img/hair/sides/sailor buns/shoulder.png
index 9075559da7963912af8c6e7c37f41dafc99a2f30..627688c1c24bede633cfe9f65e4a86f327463a00 100644
Binary files a/img/hair/sides/sailor buns/shoulder.png and b/img/hair/sides/sailor buns/shoulder.png differ
diff --git a/img/hair/sides/sailor buns/thighs.png b/img/hair/sides/sailor buns/thighs.png
index d0e399f396c7be3e0f709cd57baed19b9fcb6fef..d4813cf9958c60dba5f2e62c7e3a2c6e5861cf56 100644
Binary files a/img/hair/sides/sailor buns/thighs.png and b/img/hair/sides/sailor buns/thighs.png differ
diff --git a/img/hair/sides/scorpion tails/chest.png b/img/hair/sides/scorpion tails/chest.png
index b1a3ae1e1c28877c06cab430649b06b2f2946310..3a7cc1523379d7b155fde1b56277527971db490d 100644
Binary files a/img/hair/sides/scorpion tails/chest.png and b/img/hair/sides/scorpion tails/chest.png differ
diff --git a/img/hair/sides/scorpion tails/feet.png b/img/hair/sides/scorpion tails/feet.png
index 70dbded1c609854c8368b610eca1de7a85bdf41e..c0eabdfdd0b6f86d206262685d6fc3e6f47fd8bf 100644
Binary files a/img/hair/sides/scorpion tails/feet.png and b/img/hair/sides/scorpion tails/feet.png differ
diff --git a/img/hair/sides/scorpion tails/navel.png b/img/hair/sides/scorpion tails/navel.png
index 9ed437317739136fa3fcbb1224a458565883400d..de5f63e7f77b561d48ed4bb2b0e19bd1f24970de 100644
Binary files a/img/hair/sides/scorpion tails/navel.png and b/img/hair/sides/scorpion tails/navel.png differ
diff --git a/img/hair/sides/scorpion tails/short.png b/img/hair/sides/scorpion tails/short.png
index 04bbd3883e32443d429b1f658b9d6a8129684964..188e21eca5331a6932dd69f9c295e93e1b16912c 100644
Binary files a/img/hair/sides/scorpion tails/short.png and b/img/hair/sides/scorpion tails/short.png differ
diff --git a/img/hair/sides/scorpion tails/shoulder.png b/img/hair/sides/scorpion tails/shoulder.png
index 5e65af617099e497142c12e86bf6e32ef0fba124..da961f046612558debbaf95a558279afce37ff5b 100644
Binary files a/img/hair/sides/scorpion tails/shoulder.png and b/img/hair/sides/scorpion tails/shoulder.png differ
diff --git a/img/hair/sides/scorpion tails/thighs.png b/img/hair/sides/scorpion tails/thighs.png
index 7c6827b6ec5c3e369273b4844b64796a2b0b5c1f..a739a5006c8f845a7e4832a0812d6133bd01710f 100644
Binary files a/img/hair/sides/scorpion tails/thighs.png and b/img/hair/sides/scorpion tails/thighs.png differ
diff --git a/img/hair/sides/shaved/chest.png b/img/hair/sides/shaved/chest.png
index 1687eb63d82c549cea28379f68b769d85bf1775d..10ccf7261b56445b3102a04399a379ac9f6852c3 100644
Binary files a/img/hair/sides/shaved/chest.png and b/img/hair/sides/shaved/chest.png differ
diff --git a/img/hair/sides/shaved/feet.png b/img/hair/sides/shaved/feet.png
index 1687eb63d82c549cea28379f68b769d85bf1775d..10ccf7261b56445b3102a04399a379ac9f6852c3 100644
Binary files a/img/hair/sides/shaved/feet.png and b/img/hair/sides/shaved/feet.png differ
diff --git a/img/hair/sides/shaved/navel.png b/img/hair/sides/shaved/navel.png
index 1687eb63d82c549cea28379f68b769d85bf1775d..10ccf7261b56445b3102a04399a379ac9f6852c3 100644
Binary files a/img/hair/sides/shaved/navel.png and b/img/hair/sides/shaved/navel.png differ
diff --git a/img/hair/sides/shaved/short.png b/img/hair/sides/shaved/short.png
index 1687eb63d82c549cea28379f68b769d85bf1775d..10ccf7261b56445b3102a04399a379ac9f6852c3 100644
Binary files a/img/hair/sides/shaved/short.png and b/img/hair/sides/shaved/short.png differ
diff --git a/img/hair/sides/shaved/shoulder.png b/img/hair/sides/shaved/shoulder.png
index 1687eb63d82c549cea28379f68b769d85bf1775d..10ccf7261b56445b3102a04399a379ac9f6852c3 100644
Binary files a/img/hair/sides/shaved/shoulder.png and b/img/hair/sides/shaved/shoulder.png differ
diff --git a/img/hair/sides/shaved/thighs.png b/img/hair/sides/shaved/thighs.png
index d2b31263477cefedb9f2837f0b8b19e76464f3e5..71e155b2f68f73319a1d2b37632beddadb50e529 100644
Binary files a/img/hair/sides/shaved/thighs.png and b/img/hair/sides/shaved/thighs.png differ
diff --git a/img/hair/sides/short spiky/chest.png b/img/hair/sides/short spiky/chest.png
index edfa0b594a323c085882a70ae00e7b01bcf26559..071f8e607adf0aeab310801bebaedc1abf196eb1 100644
Binary files a/img/hair/sides/short spiky/chest.png and b/img/hair/sides/short spiky/chest.png differ
diff --git a/img/hair/sides/short spiky/feet.png b/img/hair/sides/short spiky/feet.png
index 0abe155b2832b9b4d95134203f6aa2e960fbe7a8..887a64cf7f6c6648f1028ce497107d7244a4d2cb 100644
Binary files a/img/hair/sides/short spiky/feet.png and b/img/hair/sides/short spiky/feet.png differ
diff --git a/img/hair/sides/short spiky/navel.png b/img/hair/sides/short spiky/navel.png
index 94bbb57eb2a36975c4645c8a8cf60c43fd41f6ee..ab535bcfbd04a35e05ceb3ad3c25a89485467f77 100644
Binary files a/img/hair/sides/short spiky/navel.png and b/img/hair/sides/short spiky/navel.png differ
diff --git a/img/hair/sides/short spiky/short.png b/img/hair/sides/short spiky/short.png
index 423603dc275524a65fb6c641067fdd81f87d6761..d82a03d137f1e8bec7a48c0efa2a6ba46b36d329 100644
Binary files a/img/hair/sides/short spiky/short.png and b/img/hair/sides/short spiky/short.png differ
diff --git a/img/hair/sides/short spiky/shoulder.png b/img/hair/sides/short spiky/shoulder.png
index 75433c3c58cc070c9d309ef162a15e4344835e04..fe078baed2262c4451f5c598cb87f949e75a512f 100644
Binary files a/img/hair/sides/short spiky/shoulder.png and b/img/hair/sides/short spiky/shoulder.png differ
diff --git a/img/hair/sides/short spiky/thighs.png b/img/hair/sides/short spiky/thighs.png
index c9a342710099879d411bb90f4cea614efa092f4c..e7122bcb96571ed7c2ef6c75bf52df203a11a382 100644
Binary files a/img/hair/sides/short spiky/thighs.png and b/img/hair/sides/short spiky/thighs.png differ
diff --git a/img/hair/sides/short/chest.png b/img/hair/sides/short/chest.png
index 30d2ff42c93b09e85dd10a9786f718903f1351d8..cf11325289e14f3ea9c16426ba78f0742e5165ce 100644
Binary files a/img/hair/sides/short/chest.png and b/img/hair/sides/short/chest.png differ
diff --git a/img/hair/sides/short/feet.png b/img/hair/sides/short/feet.png
index 30d2ff42c93b09e85dd10a9786f718903f1351d8..cf11325289e14f3ea9c16426ba78f0742e5165ce 100644
Binary files a/img/hair/sides/short/feet.png and b/img/hair/sides/short/feet.png differ
diff --git a/img/hair/sides/short/navel.png b/img/hair/sides/short/navel.png
index 30d2ff42c93b09e85dd10a9786f718903f1351d8..cf11325289e14f3ea9c16426ba78f0742e5165ce 100644
Binary files a/img/hair/sides/short/navel.png and b/img/hair/sides/short/navel.png differ
diff --git a/img/hair/sides/short/short.png b/img/hair/sides/short/short.png
index 82de72fa888825796caa662024b24038a6becae5..af93d597b15413088acc274388eff11b30741fdc 100644
Binary files a/img/hair/sides/short/short.png and b/img/hair/sides/short/short.png differ
diff --git a/img/hair/sides/short/shoulder.png b/img/hair/sides/short/shoulder.png
index 82de72fa888825796caa662024b24038a6becae5..af93d597b15413088acc274388eff11b30741fdc 100644
Binary files a/img/hair/sides/short/shoulder.png and b/img/hair/sides/short/shoulder.png differ
diff --git a/img/hair/sides/short/thighs.png b/img/hair/sides/short/thighs.png
index fd807d1301a6c9cb9bacc82615cf38d26faa3caa..d89dd86bf4b3dd400febd354f42b7f007c946404 100644
Binary files a/img/hair/sides/short/thighs.png and b/img/hair/sides/short/thighs.png differ
diff --git a/img/hair/sides/sidecut/chest.png b/img/hair/sides/sidecut/chest.png
index a4372c063bedd46f4bfeb4974a4165fffbf4a17e..ed247b487bd8693ced5386ac73df24c0baeaa2e1 100644
Binary files a/img/hair/sides/sidecut/chest.png and b/img/hair/sides/sidecut/chest.png differ
diff --git a/img/hair/sides/sidecut/feet.png b/img/hair/sides/sidecut/feet.png
index 2cd43123a6f6ed7c8696954bf7f8398068c74a59..575075c28a4d8207c047c37b962acea8bda5ac84 100644
Binary files a/img/hair/sides/sidecut/feet.png and b/img/hair/sides/sidecut/feet.png differ
diff --git a/img/hair/sides/sidecut/navel.png b/img/hair/sides/sidecut/navel.png
index ec751717a373af2a781210bbe9e5293a720ff568..f1363cd31e7ea1411b6ed2ddfb27a9a2a5e45c9f 100644
Binary files a/img/hair/sides/sidecut/navel.png and b/img/hair/sides/sidecut/navel.png differ
diff --git a/img/hair/sides/sidecut/short.png b/img/hair/sides/sidecut/short.png
index e2235a6d3c74cd6411074beb1051601d53e5b442..afd4555865ddd64c75d4b5d9565fa6acd80d2a3b 100644
Binary files a/img/hair/sides/sidecut/short.png and b/img/hair/sides/sidecut/short.png differ
diff --git a/img/hair/sides/sidecut/shoulder.png b/img/hair/sides/sidecut/shoulder.png
index 4fd0d497b4b3a4e558863e821dbf11a78f176746..7e479b18affe93523c5e9bf860e75780c95bed3d 100644
Binary files a/img/hair/sides/sidecut/shoulder.png and b/img/hair/sides/sidecut/shoulder.png differ
diff --git a/img/hair/sides/sidecut/thighs.png b/img/hair/sides/sidecut/thighs.png
index d7e8baf83af4124acc389aa720af3696597d26e2..cdb7c4d6bdb6c6316d11f3c88c867f90add0a811 100644
Binary files a/img/hair/sides/sidecut/thighs.png and b/img/hair/sides/sidecut/thighs.png differ
diff --git a/img/hair/sides/sidetail left/chest.png b/img/hair/sides/sidetail left/chest.png
index 456d5a20ee061c7da831ba21431df4deb1bf2304..2910e643c1f035cc512c5d7a493b9d9c159847b8 100644
Binary files a/img/hair/sides/sidetail left/chest.png and b/img/hair/sides/sidetail left/chest.png differ
diff --git a/img/hair/sides/sidetail left/feet.png b/img/hair/sides/sidetail left/feet.png
index 95e802cdad82177b12668669eaa2ef6779e5756c..e47b9a16fb012675e261126dcfbc621fc79fd951 100644
Binary files a/img/hair/sides/sidetail left/feet.png and b/img/hair/sides/sidetail left/feet.png differ
diff --git a/img/hair/sides/sidetail left/navel.png b/img/hair/sides/sidetail left/navel.png
index d7c729e7a6eb2f11c367b504e0694aaeaf9f7963..4477c2f9d2a3a328505802de6d22c17b3a46082b 100644
Binary files a/img/hair/sides/sidetail left/navel.png and b/img/hair/sides/sidetail left/navel.png differ
diff --git a/img/hair/sides/sidetail left/short.png b/img/hair/sides/sidetail left/short.png
index 386b41a5c35836c62004c08636fce15fadeea86a..2c8821d015ef768fcc30284c5afb45fe8adcadb3 100644
Binary files a/img/hair/sides/sidetail left/short.png and b/img/hair/sides/sidetail left/short.png differ
diff --git a/img/hair/sides/sidetail left/shoulder.png b/img/hair/sides/sidetail left/shoulder.png
index d803a5d0aa3b079e6a0cc795648d5a597d67ab95..a162d5f1a9969edb382f67cd0d10f72daf27ab39 100644
Binary files a/img/hair/sides/sidetail left/shoulder.png and b/img/hair/sides/sidetail left/shoulder.png differ
diff --git a/img/hair/sides/sidetail left/thighs.png b/img/hair/sides/sidetail left/thighs.png
index f2bea49319533a37e155e5192b8293e6b0c37769..39fb7d951f9929056fbe29bc719dc9b42d459a12 100644
Binary files a/img/hair/sides/sidetail left/thighs.png and b/img/hair/sides/sidetail left/thighs.png differ
diff --git a/img/hair/sides/sidetail right/chest.png b/img/hair/sides/sidetail right/chest.png
index ca672b84b0250e5bbd0052e1ffcf88a296a942a3..e30859fed35b5600af35a3cd6ece4c7e20e5c8fe 100644
Binary files a/img/hair/sides/sidetail right/chest.png and b/img/hair/sides/sidetail right/chest.png differ
diff --git a/img/hair/sides/sidetail right/feet.png b/img/hair/sides/sidetail right/feet.png
index d149e677b6f0100f19e3d0e0e67e62ad806c2210..1d11a119347ebb2e2061d3dcdb0f0c65444c7ad4 100644
Binary files a/img/hair/sides/sidetail right/feet.png and b/img/hair/sides/sidetail right/feet.png differ
diff --git a/img/hair/sides/sidetail right/navel.png b/img/hair/sides/sidetail right/navel.png
index cb3e0c0252a3d2503b6b8f0b749d8f2bbdcf599b..ac138a8237fdbc61fab77d2532cdf55d2db528a7 100644
Binary files a/img/hair/sides/sidetail right/navel.png and b/img/hair/sides/sidetail right/navel.png differ
diff --git a/img/hair/sides/sidetail right/short.png b/img/hair/sides/sidetail right/short.png
index 4d42391d06274792150a131a46fb0940e5262c11..6821392f4cc9cd50e5af377b1c7fc952776562bf 100644
Binary files a/img/hair/sides/sidetail right/short.png and b/img/hair/sides/sidetail right/short.png differ
diff --git a/img/hair/sides/sidetail right/shoulder.png b/img/hair/sides/sidetail right/shoulder.png
index 930c7d87cf69bf29480e6a336894c6c56edb19fd..d99d2cc547a79d4ce35234abb4f6340b3d6dad3b 100644
Binary files a/img/hair/sides/sidetail right/shoulder.png and b/img/hair/sides/sidetail right/shoulder.png differ
diff --git a/img/hair/sides/sidetail right/thighs.png b/img/hair/sides/sidetail right/thighs.png
index 7b3ab438c672e01c006022f2360eb546f05c6900..435813cac513307089b2c427aa6c70601714d18d 100644
Binary files a/img/hair/sides/sidetail right/thighs.png and b/img/hair/sides/sidetail right/thighs.png differ
diff --git a/img/hair/sides/sleek/chest.png b/img/hair/sides/sleek/chest.png
index 36008f9da8c3ab070f28460ecb67c094568ef773..0020324928ce99be14094ea8f0520443b14bf961 100644
Binary files a/img/hair/sides/sleek/chest.png and b/img/hair/sides/sleek/chest.png differ
diff --git a/img/hair/sides/sleek/feet.png b/img/hair/sides/sleek/feet.png
index a792ba7ccee0d4e9a7ab0b21ebd7412834ae0a4f..70c2901582a69b509bf42f60249c4924fdb05396 100644
Binary files a/img/hair/sides/sleek/feet.png and b/img/hair/sides/sleek/feet.png differ
diff --git a/img/hair/sides/sleek/navel.png b/img/hair/sides/sleek/navel.png
index 2a1af317e61cae2b8ddf40545978a74b304c3dd0..f892e2b0feb15bcb32dd402ab24d39b85e67684e 100644
Binary files a/img/hair/sides/sleek/navel.png and b/img/hair/sides/sleek/navel.png differ
diff --git a/img/hair/sides/sleek/short.png b/img/hair/sides/sleek/short.png
index 11d9f1049c431547fe61c6d716583aab9e2dae98..cb9fe16f4033c3d00168711b1137a3bea888bcf6 100644
Binary files a/img/hair/sides/sleek/short.png and b/img/hair/sides/sleek/short.png differ
diff --git a/img/hair/sides/sleek/shoulder.png b/img/hair/sides/sleek/shoulder.png
index a425ae2f163ce4bf42c39e38ec0034af787a49d1..ee7b9b21d9abb5d89cad64ed6be1d6c52fbd0ea4 100644
Binary files a/img/hair/sides/sleek/shoulder.png and b/img/hair/sides/sleek/shoulder.png differ
diff --git a/img/hair/sides/sleek/thighs.png b/img/hair/sides/sleek/thighs.png
index 5eb87b427c8a0160fd1da9f7d307cbd430c4ccf1..03aafd935e32c328a3398f2022796943c4e97b84 100644
Binary files a/img/hair/sides/sleek/thighs.png and b/img/hair/sides/sleek/thighs.png differ
diff --git a/img/hair/sides/space buns/chest.png b/img/hair/sides/space buns/chest.png
index d70df39f38112e760284fbe3a3eac341d9e78768..68e55f182dc73be5bb92edec29cf57ccebfa2790 100644
Binary files a/img/hair/sides/space buns/chest.png and b/img/hair/sides/space buns/chest.png differ
diff --git a/img/hair/sides/space buns/feet.png b/img/hair/sides/space buns/feet.png
index 0a6e11173369cff17d2c8ad95a48e3d837b23dde..7f130b024adbdc1d22244c4d66c4efb4b5ed1380 100644
Binary files a/img/hair/sides/space buns/feet.png and b/img/hair/sides/space buns/feet.png differ
diff --git a/img/hair/sides/space buns/navel.png b/img/hair/sides/space buns/navel.png
index 15f18de04c6c68f5b39aab495faf062a53a07008..d18fe741f959494e1f5904dbded99e53024dbee8 100644
Binary files a/img/hair/sides/space buns/navel.png and b/img/hair/sides/space buns/navel.png differ
diff --git a/img/hair/sides/space buns/short.png b/img/hair/sides/space buns/short.png
index 984fdbf91c0728ddf60543c1cb9e8ca80889ec4f..ae2ed302ed509864bd2629c630e161a610d1fedb 100644
Binary files a/img/hair/sides/space buns/short.png and b/img/hair/sides/space buns/short.png differ
diff --git a/img/hair/sides/space buns/shoulder.png b/img/hair/sides/space buns/shoulder.png
index f1b2d34801c4d4160e5e6239439fc047be14a673..c7bf7c16795ad29d86a53fca0bb6af460477d021 100644
Binary files a/img/hair/sides/space buns/shoulder.png and b/img/hair/sides/space buns/shoulder.png differ
diff --git a/img/hair/sides/space buns/thighs.png b/img/hair/sides/space buns/thighs.png
index a2f214c7a55a8b01edf99fbb200d469c3989e2f0..c298f7963e7d51d057b56d9880e4f9c8c40cc24d 100644
Binary files a/img/hair/sides/space buns/thighs.png and b/img/hair/sides/space buns/thighs.png differ
diff --git a/img/hair/sides/straight bob/chest.png b/img/hair/sides/straight bob/chest.png
index fa54d9e9b1c787b38e9be1f154c7b4f32b0e157c..01036d796d6f1a4daa3799b9cce50533702723db 100644
Binary files a/img/hair/sides/straight bob/chest.png and b/img/hair/sides/straight bob/chest.png differ
diff --git a/img/hair/sides/straight bob/feet.png b/img/hair/sides/straight bob/feet.png
index 5c00f61c712e0c38a57ea0adf8e6e55a9272fe63..995c553e8df9d7a01a2e1ec5b98c9edb7c8be774 100644
Binary files a/img/hair/sides/straight bob/feet.png and b/img/hair/sides/straight bob/feet.png differ
diff --git a/img/hair/sides/straight bob/navel.png b/img/hair/sides/straight bob/navel.png
index fa54d9e9b1c787b38e9be1f154c7b4f32b0e157c..01036d796d6f1a4daa3799b9cce50533702723db 100644
Binary files a/img/hair/sides/straight bob/navel.png and b/img/hair/sides/straight bob/navel.png differ
diff --git a/img/hair/sides/straight bob/short.png b/img/hair/sides/straight bob/short.png
index 2a2810f480c18e45d7335300520df55adafd7cd0..20c808e44cd048e14b2a3c7aaa10dd8f83a17756 100644
Binary files a/img/hair/sides/straight bob/short.png and b/img/hair/sides/straight bob/short.png differ
diff --git a/img/hair/sides/straight bob/shoulder.png b/img/hair/sides/straight bob/shoulder.png
index 2a2810f480c18e45d7335300520df55adafd7cd0..20c808e44cd048e14b2a3c7aaa10dd8f83a17756 100644
Binary files a/img/hair/sides/straight bob/shoulder.png and b/img/hair/sides/straight bob/shoulder.png differ
diff --git a/img/hair/sides/straight bob/thighs.png b/img/hair/sides/straight bob/thighs.png
index 5c00f61c712e0c38a57ea0adf8e6e55a9272fe63..995c553e8df9d7a01a2e1ec5b98c9edb7c8be774 100644
Binary files a/img/hair/sides/straight bob/thighs.png and b/img/hair/sides/straight bob/thighs.png differ
diff --git a/img/hair/sides/straight/chest.png b/img/hair/sides/straight/chest.png
index 04107b53a092d9d282ec9237ff759f1ec73e9432..37963b1ad53f5ca146572641324034f1c94cccf0 100644
Binary files a/img/hair/sides/straight/chest.png and b/img/hair/sides/straight/chest.png differ
diff --git a/img/hair/sides/straight/feet.png b/img/hair/sides/straight/feet.png
index 4eeac014594d485815c64533ece7cfdfe5458198..2c9e774e7028bc733f78d2aceac04d5b87551f7b 100644
Binary files a/img/hair/sides/straight/feet.png and b/img/hair/sides/straight/feet.png differ
diff --git a/img/hair/sides/straight/navel.png b/img/hair/sides/straight/navel.png
index 066903e66f6d8315047b25c5db2a38f429fb5eb6..42e6e9700ab4e31ac3ba3305b6a4fb0d1d2f35ff 100644
Binary files a/img/hair/sides/straight/navel.png and b/img/hair/sides/straight/navel.png differ
diff --git a/img/hair/sides/straight/short.png b/img/hair/sides/straight/short.png
index a5455d52145ddc1a788c9b92a01e82a7ad1cc2e9..59660132eb3321243b94bc1730d745d0c2fade08 100644
Binary files a/img/hair/sides/straight/short.png and b/img/hair/sides/straight/short.png differ
diff --git a/img/hair/sides/straight/shoulder.png b/img/hair/sides/straight/shoulder.png
index acae2c8ee8a2db255c97e1fb2814e0f0c426f78f..40e8454dd7fc1cd0ed27cd08ded4c2a41cf6e71d 100644
Binary files a/img/hair/sides/straight/shoulder.png and b/img/hair/sides/straight/shoulder.png differ
diff --git a/img/hair/sides/straight/thighs.png b/img/hair/sides/straight/thighs.png
index ac184f12682935ab499e8932edf8661e76422814..e743d11dea2c984dc8a8f6e8397ad6ce84e36173 100644
Binary files a/img/hair/sides/straight/thighs.png and b/img/hair/sides/straight/thighs.png differ
diff --git a/img/hair/sides/swept left/chest.png b/img/hair/sides/swept left/chest.png
index f9a4720be2c75c0de844579ac4fe63cbea97e505..7ad9e6d652ffd4811fd07aa85095ec4e9b2c0c55 100644
Binary files a/img/hair/sides/swept left/chest.png and b/img/hair/sides/swept left/chest.png differ
diff --git a/img/hair/sides/swept left/feet.png b/img/hair/sides/swept left/feet.png
index 33c5c4e645137b7f661e99454e6e3d9ae4c118db..348f5e1793c8ba37f58352185ab27185377577ef 100644
Binary files a/img/hair/sides/swept left/feet.png and b/img/hair/sides/swept left/feet.png differ
diff --git a/img/hair/sides/swept left/navel.png b/img/hair/sides/swept left/navel.png
index 30bc31cc558e5b05785d324d045f66f473ce03ed..9150c49bcfa6f2fb29545b5a29f835c5d8bac906 100644
Binary files a/img/hair/sides/swept left/navel.png and b/img/hair/sides/swept left/navel.png differ
diff --git a/img/hair/sides/swept left/short.png b/img/hair/sides/swept left/short.png
index 70e6431d1508143ad81532c9f14e98b261bf6054..5d353b6999da9c179e2346d0264746d54e48ebbb 100644
Binary files a/img/hair/sides/swept left/short.png and b/img/hair/sides/swept left/short.png differ
diff --git a/img/hair/sides/swept left/shoulder.png b/img/hair/sides/swept left/shoulder.png
index 23d530d727a1006748266a7de5a05cdfc49233f5..30167b63adf39bfc201518b85ff880595235ca2b 100644
Binary files a/img/hair/sides/swept left/shoulder.png and b/img/hair/sides/swept left/shoulder.png differ
diff --git a/img/hair/sides/swept left/thighs.png b/img/hair/sides/swept left/thighs.png
index 1d16f0df41f1368e839e57a9201a4e40ab799ce0..70b3f2e070153625332067565fd8b6af47d3b4ce 100644
Binary files a/img/hair/sides/swept left/thighs.png and b/img/hair/sides/swept left/thighs.png differ
diff --git a/img/hair/sides/thick pigtails/chest.png b/img/hair/sides/thick pigtails/chest.png
index 5c9f388cf32b17ce5c36aa500c22c045efdaa4ef..0f7a9fef77680460f2d5f03620d65f8dde3c737d 100644
Binary files a/img/hair/sides/thick pigtails/chest.png and b/img/hair/sides/thick pigtails/chest.png differ
diff --git a/img/hair/sides/thick pigtails/feet.png b/img/hair/sides/thick pigtails/feet.png
index ff5d41f2ea1fd2826801405db7719a5273385d7d..478101b12a4cf4d447b9c0304c48019f532d06ef 100644
Binary files a/img/hair/sides/thick pigtails/feet.png and b/img/hair/sides/thick pigtails/feet.png differ
diff --git a/img/hair/sides/thick pigtails/navel.png b/img/hair/sides/thick pigtails/navel.png
index 5730873cf9db71a6d907d9498bd5d009a256abd2..bf2f2123ce106e1d4ae17bb783ab285eca215ae4 100644
Binary files a/img/hair/sides/thick pigtails/navel.png and b/img/hair/sides/thick pigtails/navel.png differ
diff --git a/img/hair/sides/thick pigtails/short.png b/img/hair/sides/thick pigtails/short.png
index 733b0cbe954b33b27aafabc4ab4d91a89e431b28..ca18377260886534594f6634570e33866cf25b8b 100644
Binary files a/img/hair/sides/thick pigtails/short.png and b/img/hair/sides/thick pigtails/short.png differ
diff --git a/img/hair/sides/thick pigtails/shoulder.png b/img/hair/sides/thick pigtails/shoulder.png
index 5555c1eaf84a7fd34f8d682f73f6cad4ba115073..142defd1dbb6ca5d66dabaee8e18b4c324158034 100644
Binary files a/img/hair/sides/thick pigtails/shoulder.png and b/img/hair/sides/thick pigtails/shoulder.png differ
diff --git a/img/hair/sides/thick pigtails/thighs.png b/img/hair/sides/thick pigtails/thighs.png
index 628e637520c7f467699b5819d555502752eca817..951e7235c53e35450d0ecb60babc226e1caffedc 100644
Binary files a/img/hair/sides/thick pigtails/thighs.png and b/img/hair/sides/thick pigtails/thighs.png differ
diff --git a/img/hair/sides/thick ponytail/chest.png b/img/hair/sides/thick ponytail/chest.png
index 058ea6c8873ef5459b0c0171337f6dbe9fe1c1e2..920f80b045a5932b548b98266b586d2afdae0ec8 100644
Binary files a/img/hair/sides/thick ponytail/chest.png and b/img/hair/sides/thick ponytail/chest.png differ
diff --git a/img/hair/sides/thick ponytail/feet.png b/img/hair/sides/thick ponytail/feet.png
index 70f10bcf9bf5fd313bab75d06981cd66e0d8bad6..1398869ec2192da452564ec3cc00248ec344bdf9 100644
Binary files a/img/hair/sides/thick ponytail/feet.png and b/img/hair/sides/thick ponytail/feet.png differ
diff --git a/img/hair/sides/thick ponytail/navel.png b/img/hair/sides/thick ponytail/navel.png
index 53aeb5353a632802f6f47f9e6f19938e97222142..198ae0ce3418d89f3172469cce4b07a616bfbef0 100644
Binary files a/img/hair/sides/thick ponytail/navel.png and b/img/hair/sides/thick ponytail/navel.png differ
diff --git a/img/hair/sides/thick ponytail/short.png b/img/hair/sides/thick ponytail/short.png
index 94d57feac5659cd0cd3948805bd39fef722a44d8..f283ba6d7340c54cbb471a191118c7e9e6f2a3c3 100644
Binary files a/img/hair/sides/thick ponytail/short.png and b/img/hair/sides/thick ponytail/short.png differ
diff --git a/img/hair/sides/thick ponytail/shoulder.png b/img/hair/sides/thick ponytail/shoulder.png
index 8150c7531013c2efdd8b648dcce2f63a984760e2..cebfd6bd6c27f4154ecac7d68ea54c17faac9d3a 100644
Binary files a/img/hair/sides/thick ponytail/shoulder.png and b/img/hair/sides/thick ponytail/shoulder.png differ
diff --git a/img/hair/sides/thick ponytail/thighs.png b/img/hair/sides/thick ponytail/thighs.png
index bbbf857efe240f23360dc75fef3d42179b6fc717..e1fb6d026c2abe811f1e4ef41e2f22371d3a8fe7 100644
Binary files a/img/hair/sides/thick ponytail/thighs.png and b/img/hair/sides/thick ponytail/thighs.png differ
diff --git a/img/hair/sides/thick sidetail/chest.png b/img/hair/sides/thick sidetail/chest.png
index f11449c23fba6d6757d2874ee65d164252df33b5..78389a46ba9b51d7572e8270b1f724ccb1296c07 100644
Binary files a/img/hair/sides/thick sidetail/chest.png and b/img/hair/sides/thick sidetail/chest.png differ
diff --git a/img/hair/sides/thick sidetail/feet.png b/img/hair/sides/thick sidetail/feet.png
index 63c04e2b8bf905c2633bd780686b53c8c0aa9e2a..40c9c71f3be827b0bd07e45dd3feeb57abe91e18 100644
Binary files a/img/hair/sides/thick sidetail/feet.png and b/img/hair/sides/thick sidetail/feet.png differ
diff --git a/img/hair/sides/thick sidetail/navel.png b/img/hair/sides/thick sidetail/navel.png
index d897c4c501c27207361560ab0cf0edaec19af89d..30e75dfe1de1ea5482e01a4d761fbdcc72e8df4a 100644
Binary files a/img/hair/sides/thick sidetail/navel.png and b/img/hair/sides/thick sidetail/navel.png differ
diff --git a/img/hair/sides/thick sidetail/short.png b/img/hair/sides/thick sidetail/short.png
index 14039161e519ae98d646cd52bdc51fc3225225bb..7567c923db9481386170ee95b843d0163d838015 100644
Binary files a/img/hair/sides/thick sidetail/short.png and b/img/hair/sides/thick sidetail/short.png differ
diff --git a/img/hair/sides/thick sidetail/shoulder.png b/img/hair/sides/thick sidetail/shoulder.png
index 453706eedebceae90342490bf593580aae8f3ae6..2d39511d752a37f52be09a6d3eac6e16db08e79b 100644
Binary files a/img/hair/sides/thick sidetail/shoulder.png and b/img/hair/sides/thick sidetail/shoulder.png differ
diff --git a/img/hair/sides/thick sidetail/thighs.png b/img/hair/sides/thick sidetail/thighs.png
index 1d41820c3fca6630675c17cb48eef93831d8a126..2427f17e2cdc1d0dc9f369e5551ade70a06b0d1d 100644
Binary files a/img/hair/sides/thick sidetail/thighs.png and b/img/hair/sides/thick sidetail/thighs.png differ
diff --git a/img/hair/sides/thick twintails/chest.png b/img/hair/sides/thick twintails/chest.png
index e846af70b99cf55044f3f433eac73c9b99b79ec1..6d8966d18625ad542bb33a7157b1251d4f3300c7 100644
Binary files a/img/hair/sides/thick twintails/chest.png and b/img/hair/sides/thick twintails/chest.png differ
diff --git a/img/hair/sides/thick twintails/feet.png b/img/hair/sides/thick twintails/feet.png
index 3fb4870ef2a14c67b4f6e29500fb38013bd34bb4..1df240b1367ff7a57d58f5184d7506242826d1db 100644
Binary files a/img/hair/sides/thick twintails/feet.png and b/img/hair/sides/thick twintails/feet.png differ
diff --git a/img/hair/sides/thick twintails/navel.png b/img/hair/sides/thick twintails/navel.png
index 88e6ed8ac7be787dd5936b5473651f429e4c99c2..4accfa8ffd2341cfa45dc8f4e4c737a8ad6c58aa 100644
Binary files a/img/hair/sides/thick twintails/navel.png and b/img/hair/sides/thick twintails/navel.png differ
diff --git a/img/hair/sides/thick twintails/short.png b/img/hair/sides/thick twintails/short.png
index 23f4086ea6c2ea0fa6a7200a5a81925605db7c6c..165a7a8d621a534e365836518d316ac4c0077df2 100644
Binary files a/img/hair/sides/thick twintails/short.png and b/img/hair/sides/thick twintails/short.png differ
diff --git a/img/hair/sides/thick twintails/shoulder.png b/img/hair/sides/thick twintails/shoulder.png
index 375b223e72f1b97c345e50311b1e137e5cc19e38..0a4ccd86a5f5affafdb40b5cea799e75534120f5 100644
Binary files a/img/hair/sides/thick twintails/shoulder.png and b/img/hair/sides/thick twintails/shoulder.png differ
diff --git a/img/hair/sides/thick twintails/thighs.png b/img/hair/sides/thick twintails/thighs.png
index bcb00a43b44284c92e74c8548804a7e54bb09fdf..cd78f011a02364bedc694ac6727a9d706a435b38 100644
Binary files a/img/hair/sides/thick twintails/thighs.png and b/img/hair/sides/thick twintails/thighs.png differ
diff --git a/img/hair/sides/twin braids/chest.png b/img/hair/sides/twin braids/chest.png
index abbe02b98b22a643397241a3b8b9192d59a3dbab..8618b0b6f23743d37f6729be3738a95c9633299c 100644
Binary files a/img/hair/sides/twin braids/chest.png and b/img/hair/sides/twin braids/chest.png differ
diff --git a/img/hair/sides/twin braids/feet.png b/img/hair/sides/twin braids/feet.png
index 9f6ba9dc631d5b98500248916d9a8d5996771d53..40e7b8302d5841a29696762a21cce95036508cfd 100644
Binary files a/img/hair/sides/twin braids/feet.png and b/img/hair/sides/twin braids/feet.png differ
diff --git a/img/hair/sides/twin braids/navel.png b/img/hair/sides/twin braids/navel.png
index 38a9e59f4151149c8eed247b209863ca69f097fc..2717833086b81f9e1014460de815a31ba9ea42b7 100644
Binary files a/img/hair/sides/twin braids/navel.png and b/img/hair/sides/twin braids/navel.png differ
diff --git a/img/hair/sides/twin braids/short.png b/img/hair/sides/twin braids/short.png
index 37d7581b4122094ae7c7dad6292066c71dcbae46..c71e37770502a8df57fc34d10ea8e074dd4eb514 100644
Binary files a/img/hair/sides/twin braids/short.png and b/img/hair/sides/twin braids/short.png differ
diff --git a/img/hair/sides/twin braids/shoulder.png b/img/hair/sides/twin braids/shoulder.png
index ee31713538013aa31037bf4fcbf72d7f70a96624..e02ce74c45cd922ffe94a8e08e7f3785b2630e1a 100644
Binary files a/img/hair/sides/twin braids/shoulder.png and b/img/hair/sides/twin braids/shoulder.png differ
diff --git a/img/hair/sides/twin braids/thighs.png b/img/hair/sides/twin braids/thighs.png
index 6e47d18fc68f942b2d473c134194e34ae97396b0..a59e48992fdc1103ebc51a3f432420fc366f29b5 100644
Binary files a/img/hair/sides/twin braids/thighs.png and b/img/hair/sides/twin braids/thighs.png differ
diff --git a/img/hair/sides/twin fishtails/chest.png b/img/hair/sides/twin fishtails/chest.png
index d64d22c192a8604d9b6d2728d1c00a7101ac189d..de830ce5bf118f450f5dee24a038892b7c20d3a6 100644
Binary files a/img/hair/sides/twin fishtails/chest.png and b/img/hair/sides/twin fishtails/chest.png differ
diff --git a/img/hair/sides/twin fishtails/feet.png b/img/hair/sides/twin fishtails/feet.png
index c3bd3b7dc2f68190430da9c6ebf4783550d40104..23b392f1bb8f884cf068573cdd8d2887d3260759 100644
Binary files a/img/hair/sides/twin fishtails/feet.png and b/img/hair/sides/twin fishtails/feet.png differ
diff --git a/img/hair/sides/twin fishtails/navel.png b/img/hair/sides/twin fishtails/navel.png
index b8904da67240f42d535818ebe4f930681abbfd4e..98775aabadee03a91b6564e2b937a87ef1bbdb65 100644
Binary files a/img/hair/sides/twin fishtails/navel.png and b/img/hair/sides/twin fishtails/navel.png differ
diff --git a/img/hair/sides/twin fishtails/short.png b/img/hair/sides/twin fishtails/short.png
index 0d2f20ca6118483ed216824972c83265cc6a1b6c..248e2ce94ecc1fe62e07cc549366395be4b609ab 100644
Binary files a/img/hair/sides/twin fishtails/short.png and b/img/hair/sides/twin fishtails/short.png differ
diff --git a/img/hair/sides/twin fishtails/shoulder.png b/img/hair/sides/twin fishtails/shoulder.png
index d0e6c326fa283ab3b14bcf173776e181cc074b05..5e307df416ea6cf9a9edcc96b2e6905e40870e09 100644
Binary files a/img/hair/sides/twin fishtails/shoulder.png and b/img/hair/sides/twin fishtails/shoulder.png differ
diff --git a/img/hair/sides/twin fishtails/thighs.png b/img/hair/sides/twin fishtails/thighs.png
index 6a50394c06b9196edac6e1ad713a00cf1fb58235..cb02c33bbfc00cb5b9ffc6fef10cdb11134ed7f2 100644
Binary files a/img/hair/sides/twin fishtails/thighs.png and b/img/hair/sides/twin fishtails/thighs.png differ
diff --git a/img/hair/sides/twintails/chest.png b/img/hair/sides/twintails/chest.png
index 7ab25f8d114e9687ef8be5ceb4d9a77142aef2f3..e72db9e943b2b8ef720b8614131e0eb04c813b6a 100644
Binary files a/img/hair/sides/twintails/chest.png and b/img/hair/sides/twintails/chest.png differ
diff --git a/img/hair/sides/twintails/feet.png b/img/hair/sides/twintails/feet.png
index cf047caf407a73bc6bbd833bebb263b9cd9b1ba0..dda8bd16de4d1f67c6a633026d55afd1fc51bdc7 100644
Binary files a/img/hair/sides/twintails/feet.png and b/img/hair/sides/twintails/feet.png differ
diff --git a/img/hair/sides/twintails/navel.png b/img/hair/sides/twintails/navel.png
index 794f3423edcbbafc9f14a1141d8163c8b50738cb..031ef6cea2bfcb390a6cf0015f0ea87f8c58bb3f 100644
Binary files a/img/hair/sides/twintails/navel.png and b/img/hair/sides/twintails/navel.png differ
diff --git a/img/hair/sides/twintails/short.png b/img/hair/sides/twintails/short.png
index edddcffc0fcc90e81b06d15b3b8a40900c04c5e9..1f1c1625844ccc0b97606c87d4947aac8fc13b02 100644
Binary files a/img/hair/sides/twintails/short.png and b/img/hair/sides/twintails/short.png differ
diff --git a/img/hair/sides/twintails/shoulder.png b/img/hair/sides/twintails/shoulder.png
index 3fc587f418a6e346d5c258a68c10dc06d42b1a6a..ba1ae84c8180bcd13d3191c6baafe62a5cf47bbf 100644
Binary files a/img/hair/sides/twintails/shoulder.png and b/img/hair/sides/twintails/shoulder.png differ
diff --git a/img/hair/sides/twintails/thighs.png b/img/hair/sides/twintails/thighs.png
index fde8f0f1fab7cdf468a039e3dc97cca44f6e2519..9864beb14a2ff77eb27a124b5b503371cc80a189 100644
Binary files a/img/hair/sides/twintails/thighs.png and b/img/hair/sides/twintails/thighs.png differ
diff --git a/img/transformations/angel/backbrokenhalo.png b/img/transformations/angel/backbrokenhalo.png
index 9beb77172335283d941f333f8ad2d32357c48c49..610d558b708c891e3b0ce4c5a317e13fde0250c2 100644
Binary files a/img/transformations/angel/backbrokenhalo.png and b/img/transformations/angel/backbrokenhalo.png differ
diff --git a/img/transformations/angel/backhalo.png b/img/transformations/angel/backhalo.png
index df186dbabbb0f923ac822f5b2ba140bcdebd4ac5..4a9fb602274cb4ad24ac11c744404a5b1c2755eb 100644
Binary files a/img/transformations/angel/backhalo.png and b/img/transformations/angel/backhalo.png differ
diff --git a/img/transformations/angel/backhalo/default.png b/img/transformations/angel/backhalo/default.png
index df186dbabbb0f923ac822f5b2ba140bcdebd4ac5..4a9fb602274cb4ad24ac11c744404a5b1c2755eb 100644
Binary files a/img/transformations/angel/backhalo/default.png and b/img/transformations/angel/backhalo/default.png differ
diff --git a/img/transformations/angel/backhalo/traditional.png b/img/transformations/angel/backhalo/traditional.png
index 4cdc36b66281b431681a90d43e3e592d61fdc5d5..2b06d97f0f8c59f6c919a00730c579f4186279b1 100644
Binary files a/img/transformations/angel/backhalo/traditional.png and b/img/transformations/angel/backhalo/traditional.png differ
diff --git a/img/transformations/angel/brokenhalo.png b/img/transformations/angel/brokenhalo.png
index a725f955a3217198bb2fb7451752ba9292575704..d628ea9487b495f487da9aeb95df9b4755c868a5 100644
Binary files a/img/transformations/angel/brokenhalo.png and b/img/transformations/angel/brokenhalo.png differ
diff --git a/img/transformations/angel/brokenwings.png b/img/transformations/angel/brokenwings.png
index 73b1c75a6a68006f2743525de90413034b2d4afa..e2df7062149805dcede4b2c2750a385fa446b033 100644
Binary files a/img/transformations/angel/brokenwings.png and b/img/transformations/angel/brokenwings.png differ
diff --git a/img/transformations/angel/frontbrokenhalo.png b/img/transformations/angel/frontbrokenhalo.png
index 1daf91f07348474e9ec34eab23b404ed85bb0a6c..8ae76adc79f056df78e4f1403fd42fbced30e214 100644
Binary files a/img/transformations/angel/frontbrokenhalo.png and b/img/transformations/angel/frontbrokenhalo.png differ
diff --git a/img/transformations/angel/fronthalo.png b/img/transformations/angel/fronthalo.png
index f210c1fb0202912f57acc6344674be6f47c658b5..d81a7e7926fdc5913d8a80e793cecb4dd283168c 100644
Binary files a/img/transformations/angel/fronthalo.png and b/img/transformations/angel/fronthalo.png differ
diff --git a/img/transformations/angel/fronthalo/default.png b/img/transformations/angel/fronthalo/default.png
index f210c1fb0202912f57acc6344674be6f47c658b5..d81a7e7926fdc5913d8a80e793cecb4dd283168c 100644
Binary files a/img/transformations/angel/fronthalo/default.png and b/img/transformations/angel/fronthalo/default.png differ
diff --git a/img/transformations/angel/fronthalo/traditional.png b/img/transformations/angel/fronthalo/traditional.png
index ca1563d14aa99ea38360c97b5d32916c80b76aa9..01e10d742bef4561e91e6fd9b91e5c104b98797f 100644
Binary files a/img/transformations/angel/fronthalo/traditional.png and b/img/transformations/angel/fronthalo/traditional.png differ
diff --git a/img/transformations/angel/halo.png b/img/transformations/angel/halo.png
index 6d11748ca5e0b59bb885021aedde52b057033cfb..12e63b2a0578bd8ae0ffc1b10f825f8a75648cbc 100644
Binary files a/img/transformations/angel/halo.png and b/img/transformations/angel/halo.png differ
diff --git a/img/transformations/angel/leftcover.png b/img/transformations/angel/leftcover.png
index 1b3f834ff11410d7d849840ceea1c00d78b05c5d..41b6297d060f8d0e79ebf06eb33aaa130d570fc8 100644
Binary files a/img/transformations/angel/leftcover.png and b/img/transformations/angel/leftcover.png differ
diff --git a/img/transformations/angel/leftcover/classic.png b/img/transformations/angel/leftcover/classic.png
index 6edd39cd92dc8a5ebfb44d1c35b708fe63161506..50ae5718768e372f3b085462eab03c129f9cc923 100644
Binary files a/img/transformations/angel/leftcover/classic.png and b/img/transformations/angel/leftcover/classic.png differ
diff --git a/img/transformations/angel/leftcover/default.png b/img/transformations/angel/leftcover/default.png
index 1b3f834ff11410d7d849840ceea1c00d78b05c5d..41b6297d060f8d0e79ebf06eb33aaa130d570fc8 100644
Binary files a/img/transformations/angel/leftcover/default.png and b/img/transformations/angel/leftcover/default.png differ
diff --git a/img/transformations/angel/leftwing.png b/img/transformations/angel/leftwing.png
index 49221b8a42059a5ee2e0f1bd36953bea210852d8..c4a95352590492c75bfa63c3e94d8076ff533791 100644
Binary files a/img/transformations/angel/leftwing.png and b/img/transformations/angel/leftwing.png differ
diff --git a/img/transformations/angel/leftwing/classic.png b/img/transformations/angel/leftwing/classic.png
index 1f409bf8843d48fd06e54b2032c0cb0d4fdb0856..9562adc0b5915e2581386b33f365fc66ba645e02 100644
Binary files a/img/transformations/angel/leftwing/classic.png and b/img/transformations/angel/leftwing/classic.png differ
diff --git a/img/transformations/angel/leftwing/default.png b/img/transformations/angel/leftwing/default.png
index 49221b8a42059a5ee2e0f1bd36953bea210852d8..c4a95352590492c75bfa63c3e94d8076ff533791 100644
Binary files a/img/transformations/angel/leftwing/default.png and b/img/transformations/angel/leftwing/default.png differ
diff --git a/img/transformations/angel/leftwing/default_back.png b/img/transformations/angel/leftwing/default_back.png
index 403dd5ffb0380213b4c7b22e79fe37fb4475cfb8..5b9487319906f6939a883005edd9eb7a20d47902 100644
Binary files a/img/transformations/angel/leftwing/default_back.png and b/img/transformations/angel/leftwing/default_back.png differ
diff --git a/img/transformations/angel/leftwing/default_mask.png b/img/transformations/angel/leftwing/default_mask.png
index bbe13f5efc3aa4fb7f2ff4fd74fc0a108842fb13..ff7f6f5d8289cd25e538dfbac90e6fc23a488617 100644
Binary files a/img/transformations/angel/leftwing/default_mask.png and b/img/transformations/angel/leftwing/default_mask.png differ
diff --git a/img/transformations/angel/rightcover.png b/img/transformations/angel/rightcover.png
index f5624fe607980ab7b45c0f994231c82ae1283c0e..2c7b9787c41f9485c3763fd887242510ec2f44a3 100644
Binary files a/img/transformations/angel/rightcover.png and b/img/transformations/angel/rightcover.png differ
diff --git a/img/transformations/angel/rightcover/classic.png b/img/transformations/angel/rightcover/classic.png
index 0a2720d49e9bd97e1e756d922820e5ab5784517f..aa2d64cadfa81ec666c5f151f1c2d57fec631bdd 100644
Binary files a/img/transformations/angel/rightcover/classic.png and b/img/transformations/angel/rightcover/classic.png differ
diff --git a/img/transformations/angel/rightcover/default.png b/img/transformations/angel/rightcover/default.png
index f5624fe607980ab7b45c0f994231c82ae1283c0e..2c7b9787c41f9485c3763fd887242510ec2f44a3 100644
Binary files a/img/transformations/angel/rightcover/default.png and b/img/transformations/angel/rightcover/default.png differ
diff --git a/img/transformations/angel/rightwing.png b/img/transformations/angel/rightwing.png
index 4b8e76929362eda91920ca2f82b506b5985aa221..35a26db31adaee1debb7285d416d9a444ff1c8a3 100644
Binary files a/img/transformations/angel/rightwing.png and b/img/transformations/angel/rightwing.png differ
diff --git a/img/transformations/angel/rightwing/classic.png b/img/transformations/angel/rightwing/classic.png
index 0518d5d55f0330a6ff96900103fdf2eff365cb3e..e9eea8ff0514bf0a8c3a1fe8c60e47509e48349b 100644
Binary files a/img/transformations/angel/rightwing/classic.png and b/img/transformations/angel/rightwing/classic.png differ
diff --git a/img/transformations/angel/rightwing/default.png b/img/transformations/angel/rightwing/default.png
index 4b8e76929362eda91920ca2f82b506b5985aa221..35a26db31adaee1debb7285d416d9a444ff1c8a3 100644
Binary files a/img/transformations/angel/rightwing/default.png and b/img/transformations/angel/rightwing/default.png differ
diff --git a/img/transformations/angel/rightwing/default_mask.png b/img/transformations/angel/rightwing/default_mask.png
index d9ccd2af52314587399f9dabdffbe041159f226c..4f829f3806570538cdd3f8d3e82a5790bcf32e82 100644
Binary files a/img/transformations/angel/rightwing/default_mask.png and b/img/transformations/angel/rightwing/default_mask.png differ
diff --git a/img/transformations/angel/wings.png b/img/transformations/angel/wings.png
index ea17183ea79895fc410c24445712798f663677ee..79c33805786f2fb99fca92938dd65e0e5b837a23 100644
Binary files a/img/transformations/angel/wings.png and b/img/transformations/angel/wings.png differ
diff --git a/img/transformations/bird/eyes/default.png b/img/transformations/bird/eyes/default.png
index 37075c3afd7553c1e1357748263b09231367faab..3236df73e4042c37662906c0cc796a495919ee15 100644
Binary files a/img/transformations/bird/eyes/default.png and b/img/transformations/bird/eyes/default.png differ
diff --git a/img/transformations/bird/leftcover/default-demon.png b/img/transformations/bird/leftcover/default-demon.png
index a78da1fe49f498321a9e2dc602d41689db0e6b19..6f6572f1d1f4f354e4c9c372f4c8297bf9cf53b1 100644
Binary files a/img/transformations/bird/leftcover/default-demon.png and b/img/transformations/bird/leftcover/default-demon.png differ
diff --git a/img/transformations/bird/leftcover/default.png b/img/transformations/bird/leftcover/default.png
index 852adce44c71ee1eb61c3a3b90989152c0aa85bd..0993edaaf616ac39a702365507ef4d26c99f46f1 100644
Binary files a/img/transformations/bird/leftcover/default.png and b/img/transformations/bird/leftcover/default.png differ
diff --git a/img/transformations/bird/leftwing/default-demon.png b/img/transformations/bird/leftwing/default-demon.png
index a8f7a79a6b2d99acc00169aade664397198168d1..fde8a2efb7da8be0ab4338b5b08cd498ab1d80c1 100644
Binary files a/img/transformations/bird/leftwing/default-demon.png and b/img/transformations/bird/leftwing/default-demon.png differ
diff --git a/img/transformations/bird/leftwing/default.png b/img/transformations/bird/leftwing/default.png
index d7d5d5bdd2ed188a8a539318ccf50148dcf1811d..486410f4df9c21f428da87fcac65e258dcb76d37 100644
Binary files a/img/transformations/bird/leftwing/default.png and b/img/transformations/bird/leftwing/default.png differ
diff --git a/img/transformations/bird/malar/default.png b/img/transformations/bird/malar/default.png
index 9ab56fdf84779726d88026a817820841e376ee3f..dc7ccbeb13a958722c8634b93d8ed918d66e859f 100644
Binary files a/img/transformations/bird/malar/default.png and b/img/transformations/bird/malar/default.png differ
diff --git a/img/transformations/bird/plumage/default.png b/img/transformations/bird/plumage/default.png
index 571e7eee45f4e4a983d9a29f526a6064f46f7626..3a95d5e45cfc1dd393ef056e5028cc4ff9d3d840 100644
Binary files a/img/transformations/bird/plumage/default.png and b/img/transformations/bird/plumage/default.png differ
diff --git a/img/transformations/bird/pubes/default.png b/img/transformations/bird/pubes/default.png
index 14295ca6a1181fee4d82ba8e449ec391babe7eef..c0aa2c4f95c535d01da94dff6a4281bcaad124a0 100644
Binary files a/img/transformations/bird/pubes/default.png and b/img/transformations/bird/pubes/default.png differ
diff --git a/img/transformations/bird/rightcover/default-demon.png b/img/transformations/bird/rightcover/default-demon.png
index 1a9b04c1a214b97c8f4dbf6629ab62f1a02c2d4b..1938100e289fe9fe340560c6df15bcd31457594a 100644
Binary files a/img/transformations/bird/rightcover/default-demon.png and b/img/transformations/bird/rightcover/default-demon.png differ
diff --git a/img/transformations/bird/rightcover/default.png b/img/transformations/bird/rightcover/default.png
index 2bf652593f1b4bd3037f04b70afe313a75a99318..3ba7a73fe59badc96e62c5820b5abe36efc5af5f 100644
Binary files a/img/transformations/bird/rightcover/default.png and b/img/transformations/bird/rightcover/default.png differ
diff --git a/img/transformations/bird/rightwing/default-demon.png b/img/transformations/bird/rightwing/default-demon.png
index 87079bb5c2f81ef64569c7c978fe0e55b0f6b73f..31790c2bcca090cdd39c3242db1bd3c3ac23e565 100644
Binary files a/img/transformations/bird/rightwing/default-demon.png and b/img/transformations/bird/rightwing/default-demon.png differ
diff --git a/img/transformations/bird/rightwing/default.png b/img/transformations/bird/rightwing/default.png
index 1e49b4eb634d1f284c83837129dfeaf53e60e0d6..0044227fdfe1eb7f03db094e6e0d4e765a46755e 100644
Binary files a/img/transformations/bird/rightwing/default.png and b/img/transformations/bird/rightwing/default.png differ
diff --git a/img/transformations/bird/tail/default.png b/img/transformations/bird/tail/default.png
index de8aa16ece199056abf55bac45ab93d372e0ef56..9f1f02370bf6fa98cbcd0cc3379bdd449e8588a6 100644
Binary files a/img/transformations/bird/tail/default.png and b/img/transformations/bird/tail/default.png differ
diff --git a/img/transformations/cat/covertail/default.png b/img/transformations/cat/covertail/default.png
index 01ffa7bdef68f1c615fcf58c16ddd121cf31f772..4425ffd1ec9cdc36938916ade81425582467f23e 100644
Binary files a/img/transformations/cat/covertail/default.png and b/img/transformations/cat/covertail/default.png differ
diff --git a/img/transformations/cat/ears.png b/img/transformations/cat/ears.png
index bec2ef96307a7ece091cc63d9c80273da8962b55..6d6ad8d2ce0baedd75b6a0655421b01cd879e1cf 100644
Binary files a/img/transformations/cat/ears.png and b/img/transformations/cat/ears.png differ
diff --git a/img/transformations/cat/ears/default.png b/img/transformations/cat/ears/default.png
index 0a11651e97f50d75b15cc3274b1e7b1921079dcb..954fd76ee45f8b7f4813a7b05454549b2df3a6d2 100644
Binary files a/img/transformations/cat/ears/default.png and b/img/transformations/cat/ears/default.png differ
diff --git a/img/transformations/cat/flaunttail/default.png b/img/transformations/cat/flaunttail/default.png
index b411f90819d44d5c274ce927202e0cf7767b46d4..9f126b686cc64bb8a1848a76719db61457dae3f1 100644
Binary files a/img/transformations/cat/flaunttail/default.png and b/img/transformations/cat/flaunttail/default.png differ
diff --git a/img/transformations/cat/tail.png b/img/transformations/cat/tail.png
index 66489ea5cfeffad67b310bfa3407981c455156c5..c430969acd69099f94b01aad73bb85a748efa013 100644
Binary files a/img/transformations/cat/tail.png and b/img/transformations/cat/tail.png differ
diff --git a/img/transformations/cat/tail/default.png b/img/transformations/cat/tail/default.png
index 66489ea5cfeffad67b310bfa3407981c455156c5..c430969acd69099f94b01aad73bb85a748efa013 100644
Binary files a/img/transformations/cat/tail/default.png and b/img/transformations/cat/tail/default.png differ
diff --git a/img/transformations/cow/ears.png b/img/transformations/cow/ears.png
index c7bfb2ba4005984a5903baa7b61eddc64163269b..285a39c8ce26dd645062a9d6f9ce4beea0c52d8c 100644
Binary files a/img/transformations/cow/ears.png and b/img/transformations/cow/ears.png differ
diff --git a/img/transformations/cow/ears/default.png b/img/transformations/cow/ears/default.png
index c7bfb2ba4005984a5903baa7b61eddc64163269b..285a39c8ce26dd645062a9d6f9ce4beea0c52d8c 100644
Binary files a/img/transformations/cow/ears/default.png and b/img/transformations/cow/ears/default.png differ
diff --git a/img/transformations/cow/ears/spotted black.png b/img/transformations/cow/ears/spotted black.png
index 819bfa699dab0bb54365c6a465534059acf1ce88..b0e96852c82a674014bee6b8c34eb77b67cc1229 100644
Binary files a/img/transformations/cow/ears/spotted black.png and b/img/transformations/cow/ears/spotted black.png differ
diff --git a/img/transformations/cow/ears/spotted brown.png b/img/transformations/cow/ears/spotted brown.png
index 9678b9fb9bea6c9553feacb750120653f942ea1e..e3a493cf2196c56c2d3afee77689acb6a3148cd0 100644
Binary files a/img/transformations/cow/ears/spotted brown.png and b/img/transformations/cow/ears/spotted brown.png differ
diff --git a/img/transformations/cow/horns.png b/img/transformations/cow/horns.png
index ad91acec9c762d2563957d41f5369c63ab1d1b24..d44e5dcb83a477ddc2edd006c5589a43effc070e 100644
Binary files a/img/transformations/cow/horns.png and b/img/transformations/cow/horns.png differ
diff --git a/img/transformations/cow/horns/default-demon.png b/img/transformations/cow/horns/default-demon.png
index c9330d2d6fad068e1bbc651535dbe33707167b53..9c1df40f3a8fbefaaed00b5906231ba028c5f5bd 100644
Binary files a/img/transformations/cow/horns/default-demon.png and b/img/transformations/cow/horns/default-demon.png differ
diff --git a/img/transformations/cow/horns/default.png b/img/transformations/cow/horns/default.png
index ad91acec9c762d2563957d41f5369c63ab1d1b24..d44e5dcb83a477ddc2edd006c5589a43effc070e 100644
Binary files a/img/transformations/cow/horns/default.png and b/img/transformations/cow/horns/default.png differ
diff --git a/img/transformations/cow/tag.png b/img/transformations/cow/tag.png
index acb484353a73fa2943f74e13af0a8314c8e5fbff..aa86171ad9c4b6ef6af763aa1373bfb69aeee969 100644
Binary files a/img/transformations/cow/tag.png and b/img/transformations/cow/tag.png differ
diff --git a/img/transformations/cow/tail.png b/img/transformations/cow/tail.png
index 38393b1b3c17830fded179049c89f8efabceb30c..46a0bcabe0c7f6b205954795f1d3ddd3439e8f10 100644
Binary files a/img/transformations/cow/tail.png and b/img/transformations/cow/tail.png differ
diff --git a/img/transformations/cow/tail/black-demon.png b/img/transformations/cow/tail/black-demon.png
index 479eb7ac8d304a4ef46b5e31f35dd58f51c214e1..07a416c850918290c141f23879e1b39c0c1235ad 100644
Binary files a/img/transformations/cow/tail/black-demon.png and b/img/transformations/cow/tail/black-demon.png differ
diff --git a/img/transformations/cow/tail/black.png b/img/transformations/cow/tail/black.png
index 4ffd099537bf55731ec80e72319e605b1ba4f81e..a931f712bee2b95635bac095ba401ff5717d62ad 100644
Binary files a/img/transformations/cow/tail/black.png and b/img/transformations/cow/tail/black.png differ
diff --git a/img/transformations/cow/tail/default-demon.png b/img/transformations/cow/tail/default-demon.png
index cdb3927d0432c3adfe5b12a19dec5ebf9eb443cd..df4928473596371db5b26b671cee670627ac3e08 100644
Binary files a/img/transformations/cow/tail/default-demon.png and b/img/transformations/cow/tail/default-demon.png differ
diff --git a/img/transformations/cow/tail/default.png b/img/transformations/cow/tail/default.png
index 38393b1b3c17830fded179049c89f8efabceb30c..46a0bcabe0c7f6b205954795f1d3ddd3439e8f10 100644
Binary files a/img/transformations/cow/tail/default.png and b/img/transformations/cow/tail/default.png differ
diff --git a/img/transformations/demon/demonhorns.png b/img/transformations/demon/demonhorns.png
index 4ba67d97512cc47cdaa9e3f386c1af182dd6b61b..23215c6b06bc200545e67c7d39f6221155016ada 100644
Binary files a/img/transformations/demon/demonhorns.png and b/img/transformations/demon/demonhorns.png differ
diff --git a/img/transformations/demon/demontail.png b/img/transformations/demon/demontail.png
index d989306f4fba996089b1e4b88e1bea850afec7f9..8fbe41e662dc135da55a49152f3f75be8e5c63a7 100644
Binary files a/img/transformations/demon/demontail.png and b/img/transformations/demon/demontail.png differ
diff --git a/img/transformations/demon/demonwings.png b/img/transformations/demon/demonwings.png
index 9f9409962d44155f6edf0f03b88bf1b8d4c220df..4d28a270c7ac1523d38abf0e0c7a531caf84b6f0 100644
Binary files a/img/transformations/demon/demonwings.png and b/img/transformations/demon/demonwings.png differ
diff --git a/img/transformations/demon/ears.png b/img/transformations/demon/ears.png
index 77079ecfbad4c8b0e95db492f0158e7a021d27be..a2de909ece19dd1a85fa1adf18aaaceae64d364c 100644
Binary files a/img/transformations/demon/ears.png and b/img/transformations/demon/ears.png differ
diff --git a/img/transformations/demon/flaunttail/classic.png b/img/transformations/demon/flaunttail/classic.png
index b6913e14ab5c11e0c519dc2d8f19db71289f064a..b45a5dcb919e208ab32c4be9f3eed3e82101396c 100644
Binary files a/img/transformations/demon/flaunttail/classic.png and b/img/transformations/demon/flaunttail/classic.png differ
diff --git a/img/transformations/demon/flaunttail/default-cat.png b/img/transformations/demon/flaunttail/default-cat.png
index 12fc6fe2a6b48bfacc30cd6856209c16335db367..e51368da12b9664eb7e809137a9d73c3d08925b7 100644
Binary files a/img/transformations/demon/flaunttail/default-cat.png and b/img/transformations/demon/flaunttail/default-cat.png differ
diff --git a/img/transformations/demon/flaunttail/default.png b/img/transformations/demon/flaunttail/default.png
index a24e10946f9912adc4fc97b5a4134af9ea819a1f..0ea39cbd78179a027d62c03351909d5602667e1f 100644
Binary files a/img/transformations/demon/flaunttail/default.png and b/img/transformations/demon/flaunttail/default.png differ
diff --git a/img/transformations/demon/flaunttail/succubus.png b/img/transformations/demon/flaunttail/succubus.png
index 2885c1c8d8b19066f4f81058f760f75e2789a758..fa3d447e7de411773c47a049a76be367dc11a72e 100644
Binary files a/img/transformations/demon/flaunttail/succubus.png and b/img/transformations/demon/flaunttail/succubus.png differ
diff --git a/img/transformations/demon/flauntwings/backup.png b/img/transformations/demon/flauntwings/backup.png
index 327cadc6b138bbef764c74c79eb48ff346012c1c..3a58f7312e1240dcad442e798da3917e166f1ff1 100644
Binary files a/img/transformations/demon/flauntwings/backup.png and b/img/transformations/demon/flauntwings/backup.png differ
diff --git a/img/transformations/demon/flauntwings/default.png b/img/transformations/demon/flauntwings/default.png
index 3b92bf65fb0136dc1942df9a9cdd2f49bb885d61..3a87562c31568cfbdd5af28a45c784fe1830f051 100644
Binary files a/img/transformations/demon/flauntwings/default.png and b/img/transformations/demon/flauntwings/default.png differ
diff --git a/img/transformations/demon/flauntwings/succubus.png b/img/transformations/demon/flauntwings/succubus.png
index 3b92bf65fb0136dc1942df9a9cdd2f49bb885d61..3a87562c31568cfbdd5af28a45c784fe1830f051 100644
Binary files a/img/transformations/demon/flauntwings/succubus.png and b/img/transformations/demon/flauntwings/succubus.png differ
diff --git a/img/transformations/demon/hair_overlay.png b/img/transformations/demon/hair_overlay.png
index ed6e174583df65e7d5f260f6bdeab5b641bda270..814d17eec52b5fea937cfa99e8ea7cf8f45c62dd 100644
Binary files a/img/transformations/demon/hair_overlay.png and b/img/transformations/demon/hair_overlay.png differ
diff --git a/img/transformations/demon/horns/classic.png b/img/transformations/demon/horns/classic.png
index e1ef231ddf52bacd39d051737ad90b05ed946392..88217360db58801238a131c43b582fe631cec59d 100644
Binary files a/img/transformations/demon/horns/classic.png and b/img/transformations/demon/horns/classic.png differ
diff --git a/img/transformations/demon/horns/default.png b/img/transformations/demon/horns/default.png
index 0e64e23daaf68f9d407dcc24a1d2e1ee241de58c..d2ac539b7fef4c0e59ac718ecae4d49dd2b7328d 100644
Binary files a/img/transformations/demon/horns/default.png and b/img/transformations/demon/horns/default.png differ
diff --git a/img/transformations/demon/horns/succubus.png b/img/transformations/demon/horns/succubus.png
index eb237f6aecccef2ec3af225a3b62f2bfd0d2b87f..7ccf314defc8a7d13c4043ae023b6f1842cc2086 100644
Binary files a/img/transformations/demon/horns/succubus.png and b/img/transformations/demon/horns/succubus.png differ
diff --git a/img/transformations/demon/leftcover.png b/img/transformations/demon/leftcover.png
index f0eeb55fc4769c69dd8074b0697043e6fd29d404..eeca2bcd9da11376d6b29a7cce150782fde7d6a5 100644
Binary files a/img/transformations/demon/leftcover.png and b/img/transformations/demon/leftcover.png differ
diff --git a/img/transformations/demon/leftcover/default.png b/img/transformations/demon/leftcover/default.png
index bda5da6de3bf57de06416660b2017dd6d22142b2..3ca2a1975ef30f5d46a1221d07efc1dd3a436e90 100644
Binary files a/img/transformations/demon/leftcover/default.png and b/img/transformations/demon/leftcover/default.png differ
diff --git a/img/transformations/demon/leftcover/succubus.png b/img/transformations/demon/leftcover/succubus.png
index 950cb1fd362deb2aa3522a5be7d268bd2351c090..54854338cdd3882b43ca96e2737353f6a03aa631 100644
Binary files a/img/transformations/demon/leftcover/succubus.png and b/img/transformations/demon/leftcover/succubus.png differ
diff --git a/img/transformations/demon/rightcover.png b/img/transformations/demon/rightcover.png
index d1b0c2851150dca4b3c483a83361768ce3880530..4d567d9d119bcc3ee69639b8b98b0aa6a2326411 100644
Binary files a/img/transformations/demon/rightcover.png and b/img/transformations/demon/rightcover.png differ
diff --git a/img/transformations/demon/rightcover/classic.png b/img/transformations/demon/rightcover/classic.png
index 52f61810dda48b9f9a2cc65dd143f7645de2ddb2..e04bd8f65624f40b4081fb68b5c3a3c84c40fded 100644
Binary files a/img/transformations/demon/rightcover/classic.png and b/img/transformations/demon/rightcover/classic.png differ
diff --git a/img/transformations/demon/rightcover/default-cat.png b/img/transformations/demon/rightcover/default-cat.png
index 554b4fa94d24a502b14589e4c587b7eb122104c3..b065df0421f71b390ecf7f2e85e8977fed46dc48 100644
Binary files a/img/transformations/demon/rightcover/default-cat.png and b/img/transformations/demon/rightcover/default-cat.png differ
diff --git a/img/transformations/demon/rightcover/default.png b/img/transformations/demon/rightcover/default.png
index 03f2f7b7aee3dac1a5821ff4550ab744b0ddfbed..60d07ffa1bd1561e97545a7523b1e76adc1e7641 100644
Binary files a/img/transformations/demon/rightcover/default.png and b/img/transformations/demon/rightcover/default.png differ
diff --git a/img/transformations/demon/rightcover/succubus.png b/img/transformations/demon/rightcover/succubus.png
index 7d9bb8bd0d48b7db17690466529415ee790d6ac5..8ce6a8e02518c9ce404a60c0110f87e29327a7eb 100644
Binary files a/img/transformations/demon/rightcover/succubus.png and b/img/transformations/demon/rightcover/succubus.png differ
diff --git a/img/transformations/demon/tail/classic.png b/img/transformations/demon/tail/classic.png
index 7f0a38ef7a33f40735fcc54db214c49ed2fb782b..7f655b2d414e4e5923174c37de3e7a4b3d07a23b 100644
Binary files a/img/transformations/demon/tail/classic.png and b/img/transformations/demon/tail/classic.png differ
diff --git a/img/transformations/demon/tail/default-cat.png b/img/transformations/demon/tail/default-cat.png
index 2e1d9a94e32f4d4b00e592e0765aa1d8f5531103..db81558fb1a672aa9bbc46203902f15118a7fcd1 100644
Binary files a/img/transformations/demon/tail/default-cat.png and b/img/transformations/demon/tail/default-cat.png differ
diff --git a/img/transformations/demon/tail/default-cow.png b/img/transformations/demon/tail/default-cow.png
index 0b5958fea7953de5ee56586a996487fb832180c0..54a2754a9a0e9772f625f084552eb2009cc00fcc 100644
Binary files a/img/transformations/demon/tail/default-cow.png and b/img/transformations/demon/tail/default-cow.png differ
diff --git a/img/transformations/demon/tail/default.png b/img/transformations/demon/tail/default.png
index eb54a69d8a8389f553203e8d7f7683c19e3e90e8..cf7b694d8fb9fedad42af3fefa207c90aa139b3b 100644
Binary files a/img/transformations/demon/tail/default.png and b/img/transformations/demon/tail/default.png differ
diff --git a/img/transformations/demon/tail/succubus-cow.png b/img/transformations/demon/tail/succubus-cow.png
index f1d3f9d005062bbff969929f1c53d8af86c24f81..2855d53e2de34569f841ff9ffec252c366a4e3eb 100644
Binary files a/img/transformations/demon/tail/succubus-cow.png and b/img/transformations/demon/tail/succubus-cow.png differ
diff --git a/img/transformations/demon/tail/succubus.png b/img/transformations/demon/tail/succubus.png
index a95f68f63226a82773e0f8e3df7e8fd4846c8154..235e7a27157f192b220a4e3672806fce50c4fcd3 100644
Binary files a/img/transformations/demon/tail/succubus.png and b/img/transformations/demon/tail/succubus.png differ
diff --git a/img/transformations/demon/wings/default.png b/img/transformations/demon/wings/default.png
index d9e2bedea43d411fa52770d88f58ef153cea7f22..1295d944339b28dfc21a98be16f94720358b0343 100644
Binary files a/img/transformations/demon/wings/default.png and b/img/transformations/demon/wings/default.png differ
diff --git a/img/transformations/demon/wings/succubus.png b/img/transformations/demon/wings/succubus.png
index e338fa2206b1b62cc30a9ca05eb1348858472a65..c47792581782752664efbf59c6fb1883e5b4e9f5 100644
Binary files a/img/transformations/demon/wings/succubus.png and b/img/transformations/demon/wings/succubus.png differ
diff --git a/img/transformations/fallen/backbrokenhalo.png b/img/transformations/fallen/backbrokenhalo.png
index 9beb77172335283d941f333f8ad2d32357c48c49..610d558b708c891e3b0ce4c5a317e13fde0250c2 100644
Binary files a/img/transformations/fallen/backbrokenhalo.png and b/img/transformations/fallen/backbrokenhalo.png differ
diff --git a/img/transformations/fallen/backbrokenhalo/default.png b/img/transformations/fallen/backbrokenhalo/default.png
index 9beb77172335283d941f333f8ad2d32357c48c49..610d558b708c891e3b0ce4c5a317e13fde0250c2 100644
Binary files a/img/transformations/fallen/backbrokenhalo/default.png and b/img/transformations/fallen/backbrokenhalo/default.png differ
diff --git a/img/transformations/fallen/backbrokenhalo/traditional.png b/img/transformations/fallen/backbrokenhalo/traditional.png
index 7931c134de08a6e31527d21dea68a5b3f03aa7f7..3b21cfd053c7f8c753d862fe7e4ecb86c0447864 100644
Binary files a/img/transformations/fallen/backbrokenhalo/traditional.png and b/img/transformations/fallen/backbrokenhalo/traditional.png differ
diff --git a/img/transformations/fallen/broken wings.png b/img/transformations/fallen/broken wings.png
index fc6b733bb98dd8a24afa00797fb8467005d7de25..2438bb3be18d20b7e9bebb1e9ebdc05856816d00 100644
Binary files a/img/transformations/fallen/broken wings.png and b/img/transformations/fallen/broken wings.png differ
diff --git a/img/transformations/fallen/brokenhalo.png b/img/transformations/fallen/brokenhalo.png
index a725f955a3217198bb2fb7451752ba9292575704..d628ea9487b495f487da9aeb95df9b4755c868a5 100644
Binary files a/img/transformations/fallen/brokenhalo.png and b/img/transformations/fallen/brokenhalo.png differ
diff --git a/img/transformations/fallen/brokenhalo/default.png b/img/transformations/fallen/brokenhalo/default.png
index a725f955a3217198bb2fb7451752ba9292575704..d628ea9487b495f487da9aeb95df9b4755c868a5 100644
Binary files a/img/transformations/fallen/brokenhalo/default.png and b/img/transformations/fallen/brokenhalo/default.png differ
diff --git a/img/transformations/fallen/brokenwings.png b/img/transformations/fallen/brokenwings.png
index fc6b733bb98dd8a24afa00797fb8467005d7de25..2438bb3be18d20b7e9bebb1e9ebdc05856816d00 100644
Binary files a/img/transformations/fallen/brokenwings.png and b/img/transformations/fallen/brokenwings.png differ
diff --git a/img/transformations/fallen/brokenwings/classic.png b/img/transformations/fallen/brokenwings/classic.png
index 73b1c75a6a68006f2743525de90413034b2d4afa..e2df7062149805dcede4b2c2750a385fa446b033 100644
Binary files a/img/transformations/fallen/brokenwings/classic.png and b/img/transformations/fallen/brokenwings/classic.png differ
diff --git a/img/transformations/fallen/brokenwings/classicfallenplus.png b/img/transformations/fallen/brokenwings/classicfallenplus.png
index 1195f2694e70458e1e2b36f98316d22f58a6c4f2..655d1eeccc81a83b14e1fc2275a371210beda5ff 100644
Binary files a/img/transformations/fallen/brokenwings/classicfallenplus.png and b/img/transformations/fallen/brokenwings/classicfallenplus.png differ
diff --git a/img/transformations/fallen/brokenwings/default.png b/img/transformations/fallen/brokenwings/default.png
index fc6b733bb98dd8a24afa00797fb8467005d7de25..2438bb3be18d20b7e9bebb1e9ebdc05856816d00 100644
Binary files a/img/transformations/fallen/brokenwings/default.png and b/img/transformations/fallen/brokenwings/default.png differ
diff --git a/img/transformations/fallen/brokenwings/fallenplus.png b/img/transformations/fallen/brokenwings/fallenplus.png
index 840e41603fd40d4aad80b6aef57a30352cda1052..101ed103f7b1a26c1259611d73c83531928677c6 100644
Binary files a/img/transformations/fallen/brokenwings/fallenplus.png and b/img/transformations/fallen/brokenwings/fallenplus.png differ
diff --git a/img/transformations/fallen/fallenplus.png b/img/transformations/fallen/fallenplus.png
index 840e41603fd40d4aad80b6aef57a30352cda1052..101ed103f7b1a26c1259611d73c83531928677c6 100644
Binary files a/img/transformations/fallen/fallenplus.png and b/img/transformations/fallen/fallenplus.png differ
diff --git a/img/transformations/fallen/frontbrokenhalo.png b/img/transformations/fallen/frontbrokenhalo.png
index 1daf91f07348474e9ec34eab23b404ed85bb0a6c..8ae76adc79f056df78e4f1403fd42fbced30e214 100644
Binary files a/img/transformations/fallen/frontbrokenhalo.png and b/img/transformations/fallen/frontbrokenhalo.png differ
diff --git a/img/transformations/fallen/frontbrokenhalo/default.png b/img/transformations/fallen/frontbrokenhalo/default.png
index 1daf91f07348474e9ec34eab23b404ed85bb0a6c..8ae76adc79f056df78e4f1403fd42fbced30e214 100644
Binary files a/img/transformations/fallen/frontbrokenhalo/default.png and b/img/transformations/fallen/frontbrokenhalo/default.png differ
diff --git a/img/transformations/fallen/frontbrokenhalo/traditional.png b/img/transformations/fallen/frontbrokenhalo/traditional.png
index ca1563d14aa99ea38360c97b5d32916c80b76aa9..01e10d742bef4561e91e6fd9b91e5c104b98797f 100644
Binary files a/img/transformations/fallen/frontbrokenhalo/traditional.png and b/img/transformations/fallen/frontbrokenhalo/traditional.png differ
diff --git a/img/transformations/fallen/leftcover.png b/img/transformations/fallen/leftcover.png
index 4ac28bfd62e04dd1c4a751881ec5b2751125445d..352b6dbf5ff38d91fe3cb42806e424836086fdc4 100644
Binary files a/img/transformations/fallen/leftcover.png and b/img/transformations/fallen/leftcover.png differ
diff --git a/img/transformations/fallen/leftcover/classic.png b/img/transformations/fallen/leftcover/classic.png
index ced7015f16f5117bbff7054d9f921f16fc9ccc98..abde42b298065faf6b7031562e6e7d02338bbb19 100644
Binary files a/img/transformations/fallen/leftcover/classic.png and b/img/transformations/fallen/leftcover/classic.png differ
diff --git a/img/transformations/fallen/leftcover/classicfallenplus.png b/img/transformations/fallen/leftcover/classicfallenplus.png
index aa7f8a4d1dd32158f25eccdfb1de9ce3363766ac..842c966153f085e9dd86f138654052a4c8091439 100644
Binary files a/img/transformations/fallen/leftcover/classicfallenplus.png and b/img/transformations/fallen/leftcover/classicfallenplus.png differ
diff --git a/img/transformations/fallen/leftcover/default.png b/img/transformations/fallen/leftcover/default.png
index 4ac28bfd62e04dd1c4a751881ec5b2751125445d..352b6dbf5ff38d91fe3cb42806e424836086fdc4 100644
Binary files a/img/transformations/fallen/leftcover/default.png and b/img/transformations/fallen/leftcover/default.png differ
diff --git a/img/transformations/fallen/leftcover/fallenplus.png b/img/transformations/fallen/leftcover/fallenplus.png
index fd32e0ddf8dd70718f3e8a5da582048c67f16852..efb5543b255eec3607044831b56071f72bd58322 100644
Binary files a/img/transformations/fallen/leftcover/fallenplus.png and b/img/transformations/fallen/leftcover/fallenplus.png differ
diff --git a/img/transformations/fallen/leftwing.png b/img/transformations/fallen/leftwing.png
index 32da0ff30366bb88d1ad89fe25c9f0a7c1b055e0..98c78f7d3f688edefc73db72f4a6868ffcb14c94 100644
Binary files a/img/transformations/fallen/leftwing.png and b/img/transformations/fallen/leftwing.png differ
diff --git a/img/transformations/fallen/leftwing/classic.png b/img/transformations/fallen/leftwing/classic.png
index ee26a3e6ce5781166e8f405c0513dbed296bcc32..84dbca22f1f1d243ec7d876cc158657e7576b20e 100644
Binary files a/img/transformations/fallen/leftwing/classic.png and b/img/transformations/fallen/leftwing/classic.png differ
diff --git a/img/transformations/fallen/leftwing/classicfallenplus.png b/img/transformations/fallen/leftwing/classicfallenplus.png
index 481992e3187ac5b10494c3a87caf045a2b7c7890..c9706fe203fec07f09b0a185a9ef3b96ce1df8a0 100644
Binary files a/img/transformations/fallen/leftwing/classicfallenplus.png and b/img/transformations/fallen/leftwing/classicfallenplus.png differ
diff --git a/img/transformations/fallen/leftwing/default.png b/img/transformations/fallen/leftwing/default.png
index 32da0ff30366bb88d1ad89fe25c9f0a7c1b055e0..98c78f7d3f688edefc73db72f4a6868ffcb14c94 100644
Binary files a/img/transformations/fallen/leftwing/default.png and b/img/transformations/fallen/leftwing/default.png differ
diff --git a/img/transformations/fallen/leftwing/default_mask.png b/img/transformations/fallen/leftwing/default_mask.png
index 7fdc781a69bb1e3196830026aad42721eeb37c5c..4e89210d3c73e0ecb1fa8914cc1c222cf70c7d3f 100644
Binary files a/img/transformations/fallen/leftwing/default_mask.png and b/img/transformations/fallen/leftwing/default_mask.png differ
diff --git a/img/transformations/fallen/leftwing/fallenplus.png b/img/transformations/fallen/leftwing/fallenplus.png
index 0c5c0384897ba257b5a201ad91dcb7ee770c5323..493e64051da4b09dceea3acc8c0e48c8ff50bc62 100644
Binary files a/img/transformations/fallen/leftwing/fallenplus.png and b/img/transformations/fallen/leftwing/fallenplus.png differ
diff --git a/img/transformations/fallen/leftwing/fallenplus_mask.png b/img/transformations/fallen/leftwing/fallenplus_mask.png
index 72ea858fb708cc544cacbf3843848511037f51b2..cb8bce95ec32f18817e5be44d6bcc77c82589580 100644
Binary files a/img/transformations/fallen/leftwing/fallenplus_mask.png and b/img/transformations/fallen/leftwing/fallenplus_mask.png differ
diff --git a/img/transformations/fallen/rightcover.png b/img/transformations/fallen/rightcover.png
index 7accc4d0e53048af4b373a5d87b2a455d42f70ca..c79a436d9a76e09c2f32506108fd6303d48114d8 100644
Binary files a/img/transformations/fallen/rightcover.png and b/img/transformations/fallen/rightcover.png differ
diff --git a/img/transformations/fallen/rightcover/classic.png b/img/transformations/fallen/rightcover/classic.png
index 6fcfd486bd15b10776e1ce96f800f4e5e1b8799d..a6de0e57c2aeef769d59ae439849205ce797e73b 100644
Binary files a/img/transformations/fallen/rightcover/classic.png and b/img/transformations/fallen/rightcover/classic.png differ
diff --git a/img/transformations/fallen/rightcover/classicfallenplus.png b/img/transformations/fallen/rightcover/classicfallenplus.png
index f7937fb9c67adb8bb57775966e61c99f3c071c5c..b4123c9c10a60890de2728e1c8ab7970d88eb5c8 100644
Binary files a/img/transformations/fallen/rightcover/classicfallenplus.png and b/img/transformations/fallen/rightcover/classicfallenplus.png differ
diff --git a/img/transformations/fallen/rightcover/default.png b/img/transformations/fallen/rightcover/default.png
index 7accc4d0e53048af4b373a5d87b2a455d42f70ca..c79a436d9a76e09c2f32506108fd6303d48114d8 100644
Binary files a/img/transformations/fallen/rightcover/default.png and b/img/transformations/fallen/rightcover/default.png differ
diff --git a/img/transformations/fallen/rightcover/fallenplus.png b/img/transformations/fallen/rightcover/fallenplus.png
index b506474b036e2af2cd006770c6a452e61b92f8e5..9d85d694ffec15a9fba3f0e9a6c70619f5e79bcf 100644
Binary files a/img/transformations/fallen/rightcover/fallenplus.png and b/img/transformations/fallen/rightcover/fallenplus.png differ
diff --git a/img/transformations/fallen/rightwing.png b/img/transformations/fallen/rightwing.png
index e7f4e88e607aa007e76bb29156f1f39e5a54549e..cf3379b33c2c758d3fbf1b7359e5862cd4757888 100644
Binary files a/img/transformations/fallen/rightwing.png and b/img/transformations/fallen/rightwing.png differ
diff --git a/img/transformations/fallen/rightwing/classic.png b/img/transformations/fallen/rightwing/classic.png
index da419937b4d18b937fad64988706ae5f50f12386..f5a879e5b68209875f183ba475541152506cad37 100644
Binary files a/img/transformations/fallen/rightwing/classic.png and b/img/transformations/fallen/rightwing/classic.png differ
diff --git a/img/transformations/fallen/rightwing/classicfallenplus.png b/img/transformations/fallen/rightwing/classicfallenplus.png
index 65d0777a0066ebf459bf313652e3352d0c6b8fe5..e8fff9e9704d34475dc135afc02e20847f9b146f 100644
Binary files a/img/transformations/fallen/rightwing/classicfallenplus.png and b/img/transformations/fallen/rightwing/classicfallenplus.png differ
diff --git a/img/transformations/fallen/rightwing/default.png b/img/transformations/fallen/rightwing/default.png
index e7f4e88e607aa007e76bb29156f1f39e5a54549e..cf3379b33c2c758d3fbf1b7359e5862cd4757888 100644
Binary files a/img/transformations/fallen/rightwing/default.png and b/img/transformations/fallen/rightwing/default.png differ
diff --git a/img/transformations/fallen/rightwing/default_mask.png b/img/transformations/fallen/rightwing/default_mask.png
index d5baeb9cabb11a48ddde4a0dcb26492100639166..2b799302deca399b7132590c4935c438ec096aac 100644
Binary files a/img/transformations/fallen/rightwing/default_mask.png and b/img/transformations/fallen/rightwing/default_mask.png differ
diff --git a/img/transformations/fallen/rightwing/fallenplus.png b/img/transformations/fallen/rightwing/fallenplus.png
index f1d610ce59a5caa6c80e3335376bceed3fa12faf..e4fec1d7c8135078c922f44393f13a2d12379abb 100644
Binary files a/img/transformations/fallen/rightwing/fallenplus.png and b/img/transformations/fallen/rightwing/fallenplus.png differ
diff --git a/img/transformations/fallen/rightwing/fallenplus_mask.png b/img/transformations/fallen/rightwing/fallenplus_mask.png
index af85387a136d37d4d610b2c5ddd881b81386754f..99cee2a33fa470f971e9a3da922d4f52271bd5a4 100644
Binary files a/img/transformations/fallen/rightwing/fallenplus_mask.png and b/img/transformations/fallen/rightwing/fallenplus_mask.png differ
diff --git a/img/transformations/fox/cheeks/default.png b/img/transformations/fox/cheeks/default.png
index 769d9f4ab1e3e263596453a2f6b3b166ea5c463f..4200c3991ff0dfe3126caa9048f1cacfc44ae34a 100644
Binary files a/img/transformations/fox/cheeks/default.png and b/img/transformations/fox/cheeks/default.png differ
diff --git a/img/transformations/fox/ears/default.png b/img/transformations/fox/ears/default.png
index c86c69c65feec5cbe4724bcbca52ae1f6dbd623a..7e834f2eed7622b0036299b1b09982e59c47b9e2 100644
Binary files a/img/transformations/fox/ears/default.png and b/img/transformations/fox/ears/default.png differ
diff --git a/img/transformations/fox/tail/default.png b/img/transformations/fox/tail/default.png
index cc463c0ba00315f063ab3114b2287727143dc1d1..82c43d136daea1d991f2d85eefb9a40cb5c3a01c 100644
Binary files a/img/transformations/fox/tail/default.png and b/img/transformations/fox/tail/default.png differ
diff --git a/img/transformations/hirsute/bushtamered.png b/img/transformations/hirsute/bushtamered.png
index 9880512bcb3888c10c27da6b8b567d655bb675e6..e2eefc0ec3bc540d8433d8a015f489604923986f 100644
Binary files a/img/transformations/hirsute/bushtamered.png and b/img/transformations/hirsute/bushtamered.png differ
diff --git a/img/transformations/hirsute/pits/default.png b/img/transformations/hirsute/pits/default.png
index b871ad4e28ceae70eaf083a7aa363576037dbaf3..77ee0eeaf963f8da067c193589d1a5601ba62550 100644
Binary files a/img/transformations/hirsute/pits/default.png and b/img/transformations/hirsute/pits/default.png differ
diff --git a/img/transformations/hirsute/pubes/default.png b/img/transformations/hirsute/pubes/default.png
index 3b697c2167f026c96d3b0b65d40eecf5c2949ec7..6065d9c8b4514a6fceb77bd879fac0ad7a8d6354 100644
Binary files a/img/transformations/hirsute/pubes/default.png and b/img/transformations/hirsute/pubes/default.png differ
diff --git a/img/transformations/wolf/cheeks/feral.png b/img/transformations/wolf/cheeks/feral.png
index 092cc5f9aac997bf7f072db7d91428bbdf64ffd8..152f05c3659cbcb87b378a28b0656f616312e416 100644
Binary files a/img/transformations/wolf/cheeks/feral.png and b/img/transformations/wolf/cheeks/feral.png differ
diff --git a/img/transformations/wolf/ears/default.png b/img/transformations/wolf/ears/default.png
index 849f75365fc8aad964eb83f41507497ba293a32d..a3720edc9360cb04218093fb7fe2b734f845d075 100644
Binary files a/img/transformations/wolf/ears/default.png and b/img/transformations/wolf/ears/default.png differ
diff --git a/img/transformations/wolf/ears/feral.png b/img/transformations/wolf/ears/feral.png
index 4da4189bd81914b916709a8d9677b18563976dfd..bf07d8c30aa1fa9b2ae88e3b88138db6b642a886 100644
Binary files a/img/transformations/wolf/ears/feral.png and b/img/transformations/wolf/ears/feral.png differ
diff --git a/img/transformations/wolf/tail/default.png b/img/transformations/wolf/tail/default.png
index a2c33ad1fc67a14a3bbb332bb355937a9c423e53..29225880711704ce9f25f29b7bc8c03133e303d3 100644
Binary files a/img/transformations/wolf/tail/default.png and b/img/transformations/wolf/tail/default.png differ
diff --git a/img/transformations/wolf/tail/feral.png b/img/transformations/wolf/tail/feral.png
index 62ace06e96910f000b2dc6261759eee894450031..71a2ebd9eca8ce44fa9c12b0a231650b254ab425 100644
Binary files a/img/transformations/wolf/tail/feral.png and b/img/transformations/wolf/tail/feral.png differ
diff --git a/img/transformations/wolf/wolfearsred.png b/img/transformations/wolf/wolfearsred.png
index 0e73a7544127a216b2960fcb09c88067d7f3922c..f7a1677b62a6b80917486ca94867702486e601b7 100644
Binary files a/img/transformations/wolf/wolfearsred.png and b/img/transformations/wolf/wolfearsred.png differ
diff --git a/img/transformations/wolf/wolftailred.png b/img/transformations/wolf/wolftailred.png
index a2c33ad1fc67a14a3bbb332bb355937a9c423e53..29225880711704ce9f25f29b7bc8c03133e303d3 100644
Binary files a/img/transformations/wolf/wolftailred.png and b/img/transformations/wolf/wolftailred.png differ
diff --git a/modules/05-object-extensions.js b/modules/05-object-extensions.js
index 4866fafa8d3bc8eef9c6d92aaed20a144e8a0ef3..e1c2cabf7d145a192c03a73678cf7c66090b5011 100644
--- a/modules/05-object-extensions.js
+++ b/modules/05-object-extensions.js
@@ -59,11 +59,29 @@ const ObjectAssignDeep = (function () {
 	}
 
 	function mergeObjects(target, source, options, filterFn, depth) {
-		return Object.keys(source).reduce((obj, key) => {
+		const merged = Object.keys(source).reduce((obj, key) => {
 			if (filterFn && !filterFn(key, source[key], depth)) return obj;
-			obj[key] = getTypeOf(source[key]) === "object" ? mergeObjects(target[key] || {}, source[key], options, filterFn, depth + 1) : source[key];
+
+			if (options.arrayBehaviour === "strict-replace" && getTypeOf(source[key]) === "object") {
+				obj[key] = cloneValue(source[key]);
+			} else if (getTypeOf(source[key]) === "object") {
+				obj[key] = mergeObjects(target[key] || {}, source[key], options, filterFn, depth + 1);
+			} else {
+				obj[key] = cloneValue(source[key]);
+			}
+
 			return obj;
-		}, target);
+		}, {});
+
+		if (options.arrayBehaviour === "strict-replace") {
+			Object.keys(target).forEach(key => {
+				if (!(key in source)) {
+					delete target[key];
+				}
+			});
+		}
+
+		return merged;
 	}
 
 	function mergeArrays(target, source, options) {
@@ -79,12 +97,22 @@ const ObjectAssignDeep = (function () {
 
 	function executeDeepMerge(target, objects, arrayBehaviour, filterFn, depth = 1) {
 		objects.forEach(object => {
+			if (arrayBehaviour === "strict-replace" && depth === 1) {
+				Object.keys(target).forEach(key => {
+					if (!(key in object)) {
+						delete target[key];
+					}
+				});
+			}
 			Object.keys(object).forEach(key => {
 				if (filterFn && !filterFn(key, object[key], depth)) return;
 
 				const valueType = getTypeOf(object[key]);
 				if (valueType === "object") {
-					target[key] = mergeObjects(target[key] || {}, object[key], { arrayBehaviour }, filterFn, depth + 1);
+					target[key] =
+						arrayBehaviour === "strict-replace" && depth > 1
+							? cloneValue(object[key])
+							: mergeObjects(target[key] || {}, object[key], { arrayBehaviour }, filterFn, depth + 1);
 				} else if (valueType === "array" && getTypeOf(target[key]) === "array") {
 					target[key] = mergeArrays(target[key], object[key], { arrayBehaviour });
 				} else {
@@ -142,7 +170,7 @@ Object.defineProperty(Object.prototype, "deepCopy", {
  *
  * const foundValue = myObject.find((key, value) => key === 'level2');
  * Returns Object { level3: "value1" }
- * 
+ *
  * const foundValue = myObject.find((key, value) => value.level3 === "value2");
  * Returns Object { level3: "value2" }
  */
@@ -204,5 +232,5 @@ Object.defineProperty(Object.prototype, "clearProperties", {
 			}
 		};
 		clearProperties(this);
-	}
+	},
 });
diff --git a/modules/css/base.css b/modules/css/base.css
index 871318da2a765da74e561521c3041bed71a27f89..e7869773a9c3609eb6b9d9a287ce34e479fe3387 100644
--- a/modules/css/base.css
+++ b/modules/css/base.css
@@ -41,6 +41,11 @@ canvas {
 	image-rendering: crisp-edges;
 }
 
+.mainCanvas {
+	transform: translateZ(0);
+	backface-visibility: hidden;
+}
+
 /* Inputs */
 input,
 select,
@@ -1896,8 +1901,8 @@ body.has-images #storyCaptionContent {
 }
 
 #img {
-	height: 192px;
-	width: 256px;
+	height: 200px;
+	width: 280px;
 	overflow: hidden;
 	position: fixed;
 	top: 0;
@@ -1911,15 +1916,15 @@ body.has-images #storyCaptionContent {
 #img > * {
 	position: absolute;
 	top: 0;
-	left: 0;
+	left: 24px;
 }
 
 #characterTooltip {
 	position: absolute;
-	width: 65px;
+	width: 90px;
 	height: 180px;
 	top: 5px;
-	left: 85px;
+	left: 100px;
 	z-index: -1;
 }
 
@@ -2024,12 +2029,13 @@ body.has-images #storyCaptionContent {
 }
 
 #startingPlayerImage {
-	margin-top: 130px;
+	position: relative;
+	height: 150px;
 }
 
-#startingPlayerImage #img {
-	top: 5.44em;
-	left: 20px;
+#startImg {
+	position: absolute;
+	top: -45px;
 }
 
 .icon_entity_ui {
diff --git a/t3lt.twee-config.yml b/t3lt.twee-config.yml
index efedcf9f01873a1534cd596c16a4f5baab9ff2e9..93b41a782893b9f39106146160fb1e64168ddd28 100644
--- a/t3lt.twee-config.yml
+++ b/t3lt.twee-config.yml
@@ -2049,24 +2049,11 @@ sugarcube-2:
       description: |-
         Prints the name Morgan gives the player based on appearance
       tags: ["text"]
-    charLight:
-      description: |-
-        Render and print light behind character model
-
-        `<<charLight xOffset yOffset className?>>`
-        - **xOffset**: `number` - CSS x offset
-          - Assumes px
-        - **yOffset**: `number` - CSS y offset
-          - Assumes px
-        - **className** _optional_: `string` - class or space-separated classes of div element to be inserted when placed in the DOM
-      parameters:
-        - number|text &+ number|text |+ text
-      tags: ["dom"]
     charLightCombat:
       description: |-
         Render and print light behind character model
 
-        `<<charLight position? prop?>>`
+        `<<charLightCombat position? prop?>>`
         - **position** _optional_: `string` - combat position
           - %combatPositionsDesc%
         - **prop** _optional_: `string` - prop being rendered in combat