beleth.pink/toy-cat-creator.svg

4142 lines
288 KiB
XML
Raw Permalink Normal View History

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1000"
height="750"
viewBox="0 0 1000 750.00001"
id="toy.cat.creator.by.feufochmar.based.on.glip.floraverse"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="toy-cat-creator.svg"
onload="initColors();disableContext();">
<title
id="title4919">Toy Cat Creator</title>
<script
id="script.disable.context.menu"><![CDATA[
function disableContext() {
document.oncontextmenu = function() {
return false;
}
}]]></script>
<script
id="script.layers.data"><![CDATA[
var alternativePatterns = {
'tail': {
'layers': ['layer.tail.pattern.seeds', 'layer.tail.pattern.itchy'],
'idx': 0
},
'hair-above': {
'layers': [
'layer.hair.above.seeds', 'layer.hair.above.itchy', 'layer.hair.above.bellith',
'layer.hair.above.id', 'layer.hair.above.misc', 'layer.hair.above.misc.2',
'layer.hair.above.broken', 'layer.hair.above.fluffy.kiriban',
'layer.hair.above.jasmaby'
],
'idx': 0
},
'hair-below': {
'layers': [
'layer.none', 'layer.hair.below.itchy', 'layer.hair.below.bellith',
'layer.hair.below.id', 'layer.hair.below.misc', 'layer.hair.below.misc.2',
'layer.hair.below.broken', 'layer.hair.below.fluffy.kiriban',
'layer.hair.below.jasmaby'
],
'idx': 0
},
'eyes': {
'layers': [
'layer.eyes.pupils.seeds', 'layer.eyes.pupils.itchy', 'layer.eyes.pupils.heart'
],
'idx': 0
},
'eye-spot': {
'layers': [
'layer.none', 'layer.eye.spot.heart.inverted', 'layer.eye.spot.heart',
'layer.eye.spot.juppet', 'layer.eye.spot.club.inverted', 'layer.eye.spot.club'
],
'idx': 1
},
'underwear-bottom': {
'layers': [
'layer.none', 'layer.underwear.bottom',
'layer.underwear.bottom.try.try.again'
],
'idx': 1
},
'underwear-top': {
'layers': [
'layer.none', 'layer.underwear.top'
],
'idx': 1
},
'clothes-bottom': {
'layers': [
'layer.none', 'layer.clothes.bottom.seeds', 'layer.clothes.bottom.itchy',
'layer.clothes.bottom.potion', 'layer.clothes.bottom.misc.1',
'layer.clothes.bottom.broken', 'layer.clothes.bottom.fluffy.kiriban',
'layer.clothes.bottom.andre', 'layer.clothes.bottom.try.try.again',
'layer.clothes.bottom.alice', 'layer.clothes.bottom.jasmaby',
'layer.clothes.bottom.charthur'
],
'idx': 1
},
'clothes-top': {
'layers': [
'layer.none', 'layer.clothes.top.seeds', 'layer.clothes.top.itchy', 'layer.none',
'layer.clothes.top.misc.1', 'layer.clothes.top.broken', 'layer.none', 'layer.none',
'layer.none', 'layer.none', 'layer.clothes.top.jasmaby', 'layer.none'
],
'idx': 1
},
'clothes-top-above': {
'layers': [
'layer.none', 'layer.none', 'layer.clothes.top.itchy.above', 'layer.clothes.top.potion.above',
'layer.clothes.top.misc.1.above', 'layer.clothes.top.broken.above',
'layer.clothes.top.fluffy.kiriban.above', 'layer.clothes.top.andre.above',
'layer.clothes.top.try.try.again.above', 'layer.clothes.top.alice.above',
'layer.clothes.top.jasmaby.above', 'layer.clothes.top.charthur.above'
],
'idx': 1
},
'clothes-top-below': {
'layers': [
'layer.none', 'layer.none', 'layer.none', 'layer.clothes.top.potion.below', 'layer.none',
'layer.none', 'layer.none', 'layer.none', 'layer.none', 'layer.clothes.top.alice.below',
'layer.none', 'layer.none'
],
'idx': 1
},
'socks': {
'layers': [
'layer.none', 'layer.socks.seeds', 'layer.socks.itchy', 'layer.socks.misc.1'
],
'idx': 1
},
'shoes': {
'layers': [
'layer.none', 'layer.shoes.seeds', 'layer.shoes.itchy', 'layer.shoes.misc.1',
'layer.shoes.try.try.again'
],
'idx': 1
},
'hat': {
'layers': [
'layer.none', 'layer.hat.itchy', 'layer.hat.broken', 'layer.hat.andre',
'layer.hat.try.try.again', 'layer.hat.try.try.again.2', 'layer.hat.jasmaby',
'layer.hat.charthur'
],
'idx': 0
}
}
]]></script>
<script
id="script.layers.logic"><![CDATA[
function updatePattern(pattern, newIdx) {
var currentLayer = document.getElementById(pattern['layers'][pattern['idx']]);
currentLayer.style.display = 'none';
pattern['idx'] = newIdx;
var nextLayer = document.getElementById(pattern['layers'][pattern['idx']]);
nextLayer.style.display = 'inline';
notifyChangeState();
}
function nextPattern(pat) {
var pattern = alternativePatterns[pat];
var idx = (pattern['idx'] + 1) % pattern['layers'].length;
updatePattern(pattern, idx);
}
function randomizeLayers() {
var independantPatterns =
['hat', 'shoes', 'socks', 'clothes-bottom', 'underwear-top', 'underwear-bottom',
'eye-spot', 'eyes', 'tail', 'hair-above', 'clothes-top'];
for (pat of independantPatterns) {
var pattern = alternativePatterns[pat];
var idx = Math.floor(Math.random() * pattern['layers'].length);
updatePattern(pattern, idx);
}
/* hair-below */
updatePattern(alternativePatterns['hair-below'], alternativePatterns['hair-above']['idx']);
/* clothes-top-above */
updatePattern(alternativePatterns['clothes-top-above'], alternativePatterns['clothes-top']['idx']);
/* clothes-top-below */
updatePattern(alternativePatterns['clothes-top-below'], alternativePatterns['clothes-top']['idx']);
}]]></script>
<script
id="script.colors.data"><![CDATA[var imageColors = {
'body.color.1': {'h': 330, 's': 83, 'l': 50},
'body.color.2': {'h': 0, 's': 100, 'l': 89},
'ear.right.1': {'h': 330, 's': 83, 'l': 50},
'ear.right.2': {'h': 0, 's': 100, 'l': 89},
'ear.left.1': {'h': 0, 's': 100, 'l': 89},
'ear.left.2': {'h': 330, 's': 83, 'l': 50},
'eye.white': {'h': 0, 's': 0, 'l': 89},
'eye.pupil.left': {'h': 270, 's': 100, 'l': 11},
'eye.pupil.right': {'h': 330, 's': 67, 'l': 50},
'hair': {'h': 0, 's': 100, 'l': 89},
'underwear.bottom': {'h': 270, 's': 50, 'l': 24},
'underwear.top': {'h': 270, 's': 50, 'l': 24},
'clothes.bottom.1': {'h': 0, 's': 17, 'l': 50},
'clothes.bottom.2': {'h': 0, 's': 17, 'l': 50},
'clothes.top.1': {'h': 30, 's': 83, 'l': 89},
'clothes.top.2': {'h': 330, 's': 33, 'l': 37},
'socks.1': {'h': 30, 's': 83, 'l': 89},
'socks.2': {'h': 30, 's': 83, 'l': 89},
'shoes.1': {'h': 330, 's': 17, 'l': 37},
'shoes.2': {'h': 330, 's': 17, 'l': 37},
'hat.1': {'h': 330, 's': 100, 'l': 50},
'hat.2': {'h': 330, 's': 100, 'l': 50}
};
]]></script>
<script
id="script.colors.logic"><![CDATA[
var colorPicker = {
'class': 'body.color.1',
'old-color': {'h': 0, 's': 0, 'l': 0},
'hue': 0
};
function colorToString(color) {
return 'hsl(' + color['h'] + ', ' + color['s'] + '%, ' + color['l'] + '%)';
}
function changeColorOfClass(cls) {
var elements = document.getElementsByClassName(cls);
var strColor = colorToString(imageColors[cls]);
for (var i = 0; i < elements.length; i++) {
elements[i].style.fill = strColor;
}
document.getElementById('color.pick.new').style.fill = strColor;
notifyChangeState();
}
function chooseColor(cls) {
document.getElementById('controls').style.display = 'none';
document.getElementById('color.picker').style.display = 'inline';
colorPicker['class'] = cls;
colorPicker['old-color']['h'] = imageColors[cls]['h'];
colorPicker['old-color']['s'] = imageColors[cls]['s'];
colorPicker['old-color']['l'] = imageColors[cls]['l'];
var strColor = colorToString(imageColors[cls]);
document.getElementById('color.pick.current').style.fill = strColor;
document.getElementById('color.pick.new').style.fill = strColor;
}
function colorPickChangeHue(hue) {
colorPicker['hue'] = hue;
for (sat of [0, 17, 33, 50, 67, 83, 100]) {
for (lum of [11, 24, 37, 50, 63, 76, 89]) {
var element = document.getElementById('color.pick.sat.lum.' + sat + '.' + lum);
element.style.fill = 'hsl(' + hue + ', ' + sat + '%, ' + lum + '%)';
}
}
}
function colorPickChangeSatLum(sat, lum) {
imageColors[colorPicker['class']]['h'] = colorPicker['hue'];
imageColors[colorPicker['class']]['s'] = sat;
imageColors[colorPicker['class']]['l'] = lum;
changeColorOfClass(colorPicker['class']);
}
function colorPickOldColor() {
imageColors[colorPicker['class']]['h'] = colorPicker['old-color']['h'];
imageColors[colorPicker['class']]['s'] = colorPicker['old-color']['s'];
imageColors[colorPicker['class']]['l'] = colorPicker['old-color']['l'];
changeColorOfClass(colorPicker['class']);
}
function pickColorClass(cls) {
imageColors[colorPicker['class']] = imageColors[cls];
changeColorOfClass(colorPicker['class']);
}
function colorPickerHide(changeColor) {
document.getElementById('controls').style.display = 'inline';
document.getElementById('color.picker').style.display = 'none';
if (!changeColor) {
colorPickOldColor();
}
}
function initColors() {
for (cls in imageColors) {
changeColorOfClass(cls);
}
}
function pickFrom(arr) {
var idx = Math.floor(Math.random() * arr.length);
return arr[idx];
}
function randomizeColors() {
for (cls in imageColors) {
var hue = Math.floor(Math.random() * 12) * 30;
var sat = pickFrom([0, 17, 33, 50, 67, 83, 100]);
var lum = pickFrom([11, 24, 37, 50, 63, 76, 89]);
imageColors[cls]['h'] = hue;
imageColors[cls]['s'] = sat;
imageColors[cls]['l'] = lum;
changeColorOfClass(cls);
}
}]]></script>
<script
id="host.api"><![CDATA[
function readIdxPattern(arr, i, pat) {
if (i < arr.length) {
var n = arr[i];
if (!isNaN(n)) {
var pattern = alternativePatterns[pat];
n = n % pattern['layers'].length;
updatePattern(pattern, n);
}
}
}
function readColorClass(arr, i, cls) {
if (i < (arr.length - 2)) {
var hue = arr[i];
var sat = arr[i+1];
var lum = arr[i+2];
if (!isNaN(hue) && !isNaN(sat) && !isNaN(lum)) {
imageColors[cls]['h'] = hue;
imageColors[cls]['s'] = sat;
imageColors[cls]['l'] = lum;
changeColorOfClass(cls);
}
}
}
function writeState() {
return [
/* Layers */
alternativePatterns['tail']['idx'],
alternativePatterns['hair-above']['idx'],
alternativePatterns['eyes']['idx'],
alternativePatterns['eye-spot']['idx'],
alternativePatterns['underwear-bottom']['idx'],
alternativePatterns['underwear-top']['idx'],
alternativePatterns['clothes-bottom']['idx'],
alternativePatterns['clothes-top']['idx'],
alternativePatterns['socks']['idx'],
alternativePatterns['shoes']['idx'],
alternativePatterns['hat']['idx'],
/* Colors */
imageColors['body.color.1']['h'],
imageColors['body.color.1']['s'],
imageColors['body.color.1']['l'],
imageColors['body.color.2']['h'],
imageColors['body.color.2']['s'],
imageColors['body.color.2']['l'],
imageColors['ear.right.1']['h'],
imageColors['ear.right.1']['s'],
imageColors['ear.right.1']['l'],
imageColors['ear.right.2']['h'],
imageColors['ear.right.2']['s'],
imageColors['ear.right.2']['l'],
imageColors['ear.left.1']['h'],
imageColors['ear.left.1']['s'],
imageColors['ear.left.1']['l'],
imageColors['ear.left.2']['h'],
imageColors['ear.left.2']['s'],
imageColors['ear.left.2']['l'],
imageColors['eye.white']['h'],
imageColors['eye.white']['s'],
imageColors['eye.white']['l'],
imageColors['eye.pupil.left']['h'],
imageColors['eye.pupil.left']['s'],
imageColors['eye.pupil.left']['l'],
imageColors['eye.pupil.right']['h'],
imageColors['eye.pupil.right']['s'],
imageColors['eye.pupil.right']['l'],
imageColors['hair']['h'],
imageColors['hair']['s'],
imageColors['hair']['l'],
imageColors['underwear.bottom']['h'],
imageColors['underwear.bottom']['s'],
imageColors['underwear.bottom']['l'],
imageColors['underwear.top']['h'],
imageColors['underwear.top']['s'],
imageColors['underwear.top']['l'],
imageColors['clothes.bottom.1']['h'],
imageColors['clothes.bottom.1']['s'],
imageColors['clothes.bottom.1']['l'],
imageColors['clothes.bottom.2']['h'],
imageColors['clothes.bottom.2']['s'],
imageColors['clothes.bottom.2']['l'],
imageColors['clothes.top.1']['h'],
imageColors['clothes.top.1']['s'],
imageColors['clothes.top.1']['l'],
imageColors['clothes.top.2']['h'],
imageColors['clothes.top.2']['s'],
imageColors['clothes.top.2']['l'],
imageColors['socks.1']['h'],
imageColors['socks.1']['s'],
imageColors['socks.1']['l'],
imageColors['socks.2']['h'],
imageColors['socks.2']['s'],
imageColors['socks.2']['l'],
imageColors['shoes.1']['h'],
imageColors['shoes.1']['s'],
imageColors['shoes.1']['l'],
imageColors['shoes.2']['h'],
imageColors['shoes.2']['s'],
imageColors['shoes.2']['l'],
imageColors['hat.1']['h'],
imageColors['hat.1']['s'],
imageColors['hat.1']['l'],
imageColors['hat.2']['h'],
imageColors['hat.2']['s'],
imageColors['hat.2']['l']
];
}
function readState(arr) {
/* Layers */
readIdxPattern(arr, 0, 'tail');
readIdxPattern(arr, 1, 'hair-above');
readIdxPattern(arr, 1, 'hair-below');
readIdxPattern(arr, 2, 'eyes');
readIdxPattern(arr, 3, 'eye-spot');
readIdxPattern(arr, 4, 'underwear-bottom');
readIdxPattern(arr, 5, 'underwear-top');
readIdxPattern(arr, 6, 'clothes-bottom');
readIdxPattern(arr, 7, 'clothes-top');
readIdxPattern(arr, 7, 'clothes-top-above');
readIdxPattern(arr, 7, 'clothes-top-below');
readIdxPattern(arr, 8, 'socks');
readIdxPattern(arr, 9, 'shoes');
readIdxPattern(arr, 10, 'hat');
/* Colors */
readColorClass(arr, 11, 'body.color.1');
readColorClass(arr, 14, 'body.color.2');
readColorClass(arr, 17, 'ear.right.1');
readColorClass(arr, 20, 'ear.right.2');
readColorClass(arr, 23, 'ear.left.1');
readColorClass(arr, 26, 'ear.left.2');
readColorClass(arr, 29, 'eye.white');
readColorClass(arr, 32, 'eye.pupil.left');
readColorClass(arr, 35, 'eye.pupil.right');
readColorClass(arr, 38, 'hair');
readColorClass(arr, 41, 'underwear.bottom');
readColorClass(arr, 44, 'underwear.top');
readColorClass(arr, 47, 'clothes.bottom.1');
readColorClass(arr, 50, 'clothes.bottom.2');
readColorClass(arr, 53, 'clothes.top.1');
readColorClass(arr, 56, 'clothes.top.2');
readColorClass(arr, 59, 'socks.1');
readColorClass(arr, 62, 'socks.2');
readColorClass(arr, 65, 'shoes.1');
readColorClass(arr, 68, 'shoes.2');
readColorClass(arr, 71, 'hat.1');
readColorClass(arr, 74, 'hat.2');
}
function initFromState(input) {
if (input) {
readState(input);
}
}
var notifiers=[];
function notifyChangeState() {
var h = writeState();
for (var i = 0; i < notifiers.length; ++i) {
notifiers[i](h);
}
}
function addChangeStateCallback(callback) {
notifiers.push(callback);
}
]]></script>
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7071068"
inkscape:cx="370.86488"
inkscape:cy="384.06722"
inkscape:document-units="px"
inkscape:current-layer="toy.cat.creator.by.feufochmar.based.on.glip.floraverse"
showgrid="false"
units="px"
width="1000px"
showguides="true" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Toy Cat Creator</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:creator>
<cc:Agent>
<dc:title>Feufochmar</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>CC BY-SA</dc:title>
</cc:Agent>
</dc:rights>
<dc:description>Toy Cat Creator, an interactive image for making toy cats.
Based on the character Beleth from glip's Floraverse ( http://floraverse.com/wiki/beleth/ ).</dc:description>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
class="background"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-302.36216)"
sodipodi:insensitive="true">
<rect
style="opacity:1;fill:#e9c6eb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4136"
width="1000"
height="750"
x="0"
y="302.36215" />
<rect
style="opacity:1;fill:#faf3fa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4138"
width="500"
height="730"
x="126.30046"
y="312.36215" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:90px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="-676.38562"
y="79.238281"
id="text4436"
sodipodi:linespacing="80.000001%"
transform="matrix(0,-1,1,0,0,0)"><tspan
sodipodi:role="line"
id="tspan4438"
x="-676.38562"
y="79.238281">Toy Cat Creator</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="controls"
class="controls"
style="display:inline"
sodipodi:insensitive="true">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="859.96704"
y="263.48755"
id="text4431-9"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-0"
x="859.96704"
y="263.48755">Tail</tspan></text>
<path
style="fill:#8a8a8a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 960.25,240.50031 19.2993,14.4997 -19.2993,14.49969 z"
id="control.tail.next"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
onclick="nextPattern('tail');"
class="control.next" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="677.08374"
y="63.487549"
id="text4431"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433"
x="677.08374"
y="63.487549">Body</tspan></text>
<rect
style="opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.body.color.1"
width="39.5"
height="29.5"
x="860.25"
y="40.25"
class="body.color.1"
onclick="chooseColor('body.color.1');" />
<rect
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.body.color.2"
width="39.5"
height="29.5"
x="910.25"
y="40.25"
class="body.color.2"
onclick="chooseColor('body.color.2');" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="673.32397"
y="163.48755"
id="text4431-1"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-8"
x="673.32397"
y="163.48755">Eyes</tspan></text>
<rect
style="opacity:1;fill:#ffeeee;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.eye.white"
width="39.5"
height="29.5"
x="810.25"
y="140.25"
class="eye.white"
onclick="chooseColor('eye.white');" />
<rect
style="opacity:1;fill:#db5a9b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.eye.pupil.right"
width="39.5"
height="29.5"
x="860.25"
y="140.25"
class="eye.pupil.right"
onclick="chooseColor('eye.pupil.right');" />
<rect
style="opacity:1;fill:#280147;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.eye.pupil.left"
width="39.5"
height="29.5"
x="910.25"
y="140.25"
class="eye.pupil.left"
onclick="chooseColor('eye.pupil.left');" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="672.4646"
y="213.48755"
id="text4431-0"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-3"
x="672.4646"
y="213.48755">Hair</tspan></text>
<rect
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.color.hair"
width="39.5"
height="29.5"
x="910.25"
y="190.25"
class="hair"
onclick="chooseColor('hair');" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="740.67749"
y="363.48755"
id="text4431-0-6"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-3-3"
x="740.67749"
y="363.48755">Underwear - top</tspan></text>
<rect
style="opacity:1;fill:#3d2765;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.underwear.top"
width="39.5"
height="29.5"
x="910.25"
y="340.25"
class="underwear.top"
onclick="chooseColor('underwear.top');" />
<path
style="fill:#8a8a8a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 960.25,340.50009 19.2993,14.4997 -19.2993,14.49969 z"
id="control.underwear.top.next"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
onclick="nextPattern('underwear-top');"
class="control.next" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="762.10815"
y="463.48755"
id="text4431-0-6-1"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-3-3-0"
x="762.10815"
y="463.48755">Underwear - bottom</tspan></text>
<rect
style="opacity:1;fill:#3d2765;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.underwear.bottom"
width="39.5"
height="29.5"
x="910.25"
y="440.25"
class="underwear.bottom"
onclick="chooseColor('underwear.bottom');" />
<path
style="fill:#8a8a8a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 960.24998,440.50009 19.2993,14.4997 -19.2993,14.49969 z"
id="control.underwear.bottom.next"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
onclick="nextPattern('underwear-bottom');"
class="control.next" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="722.32178"
y="413.48755"
id="text4431-0-6-1-5"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-3-3-0-7"
x="722.32178"
y="413.48755">Clothes - top</tspan></text>
<rect
style="display:inline;opacity:1;fill:#67354f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.clothes.top.2"
width="39.5"
height="29.5"
x="910.25"
y="390.25"
class="clothes.top.2"
onclick="chooseColor('clothes.top.2');" />
<path
style="display:inline;fill:#8a8a8a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 960.24997,390.50009 19.2993,14.4997 -19.2993,14.49969 z"
id="control.clothes.top.next"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
onclick="nextPattern('clothes-top'); nextPattern('clothes-top-above'); nextPattern('clothes-top-below');"
class="control.next" />
<rect
style="display:inline;opacity:1;fill:#fce1c6;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.clothes.top.1"
width="39.5"
height="29.5"
x="860.25"
y="390.25"
class="clothes.top.1"
onclick="chooseColor('clothes.top.1');" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="743.75244"
y="513.48755"
id="text4431-0-6-1-5-8"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-3-3-0-7-8"
x="743.75244"
y="513.48755">Clothes - bottom</tspan></text>
<rect
style="display:inline;opacity:1;fill:#a17a82;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.clothes.bottom.2"
width="39.5"
height="29.5"
x="910.25"
y="490.25"
class="clothes.bottom.2"
onclick="chooseColor('clothes.bottom.2');" />
<path
style="display:inline;fill:#8a8a8a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 960.24996,490.50009 19.2993,14.4997 -19.2993,14.49969 z"
id="control.clothes.bottom.next"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
onclick="nextPattern('clothes-bottom');"
class="control.next" />
<rect
style="display:inline;opacity:1;fill:#a17a82;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.clothes.bottom.1"
width="39.5"
height="29.5"
x="860.25"
y="490.25"
class="clothes.bottom.1"
onclick="chooseColor('clothes.bottom.1');" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="680.85693"
y="563.48755"
id="text4431-0-6-1-5-8-9"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-3-3-0-7-8-6"
x="680.85693"
y="563.48755">Socks</tspan></text>
<rect
style="display:inline;opacity:1;fill:#faddc0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="socks.2"
width="39.5"
height="29.5"
x="910.25"
y="540.25"
class="socks.2"
onclick="chooseColor('socks.2');" />
<path
style="display:inline;fill:#8a8a8a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 960.24996,540.50009 19.2993,14.4997 -19.2993,14.49969 z"
id="control.socks.next"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
onclick="nextPattern('socks');"
class="control.next" />
<rect
style="display:inline;opacity:1;fill:#faddc0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.socks.1"
width="39.5"
height="29.5"
x="860.25"
y="540.25"
class="socks.1"
onclick="chooseColor('socks.1');" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="681.79688"
y="613.48755"
id="text4431-0-6-1-5-8-4"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-3-3-0-7-8-5"
x="681.79688"
y="613.48755">Shoes</tspan></text>
<rect
style="display:inline;opacity:1;fill:#804b58;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.shoes.2"
width="39.5"
height="29.5"
x="910.25"
y="590.25"
class="shoes.2"
onclick="chooseColor('shoes.2');" />
<rect
style="display:inline;opacity:1;fill:#804b58;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.shoes.1"
width="39.5"
height="29.5"
x="860.25"
y="590.25"
class="shoes.1"
onclick="chooseColor('shoes.1');" />
<path
style="display:inline;fill:#8a8a8a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 960.24993,590.50007 19.2993,14.4997 -19.2993,14.49969 z"
id="control.shoes.next"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
onclick="nextPattern('shoes');"
class="control.next" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="668.67798"
y="313.48755"
id="text4431-0-6-1-5-8-4-0"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-3-3-0-7-8-5-3"
x="668.67798"
y="313.48755">Hat</tspan></text>
<rect
style="display:inline;opacity:1;fill:#f41883;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.hat.1"
width="39.5"
height="29.5"
x="860.25"
y="290.25"
class="hat.1"
onclick="chooseColor('hat.1');" />
<rect
style="display:inline;opacity:1;fill:#f41883;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.hat.2"
width="39.5"
height="29.5"
x="910.25"
y="290.25"
class="hat.2"
onclick="chooseColor('hat.2');" />
<path
style="display:inline;fill:#8a8a8a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 960.24993,290.50006 19.2993,14.4997 -19.2993,14.49969 z"
id="control.hat.next"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
onclick="nextPattern('hat');"
class="control.next" />
<path
style="fill:#8a8a8a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 960.25,190.50009 19.2993,14.4997 -19.2993,14.49969 z"
id="control.hair.next"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
onclick="nextPattern('hair-above'); nextPattern('hair-below');"
class="control.next" />
<path
style="fill:#8a8a8a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 962.25,140.50009 19.2993,14.4997 -19.2993,14.49969 z"
id="control.eyes.next"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
onclick="nextPattern('eyes');"
class="control.next" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="671.7395"
y="113.48755"
id="text4431-1-3"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-8-7"
x="671.7395"
y="113.48755">Ears</tspan></text>
<rect
style="display:inline;opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.ear.right.2"
width="39.5"
height="29.5"
x="810.25"
y="90.25"
class="ear.right.2"
onclick="chooseColor('ear.right.2');" />
<rect
style="display:inline;opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.ear.left.1"
width="39.5"
height="29.5"
x="860.25"
y="90.25"
class="ear.left.1"
onclick="chooseColor('ear.left.1');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.ear.left.2"
width="39.5"
height="29.5"
x="910.25"
y="90.25"
class="ear.left.2"
onclick="chooseColor('ear.left.2');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="control.ear.right.1"
width="39.5"
height="29.5"
x="760.25"
y="90.25"
class="ear.right.1"
onclick="chooseColor('ear.right.1');" />
<g
id="button.random"
onclick="randomizeLayers();randomizeColors();"
class="button.random">
<rect
y="659.72498"
x="650.25"
height="30.549999"
width="109.5"
id="control.body.color.1-2-66-9-1-7-2"
style="display:inline;opacity:1;fill:#b7b7b7;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
sodipodi:linespacing="80.000001%"
id="text6907-3-6-0-6"
y="684.08014"
x="703.99902"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="684.08014"
x="703.99902"
id="tspan6909-9-0-9-5"
sodipodi:role="line">Random</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="695.61401"
y="263.48734"
id="text4431-9-8"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan4433-0-0"
x="695.61401"
y="263.48734">Eye spot</tspan></text>
<path
style="display:inline;fill:#8a8a8a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 770.25,240.50009 19.2993,14.4997 -19.2993,14.49969 z"
id="control.eye.spot.next"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
onclick="nextPattern('eye-spot');"
class="control.next" />
</g>
<g
inkscape:groupmode="layer"
id="color.picker"
class="color-picker"
style="display:none"
sodipodi:insensitive="true">
<rect
style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.0"
width="39.5"
height="29.5"
x="670.25"
y="150.25"
class="color.pick"
onclick="colorPickChangeHue(0);" />
<rect
style="display:inline;opacity:1;fill:#ff8000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.30"
width="39.5"
height="29.5"
x="720.25"
y="150.25"
class="color.pick"
onclick="colorPickChangeHue(30);" />
<rect
style="display:inline;opacity:1;fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.60"
width="39.5"
height="29.5"
x="770.25"
y="150.25"
class="color.pick"
onclick="colorPickChangeHue(60);" />
<rect
style="display:inline;opacity:1;fill:#80ff00;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.90"
width="39.5"
height="29.5"
x="820.25"
y="150.25"
class="color.pick"
onclick="colorPickChangeHue(90);" />
<rect
style="display:inline;opacity:1;fill:#00ff00;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.120"
width="39.5"
height="29.5"
x="870.25"
y="150.25"
class="color.pick"
onclick="colorPickChangeHue(120);" />
<rect
style="display:inline;opacity:1;fill:#00ff80;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.150"
width="39.5"
height="29.5"
x="920.25"
y="150.25"
class="color.pick"
onclick="colorPickChangeHue(150);" />
<rect
style="display:inline;opacity:1;fill:#00ffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.180"
width="39.5"
height="29.5"
x="670.25"
y="190.25"
class="color.pick"
onclick="colorPickChangeHue(180);" />
<rect
style="display:inline;opacity:1;fill:#0080ff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.210"
width="39.5"
height="29.5"
x="720.25"
y="190.25"
class="color.pick"
onclick="colorPickChangeHue(210);" />
<rect
style="display:inline;opacity:1;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.240"
width="39.5"
height="29.5"
x="770.25"
y="190.25"
class="color.pick"
onclick="colorPickChangeHue(240);" />
<rect
style="display:inline;opacity:1;fill:#8000ff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.270"
width="39.5"
height="29.5"
x="820.25"
y="190.25"
class="color.pick"
onclick="colorPickChangeHue(270);" />
<rect
style="display:inline;opacity:1;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.300"
width="39.5"
height="29.5"
x="870.25"
y="190.25"
class="color.pick"
onclick="colorPickChangeHue(300);" />
<rect
style="display:inline;opacity:1;fill:#ff0080;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hue.330"
width="39.5"
height="29.5"
x="920.25"
y="190.25"
class="color.pick"
onclick="colorPickChangeHue(330);" />
<rect
style="display:inline;opacity:1;fill:#380000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.100.11"
width="39.5"
height="29.5"
x="640.25"
y="240.25"
class="color.pick"
onclick="colorPickChangeSatLum(100, 11);" />
<rect
style="display:inline;opacity:1;fill:#7a0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.100.24"
width="39.5"
height="29.5"
x="690.25"
y="240.25"
class="color.pick"
onclick="colorPickChangeSatLum(100, 24);" />
<rect
style="display:inline;opacity:1;fill:#bd0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.100.37"
width="39.5"
height="29.5"
x="740.25"
y="240.25"
class="color.pick"
onclick="colorPickChangeSatLum(100, 37);" />
<rect
style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.100.50"
width="39.5"
height="29.5"
x="790.25"
y="240.25"
class="color.pick"
onclick="colorPickChangeSatLum(100, 50);" />
<rect
style="display:inline;opacity:1;fill:#ff4242;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.100.63"
width="39.5"
height="29.5"
x="840.25"
y="240.25"
class="color.pick"
onclick="colorPickChangeSatLum(100, 63);" />
<rect
style="display:inline;opacity:1;fill:#ff8585;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.100.76"
width="39.5"
height="29.5"
x="890.25"
y="240.25"
class="color.pick"
onclick="colorPickChangeSatLum(100, 76);" />
<rect
style="display:inline;opacity:1;fill:#330505;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.83.11"
width="39.5"
height="29.5"
x="640.25"
y="280.25"
class="color.pick"
onclick="colorPickChangeSatLum(83, 11);" />
<rect
style="display:inline;opacity:1;fill:#6f0b0b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.83.24"
width="39.5"
height="29.5"
x="690.25"
y="280.25"
class="color.pick"
onclick="colorPickChangeSatLum(83, 24);" />
<rect
style="display:inline;opacity:1;fill:#ac1010;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.83.37"
width="39.5"
height="29.5"
x="740.25"
y="280.25"
class="color.pick"
onclick="colorPickChangeSatLum(83, 37);" />
<rect
style="display:inline;opacity:1;fill:#e91616;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.83.50"
width="39.5"
height="29.5"
x="790.25"
y="280.25"
class="color.pick"
onclick="colorPickChangeSatLum(83, 50);" />
<rect
style="display:inline;opacity:1;fill:#ef5151;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.83.63"
width="39.5"
height="29.5"
x="840.25"
y="280.25"
class="color.pick"
onclick="colorPickChangeSatLum(83, 63);" />
<rect
style="display:inline;opacity:1;fill:#f49090;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.83.76"
width="39.5"
height="29.5"
x="890.25"
y="280.25"
class="color.pick"
onclick="colorPickChangeSatLum(83, 76);" />
<rect
style="display:inline;opacity:1;fill:#2f0909;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.67.11"
width="39.5"
height="29.5"
x="640.25"
y="320.25"
class="color.pick"
onclick="colorPickChangeSatLum(67, 11);" />
<rect
style="display:inline;opacity:1;fill:#661414;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.67.24"
width="39.5"
height="29.5"
x="690.25"
y="320.25"
class="color.pick"
onclick="colorPickChangeSatLum(67, 24);" />
<rect
style="display:inline;opacity:1;fill:#9d1f1f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.67.37"
width="39.5"
height="29.5"
x="740.25"
y="320.25"
class="color.pick"
onclick="colorPickChangeSatLum(67, 37);" />
<rect
style="display:inline;opacity:1;fill:#d52a2a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.67.50"
width="39.5"
height="29.5"
x="790.25"
y="320.25"
class="color.pick"
onclick="colorPickChangeSatLum(67, 50);" />
<rect
style="display:inline;opacity:1;fill:#e06060;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.67.63"
width="39.5"
height="29.5"
x="840.25"
y="320.25"
class="color.pick"
onclick="colorPickChangeSatLum(67, 63);" />
<rect
style="display:inline;opacity:1;fill:#eb9999;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.67.76"
width="39.5"
height="29.5"
x="890.25"
y="320.25"
class="color.pick"
onclick="colorPickChangeSatLum(67, 76);" />
<rect
style="display:inline;opacity:1;fill:#2a0e0e;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.50.11"
width="39.5"
height="29.5"
x="640.25"
y="360.25"
class="color.pick"
onclick="colorPickChangeSatLum(50, 11);" />
<rect
style="display:inline;opacity:1;fill:#5b1f1f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.50.24"
width="39.5"
height="29.5"
x="690.25"
y="360.25"
class="color.pick"
onclick="colorPickChangeSatLum(50, 24);" />
<rect
style="display:inline;opacity:1;fill:#8d2f2f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.50.37"
width="39.5"
height="29.5"
x="740.25"
y="360.25"
class="color.pick"
onclick="colorPickChangeSatLum(50, 37);" />
<rect
style="display:inline;opacity:1;fill:#bf4040;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.50.50"
width="39.5"
height="29.5"
x="790.25"
y="360.25"
class="color.pick"
onclick="colorPickChangeSatLum(50, 50);" />
<rect
style="display:inline;opacity:1;fill:#cf7171;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.50.63"
width="39.5"
height="29.5"
x="840.25"
y="360.25"
class="color.pick"
onclick="colorPickChangeSatLum(50, 63);" />
<rect
style="display:inline;opacity:1;fill:#e0a4a4;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.50.76"
width="39.5"
height="29.5"
x="890.25"
y="360.25"
class="color.pick"
onclick="colorPickChangeSatLum(50, 76);" />
<rect
style="display:inline;opacity:1;fill:#251313;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.33.11"
width="39.5"
height="29.5"
x="640.25"
y="400.25"
class="color.pick"
onclick="colorPickChangeSatLum(33, 11);" />
<rect
style="display:inline;opacity:1;fill:#512929;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.33.24"
width="39.5"
height="29.5"
x="690.25"
y="400.25"
class="color.pick"
onclick="colorPickChangeSatLum(33, 24);" />
<rect
style="display:inline;opacity:1;fill:#7d3f3f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.33.37"
width="39.5"
height="29.5"
x="740.25"
y="400.25"
class="color.pick"
onclick="colorPickChangeSatLum(33, 37);" />
<rect
style="display:inline;opacity:1;fill:#aa5555;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.33.50"
width="39.5"
height="29.5"
x="790.25"
y="400.25"
class="color.pick"
onclick="colorPickChangeSatLum(33, 50);" />
<rect
style="display:inline;opacity:1;fill:#c08080;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.33.63"
width="39.5"
height="29.5"
x="840.25"
y="400.25"
class="color.pick"
onclick="colorPickChangeSatLum(33, 63);" />
<rect
style="display:inline;opacity:1;fill:#d6aeae;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.33.76"
width="39.5"
height="29.5"
x="890.25"
y="400.25"
class="color.pick"
onclick="colorPickChangeSatLum(33, 76);" />
<rect
style="display:inline;opacity:1;fill:#211717;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.17.11"
width="39.5"
height="29.5"
x="640.25"
y="440.25"
class="color.pick"
onclick="colorPickChangeSatLum(17, 11);" />
<rect
style="display:inline;opacity:1;fill:#473333;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.17.24"
width="39.5"
height="29.5"
x="690.25"
y="440.25"
class="color.pick"
onclick="colorPickChangeSatLum(17, 24);" />
<rect
style="display:inline;opacity:1;fill:#6e4e4e;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.17.37"
width="39.5"
height="29.5"
x="740.25"
y="440.25"
class="color.pick"
onclick="colorPickChangeSatLum(17, 37);" />
<rect
style="display:inline;opacity:1;fill:#956a6a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.17.50"
width="39.5"
height="29.5"
x="790.25"
y="440.25"
class="color.pick"
onclick="colorPickChangeSatLum(17, 50);" />
<rect
style="display:inline;opacity:1;fill:#b09090;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.17.63"
width="39.5"
height="29.5"
x="840.25"
y="440.25"
class="color.pick"
onclick="colorPickChangeSatLum(17, 63);" />
<rect
style="display:inline;opacity:1;fill:#ccb8b8;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.17.76"
width="39.5"
height="29.5"
x="890.25"
y="440.25"
class="color.pick"
onclick="colorPickChangeSatLum(17, 76);" />
<rect
style="display:inline;opacity:1;fill:#ffc7c7;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.100.89"
width="39.5"
height="29.5"
x="940.25"
y="240.25"
class="color.pick"
onclick="colorPickChangeSatLum(100, 89);" />
<rect
style="display:inline;opacity:1;fill:#facccc;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.83.89"
width="39.5"
height="29.5"
x="940.25"
y="280.25"
class="color.pick"
onclick="colorPickChangeSatLum(83, 89);" />
<rect
style="display:inline;opacity:1;fill:#f6d0d0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.67.89"
width="39.5"
height="29.5"
x="940.25"
y="320.25"
class="color.pick"
onclick="colorPickChangeSatLum(67, 89);" />
<rect
style="display:inline;opacity:1;fill:#f1d5d5;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.50.89"
width="39.5"
height="29.5"
x="940.25"
y="360.25"
class="color.pick"
onclick="colorPickChangeSatLum(50, 89);" />
<rect
style="display:inline;opacity:1;fill:#ecdada;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.33.89"
width="39.5"
height="29.5"
x="940.25"
y="400.25"
class="color.pick"
onclick="colorPickChangeSatLum(33, 89);" />
<rect
style="display:inline;opacity:1;fill:#e8dede;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.17.89"
width="39.5"
height="29.5"
x="940.25"
y="440.25"
class="color.pick"
onclick="colorPickChangeSatLum(17, 89);" />
<rect
style="display:inline;opacity:1;fill:#1c1c1c;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.0.11"
width="39.5"
height="29.5"
x="640.25"
y="480.25"
class="color.pick"
onclick="colorPickChangeSatLum(0, 11);" />
<rect
style="display:inline;opacity:1;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.0.24"
width="39.5"
height="29.5"
x="690.25"
y="480.25"
class="color.pick"
onclick="colorPickChangeSatLum(0, 24);" />
<rect
style="display:inline;opacity:1;fill:#5e5e5e;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.0.37"
width="39.5"
height="29.5"
x="740.25"
y="480.25"
class="color.pick"
onclick="colorPickChangeSatLum(0, 37);" />
<rect
style="display:inline;opacity:1;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.0.50"
width="39.5"
height="29.5"
x="790.25"
y="480.25"
class="color.pick"
onclick="colorPickChangeSatLum(0, 50);" />
<rect
style="display:inline;opacity:1;fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.0.63"
width="39.5"
height="29.5"
x="840.25"
y="480.25"
class="color.pick"
onclick="colorPickChangeSatLum(0, 63);" />
<rect
style="display:inline;opacity:1;fill:#c2c2c2;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.0.76"
width="39.5"
height="29.5"
x="890.25"
y="480.25"
class="color.pick"
onclick="colorPickChangeSatLum(0, 76);" />
<rect
style="display:inline;opacity:1;fill:#e3e3e3;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.sat.lum.0.89"
width="39.5"
height="29.5"
x="940.25"
y="480.25"
class="color.pick"
onclick="colorPickChangeSatLum(0, 89);" />
<rect
style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect6665-0"
width="330"
height="3"
x="650"
y="527" />
<rect
style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect6665-8"
width="330"
height="3"
x="650"
y="127" />
<rect
style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.current"
width="39.5"
height="29.5"
x="650.25"
y="80.25"
class="color.pick.current"
onclick="colorPickOldColor();" />
<rect
style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.new"
width="39.5"
height="29.5"
x="650.25"
y="40.25"
class="color.pick.new" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="721.26953"
y="104.70684"
id="text6907"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan6909"
x="721.26953"
y="104.70684">Old</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="725.38574"
y="64.707031"
id="text6907-3"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
id="tspan6909-9"
x="725.38574"
y="64.707031">New</tspan></text>
<g
id="color.pick.button.ok"
class="button"
onclick="colorPickerHide(true);">
<rect
y="40.25"
x="880.25"
height="29.5"
width="99.5"
id="control.body.color.1-2-66-9-1"
style="display:inline;opacity:1;fill:#b7b7b7;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
sodipodi:linespacing="80.000001%"
id="text6907-3-6"
y="64.512093"
x="930.83545"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="64.512093"
x="930.83545"
id="tspan6909-9-0"
sodipodi:role="line">OK</tspan></text>
</g>
<g
id="color.pick.button.cancel"
class="button"
onclick="colorPickerHide(false);">
<rect
y="80.25"
x="880.25"
height="29.5"
width="99.5"
id="control.body.color.1-2-66-9-1-7"
style="display:inline;opacity:1;fill:#b7b7b7;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
sodipodi:linespacing="80.000001%"
id="text6907-3-6-0"
y="104.08012"
x="930.19965"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:80.00000119%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="104.08012"
x="930.19965"
id="tspan6909-9-0-9"
sodipodi:role="line">Cancel</tspan></text>
</g>
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.body.color.1"
width="39.5"
height="29.5"
x="670.25"
y="550.25"
class="body.color.1"
onclick="pickColorClass('body.color.1');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.body.color.2"
width="39.5"
height="29.5"
x="720.25"
y="550.25"
class="body.color.2"
onclick="pickColorClass('body.color.2');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.eye.white"
width="39.5"
height="29.5"
x="770.25"
y="550.25"
class="eye.white"
onclick="pickColorClass('eye.white');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.eye.pupil.right"
width="39.5"
height="29.5"
x="820.25"
y="550.25"
class="eye.pupil.right"
onclick="pickColorClass('eye.pupil.right');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.eye.pupil.left"
width="39.5"
height="29.5"
x="870.25"
y="550.25"
class="eye.pupil.left"
onclick="pickColorClass('eye.pupil.left');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hair"
width="39.5"
height="29.5"
x="920.25"
y="550.25"
class="hair"
onclick="pickColorClass('hair');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hat.1"
width="39.5"
height="29.5"
x="670.25"
y="590.25"
class="hat.1"
onclick="pickColorClass('hat.1');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.hat.2"
width="39.5"
height="29.5"
x="720.25"
y="590.25"
class="hat.2"
onclick="pickColorClass('hat.2');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.underwear.top"
width="39.5"
height="29.5"
x="770.25"
y="590.25"
class="underwear.top"
onclick="pickColorClass('underwear.top');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.clothes.top.1"
width="39.5"
height="29.5"
x="820.25"
y="590.25"
class="clothes.top.1"
onclick="pickColorClass('clothes.top.1');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.clothes.top.2"
width="39.5"
height="29.5"
x="870.25"
y="590.25"
class="clothes.top.2"
onclick="pickColorClass('clothes.top.2');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.underwear.bottom"
width="39.5"
height="29.5"
x="920.25"
y="590.25"
class="underwear.bottom"
onclick="pickColorClass('underwear.bottom');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.clothes.bottom.1"
width="39.5"
height="29.5"
x="670.25"
y="630.25"
class="clothes.bottom.1"
onclick="pickColorClass('clothes.bottom.1');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.clothes.bottom.2"
width="39.5"
height="29.5"
x="720.25"
y="630.25"
class="clothes.bottom.2"
onclick="pickColorClass('clothes.bottom.2');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.socks.1"
width="39.5"
height="29.5"
x="770.25"
y="630.25"
class="socks.1"
onclick="pickColorClass('socks.1');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.socks.2"
width="39.5"
height="29.5"
x="820.25"
y="630.25"
class="socks.2"
onclick="pickColorClass('socks.2');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.shoes.1"
width="39.5"
height="29.5"
x="870.25"
y="630.25"
class="shoes.1"
onclick="pickColorClass('shoes.1');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.shoes.2"
width="39.5"
height="29.5"
x="920.25"
y="630.25"
class="shoes.2"
onclick="pickColorClass('shoes.2');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.ear.right.1"
width="39.5"
height="29.5"
x="670.25"
y="670.25"
class="ear.right.1"
onclick="pickColorClass('ear.right.1');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.ear.right.2"
width="39.5"
height="29.5"
x="720.25"
y="670.25"
class="ear.right.2"
onclick="pickColorClass('ear.right.2');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.ear.left.1"
width="39.5"
height="29.5"
x="770.25"
y="670.25"
class="ear.left.1"
onclick="pickColorClass('ear.left.1');" />
<rect
style="display:inline;opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="color.pick.ear.left.2"
width="39.5"
height="29.5"
x="820.25"
y="670.25"
class="ear.left.2"
onclick="pickColorClass('ear.left.2');" />
</g>
<g
inkscape:groupmode="layer"
id="layer.none"
class="layer-none"
sodipodi:insensitive="true"
style="display:inline" />
<g
inkscape:groupmode="layer"
id="layer.tail.back"
class="layer-tail-back"
style="display:inline"
sodipodi:insensitive="true">
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d31568;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 508.56836,284.44336 c -30.75791,1.39582 -57.99427,24.24491 -68.5957,52.51367 -5.98363,23.18769 5.4633,45.96691 14.05078,66.87891 7.03333,16.41433 17.70359,33.45806 15.2832,51.89258 -5.91957,10.62762 -20.57004,9.65446 -30.89258,8.5996 -33.04243,-3.86648 -63.52441,-18.91546 -92.69531,-33.59179 -6.44554,-3.18615 -12.59588,-8.53796 -19.60352,-9.68555 -10.88771,2.45839 -14.48941,20.12357 -3.80468,25.21094 40.08885,22.21156 83.43551,43.43204 130.28045,43.70027 18.02655,-0.57014 38.09716,-11.58436 41.47931,-30.62801 4.41753,-23.14923 -8.44474,-44.7081 -16.77477,-65.36081 -7.01981,-15.88693 -16.26301,-32.90613 -12.83656,-50.79544 6.55479,-16.30011 21.89819,-28.33228 38.45704,-33.25195 8.00291,-1.96399 19.05672,1.32805 19.92578,10.7461 2.53571,14.38691 -2.20435,28.81802 -3.99368,43.13168 -4.0294,21.37588 0.33714,44.0725 8.51185,65.13064 15.17646,39.09475 4.87161,-0.208 11.64653,-3.947 5.42729,-2.99525 27.71928,37.25503 10.76999,-8.13862 -6.86012,-18.37279 -6.97825,-37.77858 -5.06493,-56.78474 3.66447,-19.34692 7.59915,-41.34557 -3.1139,-59.224 -7.38321,-10.49942 -20.27065,-16.63411 -33.0293,-16.39648 z"
id="tail.back"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccsssccc"
class="body.color.1" />
</g>
<g
style="display:none"
class="layer-tail-pattern-itchy"
id="layer.tail.pattern.itchy"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 508.56836,284.44336 c -17.04264,0.77341 -32.99695,8.14054 -45.64648,19.35937 l 14.91992,20.34375 c 7.13419,-6.59292 15.91417,-11.49923 25.07422,-14.2207 2.44159,-0.59918 5.16231,-0.69553 7.79492,-0.28906 l 6.2832,-24.42774 c -2.77392,-0.55169 -5.60196,-0.81821 -8.42578,-0.76562 z m 39.37305,55.22656 -25.25586,1.05078 c -1.08004,7.71125 -2.87922,15.41314 -3.83789,23.08203 -1.93159,10.24703 -1.91788,20.79813 -0.4961,31.32618 l 25.5625,-7.17579 c -0.57618,-9.28115 -0.13502,-18.63159 0.79688,-27.88867 1.24624,-6.57966 2.50842,-13.46774 3.23047,-20.39453 z m -79.97266,32.58203 -24.53906,5.00782 c 3.08426,9.10461 7.0716,17.99912 10.59375,26.57617 3.08776,7.2062 6.87492,14.53362 9.94922,22.04687 l 24.89648,-4.57226 c -3.53239,-9.31868 -7.97446,-18.41298 -11.57422,-27.33789 -3.1045,-7.02597 -6.64028,-14.27462 -9.32617,-21.72071 z m -141.85352,48.79883 c -10.88771,2.45839 -14.48941,20.12357 -3.80468,25.21094 10.30166,5.70772 20.82251,11.34187 31.55859,16.58008 4.13867,-6.60483 8.71587,-14.28219 13.04688,-21.66211 -7.15175,-3.39803 -14.21299,-6.92946 -21.19727,-10.44336 -6.44554,-3.18615 -12.59588,-8.53796 -19.60352,-9.68555 z m 86.9043,38.14844 -9.19922,23.38476 c 15.82077,4.51642 32.07269,7.28329 48.77149,7.37891 3.29031,-0.10406 6.64838,-0.56037 9.96093,-1.3457 l -6.35156,-24.34766 c -5.87615,1.11928 -12.41458,0.60761 -17.78711,0.0586 -8.63369,-1.01026 -17.08816,-2.79783 -25.39453,-5.1289 z"
id="tail.pattern.itchy"
inkscape:connector-curvature="0"
class="body.color.2" />
</g>
<g
class="layer-tail-pattern"
id="layer.tail.pattern.seeds"
inkscape:groupmode="layer"
style="display:inline"
sodipodi:insensitive="true">
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.5;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 508.56836,284.44336 c -29.51418,1.33938 -55.77567,22.43529 -67.21875,49.11523 l 23.33789,9.07618 c 6.67497,-16.02297 21.85492,-27.84436 38.22852,-32.70899 8.00291,-1.96399 19.05672,1.32802 19.92578,10.7461 1.17611,6.67293 0.77963,13.35542 -0.1543,20.03124 l 25.67188,-6.00781 c 0.7187,-11.79004 -0.56388,-23.51221 -6.76172,-33.85547 -7.38321,-10.49942 -20.27065,-16.63411 -33.0293,-16.39648 z m 35.53906,82.63867 -26.44336,5.63477 c -1.55238,18.69327 2.64806,38.06298 9.69532,56.21679 15.17646,39.09475 4.87156,-0.20826 11.64648,-3.94726 5.42729,-2.99525 27.72077,37.25498 10.77148,-8.13867 -6.01759,-16.11633 -6.84822,-33.02657 -5.66992,-49.76563 z m -71.69726,16.02735 -26.3086,1.5039 c 2.53655,6.54753 5.35423,12.97 7.92188,19.22266 7.03333,16.41433 17.70359,33.45806 15.2832,51.89258 -4.70651,8.44977 -14.92787,9.56028 -24.10937,9.13281 l 16.43164,23.96289 c 15.17749,-3.30688 29.61932,-13.60014 32.4414,-29.49024 4.41753,-23.14923 -8.44536,-44.70861 -16.77539,-65.36132 -1.57416,-3.56258 -3.25498,-7.18982 -4.88476,-10.86328 z m -146.29493,37.9414 c -10.88771,2.45839 -14.48941,20.12357 -3.80468,25.21094 30.95014,17.14818 63.84445,33.69705 98.78906,40.47851 l 2.88477,-24.8164 c -27.55825,-5.89149 -53.38916,-18.67176 -78.26563,-31.1875 -6.44554,-3.18615 -12.59588,-8.53796 -19.60352,-9.68555 z"
id="tail.pattern3.middle"
inkscape:connector-curvature="0"
class="body.color.2" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 508.56836,284.44336 c -16.02724,0.72733 -31.092,7.28761 -43.35156,17.39648 l 14.91601,20.28516 c 6.68424,-5.57919 14.58316,-9.76297 22.78321,-12.19922 5.16198,-1.2668 11.57975,-0.33232 15.72851,3.00781 l 21.83594,-13.57421 c -7.52001,-9.58761 -19.76899,-15.14219 -31.91211,-14.91602 z m 36.40625,113.55273 -25.08789,6.08203 c 1.75641,8.41536 4.32863,16.7565 7.47266,24.85547 15.17646,39.09475 4.87156,-0.20826 11.64648,-3.94726 5.42729,-2.99525 27.72077,37.25498 10.77148,-8.13867 -2.30929,-6.18475 -3.84171,-12.48735 -4.80273,-18.85157 z m -83.98828,21.07813 c 5.34633,11.72043 10.00193,23.84653 8.32031,36.6543 -0.56247,1.00983 -1.20513,1.91437 -1.91406,2.7246 l 17.53906,18.07227 c 4.59904,-4.63892 7.9329,-10.40213 9.13867,-17.19141 2.66171,-13.94816 -0.9623,-27.31653 -6.07617,-40.25976 l -27.00781,0 z m -134.8711,1.97656 c -10.88771,2.45839 -14.48941,20.12357 -3.80468,25.21094 24.26919,13.44655 49.73461,26.52089 76.44531,34.8125 l 2.77734,-25.46094 c -19.29932,-6.62554 -37.80808,-15.81767 -55.81445,-24.87695 -6.44554,-3.18615 -12.59588,-8.53796 -19.60352,-9.68555 z"
id="tail.pattern3.front"
inkscape:connector-curvature="0"
class="body.color.2" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.below.itchy"
class="layer-hair-below-itchy"
style="display:none"
sodipodi:insensitive="true">
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 320.52407,188.5014 c 0,0 -10.40934,4.74061 -16.74727,5.58241 -4.54182,0.60324 -15.81686,-4.65202 -15.81686,-4.65202 6.98354,-4.18773 11.04174,-7.6553 11.16484,-10.69963 -9.89877,6.60377 -18.07934,14.33185 -31.63373,6.04762 25.37976,-23.69374 -4.80708,-29.61786 0.46521,-40.93777 l 111.64843,-4.65202 c -13.07911,13.79087 -18.82692,38.6751 -1.78182,49.20337 -17.67811,8.13446 -22.52133,-1.05389 -25.39875,-5.11601 0,0 0.62774,5.48885 7.33654,9.54711 -14.12719,0.74376 -22.56926,-2.35209 -30.39777,-3.85786 z"
id="hair.2.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccccccccc"
class="hair" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.below.bellith"
class="layer-hair-below-bellith"
style="display:none"
sodipodi:insensitive="true">
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 330.88512,202 c 18.34344,0.69364 71.32721,-5.17363 101.27149,-24 -32.01385,0 -46.89063,-87 -46.89063,-87 l -53.91601,-0.25 -13.15235,0.990234 0,0 L 264.28161,91 c 0,0 -13.94714,87 -46.88868,87 29.94428,18.82637 82.9261,24.69364 101.26954,24 z"
id="hair.3.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccc"
class="hair" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.below.id"
class="layer-hair-below-id"
sodipodi:insensitive="true"
style="display:none">
<path
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 252.63086,129.60547 c -9.46498,82.43627 23.87867,160.36075 -2.07256,246.47138 3.94727,-0.96759 5.10332,-5.08295 9.05059,-8.81289 2.95581,17.9122 -0.30771,38.59913 -6.53157,63.96276 0,0 28.04995,-5.38429 34.80236,-10.32399 l 89.21993,6.07188 c 5.31393,4.07409 8.25287,10.52318 16.32227,11.8418 -3.266,-6.05498 -4.07681,-21.27739 -3.14154,-26.132 4.93035,5.0771 8.02306,12.16571 8.5893,10.91998 -7.69801,-16.65825 -9.64153,-32.52247 -7.54812,-50.28022 l 5.72691,8.82601 c -15.87871,-76.55564 0.32071,-166.75592 0.32071,-252.54471 z"
id="hair.4.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccc"
class="hair" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.below.misc"
class="layer-hair-below-misc"
sodipodi:insensitive="true"
style="display:none">
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 263.539,209 c 39.52484,-12.02908 79.49003,-14.59066 120.253,0 l 14.18817,-64.92539 -148.86459,-6.51282 z"
id="hair.5.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc"
class="hair" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.below.misc.2"
class="layer-hair-below-misc-2"
style="display:none"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 326.44141,58.185547 c -36.5148,-2.94e-4 -54.94832,19.686151 -66.61524,32.927281 -5.83346,6.620566 -21.08422,30.440992 -34.87662,118.606272 -6.8962,44.08265 -6.23536,104.11409 -6.23536,153.3997 0,49.38277 -19.89107,87.27573 -19.89107,87.27573 86.44483,31.46126 172.0243,25.71201 257.13861,-0.039 0,0 -20.7544,-37.51131 -20.7544,-86.46651 0,-47.35987 -0.45943,-108.2018 -7.86952,-151.67241 C 412.51764,125.2754 396.68105,102.5907 392.61535,95.616718 384.48396,81.668753 362.95545,58.189908 326.44141,58.189437 Z"
id="hair.misc.2.below"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssccscccs"
class="hair" />
</g>
<g
style="display:none"
class="layer-hair-below-broken"
id="layer.hair.below.broken"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
class="hair"
sodipodi:nodetypes="ccccccccccc"
inkscape:connector-curvature="0"
id="hair.broken.below"
d="m 320.52407,188.5014 c -10.4401,2.71292 -18.46172,1.66596 -27.93791,4.6262 0.15174,-3.29825 -1.01467,-6.21701 -1.8447,-10.56095 -5.99034,2.86156 -8.95996,6.06949 -20.61883,6.48945 15.75763,-23.27813 -7.43866,-33.89418 -2.16637,-45.21409 l 124.47738,-9.91518 c -3.53964,22.01456 -27.78206,40.48915 -14.61077,54.46653 -8.88891,2.39389 -14.80909,-0.0618 -20.28153,-3.7204 0,0 -1.00047,4.79104 -0.57189,8.1515 -12.84789,-3.55936 -19.77805,-2.35209 -27.60656,-3.85786 z"
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.below.fluffy.kiriban"
class="layer-hair-below-fluffy-kiriban"
style="display:none"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 309.86129,94.328877 c -18.36768,2.868202 -47.7466,12.016273 -48.63918,32.639203 -0.6521,15.06664 -4.34568,32.73935 16.70966,56.96829 21.05535,24.22894 64.15488,22.81256 89.70922,23.09919 33.40241,0.37466 62.25147,-12.41274 62.21721,-49.7245 -6.41203,10.38978 -13.64419,12.99174 -20.42949,12.63683 -5.29388,-0.2769 -26.70098,-4.47767 -29.72061,-13.38003 -6.08631,-17.94342 -14.44369,-31.72729 -28.85482,-44.27531 -13.40173,-11.66912 -22.66621,-18.295156 -40.99199,-17.963673 z"
id="hair.below.fluffy.kiriban"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cszscsssc"
class="hair" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.below.jasmaby"
class="layer-hair-below-jasmaby"
sodipodi:insensitive="true"
style="display:none">
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 266,100 c 0,0 -9.73223,60.32322 -16.73223,87.32322 -7,27 -48.56497,62.72183 -49.56497,96.72183 -1,34 14.57912,52.41153 6.2972,73.70495 -7.73847,19.89616 -9.70836,28.93232 -13.5,32.25 5.97393,-1.08617 13.19671,-2.30923 14.75,-10.75 4.75,4 0.75,15.75 0.75,15.75 0,0 11.75,-5.25 12.75,-18.25 6.25,4 11.5,14.5 11.5,14.5 0,0 3.33579,-14.93629 3.33579,-30.93629 C 235.58579,344.31371 264,342 263,300 262,258 265.90518,230.66688 278.5,208.5 291,186.5 311,140 311,123 c 0,-17 -45,-23 -45,-23 z"
id="hair.below.jasmaby.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssscccccssssc"
class="hair" />
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 383.9521,99.9999 c 0,0 9.73223,60.32322 16.73223,87.32322 7,26.99999 48.56497,62.72182 49.56497,96.72182 1,34 -14.57912,52.41153 -6.2972,73.70495 7.73847,19.89616 9.70836,28.93232 13.5,32.25 -5.97393,-1.08617 -13.19671,-2.30923 -14.75,-10.75 -4.75,4 -0.75,15.75 -0.75,15.75 0,0 -11.75,-5.25 -12.75,-18.25 -6.25,4 -11.5,14.5 -11.5,14.5 0,0 -3.33579,-14.93629 -3.33579,-30.93629 0,-16 -28.41421,-18.31371 -27.41421,-60.31371 1,-42 -2.90518,-69.33312 -15.5,-91.5 -12.5,-21.99999 -32.5,-68.49999 -32.5,-85.49999 0,-17 45,-23 45,-23 z"
id="hair.below.jasmaby.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssscccccssssc"
class="hair" />
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 262.85662,130.96703 59.2647,29.53345 c 0,0 -5.72446,24.01403 -51.38486,35.09115 19.03987,-17.56071 -7.87984,-64.6246 -7.87984,-64.6246 z"
id="hair.below.jasmaby.3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
class="hair" />
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 384.98877,129.96749 -59.73957,31.41734 c 0,0 11.02776,23.4837 54.39006,34.56082 -19.03987,-17.56071 5.34951,-65.97816 5.34951,-65.97816 z"
id="hair.below.jasmaby.4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
class="hair" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.potion.below"
class="layer-clothes-top-potion-below"
style="display:none"
sodipodi:insensitive="true">
<path
class="clothes.top.1"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="clothes.top.potion.below"
d="m 234.22656,256.91992 c -3.58111,13.36489 -24.97124,102.4881 -24.84961,143.12108 77.08008,8.14454 153.66016,8.98221 231.24024,0 0.12163,-40.63297 -21.2685,-129.76009 -24.84961,-143.12498 z"
style="display:inline;opacity:1;fill:#1d0046;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.alice.below"
class="layer-clothes-top-alice-below"
sodipodi:insensitive="true"
style="display:none">
<path
style="opacity:1;fill:#241e42;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 324.00195,207.7168 0,0.12109 c -46.24166,2.68901 -53.17551,7.84674 -89.16601,24.71484 -27.43509,133.4388 -12.32672,266.87761 -8,400.31641 l 25.11523,-10.53906 0,13.8125 13.73047,-4.29688 12,11.40625 26.64844,-11.45703 19.67187,8 1.97266,0 19.67187,-8 26.6504,11.45703 12,-11.40625 13.72851,4.29688 0,-13.8125 25.11523,10.53906 c 6.02838,-134.88798 18.37056,-270.82825 -8,-400.31641 -35.9905,-16.8681 -42.92435,-22.02583 -89.16601,-24.71484 l 0,-0.12109 c -0.3431,0.019 -0.64661,0.0412 -0.98633,0.0605 -0.33971,-0.0193 -0.64323,-0.0415 -0.98633,-0.0605 z"
id="clothes.top.alice.below"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccccccccc"
class="clothes.top.1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.ear.left"
class="layer-ear"
style="display:inline"
sodipodi:insensitive="true">
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 372.29504,119.34582 c 20.92897,-13.10835 47.74013,-22.611466 40.29661,-63.460497 -29.68754,-5.252019 -50.67587,14.622366 -66.6147,35.648983"
id="ear.left.back"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc"
class="ear.left.1" />
<path
style="fill:#d31568;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 405.70112,62.562713 c 0,0 -19.52713,-3.676029 -23.75141,7.34083 -2.37918,6.204793 7.68973,9.437653 7.68973,9.437653 0,0 3.6855,9.893385 9.75385,7.262121 10.82507,-4.693798 6.30783,-24.040604 6.30783,-24.040604 z"
id="ear.left.front"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscsc"
class="ear.left.2" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="ear.right.back"
d="m 277.59178,119.34582 c -20.92897,-13.10835 -47.74013,-22.611466 -40.29661,-63.460497 29.68754,-5.252019 50.67587,14.622366 66.6147,35.648983"
style="display:inline;fill:#d31568;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
class="ear.right.1" />
<path
sodipodi:nodetypes="cscsc"
inkscape:connector-curvature="0"
id="ear.right.front"
d="m 243.66197,61.675242 c 0,0 20.97768,-3.949092 25.51576,7.886122 2.55591,6.665698 -8.26095,10.138702 -8.26095,10.138702 0,0 -3.95928,10.628286 -10.47841,7.801566 -11.62919,-5.042463 -6.7764,-25.82639 -6.7764,-25.82639 z"
style="display:inline;fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
class="ear.right.2" />
</g>
<g
inkscape:groupmode="layer"
id="layer.body"
class="layer-body"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#d31568;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 324.99709,70.667888 c -27.62858,0.0027 -63.43175,13.81318 -63.43175,56.435632 l -15.4702,3.67968 13.8569,12.04492 -12.0963,8.48438 c 0,0 15.12198,8.06891 21.29721,14.24414 10.99101,10.99101 43.21705,21.51367 43.21705,21.51367 l 0,15.89844 c 0,0 -48.43269,6.60977 -58.32852,12.5 -10.73104,6.38738 -12.96059,29.59111 -16.38498,42.37109 -3.43008,12.80122 -14.84852,68.03589 -14.72898,107.98243 0.11302,37.76236 5.11933,113.125 5.11933,113.125 -3.5678,11.35761 -4.91274,24.45417 8.23307,26.8457 -3.84676,-3.79854 -4.66679,-4.65908 -5.74832,-9.16797 1.5084,3.42863 4.92112,10.77578 11.5263,8.13867 -1.90034,-2.02003 -3.70396,-4.88694 -5.58038,-9.65625 3.55972,5.66235 4.09877,9.71959 9.79901,8.92188 -2.80554,-4.03921 -1.84189,-12.20042 -0.76568,-12.85157 2.24707,-1.35957 3.61492,-0.58816 5.94593,2.83789 0.93806,-8.37869 -0.11055,-8.16383 -4.818,-13.99804 0,0 1.49215,-83.99699 2.58025,-111.59766 1.08809,-27.60067 10.80155,-79.23844 16.5505,-96.49219 0,0 5,56.53781 5,86.03613 0,29.49833 -7.73789,62.62039 -9,98.03614 -1.26211,35.41575 1.18498,82.80682 3.80203,124.07617 2.16259,34.10263 9.82371,101.9336 9.82371,101.9336 -3.49793,10.52917 -14.47905,12.47978 -10.71946,24.79296 6.2268,-1.93594 6.70708,-3.718 9.44662,-7.81835 -0.3415,3.62816 -0.10263,5.08382 3.61926,7.99804 3.62444,-1.65654 7.06064,-4.51879 9.22928,-7.04297 -0.48581,2.75884 -0.46651,4.11966 1.7734,7.04297 2.93253,-0.93244 5.93386,-2.06399 8.53605,-4.82226 4.3428,-4.60326 2.98941,-11.24289 4.25815,-18.38282 0,0 -3.19696,-50.53514 -2.64446,-102.59765 0.55249,-52.0625 8.68588,-105.90599 10.43295,-113.44727 1.68227,-7.26153 9.5024,-11.73278 15.68251,-11.73042 6.17276,0.002 13.97646,4.47211 15.65751,11.72842 1.74707,7.54128 9.88046,61.38281 10.43295,113.44531 0.5525,52.06251 -2.64281,102.59766 -2.64281,102.59766 1.26874,7.13993 -0.0847,13.7815 4.25814,18.38476 2.6022,2.75827 5.60188,3.88788 8.53441,4.82032 2.23991,-2.92331 2.26086,-4.28413 1.77505,-7.04297 2.16864,2.52418 5.60484,5.38643 9.22928,7.04297 3.72188,-2.91422 3.96076,-4.36793 3.61926,-7.9961 2.73953,4.10035 3.21982,5.88242 9.44663,7.81836 3.75959,-12.31318 -7.22319,-14.26575 -10.72112,-24.79492 0,0 7.66113,-67.83096 9.82371,-101.93359 2.61705,-41.26935 4.86578,-88.67004 3.80368,-124.07618 -1.0621,-35.40614 -8,-68.56919 -8,-98.03516 0,-29.46596 4,-86.03515 4,-86.03515 5.74895,17.25375 15.46076,68.88957 16.54885,96.49024 1.0881,27.60067 2.58025,111.5996 2.58025,111.5996 -4.70745,5.83422 -5.75606,5.61741 -4.818,13.9961 2.33101,-3.42605 3.70051,-4.19551 5.94758,-2.83594 1.07621,0.65115 2.03821,8.81235 -0.76733,12.85156 5.70024,0.79771 6.24094,-3.26147 9.80065,-8.92382 -1.87642,4.76931 -3.68003,7.63622 -5.58037,9.65625 6.60517,2.63711 10.01791,-4.71005 11.5263,-8.13868 -1.08152,4.50889 -1.9032,5.37139 -5.74997,9.16993 13.14581,-2.39153 11.80251,-15.49005 8.23471,-26.84766 0,0 5.00467,-75.36264 5.11769,-113.125 0.11954,-39.94654 -11.2989,-95.1812 -14.72898,-107.98242 -3.42439,-12.77998 -5.65394,-35.98372 -16.38498,-42.3711 -9.89583,-5.89023 -58.32688,-12.5 -58.32688,-12.5 l 0,-15.89843 c 0,0 32.22604,-10.52266 43.21706,-21.51368 6.58202,-6.58202 21.29557,-12.24414 21.29557,-12.24414 l -12.09631,-10.48437 13.85856,-12.04492 -15.47022,-3.67969 c 0,-42.791429 -35.80478,-56.434359 -63.43335,-56.431672 z"
id="body"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccsccsssccccccsccsczzsccccccscssssscsccccccszzcsccsccccccsssccsccccc"
class="body.color.1" />
</g>
<g
class="layer-digits"
id="layer.digits"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 246.72214,480.05078 -1.26286,11.29688 c 0.0542,-0.0718 0.10909,-0.13639 0.16444,-0.16993 2.24397,-1.35957 3.60994,-0.58815 5.93773,2.83789 0.93098,-8.32691 -0.11355,-8.18768 -4.74065,-13.9121 l -0.0987,-0.0527 z m 156.39849,0.12305 c -4.56565,5.63382 -5.60757,5.55441 -4.68145,13.83789 2.31701,-3.41019 3.68423,-4.18521 5.90977,-2.85156 l -1.22832,-10.98633 z m 1.32862,11.07617 c 1.04402,0.95839 1.90224,8.82819 -0.83697,12.77734 5.69238,0.79771 6.23233,-3.26147 9.78714,-8.92382 -1.87384,4.76931 -3.67496,7.63622 -5.57268,9.65625 6.59606,2.63711 10.00409,-4.71005 11.51041,-8.13868 -1.08004,4.50889 -1.90058,5.37139 -5.74205,9.16993 5.73327,-1.04446 8.70607,-4.13073 9.94006,-8.22266 l -4.39698,-1.08398 -5.92786,-1.52344 -8.76107,-3.71094 z m -159.01463,0.125 -8.82684,3.74023 c 3.55012,5.65801 4.09097,9.71139 9.78056,8.91407 -2.63506,-3.79902 -1.93981,-11.24048 -0.95372,-12.6543 z m -8.82848,3.74023 -0.005,0.002 -5.92786,1.52343 c 1.50953,3.43478 4.91537,10.75646 11.50218,8.12305 -1.89662,-2.01886 -3.69672,-4.88407 -5.56939,-9.64844 z m -5.93609,1.52539 -4.17005,1.0293 c 1.25206,4.04101 4.21977,7.08725 9.90552,8.12305 -3.83647,-3.79361 -4.6575,-4.65875 -5.73547,-9.15235 z m 63.29738,195.69141 c -0.30293,-0.014 -0.61786,-0.0133 -0.94386,0.006 -4.00946,0.23617 -6.00678,7.25844 -6.00678,7.58789 -0.50155,-4.86511 -4.78336,-7.29567 -6.3669,-7.38867 -1.58354,-0.093 -5.91744,0.3242 -6.45076,6.42383 -0.14535,-4.25172 -1.77716,-5.56202 -3.56658,-5.60742 -1.45053,-0.0368 -2.41527,0.10178 -3.17688,0.3125 -2.74062,3.36344 -4.58386,6.93677 -2.69343,13.13671 6.21822,-1.93594 6.69784,-3.718 9.4336,-7.81835 -0.34103,3.62815 -0.10249,5.08382 3.61427,7.99804 3.61943,-1.65654 7.0509,-4.51879 9.21655,-7.04297 -0.48514,2.75884 -0.46587,4.11966 1.77095,7.04297 2.92849,-0.93244 5.92568,-2.06399 8.52428,-4.82226 1.68793,-1.79164 2.5088,-3.89487 2.96311,-6.21289 -0.45524,-0.73346 -2.36517,-3.43227 -6.31757,-3.61524 z m 62.0822,0.12109 c -3.93491,0.18217 -5.84575,2.8569 -6.31263,3.60547 0.45893,2.27393 1.28275,4.33696 2.94338,6.09961 2.5986,2.75827 5.59415,3.88788 8.52263,4.82032 2.23347,-2.91894 2.25714,-4.28072 1.77425,-7.03125 -4.2e-4,-0.003 -8.4e-4,-0.009 -0.002,-0.0117 -0.13079,-0.74123 -2.11005,-7.24839 -5.98378,-7.47657 -0.32598,-0.0192 -0.63927,-0.0199 -0.94221,-0.006 z m 13.31755,0.20508 c -1.57543,0.0925 -5.81806,2.50102 -6.35539,7.31641 2.16744,2.51461 5.57957,5.3559 9.18037,7.00391 3.70602,-2.90581 3.9526,-4.3616 3.61591,-7.9668 -0.56193,-6.02862 -4.86381,-6.4461 -6.44089,-6.35352 z m 10.01734,0.81641 c -1.77834,0.0451 -3.3973,1.34595 -3.56001,5.53516 2.71728,4.07802 3.21322,5.86003 9.41552,7.79101 1.86205,-6.1069 0.0993,-9.6642 -2.5734,-12.98437 -0.77495,-0.22821 -1.76456,-0.38033 -3.28211,-0.3418 z"
id="digits"
inkscape:connector-curvature="0"
class="body.color.2" />
</g>
<g
inkscape:groupmode="layer"
id="layer.belly"
class="layer-belly"
sodipodi:insensitive="true"
style="display:inline">
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 319.97779,258.95887 -7.08912,-15.75184 -2.32422,20.50586 -9.79492,-11.64844 c 0,0 5.46535,23.2265 6.42383,34.34961 3.00612,34.88598 1.32812,122.9336 1.32812,122.9336 0,0 -8.82526,-12.626 -17.31054,-12.44922 -8.48528,0.17678 -16.04948,5.59329 -11.73828,21.82812 4.55266,17.14409 30.58956,37.31312 45.45406,37.3086 14.86451,-0.005 40.98585,-20.21479 45.53812,-37.35743 4.3112,-16.23483 -3.253,-21.65134 -11.73828,-21.82812 -8.48528,-0.17678 -17.3125,12.44726 -17.3125,12.44727 0,0 -1.67799,-88.04762 1.32813,-122.9336 0.95848,-11.12311 6.42578,-34.34961 6.42578,-34.34961 l -9.79688,11.65039 -2.32226,-20.50781 -6.73556,15.75184 -5.07935,-17.66464 z"
id="belly"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccscssssscscccccc"
class="body.color.2" />
</g>
<g
inkscape:groupmode="layer"
id="layer.eye.spot.heart.inverted"
class="layer-eye-spot-heart-inverted"
style="display:inline"
sodipodi:insensitive="true">
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 352.6748,96.511719 c 0,0 -36.29271,23.665711 -26.32714,47.384761 5.61269,13.35879 26.34375,3.26172 26.34375,3.26172 0,0 20.72597,10.01917 26.3125,-3.27734 9.96557,-23.71905 -26.32911,-47.369141 -26.32911,-47.369141 z"
id="eye.spot.heart.inverted"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscsc"
class="body.color.2" />
</g>
<g
style="display:none"
class="layer-eye-spot-heart"
id="layer.eye.spot.heart"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
class="body.color.2"
sodipodi:nodetypes="cscsc"
inkscape:connector-curvature="0"
id="eye.spot.heart"
d="m 352.6748,158.01788 c 0,0 -36.29271,-23.66572 -26.32714,-47.38477 5.61269,-13.358786 26.34375,-3.26172 26.34375,-3.26172 0,0 20.72597,-10.019166 26.3125,3.27734 9.96557,23.71905 -26.32911,47.36915 -26.32911,47.36915 z"
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
class="layer-eyes-spot-juppet"
id="layer.eye.spot.juppet"
inkscape:groupmode="layer"
style="display:none"
sodipodi:insensitive="true">
<circle
class="body.color.2"
r="27.003494"
cy="126.99651"
cx="352.75"
id="eye.spot.juppet"
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.eye.spot.club.inverted"
class="layer-eyes-spot-club-inverted"
style="display:none"
sodipodi:insensitive="true">
<ellipse
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="eye.spot.club.inverted.4"
cx="352.47537"
cy="144.90305"
class="body.color.2"
rx="13.506365"
ry="13.509665" />
<ellipse
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="eye.spot.club.inverted.3"
cx="369.77246"
cy="122.90906"
class="body.color.2"
rx="14.508127"
ry="14.516296" />
<ellipse
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="eye.spot.club.inverted.2"
cx="335.14862"
cy="122.90871"
class="body.color.2"
rx="14.508127"
ry="14.516296" />
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 352.49273,126.29607 -12.04319,-28.302891 23.88723,0 z"
id="eye.spot.club.inverted.1"
inkscape:connector-curvature="0"
class="body.color.2" />
</g>
<g
class="layer-eyes-spot-club"
id="layer.eye.spot.club"
inkscape:groupmode="layer"
style="display:none"
sodipodi:insensitive="true">
<ellipse
ry="13.509665"
rx="13.506365"
class="body.color.2"
cy="-108.32087"
cx="352.47537"
id="eye.spot.club.3"
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
transform="scale(1,-1)" />
<ellipse
ry="14.516296"
rx="14.508127"
class="body.color.2"
cy="-130.31485"
cx="369.77246"
id="eye.spot.club.4"
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
transform="scale(1,-1)" />
<ellipse
ry="14.516296"
rx="14.508127"
class="body.color.2"
cy="-130.3152"
cx="335.14862"
id="eye.spot.club.2"
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
transform="scale(1,-1)" />
<path
class="body.color.2"
inkscape:connector-curvature="0"
id="eye.spot.club.1"
d="m 352.49273,126.92784 -12.04319,28.30289 23.88723,0 z"
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.eyes.white"
class="layer-eyes-white"
sodipodi:insensitive="true"
style="display:inline">
<circle
style="opacity:1;fill:#ffeeee;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="eye.right.white"
cx="296.82324"
cy="126.99651"
r="19.003494"
class="eye.white" />
<circle
style="opacity:1;fill:#ffeeee;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="eye.left.white"
cx="352.75"
cy="126.99651"
r="19.003494"
class="eye.white" />
</g>
<g
inkscape:groupmode="layer"
id="layer.eyes.pupils.seeds"
class="layer-eyes-pupils"
style="display:inline"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#280147;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 352.8457,111.11914 a 15.909903,15.909903 0 0 0 -15.91015,15.91016 15.909903,15.909903 0 0 0 15.91015,15.9082 15.909903,15.909903 0 0 0 15.91016,-15.9082 15.909903,15.909903 0 0 0 -15.91016,-15.91016 z m -0.35351,4.82813 a 2.8284271,2.8284271 0 0 1 2.82812,2.82812 2.8284271,2.8284271 0 0 1 -2.82812,2.82813 2.8284271,2.8284271 0 0 1 -2.82813,-2.82813 2.8284271,2.8284271 0 0 1 2.82813,-2.82812 z"
id="eye.pupil.left"
inkscape:connector-curvature="0"
class="eye.pupil.left" />
<path
inkscape:connector-curvature="0"
style="display:inline;opacity:1;fill:#db5a9b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 296.63129,111.11934 a 15.909903,15.909903 0 0 0 -15.91015,15.91016 15.909903,15.909903 0 0 0 15.91015,15.9082 15.909903,15.909903 0 0 0 15.91016,-15.9082 15.909903,15.909903 0 0 0 -15.91016,-15.91016 z m -0.35351,4.82813 a 2.8284271,2.8284271 0 0 1 2.82812,2.82812 2.8284271,2.8284271 0 0 1 -2.82812,2.82813 2.8284271,2.8284271 0 0 1 -2.82813,-2.82813 2.8284271,2.8284271 0 0 1 2.82813,-2.82812 z"
id="eye.pupil.right"
class="eye.pupil.right" />
</g>
<g
inkscape:groupmode="layer"
id="layer.eyes.pupils.itchy"
class="layer-eyes-pupils-itchy"
style="display:none"
sodipodi:insensitive="true">
<ellipse
style="opacity:1;fill:#280147;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="eye.pupil.left.itchy"
cx="352.4838"
cy="126.86214"
rx="2.7912111"
ry="15.816862"
class="eye.pupil.left" />
<ellipse
style="display:inline;opacity:1;fill:#db5a9b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="eye.pupil.right.itchy"
cx="296.33356"
cy="126.86214"
rx="2.7912111"
ry="15.816862"
class="eye.pupil.right" />
</g>
<g
inkscape:groupmode="layer"
id="layer.eyes.pupils.heart"
class="layer-eyes-pupils-heart"
style="display:none"
sodipodi:insensitive="true">
<path
sodipodi:nodetypes="cscsc"
inkscape:connector-curvature="0"
id="eye.pupil.right.heart"
d="m 296.10953,142.87877 c 0,0 -17.62588,-12.04103 -12.46603,-23.6187 2.90606,-6.52065 13.01052,-1.32777 13.01052,-1.32777 0,0 10.31496,-4.71569 12.92588,1.89282 4.65753,11.78863 -13.47037,23.05365 -13.47037,23.05365 z"
style="display:inline;fill:#db5a9b;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
class="eye.pupil.right" />
<path
sodipodi:nodetypes="cscsc"
inkscape:connector-curvature="0"
id="eye.pupil.left.heart"
d="m 352.54887,142.87001 c 0,0 -17.62588,-12.04103 -12.46603,-23.6187 2.90606,-6.52065 13.01052,-1.32777 13.01052,-1.32777 0,0 10.31496,-4.71569 12.92588,1.89282 4.65753,11.78863 -13.47037,23.05365 -13.47037,23.05365 z"
style="display:inline;fill:#280147;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
class="eye.pupil.left" />
</g>
<g
inkscape:groupmode="layer"
id="layer.mouth.nose"
class="layer-mouth-nose"
sodipodi:insensitive="true"
style="display:inline">
<path
id="mouth-nose"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 316.68934,155 c 0,0 4.88098,5.52156 8.125,5.375 2.93177,-0.13246 6.875,-5.5 6.875,-5.5 m -7,13.625 0,-8.75 m 18.59066,8.644 c 0,0 -6.05177,6.51577 -10,6.36423 -3.53311,-0.1356 -8.48575,-6.36423 -8.48575,-6.36423 0,0 -5.84758,5.61988 -9.54625,5.65712 -3.82956,0.0386 -10,-5.65712 -10,-5.65712"
inkscape:connector-curvature="0"
class=""
sodipodi:nodetypes="csccccscsc" />
</g>
<g
inkscape:groupmode="layer"
id="layer.underwear.top"
class="layer-underwear-top"
sodipodi:insensitive="true"
style="display:inline">
<path
sodipodi:type="inkscape:offset"
inkscape:radius="2.0009036"
inkscape:original="M 279.41211 208.42188 C 277.89191 208.71973 276.39636 209.02296 274.91211 209.33398 L 274.91211 282.30273 L 266.63672 282.30273 C 268.06572 299.96785 270.76953 336.23153 270.76953 357.96289 C 270.76953 362.67087 270.55713 367.48196 270.2207 372.36914 L 380.71875 372.36914 C 380.41691 367.47948 380.22656 362.66785 380.22656 357.96094 C 380.22656 336.25254 382.39004 299.97437 383.5332 282.30273 L 375.21484 282.30273 L 375.21484 209.35938 C 373.73085 209.04771 372.23579 208.74191 370.71484 208.44336 L 370.71484 282.30273 L 279.41211 282.30273 L 279.41211 208.42188 z "
style="opacity:1;fill:#3d2765;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="underwear.top.1"
d="m 279.35352,206.42188 a 2.0011037,2.0011037 0 0 0 -0.32618,0.0371 c -1.52866,0.29951 -3.03258,0.60321 -4.52539,0.91602 a 2.0011037,2.0011037 0 0 0 -1.58984,1.95898 l 0,70.96875 -6.27539,0 a 2.0011037,2.0011037 0 0 0 -1.99414,2.16211 c 1.42761,17.64795 4.12695,53.93266 4.12695,75.49805 0,4.6478 -0.21071,9.41455 -0.54492,14.26953 a 2.0011037,2.0011037 0 0 0 1.99609,2.13672 l 110.49805,0 a 2.0011037,2.0011037 0 0 0 1.99805,-2.12305 c -0.30006,-4.86072 -0.49024,-9.63219 -0.49024,-14.28515 0,-21.57546 2.16047,-57.87141 3.30274,-75.5293 a 2.0011037,2.0011037 0 0 0 -1.9961,-2.12891 l -6.31836,0 0,-70.94335 a 2.0011037,2.0011037 0 0 0 -1.58789,-1.95899 c -1.49089,-0.31312 -2.99617,-0.61937 -4.52734,-0.91992 a 2.0011037,2.0011037 0 0 0 -2.38477,1.96289 l 0,71.85937 -87.30273,0 0,-71.88085 a 2.0011037,2.0011037 0 0 0 -2.05859,-2 z"
class="underwear.top" />
</g>
<g
inkscape:groupmode="layer"
id="layer.underwear.bottom"
class="layer-underwear-bottom"
style="display:inline"
sodipodi:insensitive="true">
<path
sodipodi:type="inkscape:offset"
inkscape:radius="1.4710988"
inkscape:original="M 263.95898 427.63086 C 262.94289 436.90175 262.11298 446.36261 261.76953 456 C 261.36568 467.3324 261.34394 479.89963 261.58398 493.0918 L 305.42773 493.0918 C 307.13152 479.88991 308.67452 470.54529 309.32617 467.73242 C 311.00844 460.47089 318.82966 455.99959 325.00977 456.00195 C 331.18253 456.00395 338.98692 460.47416 340.66797 467.73047 C 341.31969 470.54362 342.86254 479.88838 344.56641 493.0918 L 388.32227 493.0918 C 388.56444 479.89671 388.56648 467.32786 388.22656 455.99609 C 387.93759 446.36293 387.20745 436.90265 386.30664 427.63086 L 263.95898 427.63086 z "
style="opacity:1;fill:#3d2765;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="underwear.bottom.1"
d="m 263.95898,426.16016 a 1.4712459,1.4712459 0 0 0 -1.46289,1.31054 c -1.01844,9.2924 -1.85203,18.78913 -2.19726,28.47657 -0.40516,11.3692 -0.42593,23.96109 -0.18555,37.17187 a 1.4712459,1.4712459 0 0 0 1.4707,1.44336 l 43.84375,0 a 1.4712459,1.4712459 0 0 0 1.45899,-1.2832 c 1.70064,-13.17747 3.26784,-22.60244 3.87305,-25.21485 0.74298,-3.20711 2.85991,-5.85209 5.55664,-7.71093 2.69673,-1.85885 5.95832,-2.88191 8.69336,-2.88086 2.73146,8.8e-4 5.98613,1.02646 8.67773,2.88476 2.6916,1.8583 4.80433,4.49985 5.54688,7.70508 0.60526,2.61265 2.17232,12.03779 3.87304,25.2168 a 1.4712459,1.4712459 0 0 0 1.45899,1.2832 l 43.75586,0 a 1.4712459,1.4712459 0 0 0 1.4707,-1.44336 c 0.24248,-13.21207 0.2452,-25.80344 -0.0957,-37.16797 -0.29034,-9.67854 -1.02306,-19.17139 -1.92579,-28.46289 a 1.4712459,1.4712459 0 0 0 -1.46484,-1.32812 l -122.34766,0 z"
class="underwear.bottom" />
</g>
<g
class="layer-underwear-bottom-try-try-again"
id="layer.underwear.bottom.try.try.again"
inkscape:groupmode="layer"
style="display:none"
sodipodi:insensitive="true">
<path
sodipodi:type="inkscape:offset"
inkscape:radius="-0.73399639"
inkscape:original="M 264.12891 426.70703 C 263.42352 426.70661 262.83054 427.2365 262.75195 427.9375 C 261.65564 437.71899 260.75097 445.73017 260.38672 455.95117 C 259.26442 487.44386 261.06606 528.25364 263.3125 565.88086 C 263.3559 566.61268 263.9622 567.18385 264.69531 567.18359 L 299.2832 567.18359 C 300.02783 567.18305 300.63872 566.59374 300.66602 565.84961 C 301.52523 542.48446 303.63918 519.69995 305.73438 501.91602 C 307.82956 484.13208 309.93988 471.22146 310.67578 468.04492 C 311.42454 464.8129 313.55666 462.15183 316.26758 460.2832 C 318.9785 458.41458 322.25385 457.38567 325.00977 457.38672 C 327.7621 457.38761 331.03055 458.41707 333.73633 460.28516 C 336.44211 462.15325 338.57005 464.81287 339.31836 468.04297 C 340.05428 471.21961 342.16456 484.12981 344.25977 501.91406 C 346.35498 519.69832 348.46905 542.4839 349.32812 565.84961 C 349.35543 566.59374 349.96631 567.18305 350.71094 567.18359 L 385.29297 567.18359 C 386.02608 567.18385 386.63236 566.61268 386.67578 565.88086 C 388.88937 528.2485 390.55549 487.42965 389.61133 455.95508 C 389.305 445.74302 388.50364 437.73585 387.53125 427.95508 C 387.46105 427.24712 386.86574 426.70756 386.1543 426.70703 L 264.12891 426.70703 z "
style="opacity:1;fill:#3d2765;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="underwear.bottom.try.try.again"
d="m 264.12891,427.44141 c -0.33756,-2e-4 -0.61083,0.24267 -0.64844,0.57812 -1.09635,9.78182 -1.99618,17.76562 -2.35938,27.95703 -1.1205,31.4422 0.67788,72.24232 2.92383,109.86133 0.0208,0.35108 0.29867,0.61145 0.65039,0.61133 l 34.58789,0 c 0.35766,-2.6e-4 0.63533,-0.26954 0.64844,-0.62695 0.86019,-23.39183 2.97721,-46.19289 5.07422,-63.99219 2.09705,-17.79982 4.19012,-30.64921 4.95508,-33.95117 0.79791,-3.44418 3.05967,-6.24785 5.89062,-8.19922 2.83472,-1.95396 6.21937,-3.02847 9.15821,-3.02735 2.93516,9.5e-4 6.31508,1.07583 9.14453,3.0293 2.82576,1.95093 5.08154,4.75346 5.8789,8.19531 0.76498,3.30206 2.858,16.15104 4.95508,33.95117 2.09702,17.79964 4.21417,40.60176 5.07422,63.99415 0.0131,0.35742 0.29078,0.62669 0.64844,0.62695 l 34.58203,0 c 0.35172,1.2e-4 0.62956,-0.26023 0.65039,-0.61133 2.21303,-37.62285 3.87641,-78.43164 2.93359,-109.86133 -0.30552,-10.1852 -1.10375,-18.16819 -2.07617,-27.94922 -0.0336,-0.33892 -0.30585,-0.58568 -0.64648,-0.58593 l -122.02539,0 z"
class="underwear.bottom" />
</g>
<g
inkscape:groupmode="layer"
id="layer.socks.seeds"
class="layer-socks-seeds"
style="display:inline;opacity:1"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#faddc0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 271.68164,654.01953 c 1.63747,15.49631 2.99012,27.72482 3.00781,27.88477 -1.70034,4.9984 -5.1652,8.01295 -7.91211,11.39843 -2.76923,3.413 -4.69922,7.35559 -2.76172,13.70118 0.9487,2.12115 19.99694,1.8805 24.9375,0.63476 2.95653,-0.94007 6.11084,-2.12351 8.83008,-5.00586 2.30947,-2.44798 3.0948,-5.44436 3.46485,-8.63281 0.37004,-3.18845 0.35016,-6.60942 0.9707,-10.10156 0.009,-0.0542 0.0118,-0.10926 0.008,-0.16406 0,0 -0.73884,-11.86916 -1.44531,-29.81446 z m 77.5332,-0.0996 c -0.70602,17.94292 -1.44531,29.81055 -1.44531,29.81055 -0.004,0.0548 -10e-4,0.10988 0.008,0.16406 0.62054,3.49213 0.60066,6.91264 0.97071,10.10156 0.37004,3.18892 1.15533,6.18676 3.46484,8.63477 2.71925,2.88233 5.87178,4.06389 8.82813,5.00391 2.94757,0.91729 23.69693,1.87147 24.93945,-0.63283 1.93751,-6.34563 0.006,-10.28769 -2.76367,-13.70117 -2.74739,-3.38596 -6.21177,-6.40199 -7.91211,-11.40039 0.0177,-0.15995 1.36861,-12.38686 3.00586,-27.88086 z"
id="socks.seeds"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsscccccccssccsccc"
class="socks.1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.socks.itchy"
class="layer-socks-itchy"
style="display:none"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#ff8cb7;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 262.13281,512.4082 c -0.40286,-4.6e-4 -0.72553,0.33373 -0.71093,0.73633 0.7708,22.29247 2.07659,45.45444 3.4414,66.97656 2.16011,34.06344 9.76844,101.43901 9.80664,101.77735 -1.6986,4.99149 -5.1599,8.00342 -7.9082,11.39062 -2.77098,3.41515 -4.7049,7.36932 -2.76563,13.72071 0.0969,0.31499 0.72657,0.5 0.72657,0.5 3.51424,1.53264 19.18092,1.27099 23.97461,0.18164 3.57868,-1.27735 7.01041,-2.88734 9.10156,-5.04292 2.3137,-2.45247 3.10044,-5.45618 3.4707,-8.64649 0.37026,-3.1903 0.34863,-6.60985 0.96875,-10.09961 -1.35798,-39.28495 -2.89694,-69.88246 -2.63258,-102.71484 0.25304,-23.84453 2.10199,-48.02261 4.19531,-67.99414 0.0443,-0.41977 -0.28493,-0.78538 -0.70703,-0.78516 z m 84.76953,0 c -0.4221,-2.2e-4 -0.75133,0.36539 -0.70703,0.78516 2.09318,19.97039 3.94034,44.14704 4.19336,67.99023 0.53103,34.26058 -0.97835,68.52158 -2.63086,102.71485 0.62012,3.48974 0.59849,6.90883 0.96875,10.09961 0.37026,3.19078 1.15697,6.19593 3.47071,8.64843 2.63409,2.56548 6.0328,4.11775 9.07617,5.04102 3.27832,0.83054 20.50245,1.63347 24.09765,-0.17969 0,0 0.54266,-0.21944 0.62891,-0.5 1.93928,-6.35142 0.004,-10.30508 -2.76758,-13.7207 -2.74877,-3.38767 -6.2096,-6.4011 -7.9082,-11.39258 0.0382,-0.33833 7.64653,-67.7139 9.80664,-101.77734 1.36469,-21.52065 2.61769,-44.68412 3.36523,-66.97461 0.0135,-0.40184 -0.30886,-0.7348 -0.71093,-0.73438 z"
id="socks.itchy"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccscsccccscccccccccsccccscsccc"
class="socks.1" />
</g>
<g
style="display:none"
class="layer-socks-misc-1"
id="layer.socks.misc.1"
inkscape:groupmode="layer">
<path
style="opacity:1;fill:#9f6472;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 262.10547,530.21094 c 0.75513,16.85475 1.73869,33.83932 2.75781,49.91015 2.16011,34.06344 9.76844,101.43901 9.80664,101.77735 -1.6986,4.99149 -5.1599,8.00342 -7.9082,11.39062 -2.77098,3.41515 -4.7049,7.36932 -2.76563,13.72071 0.0969,0.31499 0.72657,0.5 0.72657,0.5 3.51424,1.53264 19.18092,1.27099 23.97461,0.18164 3.57868,-1.27735 7.01041,-2.88739 9.10156,-5.04297 2.3137,-2.45247 3.10044,-5.45618 3.4707,-8.64649 0.37026,-3.1903 0.34863,-6.60985 0.96875,-10.09961 -1.35798,-39.28495 -2.89717,-69.88246 -2.63281,-102.71484 0.18475,-17.40966 1.2257,-34.97842 2.58594,-50.97656 l -40.08594,0 z m 85.69922,0 c 1.35958,15.99671 2.39925,33.56467 2.58398,50.97265 0.53103,34.26058 -0.97835,68.52158 -2.63086,102.71485 0.62012,3.48974 0.59849,6.90883 0.96875,10.09961 0.37026,3.19078 1.15697,6.19593 3.47071,8.64843 2.63409,2.56548 6.0328,4.11775 9.07617,5.04102 3.27832,0.83054 20.50245,1.63347 24.09765,-0.17969 0,0 0.54266,-0.21944 0.62891,-0.5 1.93928,-6.35142 0.004,-10.30508 -2.76758,-13.7207 -2.74877,-3.38767 -6.2096,-6.4011 -7.9082,-11.39258 0.0382,-0.33833 7.64653,-67.7139 9.80664,-101.77734 1.01895,-16.06852 1.97652,-33.05323 2.70703,-49.90625 l -40.0332,0 z"
id="socks.misc.1.1"
class="socks.1"
inkscape:connector-curvature="0" />
<path
style="display:inline;opacity:1;fill:#f6cfbb;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 262.7832,544.10938 c 0.29633,5.75716 0.60783,11.48126 0.9375,17.16015 l 36.44922,0 c 0.2543,-5.80073 0.57823,-11.53811 0.95899,-17.16015 l -38.34571,0 z m 86.08399,0 c 0.38051,5.6217 0.70293,11.35979 0.95703,17.16015 l 36.43555,0 c 0.32367,-5.67881 0.63006,-11.403 0.91796,-17.16015 l -38.31054,0 z m -84.25781,31.86718 c 0.0856,1.37134 0.16773,2.78564 0.2539,4.14453 0.24949,3.93424 0.57639,8.34725 0.95117,13.01563 l 33.77344,0 c -0.0179,-3.96353 -0.0147,-7.93891 0.0176,-11.94922 0.0184,-1.73552 0.0628,-3.47364 0.0976,-5.21094 l -35.09374,0 z m 85.68359,0 c 0.0348,1.73628 0.0773,3.47254 0.0957,5.20703 0.0618,3.9844 0.0901,7.96883 0.0996,11.95313 l 33.69141,0 c 0.37492,-4.66987 0.70161,-9.08418 0.95117,-13.01953 0.0861,-1.35754 0.16685,-2.77065 0.25195,-4.14063 l -35.08984,0 z m -83.26367,31.25391 c 0.50784,5.64621 1.04639,11.37505 1.60937,17.16015 l 31.51367,0 c -0.16483,-5.77153 -0.30483,-11.48887 -0.40234,-17.16015 l -32.7207,0 z m 83.39843,0 c -0.0637,5.72113 -0.18237,11.44029 -0.32421,17.16015 l 31.25195,0 c 0.56298,-5.78502 1.10152,-11.51392 1.60937,-17.16015 l -32.53711,0 z m -80.50976,30.0293 c 0.65647,6.48002 1.19195,11.53484 1.78711,17.16015 l 29.46094,0 c -0.21891,-5.90209 -0.41085,-11.52915 -0.60157,-17.16015 l -30.64648,0 z m 79.81445,0 c -0.18895,5.72114 -0.4005,11.44138 -0.63672,17.16015 l 29.19336,0 c 0.59516,-5.62526 1.13062,-10.67996 1.78711,-17.16015 l -30.34375,0 z"
id="socks.misc.1.2"
class="socks.2"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer.shoes.seeds"
class="layer-shoes-seeds"
style="display:inline"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#804b58;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 271.45117,667.61133 c 0.69501,6.42306 -0.29922,11.77636 -0.26758,12.0625 -1.59494,4.43717 -2.74518,9.24576 -5.54882,12.70117 -2.90777,3.58374 -5.09227,8.28928 -3.02539,15.05859 0.0172,0.0585 0.0381,0.11594 0.0625,0.17188 0.49524,1.10731 1.28428,1.25213 2.04687,1.49023 0.76259,0.23811 1.66313,0.40261 2.71094,0.53711 2.09562,0.269 4.75788,0.39691 7.54492,0.42188 5.57408,0.0499 11.45478,-0.26327 14.33789,-0.99024 0.0289,-0.007 0.0575,-0.0147 0.0859,-0.0234 3.00834,-0.95655 6.48408,-2.24924 9.45508,-5.39844 2.60642,-2.76275 3.4701,-6.15229 3.85546,-9.47266 0.38463,-3.31414 0.74335,-6.6898 0.76179,-10.74096 0.0184,-4.05116 -0.12554,-7.02395 -0.30469,-10.51199 l -4.61914,1.42504 -1.31641,-6.55274 c -4.51386,-0.85867 -11.01668,-1.45694 -14.98135,-1.45908 -3.96466,-0.002 -7.4157,0.37639 -10.79797,1.28111 z m 81.29883,0.17773 -1.31641,6.55274 -4.60351,-1.4248 c -0.30787,5.97562 -0.39705,11.68465 -0.39705,11.68465 0.13225,2.96299 0.46951,6.24984 0.85414,9.5644 0.38534,3.32077 1.2488,6.71161 3.85547,9.4746 2.971,3.14919 6.44533,4.44011 9.45312,5.39649 l 0.008,0.002 c 1.13537,0.35333 2.8761,0.52097 5.29296,0.70313 2.41687,0.18216 5.35201,0.30973 8.24414,0.33008 2.89216,0.0203 5.72985,-0.0639 8,-0.32422 1.13508,-0.13016 2.12441,-0.29809 2.9629,-0.55469 0.83848,-0.2566 1.66946,-0.47726 2.19531,-1.53711 0.0354,-0.0723 0.0648,-0.14746 0.0879,-0.22461 2.06694,-6.76953 -0.11937,-11.47465 -3.02734,-15.05859 -2.80393,-3.45562 -3.95385,-8.26574 -5.54883,-12.70313 0.0325,-0.29365 -0.96334,-5.63873 -0.26953,-12.05469 -3.38607,-0.90703 -6.84094,-1.28677 -10.80777,-1.285 -3.96682,0.002 -10.46964,0.60008 -14.9835,1.45875 z"
id="shoes.seeds"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccscccssccsscccccccccccsccssssccccccc"
class="shoes.1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 298.54291,674.1628 c -2.34724,12.35307 -4.1379,16.37829 -7.79547,20.86938"
id="path5138"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 351.41529,674.08181 c 2.34724,12.35307 4.1379,16.37829 7.79547,20.86938"
id="path5138-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer.shoes.itchy"
class="layer-shoes-itchy"
style="display:none"
sodipodi:insensitive="true">
<path
style="display:inline;opacity:1;fill:#ff3f95;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 268.56636,626.25586 c 2.75465,28.14046 2.61573,52.80694 2.68559,53.42578 -1.59939,4.46232 -4.76475,5.28142 -7.5664,8.73438 -2.90193,3.57653 -3.07496,12.24704 -1.01367,18.99804 l 0,0.004 c 0.27399,0.89067 0.80123,1.04656 1.0996,1.19726 0.22437,0.11333 0.33441,0.14031 0.42188,0.16797 1.23548,0.53378 2.88075,0.75746 4.9668,0.93555 2.09664,0.179 4.56417,0.25506 7.07226,0.25 5.01619,-0.0101 10.08,-0.31415 12.77149,-0.92578 0.0536,-0.0125 0.10644,-0.0281 0.1582,-0.0469 3.66171,-1.30698 7.25234,-2.931 9.63086,-5.38281 l 0.0137,-0.0137 c 2.59359,-2.74914 3.45516,-6.12287 3.83984,-9.4375 0.38405,-3.30904 0.36321,-6.68677 0.95508,-10.01758 0.0174,-0.096 0.0246,-0.19352 0.0215,-0.29101 -0.73178,-21.16955 -1.50491,-39.78138 -2.03125,-57.59766 z m 80.10356,0 c -0.50136,19.19738 -1.36785,38.39346 -2.29492,57.57617 -0.005,0.10327 0.002,0.20678 0.0195,0.30859 0.59188,3.33082 0.57105,6.70811 0.95508,10.01758 0.38468,3.31504 1.24603,6.69008 3.83984,9.43946 0.0134,0.014 0.0271,0.0276 0.041,0.041 2.86069,2.78618 6.45865,4.40968 9.64062,5.375 0.0207,0.006 0.0415,0.0122 0.0625,0.0176 1.04802,0.26551 2.71236,0.44899 4.87696,0.61523 2.16459,0.16625 4.75889,0.28873 7.37109,0.32813 2.6122,0.0394 5.23755,-0.004 7.47461,-0.17578 2.22771,-0.17104 3.98768,-0.38341 5.31836,-1.04883 0.0606,-0.0252 0.1911,-0.0761 0.4043,-0.20703 0.25747,-0.15811 0.6922,-0.30557 0.94531,-1.12891 l 0,-0.002 c 2.06134,-6.75118 1.88672,-15.42127 -1.01563,-18.99805 -2.80192,-3.45317 -5.96697,-4.27381 -7.5664,-8.73633 0.0699,-0.61917 0.22655,-25.28296 2.98108,-53.42187 z"
id="shoes.itchy.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccccssccccscccccccsccccssscccccccc"
class="shoes.1" />
<rect
style="opacity:1;fill:#731947;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.50001293;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="shoes.itchy.3"
width="35.087872"
height="24.036745"
x="235.0434"
y="634.72809"
transform="matrix(0.99917471,-0.04061891,0.05078441,0.99870964,0,0)"
class="shoes.2" />
<rect
style="opacity:1;fill:#731947;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.50001293;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="shoes.itchy.4"
width="35.087872"
height="24.036745"
x="-414.59506"
y="608.30591"
transform="matrix(-0.99917471,-0.04061891,-0.05078441,0.99870964,0,0)"
class="shoes.2" />
<path
style="display:inline;opacity:1;fill:#731947;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 303.50391,680.5625 c -0.63759,0.35245 -1.12745,1.08099 -1.25391,2.4375 -1.375,14.75 -4.37556,21.33688 -13.25,23.125 -3.7282,0.7512 -19.5625,0.4375 -24.1875,-0.3125 -1.17445,-0.19045 -2.03898,-0.46528 -2.70898,-0.76953 0.13173,0.76128 0.31766,1.55004 0.56836,2.37109 l 0,0.004 c 0.27399,0.89067 0.80123,1.04656 1.0996,1.19726 0.22437,0.11333 0.33441,0.14031 0.42188,0.16797 1.23548,0.53378 2.88075,0.75746 4.9668,0.93555 2.09664,0.179 4.56417,0.25506 7.07226,0.25 5.01619,-0.0101 10.08,-0.31415 12.77149,-0.92578 0.0536,-0.0125 0.10644,-0.0281 0.1582,-0.0469 3.66171,-1.30698 7.25234,-2.931 9.63086,-5.38281 l 0.0137,-0.0137 c 2.59359,-2.74914 3.45516,-6.12287 3.83984,-9.4375 0.38405,-3.30904 0.36321,-6.68677 0.95508,-10.01758 0.0174,-0.096 0.0246,-0.19352 0.0215,-0.29101 -0.0401,-1.15896 -0.0789,-2.1471 -0.11914,-3.29102 z m 43.02539,0.0137 c -0.052,1.08526 -0.10186,2.17069 -0.1543,3.25586 -0.005,0.10327 0.002,0.20679 0.0195,0.30859 0.59188,3.33083 0.57105,6.70811 0.95508,10.01758 0.38468,3.31504 1.24603,6.69008 3.83984,9.43946 0.0134,0.014 0.0271,0.0276 0.041,0.041 2.86069,2.78618 6.45865,4.40968 9.64062,5.375 0.0207,0.006 0.0415,0.0122 0.0625,0.0176 1.04802,0.26551 2.71236,0.44899 4.87696,0.61523 2.16459,0.16625 4.75889,0.28873 7.37109,0.32813 2.6122,0.0394 5.23755,-0.004 7.47461,-0.17578 2.22771,-0.17104 3.98768,-0.38341 5.31836,-1.04883 0.0606,-0.0252 0.1911,-0.0761 0.4043,-0.20703 0.25747,-0.15811 0.6922,-0.30557 0.94531,-1.12891 l 0,-0.002 c 0.25009,-0.81908 0.43475,-1.60566 0.5664,-2.36523 -0.66908,0.30282 -1.53125,0.5759 -2.70117,0.76562 -4.625,0.75 -20.4593,1.0637 -24.1875,0.3125 -8.87444,-1.78812 -11.875,-8.375 -13.25,-23.125 -0.12446,-1.3352 -0.59974,-2.0651 -1.22265,-2.42383 z"
id="shoes.itchy.2"
inkscape:connector-curvature="0"
class="shoes.2" />
<path
style="opacity:1;fill:#ffffff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 270.82227,681.14062 -2.29297,3.07227 5.63281,-0.35742 a 1.8796181,3.1910894 36.649436 0 0 0.58984,2.83203 1.8796181,3.1910894 36.649436 0 0 3.35352,-2.12109 L 287,688.75 l 2.625,-5.875 -11.08008,0.70117 a 1.8796181,3.1910894 36.649436 0 0 -0.7539,-2.38086 1.8796181,3.1910894 36.649436 0 0 -3.11914,1.75586 l -3.84961,-1.81055 z"
id="path5658"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:0.50196078;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 379.254,681.1409 2.29297,3.07227 -5.63281,-0.35742 a 3.1910894,1.8796181 53.350564 0 1 -0.58984,2.83203 3.1910894,1.8796181 53.350564 0 1 -3.35352,-2.12109 l -8.89453,4.18359 -2.625,-5.875 11.08008,0.70117 a 3.1910894,1.8796181 53.350564 0 1 0.7539,-2.38086 3.1910894,1.8796181 53.350564 0 1 3.11914,1.75586 l 3.84961,-1.81055 z"
id="path5658-3" />
</g>
<g
style="display:none"
class="layer-shoes-try-try-again"
id="layer.shoes.try.try.again"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#f1c1da;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 270.32422,641.73633 a 7.8665628,20.064119 0 0 0 -0.49805,0.0625 c 1.4239,21.07129 1.36929,37.38239 1.42578,37.88281 -0.30048,0.83836 -0.65645,1.54908 -1.05468,2.17188 a 7.8665628,20.064119 0 0 0 0.12695,0.0117 7.8665628,20.064119 0 0 0 7.6289,-15.26562 7.8665628,20.064119 0 0 0 7.62891,15.26562 7.8665628,20.064119 0 0 0 7.65039,-15.47461 7.8665628,20.064119 0 0 0 7.64844,15.47461 7.8665628,20.064119 0 0 0 2.62695,-1.17968 c -0.48385,-13.75539 -0.97597,-26.56643 -1.40039,-38.68946 a 7.8665628,20.064119 0 0 0 -1.22656,-0.25976 7.8665628,20.064119 0 0 0 -7.65039,15.47461 7.8665628,20.064119 0 0 0 -7.64844,-15.47461 7.8665628,20.064119 0 0 0 -7.62695,15.26758 7.8665628,20.064119 0 0 0 -7.63086,-15.26758 z m 78.6289,0 a 7.8665628,20.064119 0 0 0 -0.76757,0.0977 c -0.45856,13.00951 -1.04643,26.01603 -1.66993,39.01758 a 7.8665628,20.064119 0 0 0 2.4375,1.01367 7.8665628,20.064119 0 0 0 7.62891,-15.26562 7.8665628,20.064119 0 0 0 7.62891,15.26562 7.8665628,20.064119 0 0 0 7.65039,-15.47461 7.8665628,20.064119 0 0 0 7.64844,15.47461 7.8665628,20.064119 0 0 0 0.27539,-0.0352 c -0.39336,-0.61836 -0.74551,-1.32241 -1.04297,-2.15235 0.0564,-0.49987 0.19464,-16.75736 1.68554,-37.77734 a 7.8665628,20.064119 0 0 0 -0.91796,-0.16406 7.8665628,20.064119 0 0 0 -7.65039,15.47461 7.8665628,20.064119 0 0 0 -7.64844,-15.47461 7.8665628,20.064119 0 0 0 -7.62696,15.26758 7.8665628,20.064119 0 0 0 -7.63086,-15.26758 z"
id="shoes.try.try.again.3"
class="shoes.2"
inkscape:connector-curvature="0" />
<path
style="display:inline;opacity:1;fill:#2e0015;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 270.66211,656.75 c 0.57089,13.35481 0.54771,22.5584 0.58984,22.93164 -1.59939,4.46232 -4.76475,5.28142 -7.5664,8.73438 -2.90193,3.57653 -3.07496,12.24704 -1.01367,18.99804 l 0,0.004 c 0.27399,0.89067 0.80123,1.04656 1.0996,1.19726 0.22437,0.11333 0.33441,0.14031 0.42188,0.16797 1.23548,0.53378 2.88075,0.75746 4.9668,0.93555 2.09664,0.179 4.56417,0.25506 7.07226,0.25 5.01619,-0.0101 10.08,-0.31415 12.77149,-0.92578 0.0536,-0.0125 0.10644,-0.0281 0.1582,-0.0469 3.66171,-1.30698 7.25234,-2.931 9.63086,-5.38281 l 0.0137,-0.0137 c 2.59359,-2.74914 3.45516,-6.12287 3.83984,-9.4375 0.38405,-3.30904 0.36321,-6.68677 0.95508,-10.01758 0.0174,-0.096 0.0246,-0.19352 0.0215,-0.29101 -0.32994,-9.5448 -0.66404,-18.43711 -0.98438,-27.10352 l -31.97656,0 z m 76.94531,0 c -0.37762,9.02925 -0.79628,18.05744 -1.23242,27.08203 -0.005,0.10327 0.002,0.20678 0.0195,0.30859 0.59188,3.33083 0.57105,6.70811 0.95508,10.01758 0.38468,3.31504 1.24603,6.69008 3.83984,9.43946 0.0134,0.014 0.0271,0.0276 0.041,0.041 2.86069,2.78618 6.45865,4.40968 9.64062,5.375 0.0207,0.006 0.0415,0.0122 0.0625,0.0176 1.04802,0.26551 2.71236,0.44899 4.87696,0.61523 2.16459,0.16625 4.75889,0.28873 7.37109,0.32813 2.6122,0.0394 5.23755,-0.004 7.47461,-0.17578 2.22771,-0.17104 3.98768,-0.38341 5.31836,-1.04883 0.0606,-0.0252 0.1911,-0.0761 0.4043,-0.20703 0.25747,-0.15811 0.6922,-0.30557 0.94531,-1.12891 l 0,-0.002 c 2.06134,-6.75118 1.88672,-15.42127 -1.01563,-18.99805 -2.80192,-3.45317 -5.96697,-4.27381 -7.5664,-8.73633 0.0421,-0.37342 0.12708,-9.57508 0.7832,-22.92773 l -31.91797,0 z"
id="shoes.try.try.again.1"
inkscape:connector-curvature="0"
class="shoes.1" />
<path
class="shoes.2"
inkscape:connector-curvature="0"
id="shoes.try.try.again.2"
d="m 303.50391,680.5625 c -0.63759,0.35245 -1.12745,1.08099 -1.25391,2.4375 -1.375,14.75 -4.37556,21.33688 -13.25,23.125 -3.7282,0.7512 -19.5625,0.4375 -24.1875,-0.3125 -1.17445,-0.19045 -2.03898,-0.46528 -2.70898,-0.76953 0.13173,0.76128 0.31766,1.55004 0.56836,2.37109 l 0,0.004 c 0.27399,0.89067 0.80123,1.04656 1.0996,1.19726 0.22437,0.11333 0.33441,0.14031 0.42188,0.16797 1.23548,0.53378 2.88075,0.75746 4.9668,0.93555 2.09664,0.179 4.56417,0.25506 7.07226,0.25 5.01619,-0.0101 10.08,-0.31415 12.77149,-0.92578 0.0536,-0.0125 0.10644,-0.0281 0.1582,-0.0469 3.66171,-1.30698 7.25234,-2.931 9.63086,-5.38281 l 0.0137,-0.0137 c 2.59359,-2.74914 3.45516,-6.12287 3.83984,-9.4375 0.38405,-3.30904 0.36321,-6.68677 0.95508,-10.01758 0.0174,-0.096 0.0246,-0.19352 0.0215,-0.29101 -0.0401,-1.15896 -0.0789,-2.1471 -0.11914,-3.29102 z m 43.02539,0.0137 c -0.052,1.08526 -0.10186,2.17069 -0.1543,3.25586 -0.005,0.10327 0.002,0.20679 0.0195,0.30859 0.59188,3.33083 0.57105,6.70811 0.95508,10.01758 0.38468,3.31504 1.24603,6.69008 3.83984,9.43946 0.0134,0.014 0.0271,0.0276 0.041,0.041 2.86069,2.78618 6.45865,4.40968 9.64062,5.375 0.0207,0.006 0.0415,0.0122 0.0625,0.0176 1.04802,0.26551 2.71236,0.44899 4.87696,0.61523 2.16459,0.16625 4.75889,0.28873 7.37109,0.32813 2.6122,0.0394 5.23755,-0.004 7.47461,-0.17578 2.22771,-0.17104 3.98768,-0.38341 5.31836,-1.04883 0.0606,-0.0252 0.1911,-0.0761 0.4043,-0.20703 0.25747,-0.15811 0.6922,-0.30557 0.94531,-1.12891 l 0,-0.002 c 0.25009,-0.81908 0.43475,-1.60566 0.5664,-2.36523 -0.66908,0.30282 -1.53125,0.5759 -2.70117,0.76562 -4.625,0.75 -20.4593,1.0637 -24.1875,0.3125 -8.87444,-1.78812 -11.875,-8.375 -13.25,-23.125 -0.12446,-1.3352 -0.59974,-2.0651 -1.22265,-2.42383 z"
style="display:inline;opacity:1;fill:#f1c1da;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
style="display:none"
class="layer-shoes-misc-1"
id="layer.shoes.misc.1"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#27000d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 274.50977,682.35156 c -2.36622,2.43956 -6.56401,7.1752 -8.875,10.02344 -2.90777,3.58374 -5.09227,8.28928 -3.02539,15.05859 0.0172,0.0585 0.0381,0.11594 0.0625,0.17188 0.49524,1.10731 1.28428,1.25213 2.04687,1.49023 0.76259,0.23811 1.66313,0.40261 2.71094,0.53711 2.09562,0.269 4.75788,0.39691 7.54492,0.42188 5.57408,0.0499 11.45478,-0.26327 14.33789,-0.99024 0.0289,-0.007 0.0575,-0.0147 0.0859,-0.0234 3.00834,-0.95655 6.48408,-2.24924 9.45508,-5.39844 2.60642,-2.76275 3.4701,-6.15229 3.85546,-9.47266 0.38463,-3.31414 0.087,-6.72032 -0.39453,-10.74023 l -0.004,-0.72852 c -2.06073,4.17811 -6.80119,10.22038 -12.75,13.15039 -5.92202,2.91682 -15.13504,4.88776 -19.44532,0.17578 -3.66348,-4.00489 6.36277,-12.4614 4.59571,-13.55664 z"
id="shoes.misc.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccssccssccsscc"
class="shoes.1" />
<path
inkscape:connector-curvature="0"
style="display:inline;opacity:1;fill:#27000d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 375.63195,682.35164 c 2.36622,2.43956 6.56401,7.1752 8.875,10.02343 2.90777,3.58374 5.09227,8.28928 3.02539,15.05859 -0.0172,0.0585 -0.0381,0.11594 -0.0625,0.17188 -0.49524,1.10731 -1.28428,1.25213 -2.04687,1.49023 -0.76259,0.23811 -1.66313,0.40261 -2.71094,0.53711 -2.09562,0.269 -4.75788,0.39691 -7.54492,0.42188 -5.57408,0.0499 -11.45478,-0.26327 -14.33789,-0.99024 -0.0289,-0.007 -0.0575,-0.0147 -0.0859,-0.0234 -3.00834,-0.95655 -6.48408,-2.24924 -9.45508,-5.39844 -2.60642,-2.76275 -3.4701,-6.15229 -3.85546,-9.47266 -0.38463,-3.31413 -0.087,-6.72031 0.39453,-10.74022 l 0.004,-0.72852 c 2.06073,4.17811 6.80119,10.22037 12.75,13.15038 5.92202,2.91682 15.13504,4.88776 19.44532,0.17578 3.66348,-4.00489 -6.36277,-12.46139 -4.59571,-13.55663 l 0.20117,-0.11914 z"
id="shoes.misc.2"
sodipodi:nodetypes="cscccssccssccssccc"
class="shoes.1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.seeds"
class="layer-clothes-top-seeds"
style="display:inline"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#fce1c6;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 312.36914,187.94922 c -1.96092,3e-4 -3.55048,1.58986 -3.55078,3.55078 l 0,8.4375 c -2.43043,0.33881 -10.70622,1.46023 -22.52734,3.57617 -6.71609,1.20216 -13.75142,2.58934 -19.80274,4.06641 -6.05132,1.47707 -10.9466,2.86349 -14.26367,4.83789 -6.8966,4.10503 -10.12127,12.37914 -12.53125,20.86914 -2.40998,8.49 -3.8438,17.57571 -5.4668,23.63281 -3.58111,13.36489 -14.97124,68.27913 -14.84961,108.91211 0.0487,16.2694 1.97459,16.25564 1.97459,36.67657 0,20.25814 -9.34921,36.86539 -9.08974,42.7235 0.25948,5.85812 10.38347,10.97225 10.62368,15.06881 0.48042,8.19311 0.8994,3.5462 1.1653,7.71081 0.13799,2.15581 -3.84734,7.6901 -1.73242,7.25 l 31.27148,-2.01563 c 1.62232,-0.33809 -3.20484,-5.75326 -3.17382,-7.41015 0.11171,-5.95615 0.33556,-2.98439 0.43814,-6.87669 0.17097,-6.48701 6.18638,-10.03927 6.2647,-16.95125 0.0783,-6.91197 -6.38975,-6.44051 -5.67362,-38.5917 0.42732,-19.18474 0.90351,-24.23164 1.32234,-34.85575 0.76966,-19.52303 6.15509,-64.04565 11.13867,-86.84961 1.47732,18.95836 3.3125,56.93185 3.3125,76.25195 0,21.67285 -4.32124,45.78275 -7.04687,71.60547 -0.22117,2.09689 1.42272,3.92353 3.53124,3.92383 l 122.83008,0 c 2.09116,-5e-4 3.7292,-1.79872 3.53516,-3.88086 -2.41291,-25.81611 -6.29102,-49.953 -6.29102,-71.65039 0,-18.74139 1.38819,-55.85832 2.56641,-74.9668 4.90932,22.7415 10.1264,66.37549 10.88281,85.5625 0.41997,10.65285 1.32502,16.408 1.32502,35.63228 0,30.81691 -5.05234,30.5158 -4.95323,37.81908 0.0991,7.30329 5.45662,9.85025 5.54455,17.19339 0.10497,8.76635 0.32604,0.81603 0.43718,6.74588 0.031,1.65688 -4.79615,7.07206 -3.17383,7.41015 l 31.26563,2.01367 c 2.11492,0.44009 -1.87042,-5.09419 -1.73243,-7.25 0.26302,-4.11776 0.68077,0.43462 1.161,-7.75355 0.24012,-4.09408 10.36426,-9.18086 10.62407,-15.01481 0.25981,-5.83395 -10.16983,-20.48265 -9.0883,-42.03067 1.02572,-20.43616 1.93214,-21.18111 1.98097,-37.49394 0.12163,-40.63297 -11.2685,-95.54721 -14.84961,-108.9121 -1.623,-6.05711 -3.05682,-15.14281 -5.4668,-23.63282 -2.40998,-8.49 -5.63464,-16.76411 -12.53125,-20.86914 -3.31707,-1.9744 -8.21235,-3.36082 -14.26367,-4.83789 -6.05132,-1.47707 -13.08664,-2.86425 -19.80274,-4.0664 -11.82112,-2.11595 -20.09691,-3.23737 -22.52734,-3.57618 l 0,-8.43359 c -3e-4,-1.96092 -1.58986,-3.55048 -3.55078,-3.55078 -7.82351,1.339 -15.71373,2.5279 -25.25586,0 z"
id="clothes.top.seeds.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccsssssssssccccsssscsccccscssssccccssssssssscccc"
class="clothes.top.1" />
<rect
style="opacity:1;fill:#67354f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.50015658;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.seeds.3"
width="29.690313"
height="6.9653258"
x="208.07848"
y="473.23166"
transform="matrix(0.99784072,-0.06568027,0.03033629,0.99953975,0,0)"
class="clothes.top.2" />
<rect
style="opacity:1;fill:#67354f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.50015658;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.seeds.2"
width="29.690313"
height="6.9653258"
x="-441.99176"
y="430.51535"
transform="matrix(-0.99784072,-0.06568027,-0.03033629,0.99953975,0,0)"
class="clothes.top.2" />
<path
style="fill:#67354f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 324.01307,206.17906 c 0,0 -13.5702,-18.67765 -18.60807,-13.02565 -2.75138,3.08678 -2.37253,21.19659 0,25.8187 2.37253,4.62211 18.60807,-12.79305 18.60807,-12.79305 z"
id="clothes.top.seeds.5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cszc"
class="clothes.top.2" />
<path
style="fill:#67354f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 326.20166,206.17943 c 0,0 14.13577,-19.13497 18.60807,-13.02565 2.76085,3.77142 1.97485,21.577 0,25.8187 -3.17703,6.82382 -18.60807,-12.79305 -18.60807,-12.79305 z"
id="clothes.top.seeds.6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssc"
class="clothes.top.2" />
<ellipse
style="opacity:1;fill:#67354f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.seeds.4"
cx="324.47827"
cy="206.40671"
rx="4.8846192"
ry="7.9034801"
class="clothes.top.2" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.itchy"
class="layer-clothes-top-itchy"
style="display:none"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#ff2c8c;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 312.36914,216.41797 c -1.10241,2.7e-4 -4.14306,-15.49094 -4.82031,-14.62109 -1.93536,0.26835 -9.05666,-0.49166 -21.26367,1.69335 -6.71638,1.20221 -13.75061,2.58914 -19.80274,4.06641 -6.05213,1.47727 -10.94673,2.86204 -14.26953,4.83984 -6.907,4.11122 -10.13243,12.39278 -12.54297,20.88477 -2.41054,8.49199 -3.8444,17.57797 -5.4668,23.63281 -3.58214,13.36872 -14.97121,68.28033 -14.8496,108.91797 l 0,0.002 c 0.008,2.58443 0.042,5.35984 0.0918,8.24219 0.0281,1.57897 1.08883,2.95246 2.60938,3.37891 l 25.77343,7.23047 c 2.2376,0.62735 4.46968,-1.0131 4.53907,-3.33594 0.14569,-4.97088 0.28773,-9.33691 0.42383,-12.78906 0.76778,-19.47587 6.13181,-51.88183 11.10546,-74.67774 1.47709,18.98156 3.29883,44.83857 3.29883,64.08008 0,21.59593 -4.29009,45.61578 -7.01758,71.33984 -0.2231,2.11119 1.43175,3.95061 3.55469,3.95118 l 122.77735,0 c 2.10557,-7.9e-4 3.75456,-1.81178 3.55859,-3.90821 -2.41491,-25.71767 -6.26758,-49.76427 -6.26758,-71.38476 0,-18.65723 1.37953,-43.66284 2.55664,-62.78321 4.89829,22.72953 10.09128,54.24215 10.8457,73.37891 0.13464,3.41486 0.2759,7.7225 0.41993,12.625 0.0694,2.32284 2.30146,3.96328 4.53906,3.33594 l 25.78125,-7.23242 c 1.52123,-0.42666 2.58209,-1.80117 2.60937,-3.38086 0.0481,-2.82403 0.0803,-5.5401 0.0879,-8.07618 0.12161,-40.63764 -11.26746,-95.54925 -14.8496,-108.91796 -1.6224,-6.05485 -3.05626,-15.14082 -5.4668,-23.63282 -2.41054,-8.49199 -5.63596,-16.77355 -12.54297,-20.88476 -3.3228,-1.97781 -8.2174,-3.36258 -14.26953,-4.83985 -6.05213,-1.47727 -13.08636,-2.86419 -19.80274,-4.0664 -12.21117,-2.18576 -19.34175,-1.42776 -21.27148,-1.69531 -0.67675,-0.86549 -3.71384,14.62821 -4.8125,14.62695 z"
id="clothes.top.itchy.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsssssccccccscsccccscscccccsssssccc"
class="clothes.top.1" />
<rect
style="opacity:1;fill:#ffb7d5;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.itchy.3"
width="41.012192"
height="26.162951"
x="257.74649"
y="326.50894"
transform="matrix(0.99253517,0.12195877,-0.12195877,0.99253517,0,0)"
class="clothes.top.2" />
<rect
style="display:inline;opacity:1;fill:#ffb7d5;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.itchy.2"
width="41.012192"
height="26.162951"
x="-387.58472"
y="405.80466"
transform="matrix(-0.99253517,0.12195877,0.12195877,0.99253517,0,0)"
class="clothes.top.2" />
</g>
<g
class="layer-clothes-top-misc-1"
id="layer.clothes.top.misc.1"
inkscape:groupmode="layer"
style="display:none;opacity:1"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#9f6472;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 308.818,227.827 -4,-27.8895 c -2.43043,0.33881 -6.70586,1.46023 -18.52698,3.57617 -6.71609,1.20216 -13.75142,2.58934 -19.80274,4.06641 -6.05132,1.47707 -10.9466,2.86349 -14.26367,4.83789 -6.8966,4.10503 -10.12127,12.37914 -12.53125,20.86914 -2.40998,8.49 -4.13321,17.50548 -5.4668,23.63281 -7.60945,34.96258 -14.78557,75.65999 -14.96679,108.91406 0.10541,35.22293 6.23219,107.533 6.87109,117.31055 l 22.30078,-1.69531 c 1.37287,-37.46563 2.90688,-75.75901 4.33596,-112.88867 0.75145,-19.52374 6.15509,-64.04565 11.13867,-86.84961 1.47732,18.95836 3.3125,56.93185 3.3125,76.25195 0,21.67285 -4.32124,45.78275 -7.04687,71.60547 -0.22117,2.09689 1.42273,3.92353 3.53124,3.92383 l 122.83008,0 c 2.09116,-5e-4 3.7292,-1.79872 3.53516,-3.88086 -2.41291,-25.81611 -6.29102,-49.953 -6.29102,-71.65039 0,-18.74139 1.38819,-55.85832 2.56641,-74.9668 4.90932,22.7415 10.3998,66.36666 10.88281,85.5625 0.94134,37.41106 3.48897,75.36222 4.33807,113.00391 l 22.29297,1.69336 c 1.91767,-39.14984 6.66066,-78.9091 6.75979,-117.42579 0.10458,-40.63302 -11.2685,-95.54721 -14.84961,-108.9121 -1.623,-6.05711 -3.05682,-15.14281 -5.4668,-23.63282 -2.40998,-8.49 -5.63464,-16.76411 -12.53125,-20.86914 -3.31707,-1.9744 -8.21235,-3.36082 -14.26367,-4.83789 -6.05132,-1.47707 -13.08663,-2.86425 -19.80274,-4.0664 -11.82112,-2.11595 -16.09691,-3.23737 -18.52734,-3.57618 l -4,27.89341 z"
id="clothes.top.misc.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssssscccscsccccscsccssssssccc"
class="clothes.top.2" />
</g>
<g
style="display:none;opacity:1"
inkscape:groupmode="layer"
id="layer.clothes.top.broken"
class="layer-clothes-top-broken"
sodipodi:insensitive="true">
<path
class="clothes.top.1"
sodipodi:nodetypes="cssssscccscsccccscsccssssssccc"
inkscape:connector-curvature="0"
id="clothes.top.broken.1"
d="m 308.818,199.9375 c -2.43043,0.33881 -10.70586,1.46023 -22.52698,3.57617 -6.71609,1.20216 -13.75142,2.58934 -19.80274,4.06641 -6.05132,1.47707 -10.9466,2.86349 -14.26367,4.83789 -6.8966,4.10503 -10.12127,12.37914 -12.53125,20.86914 -2.40998,8.49 -4.13321,17.50548 -5.4668,23.63281 -7.60945,34.96258 -14.78557,75.65999 -14.96679,108.91406 0.10541,35.22293 6.23219,95.533 6.87109,105.31055 l 22.30078,-1.69531 c 1.37287,-37.46563 2.90688,-63.75901 4.33596,-100.88867 0.75145,-19.52374 6.15509,-64.04565 11.13867,-86.84961 1.47732,18.95836 3.3125,56.93185 3.3125,76.25195 0,21.67285 -4.32124,45.78275 -7.04687,71.60547 -0.22117,2.09689 1.42273,3.92353 3.53124,3.92383 l 122.83008,0 c 2.09116,-5e-4 3.7292,-1.79872 3.53516,-3.88086 -2.41291,-25.81611 -6.29102,-49.953 -6.29102,-71.65039 0,-18.74139 1.38819,-55.85832 2.56641,-74.9668 4.90932,22.7415 10.3998,66.36666 10.88281,85.5625 0.94134,37.41106 3.48897,63.36222 4.33807,101.00391 l 22.29297,1.69336 c 1.91767,-39.14984 6.66066,-66.9091 6.75979,-105.42579 0.10458,-40.63302 -11.2685,-95.54721 -14.84961,-108.9121 -1.623,-6.05711 -3.05682,-15.14281 -5.4668,-23.63282 -2.40998,-8.49 -5.63464,-16.76411 -12.53125,-20.86914 -3.31707,-1.9744 -8.21235,-3.36082 -14.26367,-4.83789 -6.05132,-1.47707 -13.08663,-2.86425 -19.80274,-4.0664 -11.82112,-2.11595 -20.09691,-3.23737 -22.52734,-3.57618 L 324.997,237.827 Z"
style="opacity:1;fill:#414e9d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="display:inline;opacity:1;fill:#632994;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 224.67773,454.07617 c 0.72261,8.24242 1.28434,14.48529 1.45313,17.06836 l 22.30078,-1.69531 c 0.20026,-5.46502 0.4109,-10.31515 0.61719,-15.37305 l -24.3711,0 z m 176.42188,0 c 0.18169,4.98175 0.34318,10.09068 0.46484,15.48438 l 22.29297,1.69336 c 0.29256,-5.97263 0.65714,-11.65668 1.05469,-17.17774 l -23.8125,0 z"
id="clothes.top.broken.2"
class="clothes.top.2"
inkscape:connector-curvature="0" />
</g>
<g
style="display:none"
class="layer-clothes-top-jasmaby"
id="layer.clothes.top.jasmaby"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#f29f0f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 272.91211,280.30273 -6.27539,0 c -1.16847,2.8e-4 -2.08815,0.99743 -1.99414,2.16211 1.42761,17.64795 4.12695,53.93266 4.12695,75.49805 0,4.6478 -0.21071,9.41455 -0.54492,14.26953 -0.0785,1.15573 0.83769,2.13648 1.99609,2.13672 l 110.49805,0 c 1.1534,3.8e-4 2.06834,-0.97179 1.99805,-2.12305 -0.30006,-4.86072 -0.49024,-9.63219 -0.49024,-14.28515 0,-21.57546 2.16047,-57.87141 3.30274,-75.5293 0.0738,-1.15274 -0.841,-2.12838 -1.9961,-2.12891 l -6.31836,0 z"
id="clothes.top.jasmaby.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccsccccscccc"
class="clothes.top.2" />
<path
style="display:inline;opacity:1;fill:#fce7c3;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 265.03516,287.55078 c 1.47697,18.76895 3.73437,50.5384 3.73437,70.41211 0,2.78691 -0.0821,5.62051 -0.21484,8.48633 l 113.875,0 c -0.11907,-2.86388 -0.20313,-5.70305 -0.20313,-8.48828 0,-19.8728 1.80637,-51.62757 2.98828,-70.41016 l -120.17968,0 z"
id="clothes.top.jasmaby.1"
inkscape:connector-curvature="0"
class="clothes.top.1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.bottom.seeds"
class="layer-clothes-bottom-seeds"
style="display:inline;opacity:1"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#a17a82;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 283.78711,203.44534 0,82.50193 -19.9668,0.01 c 0.82131,13.62567 0.48047,61.61953 0.48047,72.00586 0,28.71696 -5.71436,61.91267 -6.99609,97.87891 -1.27449,35.76301 1.18901,83.20823 3.80859,124.51758 1.37362,21.66114 4.79179,59.12089 7.23047,82.0039 l 36.37695,0 c -0.81558,-19.5311 -1.66359,-52.2851 -1.35742,-81.13672 0.27395,-25.81499 2.43167,-52.16856 4.74024,-72.97265 2.30856,-20.8041 4.8863,-36.53583 5.57617,-39.51368 0.54303,-2.34402 2.1329,-4.39807 4.33789,-5.91796 2.20499,-1.5199 4.97846,-2.35234 6.99023,-2.35157 2.00841,6.5e-4 4.7764,0.83256 6.97657,2.35157 2.20015,1.519 3.78713,3.57238 4.33007,5.91601 0.68989,2.97793 3.26763,18.70812 5.57617,39.51172 2.30857,20.8036 4.46629,47.15766 4.74024,72.97266 0.3062,28.85357 -0.54223,61.60925 -1.35742,81.14062 l 36.37695,0 c 2.43869,-22.88301 5.85677,-60.34549 7.23047,-82.00781 2.62049,-41.3236 4.88385,-88.77952 3.8125,-124.49414 -1.07708,-35.90546 -5.99805,-69.13578 -5.99805,-97.90039 0,-10.41394 -0.80026,-58.42105 -0.14258,-72.0586 l -20,0.01 0,-82.33396 -14.5,-2.44231 0,84.78213 -53.76562,0.0234 0,-84.93838 z"
id="clothes.bottom.seeds.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccsssccsssscssssccssscccccccc"
class="clothes.bottom.1" />
<circle
style="opacity:1;fill:#a17a82;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.bottom.seeds.3"
cx="305.5658"
cy="318.70395"
r="13.157894"
class="clothes.bottom.2" />
<circle
style="opacity:1;fill:#a17a82;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.bottom.seeds.2"
cx="344.48685"
cy="318.7041"
r="13.157894"
class="clothes.bottom.2" />
<circle
style="opacity:1;fill:#a17a82;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.bottom.seeds.4"
cx="305.56589"
cy="357.83545"
r="13.157894"
class="clothes.bottom.2" />
<circle
style="opacity:1;fill:#a17a82;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.bottom.seeds.5"
cx="344.48694"
cy="357.8356"
r="13.157894"
class="clothes.bottom.2" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.bottom.itchy"
class="layer-clothes-bottom-itchy"
style="display:none"
sodipodi:insensitive="true">
<path
class="clothes.bottom.1"
sodipodi:nodetypes="cccsssccccssscccccccc"
inkscape:connector-curvature="0"
id="clothes.bottom.itchy"
d="m 289.78711,202.15245 0,107.79482 -25.9668,0.01 c 0.82131,13.62567 1.45233,37.6651 0.48047,48.00586 0,0 -2.99609,21.20575 -2.99609,31.87887 0,100.13533 -19.9904,102.90656 -19.9904,146.518 0,12.22355 0.23821,15.17869 27.02946,8 0.45433,11.55443 22.53006,7.96547 36.32666,0 11.79514,11.79514 29.67583,10.97749 40.65332,0 16.07737,9.28227 36.44256,11.45019 36.32666,0 27.54915,7.38177 27.7376,5.64959 27.73657,-8.004 -0.003,-38.17764 -20.6936,-46.25211 -20.6936,-146.514 0,-10.64769 -1.99805,-31.88053 -1.99805,-31.88053 -0.6514,-10.39355 -0.80026,-34.42105 -0.14258,-48.0586 l -26,0.01 0,-107.39462 -8.5,-1.38165 0,108.78213 -53.76562,0.0234 0,-108.93838 z"
style="display:inline;opacity:1;fill:#731947;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.bottom.potion"
class="layer-clothes-bottom-potion"
sodipodi:insensitive="true"
style="display:none">
<path
style="fill:#f7a8e5;fill-opacity:0.62745098;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 261.454,429.54622 c -5.00471,67.52906 -27.16108,171.7831 -22,204.58928 6.67483,42.42829 164.25366,42.2662 170.903,0 5.15812,-32.78737 -17.76939,-137.02809 -22,-204.58928 z"
id="clothes.bottom.potion.3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscc"
class="clothes.bottom.2" />
<rect
style="opacity:1;fill:#272727;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.bottom.potion.1"
width="131.08578"
height="24.234171"
x="259.5"
y="417.6329"
class="clothes.bottom.1" />
<rect
style="opacity:1;fill:#272727;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.50018048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.bottom.potion.2"
width="13.828033"
height="83.686081"
x="324.89835"
y="381.27057"
transform="matrix(0.99315855,0.11677373,-0.1544133,0.98800634,0,0)"
class="clothes.bottom.1" />
</g>
<g
style="display:none"
class="layer-clothes-bottom-misc-1"
id="layer.clothes.bottom.misc.1"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#f6cfbb;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 259.48438,417.31641 c -0.9457,10.55531 -1.78279,21.38802 -2.17969,32.52539 -0.58004,16.2761 -4.36321,23.01337 -3.73242,42.44922 l 71.43554,26.17968 71.33399,-26.17968 c 0.61351,-19.43846 -3.16073,-26.17142 -3.64844,-42.42969 -0.33406,-11.13604 -1.05121,-21.97696 -1.86328,-32.54492 z"
id="clothes.bottom.misc.1.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccscc"
class="clothes.bottom.1" />
<path
style="display:inline;opacity:1;fill:#000000;fill-opacity:0.78431373;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 259.48438,417.31641 c -0.54542,6.08756 -1.04162,12.27931 -1.45118,18.55664 l 134.04102,0 c -0.34978,-6.27541 -0.77618,-12.46676 -1.24414,-18.55664 l -131.3457,0 z"
id="clothes.bottom.misc.1.2"
class=""
inkscape:connector-curvature="0" />
<path
style="display:inline;fill:#d86863;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 325.26847,445.45122 c 0,0 -26.98946,-17.28396 -18.13062,-32.62405 7.21807,-12.49889 18.14206,3.26227 18.14206,3.26227 0,0 10.97064,-15.63235 18.12053,-3.25152 8.85884,15.3401 -18.13197,32.6133 -18.13197,32.6133 z"
id="clothes.bottom.misc.1.3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscsc"
class="clothes.bottom.2" />
</g>
<g
style="display:none;opacity:1"
class="layer-clothes-bottom-broken"
id="layer.clothes.bottom.broken"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#512a7e;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 260.51172,426.16406 c -0.83812,9.65703 -2.84584,19.54246 -3.20703,29.67774 -1.27449,35.76301 1.18901,83.20823 3.80859,124.51758 1.37362,21.66114 4.79179,55.12089 7.23047,78.0039 l 9.09424,6 9.09424,-6 9.09423,6 9.09424,-6 c -0.81558,-19.5311 -1.66359,-48.2851 -1.35742,-77.13672 0.27395,-25.81499 2.43167,-52.16856 4.74024,-72.97265 2.30856,-20.8041 4.8863,-36.53583 5.57617,-39.51368 0.54303,-2.34402 2.1329,-4.39807 4.33789,-5.91796 2.20499,-1.5199 4.97846,-2.35234 6.99023,-2.35157 2.00841,6.5e-4 4.7764,0.83256 6.97657,2.35157 2.20015,1.519 3.78713,3.57238 4.33007,5.91601 0.68989,2.97793 3.26764,18.70812 5.57617,39.51172 2.30857,20.8036 4.46629,43.15766 4.74024,68.97266 0.3062,28.85357 -0.54223,61.60925 -1.35742,81.14062 l 9.09424,6 9.09424,-6 9.09423,6 9.09424,-6 c 2.43869,-22.88301 5.85677,-56.34549 7.23047,-78.00781 2.62049,-41.3236 4.88385,-88.77952 3.8125,-124.49414 -0.30405,-10.13567 -2.20667,-20.02823 -2.92616,-29.69727 z"
id="clothes.bottom.broken.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscccccsssscsssscccccsscc"
class="clothes.bottom.1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 291.22897,426.0313 c -0.82909,20.59105 -6.36815,37.94042 -34.03442,40.06055"
id="path4941"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 359.04701,426.03118 c 0.82909,20.59105 6.36815,37.94042 34.03442,40.06055"
id="path4941-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 290.07951,436.57493 70.06641,0"
id="path4958"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 314.0659,467.59923 297.48393,436.45575"
id="path4960"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 335.84914,467.59951 16.58197,-31.14348"
id="path4960-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="opacity:1;fill:#f8cbfa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.bottom.broken.2"
width="5.3033009"
height="3.5355339"
x="321.38004"
y="440.16592"
class="clothes.bottom.2" />
</g>
<g
style="display:none;opacity:1"
class="layer-clothes-bottom-fluffy-kiriban"
id="layer.clothes.bottom.fluffy.kiriban"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#29348a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 259.18555,426.66602 c -0.81917,9.49755 -1.52597,19.21714 -1.88086,29.17578 -1.27449,35.76301 1.18901,83.20823 3.80859,124.51758 1.37362,21.66114 4.79179,59.12089 7.23047,82.0039 l 36.37695,0 c -0.81558,-19.5311 -1.66359,-52.2851 -1.35742,-81.13672 0.27395,-25.81499 2.43167,-52.16856 4.74024,-72.97265 2.30856,-20.8041 4.8863,-36.53583 5.57617,-39.51368 0.54303,-2.34402 2.1329,-4.39807 4.33789,-5.91796 2.20499,-1.5199 4.97846,-2.35234 6.99023,-2.35157 2.00841,6.5e-4 4.7764,0.83256 6.97657,2.35157 2.20015,1.519 3.78713,3.57238 4.33007,5.91601 0.68989,2.97793 3.26764,18.70812 5.57617,39.51172 2.30857,20.8036 4.46629,47.15766 4.74024,72.97266 0.3062,28.85357 -0.54223,61.60925 -1.35742,81.14062 l 36.37695,0 c 2.43869,-22.88301 5.85677,-60.34549 7.23047,-82.00781 2.62049,-41.3236 4.88385,-88.77952 3.8125,-124.49414 -0.29875,-9.95925 -0.90229,-19.68591 -1.60547,-29.19531 l -131.90234,0 z"
id="clothes.bottom.fluffy.kiriban.1"
inkscape:connector-curvature="0"
class="clothes.bottom.1" />
<path
style="display:inline;opacity:1;fill:#75d46f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 302.57422,457.14258 -6.19727,23.7539 -9.20703,-12.10156 -3.6543,23.88281 -10.08984,-15.38671 -3.90625,28.65429 -12.43164,-14.3164 c 0.0428,2.57886 0.0937,5.1817 0.15625,7.80468 l 15.73633,18.12305 3.59375,-26.34766 9.91016,15.11524 3.84374,-25.11914 8.29297,10.89844 5.80469,-22.2461 7.10547,11.74024 c 0.4539,-3.06574 0.85581,-5.58785 1.20313,-7.66993 l -10.16016,-16.78515 z m 45.71484,0 -10.84961,17.92578 c 0.35665,2.18066 0.73993,4.59637 1.19141,7.6875 l 7.80664,-12.89844 5.80469,22.2461 8.29297,-10.89844 3.84375,25.11914 9.91015,-15.11524 3.59375,26.34766 14.75,-16.98828 c 0.0643,-2.62572 0.12165,-5.23377 0.16797,-7.81641 l -11.45703,13.19336 -3.90625,-28.65429 -10.08984,15.38671 -3.6543,-23.88281 -9.20703,12.10156 -6.19727,-23.7539 z m -43.50195,17.63086 -5.67383,21.40429 -7.96094,-10.08593 -3.87695,25.20312 -9.83398,-15.1289 -3.4375,24.85546 -16.66407,-18.29296 c 0.14733,5.5353 0.33373,11.13674 0.55274,16.79101 l 1.69922,-6.89453 17.90234,19.6543 3.0625,-22.14258 9.66797,14.86914 4.12305,-26.79688 7.03711,8.91407 5.32812,-20.09766 3.33789,5.20117 c 0.36185,-2.74378 0.71019,-5.2699 1.04688,-7.62304 l -6.31055,-9.83008 z m 41.28906,0 -7.02344,10.93945 c 0.33578,2.37617 0.68145,4.88831 1.03907,7.63281 l 4.05859,-6.32031 5.32813,20.09766 7.0371,-8.91407 4.12305,26.79688 9.66797,-14.86914 3.0625,22.14258 17.90234,-19.6543 0.89063,3.61523 c 0.14852,-4.18568 0.26216,-8.31107 0.37305,-12.42773 l -15.67578,17.20898 -3.4375,-24.85546 -9.83399,15.1289 -3.87695,-25.20312 -7.96094,10.08593 -5.67383,-21.40429 z m -38.72656,15.49414 -5.4707,20.82031 -6.6211,-8.47656 -4.27148,24.87305 -9.57031,-11.83594 -3.26954,20.87695 -17.44726,-20.83789 -2.56641,9.63867 c 0.23286,5.51251 0.48928,11.02463 0.76953,16.54883 l 4.15039,-15.58984 18.33008,21.89257 3.23047,-20.62304 9.43164,11.66406 4.22852,-24.62695 5.87695,7.52343 4.19727,-15.96484 c 0.47378,-4.16606 0.95218,-8.13749 1.42382,-11.79492 l -2.42187,-4.08789 z m 36.16406,0 -3.14062,5.29883 c 0.32913,2.58354 0.65926,5.30462 0.99023,8.13671 l 0.35352,-0.5957 4.99609,19.00781 5.87695,-7.52343 4.22852,24.62695 9.43164,-11.66406 3.23047,20.62304 18.33008,-21.89257 3.38281,12.70703 c 0.26739,-5.584 0.50913,-11.14916 0.72656,-16.70703 l -1.75586,-6.59766 -17.44726,20.83789 -3.26953,-20.87695 -9.57032,11.83594 -4.27148,-24.87305 -6.62109,8.47656 -5.47071,-20.82031 z"
id="clothes.bottom.fluffy.kiriban.2.1"
inkscape:connector-curvature="0"
class="clothes.bottom.2" />
<path
style="display:inline;opacity:1;fill:#75d46f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 287.7793,554.3125 -3.23047,20.62305 -9.43164,-11.66407 -4.22852,24.62696 -5.87695,-7.52344 -3.07227,11.68555 c 0.35729,4.74622 0.76231,9.80721 1.20508,15.0957 l 4.13867,-15.75391 6.6211,8.47657 4.27148,-24.87305 9.57031,11.83594 3.26953,-20.87696 12.35743,14.75977 c 0.0293,-2.53443 0.0828,-5.07304 0.14648,-7.61133 L 287.7793,554.3125 Z m 75.30273,0 -16.58789,19.8125 c 0.0553,2.36714 0.11165,4.73488 0.13672,7.09766 0.002,0.17147 0.002,0.34973 0.004,0.52148 l 13.21093,-15.7793 3.26953,20.87696 9.57032,-11.83594 4.27148,24.87305 6.62109,-8.47657 3.47852,13.23828 c 0.43808,-5.30601 0.84979,-10.45391 1.19336,-15.13671 l -2.40039,-9.12891 -5.87695,7.52344 -4.22852,-24.62696 -9.43164,11.66407 -3.23047,-20.62305 z m -71.41406,15.89844 -3.0625,22.14258 -9.66797,-14.86914 -4.12305,26.79687 -7.03711,-8.91406 -4.26953,16.10547 c 0.41443,4.84338 0.8555,9.68787 1.30274,14.60351 l 5.23828,-19.76367 7.96094,10.08594 3.87695,-25.20313 9.83398,15.12891 3.4375,-24.85547 8.15235,8.94922 c 0.007,-2.47908 0.0212,-4.93983 0.043,-7.37891 L 291.668,570.21094 Z m 67.52539,0 -12.54688,13.77539 c 0.0197,2.44554 0.0383,4.89599 0.043,7.3789 l 9.01367,-9.89648 3.4375,24.85547 9.83399,-15.12891 3.87695,25.20313 7.96094,-10.08594 4.5957,17.33789 c 0.44542,-4.94249 0.88133,-9.82894 1.28907,-14.65234 l -3.61329,-13.63086 -7.0371,8.91406 -4.12305,-26.79687 -9.66797,14.86914 -3.0625,-22.14258 z m -63.01172,14.72265 -3.59375,26.34766 -9.91016,-15.11523 -3.84375,25.11914 -8.29296,-10.89844 -5.30079,20.3164 c 0.46242,4.99403 0.91397,9.8575 1.37305,14.54883 l 6.17188,-23.6582 9.20703,12.10156 3.65429,-23.88281 10.08985,15.38672 3.90625,-28.6543 3.68164,4.24024 c -0.0126,-2.55356 -0.0228,-5.10736 -0.0215,-7.64844 l -7.12109,-8.20313 z m 58.49805,0 -7.99219,9.20508 c -6.3e-4,2.54412 -0.007,5.09471 -0.0215,7.64844 l 4.55273,-5.24219 3.90625,28.6543 10.08984,-15.38672 3.6543,23.88281 9.20703,-12.10156 5.54688,21.26172 c 0.45394,-4.68681 0.90512,-9.67695 1.35742,-14.60742 l -4.66016,-17.86133 -8.29297,10.89844 -3.84375,-25.11914 -9.91015,15.11523 -3.59375,-26.34766 z"
id="clothes.bottom.fluffy.kiriban.2.2"
inkscape:connector-curvature="0"
class="clothes.bottom.2" />
<path
style="display:inline;opacity:1;fill:#29348a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 266.75504,646.49926 c -1.39196,0 -1.67743,2.12545 -1.57032,4.76557 0.0848,2.0903 0.86366,3.83701 1.87328,4.4826 -0.95273,0.57156 -1.59486,2.37981 -1.50642,4.55956 l 0.0911,2.24626 c 0.0852,2.10047 0.82121,3.85727 1.76831,4.49502 -0.89211,0.58174 -1.48932,2.38141 -1.40135,4.54963 0.10711,2.64012 1.18011,4.76556 2.40429,4.76556 l 37.33008,0 c 1.22418,0 2.12274,-2.12544 2.01563,-4.76556 -0.088,-2.16822 -0.82927,-3.96789 -1.76857,-4.54963 0.89536,-0.63775 1.48683,-2.39455 1.40161,-4.49502 l -0.0911,-2.24626 c -0.0884,-2.17975 -0.87533,-3.988 -1.87444,-4.55956 0.95723,-0.64559 1.59239,-2.3923 1.50758,-4.4826 -0.10711,-2.64012 -0.81311,-4.76557 -2.20507,-4.76557 z"
id="clothes.bottom.fluffy.kiriban.3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssccscssscccscsss"
class="clothes.bottom.1" />
<path
style="display:inline;opacity:1;fill:#29348a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 383.21009,646.49891 c 1.39196,0 1.30243,2.12544 1.19532,4.76556 -0.0848,2.0903 -0.86366,3.83702 -1.87328,4.4826 0.95273,0.57157 1.59486,2.37981 1.50642,4.55957 l -0.0911,2.24626 c -0.0852,2.10047 -0.82121,3.85727 -1.76831,4.49501 0.89211,0.58175 1.48932,2.38141 1.40135,4.54963 -0.10711,2.64012 -1.18011,4.76556 -2.40429,4.76556 l -37.33008,0 c -1.22418,0 -2.12274,-2.12544 -2.01563,-4.76556 0.088,-2.16822 0.82927,-3.96788 1.76857,-4.54963 -0.89536,-0.63774 -1.48683,-2.39454 -1.40161,-4.49501 l 0.0911,-2.24626 c 0.0884,-2.17976 0.87533,-3.988 1.87444,-4.55957 -0.95723,-0.64558 -1.59239,-2.3923 -1.50758,-4.4826 0.10711,-2.64012 1.06311,-4.76556 2.45507,-4.76556 z"
id="clothes.bottom.fluffy.kiriban.4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssccscssscccscsss"
class="clothes.bottom.1" />
<path
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:0.19607843;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 266.7552,646.4988 c -1.39196,0 -1.67743,2.12545 -1.57032,4.76557 0.0848,2.0903 0.86366,3.83701 1.87328,4.4826 -0.95273,0.57156 -1.59486,2.37981 -1.50642,4.55956 l 0.0911,2.24626 c 0.0852,2.10047 0.82121,3.85727 1.76831,4.49502 -0.89211,0.58174 -1.48932,2.38141 -1.40135,4.54963 0.10711,2.64012 1.18011,4.76556 2.40429,4.76556 l 37.33008,0 c 1.22418,0 2.12274,-2.12544 2.01563,-4.76556 -0.088,-2.16822 -0.82927,-3.96789 -1.76857,-4.54963 0.89536,-0.63775 1.48683,-2.39455 1.40161,-4.49502 l -0.0911,-2.24626 c -0.0884,-2.17975 -0.87533,-3.988 -1.87444,-4.55956 0.95723,-0.64559 1.59239,-2.3923 1.50758,-4.4826 -0.10711,-2.64012 -0.81311,-4.76557 -2.20507,-4.76557 z"
id="clothes.bottom.fluffy.kiriban.3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssccscssscccscsss"
class="" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 275.32236,667.0438 -8.07062,0"
id="path6189"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:0.19607843;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 383.21026,646.49845 c 1.39196,0 1.30243,2.12544 1.19532,4.76556 -0.0848,2.0903 -0.86366,3.83702 -1.87328,4.4826 0.95273,0.57157 1.59486,2.37981 1.50642,4.55957 l -0.0911,2.24626 c -0.0852,2.10047 -0.82121,3.85727 -1.76831,4.49501 0.89211,0.58175 1.48932,2.38141 1.40135,4.54963 -0.10711,2.64012 -1.18011,4.76556 -2.40429,4.76556 l -37.33009,0 c -1.22418,0 -2.12274,-2.12544 -2.01563,-4.76556 0.088,-2.16822 0.82927,-3.96788 1.76857,-4.54963 -0.89536,-0.63774 -1.48683,-2.39454 -1.40161,-4.49501 l 0.0911,-2.24626 c 0.0884,-2.17976 0.87533,-3.988 1.87444,-4.55957 -0.95723,-0.64558 -1.59239,-2.3923 -1.50758,-4.4826 0.10711,-2.64012 1.06311,-4.76556 2.45507,-4.76556 z"
id="clothes.bottom.fluffy.kiriban.4-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssccscssscccscsss"
class="" />
<path
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 279.89371,655.75085 -12.83735,0"
id="path6189-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 343.28815,667.0442 7.82066,0"
id="path6189-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 343.79155,655.75126 16.13675,0"
id="path6189-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 306.04229,667.0438 -17.03099,0"
id="path6189-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 305.6263,655.75085 -13.01592,0"
id="path6189-7-01"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 372.17818,667.0442 10.07954,0"
id="path6189-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 371.49592,655.75126 11.0152,0"
id="path6189-7-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:none"
class="layer-clothes-bottom-andre"
id="layer.clothes.bottom.andre"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="display:inline;opacity:1;fill:#d1da32;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 260.31836,421.08398 9.18512,184.59502 c 17.9583,31.10469 49.30828,59.4806 55.80021,61.22011 6.10437,-1.63566 34.87065,-27.64355 54.25609,-61.22011 l 10.13553,-184.59502 z"
id="clothes.bottom.andre.3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc"
class="clothes.bottom.2" />
<path
sodipodi:type="inkscape:offset"
inkscape:radius="-8.6306238"
inkscape:original="M 260.31836 421.08398 L 269.50391 605.67969 C 287.46221 636.78438 318.8108 665.15893 325.30273 666.89844 C 331.4071 665.26278 360.17315 639.25625 379.55859 605.67969 L 389.69531 421.08398 L 260.31836 421.08398 z "
style="display:inline;opacity:1;fill:#335466;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.bottom.andre.1"
d="m 269.38867,429.71484 8.6211,173.27539 c 8.3887,14.08948 19.77207,27.90047 29.88085,38.29297 5.25003,5.39737 10.14866,9.89435 13.95508,13.01758 1.32815,1.08977 2.28215,1.75725 3.2793,2.47656 0.98067,-0.62564 1.8871,-1.13991 3.00195,-2.0625 3.5152,-2.90896 8.08766,-7.16146 13.07227,-12.39843 9.62178,-10.10893 20.77718,-23.96598 29.86328,-39.32227 l 9.51562,-173.2793 -111.18945,0 z"
class="clothes.bottom.1" />
<path
style="display:inline;opacity:1;fill:#d1da32;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 260.31791,421.08387 c -4.01293,66.31965 -39.00391,201.49757 -39.00391,239.2754 11.14949,0 43.34014,-15.48493 60.17664,-46.80419 16.8365,-31.31926 23.92624,-111.27414 43.54743,-184.5014 19.67967,73.44553 29.17216,152.49724 43.99486,184.5014 14.8227,32.00416 51.57107,46.80109 62.35334,46.80028 -0.003,-33.11922 -37.56516,-171.62388 -41.69141,-239.27149 z"
id="clothes.bottom.andre.4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cczczccc"
class="clothes.bottom.2" />
<path
style="display:inline;opacity:1;fill:#335466;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 259.85547,427.48438 c -5.36596,64.28501 -34.79755,181.54261 -38.20508,225.54882 6.64039,-2.146 18.60935,-5.97563 24.04102,-9.63867 10.82212,-7.2983 22.34103,-18.32234 30.16211,-32.87109 7.52674,-14.00126 13.83465,-41.74482 20.21484,-74.72071 6.37516,-32.94993 13.13442,-71.36212 23.03125,-108.31835 l -59.24414,0 z m 71.65039,0 c 9.91167,37.00848 17.15383,75.23414 23.75781,108.0996 6.60918,32.89134 12.79848,60.6431 19.57813,75.28125 6.72174,14.51314 18.65191,25.44003 30.26172,32.65625 5.70429,3.54559 20.85681,8.0863 25.89453,9.88282 -3.81107,-40.91205 -35.27251,-160.5352 -40.83008,-225.91992 l -58.66211,0 z"
id="clothes.bottom.andre.2"
class="clothes.bottom.1"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="display:inline;opacity:1;fill:#d1da32;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 326.05844,498.80042 c 18.74866,35.74364 19.34526,72.1187 -0.2333,107.86236 -7.58285,-11.30076 -15.97624,-22.90732 -15.58284,-54.22469 0.39339,-31.31731 8.48566,-41.77977 15.81614,-53.63767 z m -0.279,37.88443 a 4.3537519,15.749372 0 0 0 -4.35329,15.74845 4.3537519,15.749372 0 0 0 4.35329,15.75084 4.3537519,15.749372 0 0 0 4.3533,-15.75084 4.3537519,15.749372 0 0 0 -4.3533,-15.74845 z"
id="clothes.bottom.andre.5"
class="clothes.bottom.2" />
<path
style="display:inline;opacity:1;fill:#d1da32;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 249.36914,499.04492 c -1.77362,9.7353 -3.66303,19.64732 -5.58398,29.55274 a 3.5952873,12.62527 10.397497 0 1 0.69922,13.07422 3.5952873,12.62527 10.397497 0 1 -5.51758,11.51367 c -2.03634,10.30129 -4.04536,20.45435 -5.9336,30.1582 20.83049,-23.88968 25.80545,-52.45358 16.33594,-84.29883 z"
id="clothes.bottom.andre.6"
class="clothes.bottom.2"
inkscape:connector-curvature="0" />
<path
style="display:inline;opacity:1;fill:#d1da32;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 400.84766,498.58398 c -9.27554,32.08539 -3.96056,60.85296 17.35742,84.88282 0.0303,-0.0748 0.0614,-0.15177 0.0918,-0.22657 -2.01908,-9.65598 -4.15531,-19.78344 -6.3125,-30.07031 a 12.65394,3.5871414 78.861314 0 1 -5.85157,-11.49804 12.65394,3.5871414 78.861314 0 1 0.73242,-13.22071 c -2.03452,-9.96556 -4.02124,-19.92922 -5.88671,-29.73633 -0.0436,-0.0438 -0.0873,-0.087 -0.13086,-0.13086 z"
id="clothes.bottom.andre.7"
class="clothes.bottom.2"
inkscape:connector-curvature="0" />
</g>
<g
style="display:none;opacity:1"
class="layer-clothes-bottom-try-try-again"
id="layer.clothes.bottom.try.try.again"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="display:inline;opacity:1;fill:#653f52;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 264.32031,279.95727 c 0,23.26712 0.24744,65.46677 0.23441,81.88473 -0.019,23.88532 -1.63039,73.18885 -13.2404,116.518 l 21.02946,-10 14.32666,22 38.32666,-26 38.32666,26 14.32666,-22 21.73657,9.996 c -10.0025,-37.32986 -13.74715,-91.75289 -13.9436,-116.514 -0.15909,-20.05261 0.51327,-55.06162 0.35942,-81.93913 z"
id="clothes.bottom.try.try.again"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccccccscc"
class="clothes.bottom.1" />
</g>
<g
style="display:none;opacity:1"
class="layer-clothes-bottom-alice"
id="layer.clothes.bottom.alice"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="display:inline;opacity:1;fill:#241e42;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 261.27103,411.0335 c 0,11.26193 -21.10366,103.21315 -25.95703,121.32618 -5.55776,20.74186 30.62422,25.48623 43.0293,4 6.01884,22.4626 40.1736,26.96172 46.32617,4 6.16054,22.99143 38.82933,17.7391 44.6543,-4 12.135,21.01843 49.53404,16.41606 44.0625,-4.004 -4.5812,-17.09728 -24.06641,-110.48246 -24.06641,-121.32227 z"
id="clothes.bottom.alice.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccscc"
class="clothes.bottom.1" />
<path
style="display:inline;opacity:1;fill:#f5d3e4;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 240.33984,512.82617 c -2.16544,8.55898 -4.03283,15.82892 -5.02539,19.53321 -5.55776,20.74185 30.62422,25.48622 43.0293,4 6.01884,22.46259 40.1736,26.96172 46.32617,4 6.16054,22.99143 38.82933,17.7391 44.6543,-4 12.135,21.01842 49.53404,16.41615 44.0625,-4.00391 -0.93546,-3.49118 -2.67901,-10.65956 -4.69727,-19.16016 -52.67655,7.21949 -115.4523,6.78743 -168.34961,-0.36914 z"
id="clothes.bottom.alice.2"
class="clothes.bottom.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccscc" />
</g>
<g
style="display:none;opacity:1"
class="layer-clothes-bottom-jasmaby"
id="layer.clothes.bottom.jasmaby"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="display:inline;opacity:1;fill:#f29f0f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 261.30469,411.842 c 0,0 -19.9904,122.90656 -19.9904,166.518 0,12.22355 0.23821,15.17869 27.02946,8 0.45433,11.55443 22.53006,7.96547 36.32666,0 11.79514,11.79514 29.67583,10.97749 40.65332,0 16.07737,9.28227 36.44256,11.45019 36.32666,0 27.54915,7.38177 27.73764,5.64959 27.73657,-8.004 -0.003,-41.35962 -20.03735,-166.514 -20.03735,-166.514 z"
id="clothes.bottom.jasmaby.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccccscc"
class="clothes.bottom.2" />
<path
style="display:inline;opacity:1;fill:#fce7c3;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 307.66016,417.79688 c -16.80577,0.006 -33.03178,0.077 -47.35157,0.2871 -3.98733,25.17974 -18.99414,122.44588 -18.99414,160.27735 0,2.22519 0.011,4.1326 0.18555,5.73828 5.83504,0.57839 16.88742,-1.99195 21.29688,-2.59766 4.91741,-1.70096 10.4959,0.44083 12.26367,5.4668 8.36915,2.64751 17.20833,-1.846 25.02148,-4.73437 3.82757,-1.96511 7.97662,-1.65189 10.65235,1.84765 9.21517,7.10567 23.3175,5.91269 31.34765,-2.41992 7.4227,-3.14234 13.27823,4.75595 20.44336,5.36523 4.49183,1.2075 12.40334,3.05064 14.09961,-2.90039 2.81408,-4.93832 8.89585,-3.75284 13.22266,-1.96289 3.53024,0.70635 14.3475,2.99836 19.37109,2.21094 0.15293,-1.6654 0.16815,-3.6517 0.16797,-6.01953 -0.003,-35.99859 -15.15721,-135.32585 -19.0918,-160.50977 -24.24238,0.0949 -54.13105,-0.0597 -82.63476,-0.0488 z"
id="clothes.bottom.jasmaby.1"
class="clothes.bottom.1"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.bottom.charthur"
class="layer-clothes-bottom-charthur"
style="display:none;opacity:1">
<path
class="clothes.bottom.1"
sodipodi:nodetypes="cccccsscsscccccc"
inkscape:connector-curvature="0"
id="clothes.bottom.charthur"
d="m 262.51172,402.16406 c -0.83812,9.65703 -4.84584,43.54246 -5.20703,53.67774 -0.44407,37.94587 -5.55936,44.44454 1.03906,106.52148 10.98634,5.38642 36.7028,6.31363 48.37695,0 0,-31.28845 -0.72477,-34.86383 1.38282,-54.10937 2.30856,-20.8041 4.8863,-36.53583 5.57617,-39.51368 0.54303,-2.34402 2.1329,-4.39807 4.33789,-5.91796 2.20499,-1.5199 4.97846,-2.35234 6.99023,-2.35157 2.00841,6.5e-4 4.7764,0.83256 6.97657,2.35157 2.20015,1.519 3.78713,3.57238 4.33007,5.91601 0.68989,2.97793 3.26764,18.70812 5.57617,39.51172 2.11672,18.49633 1.38282,22.0305 1.38282,54.11328 11.61861,4.73134 37.81391,6.96905 48.37695,0 6.31769,-62.15511 2.04055,-68.46615 1.04297,-106.50195 -0.30405,-10.13567 -4.20667,-44.02823 -4.92616,-53.69727 z"
style="opacity:1;fill:#5b4370;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7097"
d="m 291.22897,402.0313 c -0.50367,31.54497 -0.64714,31.11445 -34.03442,40.06055"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7099"
d="m 359.04701,402.03118 c 0,30.60491 0.16811,30.9861 34.03442,40.06055"
style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.itchy.above"
class="layer-clothes-top-itchy-above"
style="display:none"
sodipodi:insensitive="true">
<path
style="fill:#ff2c8c;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 311.5,195.5 -36.5,7.5 23.5,17.5 -11.5,11 34,21 7.99414,0 34,-21 -11.5,-11 23.5,-17.5 -36.5,-7.5 -6.74854,19.213 -13.49707,0 z"
id="clothes.top.itchy.above.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccc"
class="clothes.top.1" />
<path
style="fill:#ffbccf;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 316.625,209.4375 c -7.36026,11.20513 -14.57759,22.64846 -23.875,30.625 -0.5386,11.02864 7.01892,13.52815 16.73116,16.28998 L 318.5,220.9375 c -2.27095,15.69439 -5.7385,31.66911 -11.01947,47.0625 3.17829,1.95731 6.69873,3.64578 14.46277,2 2.78191,-15.12923 2.04154,-30.25847 3.00888,-45.3877 0.75705,15.12923 -1.28512,30.25847 2.31694,45.3877 6.64298,1.62449 11.35738,0.3561 15.34664,-2 -5.42604,-15.92828 -9.03957,-31.32816 -11.21491,-46.96092 l 9.01561,35.5009 c 9.2834,-2.2875 16.69105,-4.67585 17.70019,-16.23053 -11.65094,-8.72987 -17.53482,-19.93134 -24.80419,-30.53903 z"
id="clothes.top.itchy.above.3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccc"
class="clothes.top.2" />
<rect
style="opacity:1;fill:#ffbccf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.itchy.above.2"
width="16.90901"
height="19.495243"
x="316.5455"
y="209.5"
class="clothes.top.2" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.potion.above"
class="layer-clothes-top-potion-above"
style="display:none"
sodipodi:insensitive="true">
<path
style="display:inline;opacity:1;fill:#1d0046;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 240.625,237.34766 c -1.41889,1.41889 -5.03227,14.47369 -6.39844,19.57226 -3.58111,13.36489 -24.97124,102.4881 -24.84961,143.12108 l 71.51758,2e-5 c 1.08532,-20.58926 9.48493,-118.36503 21.01172,-138.33002 42.48872,-16.21777 13.17571,-10.14488 46.4375,0 11.93053,20.66429 19.69219,118.08932 20.75781,138.33002 l 71.51563,-2e-5 c 0.12163,-40.63297 -21.2685,-129.76009 -24.84961,-143.12498 -1.36593,-5.09772 -4.83025,-16.85218 -6.39844,-19.56836 -57.60809,13.51361 -111.13605,13.81748 -168.74414,0 z"
id="clothes.top.potion.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccccccscc"
class="clothes.top.1" />
<path
style="display:inline;opacity:1;fill:#fed6f0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 240.625,237.34766 c -1.41889,1.41889 -5.03227,14.47369 -6.39844,19.57226 -0.28969,1.08115 -0.66263,2.81538 -1.06836,4.82227 l 36.74219,0 c 0.002,-0.009 0.004,-0.0218 0.006,-0.0312 l 110.4375,0 c 0.002,0.009 0.004,0.0218 0.006,0.0312 l 36.48828,0 c -0.40605,-2.00879 -0.78043,-3.74433 -1.07031,-4.82617 -1.36593,-5.09772 -4.83025,-16.85218 -6.39844,-19.56836 z"
id="clothes.top.potion.above.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccccccscc"
class="clothes.top.2" />
<path
style="fill:#fed6f0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 311.0386,253.94207 C 289.6981,266.06917 268.81599,290.32708 267,306.5 c -1.62582,14.47931 38.67097,26.03666 40,18 2.74211,-16.58159 -1.64283,-40.48708 3.86182,-61.78496 z"
id="clothes.top.potion.above.3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscc"
class="clothes.top.2" />
<path
style="fill:#fed6f0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 339.25921,253.94179 c 21.3405,12.1271 42.22261,36.38501 44.0386,52.55793 1.62582,14.47931 -38.67097,26.03666 -40,18 -2.74211,-16.58159 1.64283,-40.48708 -3.86182,-61.78496 z"
id="clothes.top.potion.above.4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscc"
class="clothes.top.2" />
<rect
style="opacity:1;fill:#fed6f0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.potion.above.2"
width="28.991379"
height="26.870058"
x="310.77344"
y="236.28693"
class="clothes.top.2" />
</g>
<g
style="display:none;opacity:1"
inkscape:groupmode="layer"
id="layer.clothes.top.misc.1.above"
class="layer-clothes-top-misc-1-above"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#f6cfbb;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 287.27148,202.07031 c -5.77361,1.06844 -15.63178,2.25236 -20.7832,3.50977 -6.05132,1.47707 -10.9466,2.86349 -14.26367,4.83789 -6.8966,4.10503 -10.12127,14.37914 -12.53125,22.86914 -2.40998,8.49 -4.13321,17.50548 -5.4668,23.63281 -7.60945,34.96258 -14.78557,75.65999 -14.96679,108.91406 0.0815,27.22493 1.70257,75.87682 3.66406,101.41407 l 28.11914,-1.90821 c 1.21212,-32.29866 2.49901,-64.93629 3.72461,-96.77929 0.75145,-19.52374 2.15509,-48.04565 7.13867,-70.84961 0.0631,18.78158 -0.6875,40.93185 -0.6875,60.25195 0,21.67285 -4.32124,79.78275 -7.04687,105.60547 -0.22117,2.09689 1.42273,3.92353 3.53124,3.92383 l 25.56836,0 0,-44.35547 c 0,0 -0.29833,-45.57227 0,-68.35547 0.66672,-50.91674 4,-152.71094 4,-152.71094 z m 75.74805,0.0508 c 0,0 3.33328,101.77727 4,152.68555 0.29833,22.77897 0,68.34278 0,68.34278 l 0,44.34277 25.51367,0 c 2.09116,-5e-4 3.7292,-1.79872 3.53516,-3.88086 -2.41291,-25.81611 -6.29102,-83.953 -6.29102,-105.65039 0,-18.74139 -1.37437,-40.56543 -1.43359,-58.9668 4.90932,22.7415 6.3998,50.36666 6.88281,69.5625 0.80647,32.05095 2.78674,64.49707 3.87305,96.80664 l 27.68555,1.8711 c 2.20155,-33.93406 3.74639,-68.13283 3.83203,-101.40626 0.10458,-40.63301 -11.2685,-95.54721 -14.84961,-108.9121 -1.623,-6.05711 -3.05682,-15.14281 -5.4668,-23.63282 -2.40998,-8.49 -5.63464,-18.76411 -12.53125,-22.86914 -3.31707,-1.9744 -8.21235,-3.36082 -14.26367,-4.83789 -5.06294,-1.23581 -14.80902,-2.40083 -20.48633,-3.45508 z"
id="clothes.top.misc.1.above.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csssscccscsccccsccsccccscsccsssssc"
class="clothes.top.1" />
<path
style="display:inline;opacity:1;fill:#9f6472;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 255.34961,451.45898 c -0.41107,4.48793 -0.81018,8.62718 -1.17773,12.10938 -0.22118,2.09689 1.42273,3.92353 3.53124,3.92383 l 25.56836,0 0,-16.03321 -27.92187,0 z m 111.66992,0 0,16.03321 25.51367,0 c 2.09116,-5e-4 3.7292,-1.79872 3.53516,-3.88086 -0.32636,-3.49176 -0.68208,-7.64818 -1.04883,-12.15235 l -28,0 z"
id="clothes.top.misc.1.above.2"
class="clothes.top.2"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#9f6472;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 304.60156,199.96484 -11.81836,30.59375 11,0 -7,21.64453 23.03516,8.92969 -4.98047,-35.62304 -10.23633,-25.54493 z m 40.57032,0 -9.72266,25.45899 -4.76563,35.75781 22.66016,-8.97852 -7,-21.55664 11,-0.0879 -12.17187,-30.59375 z"
id="clothes.top.misc.1.above.3"
class="clothes.top.2"
inkscape:connector-curvature="0" />
<path
style="display:inline;opacity:1;fill:#9f6472;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 325.37257,357.53456 -14.5964,-29.00966 9.4036,-65.00966 -5.05217,-35.88059 20.01744,-1e-5 -4.82271,35.8806 9.52512,65.00966 z"
id="clothes.top.misc.1.above.5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc"
class="clothes.top.2" />
<path
style="display:inline;opacity:1;fill:#000000;fill-opacity:0.78431373;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 325.37209,357.53493 -14.5964,-29.00966 9.4036,-65.00966 -5.05217,-35.88059 20.01744,-1e-5 -4.82271,35.8806 9.52512,65.00966 z"
id="path6131-4-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="display:inline;opacity:1;fill:#d86863;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 325.37209,357.53493 -14.5964,-29.00966 14.36015,-28.89026 14.71113,28.89026 z"
id="clothes.top.misc.1.above.4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc"
class="clothes.bottom.2" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.broken.above"
class="layer-clothes-top-broken-above"
sodipodi:insensitive="true"
style="display:none">
<path
style="opacity:1;fill:#414e9d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 341.46875,195.75587 -16.52344,40.83789 -16.52148,-40.83593 -25.65625,8.33789 29.29687,43.8164 25.76367,0 29.29688,-43.8164 z"
id="clothes.top.broken.above.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc"
class="clothes.top.1" />
<path
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 336.29813,243.2789 0,52.33521 m -22.70929,0 0,-52.33521"
id="rect5072"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
class="clothes.top.2"
sodipodi:nodetypes="cscsc"
inkscape:connector-curvature="0"
id="clothes.top.broken.above.2"
d="m 324.92933,261.5731 c 0,0 -20.70953,-13.26262 -13.91301,-25.03454 4.85904,-8.4161 13.92178,0.27675 13.92178,0.27675 0,0 9.20649,-8.40702 13.90527,-0.26849 6.79652,11.77192 -13.91404,25.02628 -13.91404,25.02628 z"
style="display:inline;fill:#632994;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
class="clothes.top.2"
sodipodi:nodetypes="cscsc"
inkscape:connector-curvature="0"
id="clothes.top.broken.above.3"
d="m 313.65106,293.52243 c 0,0 -11.11686,7.11287 -7.46849,13.42627 2.60833,4.51364 7.4732,-0.14842 7.4732,-0.14842 0,0 4.94203,4.50877 7.46433,0.14399 3.64837,-6.3134 -7.46904,-13.42184 -7.46904,-13.42184 z"
style="display:inline;fill:#632994;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
class="clothes.top.2"
sodipodi:nodetypes="cscsc"
inkscape:connector-curvature="0"
id="clothes.top.broken.above.4"
d="m 336.34843,293.52212 c 0,0 -11.11686,7.11287 -7.46849,13.42627 2.60833,4.51364 7.4732,-0.14842 7.4732,-0.14842 0,0 4.94203,4.50877 7.46433,0.14399 3.64837,-6.3134 -7.46904,-13.42184 -7.46904,-13.42184 z"
style="display:inline;fill:#632994;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
style="display:none;opacity:1"
inkscape:groupmode="layer"
id="layer.clothes.top.fluffy.kiriban.above"
class="layer-clothes-top-fluffy-kiriban-above"
sodipodi:insensitive="true">
<path
class="clothes.top.1"
sodipodi:nodetypes="cscccsszsscccccscc"
inkscape:connector-curvature="0"
id="clothes.top.fluffy.kiriban"
d="m 239.69336,241.28711 c -4.00097,7.60612 -9.50924,19.67541 -11.4668,25.63281 -10.79143,32.84126 -16.78557,63.65999 -16.96679,96.91406 15.83594,7.50713 33.67189,10.3914 49.50783,4.72657 l 3.13867,-86.84961 c 1.47732,18.95836 -0.6875,56.93185 -0.6875,76.25195 0,21.67285 -11.04687,53.6393 -11.04687,79.60547 0,13.5755 41.34122,61.92383 72.94628,61.92383 31.60506,0 74.70594,-44.8831 72.9502,-61.88086 -2.66406,-25.7914 -10.29102,-57.953 -10.29102,-79.65039 0,-18.74139 -2.61181,-55.85832 -1.43359,-74.9668 l 3.75781,85.5625 c 12.00522,2.9739 27.15485,3.5245 48.51583,-4.72852 0.10458,-40.63302 -11.2685,-93.54721 -14.84961,-106.9121 -4.45905,-13.15326 -9.8595,-38.11427 -19.99805,-44.50196 -3.31707,-1.9744 -8.21235,-3.36082 -14.26367,-4.83789 -6.05132,-1.47707 -15.08663,-0.86425 -21.80274,-2.0664 -16.10468,27.63751 -79.643,31.06236 -128.00998,35.77734 z"
style="opacity:1;fill:#9f6472;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.andre.above"
class="layer-clothes-top-andre-above"
style="display:none;opacity:1"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#335466;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 296.37891,192 12,7.5625 c -2.66687,0.37279 -10.53405,1.43745 -22.16602,3.51953 -6.72147,1.20312 -13.76402,2.5916 -19.83008,4.07227 -6.06605,1.48067 -10.96149,2.85026 -14.38281,4.88672 -7.08593,4.21771 -10.3102,12.6007 -12.73047,21.12695 -2.42027,8.52625 -3.85483,17.62273 -5.4668,23.63867 -3.59979,13.43459 -14.98708,94.30948 -14.86523,135.02734 31.14294,-31.14294 31.08748,-31.15427 42.78125,-62.89857 0,19.3988 -0.93945,15.18835 -0.93945,33.02734 0,28.80056 -3.71842,37.98719 -4.99805,73.89453 -0.80343,22.54476 4.49408,41.74695 19.15625,67.14258 25.05966,-22.62579 39.6105,-49.07298 50.07031,-77.00781 9.63839,27.89897 27.25048,54.81297 49.9961,77.00781 13.42188,-23.24738 19.8865,-44.60247 19.21093,-67.12305 -1.07547,-35.85204 -3.99804,-45.07636 -3.99804,-73.91601 0,-17.17657 -1.64649,-12.72745 -1.64649,-31.55469 11.56506,36.84195 11.44253,36.45615 42.48633,61.42397 0.12185,-40.71786 -11.26544,-121.59276 -14.86523,-135.02735 -1.61197,-6.01594 -3.04653,-15.11241 -5.4668,-23.63867 -2.42027,-8.52625 -5.64454,-16.90923 -12.73047,-21.12695 -3.42132,-2.03645 -8.31676,-3.40605 -14.38281,-4.88672 -6.06606,-1.48067 -13.10861,-2.86914 -19.83008,-4.07227 -11.63197,-2.08208 -19.49915,-3.14673 -22.16602,-3.51953 l 12,-7.55859 c -11.07877,-5.60633 -46.15755,-5.05441 -57.23632,0 z"
id="clothes.top.andre.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsssssccsscccssccsssssccc"
class="clothes.top.1" />
<path
style="opacity:1;fill:#d1da32;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 322.04297,252.9043 0,166.89648 c -9.8326,19.50422 -21.82541,52.09679 -45.21289,70.27734 -10.20746,-18.25715 -13.74741,-35.65023 -13.0957,-53.9375 1.26179,-35.40717 5.0039,-44.69211 5.0039,-74.17773 0,-17.55956 0.93945,-33.37158 0.93945,-53.02734 l -7.95898,14 c 0,19.3988 -0.93945,21.18835 -0.93945,39.02734 0,28.80056 -3.71842,37.98719 -4.99805,73.89453 -0.80343,22.54476 4.49408,41.74695 19.15625,67.14258 25.05966,-22.62579 39.6105,-49.07298 50.07031,-77.00781 9.63839,27.89897 27.25048,54.81297 49.9961,77.00781 13.42188,-23.24738 19.8865,-44.60247 19.21093,-67.12305 -1.07547,-35.85204 -3.99804,-45.07636 -3.99804,-73.91601 0,-17.17657 -1.64649,-16.72745 -1.64649,-35.55469 l -7.95898,-16 c -0.74516,16.66762 1.62553,38.44629 1.64648,51.55469 0,29.37735 2.93822,38.69331 4.00196,74.15429 0.53272,17.75865 -3.66953,36.73664 -13.00586,53.65235 -23.31758,-16.9164 -35.32098,-50.46367 -45.15625,-70.09375 l 0,-166.76953 z"
id="clothes.top.andre.5"
class="clothes.top.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccssccsscccsscccscccc" />
<path
style="opacity:1;fill:#d1da32;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 325.06445,185.38477 C 311.89432,185.4606 298.694,187.0741 293.09766,190 l 5.20117,3.25586 c 6.02185,-2.05511 16.35336,-3.19205 26.69922,-3.25391 10.37522,-0.062 20.73408,0.95817 26.74804,3.20117 L 356.85352,190 c -5.47852,-3.22924 -18.61893,-4.69107 -31.78907,-4.61523 z m -2.43945,8.36523 0,4.67383 c -1.79087,0.13817 -3.57147,0.43916 -5.32227,0.89844 l -2.60351,-4.51172 -3.89844,2.25 2.16602,3.75195 c -1.43698,0.62359 -2.83197,1.37164 -4.17969,2.23047 l -3.0918,-3.0918 c -0.0185,0.003 -0.0458,0.007 -0.0645,0.01 l -3.14453,3.14453 2.65429,2.6543 c -1.88143,1.64132 -3.61273,3.55372 -5.14062,5.74023 9.3941,6.96839 15.886,10.9018 21.99805,11.79297 l 0,24.39453 0.0195,0 c -16.04574,18.13584 -50.80967,34.76807 -62.29883,69.24805 -10.66213,31.99798 -9.67141,31.78606 -40.5332,62.64843 -0.17046,4.36915 -0.25932,8.48305 -0.24805,12.25 31.14294,-31.14294 31.08748,-31.15413 42.78125,-62.89843 19.60894,-49.01487 42.19271,-48.62891 63.28906,-72.94336 21.89461,23.92081 43.80115,24.20011 63.5625,74.41406 11.56506,36.84195 11.44253,36.45601 42.48633,61.42383 0.0112,-3.7515 -0.0751,-7.84816 -0.24414,-12.19727 -30.76714,-24.74385 -28.918,-24.42995 -40.24219,-61.22656 -11.03533,-35.85798 -46.62734,-52.63727 -62.58008,-70.71875 l 0.0195,0 0,-24.51367 c 5.96578,-1.08771 12.35517,-5.04988 21.49023,-11.92383 -1.39567,-2.009 -2.97661,-3.77501 -4.68945,-5.31641 l 2.57812,-2.57812 -3.18164,-3.18164 -2.99023,2.99023 c -1.35846,-0.88909 -2.77213,-1.66083 -4.23047,-2.30468 l 2.33789,-4.04883 -3.89844,-2.25 -2.76367,4.78711 c -1.81655,-0.48482 -3.67017,-0.79762 -5.53711,-0.9336 l 0,-4.66406 z m 2.18555,9.10742 c 6.05334,-0.0194 12.08556,2.74502 15.97265,8.27149 -14.00973,10.41239 -18.05862,10.42453 -32.06836,0.16015 3.96808,-5.60872 10.04237,-8.41221 16.09571,-8.43164 z"
id="clothes.top.andre.4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccsccscccccccccccccccscccccccscccccccccccccccsccs"
class="clothes.top.2" />
<path
style="fill:#ffffff;fill-opacity:0.78431373;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 315.36832,211.09545 c 2.061,-2.267 3.87927,-4.76997 9.32247,-4.89163 5.44321,-0.12166 7.46078,2.4743 9.42494,4.81935 -6.21253,6.0548 -12.53488,5.87045 -18.74741,0.0723 z"
id="clothes.top.andre.3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czcc"
class="" />
<ellipse
style="opacity:1;fill:#335466;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.andre.2"
cx="325"
cy="210.6875"
rx="1.875"
ry="3.0338137"
class="clothes.top.1" />
<path
style="opacity:1;fill:#d1da32;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 410.80664,233.4707 a 35.708889,10.572267 82.989988 0 0 -5.80078,36.63282 35.708889,10.572267 82.989988 0 0 14.85156,34.15234 35.708889,10.572267 82.989988 0 0 3.5332,-2.96484 c -0.90804,-6.87845 -1.81611,-13.28225 -2.6875,-19.0918 a 12.75,4.25 75 0 1 -0.26757,0.11719 12.75,4.25 75 0 1 -7.4043,-11.2168 12.75,4.25 75 0 1 0.80469,-13.41602 12.75,4.25 75 0 1 2.9414,1.59766 c -0.21117,-0.96906 -0.40979,-1.82115 -0.58593,-2.47852 -1.59277,-5.94427 -3.01637,-14.89443 -5.38477,-23.33203 z m -171.74023,0.45313 c -2.29395,8.30525 -3.69906,17.04358 -5.26368,22.88281 -0.11531,0.43038 -0.25411,1.0633 -0.38476,1.62891 a 4.25,12.75 15 0 1 2.38281,-1.00196 4.25,12.75 15 0 1 0.80469,13.41602 4.25,12.75 15 0 1 -7.29883,11.23437 c -0.93637,6.23637 -1.91714,13.18382 -2.89258,20.64063 a 10.572267,35.708889 7.0100119 0 0 2.53906,1.53125 10.572267,35.708889 7.0100119 0 0 14.85157,-34.15234 10.572267,35.708889 7.0100119 0 0 -4.73828,-36.17969 z"
id="clothes.top.andre.6"
class="clothes.top.2"
inkscape:connector-curvature="0" />
<path
style="fill:#d1da32;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 293.92969,329.74414 c -15.22515,29.13767 -15.70963,58.79006 0.18945,87.92774 6.15778,-9.2122 12.97376,-18.67369 12.6543,-44.20313 -0.31946,-25.52939 -6.89092,-34.05823 -12.84375,-43.72461 z m 0.22656,30.88281 a 3.5355339,12.838647 0 0 1 3.53516,12.83789 3.5355339,12.838647 0 0 1 -3.53516,12.83985 3.5355339,12.838647 0 0 1 -3.53516,-12.83985 3.5355339,12.838647 0 0 1 3.53516,-12.83789 z"
id="clothes.top.andre.7"
class="clothes.top.2"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#d1da32;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 357.72991,329.744 c 15.22515,29.13767 15.70963,58.79006 -0.18945,87.92774 -6.15778,-9.2122 -12.97376,-18.67369 -12.6543,-44.20313 0.31946,-25.52939 6.89092,-34.05823 12.84375,-43.72461 z m -0.22656,30.88281 a 3.5355339,12.838647 0 0 0 -3.53516,12.83789 3.5355339,12.838647 0 0 0 3.53516,12.83985 3.5355339,12.838647 0 0 0 3.53516,-12.83985 3.5355339,12.838647 0 0 0 -3.53516,-12.83789 z"
id="clothes.top.andre.8"
class="clothes.top.2" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.try.try.again.above"
class="layer-clothes-top-try-try-again-above"
style="display:none;opacity:1"
sodipodi:insensitive="true">
<path
style="display:inline;opacity:1;fill:#fce1c6;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 366.72266,204.06641 -41.82618,57.18554 -41.29584,-57.14453 c -5.7084,1.05885 -12.0209,2.22988 -17.11236,3.47266 -6.05132,1.47707 -10.9466,2.86349 -14.26367,4.83789 -6.8966,4.10503 -10.12127,12.37914 -12.53125,20.86914 -2.40998,8.49 -3.8438,17.57571 -5.4668,23.63281 -3.58111,13.36489 -16.97124,64.27913 -16.84961,104.91211 0.0384,12.83936 -0.76526,19.67162 -0.25781,30.27539 l 9.50781,-8.15625 8.66211,8.95899 9.36914,-9.3125 11.07227,9.31836 c 0.3469,-10.91678 -1.29044,-20.04671 -0.96289,-28.35547 0.76966,-19.52303 4.15509,-60.04565 9.13867,-82.84961 1.40169,17.98777 -0.89354,52.90754 -0.7207,72.95703 23.52954,-13.58479 61.66797,-38.45881 61.66797,-75.61328 0,37.23803 37.94343,61.24845 62.94921,75.68554 0.13159,-19.4798 -2.57653,-53.62155 -1.45898,-71.74609 4.90932,22.7415 8.1264,62.37549 8.88281,81.5625 0.32143,8.15317 -1.07508,17.48722 -0.80859,28.13672 l 10.93555,-9.0957 9.36914,9.3125 8.66211,-8.95899 9.8789,8.80664 c 0.74185,-10.76346 -0.68495,-18.08007 -0.64648,-30.92969 0.12163,-40.63297 -13.2685,-91.54721 -16.84961,-104.9121 -1.623,-6.05711 -3.05682,-15.14281 -5.4668,-23.63282 -2.40998,-8.49 -5.63464,-16.76411 -12.53125,-20.86914 -3.31707,-1.9744 -8.21235,-3.36082 -14.26367,-4.83789 -5.15142,-1.25741 -11.00958,-2.44133 -16.7832,-3.50976 z"
id="clothes.top.try.try.again.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccssssscccccscccccscccccsssssc"
class="clothes.top.1" />
<path
class="clothes.top.2"
sodipodi:nodetypes="cszc"
inkscape:connector-curvature="0"
id="clothes.top.try.try.again.2"
d="m 323.55866,270.17761 c 0,0 -19.57906,-26.99691 -26.84769,-18.82744 -3.96968,4.46167 -3.42308,30.63782 0,37.31868 3.42309,6.68086 26.84769,-18.49124 26.84769,-18.49124 z"
style="display:inline;fill:#67354f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
class="clothes.top.2"
sodipodi:nodetypes="cssc"
inkscape:connector-curvature="0"
id="clothes.top.try.try.again.3"
d="m 326.71636,270.17815 c 0,0 20.39506,-27.65793 26.84768,-18.82744 3.98335,5.45125 2.84931,31.18767 0,37.31867 -4.58381,9.86324 -26.84768,-18.49123 -26.84768,-18.49123 z"
style="display:inline;fill:#67354f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<ellipse
class="clothes.top.2"
ry="11.423791"
rx="7.0475192"
cy="270.50665"
cx="324.22986"
id="clothes.top.try.try.again.4"
style="display:inline;opacity:1;fill:#67354f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.alice.above"
class="layer-clothes-top-alice-above"
style="display:none;opacity:1"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#241e42;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 312.56836,197.62891 -1.65039,-1.57618 -38.20703,0 c -1.8005,0 -2.39334,1.66635 -3.25,3.25 l 0,3.69727 -9.71094,0 c -1.8005,0 -2.5513,1.5906 -3.25,3.25 l 0,4.75 -7.75,0 c -2.77,0 -3.69647,2.55588 -5,5 l 0,3.75 -5,0 c -1.8005,0 -3.25,1.4495 -3.25,3.25 l 0,5.60352 c -8.41117,35.84047 -13.27336,63.35491 -14.44141,108.18164 31.46581,-39.21155 39.35427,-81.37027 99.19336,-117.03516 l 9.35352,0 c 65.71336,37.84569 67.0335,77.99113 99.19336,117.03516 -1.1614,-44.57193 -5.99824,-72.031 -14.29883,-107.57422 L 414.5,223 c 0,-1.8005 -1.4495,-3.25 -3.25,-3.25 l -4.75,0 0,-3.75 c 0,-2.77 -2.23,-5 -5,-5 l -6.75,0 0,-4.75 c 0,-1.8005 -1.4495,-3.25 -3.25,-3.25 l -9.71094,0 0,-3.69727 c 0,-1.8005 -1.4495,-3.25 -3.25,-3.25 l -39.59961,0 -1.65039,1.57618 -1.4082,0.42382 -21.9043,0 z"
id="clothes.top.alice.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsscsscsscssccccccsscsscsscssccccc"
class="clothes.top.1" />
<ellipse
style="opacity:1;fill:#bfd11c;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.alice.2"
cx="325.09235"
cy="209.82588"
rx="10.606602"
ry="16.086679"
class="clothes.top.2" />
<ellipse
style="opacity:1;fill:#241e42;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.alice.3"
cx="325.09259"
cy="209.82632"
rx="6.1871843"
ry="11.313708"
class="clothes.top.1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.jasmaby.above"
class="layer-clothes-top-jasmaby-above"
style="display:none"
sodipodi:insensitive="true">
<ellipse
style="opacity:1;fill:#f29f0f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.1"
cx="281.11172"
cy="206.877"
rx="10.626306"
ry="10.613533"
class="clothes.top.2" />
<ellipse
style="opacity:1;fill:#f29f0f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.2"
cx="295.40024"
cy="217.93546"
rx="10.626306"
ry="10.613533"
class="clothes.top.2" />
<ellipse
style="opacity:1;fill:#f29f0f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.3"
cx="314.36432"
cy="223.45448"
rx="10.626306"
ry="10.613533"
class="clothes.top.2" />
<ellipse
style="opacity:1;fill:#f29f0f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.6"
cx="-368.76328"
cy="206.877"
transform="scale(-1,1)"
rx="10.626306"
ry="10.613533"
class="clothes.top.2" />
<ellipse
style="opacity:1;fill:#f29f0f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.5"
cx="-354.47476"
cy="217.93546"
transform="scale(-1,1)"
rx="10.626306"
ry="10.613533"
class="clothes.top.2" />
<ellipse
style="opacity:1;fill:#f29f0f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.4"
cx="-335.51068"
cy="223.45448"
transform="scale(-1,1)"
rx="10.626306"
ry="10.613533"
class="clothes.top.2" />
<ellipse
style="opacity:0.75;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.7"
cx="280.73022"
cy="203.23531"
rx="2.4748302"
ry="2.4718554"
class="" />
<ellipse
style="opacity:0.75;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.8"
cx="294.05795"
cy="213.81078"
rx="2.4748302"
ry="2.4718554"
class="" />
<ellipse
style="opacity:0.75;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.9"
cx="314.47464"
cy="221.09615"
rx="2.4748302"
ry="2.4718554"
class="" />
<ellipse
style="opacity:0.75;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.12"
cx="-369.14395"
cy="203.23531"
transform="scale(-1,1)"
rx="2.4748302"
ry="2.4718554"
class="" />
<ellipse
style="opacity:0.75;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.11"
cx="-355.81622"
cy="213.81078"
transform="scale(-1,1)"
rx="2.4748302"
ry="2.4718554"
class="" />
<ellipse
style="opacity:0.75;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.jasmaby.above.10"
cx="-335.39954"
cy="221.09615"
transform="scale(-1,1)"
rx="2.4748302"
ry="2.4718554"
class="" />
</g>
<g
inkscape:groupmode="layer"
id="layer.clothes.top.charthur.above"
class="layer-clothes-top-charthur-above"
style="display:none;opacity:1"
sodipodi:insensitive="true">
<path
style="display:inline;opacity:1;fill:#5b4370;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 306.91838,200.05262 -34.20703,2 c -10.41262,0 -27.82936,13.93057 -31.21094,26.55079 -3.38158,12.62022 -8.44141,31.76934 -8.44141,40.18164 17.05598,4.57014 64.47733,4.96484 87.19336,4.96484 l 9.35352,0 c 22.2263,0 69.93889,-0.34152 87.19336,-4.96484 0,-8.58172 -4.41043,-25.0625 -8.29883,-39.57422 -3.8884,-14.51172 -20.7723,-26.88072 -29.96094,-27.15821 l -35.59961,-2 c -1.2767,4.19165 -13.18012,16.83271 -17.05859,18 l -1.9043,0 c -3.65153,-1.88634 -16.6757,-13.45837 -17.05859,-18 z"
id="clothes.top.charthur.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cczcccczccccc"
class="clothes.top.1" />
<path
style="display:inline;opacity:1;fill:#c9c4e4;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 414.9668,255.23438 c -18.5834,4.19705 -63.87672,4.51562 -85.36133,4.51562 l -9.35352,0 c -21.93281,0 -66.88803,-0.36891 -85.31445,-4.50781 -1.11838,5.44686 -1.87891,10.29912 -1.87891,13.54297 17.05598,4.57014 64.47733,4.96484 87.19336,4.96484 l 9.35352,0 c 22.2263,0 69.93889,-0.34152 87.19336,-4.96484 0,-3.44635 -0.7289,-8.19571 -1.83203,-13.55078 z"
id="clothes.top.charthur.2"
class="clothes.top.2"
inkscape:connector-curvature="0" />
<path
style="display:inline;opacity:1;fill:#c9c4e4;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 306.91797,200.05273 -14.49805,0.84766 c 6.01947,8.44559 28.38003,29.51134 31.55664,31.15234 l 1.9043,0 c 3.37134,-1.01466 24.8774,-22.77149 31.28711,-31.20117 l -14.22852,-0.79883 c -1.2767,4.19165 -13.18012,16.83271 -17.05859,18 l -1.9043,0 c -3.65153,-1.88634 -16.6757,-13.45837 -17.05859,-18 z"
id="clothes.top.charthur.3"
class="clothes.top.2"
inkscape:connector-curvature="0" />
<path
style="fill:#c9c4e4;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 325,218.10572 -25,188.89429 25,40 25,-40 z"
id="clothes.top.charthur.5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc"
class="clothes.top.2" />
<ellipse
style="opacity:1;fill:#c9c4e4;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="clothes.top.charthur.4"
cx="325"
cy="226.25002"
rx="5.75"
ry="8.25"
class="clothes.top.2" />
<path
style="opacity:1;fill:#5b4370;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 324.99977,380.10601 -13,26.89429 13,28 13,-28 z"
id="clothes.top.charthur.6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc"
class="clothes.top.1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.above.seeds"
class="layer-hair-above"
style="display:inline"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 330.30392,33.844571 a 18.469763,17.42396 0 0 0 -18.47069,17.424287 18.469763,17.42396 0 0 0 18.47069,17.424286 18.469763,17.42396 0 0 0 11.77304,-4.018632 13.98425,14.651967 0 0 1 -4.64975,0.849885 13.98425,14.651967 0 0 1 -13.98421,-14.651496 13.98425,14.651967 0 0 1 13.98421,-14.65259 13.98425,14.651967 0 0 1 2.61057,0.265795 18.469763,17.42396 0 0 0 -9.73386,-2.641535 z"
id="hair.1.2"
inkscape:connector-curvature="0"
class="hair" />
<path
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 326.44141,58.185547 c -36.5148,-2.94e-4 -54.94832,19.686152 -66.61524,32.927281 -11.66692,13.241132 -11.00305,23.281702 -11.00305,23.281702 l 29.81067,-0.005 1.89403,-14.48508 -1.18807,14.47508 50.46689,-0.005 0.46726,-19.840155 0.16549,19.830155 45.87082,-0.002 -2.4627,-11.74364 3.16231,11.74164 24.95191,-0.005 c 0,0 -1.21499,-4.79085 -9.34638,-18.738812 -8.13139,-13.947966 -29.6599,-37.42681 -66.17394,-37.427281 z"
id="hair.1.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czccccccccccczsc"
class="hair" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.above.itchy"
class="layer-hair-above-itchy"
style="display:none"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 325.50977,60.632812 c -37.79513,-1.45e-4 -65.68322,23.425582 -75.71094,52.734378 -3.5251,5.34381 -9.47988,10.04513 -14.31445,9.10742 4.09862,10.57318 11.41992,10.32031 11.41992,10.32031 0,0 3.36556,2.69889 1.81836,10.11328 -2.02469,9.70259 -6.47756,19.21563 -20.32618,15.88086 4.48991,9.0519 11.78261,13.37954 19.2168,9.7461 -2.49755,6.72364 -6.30038,12.19897 -16.26172,15.9707 14.02314,1.27151 19.83089,1.94564 26.36328,-11.91016 0.54574,6.81117 1.07396,10.52329 -4.43554,19.75977 8.14323,-3.62379 11.99741,-7.61684 13.89453,-13.34375 5.71799,4.79397 12.29733,8.93095 19.62305,12.20703 -2.74091,-3.24731 -5.15797,-6.81381 -7.24415,-10.61523 5.24104,1.3376 11.04751,-1.41448 15.36524,-6.11329 -11.20534,-1.15836 -16.69258,-1.69141 -20.20313,-9.47461 9.17839,4.47349 10.98131,2.40048 16.87696,-1.62304 0,0 -12.13969,-1.93857 -15.89258,-8.1211 -4.08967,-6.73732 -7.02691,-18.72512 -6.13477,-25.42187 1.35843,-10.19682 5.49627,-18.97346 11.15235,-26.33203 4.52596,4.45369 10.73047,8.6543 10.73047,8.6543 0,0 -5.26388,-9.28989 2.63085,-15.210942 3.88909,-2.91681 7.51147,-5.359813 11.3125,-5.46875 3.47912,-0.09971 7.258,3.03268 10.22266,5.308593 6.82971,5.243029 2.46289,25.986329 2.46289,25.986329 18.52964,-12.73462 10.22461,-30.453126 10.22461,-30.453126 0,0 3.84031,7.271888 2.83399,14.347656 10.52499,-7.923235 8.12874,-15.918702 10.55186,-16.43199 3.19256,-0.676281 9.72452,0.621214 16.04775,5.363631 7.89473,5.921049 -5.36719,15.210939 -5.36719,15.210939 0,0 12.46118,-4.91745 19.01758,-9.75391 7.60123,8.64319 10.23206,19.8867 10.25781,33.44727 0.0257,13.53467 -11.03053,28.52802 -22.25196,26.61914 4.81721,7.03488 6.97524,8.9153 15.5586,5.33398 -5.29973,8.17833 -11.81881,7.01248 -22.3125,6.61914 4.80423,9.04526 14.11301,9.88815 17.45508,7.80274 -1.79558,2.94543 -4.53045,8.16941 -6.74024,10.74804 5.10523,-2.2178 9.85778,-4.85017 14.22071,-7.83007 1.64202,3.79307 8.26286,9.68673 12.93945,8.54492 -2.16457,-6.63776 -4.31814,-11.832 -1.57227,-21.33789 2.98056,12.57011 11.90062,17.87036 19.5625,17.7832 -4.15175,-6.98937 -7.56034,-14.04745 -8.2539,-21.9375 9.37977,7.45837 17.44336,1.20508 17.44336,1.20508 0,0 -14.23878,-7.67795 -15.83594,-15.28125 -1.29599,-6.16957 0.17187,-16.25781 0.17187,-16.25781 4.71455,4.19173 12.20508,-2.73906 12.20508,-3.41797 -4.97779,-0.29092 -11.54039,-4.16946 -13.90039,-8.60547 -2.74042,-36.770034 -30.77108,-63.873213 -74.82226,-63.873048 z"
id="hair.2.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="scccscccccccccccssccssscccssccscccccccccccscccs"
class="hair" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.above.bellith"
class="layer-hair-above-bellith"
style="display:none"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 324.71094,60.013477 c -37.86794,8.3e-5 -54.14503,16.100545 -66.56446,37.611633 0.0137,0.38016 -1.96481,4.7602 -1.9355,5.14 l 21.06919,0 0.33309,-13.016799 0.16862,13.016799 10.25311,0 0.27941,-18.142872 0.22127,18.142872 14.12565,0 0.15494,-23.061383 0.40165,23.061383 16.09001,0 0.0203,-24.888298 0.48547,24.888298 13.35189,0 0.0936,-25.120899 0.44254,25.120899 12.42149,0 0.38439,-22.79489 0.26809,22.79489 13.79444,0 0.51202,-18.608073 0.0468,18.608073 10.32124,0 0.33308,-12.582237 0.20974,12.582237 21.19255,0 c 0.0378,-0.37973 -1.93231,-4.75977 -1.9102,-5.14 -11.95703,-20.710207 -28.6965,-37.611546 -66.56444,-37.611633 z"
id="hair.3.1"
inkscape:connector-curvature="0"
class="hair"
sodipodi:nodetypes="cccccccccccccccccccccccccccccsc" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.above.id"
class="layer-hair-above-id"
sodipodi:insensitive="true"
style="display:none">
<path
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 328.66602,45.451172 c -7.12258,2.801706 -16.22008,10.417676 -17.56836,16.511719 -41.77505,6.136952 -73.84464,42.122189 -73.84375,85.601559 0.002,1.37692 0.04,2.85874 0.10742,4.41016 -0.37593,13.66151 1.66486,27.525 -3.48047,40.78906 5.33683,-1.27105 5.92187,-4.93555 5.92187,-4.93555 2.33688,11.35693 1.88022,25.74098 -2.63085,40.79102 5.23823,-1.49896 5.1224,-7.01327 7.23632,-10.85547 2.12302,6.11417 2.42514,13.7896 1.48047,22.53321 7.28079,-3.32338 10.08073,-2.22829 15.13086,3.45312 l -0.94531,-8.69336 c 1.67887,2.4005 3.43791,4.50032 5.2832,6.18945 -2.68791,-7.31851 -4.58155,-26.22913 -5.66015,-42.91601 1.26845,0.51534 2.95279,0.92385 5.26953,1.17578 -3.07209,-3.17578 -4.71821,-6.86941 -5.81446,-10.76367 -0.32796,-6.68826 -0.50815,-12.47625 -0.51172,-16.0586 3.2e-4,-40.00168 20.00376,-73.730332 47.3125,-84.140621 5.52863,3.268957 11.39984,6.238458 8.98829,16.455081 4.27004,-3.02019 9.90577,-5.171552 7.67578,-12.328128 5.17832,0.788488 6.3004,4.822685 8.60742,7.908198 6.8664,-4.262827 10.1723,-8.009059 11.68555,-11.51562 26.6399,10.97267 46.00945,44.25831 46.00976,83.62109 -10e-4,0.58365 -0.0311,1.48176 -0.041,2.16602 -1.20009,6.38477 -2.06806,12.37256 -7.45508,17.94141 3.49459,-0.38002 5.54315,-0.83454 6.79883,-1.41016 -0.98503,17.40372 -3.01943,39.63274 -6.09766,47.95703 1.95005,-1.78054 3.80375,-3.99309 5.56836,-6.51758 l -0.67774,10.13477 c 0,0 7.52052,-7.76386 13.81446,-2.4668 -0.94467,-8.74361 -2.94529,-21.35263 -0.82227,-27.4668 2.11392,3.8422 3.64457,6.06745 8.88281,7.56641 -4.06039,-13.54648 -5.62707,-21.49499 -4.19726,-31.22851 0.23795,-1.01689 0.47001,-2.03348 0.69336,-3.04883 0.26762,0.68956 1.92569,4.49898 6.79297,5.6582 -2.78143,-7.17019 -3.46134,-15.42159 -3.5586,-23.7207 1.09161,-7.82893 1.6793,-15.00628 1.6875,-20.6836 9.4e-4,-46.37057 -36.47462,-84.218428 -82.29882,-86.423825 -3.38968,-3.774045 -2.94697,-8.755985 0.65625,-15.689453 z"
id="hair.4.1"
class="hair"
inkscape:connector-curvature="0" />
</g>
<g
class="layer-hair-above-misc"
id="layer.hair.above.misc"
inkscape:groupmode="layer"
style="display:none"
sodipodi:insensitive="true">
<path
id="hair.5.1"
d="m 323.78125,61.035156 a 86.527542,86.527542 0 0 0 -86.52734,86.529294 86.527542,86.527542 0 0 0 28.10351,63.68164 65.140259,87.457962 0 0 1 -6.7168,-38.5625 65.140259,87.457962 0 0 1 65.14063,-87.457028 65.140259,87.457962 0 0 1 65.13867,87.457028 65.140259,87.457962 0 0 1 -6.79492,38.6543 86.527542,86.527542 0 0 0 28.18359,-63.77344 86.527542,86.527542 0 0 0 -86.52734,-86.529294 z"
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
inkscape:connector-curvature="0"
class="hair" />
</g>
<g
style="display:none"
class="layer-hair-above-misc-2"
id="layer.hair.above.misc.2"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
class="hair"
inkscape:connector-curvature="0"
id="hair.misc.2.2"
d="m 323.60615,33.844571 a 18.469763,17.42396 0 0 1 18.47069,17.424287 18.469763,17.42396 0 0 1 -18.47069,17.424286 18.469763,17.42396 0 0 1 -11.77304,-4.018632 13.98425,14.651967 0 0 0 4.64975,0.849885 13.98425,14.651967 0 0 0 13.98421,-14.651496 13.98425,14.651967 0 0 0 -13.98421,-14.65259 13.98425,14.651967 0 0 0 -2.61057,0.265795 18.469763,17.42396 0 0 1 9.73386,-2.641535 z"
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
class="hair"
sodipodi:nodetypes="czccccccccccczsc"
inkscape:connector-curvature="0"
id="hair.misc.2.1"
d="m 326.44141,58.185547 c -36.5148,-2.94e-4 -54.94832,19.686152 -66.61524,32.927281 -11.66692,13.241132 -11.00305,23.281702 -11.00305,23.281702 l 29.81067,-0.005 1.89403,-14.48508 -1.18807,14.47508 50.46689,-0.005 0.46726,-19.840155 0.16549,19.830155 45.87082,-0.002 -2.4627,-11.74364 3.16231,11.74164 24.95191,-0.005 c 0,0 -1.21499,-4.79085 -9.34638,-18.738812 -8.13139,-13.947966 -29.6599,-37.42681 -66.17394,-37.427281 z"
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
style="display:none"
class="layer-hair-above-broken"
id="layer.hair.above.broken"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="fill:#ffaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 316.47904,45.976047 c 3.01186,-7.412025 5.79142,-7.480191 9.59153,-11.149781 0.23166,4.044038 0.86822,7.21637 3.82171,11.895552 1.84039,-1.601197 5.16473,-5.137074 8.87234,-3.760325 -2.976,2.586746 -0.69321,5.672752 0.9995,10.006905 2.8424,-2.115955 6.69755,-3.033551 12.02024,-0.406566 -7.79925,6.556858 3.30919,10.431838 5.54857,21.920553 l -68.61434,1.183902 c 4.21816,-10.419547 13.81334,-11.682329 6.0867,-24.235136 3.43631,0.11533 7.69535,-0.47925 11.45487,1.725992 2.4041,-4.12044 2.3405,-6.833714 1.06741,-9.620048 2.72512,-0.814713 5.50311,-1.364962 9.15147,2.438952 z"
id="hair.broken.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccc"
class="hair" />
<path
class="hair"
sodipodi:nodetypes="sssccccccccssccccccscccccccss"
inkscape:connector-curvature="0"
id="hair.broken.1"
d="m 325.50977,60.632812 c -37.79513,-1.45e-4 -69.99855,18.645978 -78.01357,61.615958 -2.50071,13.40674 -4.4692,28.35743 -5.23274,44.65818 -0.3147,6.71847 -0.95056,13.82718 -10.9119,17.59891 14.02314,1.27151 19.83089,1.94564 26.36328,-11.91016 0.54574,6.81117 1.07396,10.52329 -4.43554,19.75977 8.14323,-3.62379 11.99741,-7.61684 13.89453,-13.34375 5.71799,4.79397 12.29733,8.93095 19.62305,12.20703 -2.74091,-3.24731 -5.15797,-6.81381 -7.24415,-10.61523 -3.98935,-8.47113 -4.50406,-14.59907 -4.62078,-19.39711 6.61978,0.28667 14.7642,2.20969 20.65985,-1.81383 0,0 -12.18427,-1.91173 -15.89258,-8.1211 -10.25107,-17.16489 -6.18128,-34.7147 5.01758,-47.7539 6.18082,-7.19653 10.23815,-10.444063 18.52418,-12.570226 l 1.65676,16.015216 16.42501,-15.55899 5.05881,24.79633 15.30507,-25.95026 c 13.79872,0.985554 17.76221,4.559795 25.69814,10.82066 7.60123,8.64319 10.05389,19.88821 10.25781,33.44727 0.26568,17.66551 0.0611,40.92098 -14.29102,57.12304 5.10523,-2.2178 9.85778,-4.85017 14.22071,-7.83007 1.64202,3.79307 8.26286,9.68673 12.93945,8.54492 -2.16457,-6.63776 -1.00235,-8.62805 0.42773,-15.33789 4.29635,7.30695 9.90062,11.87036 17.5625,11.7832 -4.15175,-6.98937 -7.56034,-14.04745 -8.2539,-21.9375 9.37977,7.45837 17.44336,1.20508 17.44336,1.20508 -12.547,-14.30136 -12.09073,-22.77441 -13.35938,-41.5625 -2.48409,-36.78824 -34.77108,-65.873213 -78.82226,-65.873048 z"
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hair.above.fluffy.kiriban"
class="layer-hair-above-fluffy-kiriban"
style="display:none"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 328.13281,57.568359 c -22.72374,0.411036 -33.56647,4.359184 -48.91797,17.169922 -0.95394,0.796062 -1.86544,1.639573 -2.75781,2.503907 -0.38662,0.318377 -0.76402,0.621902 -1.15625,0.949218 -1.39893,1.1674 -2.73023,2.411524 -3.99805,3.722656 35.28338,-1.126973 38.77068,-6.387649 64.30665,3.59375 19.98766,7.812698 40.64325,29.306138 39.68633,59.693168 -0.76231,24.20742 2.21546,41.596 13.89803,49.11478 15.05462,9.689 43.50921,-2.8291 40.63701,-37.99262 -3.25823,6.73965 -13.03567,15.31982 -18.24752,13.24469 -6.84173,-2.72408 -7.17813,-13.01975 -6.53253,-32.78992 0.89818,-27.50497 -19.03988,-50.112076 -33.45101,-62.660087 -13.40174,-11.66912 -25.1411,-16.880947 -43.46688,-16.549464 z"
id="hair.fluffy.kiriban.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sscscssscssss"
class="hair" />
<path
style="opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 321.21448,62.598561 c -11.57001,0.102029 -33.94283,1.835139 -46.66674,15.126119 -11.58019,12.096296 -15.15075,23.79778 -15.47547,28.62102 -0.41016,6.09225 -0.0464,13.29142 2.26953,20.28711 3.47923,-12.99341 9.86876,-25.89853 22.22851,-34.10156 9.90354,-6.57287 28.20021,-10.335504 41.6104,-5.310153 10.03552,3.760725 14.26441,11.024153 14.40913,16.618743 0.14472,5.59458 -4.0261,7.82339 -9.875,8.10157 -5.84891,0.27818 -14.30872,-8.79375 -14.72656,-14.759769 -1.98315,6.056659 5.19289,23.904689 16.42969,28.511719 11.23681,4.60703 30.65813,-4.11657 30.85547,-19.18164 0.38708,-29.549315 -16.51033,-44.129639 -41.05896,-43.913159 z"
id="hair.below.fluffy.kiriban.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssscsssscsss"
class="hair" />
</g>
<g
style="display:none"
class="layer-hair-above-jasmaby"
id="layer.hair.above.jasmaby"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="display:inline;opacity:1;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 321.21484,62.597656 c -11.57001,0.102029 -33.94406,1.835973 -46.66796,15.126953 -11.5802,12.096296 -15.14989,23.797851 -15.47461,28.621091 -0.41016,6.09225 -0.0464,13.29142 2.26953,20.28711 3.47923,-12.99341 9.86876,-25.89853 22.22851,-34.10156 9.90354,-6.57287 29.08707,-9.314282 41.61133,-9.310547 12.52426,0.0037 26.487,-0.239388 41.00195,9.310547 12.35975,8.20303 18.74929,21.10815 22.22852,34.10156 2.31593,-6.99569 2.67969,-14.19487 2.26953,-20.28711 -0.32472,-4.82324 -3.89442,-16.524795 -15.47461,-28.621091 -12.72391,-13.29098 -35.096,-15.022971 -46.66601,-15.125 -1.24042,-0.01094 -2.45628,0.02506 -3.65625,0.08984 -1.2048,-0.06521 -2.42449,-0.10278 -3.66993,-0.09179 z"
id="hair.fluffy.jasmaby"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssscszccssscs"
class="hair" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hat.itchy"
class="layer-hat-itchy"
style="display:none;opacity:1"
sodipodi:insensitive="true">
<ellipse
style="opacity:1;fill:#f41883;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.itchy.2"
cx="324.77109"
cy="36.600273"
rx="11.836276"
ry="9.8134775"
class="hat.2" />
<path
style="opacity:1;fill:#f41883;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 325.08789,32.762027 c -27.02033,-3.8e-5 -55.6871,16.882991 -55.68021,29.230547 0.002,3.632017 5.95646,8.458726 9.67053,11.66978 L 276.0558,84.53602 c 29.54788,-11.807513 67.59717,-11.100207 98.06284,0 l -3.02376,-10.873666 c 3.71501,-3.210945 9.67101,-8.037658 9.67322,-11.66978 0.008,-12.347556 -28.65988,-29.230585 -55.68021,-29.230547 z"
id="hat.itchy.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssccccss"
class="hat.1" />
<path
style="opacity:1;fill:#ffffff;fill-opacity:0.24489794;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 322.65346,61.793456 c -37.44567,0.320366 -43.57555,11.869173 -43.57555,11.869173 l -3.02242,10.873672 c 29.54789,-11.80752 67.59717,-11.100213 98.06285,0 l -3.02376,-10.873672 c 0,0 -10.99547,-12.18954 -48.44112,-11.869173 z"
id="path4467-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="zccccz" />
</g>
<g
style="display:none"
class="layer-hat-broken"
id="layer.hat.broken"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
class="hat.1"
sodipodi:nodetypes="cscsc"
inkscape:connector-curvature="0"
id="hat.broken"
d="m 325.22846,72.015145 c 0,0 -14.23844,-9.28034 -10.32873,-18.581593 2.20199,-5.238549 10.33525,-1.27906 10.33525,-1.27906 0,0 8.13127,-3.92894 10.32298,1.285185 3.90972,9.301253 -10.3295,18.575468 -10.3295,18.575468 z"
style="fill:#632994;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hat.andre"
class="layer-hat-andre"
sodipodi:insensitive="true"
style="display:none">
<path
style="opacity:1;fill:#060031;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 321.72266,24 0,11.994141 -3.00782,5.300781 -6.02539,-10.4375 -2.67968,1.546875 6.88671,11.923828 -1.77734,2.964844 -9.10352,-5.25586 -1.54687,2.677735 9.06055,5.230468 -1.11719,1.863282 8.10156,13.517578 0,44.277348 5.78321,0 0,-44.412114 7.93945,-13.248047 -1.21485,-2.027343 9.00586,-5.199219 -1.54687,-2.679688 -9.04883,5.22461 -1.65234,-2.757813 6.98632,-12.099609 -2.67968,-1.546875 -6.12696,10.609375 -3.14257,-5.472656 0,-11.994141 z"
id="hat.andre.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccccccccccccccccc"
class="hat.2" />
<path
style="opacity:1;fill:#ffebc6;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 267.92675,53.757071 c -17.26734,14.249567 -27.08987,34.234306 -27.1167,55.171109 9e-5,11.81861 0.53586,18.80577 8.01489,28.76328 -21.3583,5.53139 -34.92362,18.2253 -43.19258,28.32776 19.60959,-4.28877 44.22131,-8.17796 63.83087,-7.27621 5.39919,4.47055 11.18895,8.45243 17.02091,11.88929 11.10535,0.74398 21.43889,-4.67934 31.38415,-6.90644 -4.85552,8.21147 -7.2146,11.31201 -22.72225,11.59645 11.65937,5.74707 22.79515,9.02535 30.56338,9.02535 7.77164,0 18.91346,-3.27894 30.57806,-9.03096 -15.12254,-0.33639 -17.70025,-3.79597 -22.30942,-11.59084 9.80074,2.19474 19.97861,7.61302 30.90049,6.93646 5.90499,-3.47643 11.76934,-7.51155 17.22853,-12.04691 18.09595,-0.17152 41.19383,3.4461 59.28984,7.40381 -7.79236,-9.52014 -20.36022,-21.81283 -39.5749,-27.34435 7.90856,-10.20412 8.7867,-17.53439 8.78679,-29.74669 -0.0405,-20.890385 -9.83322,-40.830009 -27.04341,-55.066011 3.92605,5.569522 5.97332,11.638997 5.99933,17.786054 -0.0312,21.023985 -23.35653,33.078047 -54.76348,36.071327 L 323.49877,86.791799 312.35993,107.40049 c -30.00171,-3.86153 -50.49476,-15.501959 -50.5058,-35.752267 0.0259,-6.186157 2.09873,-12.293305 6.07262,-17.891152 z m 48.07971,75.875529 c -6.88324,9.17961 -35.45022,8.9435 -42.15643,0 8.58718,-11.44533 35.47844,-7.94599 42.15643,0 z m 60.07474,0 c -6.88322,9.17961 -35.45265,8.9435 -42.15885,0 5.69589,-8.83077 33.76296,-10.97078 42.15885,0 z"
id="hat.andre.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccscccccccccccccccccccc"
class="hat.1" />
<rect
style="opacity:1;fill:#ffebc6;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53187597;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.3"
width="11.771101"
height="11.684551"
x="337.83911"
y="-289.01614"
transform="matrix(0.51575255,0.85673759,-0.51575255,0.85673759,0,0)"
class="hat.1" />
<rect
style="opacity:1;fill:#ffebc6;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53243136;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.6"
width="9.2975626"
height="9.2292004"
x="345.88568"
y="-147.75134"
transform="matrix(0.87407249,0.48579551,-0.01632499,0.99986674,0,0)"
class="hat.1" />
<rect
style="opacity:1;fill:#ffebc6;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53243136;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.7"
width="9.2975626"
height="9.2292004"
x="321.0592"
y="-307.85556"
transform="matrix(0.51407123,0.8577475,-0.51407123,0.8577475,0,0)"
class="hat.1" />
<rect
style="opacity:1;fill:#ffebc6;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53243136;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.8"
width="9.2975626"
height="9.2292004"
x="208.50032"
y="-387.38928"
transform="matrix(0.01632499,0.99986674,-0.87407249,0.48579551,0,0)"
class="hat.1" />
<rect
style="opacity:1;fill:#ffebc6;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53243136;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.9"
width="9.2975626"
height="9.2292004"
x="35.051609"
y="-369.72476"
transform="matrix(-0.48579551,0.87407249,-0.99986674,-0.01632499,0,0)"
class="hat.1" />
<rect
style="opacity:1;fill:#ffebc6;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53243136;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.5"
width="9.2975626"
height="9.2292004"
x="270.76654"
y="47.048271"
transform="matrix(0.99986674,-0.01632499,0.48579551,0.87407249,0,0)"
class="hat.1" />
<rect
style="opacity:1;fill:#060031;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53662485;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.4"
width="3.6664755"
height="3.6395171"
x="350.48602"
y="-293.84506"
transform="matrix(0.50185204,0.86495348,-0.50185204,0.86495348,0,0)"
class="hat.2" />
<rect
style="opacity:1;fill:#fe8300;fill-opacity:0.39215686;fill-rule:nonzero;stroke:#000000;stroke-width:0.53243136;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.color.2"
width="9.2975626"
height="9.2292004"
x="345.8847"
y="-147.78076"
transform="matrix(0.87407249,0.48579551,-0.01632499,0.99986674,0,0)"
class="" />
<rect
style="opacity:1;fill:#acfe00;fill-opacity:0.39215686;fill-rule:nonzero;stroke:#000000;stroke-width:0.53243136;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.color.3"
width="9.2975626"
height="9.2292004"
x="321.04144"
y="-307.87265"
transform="matrix(0.51407123,0.8577475,-0.51407123,0.8577475,0,0)"
class="" />
<rect
style="opacity:1;fill:#00fecf;fill-opacity:0.39215686;fill-rule:nonzero;stroke:#000000;stroke-width:0.53243136;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.color.4"
width="9.2975626"
height="9.2292004"
x="208.47052"
y="-387.3894"
transform="matrix(0.01632499,0.99986674,-0.87407249,0.48579551,0,0)"
class="" />
<rect
style="opacity:1;fill:#4f00fe;fill-opacity:0.39215686;fill-rule:nonzero;stroke:#000000;stroke-width:0.53243136;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.color.5"
width="9.2975626"
height="9.2292004"
x="35.017742"
y="-369.70792"
transform="matrix(-0.48579551,0.87407249,-0.99986674,-0.01632499,0,0)"
class="" />
<rect
style="opacity:1;fill:#fe0083;fill-opacity:0.39215686;fill-rule:nonzero;stroke:#000000;stroke-width:0.53243136;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.andre.color.1"
width="9.2975626"
height="9.2292004"
x="270.78262"
y="47.014393"
transform="matrix(0.99986674,-0.01632499,0.48579551,0.87407249,0,0)"
class="" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hat.try.try.again"
class="layer-hat-try-try-again"
sodipodi:insensitive="true"
style="display:none">
<path
style="display:inline;fill:#67354f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 379.54114,87.175605 c 0,0 4.36785,-27.493191 -4.74543,-26.965077 -4.97713,0.288424 -20.10052,16.057428 -22.02126,22.02126 -1.92074,5.96383 26.76669,4.943817 26.76669,4.943817 z"
id="hat.try.try.again.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cszc"
class="hat.1" />
<path
style="display:inline;fill:#67354f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 381.40564,89.040736 c 0,0 28.36514,-4.276013 26.96506,4.74542 -0.86429,5.569144 -16.72073,20.086134 -22.02127,22.021264 -8.52717,3.11313 -4.94379,-26.766684 -4.94379,-26.766684 z"
id="hat.try.try.again.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssc"
class="hat.1" />
<ellipse
style="display:inline;opacity:1;fill:#67354f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.try.try.again.3"
cx="330.5791"
cy="-206.45906"
rx="5.885962"
ry="9.5332537"
class="hat.1"
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" />
</g>
<g
class="layer-hat-try-try-again-2"
id="layer.hat.try.try.again.2"
inkscape:groupmode="layer"
sodipodi:insensitive="true"
style="display:none">
<path
class="hat.1"
sodipodi:nodetypes="cszc"
inkscape:connector-curvature="0"
id="hat.try.try.again.reflected.1"
d="m 271.56554,88.059488 c 0,0 -4.36785,-27.493191 4.74543,-26.965077 4.97713,0.288424 20.10052,16.057428 22.02126,22.02126 1.92074,5.96383 -26.76669,4.943817 -26.76669,4.943817 z"
style="display:inline;fill:#67354f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
class="hat.1"
sodipodi:nodetypes="cssc"
inkscape:connector-curvature="0"
id="hat.try.try.again.reflected.3"
d="m 269.70104,89.924619 c 0,0 -28.36514,-4.276013 -26.96506,4.74542 0.86429,5.569141 16.72073,20.086131 22.02127,22.021261 8.52717,3.11313 4.94379,-26.766681 4.94379,-26.766681 z"
style="display:inline;fill:#67354f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<ellipse
transform="matrix(-0.70710678,0.70710678,0.70710678,0.70710678,0,0)"
class="hat.1"
ry="9.5332537"
rx="5.885962"
cy="254.56781"
cx="-129.19777"
id="hat.try.try.again.reflected.2"
style="display:inline;opacity:1;fill:#67354f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer.hat.jasmaby"
class="layer-hat-jasmaby"
style="display:none"
sodipodi:insensitive="true">
<path
style="fill:#f24f0f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 380.36428,49.814876 C 381.53929,73.168919 339.48389,108.95736 326.9045,84.291851 314.3251,59.626342 358.73654,40.646608 380.36428,49.814876 Z"
id="hat.jasmaby.5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czc"
class="hat.1" />
<path
style="fill:#f24f0f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 269.1102,49.815228 c -1.16189,23.354043 40.42361,59.142482 52.86245,34.476976 12.43884,-24.66551 -31.47638,-43.645243 -52.86245,-34.476976 z"
id="hat.jasmaby.6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czc"
class="hat.1" />
<rect
style="opacity:1;fill:#fcecd0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.jasmaby.8"
width="6.0126605"
height="29.993612"
x="289.4754"
y="125.86836"
ry="2.5625"
rx="2.5624998"
transform="matrix(0.96587909,-0.25899342,0.25864478,0.9659725,0,0)"
class="hat.2" />
<rect
style="opacity:1;fill:#fcecd0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.jasmaby.9"
width="6.0126605"
height="29.993612"
x="331.63806"
y="-42.350609"
ry="2.5625"
rx="2.5624998"
transform="matrix(0.96587909,0.25899342,-0.25864478,0.9659725,0,0)"
class="hat.2" />
<rect
style="opacity:1;fill:#fcecd0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.jasmaby.7"
width="6.0123696"
height="32.666042"
x="321.42902"
y="46.981609"
ry="2.5625"
rx="2.5625"
class="hat.2" />
<path
style="opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 281.10902,47.477511 c -4.37345,0.08807 -8.49088,0.834644 -11.99954,2.338814 -0.58527,11.764062 9.67873,26.675062 21.59779,35.433016 l 0,-8.417434 c -9.01362,-7.40628 -14.64265,-19.185276 -8.39991,-28.189575 0.27988,-0.403681 0.57578,-0.784752 0.87757,-1.153355 -0.0622,-0.0016 -0.12575,-0.0077 -0.18789,-0.0092 -0.63424,-0.014 -1.26324,-0.01487 -1.88802,-0.0023 z"
id="path5593-5-0-4"
inkscape:connector-curvature="0" />
<path
style="fill:#f24f0f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 254.231,80.332738 C 258.62941,58.909549 316.16548,48.781692 323.59589,74.643994 331.0263,100.5063 275.04732,94.78408 254.231,80.332738 Z"
id="hat.jasmaby.4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czc"
class="hat.1" />
<path
style="opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 277.52313,61.897898 c -11.76181,3.452969 -21.57728,10.076973 -23.29335,18.43535 7.42042,5.15149 19.30801,9.189881 31.19833,11.086433 l 0,-3.748981 c -5.31966,-2.683704 -9.71098,-6.614856 -11.88268,-11.739924 -2.45543,-5.794662 -0.41509,-10.598732 3.9777,-14.032878 z"
id="path5593-5-3-6"
inkscape:connector-curvature="0" />
<path
style="opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 370.05726,47.569229 c 3.85472,6.958518 0.82719,15.871395 -5.14855,23.323928 l 0,8.990672 c 9.09359,-8.742993 15.93843,-20.455197 15.45482,-30.067504 -3.05358,-1.294451 -6.56887,-2.011635 -10.30627,-2.247096 z"
id="path5593-0-1"
inkscape:connector-curvature="0" />
<path
style="fill:#f24f0f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 395.51896,80.388785 c -4.45365,-21.694793 -62.71238,-31.951049 -70.2361,-5.760863 -7.52374,26.190188 49.15832,20.395417 70.2361,5.760863 z"
id="hat.jasmaby.3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czc"
class="hat.1" />
<path
style="fill:#f24f0f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 266.24183,110.63915 C 264.9721,89.234406 308.26653,49.977134 321.85991,72.583872 335.45329,95.19061 289.61289,119.04217 266.24183,110.63915 Z"
id="hat.jasmaby.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czc"
class="hat.1" />
<path
style="opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 372.00715,61.741978 c 4.51283,3.511807 6.54236,8.461668 3.81044,14.431852 -2.1575,4.714848 -6.11876,8.421462 -10.90888,11.086432 l 0,4.193813 c 11.70943,-1.98343 23.30003,-5.990763 30.60947,-11.065796 -1.73407,-8.447087 -11.63386,-15.143562 -23.51103,-18.646301 z"
id="path5593-7-7"
inkscape:connector-curvature="0" />
<path
style="fill:#f24f0f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 383.0647,110.74858 C 384.34084,89.235545 340.82791,49.779633 327.16593,72.500753 313.50395,95.221873 359.5757,119.19411 383.0647,110.74858 Z"
id="hat.jasmaby.1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czc"
class="hat.1" />
<path
style="opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 280.47891,82.417543 c -8.54294,9.006918 -14.72916,19.944197 -14.23814,28.221677 17.25487,6.20394 46.73335,-5.17949 55.52278,-20.657222 -7.81121,12.556282 -28.96248,18.977812 -39.09874,6.716063 -3.55174,-4.296498 -3.88383,-9.368942 -2.1859,-14.280518 z m 41.28464,7.564455 c 0.17206,-0.303002 0.35271,-0.604259 0.50866,-0.910302 -0.16947,0.303604 -0.32396,0.613393 -0.50866,0.910302 z"
id="path5593-5-4"
inkscape:connector-curvature="0" />
<path
style="opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 368.00654,81.601251 c 1.8281,5.044951 1.52856,10.307444 -2.15381,14.762038 -9.68825,11.719931 -29.08107,6.620081 -37.53149,-4.663868 9.94752,14.668289 38.04391,25.054319 54.74372,19.049859 0.50777,-8.55998 -6.08599,-19.953769 -15.05842,-29.148029 z"
id="path5593-08"
inkscape:connector-curvature="0" />
</g>
<g
style="display:none;opacity:1"
class="layer-hat-charthur"
id="layer.hat.charthur"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<rect
style="opacity:1;fill:#5b4370;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.charthur.1"
width="97.330727"
height="42.242268"
x="276.72873"
y="33.225979"
ry="4.7751265"
rx="15"
class="hat.1" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.58823529;fill-rule:nonzero;stroke:#000000;stroke-width:0.49999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.charthur.3"
width="79.5"
height="28.571068"
x="286.25"
y="41.178932"
rx="0"
ry="0"
class="" />
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.charthur.4"
width="15.5"
height="13.953313"
x="286.25"
y="41.178932"
class="hat.2" />
<rect
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.charthur.5"
width="15.5"
height="13.953313"
x="302.25"
y="55.796688"
class="hat.2" />
<rect
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.charthur.6"
width="15.5"
height="13.953313"
x="318.25"
y="41.178932"
class="hat.2" />
<rect
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.charthur.7"
width="15.5"
height="13.953313"
x="334.25"
y="55.796688"
class="hat.2" />
<rect
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="hat.charthur.8"
width="15.5"
height="13.953313"
x="350.25"
y="41.178932"
class="hat.2" />
<path
style="fill:#5b4370;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 286,69.6875 c -5.42422,0 -26.57929,6.781891 -17,12.3125 11.60181,-6.698305 100.02094,-7.161015 112.42418,0 9.56886,-5.524587 -10.57697,-12.3125 -15.23484,-12.3125 z"
id="hat.charthur.2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccss"
class="hat.1" />
</g>
</svg>