diff --git a/artTools/vector_revamp_layer_split.py b/artTools/vector_revamp_layer_split.py index 51c4dcfff12034146a10a396dddb501ef574da40..d495f0bad3923c7939a900c8e1b3b22c6e943da6 100644 --- a/artTools/vector_revamp_layer_split.py +++ b/artTools/vector_revamp_layer_split.py @@ -11,6 +11,8 @@ python3 vector_layer_split.py vector_source.svg tw ../src/art/vector/layers/ ''' import lxml.etree as etree +from lxml.etree import XMLParser, parse + import sys import os import copy @@ -20,16 +22,19 @@ import inkscape_svg_fixup input_file = sys.argv[1] output_format = sys.argv[2] output_directory = sys.argv[3] + if not os.path.exists(output_directory): os.makedirs(output_directory) ns = { - 'svg' : 'http://www.w3.org/2000/svg', - 'inkscape' : 'http://www.inkscape.org/namespaces/inkscape', - 'sodipodi':"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd", + 'svg': 'http://www.w3.org/2000/svg', + 'inkscape': 'http://www.inkscape.org/namespaces/inkscape', + 'sodipodi': "http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd", } -tree = etree.parse(input_file) +p = XMLParser(huge_tree=True) +tree = parse(input_file, parser=p) +#tree = etree.parse(input_file) inkscape_svg_fixup.fix(tree) # prepare output template @@ -38,82 +43,98 @@ root = template.getroot() # remove all svg root attributes except document size for a in root.attrib: - if (a != "viewBox"): - del root.attrib[a] + if (a != "viewBox"): + del root.attrib[a] # add placeholder for CSS class (needed for workaround for non HTML 5.1 compliant browser) if output_format == 'tw': - root.attrib["class"] = "'+_art_display_class+'" + root.attrib["class"] = "'+_art_display_class+'" # remove all content, including metadata # for twine output, style definitions are removed, too defs = None for e in root: - if (e.tag == etree.QName(ns['svg'], 'defs')): - defs = e - if (e.tag == etree.QName(ns['svg'], 'g') or - e.tag == etree.QName(ns['svg'], 'metadata') or - e.tag == etree.QName(ns['svg'], 'defs') or - e.tag == etree.QName(ns['sodipodi'], 'namedview') or - (output_format == 'tw' and e.tag == etree.QName(ns['svg'], 'style')) - ): - root.remove(e) + if (e.tag == etree.QName(ns['svg'], 'defs')): + defs = e + if (e.tag == etree.QName(ns['svg'], 'g') or + e.tag == etree.QName(ns['svg'], 'metadata') or + e.tag == etree.QName(ns['svg'], 'defs') or + e.tag == etree.QName(ns['sodipodi'], 'namedview') or + (output_format == 'tw' and e.tag == etree.QName(ns['svg'], 'style')) + ): + root.remove(e) # template preparation finished # prepare regex for later use -regex_xmlns = re.compile(' xmlns[^ ]+',) -regex_space = re.compile('[>][ ]+[<]',) - +regex_xmlns = re.compile(' xmlns[^ ]+', ) +regex_space = re.compile('[>][ ]+[<]', ) +regex_transformValue = re.compile('(?<=transformVariableName=")[^"]*', ) +regex_transformVar = re.compile('transformVariableName="[^"]*"', ) +regex_transformAttr = re.compile('transform="[^"]*"', ) # find all groups -layers = tree.xpath('//svg:g',namespaces=ns) +layers = tree.xpath('//svg:g', namespaces=ns) for layer in layers: - i = layer.get('id') - if ( # disregard non-content groups - i.endswith("_") or # manually suppressed with underscore - i.startswith("XMLID") or # Illustrator generated group - i.startswith("g") # Inkscape generated group - ): - continue - # create new canvas - output = copy.deepcopy(template) - # copy all shapes into template - canvas = output.getroot() - for e in layer: - canvas.append(e) - # represent template as SVG (binary string) - svg = etree.tostring(output, pretty_print=False) - # poor man's conditional defs insertion - # TODO: extract only referenced defs (filters, gradients, ...) - # TODO: detect necessity by traversing the elements. do not stupidly search in the string representation - if ("filter:" in svg.decode('utf-8')): - # it seems there is a filter referenced in the generated SVG, re-insert defs from main document - canvas.insert(0,defs) - # re-generate output + i = layer.get('id') + if ( # disregard non-content groups + i.endswith("_") or # manually suppressed with underscore + i.startswith("XMLID") or # Illustrator generated group + i.startswith("g") # Inkscape generated group + ): + continue + # create new canvas + output = copy.deepcopy(template) + # copy all shapes into template + canvas = output.getroot() + for e in layer: + canvas.append(e) + # represent template as SVG (binary string) svg = etree.tostring(output, pretty_print=False) - - if (output_format == 'tw'): - # remove unnecessary attributes - # TODO: never generate unnecessary attributes in the first place - svg = svg.decode('utf-8') - svg = regex_xmlns.sub('',svg) - svg = svg.replace(' inkscape:connector-curvature="0"','') # this just saves space - svg = svg.replace('\n','').replace('\r','') # print cannot be multi-line - svg = regex_space.sub('><',svg) # remove indentaion - svg = svg.replace('svg:','') # svg namespace was removed - svg = svg.replace('<g ','<g transform="\'+_art_transform+\'"') # internal groups are used for scaling - svg = svg.encode('utf-8') - - # save SVG string to file - i = layer.get('id') - output_path = os.path.join(output_directory,i+'.'+output_format) - with open(output_path, 'wb') as f: - if (output_format == 'svg'): - # Header for normal SVG (XML) - f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8")) - f.write(svg) - elif (output_format == 'tw'): - # Header for SVG in Twine file (SugarCube print statement) - f.write((':: Art_Vector_Revamp_%s [nobr]\n\n'%(i)).encode("utf-8")) - f.write("<<print '<html>".encode("utf-8")) - f.write(svg) - f.write("</html>' >>".encode("utf-8")) + # poor man's conditional defs insertion + # TODO: extract only referenced defs (filters, gradients, ...) + # TODO: detect necessity by traversing the elements. do not stupidly search in the string representation + if ("filter:" in svg.decode('utf-8')): + # it seems there is a filter referenced in the generated SVG, re-insert defs from main document + canvas.insert(0, defs) + # re-generate output + svg = etree.tostring(output, pretty_print=False) + elif ("clip-path=" in svg.decode('utf-8')): + # it seems there is a clip path referenced in the generated SVG, re-insert defs from main document + canvas.insert(0, defs) + # re-generate output + svg = etree.tostring(output, pretty_print=False) + + if (output_format == 'tw'): + # remove unnecessary attributes + # TODO: never generate unnecessary attributes in the first place + svg = svg.decode('utf-8') + svg = regex_xmlns.sub('', svg) + svg = svg.replace(' inkscape:connector-curvature="0"', '') # this just saves space + svg = svg.replace('\n', '').replace('\r', '') # print cannot be multi-line + svg = regex_space.sub('><', svg) # remove indentaion + svg = svg.replace('svg:', '') # svg namespace was removed + + transformGroups = regex_transformVar.findall(svg) + + if (len(transformGroups) > 0): + svg = regex_transformAttr.sub('', svg) + for transformGroup in transformGroups: + transformValue = regex_transformValue.search(transformGroup) + if (transformValue is not None): + svg = svg.replace(transformGroup, ' transform="\'+' + transformValue.group() + '+\'" ') # internal groups are used for scaling + + svg = svg.encode('utf-8') + + # save SVG string to file + i = layer.get('id') + output_path = os.path.join(output_directory, i + '.' + output_format) + with open(output_path, 'wb') as f: + if (output_format == 'svg'): + # Header for normal SVG (XML) + f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8")) + f.write(svg) + elif (output_format == 'tw'): + # Header for SVG in Twine file (SugarCube print statement) + f.write((':: Art_Vector_Revamp_%s [nobr]\n\n' % (i)).encode("utf-8")) + f.write("<<print '<html>".encode("utf-8")) + f.write(svg) + f.write("</html>' >>".encode("utf-8")) diff --git a/artTools/vector_revamp_source.svg b/artTools/vector_revamp_source.svg index ea06b1c41211aaa408285a451808f0efee509e9d..fee0794d5a1f478b0f2caad92a7555be87c004b7 100644 --- a/artTools/vector_revamp_source.svg +++ b/artTools/vector_revamp_source.svg @@ -13,8 +13,11 @@ <filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"> <feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/> </filter> + <clipPath clipPathUnits="userSpaceOnUse" id="clipPath2523"> + <path style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:1" d="m 274.57189,189.42903 15.50314,-3.68772 7.17414,5.6607 18.78855,-0.15563 22.89606,-10.20457 4.18325,-5.70166 12.47654,1.89159 300.60628,-20.29169 -9.82055,549.03095 -688.642378,1.7251 29.38501,-463.4512 z" id="path2525" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccc"/> + </clipPath> </defs> - <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="2482" inkscape:window-height="1411" id="namedview4358" showgrid="false" inkscape:zoom="0.99999995" inkscape:cx="153.24461" inkscape:cy="421.87223" inkscape:window-x="69" inkscape:window-y="-9" inkscape:window-maximized="1" inkscape:current-layer="Notes_" inkscape:object-nodes="true" inkscape:object-paths="true" inkscape:snap-smooth-nodes="false" inkscape:snap-object-midpoints="true" inkscape:snap-global="false" inkscape:snap-nodes="true" inkscape:snap-intersection-paths="false" inkscape:snap-bbox="true" inkscape:snap-others="false" showguides="false" inkscape:lockguides="true"/> + <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="2482" inkscape:window-height="1411" id="namedview4358" showgrid="false" inkscape:zoom="0.99999996" inkscape:cx="360.42883" inkscape:cy="363.29092" inkscape:window-x="69" inkscape:window-y="-9" inkscape:window-maximized="1" inkscape:current-layer="Notes_" inkscape:object-nodes="true" inkscape:object-paths="true" inkscape:snap-smooth-nodes="false" inkscape:snap-object-midpoints="true" inkscape:snap-global="false" inkscape:snap-nodes="true" inkscape:snap-intersection-paths="false" inkscape:snap-bbox="true" inkscape:snap-others="false" showguides="false" inkscape:lockguides="true"/> <style type="text/css" id="style"> /* please maintain these definitions manually */ .white{fill:#FFFFFF;} @@ -54,9 +57,9 @@ .belly{fill:#F6E0E8;} .belly_upper{fill:#F6E0E8;} .head{fill:#F6E0E8;}</style> - <g inkscape:groupmode="layer" id="Original_Canvas_" inkscape:label="Original_Canvas_" style="display:inline;opacity:1"> + <g inkscape:groupmode="layer" id="Original_Canvas_" inkscape:label="Original_Canvas_" style="display:inline;opacity:1" sodipodi:insensitive="true"> <g inkscape:groupmode="layer" id="background_" inkscape:label="background_" style="display:inline;opacity:1"> - <rect style="display:inline;opacity:0.40400002;fill:#ff0000" id="rect4823" width="1000" height="1000" x="-220" y="0.25"/> + <rect style="display:inline;opacity:1;fill:#505050;fill-opacity:1" id="rect4823" width="1000" height="1000" x="-220" y="0.25"/> </g> </g> <g inkscape:groupmode="layer" id="Hair_Back_" style="display:inline;opacity:1" inkscape:label="Hair_Back_"> @@ -289,7 +292,7 @@ <g inkscape:groupmode="layer" id="Arm_" style="display:inline;opacity:1" inkscape:label="Arm_"> <g inkscape:groupmode="layer" id="Arm_Right_High" style="display:inline" inkscape:label="Arm_Right_High"> <path sodipodi:nodetypes="ccccsccccccccccccccccccscsscc" inkscape:connector-curvature="0" id="path3267" d="m 259.39085,219.99261 c 0,0 -11.4994,-9.89625 -19.3512,-17.30477 -13.55495,-10.6354 -16.5421,-12.96229 -23.61491,-19.05855 -7.84581,-5.48263 -11.33539,-8.77242 -14.18124,-11.27461 -1.59426,-0.41862 -14.57996,-10.23511 -15.50675,-17.99531 -0.30105,-2.52075 7.13378,-13.12186 10.18104,-16.29746 10.0981,-12.66515 14.28981,-11.39852 26.56588,-18.49891 20.9156,-10.12621 37.2882,-17.70528 37.28061,-17.28893 1.94149,-0.87834 15.65824,-4.611687 14.74106,-3.976477 2.64756,-0.166485 9.27182,1.396148 9.11158,1.835007 15.92104,-4.527759 22.02179,-3.105036 29.56893,-2.843117 0.53511,0.818414 1.47862,0.628049 1.41733,3.025847 3.51257,1.2406 4.50117,3.47693 4.64203,6.36438 2.11132,1.72264 3.93959,3.50445 3.36111,6.55914 2.5318,1.96802 2.44818,4.26321 1.92693,6.80088 -0.30855,3.98719 -1.98153,6.77689 -4.21016,9.07522 -2.10065,0.1102 -4.15584,0.4605 -6.38828,0.70975 -0.0238,1.09284 -0.29881,2.0174 -0.90926,2.5303 -3.51244,4.3944 -6.24262,0.87047 -9.13633,-0.21053 -1.64333,0.0894 -4.13515,0.43539 -5.76534,-0.89566 -4.8078,-1.15706 -13.18021,-10.80666 -13.15481,-10.96256 -2.13384,0.12843 -4.26201,0.27444 -6.59247,-0.21243 -6.9898,0.45253 -14.36983,2.47734 -17.85002,2.73673 -11.11904,3.05074 -35.45572,28.98109 -46.09657,27.81755 -0.80241,-0.0877 0.70344,1.51406 1.18795,2.30615 8.10171,5.03261 22.54551,16.19148 35.37619,25.48062 6.28262,4.54849 12.39945,5.64348 16.97459,8.35665 1.99185,1.18121 7.93634,5.85615 7.93634,5.85615 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.94240636"/> - <path d="m 259.39085,219.99261 c 0,0 -11.09917,-10.27939 -19.3512,-17.30477 -12.8911,-10.97488 -15.50869,-12.98224 -22.86491,-18.93355 -7.35622,-5.95133 -12.41012,-9.56779 -15.40224,-11.92994 -0.51549,-0.40696 -14.10708,-9.74715 -14.99488,-17.28574 -0.36683,-3.11486 7.78548,-13.45707 10.63018,-17.00703 7.42929,-9.27118 14.77475,-11.67837 27.41038,-18.23375 17.64518,-9.15434 35.9461,-17.02376 35.9461,-17.02376 0,0 13.0177,-3.417078 14.74106,-3.976477 1.26304,0.05577 8.3248,1.548142 9.11158,1.835007 13.99391,-3.008292 21.8199,-2.945865 29.56893,-2.843117 0.50937,0.842338 1.19497,0.891556 1.41733,3.025847 3.39454,1.3705 4.22052,3.78576 4.64203,6.36438 2.02196,1.78044 3.41759,3.84218 3.36111,6.55914 2.26855,2.08814 2.03529,4.45164 1.92693,6.80088 -0.46156,3.85176 -2.32676,6.4713 -4.21016,9.07522 -2.14619,-0.002 -4.28171,0.14977 -6.38828,0.70975 -0.23338,0.93759 -0.43868,1.91379 -0.90926,2.5303 -3.70065,3.95156 -6.25201,0.84837 -9.13633,-0.21053 -1.58528,-0.13117 -4.04804,0.10436 -5.76534,-0.89566 -4.73466,-1.60596 -13.15481,-10.96256 -13.15481,-10.96256 l -6.59247,-0.21243 c -7.35428,-0.284 -11.09037,1.70346 -16.764,2.56724 l -1.67401,0.29449 c -12.76702,3.05181 -20.62907,14.16069 -31.02434,21.168 -4.3974,2.96423 -13.29629,8.8307 -13.29629,8.8307 0,0 18.92983,14.51195 35.0083,25.85293 6.67662,4.70936 13.08253,5.86673 17.21619,8.21637 1.41226,0.80275 8.86431,5.54352 8.86431,5.54352" id="path3269" inkscape:connector-curvature="0" sodipodi:nodetypes="csscssscccccccccccccccccccssc" class="skin arm"/> + <path d="m 259.39085,219.99261 c 0,0 -11.09917,-10.27939 -19.3512,-17.30477 -12.8911,-10.97488 -15.50869,-12.98224 -22.86491,-18.93355 -7.35622,-5.95133 -12.41012,-9.56779 -15.40224,-11.92994 -0.51549,-0.40696 -14.10708,-9.74715 -14.99488,-17.28574 -0.36683,-3.11486 7.78548,-13.45707 10.63018,-17.00703 7.42929,-9.27118 14.77475,-11.67837 27.41038,-18.23375 17.64518,-9.15434 35.9461,-17.02376 35.9461,-17.02376 0,0 13.0177,-3.417078 14.74106,-3.976477 1.26304,0.05577 8.3248,1.548142 9.11158,1.835007 13.99391,-3.008292 21.8199,-2.945865 29.56893,-2.843117 0.50937,0.842338 1.19497,0.891556 1.41733,3.025847 3.39454,1.3705 4.22052,3.78576 4.64203,6.36438 2.02196,1.78044 3.41759,3.84218 3.36111,6.55914 2.26855,2.08814 2.03529,4.45164 1.92693,6.80088 -0.46156,3.85176 -2.32676,6.4713 -4.21016,9.07522 -2.14619,-0.002 -4.28171,0.14977 -6.38828,0.70975 -0.23338,0.93759 -0.43868,1.91379 -0.90926,2.5303 -3.70065,3.95156 -6.25201,0.84837 -9.13633,-0.21053 -1.58528,-0.13117 -4.04804,0.10436 -5.76534,-0.89566 -4.73466,-1.60596 -13.15481,-10.96256 -13.15481,-10.96256 l -6.59247,-0.21243 c -7.35428,-0.284 -11.09037,1.70346 -16.764,2.56724 l -1.67401,0.29449 c -12.76702,3.05181 -20.62907,14.16069 -31.02434,21.168 -4.3974,2.96423 -13.29629,8.8307 -13.29629,8.8307 0,0 20.43423,16.49245 31.69374,23.15708 5.38017,3.18458 11.66317,4.67429 16.98633,7.95327 2.97349,1.83162 8.23627,6.47548 8.23627,6.47548" id="path3269" inkscape:connector-curvature="0" sodipodi:nodetypes="csscssscccccccccccccccccccaac" class="skin arm"/> <path inkscape:connector-curvature="0" d="m 314.8035,130.10722 c -4.91505,-2.78303 -4.69322,-5.15544 -5.10067,-6.66314 0.97688,2.53491 1.35543,2.94959 5.10067,6.66314 z" class="shadow" id="path3271" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 309.82448,123.59658 c 4.27234,-1.20558 4.02571,-0.74304 5.73079,-0.32343 -1.60792,-0.16837 -1.40724,-0.30207 -5.73079,0.32343 z" class="shadow" id="path3273" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 314.80546,130.07947 c -0.098,-3.36849 0.14746,-3.03453 0.87734,-5.19396 -0.55565,2.12164 -0.46563,2.39281 -0.87734,5.19396 z" class="shadow" id="path3275" sodipodi:nodetypes="ccc"/> @@ -334,8 +337,8 @@ <path sodipodi:nodetypes="ccc" id="path3212" class="shadow" d="m 232.75946,324.12197 c 6.44272,2.56904 8.97124,6.42201 15.31369,1.22631 -5.23343,2.95476 -7.65007,0.91512 -15.31369,-1.22631 z" inkscape:connector-curvature="0"/> </g> <g inkscape:groupmode="layer" id="Arm_Left_High" inkscape:label="Arm_Left_High" style="display:inline"> - <path sodipodi:nodetypes="cccccccccccccccccccccscccccccc" id="path3228" class="shadow" d="m 416.96515,136.81346 c 32.11702,-0.95542 12.44417,5.83226 -8.86061,-0.84231 -13.17517,-3.55885 -22.10975,-11.35491 -32.16663,-14.92538 -26.00796,-7.28693 -35.18199,-5.36422 -35.15592,-5.52718 -5.7001,-0.621 -8.60045,-1.23038 -8.1843,-1.25056 -2.1832,0.69779 -4.14081,1.89142 -6.17593,2.9871 -4.21706,4.76934 -8.18639,10.39866 -13.57388,12.35835 -1.92294,1.53597 -4.68187,1.38752 -6.42427,1.56556 -3.17523,1.49929 -6.0303,5.71999 -10.25413,1.05927 -0.71753,-0.67242 -1.08803,-1.79537 -1.17931,-2.88952 -2.44492,-0.27198 -4.8582,-0.24109 -7.22331,-0.265 -2.49592,-2.52948 -4.91084,-5.18137 -5.29842,-10.2787 -0.57251,-2.93616 -1.19034,-5.8172 1.73934,-8.15351 -0.63334,-3.27898 0.8596,-5.81144 3.36731,-7.9988 0.0414,-3.142308 0.47692,-6.148001 4.81868,-7.881954 -0.35575,-2.53162 0.83749,-2.644437 1.40361,-3.677788 8.67897,-0.933389 17.44184,-1.860384 33.40821,0.707292 0.76908,-0.432375 1.18909,-0.984061 2.97187,-1.064521 2.02588,0.323394 2.29331,2.593018 4.17997,2.916577 0.017,-0.122533 11.07469,-0.519229 28.23967,2.846153 22.33718,4.993821 38.1414,6.556701 50.90227,11.342701 15.98778,2.32201 35.44598,17.35468 35.9125,31.34547 0.25313,7.59105 -9.11293,16.51703 -12.98971,17.78179 -6.90871,5.56547 -40.15715,34.83106 -68.08145,53.02535 -12.76935,11.09792 1.0322,34.94142 -18.21974,33.80336 -11.42113,-1.91438 -15.90619,-47.50408 -15.80696,-47.55692 8.12889,-3.15008 13.68165,-10.49055 19.97602,-16.62467 6.29362,-1.56423 11.88648,-5.46072 17.60239,-8.94768 24.72621,-14.49206 27.79345,-19.88621 45.07272,-33.85449 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 416.34015,137.87596 c 27.19781,0.73794 6.76862,2.55782 -8.23561,-1.90481 -12.93847,-3.90325 -22.17008,-11.8098 -32.16663,-14.92538 -27.21775,-8.48286 -35.15592,-5.52718 -35.15592,-5.52718 -4.43404,-0.99709 -8.59402,-1.23228 -8.1843,-1.25056 -2.51009,0.47312 -4.29552,1.78509 -6.17593,2.9871 -4.50142,4.17994 -8.35339,10.0525 -13.57388,12.35835 -1.86742,1.32643 -4.6509,1.27068 -6.42427,1.56556 -3.17523,1.49929 -5.84837,5.36864 -10.25413,1.05927 -0.56736,-0.68182 -0.85844,-1.80974 -1.17931,-2.88952 -2.40238,-0.47006 -4.81155,-0.45831 -7.22331,-0.265 -2.2793,-2.88904 -4.539,-5.79859 -5.29842,-10.2787 -0.26857,-2.7479 -0.67956,-5.50083 1.73934,-8.15351 -0.23326,-3.18411 1.20628,-5.72923 3.36731,-7.9988 0.31255,-3.064215 1.08954,-5.971585 4.81868,-7.881954 0.11652,-2.52493 0.88382,-2.643795 1.40361,-3.677788 8.70196,-0.809319 17.4938,-1.580034 33.40821,0.707292 0.86624,-0.406652 1.55594,-0.886827 2.97187,-1.064521 1.97166,0.503435 2.26133,2.699256 4.17997,2.916577 0,0 11.28571,-1.354883 28.23967,2.846153 21.50866,5.329651 36.63325,6.513511 50.90227,11.342701 15.63351,5.29098 29.05276,12.30963 35.49429,28.83661 3.29595,8.45637 -8.6973,18.99285 -12.5715,20.29065 -7.2367,5.35747 -42.11286,34.38128 -68.08145,53.02535 -12.79099,11.05725 0.8543,34.6073 -18.21974,33.80336 -11.12304,-2.0731 -15.80696,-47.55692 -15.80696,-47.55692 3.13687,-5.26914 2.81848,-10.8608 20.30706,-17.24004 6.29362,-1.56423 11.55545,-4.84533 17.27136,-8.33229 18.03877,-8.34635 27.48335,-18.28231 44.44772,-32.792 z" class="skin arm" id="path3230" sodipodi:nodetypes="ccsccccccccccccccccsssccccccc"/> + <path sodipodi:nodetypes="cccccccccccccccccccccscccccccc" id="path3228" class="shadow" d="m 416.96515,136.81346 c 32.11702,-0.95542 12.44417,5.83226 -8.86061,-0.84231 -13.17517,-3.55885 -22.10975,-11.35491 -32.16663,-14.92538 -26.00796,-7.28693 -35.18199,-5.36422 -35.15592,-5.52718 -5.7001,-0.621 -8.60045,-1.23038 -8.1843,-1.25056 -2.1832,0.69779 -4.14081,1.89142 -6.17593,2.9871 -4.21706,4.76934 -8.18639,10.39866 -13.57388,12.35835 -1.92294,1.53597 -4.68187,1.38752 -6.42427,1.56556 -3.17523,1.49929 -6.0303,5.71999 -10.25413,1.05927 -0.71753,-0.67242 -1.08803,-1.79537 -1.17931,-2.88952 -2.44492,-0.27198 -4.8582,-0.24109 -7.22331,-0.265 -2.49592,-2.52948 -4.91084,-5.18137 -5.29842,-10.2787 -0.57251,-2.93616 -1.19034,-5.8172 1.73934,-8.15351 -0.63334,-3.27898 0.8596,-5.81144 3.36731,-7.9988 0.0414,-3.142308 0.47692,-6.148001 4.81868,-7.881954 -0.35575,-2.53162 0.83749,-2.644437 1.40361,-3.677788 8.67897,-0.933389 17.44184,-1.860384 33.40821,0.707292 0.76908,-0.432375 1.18909,-0.984061 2.97187,-1.064521 2.02588,0.323394 2.29331,2.593018 4.17997,2.916577 0.017,-0.122533 11.07469,-0.519229 28.23967,2.846153 22.33718,4.993821 38.1414,6.556701 50.90227,11.342701 15.98778,2.32201 35.44598,17.35468 35.9125,31.34547 0.25313,7.59105 -9.11293,16.51703 -12.98971,17.78179 -6.90871,5.56547 -44.3556,39.86919 -72.2799,58.06348 -0.7002,9.13287 -0.10078,10.74565 -2.89629,20.82773 -11.42113,-1.91438 -27.03119,-39.56658 -26.93196,-39.61942 8.12889,-3.15008 13.68165,-10.49055 19.97602,-16.62467 6.29362,-1.56423 11.88648,-5.46072 17.60239,-8.94768 24.72621,-14.49206 27.79345,-19.88621 45.07272,-33.85449 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 416.34015,137.87596 c 27.19781,0.73794 6.76862,2.55782 -8.23561,-1.90481 -12.93847,-3.90325 -22.17008,-11.8098 -32.16663,-14.92538 -27.21775,-8.48286 -35.15592,-5.52718 -35.15592,-5.52718 -4.43404,-0.99709 -8.59402,-1.23228 -8.1843,-1.25056 -2.51009,0.47312 -4.29552,1.78509 -6.17593,2.9871 -4.50142,4.17994 -8.35339,10.0525 -13.57388,12.35835 -1.86742,1.32643 -4.6509,1.27068 -6.42427,1.56556 -3.17523,1.49929 -5.84837,5.36864 -10.25413,1.05927 -0.56736,-0.68182 -0.85844,-1.80974 -1.17931,-2.88952 -2.40238,-0.47006 -4.81155,-0.45831 -7.22331,-0.265 -2.2793,-2.88904 -4.539,-5.79859 -5.29842,-10.2787 -0.26857,-2.7479 -0.67956,-5.50083 1.73934,-8.15351 -0.23326,-3.18411 1.20628,-5.72923 3.36731,-7.9988 0.31255,-3.064215 1.08954,-5.971585 4.81868,-7.881954 0.11652,-2.52493 0.88382,-2.643795 1.40361,-3.677788 8.70196,-0.809319 17.4938,-1.580034 33.40821,0.707292 0.86624,-0.406652 1.55594,-0.886827 2.97187,-1.064521 1.97166,0.503435 2.26133,2.699256 4.17997,2.916577 0,0 11.28571,-1.354883 28.23967,2.846153 21.50866,5.329651 36.63325,6.513511 50.90227,11.342701 15.63351,5.29098 29.05276,12.30963 35.49429,28.83661 3.29595,8.45637 -8.6973,18.99285 -12.5715,20.29065 -7.2367,5.35747 -46.31131,39.41941 -72.2799,58.06348 -0.96906,8.75577 -0.54078,11.07961 -3.36964,21.87094 -11.12304,-2.0731 -20.03076,-45.4356 -20.03076,-45.4356 3.13687,-5.26914 14.04976,-13.48866 22.24901,-18.61451 6.35608,-3.97357 14.1103,-5.30921 20.52656,-9.18485 11.91046,-7.19433 15.85835,-11.28231 32.82272,-25.792 z" class="skin arm" id="path3230" sodipodi:nodetypes="ccsccccccccccccccccsssccccaac"/> <path inkscape:connector-curvature="0" d="m 295.18882,129.21753 c 5.34665,-3.49364 4.94695,-6.10534 5.3092,-7.81066 -0.937,2.89145 -1.33607,3.38261 -5.3092,7.81066 z" class="shadow" id="path3234" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 300.37099,121.58603 c -4.87738,-0.98168 -4.57091,-0.48934 -6.46034,0.11744 1.79618,-0.32021 1.5622,-0.45178 6.46034,-0.11744 z" class="shadow" id="path3236" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 304.25086,124.04729 c -3.73519,-3.29389 -7.7306,-6.63208 -10.0306,-6.82802 2.14005,0.77849 6.26034,4.08751 10.0306,6.82802 z" class="shadow" id="path3242" sodipodi:nodetypes="ccc"/> @@ -345,6 +348,7 @@ <path inkscape:connector-curvature="0" d="m 296.36587,104.19814 c -3.97505,-2.90663 -6.59037,-1.31213 -8.89036,-1.50807 2.2402,0.3267 5.12011,-1.23244 8.89036,1.50807 z" class="shadow" id="path3250" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 299.03763,96.545358 c -4.03843,-2.845022 -4.24231,-1.560849 -6.5423,-1.756785 2.22279,0.451523 2.77205,-0.983725 6.5423,1.756785 z" class="shadow" id="path3252" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 415.57013,138.34367 c 4.33424,-2.83585 8.46725,1.10257 16.32437,-3.88923 -8.00202,4.48396 -11.55736,0.31819 -16.32437,3.88923 z" class="shadow" id="path3232" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 374.39025,194.40581 c -7.5496,4.35876 -14.05597,12.18841 -16.98547,15.11791 2.93435,-2.93435 11.90692,-12.18581 16.98547,-15.11791 z" class="shadow" id="path3232-3" sodipodi:nodetypes="ccc"/> </g> <g inkscape:groupmode="layer" id="Arm_Left_Low" inkscape:label="Arm_Left_Low" style="display:inline;opacity:1"> <path sodipodi:nodetypes="ccccccccccccccccccccccccccccc" id="path6856" class="shadow" d="m 376.26653,307.61106 c -2.14507,6.09632 0.95143,14.58239 5.2492,26.09205 1.87591,8.39384 1.26226,16.44062 3.6408,24.0503 3.37217,13.22418 9.98815,25.21016 12.07785,36.18157 4.14241,28.63267 6.86059,41.11676 7.02391,41.093 0.54035,5.7083 1.10863,8.61698 1.13471,8.20116 -0.72861,2.17311 -1.94979,4.11365 -3.07415,6.13307 -4.82849,4.1492 -10.51338,8.03853 -12.54906,13.39776 -1.56301,1.90103 -1.45359,4.66179 -1.65625,6.40149 -1.54405,3.15371 -5.8047,5.94881 -1.20417,10.23813 0.6622,0.72696 1.77977,1.11335 2.87256,1.22005 0.23741,2.44851 0.17236,4.86112 0.16282,7.22633 2.49394,2.53144 5.1114,4.98363 10.20275,5.44325 2.92776,0.61397 5.79979,1.27248 8.17729,-1.62387 3.26969,0.67965 5.82302,-0.77733 8.04562,-3.25386 3.14258,0.003 6.15413,-0.38994 7.94931,-4.70674 2.52633,0.39151 2.65601,-0.8 3.69726,-1.35146 1.05602,-8.6649 2.10684,-17.41379 -0.23479,-33.41487 0.44323,-0.76288 1.00078,-1.17506 1.10644,-2.95652 -0.2947,-2.03025 -0.53754,-3.92631 -0.8344,-5.81736 0.12272,-0.0153 -0.91142,-10.19582 -4.03375,-27.40667 -2.39433,-20.31058 -0.58347,-46.56592 -3.56145,-61.93369 -4.11097,-24.76433 -12.78003,-33.88061 -16.17665,-44.92823 -0.74024,-9.33448 -6.11497,-43.94368 -10.48131,-76.21312 1.72012,-16.83036 4.13085,-26.81911 -7.88563,-41.90342 -8.14189,-8.2351 -27.22056,-9.16634 -27.20662,-9.05478 2.10557,8.45982 -0.69822,17.22648 -2.08866,25.9048 2.34527,6.04617 2.38024,12.86244 2.82089,19.54348 2.09144,28.37203 6.68148,62.46708 16.82548,83.43815 z" inkscape:connector-curvature="0"/> @@ -377,8 +381,8 @@ <path sodipodi:nodetypes="ccc" id="path3171" class="shadow" d="m 262.90878,421.66979 c -2.2006,4.42272 -2.99042,3.38983 -4.92079,4.65552 1.74097,-1.45386 2.90645,-0.45223 4.92079,-4.65552 z" inkscape:connector-curvature="0"/> </g> <g inkscape:groupmode="layer" id="Arm_Stump" inkscape:label="Arm_Stump" style="display:inline"> - <path sodipodi:nodetypes="scsas" id="path1420" inkscape:connector-curvature="0" d="m 358.5887,178.95455 c 14.62279,-1.68069 26.43944,8.01522 27.2351,21.9566 -0.56595,12.09082 -14.60862,20.72368 -26.56495,23.43702 -7.62636,1.73071 -15.19855,5.71989 -18.80847,0.59021 -9.48283,-13.47506 1.76879,-44.10237 18.13832,-45.98383 z" class="shadow"/> - <path class="skin arm" d="m 358.5887,178.95455 c 11.27433,-2.97859 26.97612,10.29832 27.2351,21.9566 0.26225,11.80571 -15.58625,19.08828 -26.56495,23.43702 -5.83173,2.31 -15.19855,5.71989 -18.80847,0.59021 -9.48283,-13.47506 2.20761,-41.77507 18.13832,-45.98383 z" inkscape:connector-curvature="0" id="path62-3" sodipodi:nodetypes="aaaaa"/> + <path sodipodi:nodetypes="cccccc" id="path2735" inkscape:connector-curvature="0" d="m 358.5887,178.95455 c 11.59151,-3.04656 27.91436,10.04694 27.2351,21.9566 0.50082,10.83419 -11.72906,18.24361 -23.26882,22.09442 -0.60666,0.46821 -1.40053,13.57923 -1.6395,13.54509 0,0 -17.85326,-4.21656 -20.4651,-11.61228 -5.48693,-15.53689 2.20761,-41.77507 18.13832,-45.98383 z" class="shadow"/> + <path class="skin arm" d="m 358.5887,178.95455 c 11.27433,-2.97859 26.97612,10.29832 27.2351,21.9566 0.23694,10.66626 -12.67703,17.64036 -23.26882,22.09442 -1.1315,0.47581 -1.6395,13.54509 -1.6395,13.54509 0,0 -17.85326,-4.21656 -20.4651,-11.61228 -5.48693,-15.53689 2.20761,-41.77507 18.13832,-45.98383 z" inkscape:connector-curvature="0" id="path62-3" sodipodi:nodetypes="asscaa"/> <path sodipodi:nodetypes="ccccc" id="path1429" inkscape:connector-curvature="0" d="m 266.62049,190.96644 c 14.7851,-4.44494 28.94581,4.9963 30.24031,16.38814 1.33327,11.7331 -14.82389,22.17579 -26.56495,23.43702 -7.77555,0.83525 -18.48928,-3.87003 -20.48786,-11.43061 -2.96217,-11.75747 1.80873,-22.72825 16.8125,-28.39455 z" class="shadow"/> <path class="skin arm" d="m 266.62049,190.96644 c 11.05043,-3.05578 28.94581,4.9963 30.24031,16.38814 1.33327,11.7331 -14.82389,22.17579 -26.56495,23.43702 -7.77555,0.83525 -18.44985,-3.88056 -20.48786,-11.43061 -2.86655,-10.61946 6.21083,-25.46287 16.8125,-28.39455 z" inkscape:connector-curvature="0" id="path62-3-9" sodipodi:nodetypes="aaaaa"/> </g> @@ -540,7 +544,7 @@ </g> <g inkscape:groupmode="layer" id="Torso_" style="display:inline;opacity:1" inkscape:label="Torso_"> <g inkscape:groupmode="layer" id="Torso_Normal" style="display:inline;opacity:1" inkscape:label="Torso_Normal"> - <path sodipodi:nodetypes="ccccccccccsccccsccccccc" id="path4124" class="shadow torso" d="m 246.30911,231.06259 c -6.69233,19.28587 -3.26169,38.80526 2.84033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -12.22966,23.47896 -14.09706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 1.09074,1.42828 6.14846,2.05805 7.03175,-0.25046 l 1.13543,-0.062 c 0.0539,0.0333 5.91812,4.25115 11.3257,0.16388 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -21.65173,-54.37031 -7.45593,-62.61558 1.67566,-114.84838 -0.50349,-3.50775 -1.32308,-10.70751 -1.45375,-13.44272 -4.53544,-10.77188 -2.3443,-15.76194 -4.6441,-26.29186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.5475,-3.91931 -28.08011,3.12735 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.80032,4.30093 -13.259,4.44692 -29.51965,8.86728 -10.04843,13.94881 -16.38873,17.64107 -24.82836,40.21314 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccccccccccsccccsccccccc" id="path4124" class="shadow torso" d="m 246.30911,231.06259 c -6.69233,19.28587 -3.26169,38.80526 2.84033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -12.22966,23.47896 -14.09706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 1.09074,1.42828 6.14846,2.05805 7.03175,-0.25046 l 1.13543,-0.062 c 0.0539,0.0333 5.91812,4.25115 11.3257,0.16388 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -21.65173,-54.37031 -7.45593,-62.61558 1.67566,-114.84838 -1.67464,-1.5853 -2.26058,-10.45751 -2.39125,-13.19272 -4.53544,-10.77188 -1.4068,-16.01194 -3.7066,-26.54186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.5475,-3.91931 -28.08011,3.12735 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.80032,4.30093 -13.259,4.44692 -29.51965,8.86728 -10.04843,13.94881 -16.38873,17.64107 -24.82836,40.21314 z" inkscape:connector-curvature="0"/> <path d="m 346.40754,176.85218 c -7.39171,-1.56131 -16.05125,-2.2441 -15.85743,-30.61093 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -3.83498,2.97182 -5.98014,3.47675 -13.82076,5.20414 -34.91738,8.73668 29.00804,37.23957 59.48279,-10.24576 z" id="path1544" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc" class="skin neck"/> <path d="m 286.20117,187.34375 c -4.00254,0.89821 -7.97398,1.70521 -15.05469,3.49023 -8.65971,10.94361 -15.77788,17.65645 -24.83789,40.22852 -5.87551,18.9358 -2.9645,38.67948 2.8418,56.00977 -1.06764,11.32585 -1.52592,26.55771 1,35.50195 -11.37059,21.52353 -11.89766,23.525 -14.09766,43.625 -1.1,10.1 -2.23134,20.37109 -6.00781,40.87109 1.79918,21.68192 24.06434,28.08621 33.55274,33.19727 14.43169,10.04215 15.75568,13.80686 22.99414,21.73047 0.78119,0.55861 4.78693,1.49428 7.05664,-0.26758 l 1.14258,-0.0781 c 1.51181,1.59807 9.57688,1.45961 11.29101,0.17774 1.25908,-5.51105 3.06526,-22.40357 25.5332,-37.0293 9.99479,-6.9207 28.66489,-25.38486 47.28125,-34.05664 -9.1,-20.7 -12.62221,-28.06668 -19.58398,-39.49609 -23.58113,-57.47054 -9.98057,-57.2743 1.61523,-114.68555 -0.3269,-2.17434 -0.47181,-3.26841 -0.6582,-5.75 -1.66961,-10.3676 -2.48045,-23.52968 -5.33008,-34.10742 0.025,-10.96207 3.83399,-17.95313 3.83399,-17.95313 -4.46119,-1.08058 -8.63009,-1.32686 -12.38867,-1.86914 -20.45084,30.32024 -80.12449,19.33623 -60.1836,10.46094 z" id="path1566" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccccccc" class="skin torso"/> <path style="fill:#ff0000" d="m 296.58398,149.81836 -0.0684,0.008 c -0.004,0.0796 0.0172,0.15299 0.0137,0.23242 0.007,-0.0902 0.0493,-0.14839 0.0547,-0.24023 z" id="path1564" inkscape:connector-curvature="0"/> @@ -557,15 +561,15 @@ <path inkscape:connector-curvature="0" d="m 263.39362,428.05063 c 4.93342,11.09 6.0119,9.64861 9.01587,19.24572 -4.27593,-11.17721 -5.63781,-9.95798 -9.01587,-19.24572 z" class="muscle_tone" id="XMLID_590_-04-8-5-87-5-2" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 331.83474,309.96831 c -1.2483,3.29428 -1.95746,4.93254 -3.52279,9.12572 0.95249,-4.27451 1.65215,-6.1206 3.52279,-9.12572 z" class="muscle_tone" id="XMLID_590_-04-8-5-2" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 250.08235,322.46839 c 1.2483,3.29428 0.64496,1.83879 2.21029,6.03197 -0.95249,-4.27451 -0.33965,-3.02685 -2.21029,-6.03197 z" class="muscle_tone" id="XMLID_590_-04-8-5-2-4" sodipodi:nodetypes="ccc"/> - <path inkscape:connector-curvature="0" d="m 361.02638,237.18777 c -0.94326,-8.05772 -0.78056,-23.30289 -4.75812,-32.08391 2.09688,6.60791 3.01744,21.31058 4.75812,32.08391 z" class="shadow" id="XMLID_590_-04-8-9-4" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 276.99339,346.1357 c 0.48219,-2.95995 0.50103,-5.52426 -0.57274,-9.24552 l -0.0242,0.001 c -0.78458,4.82879 -0.38541,6.45786 0.59697,9.24433 z" class="shadow belly_details" id="path1444" sodipodi:nodetypes="ccccc"/> <path sodipodi:nodetypes="cccccc" id="path1446" class="muscle_tone belly_details" d="m 276.42065,336.89018 c -2.33392,-7.76332 -1.51834,-23.53988 0.81606,-35.04811 -1.74332,-2.38988 -4.44237,-24.92087 -1.47199,-27.6049 -3.61369,4.2787 -0.75808,24.51323 1.47338,27.60765 -2.61353,11.47022 -3.33983,26.27713 -0.84168,35.04655 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 334.35262,257.79054 c 18.3821,-10.6129 18.87632,-45.89411 23.20514,-48.39336 -5.22768,3.0182 -6.34343,38.65826 -23.20514,48.39336 z" class="shadow" id="path2549" sodipodi:nodetypes="ccc"/> </g> <g inkscape:groupmode="layer" id="Torso_Hourglass" style="display:inline;opacity:1" inkscape:label="Torso_Hourglass"> <path style="display:inline;opacity:1;fill:#ff0000" d="m 330.46094,146.33008 -33.94532,3.49609 c -0.60023,11.74644 4.71069,22.2221 4.14063,32.15625 -3.38126,2.62022 -7.80518,3.85567 -13.92187,5.23828 -2.12717,0.53863 -3.90301,1.14812 -5.31836,1.8125 -1.44243,0.67709 -2.53172,1.40659 -3.29883,2.16797 -0.76711,0.76138 -1.21275,1.5546 -1.36914,2.35352 -0.1564,0.79891 -0.0225,1.60483 0.36718,2.39453 0.38973,0.78969 1.035,1.56315 1.90625,2.29687 0.87126,0.73373 1.96768,1.42761 3.25586,2.0586 1.28819,0.63099 2.76769,1.19818 4.40821,1.67969 1.64051,0.4815 3.44284,0.87684 5.37109,1.1621 1.92825,0.28527 3.98337,0.46164 6.13477,0.50391 2.15139,0.0423 4.39904,-0.0494 6.70898,-0.29687 2.30994,-0.24748 4.68205,-0.65235 7.08594,-1.23633 2.40388,-0.58398 4.83825,-1.34721 7.27148,-2.31446 2.43324,-0.96724 4.86569,-2.13789 7.26367,-3.53515 2.39799,-1.39726 4.76241,-3.02051 7.06055,-4.89453 2.29815,-1.87403 4.53036,-3.99893 6.66406,-6.39649 2.13371,-2.39755 4.1676,-5.06732 6.07227,-8.03515 -0.0465,-0.0259 -0.0648,-0.0634 -0.10938,-0.0898 -9.4165,-1.39251 -15.92222,-5.03012 -15.74804,-30.52148 z" id="path1104" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 246.30911,231.06259 c -6.69233,19.28587 -3.26169,38.80526 2.84033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -12.22966,23.47896 -14.09706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 0.89599,1.18481 5.48384,2.32551 7.03956,-0.25046 l 1.10418,-0.062 c 0.0578,0.0417 5.51012,4.26247 11.34914,0.16388 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -2.78089,-8.8422 -20.01148,-25.04261 -20.57655,-24.78256 0.41299,-0.50348 -6.8269,-13.62863 -7.45206,-15.85983 2.68681,-6.22178 7.5538,-32.80103 8.07452,-32.87542 14.92551,-15.90852 19.20209,-32.18261 21.62975,-41.33057 -0.50349,-3.50775 -1.32308,-10.70751 -1.45375,-13.44272 -4.53544,-10.77188 -2.3443,-15.76194 -4.6441,-26.29186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.5475,-3.91931 -28.08011,3.12735 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.80032,4.30093 -13.259,4.44692 -29.51965,8.86728 -10.04843,13.94881 -16.38873,17.64107 -24.82836,40.21314 z" class="shadow torso" id="path1102" sodipodi:nodetypes="ccccccccccscccccccsccccccc"/> + <path inkscape:connector-curvature="0" d="m 246.30911,231.06259 c -6.69233,19.28587 -3.26169,38.80526 2.84033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -12.22966,23.47896 -14.09706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 0.89599,1.18481 5.48384,2.32551 7.03956,-0.25046 l 1.10418,-0.062 c 0.0578,0.0417 5.51012,4.26247 11.34914,0.16388 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -2.78089,-8.8422 -20.01148,-25.04261 -20.57655,-24.78256 0.41299,-0.50348 -6.8269,-13.62863 -7.45206,-15.85983 2.68681,-6.22178 7.5538,-32.80103 8.07452,-32.87542 14.92551,-15.90852 19.20209,-32.18261 21.62975,-41.33057 -1.58625,-1.51901 -2.19808,-10.70751 -2.32875,-13.44272 -4.53544,-10.77188 -1.4693,-15.76194 -3.7691,-26.29186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.20009,-4.26672 -28.06149,3.10873 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.01907,3.61343 -17.66525,5.91567 -29.51965,8.86728 -8.36905,13.10912 -16.38873,17.64107 -24.82836,40.21314 z" class="shadow torso" id="path1102" sodipodi:nodetypes="ccccccccccscccccccsccccccc"/> <path class="skin neck" sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" id="path1541" d="m 346.40754,176.85218 c -7.39171,-1.56131 -16.05125,-2.2441 -15.85743,-30.61093 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -3.83498,2.97182 -5.98014,3.47675 -13.82076,5.20414 -34.91738,8.73668 29.00804,37.23957 59.48279,-10.24576 z"/> - <path d="m 346.20898,176.85156 c 0.0446,0.0265 0.0629,0.064 0.10938,0.0898 -29.49173,35.69478 -78.90476,13.79456 -59.58398,10.27929 -4.05962,0.91764 -8.25647,1.76506 -15.5879,3.61328 -8.65971,10.94361 -15.77788,17.65645 -24.83789,40.22852 -5.87551,18.9358 -2.9645,38.67948 2.8418,56.00977 -1.06764,11.32585 -1.52592,26.55771 1,35.50195 -11.37059,21.52353 -11.89766,23.525 -14.09766,43.625 -1.1,10.1 -2.23134,20.37109 -6.00781,40.87109 1.79918,21.68192 24.06434,28.08621 33.55274,33.19727 14.43169,10.04215 15.75568,13.80686 22.99414,21.73047 1.37693,0.26708 4.09368,1.61095 7.06445,-0.26758 l 1.11133,-0.0781 c 1.17404,1.57274 8.90177,1.53055 11.31445,0.17774 1.25908,-5.51105 3.06526,-22.40357 25.5332,-37.0293 9.99479,-6.9207 28.66489,-25.38486 47.28125,-34.05664 -9.1,-20.7 -12.62221,-28.06668 -19.58398,-39.49609 -3.8841,-8.49646 -20.35167,-24.94928 -20.57812,-24.78321 0.17394,-0.53763 -7.38366,-13.70783 -7.45118,-15.85937 2.56898,-6.32141 6.52259,-31.00027 8.07422,-32.87695 13.06864,-15.80638 16.79573,-26.30873 21.57031,-41.16602 -0.3269,-2.17434 -0.47181,-3.26841 -0.6582,-5.75 -1.66961,-10.3676 -2.48045,-23.52968 -5.33008,-34.10742 0.025,-10.96207 3.83399,-17.95313 3.83399,-17.95313 -4.53269,-1.09789 -8.76087,-1.33791 -12.56446,-1.90039 z" id="path1557" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccccscccccc" class="skin torso"/> + <path d="m 346.20898,176.85156 c 0.0446,0.0265 0.0629,0.064 0.10938,0.0898 -29.49173,35.69478 -78.90476,13.79456 -59.58398,10.27929 -4.05962,0.91764 -8.25647,1.76506 -15.5879,3.61328 -8.65971,10.94361 -15.77788,17.65645 -24.83789,40.22852 -5.87551,18.9358 -2.9645,38.67948 2.8418,56.00977 -1.06764,11.32585 -1.52592,26.55771 1,35.50195 -11.37059,21.52353 -11.89766,23.525 -14.09766,43.625 -1.1,10.1 -2.23134,20.37109 -6.00781,40.87109 1.79918,21.68192 24.06434,28.08621 33.55274,33.19727 14.43169,10.04215 15.75568,13.80686 22.99414,21.73047 1.37693,0.26708 4.09368,1.61095 7.06445,-0.26758 l 1.11133,-0.0781 c 1.17404,1.57274 8.90177,1.53055 11.31445,0.17774 1.25908,-5.51105 3.06526,-22.40357 25.5332,-37.0293 9.99479,-6.9207 28.66489,-25.38486 47.28125,-34.05664 -9.1,-20.7 -12.62221,-28.06668 -19.58398,-39.49609 -3.8841,-8.49646 -20.35167,-24.94928 -20.57812,-24.78321 0.17394,-0.53763 -7.38366,-13.70783 -7.45118,-15.85937 2.56898,-6.32141 6.52259,-31.00027 8.07422,-32.87695 3.11188,-3.76379 5.6941,-7.22684 7.88691,-10.51955 7.0161,-10.53536 10.04573,-19.32697 13.6834,-30.64647 -0.3269,-2.17434 -0.47181,-3.26841 -0.6582,-5.75 -1.66961,-10.3676 -2.48045,-23.52968 -5.33008,-34.10742 0.025,-10.96207 3.83399,-17.95313 3.83399,-17.95313 -4.53269,-1.09789 -8.76087,-1.33791 -12.56446,-1.90039 z" id="path1557" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccccsscccccc" class="skin torso"/> <path sodipodi:nodetypes="ccccc" id="path1106" class="shadow belly_details" d="m 276.99339,346.1357 c 0.48219,-2.95995 0.50103,-5.52426 -0.57274,-9.24552 l -0.0242,0.001 c -0.78458,4.82879 -0.38541,6.45786 0.59697,9.24433 z" inkscape:connector-curvature="0"/> <path sodipodi:nodetypes="ccc" id="path1108" class="muscle_tone" d="m 317.3521,285.5361 c -7.46191,11.4761 -10.89652,37.14512 -11.1397,41.11412 2.81194,-18.56341 5.72671,-31.01778 11.1397,-41.11412 z" inkscape:connector-curvature="0"/> <path sodipodi:nodetypes="ccc" id="path1110" class="muscle_tone" d="m 333.64545,368.51096 c -5.87092,10.37125 -20.05508,16.48024 -27.5903,38.1711 8.55718,-28.02096 20.05599,-25.82086 27.5903,-38.1711 z" inkscape:connector-curvature="0"/> @@ -579,11 +583,11 @@ <path sodipodi:nodetypes="ccc" id="path1126" class="muscle_tone" d="m 263.39362,428.05063 c 4.93342,11.09 6.0119,9.64861 9.01587,19.24572 -4.27593,-11.17721 -5.63781,-9.95798 -9.01587,-19.24572 z" inkscape:connector-curvature="0"/> <path sodipodi:nodetypes="ccc" id="path1128" class="muscle_tone" d="m 331.83474,309.96831 c -1.2483,3.29428 -1.95746,4.93254 -3.52279,9.12572 0.95249,-4.27451 1.65215,-6.1206 3.52279,-9.12572 z" inkscape:connector-curvature="0"/> <path sodipodi:nodetypes="ccc" id="path1130" class="muscle_tone" d="m 250.08235,322.46839 c 1.2483,3.29428 0.64496,1.83879 2.21029,6.03197 -0.95249,-4.27451 -0.33965,-3.02685 -2.21029,-6.03197 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="path1132" class="shadow" d="m 361.02638,237.18777 c -0.94326,-8.05772 -0.78056,-23.30289 -4.75812,-32.08391 2.09688,6.60791 3.01744,21.31058 4.75812,32.08391 z" inkscape:connector-curvature="0"/> <path inkscape:connector-curvature="0" d="m 276.42065,336.89018 c -2.33392,-7.76332 -1.51834,-23.53988 0.81606,-35.04811 -1.74332,-2.38988 -4.44237,-24.92087 -1.47199,-27.6049 -3.61369,4.2787 -0.75808,24.51323 1.47338,27.60765 -2.61353,11.47022 -3.33983,26.27713 -0.84168,35.04655 z" class="muscle_tone belly_details" id="path1440" sodipodi:nodetypes="cccccc"/> + <path inkscape:connector-curvature="0" d="m 334.35262,257.79054 c 18.3821,-10.6129 18.87632,-45.89411 23.20514,-48.39336 -5.22768,3.0182 -6.34343,38.65826 -23.20514,48.39336 z" class="shadow" id="path3232-0" sodipodi:nodetypes="ccc"/> </g> - <g inkscape:groupmode="layer" id="Torso_Unnatural" style="display:inline" inkscape:label="Torso_Unnatural"> - <path sodipodi:nodetypes="ccccccccccscccccccsccccccc" id="path1150" class="shadow torso" d="m 246.30911,231.06259 c -8.99453,20.02062 -2.7168,39.82817 6.59033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -15.97966,23.47896 -17.84706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 3.60245,2.72059 6.88662,0.53559 7.11408,-0.30205 l 1.02256,-0.0126 c 0.0456,0.48907 6.30075,4.01813 11.35624,0.16606 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -2.78089,-8.8422 -20.01148,-25.04261 -20.57655,-24.78256 0.41299,-0.50348 -12.21859,-13.62863 -12.84375,-15.85983 2.68681,-6.22178 7.5538,-32.80103 8.07452,-32.87542 19.23508,-11.98202 24.99543,-31.81666 27.02144,-41.33057 -0.50349,-3.50775 -1.32308,-10.70751 -1.45375,-13.44272 -4.53544,-10.77188 -2.3443,-15.76194 -4.6441,-26.29186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.5475,-3.91931 -28.08011,3.12735 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.80032,4.30093 -13.259,4.44692 -29.51965,8.86728 -10.04843,13.94881 -16.38873,17.64107 -24.82836,40.21314 z" inkscape:connector-curvature="0"/> + <g inkscape:groupmode="layer" id="Torso_Unnatural" style="display:inline;opacity:1" inkscape:label="Torso_Unnatural"> + <path sodipodi:nodetypes="ccccccccccscccccccsccccccc" id="path1150" class="shadow torso" d="m 246.30911,231.06259 c -8.99453,20.02062 -2.7168,39.82817 6.59033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -15.97966,23.47896 -17.84706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 3.60245,2.72059 6.88662,0.53559 7.11408,-0.30205 l 1.02256,-0.0126 c 0.0456,0.48907 6.30075,4.01813 11.35624,0.16606 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -2.78089,-8.8422 -20.01148,-25.04261 -20.57655,-24.78256 0.41299,-0.50348 -12.21859,-13.62863 -12.84375,-15.85983 2.68681,-6.22178 7.5538,-32.80103 8.07452,-32.87542 19.23508,-11.98202 24.99543,-31.81666 27.02144,-41.33057 -2.30037,-2.67962 -2.96371,-10.70751 -3.09438,-13.44272 -4.53544,-10.77188 -0.70367,-15.76194 -3.00347,-26.29186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.5475,-3.91931 -28.08011,3.12735 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.80032,4.30093 -13.259,4.44692 -29.51965,8.86728 -10.04843,13.94881 -16.38873,17.64107 -24.82836,40.21314 z" inkscape:connector-curvature="0"/> <path d="m 346.40754,176.85218 c -7.39171,-1.56131 -16.05125,-2.2441 -15.85743,-30.61093 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -3.83498,2.97182 -5.98014,3.47675 -13.82076,5.20414 -34.91738,8.73668 29.00804,37.23957 59.48279,-10.24576 z" id="path1510" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc" class="skin neck"/> <path d="m 286.83636,187.18633 c -3.66048,0.80645 -9.84112,2.17312 -15.69027,3.64767 -8.65971,10.94361 -15.77697,17.65654 -24.83698,40.22861 v -2e-5 c -7.97663,19.22419 -2.76769,39.20032 6.84033,56.00881 -1.06764,11.32585 -1.52536,26.55789 1.00056,35.50213 C 242.77941,344.09706 238.25294,346.1 236.05294,366.2 c -1.1,10.1 -2.23235,20.37059 -6.00882,40.87059 1.79918,21.68192 24.06603,28.08577 33.55443,33.19683 14.43169,10.04215 15.75456,13.80608 22.99302,21.72969 2.40278,1.2769 6.48126,0.50828 7.11501,-0.33224 l 1.04511,-0.0119 c 1.31243,1.17872 7.86774,1.71281 11.33041,0.17649 1.25908,-5.51105 3.06465,-22.40272 25.53259,-37.02845 9.99479,-6.9207 28.66527,-25.38509 47.28163,-34.05687 -9.1,-20.7 -12.62279,-28.06765 -19.58456,-39.49706 -3.8841,-8.49646 -20.35009,-24.94863 -20.57655,-24.78256 0.17394,-0.53763 -12.86462,-13.70829 -12.93214,-15.85983 2.56898,-6.32141 6.07307,-31.48845 8.07452,-32.87542 17.10876,-11.85604 23.08362,-25.52016 27.05018,-41.16751 -0.3269,-2.17434 -0.47207,-3.26685 -0.65846,-5.74844 -1.66961,-10.3676 -2.47994,-23.531 -5.32957,-34.10874 0.025,-10.96207 3.83428,-17.95261 3.83428,-17.95261 -3.26688,-0.7913 -9.53184,-1.48469 -12.45487,-1.8114 -33.85358,35.49387 -77.52547,14.10408 -59.48279,10.24576 z" id="path1152" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccccccc" class="skin torso"/> <path inkscape:connector-curvature="0" d="m 317.3521,285.5361 c -7.46191,11.4761 -10.89652,37.14512 -11.1397,41.11412 2.81194,-18.56341 5.72671,-31.01778 11.1397,-41.11412 z" class="muscle_tone" id="path1156" sodipodi:nodetypes="ccc"/> @@ -598,11 +602,17 @@ <path inkscape:connector-curvature="0" d="m 263.39362,428.05063 c 4.93342,11.09 6.0119,9.64861 9.01587,19.24572 -4.27593,-11.17721 -5.63781,-9.95798 -9.01587,-19.24572 z" class="muscle_tone" id="path1174" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 325.9149,310.57121 c -1.2483,3.29428 -1.95746,4.93254 -3.52279,9.12572 0.95249,-4.27451 1.65215,-6.1206 3.52279,-9.12572 z" class="muscle_tone" id="path1176" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 254.14485,322.53089 c 1.2483,3.29428 0.64496,1.83879 2.21029,6.03197 -0.95249,-4.27451 -0.33965,-3.02685 -2.21029,-6.03197 z" class="muscle_tone" id="path1178" sodipodi:nodetypes="ccc"/> - <path inkscape:connector-curvature="0" d="m 361.02638,237.18777 c -0.94326,-8.05772 -0.78056,-23.30289 -4.75812,-32.08391 2.09688,6.60791 3.01744,21.31058 4.75812,32.08391 z" class="shadow" id="path1180" sodipodi:nodetypes="ccc"/> <path inkscape:connector-curvature="0" d="m 276.99339,346.1357 c 0.48219,-2.95995 0.50103,-5.52426 -0.57274,-9.24552 l -0.0242,0.001 c -0.78458,4.82879 -0.38541,6.45786 0.59697,9.24433 z" class="shadow belly_details" id="path1454" sodipodi:nodetypes="ccccc"/> <path sodipodi:nodetypes="cccccc" id="path1459" class="muscle_tone belly_details" d="m 276.42065,336.89018 c -2.33392,-7.76332 -1.51834,-23.53988 0.81606,-35.04811 -1.74332,-2.38988 -4.44237,-24.92087 -1.47199,-27.6049 -3.61369,4.2787 -0.75808,24.51323 1.47338,27.60765 -2.61353,11.47022 -3.33983,26.27713 -0.84168,35.04655 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="path2543" class="shadow" d="m 334.35262,257.79054 c 18.3821,-10.6129 18.87632,-45.89411 23.20514,-48.39336 -5.22768,3.0182 -6.34343,38.65826 -23.20514,48.39336 z" inkscape:connector-curvature="0"/> </g> </g> + <g inkscape:groupmode="layer" id="Clavicle" style="display:inline" inkscape:label="Clavicle" sodipodi:insensitive="true"> + <path inkscape:connector-curvature="0" d="m 309.9875,184.0875 c 14.75,-2.5125 17.4,-1.9875 45.45,-5.375 -27.27187,3.9625 -35,4.3375 -45.45,5.375 z" class="shadow" id="XMLID_511_" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 297.39343,185.90351 c -10.35625,0.46563 -15.06859,3.45066 -23.39359,4.91628 7.69063,-2.24062 15.15922,-4.91628 23.39359,-4.91628 z" class="shadow" id="XMLID_546_" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 313.8375,183.4375 c 10.06542,-14.75429 4.91406,-12.50942 11.3875,-27.5625 -4.64445,12.75714 -1.92662,15.28512 -11.3875,27.5625 z" class="shadow" id="XMLID_511_-1" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 302.62124,184.29159 c -0.67705,-3.9108 -0.64175,-6.21768 -2.35616,-8.91389 1.38684,2.4846 1.37673,4.45479 2.35616,8.91389 z" class="shadow" id="XMLID_511_-1-8" sodipodi:nodetypes="ccc"/> + </g> <g inkscape:groupmode="layer" id="Torso_Highlights_" inkscape:label="Torso_Highlights_" style="display:inline"> <g inkscape:groupmode="layer" id="Torso_Highlights2" inkscape:label="Torso_Highlights2" style="display:inline"> <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4-2-3-9-9-9-7-5-8" class="highlight2" d="m 290.78031,289.8987 c 1.16217,7.94032 -1.53798,16.12237 -2.63519,17.25859 -0.1441,-1.51113 -0.50096,-11.78223 2.63519,-17.25859 z" inkscape:connector-curvature="0"/> @@ -671,47 +681,53 @@ </g> </g> <g inkscape:groupmode="layer" id="Torso_Outfit_Maid_" inkscape:label="Torso_Outfit_Maid_" style="display:inline;opacity:1"> - <g inkscape:groupmode="layer" id="Torso_Outfit_Maid_Hourglass" inkscape:label="Torso_Outfit_Maid_Hourglass" style="display:inline;opacity:1"> - <path inkscape:connector-curvature="0" d="m 359.85539,224.47865 c 0,0 0.28252,2.9195 1.13622,14.01358 0.60333,0.24133 -4.66387,31.43722 -21.44276,39.64844 -2.60991,13.16972 -4.10758,40.46738 -4.54391,40.39466 0,0 2.60164,5.12801 3.8029,7.55426 25.41094,14.16919 46.24345,42.44329 56.43292,71.31194 19.15995,38.96952 18.59152,124.9406 17.21147,125.13775 -69.91487,-25.57972 -163.41142,29.15618 -232.75934,-4.27387 -0.6629,0 4.43678,-75.76419 20.06445,-110.96586 8.85721,-31.27651 35.22168,-60.19855 50.2411,-84.26 -5.31056,-13.48953 -3.00269,-25.08718 -1.37108,-35.87779 -10.20434,-15.27731 -9.37658,-29.5504 -6.26329,-44.46892 1.91023,-12.81128 7.57872,-19.40372 7.03791,-19.59657 44.12648,12.49268 110.45341,1.38238 110.45341,1.38238 z" id="path1322" sodipodi:nodetypes="cccccccccccccc" class="shadow"/> - <path style="display:inline;opacity:1;fill:#333333" sodipodi:nodetypes="cccccaccaccacc" id="path1108-7" d="m 359.85539,224.47865 c 0,0 0.28252,2.9195 1.13622,14.01358 0,0 -5.70201,31.02196 -21.44276,39.64844 -4.05461,12.92894 -4.54391,40.39466 -4.54391,40.39466 0,0 2.60164,5.12801 3.8029,7.55426 23.94861,15.0158 44.54286,43.42784 56.43292,71.31194 16.51533,38.7311 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.88371,-75.76419 20.06445,-110.96586 11.46675,-30.62413 36.51387,-59.8755 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -9.41353,-15.3492 -7.79397,-29.57811 -6.26329,-44.46892 0.70972,-6.9043 7.03791,-19.59657 7.03791,-19.59657 44.12648,12.49268 110.45341,1.38238 110.45341,1.38238 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc" id="path1251" class="shadow" d="m 318.99599,327.6899 c 0.0644,-0.16109 8.65228,0.56099 9.61497,4.49727 1.3512,2.8737 -3.34911,7.53093 -3.47797,7.44163 -0.0771,-0.15425 8.84757,-0.64052 10.11034,3.2164 1.02068,3.07865 -5.38909,6.92467 -5.44926,6.82438 0.23172,-0.20855 10.82387,0.0205 11.58201,4.44743 1.38783,4.11242 -6.22864,10.32292 -6.27664,10.17893 0.21991,-0.13745 8.43834,1.21248 9.01294,4.71968 1.2288,3.81779 -4.96917,9.64522 -5.03752,9.48573 0.21257,-0.13285 10.58372,2.34604 11.07464,6.85972 1.25518,3.94064 -6.04041,9.4479 -6.21547,9.33849 0.13515,-0.11263 11.08656,2.58112 11.93526,7.39163 1.71015,4.99964 -7.00879,13.22784 -7.21484,13.15057 0.0942,-0.0157 9.93077,7.19801 9.34405,12.44107 0.10908,5.19779 -9.69913,10.99968 -9.76212,10.93669 0.18533,-0.0824 11.15376,9.91714 7.63971,14.84338 -2.61785,4.65478 -15.08597,-0.32502 -15.15239,-0.59071 0.33431,-0.16715 5.3952,17.15578 -0.85713,21.87287 -6.50245,5.00033 -23.38239,-4.72464 -23.02204,-4.94986 0.22183,0.0246 -1.66191,12.7012 -7.19718,14.88791 -5.5687,2.47972 -16.74854,-6.17807 -16.74854,-6.48015 0.21345,0.4269 -5.07562,9.91879 -10.03403,10.20801 -5.55297,0.42338 -12.95531,-7.17693 -12.56583,-7.44005 0.36032,0.1488 -7.16402,7.27921 -12.8887,6.95808 -4.83568,-0.14563 -10.74277,-8.48059 -10.58851,-8.67342 0.22444,0.19238 -9.22718,7.16136 -14.53666,4.80368 -4.70766,-1.85637 -6.31717,-11.27134 -6.13011,-11.24256 -0.0365,0.3281 -13.14523,5.45055 -17.62156,1.26353 -4.51529,-3.20565 -1.84094,-15.18727 -1.6627,-15.20509 -0.17088,0.0854 -9.60707,-4.8907 -10.3417,-9.69215 -1.57318,-4.62814 3.84701,-13.41306 4.19582,-13.29679 -0.18367,0.0459 -4.13228,-7.96382 -2.49807,-11.98279 0.67111,-3.66494 7.4073,-7.52683 7.53174,-7.42313 -0.10889,0.0545 -2.35187,-7.48617 -0.57345,-11.08065 0.97955,-3.46808 7.81374,-7.23036 7.98116,-7.15861 -0.16474,0.0412 -1.76219,-6.06944 -0.0618,-8.87421 0.86706,-2.57827 5.32018,-4.74225 5.36859,-4.54861 -0.31509,0.0788 -1.63297,-5.0224 -0.33716,-7.38269 1.06746,-2.94953 5.90428,-5.607 5.87412,-5.30544 -0.0593,0 0.14909,-4.63491 1.73435,-6.67977 1.09199,-2.83818 5.23059,-6.49208 5.30213,-6.32515 -0.13193,0.0495 1.90625,-6.4612 4.21952,-9.6367 1.30133,-2.92237 6.34678,-7.9651 6.48509,-7.9651 -0.0721,0.009 1.17726,-4.6058 3.03344,-6.74429 1.47439,-2.92429 5.62888,-6.48189 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 318.99599,327.6899 c 0,0 8.40821,1.17117 9.61497,4.49727 0.93385,2.57392 -3.47797,7.44163 -3.47797,7.44163 0,0 9.08388,-0.1679 10.11034,3.2164 0.84491,2.78571 -5.44926,6.82438 -5.44926,6.82438 0,0 10.25836,0.52946 11.58201,4.44743 1.27585,3.77649 -6.27664,10.17893 -6.27664,10.17893 0,0 8.01039,1.47995 9.01294,4.71968 1.05837,3.42011 -5.03752,9.48573 -5.03752,9.48573 0,0 10.15037,2.61688 11.07464,6.85972 0.7959,3.65359 -6.21547,9.33849 -6.21547,9.33849 0,0 10.74466,2.86604 11.93526,7.39163 1.2721,4.83537 -7.21484,13.15057 -7.21484,13.15057 0,0 9.56319,7.25927 9.34405,12.44107 -0.20647,4.88224 -9.76212,10.93669 -9.76212,10.93669 0,0 10.62954,10.15013 7.63971,14.84338 -2.71578,4.26308 -15.15239,-0.59071 -15.15239,-0.59071 0,0 4.90743,17.39967 -0.85713,21.87287 -6.20132,4.81212 -23.02204,-4.94986 -23.02204,-4.94986 0,0 -2.06947,12.86558 -7.19718,14.88791 -5.5687,2.19626 -16.74854,-6.48015 -16.74854,-6.48015 0,0 -5.30284,9.59088 -10.03403,10.20801 -4.82685,0.62961 -12.56583,-7.44005 -12.56583,-7.44005 0,0 -8.02869,7.4243 -12.8887,6.95808 -4.54161,-0.43568 -10.58851,-8.67342 -10.58851,-8.67342 0,0 -9.79032,6.67867 -14.53666,4.80368 -3.96987,-1.56825 -6.13011,-11.24256 -6.13011,-11.24256 0,0 -13.0991,5.03539 -17.62156,1.26353 -3.9155,-3.26563 -1.6627,-15.20509 -1.6627,-15.20509 0,0 -9.14506,-5.1217 -10.3417,-9.69215 -1.17719,-4.49614 4.19582,-13.29679 4.19582,-13.29679 0,0 -3.67873,-8.07721 -2.49807,-11.98279 1.02002,-3.37418 7.53174,-7.42313 7.53174,-7.42313 0,0 -1.99319,-7.66551 -0.57345,-11.08065 1.37185,-3.29995 7.98116,-7.15861 7.98116,-7.15861 0,0 -1.29621,-6.18593 -0.0618,-8.87421 0.97875,-2.13151 5.36859,-4.54861 5.36859,-4.54861 0,0 -1.28579,-5.1092 -0.33716,-7.38269 1.01601,-2.43499 5.87412,-5.30544 5.87412,-5.30544 0,0 0.68057,-4.63491 1.73435,-6.67977 1.26026,-2.44554 5.30213,-6.32515 5.30213,-6.32515 0,0 2.39255,-6.64356 4.21952,-9.6367 1.78378,-2.92237 6.48509,-7.9651 6.48509,-7.9651 0,0 1.69989,-4.67113 3.03344,-6.74429 1.54055,-2.39498 5.63667,-6.41957 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" id="path1249" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacaccc" style="display:inline;opacity:1;fill:#ffffff"/> - <path inkscape:connector-curvature="0" d="m 317.3515,327.6899 c 0.22023,-0.0832 13.95193,22.40956 15.51755,35.27419 7.4167,28.20029 26.15374,64.2233 5.41963,85.35354 -32.97758,33.60762 -95.87299,40.63263 -128.98295,5.78454 -16.72652,-17.60459 0.50361,-47.60411 11.1802,-71.36249 6.48324,-18.97334 29.03428,-54.79411 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" class="shadow" id="path1244" sodipodi:nodetypes="ccssccc"/> - <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="caaaacc" id="path1108-7-2" d="m 317.3515,327.6899 c 0,0 12.47759,22.79358 15.51755,35.27419 6.74669,27.69865 24.45833,64.13418 5.41963,85.35354 -28.74158,32.03359 -100.27917,37.85201 -128.98295,5.78454 -16.05853,-17.94037 3.26025,-48.62468 11.1802,-71.36249 6.85399,-19.67747 30.78578,-54.40455 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" id="path1282" class="shadow" d="m 318.00391,325.73755 c 0.1662,-0.0684 8.0406,-11.7618 5.42961,-17.15483 -0.9984,-4.15898 -9.59497,-7.10148 -9.61975,-7.06183 0.0569,0.0797 10.47717,-4.52675 10.06153,-9.41841 -0.0685,-4.77393 -10.54117,-8.39289 -10.58006,-8.30214 -0.0526,0.16819 10.25564,-4.52608 11.12513,-10.21762 1.02638,-5.3714 -8.5072,-13.50589 -8.61202,-13.47969 -0.0119,0.17826 11.09595,-3.22828 11.88153,-8.72903 1.155,-4.5223 -7.71736,-10.81305 -7.91075,-10.7647 -0.18835,0.18835 9.25517,-0.42186 11.47755,-4.98693 1.84787,-4.00611 -4.81901,-11.58557 -4.96824,-11.52961 -0.01,0.12732 7.55069,-1.24244 9.10324,-4.91711 1.82315,-3.08035 -1.62605,-9.99671 -1.71582,-9.98549 0.0825,0.0367 5.16407,-1.94852 5.15369,-4.3377 0.60501,-1.54914 -2.18836,-3.99091 -2.28908,-3.97832 0.0908,0.10897 4.0678,-0.15226 4.79507,-1.82593 1.06341,-1.36941 -0.21991,-4.6138 -0.31935,-4.58065 0,0.11423 4.17524,-0.0769 5.19792,-1.9502 0.99558,-1.00322 -0.0412,-3.85994 -0.15909,-3.89362 0.0263,0.10519 4.18456,0.34981 5.20584,-1.40388 1.11122,-1.15275 0.14014,-4.38532 0.077,-4.38532 0.0633,0.0633 4.12591,-0.0432 4.83864,-1.69189 0.81726,-0.94694 -0.16572,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c -0.0716,-0.0398 -3.52027,0.54293 -4.22866,1.88506 -0.85877,0.77377 -0.79145,2.93259 -0.6882,2.93259 0.0551,-0.16527 -3.13346,0.0301 -4.19674,1.3135 -0.99275,0.92921 -0.83191,3.5722 -0.81211,3.56824 -0.2917,-0.11219 -3.72836,0.0448 -4.59896,1.27221 -1.38692,1.22213 -1.40211,4.98076 -1.29971,4.98076 0,-0.0543 -3.63043,0.28826 -4.68112,1.63345 -1.39037,1.63663 -0.95682,5.95733 -0.84379,5.86314 -0.0714,-0.0572 -3.50997,1.34812 -4.13281,2.97367 -0.99363,1.8097 0.0827,5.8256 0.1485,5.78611 0.0286,-0.0107 -3.47409,-2.58144 -5.81788,-2.29945 -2.03561,0.078 -5.00819,3.04217 -4.98536,3.065 0.0894,-0.0383 -3.77398,-2.28548 -6.07463,-1.93646 -2.19936,0.16817 -5.28843,3.26531 -5.24625,3.29062 0.0577,-0.0247 -3.6596,-2.98608 -6.11743,-2.8254 -2.62706,-0.17114 -6.42609,3.37458 -6.37214,3.43623 0.0764,-0.0305 -2.5983,-3.62398 -4.74516,-3.86523 -2.3968,-0.5135 -6.56096,2.67213 -6.54041,2.73377 0.0278,0 -1.86631,-3.79743 -3.84319,-4.39294 -2.1406,-0.8914 -7.08051,1.65543 -7.08312,1.65775 0,0 4.17132,-0.88265 4.32598,-2.62631 0.28337,-1.00061 -1.78574,-2.2873 -1.82858,-2.27124 0.021,0.0349 5.21539,-1.03939 5.23366,-3.24468 0.28059,-1.11065 -2.28712,-1.83524 -2.3211,-1.81583 0.0194,0.0427 4.09634,-0.0764 4.41853,-1.78242 0.37085,-0.98469 -1.73184,-2.21574 -1.77223,-2.1933 0.008,0.0219 2.8764,-0.90334 3.31722,-2.28129 0.32598,-0.62431 -0.37809,-1.9308 -0.43513,-1.92265 l -4.69222,0.72413 c 0.0237,-0.0426 -1.79765,0.46492 -2.63183,1.51492 -0.69936,0.46779 -0.96174,2.2027 -0.94371,2.21712 0.007,-0.0358 -1.88989,0.10067 -2.44519,0.95669 -0.61207,0.66093 -0.26769,2.37608 -0.20536,2.36361 0.012,-0.0419 -2.55183,0.42329 -3.2251,1.69596 -0.77861,1.04606 0.0592,3.62639 0.12616,3.62639 0.0513,-0.094 -2.12186,0.38382 -2.86561,1.6675 -0.82026,1.16209 -0.31411,3.83168 -0.0897,3.71947 -0.2087,-0.14907 -4.50311,2.782 -5.0707,5.30267 -1.45304,2.7823 -0.4393,8.68853 -0.14431,8.57791 -0.11184,-0.19573 -5.61323,4.13251 -6.54891,7.662 -2.01339,4.22462 -0.20242,12.80349 0.12218,12.65594 -0.27988,-0.19992 -6.69779,4.93798 -6.78396,8.84863 -0.72683,3.97856 4.74341,10.55407 4.9951,10.4462 -0.19084,-0.12723 -4.51715,7.94817 -3.68091,12.43969 0.0674,4.53539 6.50495,11.45785 6.7561,11.37413 -0.19797,0.054 -3.09154,6.28983 -2.56163,9.33402 -0.61864,3.0265 1.44599,8.78728 1.66753,8.76266 -0.22155,-0.0738 -2.26451,6.97373 -1.5863,10.76219 -0.2869,2.90595 3.05181,8.88695 3.17474,8.83426 l 0.60329,6.29895 67.29376,-3.51585 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 318.00391,325.73755 c 0,0 7.29076,-11.45304 5.42961,-17.15483 -1.23433,-3.78149 -9.61975,-7.06183 -9.61975,-7.06183 0,0 10.26143,-4.82879 10.06153,-9.41841 -0.19507,-4.4786 -10.58006,-8.30214 -10.58006,-8.30214 0,0 10.47399,-5.22482 11.12513,-10.21762 0.68954,-5.28719 -8.61202,-13.47969 -8.61202,-13.47969 0,0 11.1388,-3.87102 11.88153,-8.72903 0.67298,-4.4018 -7.91075,-10.7647 -7.91075,-10.7647 0,0 9.94184,-1.10853 11.47755,-4.98693 1.54066,-3.89091 -4.96824,-11.52961 -4.96824,-11.52961 0,0 7.59479,-1.81571 9.10324,-4.91711 1.47717,-3.0371 -1.71582,-9.98549 -1.71582,-9.98549 0,0 4.76382,-2.12641 5.15369,-4.3377 0.26565,-1.50672 -2.28908,-3.97832 -2.28908,-3.97832 0,0 3.87403,-0.38479 4.79507,-1.82593 0.82425,-1.28969 -0.31935,-4.58065 -0.31935,-4.58065 0,0 4.17524,-0.40787 5.19792,-1.9502 0.71783,-1.08258 -0.15909,-3.89362 -0.15909,-3.89362 0,0 4.10041,0.0132 5.20584,-1.40388 0.89923,-1.15275 0.077,-4.38532 0.077,-4.38532 0,0 3.91403,-0.25505 4.83864,-1.69189 0.60936,-0.94694 -0.30643,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c 0,0 -3.24515,0.69578 -4.22866,1.88506 -0.6399,0.77377 -0.6882,2.93259 -0.6882,2.93259 0,0 -3.20228,0.23661 -4.19674,1.3135 -0.82757,0.89617 -0.81211,3.56824 -0.81211,3.56824 0,0 -3.48252,0.13932 -4.59896,1.27221 -1.20438,1.22213 -1.29971,4.98076 -1.29971,4.98076 0,0 -3.63043,0.3578 -4.68112,1.63345 -1.25533,1.5241 -0.84379,5.86314 -0.84379,5.86314 0,0 -3.37828,1.45347 -4.13281,2.97367 -0.85776,1.72818 0.1485,5.78611 0.1485,5.78611 0,0 -3.74057,-2.48151 -5.81788,-2.29945 -1.94328,0.17031 -4.98536,3.065 -4.98536,3.065 0,0 -3.96616,-2.20312 -6.07463,-1.93646 -2.04797,0.25901 -5.24625,3.29062 -5.24625,3.29062 0,0 -3.87237,-2.89489 -6.11743,-2.8254 -2.41204,0.0746 -6.37214,3.43623 -6.37214,3.43623 0,0 -2.72617,-3.57283 -4.74516,-3.86523 -2.33852,-0.33867 -6.54041,2.73377 -6.54041,2.73377 0,0 -1.99097,-3.79743 -3.84319,-4.39294 -2.30846,-0.74219 -7.08312,1.65775 -7.08312,1.65775 0,0 4.03449,-0.96475 4.32598,-2.62631 0.16794,-0.95733 -1.82858,-2.27124 -1.82858,-2.27124 0,0 5.12196,-1.19511 5.23366,-3.24468 0.0535,-0.98088 -2.3211,-1.81583 -2.3211,-1.81583 0,0 4.01965,-0.24516 4.41853,-1.78242 0.23607,-0.90981 -1.77223,-2.1933 -1.77223,-2.1933 0,0 2.82832,-1.03154 3.31722,-2.28129 0.23939,-0.61194 -0.43513,-1.92265 -0.43513,-1.92265 l -4.69222,0.72413 c 0,0 -1.96023,0.75757 -2.63183,1.51492 -0.53291,0.60095 -0.94371,2.21712 -0.94371,2.21712 0,0 -1.92093,0.25586 -2.44519,0.95669 -0.47372,0.63326 -0.20536,2.36361 -0.20536,2.36361 0,0 -2.61532,0.6455 -3.2251,1.69596 -0.60723,1.04606 0.12616,3.62639 0.12616,3.62639 0,0 -2.30315,0.71618 -2.86561,1.6675 -0.63118,1.06755 -0.0897,3.71947 -0.0897,3.71947 0,0 -4.14105,3.04061 -5.0707,5.30267 -1.08704,2.64505 -0.14431,8.57791 -0.14431,8.57791 0,0 -5.40066,4.5045 -6.54891,7.662 -1.44183,3.96482 0.12218,12.65594 0.12218,12.65594 0,0 -6.39804,5.15209 -6.78396,8.84863 -0.40078,3.83882 4.9951,10.4462 4.9951,10.4462 0,0 -4.21638,8.14869 -3.68091,12.43969 0.54606,4.37584 6.7561,11.37413 6.7561,11.37413 0,0 -2.43294,6.11021 -2.56163,9.33402 -0.1186,2.97094 1.66753,8.76266 1.66753,8.76266 0,0 -1.76447,7.14041 -1.5863,10.76219 0.13408,2.72553 3.17474,8.83426 3.17474,8.83426 l 0.60329,6.29895 67.29376,-3.51585 z" id="path1280" sodipodi:nodetypes="cacacacacacacacacacacaccacacacacacacacacacacacacacaccacacacacacacacacacscccc" style="display:inline;opacity:1;fill:#ffffff;stroke-width:1.05999994"/> - <path inkscape:connector-curvature="0" d="m 315.90803,320.84344 c -2.49311,-12.85797 -3.70847,-24.16935 -4.44214,-39.5634 4.29028,-30.83464 3.35841,-41.06705 21.27809,-72.37945 1.06744,-9.14922 11.65832,-19.70221 22.34434,-31.15738 -2.13976,-0.51067 -4.28423,-0.96012 -6.46482,-0.94005 -11.40402,9.3964 -21.91679,21.41172 -24.91403,32.79713 -21.89276,0.52722 -32.81714,6.37507 -58.48416,-1.54946 3.84727,-8.39874 5.10763,-9.47909 10.78801,-18.40031 -1.05734,0.0265 -2.02266,-0.0784 -3.63549,0.74174 -6.9411,6.67026 -8.04042,9.50969 -12.35955,17.95063 -2.80066,6.10293 -4.61886,11.91112 -5.76436,17.5175 -10.39962,25.33864 -5.9915,43.15772 -3.53361,61.61413 -1.4792,13.13023 -0.30041,25.062 1.70304,36.68579 18.49356,5.86562 41.60515,-0.33523 63.48468,-3.31684 z" class="shadow" id="path1268" sodipodi:nodetypes="ccccccccccccccc"/> - <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccccccccccccc" id="path1108-7-2-2" d="m 315.90803,320.84344 c -2.81213,-13.35423 -5.31598,-26.66992 -4.44214,-39.5634 3.50974,-30.99075 1.84762,-41.36921 21.27809,-72.37945 0.93083,-9.35414 10.94077,-20.77854 22.34434,-31.15738 l -6.46482,-0.94005 c -9.53791,9.58301 -21.68892,21.43451 -24.91403,32.79713 -21.76753,0.94464 -32.29254,8.12373 -58.48416,-1.54946 3.69598,-8.48126 4.421,-9.85362 10.78801,-18.40031 l -3.63549,0.74174 c -6.53986,6.87088 -7.78622,9.63679 -12.35955,17.95063 l -5.76436,17.5175 c -8.96086,25.20784 -5.79542,43.13989 -3.53361,61.61413 -0.5132,12.61008 0.22818,24.77737 1.70304,36.68579 18.49356,5.86562 41.60515,-0.33523 63.48468,-3.31684 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 335.13308,318.51346 3.76755,7.52419 c -34.68921,1.29057 -70.68419,18.30652 -92.67015,3.82289 l 3.86668,-6.97285 c 33.13895,8.49273 52.33122,-5.8368 85.03592,-4.37423 z" class="shadow" id="path1246" sodipodi:nodetypes="ccccc"/> - <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1108-7-2-7" d="m 335.13308,318.51346 3.76755,7.52419 c -35.36449,0.47083 -72.09797,17.70061 -92.67015,3.82289 l 3.86668,-6.97285 c 30.76253,9.95515 51.75714,-4.70842 85.03592,-4.37423 z" inkscape:connector-curvature="0"/> - </g> - <g style="display:inline;opacity:1" inkscape:label="Torso_Outfit_Maid_Unnatural" id="Torso_Outfit_Maid_Unnatural" inkscape:groupmode="layer"> - <path class="shadow" sodipodi:nodetypes="cccccccccccccc" id="path1396" d="m 359.32506,223.68315 c 0,0 0.81285,3.715 1.66655,14.80908 0.60333,0.24133 -10.14395,31.21625 -26.92284,39.42747 -2.60991,13.16972 -1.19,40.93835 -1.62633,40.86563 0,0 5.16414,4.87801 6.3654,7.30426 25.41094,14.16919 46.24345,42.44329 56.43292,71.31194 19.15995,38.96952 18.59152,124.9406 17.21147,125.13775 -69.91487,-25.57972 -163.41142,29.15618 -232.75934,-4.27387 -0.6629,0 4.43678,-75.76419 20.06445,-110.96586 8.85721,-31.27651 38.93399,-60.37533 53.95341,-84.43678 -5.31056,-13.48953 -3.26785,-24.95459 -1.63624,-35.7452 -10.20434,-15.27731 -12.82373,-29.50621 -9.71044,-44.42473 1.68036,-12.73855 7.18619,-19.52847 7.03163,-19.62506 44.12648,12.49268 109.92936,0.61537 109.92936,0.61537 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 359.32506,223.68315 c 0,0 0.81285,3.715 1.66655,14.80908 0,0 -11.18209,30.80099 -26.92284,39.42747 -4.05461,12.92894 -1.62633,40.86563 -1.62633,40.86563 0,0 5.16414,4.87801 6.3654,7.30426 23.94861,15.0158 44.54286,43.42784 56.43292,71.31194 16.51533,38.7311 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.34105,-75.97218 20.06445,-110.96586 12.19453,-31.09516 40.22618,-60.05228 53.95341,-84.43678 -4.38752,-13.39723 -2.52851,-24.88066 -1.63624,-35.7452 -9.41353,-15.3492 -10.68632,-29.29831 -9.71044,-44.42473 0.44738,-6.9345 7.03163,-19.62506 7.03163,-19.62506 44.12648,12.49268 109.92936,0.61537 109.92936,0.61537 z" id="path1398" sodipodi:nodetypes="cccccaccaccacc" style="display:inline;opacity:1;fill:#333333"/> - <path inkscape:connector-curvature="0" d="m 318.99599,327.6899 c 0.0644,-0.16109 8.65228,0.56099 9.61497,4.49727 1.3512,2.8737 -3.34911,7.53093 -3.47797,7.44163 -0.0771,-0.15425 8.84757,-0.64052 10.11034,3.2164 1.02068,3.07865 -5.38909,6.92467 -5.44926,6.82438 0.23172,-0.20855 10.82387,0.0205 11.58201,4.44743 1.38783,4.11242 -6.22864,10.32292 -6.27664,10.17893 0.21991,-0.13745 8.43834,1.21248 9.01294,4.71968 1.2288,3.81779 -4.96917,9.64522 -5.03752,9.48573 0.21257,-0.13285 10.58372,2.34604 11.07464,6.85972 1.25518,3.94064 -6.04041,9.4479 -6.21547,9.33849 0.13515,-0.11263 11.08656,2.58112 11.93526,7.39163 1.71015,4.99964 -7.00879,13.22784 -7.21484,13.15057 0.0942,-0.0157 9.93077,7.19801 9.34405,12.44107 0.10908,5.19779 -9.69913,10.99968 -9.76212,10.93669 0.18533,-0.0824 11.15376,9.91714 7.63971,14.84338 -2.61785,4.65478 -15.08597,-0.32502 -15.15239,-0.59071 0.33431,-0.16715 5.3952,17.15578 -0.85713,21.87287 -6.50245,5.00033 -23.38239,-4.72464 -23.02204,-4.94986 0.22183,0.0246 -1.66191,12.7012 -7.19718,14.88791 -5.5687,2.47972 -16.74854,-6.17807 -16.74854,-6.48015 0.21345,0.4269 -5.07562,9.91879 -10.03403,10.20801 -5.55297,0.42338 -12.95531,-7.17693 -12.56583,-7.44005 0.36032,0.1488 -7.16402,7.27921 -12.8887,6.95808 -4.83568,-0.14563 -10.74277,-8.48059 -10.58851,-8.67342 0.22444,0.19238 -9.22718,7.16136 -14.53666,4.80368 -4.70766,-1.85637 -6.31717,-11.27134 -6.13011,-11.24256 -0.0365,0.3281 -13.14523,5.45055 -17.62156,1.26353 -4.51529,-3.20565 -1.84094,-15.18727 -1.6627,-15.20509 -0.17088,0.0854 -9.60707,-4.8907 -10.3417,-9.69215 -1.57318,-4.62814 3.84701,-13.41306 4.19582,-13.29679 -0.18367,0.0459 -4.13228,-7.96382 -2.49807,-11.98279 0.67111,-3.66494 7.4073,-7.52683 7.53174,-7.42313 -0.10889,0.0545 -2.35187,-7.48617 -0.57345,-11.08065 0.97955,-3.46808 7.81374,-7.23036 7.98116,-7.15861 -0.16474,0.0412 -1.76219,-6.06944 -0.0618,-8.87421 0.86706,-2.57827 5.32018,-4.74225 5.36859,-4.54861 -0.31509,0.0788 -1.63297,-5.0224 -0.33716,-7.38269 1.06746,-2.94953 5.90428,-5.607 5.87412,-5.30544 -0.0593,0 0.14909,-4.63491 1.73435,-6.67977 1.09199,-2.83818 5.23059,-6.49208 5.30213,-6.32515 -0.13193,0.0495 1.90625,-6.4612 4.21952,-9.6367 1.30133,-2.92237 6.34678,-7.9651 6.48509,-7.9651 -0.0721,0.009 1.17726,-4.6058 3.03344,-6.74429 1.47439,-2.92429 5.62888,-6.48189 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" class="shadow" id="path1400" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc"/> - <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacaccc" id="path1402" d="m 318.99599,327.6899 c 0,0 8.40821,1.17117 9.61497,4.49727 0.93385,2.57392 -3.47797,7.44163 -3.47797,7.44163 0,0 9.08388,-0.1679 10.11034,3.2164 0.84491,2.78571 -5.44926,6.82438 -5.44926,6.82438 0,0 10.25836,0.52946 11.58201,4.44743 1.27585,3.77649 -6.27664,10.17893 -6.27664,10.17893 0,0 8.01039,1.47995 9.01294,4.71968 1.05837,3.42011 -5.03752,9.48573 -5.03752,9.48573 0,0 10.15037,2.61688 11.07464,6.85972 0.7959,3.65359 -6.21547,9.33849 -6.21547,9.33849 0,0 10.74466,2.86604 11.93526,7.39163 1.2721,4.83537 -7.21484,13.15057 -7.21484,13.15057 0,0 9.56319,7.25927 9.34405,12.44107 -0.20647,4.88224 -9.76212,10.93669 -9.76212,10.93669 0,0 10.62954,10.15013 7.63971,14.84338 -2.71578,4.26308 -15.15239,-0.59071 -15.15239,-0.59071 0,0 4.90743,17.39967 -0.85713,21.87287 -6.20132,4.81212 -23.02204,-4.94986 -23.02204,-4.94986 0,0 -2.06947,12.86558 -7.19718,14.88791 -5.5687,2.19626 -16.74854,-6.48015 -16.74854,-6.48015 0,0 -5.30284,9.59088 -10.03403,10.20801 -4.82685,0.62961 -12.56583,-7.44005 -12.56583,-7.44005 0,0 -8.02869,7.4243 -12.8887,6.95808 -4.54161,-0.43568 -10.58851,-8.67342 -10.58851,-8.67342 0,0 -9.79032,6.67867 -14.53666,4.80368 -3.96987,-1.56825 -6.13011,-11.24256 -6.13011,-11.24256 0,0 -13.0991,5.03539 -17.62156,1.26353 -3.9155,-3.26563 -1.6627,-15.20509 -1.6627,-15.20509 0,0 -9.14506,-5.1217 -10.3417,-9.69215 -1.17719,-4.49614 4.19582,-13.29679 4.19582,-13.29679 0,0 -3.67873,-8.07721 -2.49807,-11.98279 1.02002,-3.37418 7.53174,-7.42313 7.53174,-7.42313 0,0 -1.99319,-7.66551 -0.57345,-11.08065 1.37185,-3.29995 7.98116,-7.15861 7.98116,-7.15861 0,0 -1.29621,-6.18593 -0.0618,-8.87421 0.97875,-2.13151 5.36859,-4.54861 5.36859,-4.54861 0,0 -1.28579,-5.1092 -0.33716,-7.38269 1.01601,-2.43499 5.87412,-5.30544 5.87412,-5.30544 0,0 0.68057,-4.63491 1.73435,-6.67977 1.26026,-2.44554 5.30213,-6.32515 5.30213,-6.32515 0,0 2.39255,-6.64356 4.21952,-9.6367 1.78378,-2.92237 6.48509,-7.9651 6.48509,-7.9651 0,0 1.69989,-4.67113 3.03344,-6.74429 1.54055,-2.39498 5.63667,-6.41957 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccssccc" id="path1404" class="shadow" d="m 317.3515,327.6899 c 0.22023,-0.0832 13.95193,22.40956 15.51755,35.27419 7.4167,28.20029 26.15374,64.2233 5.41963,85.35354 -32.97758,33.60762 -95.87299,40.63263 -128.98295,5.78454 -16.72652,-17.60459 0.50361,-47.60411 11.1802,-71.36249 6.48324,-18.97334 29.03428,-54.79411 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 317.3515,327.6899 c 0,0 12.47759,22.79358 15.51755,35.27419 6.74669,27.69865 24.45833,64.13418 5.41963,85.35354 -28.74158,32.03359 -100.27917,37.85201 -128.98295,5.78454 -16.05853,-17.94037 3.26025,-48.62468 11.1802,-71.36249 6.85399,-19.67747 30.78578,-54.40455 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" id="path1415" sodipodi:nodetypes="caaaacc" style="display:inline;opacity:1;fill:#ffffff"/> - <path inkscape:connector-curvature="0" d="m 318.00391,325.73755 c 0.1662,-0.0684 8.0406,-11.7618 5.42961,-17.15483 -0.9984,-4.15898 -9.59497,-7.10148 -9.61975,-7.06183 0.0569,0.0797 10.47717,-4.52675 10.06153,-9.41841 -0.0685,-4.77393 -10.54117,-8.39289 -10.58006,-8.30214 -0.0526,0.16819 10.25564,-4.52608 11.12513,-10.21762 1.02638,-5.3714 -8.5072,-13.50589 -8.61202,-13.47969 -0.0119,0.17826 11.09595,-3.22828 11.88153,-8.72903 1.155,-4.5223 -7.71736,-10.81305 -7.91075,-10.7647 -0.18835,0.18835 9.25517,-0.42186 11.47755,-4.98693 1.84787,-4.00611 -4.81901,-11.58557 -4.96824,-11.52961 -0.01,0.12732 7.55069,-1.24244 9.10324,-4.91711 1.82315,-3.08035 -1.62605,-9.99671 -1.71582,-9.98549 0.0825,0.0367 5.16407,-1.94852 5.15369,-4.3377 0.60501,-1.54914 -2.18836,-3.99091 -2.28908,-3.97832 0.0908,0.10897 4.0678,-0.15226 4.79507,-1.82593 1.06341,-1.36941 -0.21991,-4.6138 -0.31935,-4.58065 0,0.11423 4.17524,-0.0769 5.19792,-1.9502 0.99558,-1.00322 -0.0412,-3.85994 -0.15909,-3.89362 0.0263,0.10519 4.18456,0.34981 5.20584,-1.40388 1.11122,-1.15275 0.14014,-4.38532 0.077,-4.38532 0.0633,0.0633 4.12591,-0.0432 4.83864,-1.69189 0.81726,-0.94694 -0.16572,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c -0.0716,-0.0398 -3.52027,0.54293 -4.22866,1.88506 -0.85877,0.77377 -0.79145,2.93259 -0.6882,2.93259 0.0551,-0.16527 -3.13346,0.0301 -4.19674,1.3135 -0.99275,0.92921 -0.83191,3.5722 -0.81211,3.56824 -0.2917,-0.11219 -3.72836,0.0448 -4.59896,1.27221 -1.38692,1.22213 -1.40211,4.98076 -1.29971,4.98076 0,-0.0543 -3.63043,0.28826 -4.68112,1.63345 -1.39037,1.63663 -0.95682,5.95733 -0.84379,5.86314 -0.0714,-0.0572 -3.50997,1.34812 -4.13281,2.97367 -0.99363,1.8097 0.0827,5.8256 0.1485,5.78611 0.0286,-0.0107 -3.47409,-2.58144 -5.81788,-2.29945 -2.03561,0.078 -5.00819,3.04217 -4.98536,3.065 0.0894,-0.0383 -3.77398,-2.28548 -6.07463,-1.93646 -2.19936,0.16817 -5.28843,3.26531 -5.24625,3.29062 0.0577,-0.0247 -3.6596,-2.98608 -6.11743,-2.8254 -2.62706,-0.17114 -6.42609,3.37458 -6.37214,3.43623 0.0764,-0.0305 -2.5983,-3.62398 -4.74516,-3.86523 -2.3968,-0.5135 -6.56096,2.67213 -6.54041,2.73377 0.0278,0 -1.86631,-3.79743 -3.84319,-4.39294 -2.1406,-0.8914 -7.08051,1.65543 -7.08312,1.65775 0,0 4.17132,-0.88265 4.32598,-2.62631 0.28337,-1.00061 -1.78574,-2.2873 -1.82858,-2.27124 0.021,0.0349 5.21539,-1.03939 5.23366,-3.24468 0.28059,-1.11065 -2.28712,-1.83524 -2.3211,-1.81583 0.0194,0.0427 4.09634,-0.0764 4.41853,-1.78242 0.37085,-0.98469 -1.73184,-2.21574 -1.77223,-2.1933 0.008,0.0219 2.8764,-0.90334 3.31722,-2.28129 0.32598,-0.62431 -0.37809,-1.9308 -0.43513,-1.92265 l -4.69222,0.72413 c 0.0237,-0.0426 -1.79765,0.46492 -2.63183,1.51492 -0.69936,0.46779 -0.96174,2.2027 -0.94371,2.21712 0.007,-0.0358 -1.88989,0.10067 -2.44519,0.95669 -0.61207,0.66093 -0.26769,2.37608 -0.20536,2.36361 0.012,-0.0419 -2.55183,0.42329 -3.2251,1.69596 -0.77861,1.04606 0.0592,3.62639 0.12616,3.62639 0.0513,-0.094 -2.12186,0.38382 -2.86561,1.6675 -0.82026,1.16209 -0.31411,3.83168 -0.0897,3.71947 -0.2087,-0.14907 -4.50311,2.782 -5.0707,5.30267 -1.45304,2.7823 -0.4393,8.68853 -0.14431,8.57791 -0.11184,-0.19573 -5.61323,4.13251 -6.54891,7.662 -2.01339,4.22462 -0.20242,12.80349 0.12218,12.65594 -0.27988,-0.19992 -6.69779,4.93798 -6.78396,8.84863 -0.72683,3.97856 4.74341,10.55407 4.9951,10.4462 -0.19084,-0.12723 -4.51715,7.94817 -3.68091,12.43969 0.0674,4.53539 6.50495,11.45785 6.7561,11.37413 -0.19797,0.054 -3.09154,6.28983 -2.56163,9.33402 -0.61864,3.0265 1.44599,8.78728 1.66753,8.76266 -0.22155,-0.0738 -2.26451,6.97373 -1.5863,10.76219 -0.2869,2.90595 6.58734,8.62178 6.71027,8.56909 l -2.93224,6.56412 67.29376,-3.51585 z" class="shadow" id="path1417" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/> - <path style="display:inline;opacity:1;fill:#ffffff;stroke-width:1.05999994" sodipodi:nodetypes="cacacacacacacacacacacaccacacacacacacacacacacacacacaccacacacacacacacacacscccc" id="path1419" d="m 318.00391,325.73755 c 0,0 7.29076,-11.45304 5.42961,-17.15483 -1.23433,-3.78149 -9.61975,-7.06183 -9.61975,-7.06183 0,0 10.26143,-4.82879 10.06153,-9.41841 -0.19507,-4.4786 -10.58006,-8.30214 -10.58006,-8.30214 0,0 10.47399,-5.22482 11.12513,-10.21762 0.68954,-5.28719 -8.61202,-13.47969 -8.61202,-13.47969 0,0 11.1388,-3.87102 11.88153,-8.72903 0.67298,-4.4018 -7.91075,-10.7647 -7.91075,-10.7647 0,0 9.94184,-1.10853 11.47755,-4.98693 1.54066,-3.89091 -4.96824,-11.52961 -4.96824,-11.52961 0,0 7.59479,-1.81571 9.10324,-4.91711 1.47717,-3.0371 -1.71582,-9.98549 -1.71582,-9.98549 0,0 4.76382,-2.12641 5.15369,-4.3377 0.26565,-1.50672 -2.28908,-3.97832 -2.28908,-3.97832 0,0 3.87403,-0.38479 4.79507,-1.82593 0.82425,-1.28969 -0.31935,-4.58065 -0.31935,-4.58065 0,0 4.17524,-0.40787 5.19792,-1.9502 0.71783,-1.08258 -0.15909,-3.89362 -0.15909,-3.89362 0,0 4.10041,0.0132 5.20584,-1.40388 0.89923,-1.15275 0.077,-4.38532 0.077,-4.38532 0,0 3.91403,-0.25505 4.83864,-1.69189 0.60936,-0.94694 -0.30643,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c 0,0 -3.24515,0.69578 -4.22866,1.88506 -0.6399,0.77377 -0.6882,2.93259 -0.6882,2.93259 0,0 -3.20228,0.23661 -4.19674,1.3135 -0.82757,0.89617 -0.81211,3.56824 -0.81211,3.56824 0,0 -3.48252,0.13932 -4.59896,1.27221 -1.20438,1.22213 -1.29971,4.98076 -1.29971,4.98076 0,0 -3.63043,0.3578 -4.68112,1.63345 -1.25533,1.5241 -0.84379,5.86314 -0.84379,5.86314 0,0 -3.37828,1.45347 -4.13281,2.97367 -0.85776,1.72818 0.1485,5.78611 0.1485,5.78611 0,0 -3.74057,-2.48151 -5.81788,-2.29945 -1.94328,0.17031 -4.98536,3.065 -4.98536,3.065 0,0 -3.96616,-2.20312 -6.07463,-1.93646 -2.04797,0.25901 -5.24625,3.29062 -5.24625,3.29062 0,0 -3.87237,-2.89489 -6.11743,-2.8254 -2.41204,0.0746 -6.37214,3.43623 -6.37214,3.43623 0,0 -2.72617,-3.57283 -4.74516,-3.86523 -2.33852,-0.33867 -6.54041,2.73377 -6.54041,2.73377 0,0 -1.99097,-3.79743 -3.84319,-4.39294 -2.30846,-0.74219 -7.08312,1.65775 -7.08312,1.65775 0,0 4.03449,-0.96475 4.32598,-2.62631 0.16794,-0.95733 -1.82858,-2.27124 -1.82858,-2.27124 0,0 5.12196,-1.19511 5.23366,-3.24468 0.0535,-0.98088 -2.3211,-1.81583 -2.3211,-1.81583 0,0 4.01965,-0.24516 4.41853,-1.78242 0.23607,-0.90981 -1.77223,-2.1933 -1.77223,-2.1933 0,0 2.82832,-1.03154 3.31722,-2.28129 0.23939,-0.61194 -0.43513,-1.92265 -0.43513,-1.92265 l -4.69222,0.72413 c 0,0 -1.96023,0.75757 -2.63183,1.51492 -0.53291,0.60095 -0.94371,2.21712 -0.94371,2.21712 0,0 -1.92093,0.25586 -2.44519,0.95669 -0.47372,0.63326 -0.20536,2.36361 -0.20536,2.36361 0,0 -2.61532,0.6455 -3.2251,1.69596 -0.60723,1.04606 0.12616,3.62639 0.12616,3.62639 0,0 -2.30315,0.71618 -2.86561,1.6675 -0.63118,1.06755 -0.0897,3.71947 -0.0897,3.71947 0,0 -4.14105,3.04061 -5.0707,5.30267 -1.08704,2.64505 -0.14431,8.57791 -0.14431,8.57791 0,0 -5.40066,4.5045 -6.54891,7.662 -1.44183,3.96482 0.12218,12.65594 0.12218,12.65594 0,0 -6.39804,5.15209 -6.78396,8.84863 -0.40078,3.83882 4.9951,10.4462 4.9951,10.4462 0,0 -4.21638,8.14869 -3.68091,12.43969 0.54606,4.37584 6.7561,11.37413 6.7561,11.37413 0,0 -2.43294,6.11021 -2.56163,9.33402 -0.1186,2.97094 1.66753,8.76266 1.66753,8.76266 0,0 -1.76447,7.14041 -1.5863,10.76219 0.13408,2.72553 6.71027,8.56909 6.71027,8.56909 l -2.93224,6.56412 67.29376,-3.51585 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccccccccccccccc" id="path1421" class="shadow" d="m 315.90803,320.84344 c -2.49311,-12.85797 -3.70847,-24.16935 -4.44214,-39.5634 4.29028,-30.83464 3.35841,-41.06705 21.27809,-72.37945 1.06744,-9.14922 11.65832,-19.70221 22.34434,-31.15738 -2.13976,-0.51067 -4.28423,-0.96012 -6.46482,-0.94005 -11.40402,9.3964 -21.91679,21.41172 -24.91403,32.79713 -21.89276,0.52722 -32.81714,6.37507 -58.48416,-1.54946 3.84727,-8.39874 5.10763,-9.47909 10.78801,-18.40031 -1.05734,0.0265 -2.02266,-0.0784 -3.63549,0.74174 -6.9411,6.67026 -8.04042,9.50969 -12.35955,17.95063 -2.80066,6.10293 -4.61886,11.91112 -5.76436,17.5175 -10.39962,25.33864 -5.9915,43.15772 -3.53361,61.61413 -1.4792,13.13023 1.06961,23.82456 3.07306,35.44835 18.49356,5.86562 40.23513,0.90221 62.11466,-2.0794 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 315.90803,320.84344 c -2.81213,-13.35423 -5.31598,-26.66992 -4.44214,-39.5634 3.50974,-30.99075 1.84762,-41.36921 21.27809,-72.37945 0.93083,-9.35414 10.94077,-20.77854 22.34434,-31.15738 l -6.46482,-0.94005 c -9.53791,9.58301 -21.68892,21.43451 -24.91403,32.79713 -21.76753,0.94464 -32.29254,8.12373 -58.48416,-1.54946 3.69598,-8.48126 4.421,-9.85362 10.78801,-18.40031 l -3.63549,0.74174 c -6.53986,6.87088 -7.78622,9.63679 -12.35955,17.95063 l -5.76436,17.5175 c -8.96086,25.20784 -5.79542,43.13989 -3.53361,61.61413 -0.5132,12.61008 1.5982,23.53993 3.07306,35.44835 18.49356,5.86562 40.23513,0.90221 62.11466,-2.0794 z" id="path1423" sodipodi:nodetypes="ccccccccccccccc" style="display:inline;opacity:1;fill:#ffffff"/> - <path sodipodi:nodetypes="ccccc" id="path1425" class="shadow" d="m 332.57058,318.76346 6.33005,7.27419 c -34.68921,1.29057 -66.97188,18.12974 -88.95784,3.64611 l 3.86668,-6.97285 c 33.13895,8.49273 46.05641,-5.41002 78.76111,-3.94745 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 332.57058,318.76346 6.33005,7.27419 c -35.36449,0.47083 -68.38566,17.52383 -88.95784,3.64611 l 3.86668,-6.97285 c 30.76253,9.95515 45.48233,-4.28164 78.76111,-3.94745 z" id="path1427" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/> - </g> <g inkscape:groupmode="layer" id="Torso_Outfit_Maid_Normal" inkscape:label="Torso_Outfit_Maid_Normal" style="display:inline;opacity:1"> - <path inkscape:connector-curvature="0" d="m 359.59022,223.85993 c 0,0 0.54769,3.53822 1.40139,14.6323 0.60333,0.24133 1.08137,17.47186 -9.95227,42.07912 -2.60991,13.16972 -1.59807,36.6617 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 25.41094,14.16919 34.43095,43.81829 44.62042,72.68694 19.15995,38.96952 18.59152,124.9406 17.21147,125.13775 -69.91487,-25.57972 -163.41142,29.15618 -232.75934,-4.27387 -0.6629,0 4.43678,-75.76419 20.06445,-110.96586 8.85721,-31.27651 35.22168,-60.19855 50.2411,-84.26 -5.31056,-13.48953 -3.00269,-25.08718 -1.37108,-35.87779 -10.20434,-15.27731 -9.37658,-29.5504 -6.26329,-44.46892 2.33144,-13.21932 7.5209,-19.83366 7.32405,-19.71802 44.12648,12.49268 109.9021,0.88511 109.9021,0.88511 z" id="path1435" sodipodi:nodetypes="cccccccccccccc" class="shadow"/> - <path style="display:inline;opacity:1;fill:#333333" sodipodi:nodetypes="cccccaccaccacc" id="path1437" d="m 359.59022,223.85993 c 0,0 0.54769,3.53822 1.40139,14.6323 0,0 -0.31032,17.18918 -9.95227,42.07912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 23.94861,15.0158 35.04244,45.91894 44.62042,72.68694 14.18515,39.64386 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.88371,-75.76419 20.06445,-110.96586 11.46675,-30.62413 36.51387,-59.8755 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -9.41353,-15.3492 -7.87474,-29.58663 -6.26329,-44.46892 0.75479,-6.97069 7.32405,-19.71802 7.32405,-19.71802 44.12648,12.49268 109.9021,0.88511 109.9021,0.88511 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 360.49161,241.99223 c 0.15713,0.0673 1.09091,14.07542 -9.45227,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 25.42564,15.0158 37.30125,45.91894 44.62042,72.68694 18.09394,39.28852 18.07129,125.05958 17.21147,125.13775 -70.8552,-22.32954 -164.13155,30.03525 -232.75934,-4.27387 -0.19735,-0.0197 4.1265,-76.03991 20.06445,-110.96586 9.2798,-30.93655 35.4953,-60.02101 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -5.47524,-7.9954 -6.36742,-21.28882 -5.88641,-30.59601 -4.05722,-36.73329 30.65665,-66.66209 31.00076,-66.66209 -0.008,-0.0706 2.55382,-1.8267 8.72305,-2.20036 -36.01659,24.46625 -42.13809,58.83696 -39.24643,69.07094 12.14629,3.82492 34.25776,3.67112 87.23879,-1.85132 1.92836,0 6.15865,-6.88279 6.15865,-10.00465 2.71491,-24.25648 8.03999,-35.96111 9.4316,-68.9692 4.553,0.39299 4.95014,-0.2397 9.68823,1.7253 -1.04791,6.23371 0.31824,53.97628 4.75601,64.31785 z" id="path2461" sodipodi:nodetypes="cccccccccccccccccccc" style="display:inline;opacity:1;fill:#000000"/> + <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1445-0" d="m 348.47508,176.56688 c 6.23488,24.59751 4.25162,51.07322 4.99933,76.19448 -42.11798,9.03479 -85.37513,19.71113 -110.63496,3.91432 -1.95782,-18.39591 8.20167,-47.39868 32.21961,-67.27394 42.97585,-9.32822 52.0825,-17.54406 73.41602,-12.83486 z" inkscape:connector-curvature="0"/> + <path style="display:inline;opacity:1;fill:#333333" sodipodi:nodetypes="ccccaccaccccccccccc" id="path1437" d="m 360.49161,241.99223 c 0,0 0.18968,13.68918 -9.45227,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 23.94861,15.0158 35.04244,45.91894 44.62042,72.68694 14.18515,39.64386 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.88371,-75.76419 20.06445,-110.96586 11.46675,-30.62413 36.51387,-59.8755 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -4.94422,-8.06178 -5.57616,-21.38773 -5.88641,-30.59601 -3.92817,-36.49728 30.67927,-66.58172 31.00076,-66.66209 0,0 2.59939,-1.41654 8.72305,-2.20036 -36.76659,20.96625 -42.13809,58.83696 -39.24643,69.07094 24.85388,-0.61208 66.61629,9.56619 108.02244,-11.10597 1.4423,-26.38913 0.15792,-38.14578 -5.1934,-69.7192 4.57973,0.53998 5.03464,0.22507 9.68823,1.7253 -1.36935,6.31407 -0.62585,54.2123 4.75601,64.31785 z" inkscape:connector-curvature="0"/> + <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="cccc" id="path1445-1-7" d="m 306.1115,174.72723 3.10935,13.7728 c -3.58883,0.28907 -4.19632,0.25785 -6.36265,-0.32791 1.00219,-12.04918 3.2533,-13.44489 3.2533,-13.44489 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 300.08667,172.57237 c -2.03237,3.63344 -2.40946,7.63281 -3.39194,11.16176 -0.11097,2.48059 4.02564,5.20338 6.30994,6.62117 -0.11352,-4.35414 2.20104,-11.31333 2.96606,-15.5101 -2.0837,-0.64114 -4.38743,-1.29276 -5.88406,-2.27283 z" id="path2554" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#000000"/> + <path inkscape:connector-curvature="0" d="m 333.1721,164.81697 c 3.12234,3.33135 7.8525,6.78145 9.92028,10.58149 -7.93754,9.36149 -23.35479,13.30607 -33.9727,15.90151 -0.57861,-4.86704 -2.13199,-11.9051 -3.13395,-16.71185 8.60186,-2.43964 22.03678,-4.58024 27.18637,-9.77115 z" id="path2552" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#000000"/> <path sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc" id="path1439" class="shadow" d="m 318.99599,327.6899 c 0.0644,-0.16109 8.65228,0.56099 9.61497,4.49727 1.3512,2.8737 -3.34911,7.53093 -3.47797,7.44163 -0.0771,-0.15425 8.84757,-0.64052 10.11034,3.2164 1.02068,3.07865 -5.38909,6.92467 -5.44926,6.82438 0.23172,-0.20855 10.82387,0.0205 11.58201,4.44743 1.38783,4.11242 -6.22864,10.32292 -6.27664,10.17893 0.21991,-0.13745 8.43834,1.21248 9.01294,4.71968 1.2288,3.81779 -4.96917,9.64522 -5.03752,9.48573 0.21257,-0.13285 10.58372,2.34604 11.07464,6.85972 1.25518,3.94064 -6.04041,9.4479 -6.21547,9.33849 0.13515,-0.11263 11.08656,2.58112 11.93526,7.39163 1.71015,4.99964 -7.00879,13.22784 -7.21484,13.15057 0.0942,-0.0157 9.93077,7.19801 9.34405,12.44107 0.10908,5.19779 -9.69913,10.99968 -9.76212,10.93669 0.18533,-0.0824 11.15376,9.91714 7.63971,14.84338 -2.61785,4.65478 -15.08597,-0.32502 -15.15239,-0.59071 0.33431,-0.16715 5.3952,17.15578 -0.85713,21.87287 -6.50245,5.00033 -23.38239,-4.72464 -23.02204,-4.94986 0.22183,0.0246 -1.66191,12.7012 -7.19718,14.88791 -5.5687,2.47972 -16.74854,-6.17807 -16.74854,-6.48015 0.21345,0.4269 -5.07562,9.91879 -10.03403,10.20801 -5.55297,0.42338 -12.95531,-7.17693 -12.56583,-7.44005 0.36032,0.1488 -7.16402,7.27921 -12.8887,6.95808 -4.83568,-0.14563 -10.74277,-8.48059 -10.58851,-8.67342 0.22444,0.19238 -9.22718,7.16136 -14.53666,4.80368 -4.70766,-1.85637 -6.31717,-11.27134 -6.13011,-11.24256 -0.0365,0.3281 -13.14523,5.45055 -17.62156,1.26353 -4.51529,-3.20565 -1.84094,-15.18727 -1.6627,-15.20509 -0.17088,0.0854 -9.60707,-4.8907 -10.3417,-9.69215 -1.57318,-4.62814 3.84701,-13.41306 4.19582,-13.29679 -0.18367,0.0459 -4.13228,-7.96382 -2.49807,-11.98279 0.67111,-3.66494 7.4073,-7.52683 7.53174,-7.42313 -0.10889,0.0545 -2.35187,-7.48617 -0.57345,-11.08065 0.97955,-3.46808 7.81374,-7.23036 7.98116,-7.15861 -0.16474,0.0412 -1.76219,-6.06944 -0.0618,-8.87421 0.86706,-2.57827 5.32018,-4.74225 5.36859,-4.54861 -0.31509,0.0788 -1.63297,-5.0224 -0.33716,-7.38269 1.06746,-2.94953 5.90428,-5.607 5.87412,-5.30544 -0.0593,0 0.14909,-4.63491 1.73435,-6.67977 1.09199,-2.83818 5.23059,-6.49208 5.30213,-6.32515 -0.13193,0.0495 1.90625,-6.4612 4.21952,-9.6367 1.30133,-2.92237 6.34678,-7.9651 6.48509,-7.9651 -0.0721,0.009 1.17726,-4.6058 3.03344,-6.74429 1.47439,-2.92429 5.62888,-6.48189 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" inkscape:connector-curvature="0"/> <path inkscape:connector-curvature="0" d="m 318.99599,327.6899 c 0,0 8.40821,1.17117 9.61497,4.49727 0.93385,2.57392 -3.47797,7.44163 -3.47797,7.44163 0,0 9.08388,-0.1679 10.11034,3.2164 0.84491,2.78571 -5.44926,6.82438 -5.44926,6.82438 0,0 10.25836,0.52946 11.58201,4.44743 1.27585,3.77649 -6.27664,10.17893 -6.27664,10.17893 0,0 8.01039,1.47995 9.01294,4.71968 1.05837,3.42011 -5.03752,9.48573 -5.03752,9.48573 0,0 10.15037,2.61688 11.07464,6.85972 0.7959,3.65359 -6.21547,9.33849 -6.21547,9.33849 0,0 10.74466,2.86604 11.93526,7.39163 1.2721,4.83537 -7.21484,13.15057 -7.21484,13.15057 0,0 9.56319,7.25927 9.34405,12.44107 -0.20647,4.88224 -9.76212,10.93669 -9.76212,10.93669 0,0 10.62954,10.15013 7.63971,14.84338 -2.71578,4.26308 -15.15239,-0.59071 -15.15239,-0.59071 0,0 4.90743,17.39967 -0.85713,21.87287 -6.20132,4.81212 -23.02204,-4.94986 -23.02204,-4.94986 0,0 -2.06947,12.86558 -7.19718,14.88791 -5.5687,2.19626 -16.74854,-6.48015 -16.74854,-6.48015 0,0 -5.30284,9.59088 -10.03403,10.20801 -4.82685,0.62961 -12.56583,-7.44005 -12.56583,-7.44005 0,0 -8.02869,7.4243 -12.8887,6.95808 -4.54161,-0.43568 -10.58851,-8.67342 -10.58851,-8.67342 0,0 -9.79032,6.67867 -14.53666,4.80368 -3.96987,-1.56825 -6.13011,-11.24256 -6.13011,-11.24256 0,0 -13.0991,5.03539 -17.62156,1.26353 -3.9155,-3.26563 -1.6627,-15.20509 -1.6627,-15.20509 0,0 -9.14506,-5.1217 -10.3417,-9.69215 -1.17719,-4.49614 4.19582,-13.29679 4.19582,-13.29679 0,0 -3.67873,-8.07721 -2.49807,-11.98279 1.02002,-3.37418 7.53174,-7.42313 7.53174,-7.42313 0,0 -1.99319,-7.66551 -0.57345,-11.08065 1.37185,-3.29995 7.98116,-7.15861 7.98116,-7.15861 0,0 -1.29621,-6.18593 -0.0618,-8.87421 0.97875,-2.13151 5.36859,-4.54861 5.36859,-4.54861 0,0 -1.28579,-5.1092 -0.33716,-7.38269 1.01601,-2.43499 5.87412,-5.30544 5.87412,-5.30544 0,0 0.68057,-4.63491 1.73435,-6.67977 1.26026,-2.44554 5.30213,-6.32515 5.30213,-6.32515 0,0 2.39255,-6.64356 4.21952,-9.6367 1.78378,-2.92237 6.48509,-7.9651 6.48509,-7.9651 0,0 1.69989,-4.67113 3.03344,-6.74429 1.54055,-2.39498 5.63667,-6.41957 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" id="path1441" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacaccc" style="display:inline;opacity:1;fill:#ffffff"/> <path inkscape:connector-curvature="0" d="m 317.3515,327.6899 c 0.22023,-0.0832 13.95193,22.40956 15.51755,35.27419 7.4167,28.20029 26.15374,64.2233 5.41963,85.35354 -32.97758,33.60762 -95.87299,40.63263 -128.98295,5.78454 -16.72652,-17.60459 0.50361,-47.60411 11.1802,-71.36249 6.48324,-18.97334 29.03428,-54.79411 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" class="shadow" id="path1443" sodipodi:nodetypes="ccssccc"/> <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="caaaacc" id="path1445" d="m 317.3515,327.6899 c 0,0 12.47759,22.79358 15.51755,35.27419 6.74669,27.69865 24.45833,64.13418 5.41963,85.35354 -28.74158,32.03359 -100.27917,37.85201 -128.98295,5.78454 -16.05853,-17.94037 3.26025,-48.62468 11.1802,-71.36249 6.85399,-19.67747 30.78578,-54.40455 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" id="path1447" class="shadow" d="m 318.00391,325.73755 c 0.1662,-0.0684 8.0406,-11.7618 5.42961,-17.15483 -0.9984,-4.15898 -9.59497,-7.10148 -9.61975,-7.06183 0.0569,0.0797 10.47717,-4.52675 10.06153,-9.41841 -0.0685,-4.77393 -10.54117,-8.39289 -10.58006,-8.30214 -0.0526,0.16819 10.25564,-4.52608 11.12513,-10.21762 1.02638,-5.3714 -8.5072,-13.50589 -8.61202,-13.47969 -0.0119,0.17826 11.09595,-3.22828 11.88153,-8.72903 1.155,-4.5223 -7.71736,-10.81305 -7.91075,-10.7647 -0.18835,0.18835 9.25517,-0.42186 11.47755,-4.98693 1.84787,-4.00611 -4.81901,-11.58557 -4.96824,-11.52961 -0.01,0.12732 7.55069,-1.24244 9.10324,-4.91711 1.82315,-3.08035 -1.62605,-9.99671 -1.71582,-9.98549 0.0825,0.0367 5.16407,-1.94852 5.15369,-4.3377 0.60501,-1.54914 -2.18836,-3.99091 -2.28908,-3.97832 0.0908,0.10897 4.0678,-0.15226 4.79507,-1.82593 1.06341,-1.36941 -0.21991,-4.6138 -0.31935,-4.58065 0,0.11423 4.17524,-0.0769 5.19792,-1.9502 0.99558,-1.00322 -0.0412,-3.85994 -0.15909,-3.89362 0.0263,0.10519 4.18456,0.34981 5.20584,-1.40388 1.11122,-1.15275 0.14014,-4.38532 0.077,-4.38532 0.0633,0.0633 4.12591,-0.0432 4.83864,-1.69189 0.81726,-0.94694 -0.16572,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c -0.0716,-0.0398 -3.52027,0.54293 -4.22866,1.88506 -0.85877,0.77377 -0.79145,2.93259 -0.6882,2.93259 0.0551,-0.16527 -3.13346,0.0301 -4.19674,1.3135 -0.99275,0.92921 -0.83191,3.5722 -0.81211,3.56824 -0.2917,-0.11219 -3.72836,0.0448 -4.59896,1.27221 -1.38692,1.22213 -1.40211,4.98076 -1.29971,4.98076 0,-0.0543 -3.63043,0.28826 -4.68112,1.63345 -1.39037,1.63663 -0.95682,5.95733 -0.84379,5.86314 -0.0714,-0.0572 -3.50997,1.34812 -4.13281,2.97367 -0.99363,1.8097 0.0827,5.8256 0.1485,5.78611 0.0286,-0.0107 -3.47409,-2.58144 -5.81788,-2.29945 -2.03561,0.078 -5.00819,3.04217 -4.98536,3.065 0.0894,-0.0383 -3.77398,-2.28548 -6.07463,-1.93646 -2.19936,0.16817 -5.28843,3.26531 -5.24625,3.29062 0.0577,-0.0247 -3.6596,-2.98608 -6.11743,-2.8254 -2.62706,-0.17114 -6.42609,3.37458 -6.37214,3.43623 0.0764,-0.0305 -2.5983,-3.62398 -4.74516,-3.86523 -2.3968,-0.5135 -6.56096,2.67213 -6.54041,2.73377 0.0278,0 -1.86631,-3.79743 -3.84319,-4.39294 -2.1406,-0.8914 -7.08051,1.65543 -7.08312,1.65775 0,0 4.17132,-0.88265 4.32598,-2.62631 0.28337,-1.00061 -1.78574,-2.2873 -1.82858,-2.27124 0.021,0.0349 5.21539,-1.03939 5.23366,-3.24468 0.28059,-1.11065 -2.28712,-1.83524 -2.3211,-1.81583 0.0194,0.0427 4.09634,-0.0764 4.41853,-1.78242 0.37085,-0.98469 -1.73184,-2.21574 -1.77223,-2.1933 0.008,0.0219 2.8764,-0.90334 3.31722,-2.28129 0.32598,-0.62431 -0.37809,-1.9308 -0.43513,-1.92265 l -4.69222,0.72413 c 0.0237,-0.0426 -1.79765,0.46492 -2.63183,1.51492 -0.69936,0.46779 -0.96174,2.2027 -0.94371,2.21712 0.007,-0.0358 -1.88989,0.10067 -2.44519,0.95669 -0.61207,0.66093 -0.26769,2.37608 -0.20536,2.36361 0.012,-0.0419 -2.55183,0.42329 -3.2251,1.69596 -0.77861,1.04606 0.0592,3.62639 0.12616,3.62639 0.0513,-0.094 -2.12186,0.38382 -2.86561,1.6675 -0.82026,1.16209 -0.31411,3.83168 -0.0897,3.71947 -0.2087,-0.14907 -4.50311,2.782 -5.0707,5.30267 -1.45304,2.7823 -0.4393,8.68853 -0.14431,8.57791 -0.11184,-0.19573 -5.61323,4.13251 -6.54891,7.662 -2.01339,4.22462 -0.20242,12.80349 0.12218,12.65594 -0.27988,-0.19992 -6.69779,4.93798 -6.78396,8.84863 -0.72683,3.97856 4.74341,10.55407 4.9951,10.4462 -0.19084,-0.12723 -4.51715,7.94817 -3.68091,12.43969 0.0674,4.53539 6.50495,11.45785 6.7561,11.37413 -0.19797,0.054 -3.09154,6.28983 -2.56163,9.33402 -0.61864,3.0265 1.44599,8.78728 1.66753,8.76266 -0.22155,-0.0738 -2.26451,6.97373 -1.5863,10.76219 -0.2869,2.90595 3.05181,8.88695 3.17474,8.83426 l 0.60329,6.29895 67.29376,-3.51585 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 318.00391,325.73755 c 0,0 7.29076,-11.45304 5.42961,-17.15483 -1.23433,-3.78149 -9.61975,-7.06183 -9.61975,-7.06183 0,0 10.26143,-4.82879 10.06153,-9.41841 -0.19507,-4.4786 -10.58006,-8.30214 -10.58006,-8.30214 0,0 10.47399,-5.22482 11.12513,-10.21762 0.68954,-5.28719 -8.61202,-13.47969 -8.61202,-13.47969 0,0 11.1388,-3.87102 11.88153,-8.72903 0.67298,-4.4018 -7.91075,-10.7647 -7.91075,-10.7647 0,0 9.94184,-1.10853 11.47755,-4.98693 1.54066,-3.89091 -4.96824,-11.52961 -4.96824,-11.52961 0,0 7.59479,-1.81571 9.10324,-4.91711 1.47717,-3.0371 -1.71582,-9.98549 -1.71582,-9.98549 0,0 4.76382,-2.12641 5.15369,-4.3377 0.26565,-1.50672 -2.28908,-3.97832 -2.28908,-3.97832 0,0 3.87403,-0.38479 4.79507,-1.82593 0.82425,-1.28969 -0.31935,-4.58065 -0.31935,-4.58065 0,0 4.17524,-0.40787 5.19792,-1.9502 0.71783,-1.08258 -0.15909,-3.89362 -0.15909,-3.89362 0,0 4.10041,0.0132 5.20584,-1.40388 0.89923,-1.15275 0.077,-4.38532 0.077,-4.38532 0,0 3.91403,-0.25505 4.83864,-1.69189 0.60936,-0.94694 -0.30643,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c 0,0 -3.24515,0.69578 -4.22866,1.88506 -0.6399,0.77377 -0.6882,2.93259 -0.6882,2.93259 0,0 -3.20228,0.23661 -4.19674,1.3135 -0.82757,0.89617 -0.81211,3.56824 -0.81211,3.56824 0,0 -3.48252,0.13932 -4.59896,1.27221 -1.20438,1.22213 -1.29971,4.98076 -1.29971,4.98076 0,0 -3.63043,0.3578 -4.68112,1.63345 -1.25533,1.5241 -0.84379,5.86314 -0.84379,5.86314 0,0 -3.37828,1.45347 -4.13281,2.97367 -0.85776,1.72818 0.1485,5.78611 0.1485,5.78611 0,0 -3.74057,-2.48151 -5.81788,-2.29945 -1.94328,0.17031 -4.98536,3.065 -4.98536,3.065 0,0 -3.96616,-2.20312 -6.07463,-1.93646 -2.04797,0.25901 -5.24625,3.29062 -5.24625,3.29062 0,0 -3.87237,-2.89489 -6.11743,-2.8254 -2.41204,0.0746 -6.37214,3.43623 -6.37214,3.43623 0,0 -2.72617,-3.57283 -4.74516,-3.86523 -2.33852,-0.33867 -6.54041,2.73377 -6.54041,2.73377 0,0 -1.99097,-3.79743 -3.84319,-4.39294 -2.30846,-0.74219 -7.08312,1.65775 -7.08312,1.65775 0,0 4.03449,-0.96475 4.32598,-2.62631 0.16794,-0.95733 -1.82858,-2.27124 -1.82858,-2.27124 0,0 5.12196,-1.19511 5.23366,-3.24468 0.0535,-0.98088 -2.3211,-1.81583 -2.3211,-1.81583 0,0 4.01965,-0.24516 4.41853,-1.78242 0.23607,-0.90981 -1.77223,-2.1933 -1.77223,-2.1933 0,0 2.82832,-1.03154 3.31722,-2.28129 0.23939,-0.61194 -0.43513,-1.92265 -0.43513,-1.92265 l -4.69222,0.72413 c 0,0 -1.96023,0.75757 -2.63183,1.51492 -0.53291,0.60095 -0.94371,2.21712 -0.94371,2.21712 0,0 -1.92093,0.25586 -2.44519,0.95669 -0.47372,0.63326 -0.20536,2.36361 -0.20536,2.36361 0,0 -2.61532,0.6455 -3.2251,1.69596 -0.60723,1.04606 0.12616,3.62639 0.12616,3.62639 0,0 -2.30315,0.71618 -2.86561,1.6675 -0.63118,1.06755 -0.0897,3.71947 -0.0897,3.71947 0,0 -4.14105,3.04061 -5.0707,5.30267 -1.08704,2.64505 -0.14431,8.57791 -0.14431,8.57791 0,0 -5.40066,4.5045 -6.54891,7.662 -1.44183,3.96482 0.12218,12.65594 0.12218,12.65594 0,0 -6.39804,5.15209 -6.78396,8.84863 -0.40078,3.83882 4.9951,10.4462 4.9951,10.4462 0,0 -4.21638,8.14869 -3.68091,12.43969 0.54606,4.37584 6.7561,11.37413 6.7561,11.37413 0,0 -2.43294,6.11021 -2.56163,9.33402 -0.1186,2.97094 1.66753,8.76266 1.66753,8.76266 0,0 -1.76447,7.14041 -1.5863,10.76219 0.13408,2.72553 3.17474,8.83426 3.17474,8.83426 l 0.60329,6.29895 67.29376,-3.51585 z" id="path1449" sodipodi:nodetypes="cacacacacacacacacacacaccacacacacacacacacacacacacacaccacacacacacacacacacscccc" style="display:inline;opacity:1;fill:#ffffff;stroke-width:1.05999994"/> - <path inkscape:connector-curvature="0" d="m 315.90803,320.84344 c -2.49311,-12.85797 -3.70847,-24.16935 -4.44214,-39.5634 4.29028,-30.83464 3.35841,-41.06705 21.27809,-72.37945 1.06744,-9.14922 11.65832,-19.70221 22.34434,-31.15738 -2.13976,-0.51067 -4.28423,-0.96012 -6.46482,-0.94005 -11.40402,9.3964 -21.91679,21.41172 -24.91403,32.79713 -21.89276,0.52722 -32.81714,6.37507 -58.48416,-1.54946 3.84727,-8.39874 5.10763,-9.47909 10.78801,-18.40031 -1.05734,0.0265 -2.02266,-0.0784 -3.63549,0.74174 -6.9411,6.67026 -8.04042,9.50969 -12.35955,17.95063 -2.80066,6.10293 -4.61886,11.91112 -5.76436,17.5175 -10.39962,25.33864 -5.9915,43.15772 -3.53361,61.61413 -1.4792,13.13023 -0.30041,25.062 1.70304,36.68579 18.49356,5.86562 41.60515,-0.33523 63.48468,-3.31684 z" class="shadow" id="path1451" sodipodi:nodetypes="ccccccccccccccc"/> - <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccccccccccccc" id="path1453" d="m 315.90803,320.84344 c -2.81213,-13.35423 -5.31598,-26.66992 -4.44214,-39.5634 3.50974,-30.99075 1.84762,-41.36921 21.27809,-72.37945 0.93083,-9.35414 10.94077,-20.77854 22.34434,-31.15738 l -6.46482,-0.94005 c -9.53791,9.58301 -21.68892,21.43451 -24.91403,32.79713 -21.76753,0.94464 -32.29254,8.12373 -58.48416,-1.54946 3.69598,-8.48126 4.421,-9.85362 10.78801,-18.40031 l -3.63549,0.74174 c -6.53986,6.87088 -7.78622,9.63679 -12.35955,17.95063 l -5.76436,17.5175 c -8.96086,25.20784 -5.79542,43.13989 -3.53361,61.61413 -0.5132,12.61008 0.22818,24.77737 1.70304,36.68579 18.49356,5.86562 41.60515,-0.33523 63.48468,-3.31684 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 349.13308,317.13846 1.58005,7.52419 c -34.68921,1.29057 -82.49669,19.68152 -104.48265,5.19789 l 3.86668,-6.97285 c 33.13895,8.49273 66.33122,-7.2118 99.03592,-5.74923 z" class="shadow" id="path1455" sodipodi:nodetypes="ccccc"/> - <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1457" d="m 349.13308,317.13846 1.58005,7.52419 c -35.36449,0.47083 -83.91047,19.07561 -104.48265,5.19789 l 3.86668,-6.97285 c 30.76253,9.95515 65.75714,-6.08342 99.03592,-5.74923 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 351.38308,281.76346 c -2.00111,14.61346 -1.45571,28.77753 -0.66995,42.89919 -34.68921,1.29057 -82.49669,19.68152 -104.48265,5.19789 0.75356,-14.0727 1.75763,-29.9734 1.30418,-44.34785 33.13895,8.49273 71.14372,-5.2118 103.84842,-3.74923 z" class="shadow" id="path1455" sodipodi:nodetypes="ccccc"/> + <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1457" d="m 351.38308,281.76346 c -2.7968,14.29973 -1.98265,28.59946 -0.66995,42.89919 -35.36449,0.47083 -83.91047,19.07561 -104.48265,5.19789 1.05318,-14.11595 2.82363,-30.2319 1.30418,-44.34785 30.76253,9.95515 70.56964,-4.08342 103.84842,-3.74923 z" inkscape:connector-curvature="0"/> + <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1445-1" d="m 333.1721,164.81697 9.92028,10.58149 c -8.50147,8.95868 -23.58459,13.14193 -33.9727,15.90151 -0.35332,-4.82062 -1.60248,-11.89123 -3.13395,-16.71185 8.60186,-1.844 22.03678,-4.11883 27.18637,-9.77115 z" inkscape:connector-curvature="0"/> + <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1445-1-4" d="m 300.08667,172.57237 -3.39194,11.16176 c 0.27347,2.33273 4.1548,5.1537 6.30994,6.62117 -0.5339,-4.37642 1.60936,-11.42013 2.96606,-15.5101 -2.28233,-0.52764 -4.46978,-1.2457 -5.88406,-2.27283 z" inkscape:connector-curvature="0"/> + </g> + <g style="display:inline;opacity:1" inkscape:label="Torso_Outfit_Maid_Hourglass" id="Torso_Outfit_Maid_Hourglass" inkscape:groupmode="layer"> + <path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="cccccccccccccccccccc" id="path2834" d="m 360.49161,241.99223 c 0.15713,0.0673 -4.72159,19.01292 -21.51477,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 25.42564,15.0158 49.36375,45.91894 56.68292,72.68694 18.09394,39.28852 18.07129,125.05958 17.21147,125.13775 -70.8552,-22.32954 -164.13155,30.03525 -232.75934,-4.27387 -0.19735,-0.0197 4.1265,-76.03991 20.06445,-110.96586 9.2798,-30.93655 35.4953,-60.02101 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -5.47524,-7.9954 -6.36742,-21.28882 -5.88641,-30.59601 -4.05722,-36.73329 30.65665,-66.66209 31.00076,-66.66209 -0.008,-0.0706 2.55382,-1.8267 8.72305,-2.20036 -36.01659,24.46625 -42.13809,58.83696 -39.24643,69.07094 12.14629,3.82492 34.25776,3.67112 87.23879,-1.85132 1.92836,0 6.15865,-6.88279 6.15865,-10.00465 2.71491,-24.25648 8.03999,-35.96111 9.4316,-68.9692 4.553,0.39299 4.95014,-0.2397 9.68823,1.7253 -1.04791,6.23371 0.31824,53.97628 4.75601,64.31785 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 348.47508,176.56688 c 6.23488,24.59751 4.25162,51.07322 4.99933,76.19448 -42.11798,9.03479 -85.37513,19.71113 -110.63496,3.91432 -1.95782,-18.39591 8.20167,-47.39868 32.21961,-67.27394 42.97585,-9.32822 52.0825,-17.54406 73.41602,-12.83486 z" id="path2836" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/> + <path inkscape:connector-curvature="0" d="m 360.49161,241.99223 c 0,0 -6.37282,19.56418 -21.51477,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 23.94861,15.0158 44.73213,44.38116 56.68292,72.68694 16.37715,38.78974 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.88371,-75.76419 20.06445,-110.96586 11.46675,-30.62413 36.51387,-59.8755 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -4.94422,-8.06178 -5.57616,-21.38773 -5.88641,-30.59601 -3.92817,-36.49728 30.67927,-66.58172 31.00076,-66.66209 0,0 2.59939,-1.41654 8.72305,-2.20036 -36.76659,20.96625 -42.13809,58.83696 -39.24643,69.07094 24.85388,-0.61208 66.61629,9.56619 108.02244,-11.10597 1.4423,-26.38913 0.15792,-38.14578 -5.1934,-69.7192 4.57973,0.53998 5.03464,0.22507 9.68823,1.7253 -1.36935,6.31407 -0.62585,54.2123 4.75601,64.31785 z" id="path2838" sodipodi:nodetypes="ccccaccaccccccccccc" style="display:inline;opacity:1;fill:#333333"/> + <path inkscape:connector-curvature="0" d="m 306.1115,174.72723 3.10935,13.7728 c -3.58883,0.28907 -4.19632,0.25785 -6.36265,-0.32791 1.00219,-12.04918 3.2533,-13.44489 3.2533,-13.44489 z" id="path2840" sodipodi:nodetypes="cccc" style="display:inline;opacity:1;fill:#ffffff"/> + <path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="ccccc" id="path2842" d="m 300.08667,172.57237 c -2.03237,3.63344 -2.40946,7.63281 -3.39194,11.16176 -0.11097,2.48059 4.02564,5.20338 6.30994,6.62117 -0.11352,-4.35414 2.20104,-11.31333 2.96606,-15.5101 -2.0837,-0.64114 -4.38743,-1.29276 -5.88406,-2.27283 z" inkscape:connector-curvature="0"/> + <path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="ccccc" id="path2844" d="m 333.1721,164.81697 c 3.12234,3.33135 7.8525,6.78145 9.92028,10.58149 -7.93754,9.36149 -23.35479,13.30607 -33.9727,15.90151 -0.57861,-4.86704 -2.13199,-11.9051 -3.13395,-16.71185 8.60186,-2.43964 22.03678,-4.58024 27.18637,-9.77115 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 318.99599,327.6899 c 0.0644,-0.16109 8.65228,0.56099 9.61497,4.49727 1.3512,2.8737 -3.34911,7.53093 -3.47797,7.44163 -0.0771,-0.15425 8.84757,-0.64052 10.11034,3.2164 1.02068,3.07865 -5.38909,6.92467 -5.44926,6.82438 0.23172,-0.20855 10.82387,0.0205 11.58201,4.44743 1.38783,4.11242 -6.22864,10.32292 -6.27664,10.17893 0.21991,-0.13745 8.43834,1.21248 9.01294,4.71968 1.2288,3.81779 -4.96917,9.64522 -5.03752,9.48573 0.21257,-0.13285 10.58372,2.34604 11.07464,6.85972 1.25518,3.94064 -6.04041,9.4479 -6.21547,9.33849 0.13515,-0.11263 11.08656,2.58112 11.93526,7.39163 1.71015,4.99964 -7.00879,13.22784 -7.21484,13.15057 0.0942,-0.0157 9.93077,7.19801 9.34405,12.44107 0.10908,5.19779 -9.69913,10.99968 -9.76212,10.93669 0.18533,-0.0824 11.15376,9.91714 7.63971,14.84338 -2.61785,4.65478 -15.08597,-0.32502 -15.15239,-0.59071 0.33431,-0.16715 5.3952,17.15578 -0.85713,21.87287 -6.50245,5.00033 -23.38239,-4.72464 -23.02204,-4.94986 0.22183,0.0246 -1.66191,12.7012 -7.19718,14.88791 -5.5687,2.47972 -16.74854,-6.17807 -16.74854,-6.48015 0.21345,0.4269 -5.07562,9.91879 -10.03403,10.20801 -5.55297,0.42338 -12.95531,-7.17693 -12.56583,-7.44005 0.36032,0.1488 -7.16402,7.27921 -12.8887,6.95808 -4.83568,-0.14563 -10.74277,-8.48059 -10.58851,-8.67342 0.22444,0.19238 -9.22718,7.16136 -14.53666,4.80368 -4.70766,-1.85637 -6.31717,-11.27134 -6.13011,-11.24256 -0.0365,0.3281 -13.14523,5.45055 -17.62156,1.26353 -4.51529,-3.20565 -1.84094,-15.18727 -1.6627,-15.20509 -0.17088,0.0854 -9.60707,-4.8907 -10.3417,-9.69215 -1.57318,-4.62814 3.84701,-13.41306 4.19582,-13.29679 -0.18367,0.0459 -4.13228,-7.96382 -2.49807,-11.98279 0.67111,-3.66494 7.4073,-7.52683 7.53174,-7.42313 -0.10889,0.0545 -2.35187,-7.48617 -0.57345,-11.08065 0.97955,-3.46808 7.81374,-7.23036 7.98116,-7.15861 -0.16474,0.0412 -1.76219,-6.06944 -0.0618,-8.87421 0.86706,-2.57827 5.32018,-4.74225 5.36859,-4.54861 -0.31509,0.0788 -1.63297,-5.0224 -0.33716,-7.38269 1.06746,-2.94953 5.90428,-5.607 5.87412,-5.30544 -0.0593,0 0.14909,-4.63491 1.73435,-6.67977 1.09199,-2.83818 5.23059,-6.49208 5.30213,-6.32515 -0.13193,0.0495 1.90625,-6.4612 4.21952,-9.6367 1.30133,-2.92237 6.34678,-7.9651 6.48509,-7.9651 -0.0721,0.009 1.17726,-4.6058 3.03344,-6.74429 1.47439,-2.92429 5.62888,-6.48189 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" class="shadow" id="path2846" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc"/> + <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacaccc" id="path2848" d="m 318.99599,327.6899 c 0,0 8.40821,1.17117 9.61497,4.49727 0.93385,2.57392 -3.47797,7.44163 -3.47797,7.44163 0,0 9.08388,-0.1679 10.11034,3.2164 0.84491,2.78571 -5.44926,6.82438 -5.44926,6.82438 0,0 10.25836,0.52946 11.58201,4.44743 1.27585,3.77649 -6.27664,10.17893 -6.27664,10.17893 0,0 8.01039,1.47995 9.01294,4.71968 1.05837,3.42011 -5.03752,9.48573 -5.03752,9.48573 0,0 10.15037,2.61688 11.07464,6.85972 0.7959,3.65359 -6.21547,9.33849 -6.21547,9.33849 0,0 10.74466,2.86604 11.93526,7.39163 1.2721,4.83537 -7.21484,13.15057 -7.21484,13.15057 0,0 9.56319,7.25927 9.34405,12.44107 -0.20647,4.88224 -9.76212,10.93669 -9.76212,10.93669 0,0 10.62954,10.15013 7.63971,14.84338 -2.71578,4.26308 -15.15239,-0.59071 -15.15239,-0.59071 0,0 4.90743,17.39967 -0.85713,21.87287 -6.20132,4.81212 -23.02204,-4.94986 -23.02204,-4.94986 0,0 -2.06947,12.86558 -7.19718,14.88791 -5.5687,2.19626 -16.74854,-6.48015 -16.74854,-6.48015 0,0 -5.30284,9.59088 -10.03403,10.20801 -4.82685,0.62961 -12.56583,-7.44005 -12.56583,-7.44005 0,0 -8.02869,7.4243 -12.8887,6.95808 -4.54161,-0.43568 -10.58851,-8.67342 -10.58851,-8.67342 0,0 -9.79032,6.67867 -14.53666,4.80368 -3.96987,-1.56825 -6.13011,-11.24256 -6.13011,-11.24256 0,0 -13.0991,5.03539 -17.62156,1.26353 -3.9155,-3.26563 -1.6627,-15.20509 -1.6627,-15.20509 0,0 -9.14506,-5.1217 -10.3417,-9.69215 -1.17719,-4.49614 4.19582,-13.29679 4.19582,-13.29679 0,0 -3.67873,-8.07721 -2.49807,-11.98279 1.02002,-3.37418 7.53174,-7.42313 7.53174,-7.42313 0,0 -1.99319,-7.66551 -0.57345,-11.08065 1.37185,-3.29995 7.98116,-7.15861 7.98116,-7.15861 0,0 -1.29621,-6.18593 -0.0618,-8.87421 0.97875,-2.13151 5.36859,-4.54861 5.36859,-4.54861 0,0 -1.28579,-5.1092 -0.33716,-7.38269 1.01601,-2.43499 5.87412,-5.30544 5.87412,-5.30544 0,0 0.68057,-4.63491 1.73435,-6.67977 1.26026,-2.44554 5.30213,-6.32515 5.30213,-6.32515 0,0 2.39255,-6.64356 4.21952,-9.6367 1.78378,-2.92237 6.48509,-7.9651 6.48509,-7.9651 0,0 1.69989,-4.67113 3.03344,-6.74429 1.54055,-2.39498 5.63667,-6.41957 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccssccc" id="path2850" class="shadow" d="m 317.3515,327.6899 c 0.22023,-0.0832 13.95193,22.40956 15.51755,35.27419 7.4167,28.20029 26.15374,64.2233 5.41963,85.35354 -32.97758,33.60762 -95.87299,40.63263 -128.98295,5.78454 -16.72652,-17.60459 0.50361,-47.60411 11.1802,-71.36249 6.48324,-18.97334 29.03428,-54.79411 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 317.3515,327.6899 c 0,0 12.47759,22.79358 15.51755,35.27419 6.74669,27.69865 24.45833,64.13418 5.41963,85.35354 -28.74158,32.03359 -100.27917,37.85201 -128.98295,5.78454 -16.05853,-17.94037 3.26025,-48.62468 11.1802,-71.36249 6.85399,-19.67747 30.78578,-54.40455 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" id="path2852" sodipodi:nodetypes="caaaacc" style="display:inline;opacity:1;fill:#ffffff"/> + <path sodipodi:nodetypes="ccccc" id="path2854" class="shadow" d="m 339.32058,281.76346 c -2.00111,14.61346 -1.45571,28.77753 -0.66995,42.89919 -34.68921,1.29057 -70.43419,19.68152 -92.42015,5.19789 0.75356,-14.0727 1.75763,-29.9734 1.30418,-44.34785 33.13895,8.49273 59.08122,-5.2118 91.78592,-3.74923 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 339.32058,281.76346 c -2.7968,14.29973 -1.98265,28.59946 -0.66995,42.89919 -35.36449,0.47083 -71.84797,19.07561 -92.42015,5.19789 1.05318,-14.11595 2.82363,-30.2319 1.30418,-44.34785 30.76253,9.95515 58.50714,-4.08342 91.78592,-3.74923 z" id="path2856" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/> + <path inkscape:connector-curvature="0" d="m 333.1721,164.81697 9.92028,10.58149 c -8.50147,8.95868 -23.58459,13.14193 -33.9727,15.90151 -0.35332,-4.82062 -1.60248,-11.89123 -3.13395,-16.71185 8.60186,-1.844 22.03678,-4.11883 27.18637,-9.77115 z" id="path2858" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/> + <path inkscape:connector-curvature="0" d="m 300.08667,172.57237 -3.39194,11.16176 c 0.27347,2.33273 4.1548,5.1537 6.30994,6.62117 -0.5339,-4.37642 1.60936,-11.42013 2.96606,-15.5101 -2.28233,-0.52764 -4.46978,-1.2457 -5.88406,-2.27283 z" id="path2860" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/> + </g> + <g style="display:inline;opacity:1" inkscape:label="Torso_Outfit_Maid_Unnatural" id="Torso_Outfit_Maid_Unnatural" inkscape:groupmode="layer"> + <path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="cccccccccccccccccccc" id="path2798" d="m 360.49161,241.99223 c 0.15713,0.0673 -5.97159,18.38792 -21.70227,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 25.42564,15.0158 49.55125,45.91894 56.87042,72.68694 18.09394,39.28852 18.07129,125.05958 17.21147,125.13775 -70.8552,-22.32954 -164.13155,30.03525 -232.75934,-4.27387 -0.19735,-0.0197 4.1265,-76.03991 20.06445,-110.96586 9.2798,-30.93655 38.3703,-60.02101 53.1161,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -5.47524,-7.9954 -9.24242,-21.28882 -8.76141,-30.59601 -4.05722,-36.73329 30.65665,-66.66209 31.00076,-66.66209 -0.008,-0.0706 2.55382,-1.8267 8.72305,-2.20036 -36.01659,24.46625 -42.13809,58.83696 -39.24643,69.07094 12.14629,3.82492 34.25776,3.67112 87.23879,-1.85132 1.92836,0 6.15865,-6.88279 6.15865,-10.00465 2.71491,-24.25648 8.03999,-35.96111 9.4316,-68.9692 4.553,0.39299 4.95014,-0.2397 9.68823,1.7253 -1.04791,6.23371 0.31824,53.97628 4.75601,64.31785 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 348.47508,176.56688 c 6.23488,24.59751 4.25162,51.07322 4.99933,76.19448 -42.11798,9.03479 -85.37513,19.71113 -110.63496,3.91432 -1.95782,-18.39591 8.20167,-47.39868 32.21961,-67.27394 42.97585,-9.32822 52.0825,-17.54406 73.41602,-12.83486 z" id="path2800" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/> + <path inkscape:connector-curvature="0" d="m 360.49161,241.99223 c 0,0 -7.49782,19.06418 -21.70227,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 23.94861,15.0158 44.88197,44.35531 56.87042,72.68694 16.40822,38.7766 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.44834,-75.93029 20.06445,-110.96586 12.02699,-30.9466 39.38887,-59.8755 53.1161,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -4.94422,-8.06178 -8.45116,-21.38773 -8.76141,-30.59601 -3.92817,-36.49728 30.67927,-66.58172 31.00076,-66.66209 0,0 2.59939,-1.41654 8.72305,-2.20036 -36.76659,20.96625 -42.13809,58.83696 -39.24643,69.07094 24.85388,-0.61208 66.61629,9.56619 108.02244,-11.10597 1.4423,-26.38913 0.15792,-38.14578 -5.1934,-69.7192 4.57973,0.53998 5.03464,0.22507 9.68823,1.7253 -1.36935,6.31407 -0.62585,54.2123 4.75601,64.31785 z" id="path2803" sodipodi:nodetypes="ccccaccaccccccccccc" style="display:inline;opacity:1;fill:#333333"/> + <path inkscape:connector-curvature="0" d="m 306.1115,174.72723 3.10935,13.7728 c -3.58883,0.28907 -4.19632,0.25785 -6.36265,-0.32791 1.00219,-12.04918 3.2533,-13.44489 3.2533,-13.44489 z" id="path2805" sodipodi:nodetypes="cccc" style="display:inline;opacity:1;fill:#ffffff"/> + <path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="ccccc" id="path2807" d="m 300.08667,172.57237 c -2.03237,3.63344 -2.40946,7.63281 -3.39194,11.16176 -0.11097,2.48059 4.02564,5.20338 6.30994,6.62117 -0.11352,-4.35414 2.20104,-11.31333 2.96606,-15.5101 -2.0837,-0.64114 -4.38743,-1.29276 -5.88406,-2.27283 z" inkscape:connector-curvature="0"/> + <path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="ccccc" id="path2810" d="m 333.1721,164.81697 c 3.12234,3.33135 7.8525,6.78145 9.92028,10.58149 -7.93754,9.36149 -23.35479,13.30607 -33.9727,15.90151 -0.57861,-4.86704 -2.13199,-11.9051 -3.13395,-16.71185 8.60186,-2.43964 22.03678,-4.58024 27.18637,-9.77115 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 318.99599,327.6899 c 0.0644,-0.16109 8.65228,0.56099 9.61497,4.49727 1.3512,2.8737 -3.34911,7.53093 -3.47797,7.44163 -0.0771,-0.15425 8.84757,-0.64052 10.11034,3.2164 1.02068,3.07865 -5.38909,6.92467 -5.44926,6.82438 0.23172,-0.20855 10.82387,0.0205 11.58201,4.44743 1.38783,4.11242 -6.22864,10.32292 -6.27664,10.17893 0.21991,-0.13745 8.43834,1.21248 9.01294,4.71968 1.2288,3.81779 -4.96917,9.64522 -5.03752,9.48573 0.21257,-0.13285 10.58372,2.34604 11.07464,6.85972 1.25518,3.94064 -6.04041,9.4479 -6.21547,9.33849 0.13515,-0.11263 11.08656,2.58112 11.93526,7.39163 1.71015,4.99964 -7.00879,13.22784 -7.21484,13.15057 0.0942,-0.0157 9.93077,7.19801 9.34405,12.44107 0.10908,5.19779 -9.69913,10.99968 -9.76212,10.93669 0.18533,-0.0824 11.15376,9.91714 7.63971,14.84338 -2.61785,4.65478 -15.08597,-0.32502 -15.15239,-0.59071 0.33431,-0.16715 5.3952,17.15578 -0.85713,21.87287 -6.50245,5.00033 -23.38239,-4.72464 -23.02204,-4.94986 0.22183,0.0246 -1.66191,12.7012 -7.19718,14.88791 -5.5687,2.47972 -16.74854,-6.17807 -16.74854,-6.48015 0.21345,0.4269 -5.07562,9.91879 -10.03403,10.20801 -5.55297,0.42338 -12.95531,-7.17693 -12.56583,-7.44005 0.36032,0.1488 -7.16402,7.27921 -12.8887,6.95808 -4.83568,-0.14563 -10.74277,-8.48059 -10.58851,-8.67342 0.22444,0.19238 -9.22718,7.16136 -14.53666,4.80368 -4.70766,-1.85637 -6.31717,-11.27134 -6.13011,-11.24256 -0.0365,0.3281 -13.14523,5.45055 -17.62156,1.26353 -4.51529,-3.20565 -1.84094,-15.18727 -1.6627,-15.20509 -0.17088,0.0854 -9.60707,-4.8907 -10.3417,-9.69215 -1.57318,-4.62814 3.84701,-13.41306 4.19582,-13.29679 -0.18367,0.0459 -4.13228,-7.96382 -2.49807,-11.98279 0.67111,-3.66494 7.4073,-7.52683 7.53174,-7.42313 -0.10889,0.0545 -2.35187,-7.48617 -0.57345,-11.08065 0.97955,-3.46808 7.81374,-7.23036 7.98116,-7.15861 -0.16474,0.0412 -1.76219,-6.06944 -0.0618,-8.87421 0.86706,-2.57827 5.32018,-4.74225 5.36859,-4.54861 -0.31509,0.0788 -1.63297,-5.0224 -0.33716,-7.38269 1.06746,-2.94953 5.90428,-5.607 5.87412,-5.30544 -0.0593,0 0.14909,-4.63491 1.73435,-6.67977 1.09199,-2.83818 5.23059,-6.49208 5.30213,-6.32515 -0.13193,0.0495 1.90625,-6.4612 4.21952,-9.6367 1.30133,-2.92237 6.34678,-7.9651 6.48509,-7.9651 -0.0721,0.009 1.17726,-4.6058 3.03344,-6.74429 1.47439,-2.92429 5.62888,-6.48189 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" class="shadow" id="path2812" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc"/> + <path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacaccc" id="path2814" d="m 318.99599,327.6899 c 0,0 8.40821,1.17117 9.61497,4.49727 0.93385,2.57392 -3.47797,7.44163 -3.47797,7.44163 0,0 9.08388,-0.1679 10.11034,3.2164 0.84491,2.78571 -5.44926,6.82438 -5.44926,6.82438 0,0 10.25836,0.52946 11.58201,4.44743 1.27585,3.77649 -6.27664,10.17893 -6.27664,10.17893 0,0 8.01039,1.47995 9.01294,4.71968 1.05837,3.42011 -5.03752,9.48573 -5.03752,9.48573 0,0 10.15037,2.61688 11.07464,6.85972 0.7959,3.65359 -6.21547,9.33849 -6.21547,9.33849 0,0 10.74466,2.86604 11.93526,7.39163 1.2721,4.83537 -7.21484,13.15057 -7.21484,13.15057 0,0 9.56319,7.25927 9.34405,12.44107 -0.20647,4.88224 -9.76212,10.93669 -9.76212,10.93669 0,0 10.62954,10.15013 7.63971,14.84338 -2.71578,4.26308 -15.15239,-0.59071 -15.15239,-0.59071 0,0 4.90743,17.39967 -0.85713,21.87287 -6.20132,4.81212 -23.02204,-4.94986 -23.02204,-4.94986 0,0 -2.06947,12.86558 -7.19718,14.88791 -5.5687,2.19626 -16.74854,-6.48015 -16.74854,-6.48015 0,0 -5.30284,9.59088 -10.03403,10.20801 -4.82685,0.62961 -12.56583,-7.44005 -12.56583,-7.44005 0,0 -8.02869,7.4243 -12.8887,6.95808 -4.54161,-0.43568 -10.58851,-8.67342 -10.58851,-8.67342 0,0 -9.79032,6.67867 -14.53666,4.80368 -3.96987,-1.56825 -6.13011,-11.24256 -6.13011,-11.24256 0,0 -13.0991,5.03539 -17.62156,1.26353 -3.9155,-3.26563 -1.6627,-15.20509 -1.6627,-15.20509 0,0 -9.14506,-5.1217 -10.3417,-9.69215 -1.17719,-4.49614 4.19582,-13.29679 4.19582,-13.29679 0,0 -3.67873,-8.07721 -2.49807,-11.98279 1.02002,-3.37418 7.53174,-7.42313 7.53174,-7.42313 0,0 -1.99319,-7.66551 -0.57345,-11.08065 1.37185,-3.29995 7.98116,-7.15861 7.98116,-7.15861 0,0 -1.29621,-6.18593 -0.0618,-8.87421 0.97875,-2.13151 5.36859,-4.54861 5.36859,-4.54861 0,0 -1.28579,-5.1092 -0.33716,-7.38269 1.01601,-2.43499 5.87412,-5.30544 5.87412,-5.30544 0,0 0.68057,-4.63491 1.73435,-6.67977 1.26026,-2.44554 5.30213,-6.32515 5.30213,-6.32515 0,0 2.39255,-6.64356 4.21952,-9.6367 1.78378,-2.92237 6.48509,-7.9651 6.48509,-7.9651 0,0 1.69989,-4.67113 3.03344,-6.74429 1.54055,-2.39498 5.63667,-6.41957 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccssccc" id="path2816" class="shadow" d="m 317.3515,327.6899 c 0.22023,-0.0832 13.95193,22.40956 15.51755,35.27419 7.4167,28.20029 26.15374,64.2233 5.41963,85.35354 -32.97758,33.60762 -95.87299,40.63263 -128.98295,5.78454 -16.72652,-17.60459 0.50361,-47.60411 11.1802,-71.36249 6.48324,-18.97334 29.03428,-54.79411 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 317.3515,327.6899 c 0,0 12.47759,22.79358 15.51755,35.27419 6.74669,27.69865 24.45833,64.13418 5.41963,85.35354 -28.74158,32.03359 -100.27917,37.85201 -128.98295,5.78454 -16.05853,-17.94037 3.26025,-48.62468 11.1802,-71.36249 6.85399,-19.67747 30.78578,-54.40455 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" id="path2818" sodipodi:nodetypes="caaaacc" style="display:inline;opacity:1;fill:#ffffff"/> + <path sodipodi:nodetypes="ccccc" id="path2820" class="shadow" d="m 339.13308,281.76346 c -2.00111,14.61346 -1.45571,28.77753 -0.66995,42.89919 -34.68921,1.29057 -67.37169,19.68152 -89.35765,5.19789 0.75356,-14.0727 1.75763,-29.9734 1.30418,-44.34785 33.13895,8.49273 56.01872,-5.2118 88.72342,-3.74923 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 339.13308,281.76346 c -2.7968,14.29973 -1.98265,28.59946 -0.66995,42.89919 -35.36449,0.47083 -68.78547,19.07561 -89.35765,5.19789 1.05318,-14.11595 2.82363,-30.2319 1.30418,-44.34785 30.76253,9.95515 55.44464,-4.08342 88.72342,-3.74923 z" id="path2822" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/> + <path inkscape:connector-curvature="0" d="m 333.1721,164.81697 9.92028,10.58149 c -8.50147,8.95868 -23.58459,13.14193 -33.9727,15.90151 -0.35332,-4.82062 -1.60248,-11.89123 -3.13395,-16.71185 8.60186,-1.844 22.03678,-4.11883 27.18637,-9.77115 z" id="path2824" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/> + <path inkscape:connector-curvature="0" d="m 300.08667,172.57237 -3.39194,11.16176 c 0.27347,2.33273 4.1548,5.1537 6.30994,6.62117 -0.5339,-4.37642 1.60936,-11.42013 2.96606,-15.5101 -2.28233,-0.52764 -4.46978,-1.2457 -5.88406,-2.27283 z" id="path2827" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/> </g> <g style="display:inline;opacity:1" inkscape:label="Torso_Outfit_Maid_Lewd_Hourglass" id="Torso_Outfit_Maid_Lewd_Hourglass" inkscape:groupmode="layer"> <path sodipodi:nodetypes="cccccccc" id="path1324" d="m 335.00494,318.53533 c 0,0 2.60164,5.12801 3.8029,7.55426 25.71294,14.33721 27.05663,26.64309 35.62962,42.89594 17.04103,22.01109 30.69729,67.66847 30.59015,67.64028 -69.47194,-27.02108 -141.01271,33.62811 -211.75934,0.10113 -0.31621,0.0288 6.12371,-40.57469 17.18577,-59.21839 7.74975,-20.12879 34.51048,-43.442 39.5444,-54.469 20.08971,8.80583 55.63969,-1.71367 85.0065,-4.50422 z" inkscape:connector-curvature="0" class="shadow"/> @@ -749,16 +765,16 @@ </g> <g inkscape:groupmode="layer" id="Arm_Hair" inkscape:label="Arm_Hair" style="display:inline"> <g style="display:inline" inkscape:label="Arm_Down_Hair_Neat" id="Arm_Down_Hair_Neat" inkscape:groupmode="layer"> - <path sodipodi:nodetypes="ccc" id="path3325" class="armpit_hair" d="m 360.64122,234.43118 c -1.78847,-3.72504 -3.61047,-12.89756 -3.19383,-24.4475 1.19043,6.54449 2.6192,20.32885 3.19383,24.4475 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 354.05629,228.07423 c 1.39185,-4.39624 2.09719,-9.60653 4.00065,-14.414 0.54189,4.42694 0.7503,4.99021 0.86324,6.92685 -1.39276,2.16548 -2.43234,4.46572 -4.86389,7.48715 z" class="armpit_hair" id="XMLID_590_-04-8-9-4-9-6" sodipodi:nodetypes="cccc"/> </g> <g inkscape:label="Arm_Down_Hair_Bushy" id="Arm_Down_Hair_Bushy" inkscape:groupmode="layer" style="display:inline"> <path sodipodi:nodetypes="cccccccccccccccccccccc" id="path1099" class="armpit_hair" d="m 360.24347,231.86792 0.62233,4.65711 c 0.55578,0.2551 -7.99816,5.95284 -3.27038,-0.65737 -3.09359,5.37627 2.92909,-0.003 2.17022,-2.14111 -1.53423,0.28812 -5.71284,3.52639 -5.25133,8.12415 -0.98363,-3.5058 2.9824,-9.77272 4.83736,-11.83806 -0.18244,1.45667 -8.26869,-0.51242 -3.88775,5.73641 -5.3105,-5.44303 2.41392,-7.14507 3.39202,-9.43961 0.45356,1.56568 -1.24519,3.2832 -7.4966,4.08414 3.46772,-0.44603 7.11012,-4.45071 7.06734,-6.77892 -2.40629,-0.74554 -6.1703,2.17421 -5.81219,4.21371 -0.25259,-2.66244 3.06309,-5.85365 5.67489,-7.08339 -0.9377,1.02012 -4.71933,0.89387 -3.06732,-2.07507 -0.83642,1.71326 1.4865,2.34105 2.34002,-0.14383 -1.70746,-1.70745 -3.52581,-1.63585 -3.89757,0.0658 0.97561,-3.83828 3.37716,-1.67017 4.2302,-1.64816 -0.32331,-0.41565 -0.17879,-0.76893 -0.0751,-1.12765 -2.01181,0.29687 -4.33853,-2.08468 -4.3297,-2.13619 1.72132,0.72587 4.20901,1.47818 4.21081,0.17288 0,0 -0.11184,-2.03629 -0.16497,-3.11735 1.19043,6.54449 2.70769,21.13294 2.70769,21.13294 z" inkscape:connector-curvature="0"/> </g> <g inkscape:groupmode="layer" id="Arm_Up_Hair_Neat" inkscape:label="Arm_Up_Hair_Neat" style="display:inline"> - <path inkscape:connector-curvature="0" d="m 361.07872,235.74368 c -0.94878,-8.80737 -2.85473,-24.59569 2.37908,-28.8536 2.1627,9.19615 -2.2466,10.90217 -2.37908,28.8536 z" class="armpit_hair" id="XMLID_590_-04-8-9-4-9" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 353.82758,228.26371 c 2.63427,-8.3205 2.8094,-19.55701 13.30247,-25.45963 -2.25337,1.88046 -2.3103,2.56478 -2.3103,2.56478 0,0 3.92159,-2.74342 6.0617,-3.75361 -2.13734,1.00888 -7.90174,6.73287 -7.90174,6.73287 0,0 5.25855,-3.57777 7.96714,-4.85629 -2.65821,1.36333 -7.78621,6.57323 -7.78621,6.57323 0,0 5.96459,-4.60503 10.05437,-5.34594 -4.10883,0.74436 -10.03306,6.87998 -10.03306,6.87998 0,0 6.35061,-4.58166 9.43389,-4.32646 -3.08434,-0.25529 -10.12328,6.20939 -10.12328,6.20939 0,0 6.98773,-5.58977 9.97576,-4.51804 -2.94589,-1.05661 -10.71107,6.34907 -10.71107,6.34907 0,0 6.61595,-4.68536 9.63061,-3.60408 -3.02656,-1.08555 -10.21842,5.09377 -10.21842,5.09377 0,0 0.60053,-0.37366 1.37241,-0.41639 -4.47366,3.77416 -4.63821,6.81245 -8.71427,11.87735 z" class="armpit_hair" id="XMLID_590_-04-8-9-4-9" sodipodi:nodetypes="ccccccccccccccccc"/> </g> <g style="display:inline" inkscape:groupmode="layer" id="Arm_Up_Hair_Bushy" inkscape:label="Arm_Up_Hair_Bushy"> - <path inkscape:connector-curvature="0" d="m 360.53365,236.48083 c -0.55578,0.2551 1.01548,-0.63209 3.04941,3.3643 -0.97228,-3.1532 -2.70812,-4.02467 -1.94925,-6.16278 1.53423,0.28812 5.80123,-1.42335 5.33972,3.17441 0.98363,-3.5058 -3.07079,-4.82298 -4.92575,-6.88832 0.18244,1.45667 11.2297,-1.04275 6.84876,5.20608 5.3105,-5.44303 -2.41392,-7.14507 -3.39202,-9.43961 -0.45356,1.56568 -1.45066,-1.04783 4.80075,-0.24689 -3.46772,-0.44603 -8.11396,-3.23134 -7.33132,-5.42448 2.51841,0.0603 4.53675,2.08298 3.54725,3.90196 1.08804,-2.44307 -0.41883,-4.58012 -2.50244,-6.5782 0.56364,1.26579 4.18828,2.35147 3.56874,-0.98917 0.24672,1.8905 -2.15515,1.74514 -2.17213,-0.88218 2.16264,-1.07417 3.58587,0.37498 2.70189,1.87578 1.89339,-3.4784 -1.34178,-3.52056 -1.98242,-4.08425 0.51967,-0.0851 0.6538,-0.44246 0.82158,-0.77605 1.2738,1.58522 4.59918,1.41997 4.62772,1.37618 -1.75593,-0.63763 -4.09192,-1.77678 -3.206,-2.73539 0,0 -0.30162,-0.93139 0.47217,-1.6882 -1.17562,0.12647 -1.50552,0.39685 -2.29732,1.39659 0.43889,-0.74403 0.22952,-1.36458 0.27651,-2.03396 -0.19789,1.53736 -0.94588,2.69608 -2.74427,3.1318 0.29183,-1.13068 -0.21459,-1.42216 -0.71523,-1.71972 0.596,1.32079 -0.14863,1.44588 -1.07278,1.41086 -0.87655,-1.71928 0.22738,-2.55256 0.83323,-3.60866 -1.93061,0.6298 -3.38367,1.69073 -3.81887,3.67055 -0.70564,-0.81459 -0.56273,-1.73524 -0.459,-2.651 -0.65736,0.85385 -1.14327,1.8183 -1.15811,3.08668 l 1.88893,15.25586 c 0,0 1.15763,7.50544 0.95025,9.05781 z" class="armpit_hair" id="path3321" sodipodi:nodetypes="cccccccccccccccccccccccccccccc"/> + <path inkscape:connector-curvature="0" d="m 354.20431,225.28332 c -0.61112,0.0223 1.18028,-0.1941 1.52525,4.27681 0.31193,-3.28492 -0.95671,-4.75569 0.56442,-6.43901 1.30627,0.85471 5.90336,0.91135 3.71313,4.98017 2.25343,-2.86011 -0.98533,-5.63205 -1.90592,-8.25103 -0.39041,1.41519 10.77036,3.34558 4.32719,7.43534 8.5248,-4.57088 -5.60608,-14.3046 5.01736,-8.4047 -3.0312,-1.74236 -3.14502,-4.92117 -0.87788,-5.45267 1.31482,2.14877 0.7096,4.94138 -1.3553,5.0962 2.64273,-0.41036 3.62136,-2.83526 4.1705,-5.66937 -0.75797,1.1599 0.29507,4.79417 2.76613,2.46231 -1.45473,1.23233 -2.63489,-0.86465 -0.43645,-2.30346 2.07516,1.23475 1.62919,3.21634 -0.11115,3.28731 3.94931,-0.29507 2.23064,-3.03628 2.35691,-3.88021 0.67358,1.25061 0.49749,1.49403 1.53676,2.24415 -1.02483,-1.3448 0.3076,-2.81529 0.72915,-3.20865 0.86312,-0.0346 1.27103,-0.54702 1.85896,-0.87047 -0.6731,0.32102 -1.5432,-0.54456 -2.31305,-1.72962 -0.2374,-0.36546 0.98951,-1.49356 1.11803,-2.66756 -0.68914,1.5688 -2.21073,0.66309 -2.37984,0.26276 -0.23543,-0.55727 -0.41307,-1.06893 -0.50614,-1.45692 1.13002,0.29438 1.42264,-0.21138 1.72133,-0.71135 -1.32214,0.59302 -1.44554,-0.15189 -1.40844,-1.07596 1.72125,-0.87267 2.55204,0.23313 3.60677,0.84136 -0.62544,-1.93202 -1.6831,-3.38747 -3.66192,-3.82713 0.81617,-0.7038 1.73649,-0.55881 2.65202,-0.45302 -0.85236,-0.65929 -1.81572,-1.14737 -3.08406,-1.16507 -3.6659,0.85993 -12.95933,3.61857 -17.02603,17.95061 0,0 -1.8106,7.37519 -2.59771,8.72919 z" class="armpit_hair" id="path3321" sodipodi:nodetypes="cccccccccccccccccscscccccccccc"/> </g> </g> <g inkscape:groupmode="layer" id="Navel_Addons_" inkscape:label="Navel_Addons_" style="display:inline"> @@ -1595,49 +1611,516 @@ </g> </g> <g inkscape:groupmode="layer" id="Boob_" style="display:inline" inkscape:label="Boob_"> - <g inkscape:groupmode="layer" id="Boob_Scaled_" style="display:inline" inkscape:label="Boob_Scaled_"> - <g inkscape:groupmode="layer" id="Boob" style="display:inline;opacity:1" inkscape:label="Boob"> - <g id="g1065"> - <path d="m 270.34578,196.55707 c -12.11058,4.47607 -21.33353,10.38476 -27.42519,17.04587 -12.80622,2.09756 -20.32972,7.4459 -28.75481,12.23956 -3.26563,12.08634 -5.14611,24.17711 3.20444,36.14887 5.15461,10.33009 14.73224,11.95658 25.07247,9.77599" id="path1520" class="shadow" inkscape:connector-curvature="0"/> - <path d="m 242.44269,271.76736 c 12.30515,-2.59845 22.51491,-12.16054 31.77186,-26.40779 l -3.86877,-48.8025" id="path1515" class="shadow boob_inner_lower_shadow" inkscape:connector-curvature="0"/> - <path d="m 274.21455,245.35957 c 2.55546,-15.31136 11.88781,-30.84621 8.29579,-40.31411 -1.93843,-3.02612 -7.62333,-5.27685 -12.16456,-8.48839" id="path1056" class="shadow boob_inner_upper_shadow" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 270.34578,196.55707 c -10.88689,5.21029 -20.86401,10.66647 -27.42519,17.04587 -11.65071,2.84039 -19.91205,7.7144 -28.75481,12.23956 -2.67807,12.04962 -3.90036,24.09925 3.20444,36.14887 6.4429,9.38534 15.09934,11.68738 25.07247,9.77599 11.51523,-3.31656 22.0236,-12.60719 31.77186,-26.40779 0.22345,-1.05729 4.92073,-9.04451 4.92073,-9.04451 0,0 -0.41676,-3.88071 1.50778,-14.12355 1.3857,-6.23043 2.34993,-12.6411 1.86728,-17.14605 -0.96883,-4.15211 -3.23773,-9.62848 -12.16456,-8.48839 z" class="skin boob" id="XMLID_588_" sodipodi:nodetypes="cccccccccc"/> - </g> - <g id="g1069"> - <path d="m 279.17149,241.98615 c 6.27955,31.26499 54.26517,32.7166 68.84808,6.56488" id="path1518" class="shadow boob_inner_lower_shadow" inkscape:connector-curvature="0"/> - <path d="m 348.02257,248.51893 c 8.65355,-12.30579 11.43144,-30.88254 -0.97284,-43.4189 l -67.88132,36.91816" id="path1524" class="shadow" inkscape:connector-curvature="0"/> - <path d="m 347.04977,205.10006 c -14.67089,-12.96908 -28.30339,-7.92276 -38.99561,-8.00176 -24.21445,12.16832 -31.98806,25.58323 -28.88571,44.91992" id="path1050" class="shadow boob_inner_upper_shadow" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="csccc" id="path1042" class="skin boob" d="m 348.02261,248.51896 c 7.65465,-13.28462 11.02267,-29.82946 -0.97284,-43.4189 -13.16154,-14.9104 -25.83696,-10.05 -38.46528,-8.66467 -23.32793,11.82921 -31.64375,27.39415 -29.41604,45.58283 9.02747,30.88382 54.47239,31.60541 68.85416,6.50074 z" inkscape:connector-curvature="0"/> - </g> - </g> - <g inkscape:label="Boob_back_" style="display:inline;opacity:1" id="Boob_back_" inkscape:groupmode="layer"> - <g id="g1031"> - <path inkscape:connector-curvature="0" d="m 242.92059,213.60294 c -14.19794,4.82368 -20.00019,6.39194 -25.92638,13.38861 -9.04477,10.67857 -6.37031,27.70524 0.37601,34.99982 2.47829,3.55327 12.05265,13.5715 25.07247,9.77599 14.78911,-4.31129 28.08275,-19.04793 35.66095,-29.76655 8.85355,27.42583 51.12087,37.51696 69.91897,6.51815 9.4955,-12.56066 7.58029,-37.75952 -4.20721,-46.93452 -15.35794,-6.9613 -35.81658,-4.80431 -35.81658,-4.80431 -5.54048,0.45878 -20.56861,4.16469 -24.93467,4.67913 -23.35197,2.7515 -29.55361,1.28089 -40.14356,12.14368 z" class="shadow boob" id="path1027" sodipodi:nodetypes="cscsccccsc"/> - <path sodipodi:nodetypes="ccscsccsc" id="path1029" class="skin boob" d="m 283.0737,200.8881 c -26.58529,0.48823 -32.05311,6.01484 -40.15311,12.71484 -17.2121,6.55172 -20.13904,6.41341 -25.92638,13.38861 -8.91343,10.74292 -5.74857,27.56708 0.37601,34.99982 2.9713,3.61127 12.0841,13.18009 25.07247,9.77599 14.53688,-3.80995 28.67981,-20.84961 35.66095,-29.76655 8.5,26.1 51.78378,36.4563 69.91897,6.51815 8.7,-11.5 7.9089,-38.6903 -5.22284,-47.6064 -14.13669,-9.59844 -34.74263,-4.4546 -34.74263,-4.4546" inkscape:connector-curvature="0"/> - </g> - <path inkscape:connector-curvature="0" d="m 281.11239,224.03216 c 4.25,-12.71324 13.0603,-19.40588 27.18824,-27.60147 -14.45735,8.97059 -21.28677,14.51617 -27.18824,27.60147 z" class="shadow" id="path1033" sodipodi:nodetypes="ccc"/> - <path inkscape:connector-curvature="0" d="m 281.02323,224.48521 c 1.2,-3.4 5.25883,-10.72353 1.95883,-23.52353 1.3,10.7 -0.65883,18.02353 -1.95883,23.52353 z" class="shadow" id="path1035" sodipodi:nodetypes="ccc"/> - </g> - <g inkscape:groupmode="layer" id="Boob_Areola" style="display:inline;opacity:1" inkscape:label="Boob_Areola"> - <g id="g1027" transform="matrix(1.0036748,0,0,1.0036748,-0.82340761,-0.81073623)"> - <path id="XMLID_592_" class="areola" d="m 224.06836,220.86839 c 0,0 -0.39131,3.31112 -2.35082,6.67438 -1.9595,3.36326 -9.06529,7.55149 -9.06529,7.55149 0,0 -0.24448,-6.64388 0.46015,-8.06326 0.70464,-1.41938 1.13831,-2.19079 3.06684,-3.56226 2.42539,-1.72481 7.88912,-2.60035 7.88912,-2.60035 z" inkscape:connector-curvature="0" sodipodi:nodetypes="czczsc"/> - <path id="path3138" class="shadow" d="m 213.5671,226.66466 c 0,0 -1.9262,-1.30979 -1.44901,-2.97247 0.72632,-2.03671 3.90583,-3.99822 5.40947,-2.60058 0.64103,0.66345 0.91915,1.64032 0.91915,1.64032 -0.84654,2.52287 -2.28501,3.51024 -4.87961,3.93273 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/> - <path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" d="m 213.5671,226.66466 c 0,0 -1.91057,-1.4426 -1.44901,-2.97247 0.64038,-1.86093 4.03474,-3.95134 5.40947,-2.60058 0.55119,0.59704 0.91915,1.64032 0.91915,1.64032 -0.80357,2.35099 -2.35142,3.51024 -4.87961,3.93273 z" class="areola" id="XMLID_592_-5"/> - <path id="path3138-3" class="shadow" d="m 213.01263,222.46595 c 0.75085,-0.36944 1.35215,-0.13684 2.65343,0.43025 -1.21381,-0.3264 -1.67129,-0.78189 -2.65343,-0.43025 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> - <path id="path3138-3-7" class="shadow" d="m 214.0315,222.35507 c 0.054,-0.31278 0.30778,-0.85942 1.02206,-0.7758 -0.84623,0.0699 -0.82527,0.44046 -1.02206,0.7758 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> - <path id="path3138-3-7-4" class="shadow" d="m 214.73116,227.20469 c 2.09105,-0.65605 3.58115,-2.24941 3.44394,-3.80315 0.0522,0.95271 -0.13777,2.92874 -3.44394,3.80315 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> - </g> - <g id="g1036" transform="matrix(1.0212835,0,0,1.0212835,-6.4679552,-4.3556102)"> - <path inkscape:connector-curvature="0" id="XMLID_593_" d="m 314.17289,222.1657 c -5.09999,-0.56255 -10.25389,-4.32121 -10.27808,-7.69008 -0.0309,-4.29936 6.47452,-8.78659 12.1893,-8.53652 5.37398,0.23516 10.98206,3.74015 9.88043,8.95113 -1.10163,5.21098 -5.6937,7.9481 -11.79165,7.27547 z" class="areola" sodipodi:nodetypes="sssss"/> - <path inkscape:connector-curvature="0" id="path989" d="m 310.66882,210.47597 c -0.72765,-0.9361 -0.60753,-2.39965 -0.40684,-3.08293 0.48386,-1.83702 2.61601,-2.7715 4.4734,-2.74561 1.62871,0.0227 2.55147,0.26096 3.28224,1.71217 0.79333,0.61754 0.84585,1.67252 0.80454,1.72014 -0.21669,1.5267 -1.22761,3.71824 -4.19389,3.59586 -2.37989,0.11991 -3.19283,-0.0317 -3.95945,-1.19963 z" class="shadow" sodipodi:nodetypes="ccscccc"/> - <path sodipodi:nodetypes="csscccc" class="areola" d="m 310.66882,210.47597 c -0.49696,-0.95917 -0.60188,-2.41088 -0.40684,-3.08293 0.51036,-1.75854 2.81349,-2.72569 4.4734,-2.74561 1.63641,-0.0196 2.56087,0.48653 3.28224,1.71217 0.66484,0.73435 0.82922,1.68764 0.80454,1.72014 -0.28461,1.4286 -1.29226,3.62486 -4.19389,3.59586 -2.24349,0.003 -3.12877,-0.0866 -3.95945,-1.19963 z" id="XMLID_593_-8" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" id="path3990-3" d="m 311.71553,206.60898 c 1.5946,-0.62 3.11448,0.2184 4.10335,1.04883 -1.18741,-0.57935 -2.70593,-1.37335 -4.10335,-1.04883 z" class="shadow" sodipodi:nodetypes="ccc"/> - <path sodipodi:nodetypes="ccc" class="shadow" d="m 313.5577,206.59854 c 0.90959,-0.79125 1.45758,-1.00189 2.8221,-0.87304 -1.2758,0.0449 -1.85557,0.27784 -2.8221,0.87304 z" id="path3990-3-1" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" id="path3990-3-0" d="m 311.13963,210.57541 c 7.68349,1.59713 7.01758,-3.72676 6.8783,-4.2566 0.46399,3.23262 -1.47339,5.97095 -6.8783,4.2566 z" class="shadow" sodipodi:nodetypes="ccc"/> - <path id="path3138-3-7-4-8" class="shadow" d="m 312.99355,212.30782 c 4.05401,-0.41435 5.26872,-1.30083 5.69395,-3.68596 -0.0494,2.76521 -2.25496,3.48343 -5.69395,3.68596 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> - </g> - </g> - <g inkscape:label="Boob_Areola_NoBoob" style="display:inline;opacity:1" id="Boob_Areola_NoBoob" inkscape:groupmode="layer"> + <g style="display:inline" inkscape:label="Boob_Huge_" id="Boob_Huge_" inkscape:groupmode="layer"> + <g inkscape:groupmode="layer" id="Boob_Huge" style="display:inline;opacity:1" inkscape:label="Boob_Huge"> + <g id="g2276" transformVariableName="_boob_right_art_transform" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path sodipodi:nodetypes="cccccccc" id="path2272" class="shadow" d="m 251.94799,202.06126 c -5.48922,8.60644 -14.21655,16.55553 -29.5132,24.802 -2.66627,10.79115 -4.57141,18.93814 5.09449,27.8494 6.92439,7.7255 14.82723,9.34865 24.00444,4.54068 9.9758,-4.87332 -2.88363,-0.91055 5.62068,-13.48656 0.51484,-8.64963 4.02743,-15.80582 5.08765,-21.2787 1.24098,-5.57972 1.78028,-10.00392 -5.51886,-16.34477 -5.28827,-4.59399 1.66486,-7.34429 -4.7752,-6.08205 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 251.94799,202.06126 c -4.58269,8.82904 -14.93008,17.30782 -29.5132,24.802 -2.39837,10.79115 -3.45193,18.69011 5.09449,27.8494 7.45154,6.95799 15.65465,8.14394 24.00444,4.54068 9.42591,-5.13062 -3.89307,-1.68704 5.62068,-13.48656 3.23278,-7.85413 5.17648,-15.27549 6.2367,-20.74837 1.24098,-5.57972 -0.87916,-14.57204 -5.2095,-19.8803 -1.46475,-1.79553 -0.006,-6.28363 -6.23361,-3.07685 z" class="skin boob" id="path2274" sodipodi:nodetypes="ccccccac"/> + </g> + <g id="g2282" transformVariableName="_boob_left_art_transform" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path inkscape:connector-curvature="0" d="m 322.52175,198.05651 c -4.11529,-0.17415 -4.6911,0.99135 -11.14734,1.40095 -6.05493,6.21998 -12.33211,13.08022 -17.97286,20.11452 -8.89026,9.35249 -11.15253,21.87785 -4.29471,30.50069 8.26604,12.77039 34.79999,12.67441 44.46576,0.60856 6.73235,-7.12225 6.42177,-20.48446 -1.27924,-30.36173 -5.66858,-9.77024 -9.11055,-18.938 -9.77161,-22.26299 z" class="shadow" id="path2307" sodipodi:nodetypes="ccccccc"/> + <path sodipodi:nodetypes="ccssssc" id="path2280" class="skin boob" d="m 322.52175,198.05651 c -4.11529,-1.2502 -4.6911,-1.40468 -11.14734,1.40095 -5.76044,6.21998 -11.66471,13.08022 -17.97286,20.11452 -8.22932,9.17663 -10.424,21.68399 -4.29471,30.50069 8.32079,11.96907 34.87117,11.63286 44.46576,0.60856 6.19858,-7.12225 5.94519,-20.48446 -1.27924,-30.36173 -6.92244,-9.4644 -9.19482,-18.91693 -9.77161,-22.26299 z" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:label="Boob_Huge_Areolae_Normal" style="display:inline;opacity:1" id="Boob_Huge_Areolae_Normal" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2568" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path sodipodi:nodetypes="czczsc" inkscape:connector-curvature="0" d="m 227.14891,224.34464 c 0,0 0.24231,2.57487 -0.69623,5.44459 -0.93851,2.86971 -5.64569,7.20295 -5.64569,7.20295 0,0 -1.26707,-4.99893 -0.96376,-6.1901 0.30329,-1.19118 0.50662,-1.84681 1.74593,-3.20091 1.5586,-1.70299 5.55975,-3.25653 5.55975,-3.25653 z" class="areola" id="path2566"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2572" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path sodipodi:nodetypes="sssss" class="areola" d="m 309.93277,231.30328 c -3.40637,-0.37574 -6.84874,-2.88621 -6.8649,-5.13633 -0.0207,-2.87162 4.32444,-5.86871 8.14144,-5.70169 3.58937,0.15706 7.3351,2.49811 6.5993,5.97861 -0.7358,3.4805 -3.80292,5.30866 -7.87584,4.85941 z" id="path2570" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Huge_Areolae_Large" style="display:inline;opacity:1" inkscape:label="Boob_Huge_Areolae_Large"> + <g id="g2578" transformVariableName="_boob_right_art_transform" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path id="path2576" class="areola" d="m 228.60733,223.47737 c 0,0 0.30094,3.19792 -0.8647,6.76203 -1.16561,3.5641 -7.01179,8.94586 -7.01179,8.94586 0,0 -1.57367,-6.20853 -1.19696,-7.68793 0.37668,-1.47941 0.62921,-2.29369 2.16839,-3.97544 1.93574,-2.11507 6.90506,-4.04452 6.90506,-4.04452 z" inkscape:connector-curvature="0" sodipodi:nodetypes="czczsc"/> + </g> + <g id="g2582" transformVariableName="_boob_left_art_transform" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path inkscape:connector-curvature="0" id="path2580" d="m 310.0179,234.96812 c -4.61957,-0.50956 -9.28796,-3.91415 -9.30987,-6.96566 -0.028,-3.89437 5.86461,-7.95889 11.04106,-7.73238 4.86774,0.213 9.94754,3.38782 8.94968,8.10792 -0.99786,4.72011 -5.15735,7.19938 -10.68087,6.59012 z" class="areola" sodipodi:nodetypes="sssss"/> + </g> + </g> + <g inkscape:label="Boob_Huge_Areolae_Wide" style="display:inline;opacity:1" id="Boob_Huge_Areolae_Wide" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2588" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path sodipodi:nodetypes="czczsc" inkscape:connector-curvature="0" d="m 232.7832,220.84618 c 0,0 0.4464,4.52494 -1.28267,9.81182 -1.72902,5.28687 -10.19793,13.26999 -10.19793,13.26999 0,0 -2.53745,-9.20953 -1.97865,-11.40402 0.55875,-2.19451 0.93334,-3.40238 3.21651,-5.89704 2.87142,-3.13742 10.24274,-5.78075 10.24274,-5.78075 z" class="areola" id="path2586"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2592" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path sodipodi:nodetypes="sssss" class="areola" d="m 310.12038,239.65916 c -6.9072,-0.76189 -13.8874,-5.85245 -13.92016,-10.41508 -0.0419,-5.82288 8.76879,-11.90016 16.50864,-11.56148 7.27826,0.31847 14.8736,5.06548 13.3816,12.12299 -1.49201,7.05753 -7.71129,10.76454 -15.97008,9.85357 z" id="path2590" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Huge_Areolae_Huge" style="display:inline;opacity:1" inkscape:label="Boob_Huge_Areolae_Huge"> + <g id="g2598" transformVariableName="_boob_right_art_transform" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path id="path2596" class="areola" d="m 236.62959,218.29317 c 0,0 1.7243,6.58569 -0.67504,13.922 -2.39927,7.33629 -12.70181,16.77885 -12.70181,16.77885 -2.04899,-3.31055 -4.6839,-13.22984 -3.74138,-17.39573 0.94253,-4.16588 0.57641,-2.75255 3.74464,-6.21424 3.9845,-4.35363 13.37359,-7.09088 13.37359,-7.09088 z" inkscape:connector-curvature="0" sodipodi:nodetypes="czczsc"/> + </g> + <g id="g2602" transformVariableName="_boob_left_art_transform" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path inkscape:connector-curvature="0" id="path2600" d="m 310.21331,242.70695 c -8.66357,-0.95563 -17.41869,-7.34062 -17.45978,-13.06343 -0.0525,-7.30353 10.99852,-14.92615 20.70646,-14.50135 9.12899,0.39946 18.65567,6.35353 16.78428,15.20563 -1.87139,8.85212 -9.67212,13.50176 -20.03096,12.35915 z" class="areola" sodipodi:nodetypes="sssss"/> + </g> + </g> + <g inkscape:label="Boob_Huge_Areolae_Star" style="display:inline;opacity:1" id="Boob_Huge_Areolae_Star" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2608" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path sodipodi:nodetypes="cccccccssc" inkscape:connector-curvature="0" d="m 234.36369,221.2914 c -5.83495,3.07543 -6.41117,3.88752 -8.98865,6.65172 3.10943,0.0163 3.09282,-0.28462 8.16273,1.84366 -7.00102,0.23835 -9.44665,2.25868 -9.44665,2.25868 0,0 -0.69998,1.91384 1.81583,11.39761 -3.75631,-5.09859 -4.6232,-9.07753 -4.6232,-9.07753 0,0 -0.7342,1.92505 -0.23957,8.04149 -1.78578,-3.48555 -1.6116,-7.85334 -1.6116,-9.31051 0,-2.16436 0.62706,-3.42478 3.74464,-6.54236 4.17315,-4.17315 11.18647,-5.26276 11.18647,-5.26276 z" class="areola" id="path2606"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2612" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path sodipodi:nodetypes="ccccccccccc" class="areola" d="m 309.21943,229.27224 c -3.76567,1.79157 -6.84161,5.28921 -10.10232,7.39152 1.44885,-3.26388 2.80438,-7.85021 4.89355,-10.83394 -2.31674,-1.93975 -5.18388,-2.96451 -8.37065,-3.68536 3.56307,-1.07962 7.79205,-1.81135 11.55083,-1.25273 1.41528,-1.99803 2.88366,-2.69755 5.19852,-4.40935 0.47133,1.75669 1.08677,2.27498 2.38302,4.27914 4.40924,-0.57094 8.75671,0.34013 13.32809,1.37553 -4.74363,0.78623 -8.39968,1.78672 -11.63843,3.96162 1.36056,2.93262 2.11025,7.4758 2.95271,10.6874 -2.99455,-2.42622 -6.28672,-5.87702 -10.19532,-7.51383 z" id="path2610" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:label="Boob_Huge_Areolae_Heart" style="display:inline;opacity:1" id="Boob_Huge_Areolae_Heart" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2618" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path sodipodi:nodetypes="cczcac" inkscape:connector-curvature="0" d="m 232.52122,225.53565 c 4.39417,7.66356 -5.99208,11.98476 -10.60277,20.32639 -1.91692,-2.41158 -3.13082,-10.98168 -2.2593,-14.47377 0.87152,-3.49209 1.27608,-4.34257 4.50054,-6.25453 4.9477,-1.91122 6.43637,-1.61802 8.36153,0.4019 0,0 0,1e-5 0,1e-5 z" class="areola" id="path2616"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2623" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path sodipodi:nodetypes="czczcc" class="areola" d="m 308.00692,240.95895 c -4.20528,-2.9951 -12.71977,-16.79856 -6.01226,-22.33579 6.70751,-5.53723 9.65531,-0.0103 9.65531,-0.0103 0,0 5.61579,-5.19127 10.77973,1.06406 5.16394,6.25533 -9.37618,18.97767 -14.42277,21.28185 z" id="path2621" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Huge_Nipples" style="display:inline;opacity:1" inkscape:label="Boob_Huge_Nipples"> + <g id="g2307" transformVariableName="_boob_right_art_transform" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path id="path2297" class="shadow" d="m 219.66711,231.32551 c 0,0 -2.07916,-0.84424 -1.96587,-2.50683 0.27229,-2.06527 2.87049,-4.55573 4.56939,-3.54333 0.73795,0.4953 1.19745,1.3592 1.19745,1.3592 -0.28724,2.54749 -1.44251,3.76835 -3.80097,4.69096 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/> + <path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" d="m 219.66711,231.32551 c 0,0 -2.09128,-0.97248 -1.96587,-2.50683 0.22689,-1.88232 3.0014,-4.53764 4.56939,-3.54333 0.6399,0.45092 1.19745,1.3592 1.19745,1.3592 -0.28152,2.37691 -1.50508,3.78179 -3.80097,4.69096 z" class="areola" id="path2299"/> + <path id="path2301" class="shadow" d="m 218.29586,227.4828 c 0.63254,-0.49981 1.24594,-0.4023 2.58629,-0.13128 -1.20929,-0.062 -1.73229,-0.39852 -2.58629,0.13128 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> + <path id="path2303" class="shadow" d="m 219.23311,227.17234 c -0.0126,-0.30553 0.11607,-0.87173 0.80585,-0.93739 -0.78295,0.23692 -0.68828,0.58174 -0.80585,0.93739 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> + <path id="path2305" class="shadow" d="m 220.87274,231.59877 c 1.83694,-1.04074 2.9183,-2.84285 2.47489,-4.27858 0.24179,0.88681 0.46243,2.78645 -2.47489,4.27858 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> + </g> + <g id="g2321" transformVariableName="_boob_left_art_transform" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path inkscape:connector-curvature="0" id="path2309" d="m 307.02662,225.35792 c -0.65912,-0.84792 -0.55031,-2.1736 -0.36852,-2.79251 0.43828,-1.66398 2.36958,-2.51043 4.05199,-2.48698 1.47529,0.0205 2.31113,0.23638 2.97306,1.55088 0.7186,0.55937 0.76617,1.51497 0.72875,1.55811 -0.19628,1.38288 -1.11197,3.36797 -3.79882,3.25712 -2.15571,0.10863 -2.89207,-0.0288 -3.58646,-1.08662 z" class="shadow" sodipodi:nodetypes="ccscccc"/> + <path sodipodi:nodetypes="csscccc" class="areola" d="m 307.02662,225.35792 c -0.45016,-0.86882 -0.5452,-2.18377 -0.36852,-2.79251 0.46228,-1.59289 2.54845,-2.46893 4.05199,-2.48698 1.48227,-0.0177 2.31964,0.4407 2.97306,1.55088 0.60221,0.66517 0.7511,1.52867 0.72875,1.55811 -0.2578,1.29402 -1.17053,3.2834 -3.79882,3.25712 -2.03215,0.002 -2.83404,-0.0784 -3.58646,-1.08662 z" id="path2311" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path2313" d="m 307.97472,221.8552 c 1.44439,-0.5616 2.8211,0.19783 3.71681,0.95003 -1.07555,-0.52478 -2.45102,-1.24397 -3.71681,-0.95003 z" class="shadow" sodipodi:nodetypes="ccc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 309.64335,221.84575 c 0.82391,-0.71672 1.32028,-0.90751 2.55627,-0.79081 -1.15563,0.0407 -1.68078,0.25167 -2.55627,0.79081 z" id="path2315" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path2317" d="m 307.45307,225.44799 c 6.9597,1.44668 6.35651,-3.37569 6.23036,-3.85562 0.42028,2.9281 -1.33459,5.40848 -6.23036,3.85562 z" class="shadow" sodipodi:nodetypes="ccc"/> + <path id="path2319" class="shadow" d="m 309.13235,227.01721 c 3.67212,-0.37532 4.7724,-1.1783 5.15758,-3.33875 -0.0448,2.50473 -2.04255,3.15529 -5.15758,3.33875 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Huge_Piercings_" inkscape:label="Boob_Huge_Piercings_" style="display:inline"> + <g inkscape:groupmode="layer" id="Boob_Huge_Areola_Piercing" style="display:inline" inkscape:label="Boob_Huge_Areola_Piercing"> + <g id="g2929" transform="matrix(1.0263785,0,0,1.0263785,-8.6733354,-5.3910578)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/> + <g id="g2931" transform="matrix(1.0228023,0,0,1.0228023,-5.1326497,-5.0109358)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/> + <g id="g3099" transformVariableName="_boob_left_art_transform" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path class="shadow" sodipodi:nodetypes="accaa" id="path2933" d="m 315.07024,219.70277 c 0.0554,0.71485 -0.77245,1.51654 -1.52538,1.51654 -0.5209,-0.31622 -0.77768,-0.63239 -1.81752,-1.1162 0,-0.74876 0.67951,-1.68337 1.43634,-1.78429 0.77841,-0.1038 1.84592,0.60099 1.90656,1.38395 z" inkscape:connector-curvature="0"/> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path2935" d="m 311.29057,230.82984 c 0,0.75085 -0.84636,1.58836 -1.5972,1.58836 -0.75085,0 -1.59721,-0.83751 -1.5972,-1.58836 0,-0.75084 0.84635,-1.58835 1.5972,-1.58835 0.75084,0 1.59719,0.83751 1.5972,1.58835 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 314.92621,219.70277 c 0.0577,0.68014 -0.76752,1.44396 -1.452,1.44396 -0.47354,-0.28747 -0.72935,-0.52731 -1.67466,-0.96714 0,-0.68069 0.64168,-1.61234 1.3653,-1.71638 0.71063,-0.10217 1.70063,0.5242 1.76136,1.23956 z" id="path2937" sodipodi:nodetypes="accaa" class="steel_piercing"/> + <path inkscape:connector-curvature="0" d="m 311.14537,230.82984 c 0,0.68259 -0.76942,1.44396 -1.452,1.44396 -0.68259,0 -1.45201,-0.76137 -1.452,-1.44396 0,-0.68258 0.76941,-1.44395 1.452,-1.44395 0.68258,0 1.45199,0.76137 1.452,1.44395 z" id="path2941" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + </g> + <g id="g3105" transformVariableName="_boob_right_art_transform" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path2939" d="m 227.38819,224.56136 c 0,0.75085 -0.84635,1.58836 -1.5972,1.58836 -0.75085,0 -1.5972,-0.83751 -1.5972,-1.58836 0,-0.75084 0.84636,-1.58835 1.5972,-1.58835 0.75084,0 1.5972,0.83751 1.5972,1.58835 z" inkscape:connector-curvature="0"/> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path2943" d="m 221.66565,235.14913 c 0,0.75084 -0.84636,1.58835 -1.5972,1.58835 -0.75084,0 -1.5972,-0.83751 -1.5972,-1.58835 0,-0.75084 0.84636,-1.58835 1.5972,-1.58835 0.75084,0 1.5972,0.83751 1.5972,1.58835 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 227.24299,224.56136 c 0,0.68259 -0.76941,1.44396 -1.452,1.44396 -0.68259,0 -1.452,-0.76137 -1.452,-1.44396 0,-0.68258 0.76941,-1.44395 1.452,-1.44395 0.68258,0 1.452,0.76137 1.452,1.44395 z" id="path2945" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + <path inkscape:connector-curvature="0" d="m 221.52045,235.14913 c 0,0.68259 -0.76941,1.44396 -1.452,1.44396 -0.68259,0 -1.452,-0.76137 -1.452,-1.44396 0,-0.68259 0.76941,-1.44396 1.452,-1.44396 0.68259,0 1.452,0.76137 1.452,1.44396 z" id="path2947" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + </g> + </g> + <g inkscape:label="Boob_Huge_Areola_Piercing_Heavy" style="display:inline" id="Boob_Huge_Areola_Piercing_Heavy" inkscape:groupmode="layer"> + <g id="g3085" transform="matrix(4,0,0,4,-941.71671,-583.58668)" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" d="m 315.68416,222.90053 c 0,0 -0.13465,-4.47036 1.43,-5.58749 1.85611,-1.32523 5.3301,-1.17894 6.82,0.54779 1.43465,1.66269 0.96517,4.88584 -0.44,6.57352 -1.13778,1.36653 -5.17,1.3147 -5.17,1.3147 0,0 3.53534,-0.86423 4.29,-2.30073 0.61522,-1.17109 0.47784,-2.99147 -0.44,-3.94411 -1.02891,-1.06792 -3.08003,-1.33322 -4.4,-0.65735 -1.35317,0.69287 -2.09,4.05367 -2.09,4.05367 z" class="shadow" id="path2953" sodipodi:nodetypes="caaacaaac"/> + <path inkscape:connector-curvature="0" d="m 305.90661,222.83383 c 0,0 0.13465,-4.47036 -1.43,-5.58749 -1.85611,-1.32523 -5.3301,-1.17893 -6.82,0.5478 -1.43464,1.66269 -0.96516,4.88583 0.44,6.57351 1.13777,1.36653 5.17,1.31471 5.17,1.31471 0,0 -3.53534,-0.86423 -4.29,-2.30073 -0.61522,-1.17109 -0.47784,-2.99147 0.44,-3.94411 1.02891,-1.06792 3.08003,-1.33323 4.4,-0.65736 1.35317,0.69287 2.09,4.05367 2.09,4.05367 z" class="shadow" id="path2955" sodipodi:nodetypes="caaacaaac"/> + <path sodipodi:nodetypes="caaacaaac" id="path2959" class="steel_piercing" d="m 316.09881,222.73598 c 0,0 -0.12241,-4.06397 1.3,-5.07954 1.68738,-1.20475 4.84555,-1.07175 6.2,0.498 1.30422,1.51153 0.87742,4.44167 -0.4,5.97592 -1.03434,1.2423 -4.7,1.19519 -4.7,1.19519 0,0 3.21395,-0.78567 3.9,-2.09158 0.55929,-1.06463 0.4344,-2.71952 -0.4,-3.58555 -0.93538,-0.97084 -2.80003,-1.21202 -4,-0.59759 -1.23016,0.62988 -1.9,3.68515 -1.9,3.68515 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caaacaaac" id="path2961" class="steel_piercing" d="m 305.49196,222.66929 c 0,0 0.12241,-4.06397 -1.3,-5.07954 -1.68737,-1.20475 -4.84554,-1.07176 -6.2,0.49799 -1.30423,1.51154 -0.87743,4.44168 0.4,5.97593 1.03434,1.2423 4.7,1.19518 4.7,1.19518 0,0 -3.21395,-0.78566 -3.9,-2.09157 -0.5593,-1.06463 -0.4344,-2.71952 0.4,-3.58556 0.93538,-0.97084 2.80003,-1.21202 4,-0.59759 1.23016,0.62989 1.9,3.68516 1.9,3.68516 z" inkscape:connector-curvature="0"/> + </g> + <g id="g3109" transform="matrix(4,0,0,4,-750.12304,-598.08667)" transformVariableName="_boob_right_art_transform"> + <path inkscape:connector-curvature="0" d="m 225.06547,228.29066 c 0,0 0.60967,-2.29861 1.54375,-2.82952 2.13513,-1.21356 5.78848,-1.60777 7.36253,0.27741 0.71838,0.86037 0.32663,2.54546 -0.475,3.32885 -1.34,1.30951 -5.58127,0.66576 -5.58127,0.66576 0,0 3.80544,0.19579 4.63127,-1.1651 0.35502,-0.58505 0.0468,-1.55455 -0.47501,-1.99731 -1.21025,-1.02692 -3.25057,-0.85339 -4.75002,-0.33287 -0.96055,0.33345 -2.25625,2.05278 -2.25625,2.05278 z" class="shadow" id="path2957" sodipodi:nodetypes="caaacaaac"/> + <path sodipodi:nodetypes="caaacaaac" id="path2963" class="steel_piercing" d="m 225.48753,228.18839 c 0,0 0.55425,-2.08964 1.40341,-2.57229 1.94103,-1.10324 5.26225,-1.46162 6.69321,0.25218 0.65308,0.78216 0.29694,2.31405 -0.43182,3.02623 -1.21818,1.19047 -5.07388,0.60524 -5.07388,0.60524 0,0 3.45949,0.17799 4.21024,-1.05918 0.32275,-0.53186 0.0425,-1.41322 -0.43182,-1.81573 -1.10022,-0.93357 -2.95507,-0.77582 -4.3182,-0.30262 -0.87323,0.30313 -2.05114,1.86617 -2.05114,1.86617 z" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Huge_Piercing_Heavy" style="display:inline" inkscape:label="Boob_Huge_Piercing_Heavy"> + <g id="g2981" transformVariableName="_boob_left_art_transform" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path inkscape:connector-curvature="0" d="m 305.79149,218.84986 c 0,0 -2.49411,9.18373 -0.98325,13.39981 1.04425,2.91398 3.31774,6.91285 6.40728,6.7218 3.05706,-0.18905 4.59484,-4.44702 5.47216,-7.38158 1.23461,-4.12965 -0.7356,-12.9098 -0.7356,-12.9098 0,0 0.11352,1.8255 0.16679,3.66985 -0.16929,0.006 -2.35051,-4.1e-4 -2.35051,-4.1e-4 0.0559,0.37078 -0.0172,0.52908 -0.0182,0.90408 0,0 2.10319,-0.01 2.38726,-0.0165 0.0394,2.95347 -0.12672,6.29356 -1.09131,8.44744 -0.78349,1.74932 -2.10939,3.66042 -3.89433,3.67566 -1.987,0.017 -3.50956,-2.07688 -4.40441,-4.01713 -0.94479,-2.04857 -1.13062,-5.2179 -1.1115,-8.05448 0.44876,0 0.89492,-0.0536 0.89492,-0.0536 l 0.20179,-0.91124 c 0,0 -0.63009,-0.0132 -1.08238,-0.0132 0.0399,-1.72733 0.14124,-3.46134 0.14124,-3.46134 z" class="shadow" id="path2969" sodipodi:nodetypes="caaacccccsascccccc"/> + <path inkscape:connector-curvature="0" d="m 311.22782,235.59907 c 0,0 -1.85221,9.4952 -1.92044,14.30624 -0.078,5.49738 1.72993,16.40283 1.72993,16.40283 0,0 -0.37012,-9.79442 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z" class="shadow" id="path2971" sodipodi:nodetypes="caccc"/> + <path inkscape:connector-curvature="0" d="m 310.97362,264.29827 c 0,0 -1.08607,3.59047 -0.98853,5.42648 0.0928,1.74744 1.48279,5.03598 1.48279,5.03598 0,0 1.05088,-3.32643 0.98853,-5.03598 -0.0683,-1.8739 -1.48279,-5.42648 -1.48279,-5.42648 z" class="shadow" id="path2973" sodipodi:nodetypes="cacac"/> + <path sodipodi:nodetypes="caaacccccsascccccc" id="path2975" class="steel_piercing" d="m 306.23848,219.75707 c 0,0 -2.26737,8.34884 -0.89386,12.18164 0.94932,2.64907 3.01613,6.2844 5.8248,6.11072 2.77915,-0.17186 4.17713,-4.04275 4.97469,-6.71053 1.12237,-3.75423 -0.66873,-11.73618 -0.66873,-11.73618 0,0 0.1032,1.19752 0.15163,2.87419 -0.1539,0.005 -1.857,-3.7e-4 -1.857,-3.7e-4 -0.01,0.4056 -0.009,0.4963 -0.0851,0.81799 0,0 1.70069,-0.005 1.95894,-0.0111 0.0358,2.68498 -0.1152,6.18346 -0.9921,8.14152 -0.71227,1.59029 -1.91762,3.32765 -3.5403,3.34151 -1.80636,0.0154 -3.19051,-1.88807 -4.00401,-3.65193 -0.8589,-1.86234 -1.02784,-5.20558 -1.01046,-7.78429 0.40797,0 0.46484,-0.0487 0.46484,-0.0487 l 0.16073,-0.8284 c 0,0 -0.20131,-0.012 -0.61253,-0.012 0.0363,-1.5703 0.1284,-2.68465 0.1284,-2.68465 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caccc" id="path2977" class="steel_piercing" d="m 311.1816,236.99494 c 0,0 -1.68382,8.632 -1.74585,13.00567 -0.0709,4.99761 1.57266,14.91166 1.57266,14.91166 0,0 -0.33647,-8.90402 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="cacac" id="path2979" class="steel_piercing" d="m 310.99593,264.77383 c 0,0 -0.98734,3.26407 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57815 1.34799,4.57815 0,0 0.95535,-3.02401 0.89867,-4.57815 -0.0621,-1.70355 -1.34799,-4.93318 -1.34799,-4.93318 z" inkscape:connector-curvature="0"/> + </g> + <g id="g2995" transformVariableName="_boob_right_art_transform" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path inkscape:connector-curvature="0" d="m 224.04177,224.35984 c 0,0 1.84875,9.08379 0.67687,13.39983 -0.70222,2.58629 -1.73488,6.86756 -4.41084,6.72179 -2.75834,-0.15026 -3.17412,-4.68357 -3.76709,-7.3816 -0.92442,-4.20618 0.5064,-12.90978 0.5064,-12.90978 0,0 -0.0782,1.73915 -0.11483,3.58349 0.11654,0.006 1.05275,-4.1e-4 1.05275,-4.1e-4 l -0.54866,0.90407 c 0,0 -0.32127,-0.01 -0.51683,-0.0165 -0.0271,2.95346 0.0873,6.37993 0.75126,8.5338 0.53937,1.74933 1.16447,3.66321 2.68091,3.67564 1.67758,0.0137 2.41602,-2.07685 3.03204,-4.01709 0.65041,-2.04858 0.77834,-5.30427 0.76517,-8.14084 -0.30893,0 -1.87642,-0.0536 -1.87642,-0.0536 0.0596,-0.36182 0.0683,-0.46339 0.2179,-0.91125 0,0 1.33728,-0.0132 1.64865,-0.0132 -0.0275,-1.72732 -0.0972,-3.37499 -0.0972,-3.37499 z" class="shadow" id="path2983" sodipodi:nodetypes="caaacccccsascccccc"/> + <path inkscape:connector-curvature="0" d="m 220.68861,241.98705 c 0,0 -1.85221,9.4952 -1.92044,14.30623 -0.078,5.49738 1.72993,16.40284 1.72993,16.40284 0,0 -0.37012,-9.79444 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z" class="shadow" id="path2985" sodipodi:nodetypes="caccc"/> + <path inkscape:connector-curvature="0" d="m 220.43441,270.68624 c 0,0 -1.08608,3.59049 -0.98853,5.4265 0.0928,1.74744 1.48279,5.03595 1.48279,5.03595 0,0 1.05088,-3.3264 0.98853,-5.03595 -0.0683,-1.8739 -1.48279,-5.4265 -1.48279,-5.4265 z" class="shadow" id="path2987" sodipodi:nodetypes="cacac"/> + <path sodipodi:nodetypes="caaacccccsascccccc" id="path2989" class="steel_piercing" d="m 223.73465,225.26696 c 0,0 1.68069,8.25799 0.61534,12.18167 -0.63838,2.35117 -1.57717,6.24324 -4.00986,6.11072 -2.50758,-0.1366 -2.88557,-4.25779 -3.42463,-6.71055 -0.84039,-3.8238 0.46036,-11.73616 0.46036,-11.73616 0,0 -0.071,1.19752 -0.10438,2.87419 0.10594,0.005 0.62785,-3.7e-4 0.62785,-3.7e-4 l -0.33933,0.82187 c 0,0 -0.12233,-0.009 -0.30011,-0.015 -0.0247,2.68496 0.0793,6.18345 0.68297,8.14152 0.49034,1.5903 1.05861,3.3302 2.43719,3.3415 1.52508,0.0125 2.19638,-1.88805 2.7564,-3.65191 0.59128,-1.86235 0.70758,-5.20558 0.69561,-7.78429 -0.28085,0 -1.70584,-0.0487 -1.70584,-0.0487 0.0541,-0.32893 0.16478,-0.53596 0.16187,-0.82841 0,0 1.25193,-0.012 1.535,-0.012 -0.025,-1.57029 -0.0884,-2.68465 -0.0884,-2.68465 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caccc" id="path2991" class="steel_piercing" d="m 220.64239,243.38292 c 0,0 -1.68382,8.63199 -1.74585,13.00566 -0.0709,4.99762 1.57266,14.91167 1.57266,14.91167 0,0 -0.33647,-8.90403 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="cacac" id="path2993" class="steel_piercing" d="m 220.45672,271.16181 c 0,0 -0.98735,3.26408 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57813 1.34799,4.57813 0,0 0.95535,-3.024 0.89867,-4.57813 -0.0621,-1.70355 -1.34799,-4.93318 -1.34799,-4.93318 z" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:label="Boob_Huge_Piercing" style="display:inline" id="Boob_Huge_Piercing" inkscape:groupmode="layer"> + <g id="g2999" transform="matrix(1.0081159,0,0,1.0081159,-2.6203467,-1.6676415)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/> + <g id="g3009" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1" transformVariableName="_boob_left_art_transform" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path3001" d="m 316.48783,223.10304 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> + <path class="shadow" sodipodi:nodetypes="saccs" id="path3003" d="m 306.77276,224.82581 c -0.75293,0 -1.6385,-0.84541 -1.5972,-1.5972 0.046,-0.83836 1.21255,-1.57531 1.96548,-1.57531 -0.68775,1.21129 -0.7805,1.82947 -0.3682,3.17251 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 316.34263,223.10304 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path3005" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + <path inkscape:connector-curvature="0" d="m 306.77164,224.68061 c -0.68448,0 -1.48757,-0.76845 -1.452,-1.452 0.0399,-0.76733 1.10584,-1.452 1.79032,-1.452 -0.71906,1.10285 -0.73484,1.67672 -0.33828,2.904 z" id="path3007" sodipodi:nodetypes="saccs" class="steel_piercing"/> + </g> + <g style="display:inline" id="g3019" transformVariableName="_boob_right_art_transform" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path inkscape:connector-curvature="0" d="m 224.07961,228.33118 c 0,0.74947 -0.84077,1.5972 -1.5972,1.5972 -0.75643,0 -1.5972,-0.84773 -1.5972,-1.5972 0,-0.74947 0.84077,-1.5972 1.5972,-1.5972 0.75643,0 1.5972,0.84773 1.5972,1.5972 z" id="path3011" sodipodi:nodetypes="aaaaa" class="shadow" transform="matrix(1,0,0,1.0092899,0,-2.0984812)"/> + <path inkscape:connector-curvature="0" d="m 217.66199,229.81105 c -0.34466,-0.31248 -0.8444,-0.64473 -0.8444,-1.05102 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 -0.78404,0.89358 -0.83246,1.20611 -0.7528,2.64822 z" id="path3013" sodipodi:nodetypes="cscc" class="shadow" transform="matrix(1,0,0,1.0092899,0,-2.0984812)"/> + <path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path3015" d="m 223.93441,228.33118 c 0,0.68134 -0.76433,1.452 -1.452,1.452 -0.68767,0 -1.452,-0.77066 -1.452,-1.452 0,-0.68133 0.76433,-1.452 1.452,-1.452 0.68767,0 1.452,0.77067 1.452,1.452 z" inkscape:connector-curvature="0" transform="matrix(1,0,0,1.0092899,0,-2.0984812)"/> + <path class="steel_piercing" sodipodi:nodetypes="cscc" id="path3017" d="m 217.65747,229.74416 c -0.31333,-0.28407 -0.76728,-0.63503 -0.76728,-1.00438 0,-0.68448 0.76752,-1.452 1.452,-1.452 -0.5497,0.90956 -0.83533,1.21423 -0.68472,2.45638 z" inkscape:connector-curvature="0" transform="matrix(1,0,0,1.0092899,0,-2.0984812)"/> + </g> + </g> + </g> + <g inkscape:label="Boob_Huge_Highlights" id="Boob_Huge_Highlights" inkscape:groupmode="layer" style="display:inline"> + <g style="display:inline" inkscape:label="Boob_Huge_Highlights2" id="Boob_Huge_Highlights2" inkscape:groupmode="layer"> + <g transformVariableName="_boob_left_art_transform" id="g2663" transform="matrix(4,0,0,4,-941.71671,-583.58668)"> + <path inkscape:connector-curvature="0" d="m 311.28344,209.85996 c -1.23695,2.22881 -4.15391,7.30116 -0.41757,9.282 3.52221,-2.35637 1.8912,-8.00731 0.41757,-9.282 z" class="highlight2" id="path2651" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 309.0008,230.89923 c -3.52683,3.26178 -5.76341,8.34571 -1.88762,10.3195 2.98911,-1.10062 3.7767,-5.82866 1.88762,-10.3195 z" class="highlight2" id="path2653" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 309.2774,227.50265 c -1.45195,1.21811 -0.55284,1.57513 -0.29636,2.05122 0.91423,-0.4922 1.12461,-0.75849 0.29636,-2.05122 z" class="highlight2" id="path2655" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 311.46483,206.71736 c -0.47728,0.55739 -1.52133,1.16622 -0.15966,1.94836 1.70767,-1.34349 0.63887,-1.68624 0.15966,-1.94836 z" class="highlight2" id="path2657" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 310.91707,222.96501 c -1.11294,-1.53405 -2.19421,-0.93805 -2.68716,-0.71571 0.55046,0.56081 1.587,0.71901 2.68716,0.71571 z" class="highlight2" id="path2659" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 310.79064,220.21043 c -1.29574,-0.23601 -1.88877,0.15883 -2.19442,0.60489 1.134,0.2189 1.34152,0.27164 2.19442,-0.60489 z" class="highlight2" id="path2661" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 287.14784,234.24423 c -1.78019,22.27634 16.62413,23.78154 22.90192,24.02193 -23.56642,-3.77459 -22.37712,-21.24928 -22.90192,-24.02193 z" class="highlight2" id="path2673-6" sodipodi:nodetypes="ccc"/> + </g> + <g transformVariableName="_boob_right_art_transform" id="g2681" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path inkscape:connector-curvature="0" d="m 245.56304,211.91401 c -4.11836,2.60208 -12.2636,9.19756 -15.16804,10.99308 3.27443,0.0574 14.42513,-1.08898 15.16804,-10.99308 z" class="highlight2" id="path2665" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 250.43036,208.01772 c -0.95282,-0.17319 -2.05051,0.57552 -1.97909,1.35787 0.65101,0.10861 1.99182,0.29621 1.97909,-1.35787 z" class="highlight2" id="path2667" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 229.41707,228.57127 c -0.73203,-0.21484 -5.15512,0.19734 -5.63251,0.25215 0.75202,0.71167 5.58739,1.42579 5.63251,-0.25215 z" class="highlight2" id="path2671" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 221.11077,236.97002 c -0.77873,7.49629 6.53371,18.21895 9.15131,19.6622 -2.16944,-2.6361 -8.34445,-14.0271 -9.15131,-19.6622 z" class="highlight2" id="path2673" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 221.12181,234.39974 c -0.9515,0.64423 -0.46796,1.54477 -0.0582,1.90403 0.59571,-0.35255 0.32483,-1.39831 0.0582,-1.90403 z" class="highlight2" id="path2675" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 219.83124,227.63948 c -0.59901,0.17025 -1.09692,0.35984 -1.51392,0.72202 0.72549,0.21496 1.41311,0.13798 1.51392,-0.72202 z" class="highlight2" id="path2677" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 220.10898,225.8855 c -0.26942,0.0314 -0.84341,0.20991 -0.92331,0.70779 0.27525,-0.29894 0.86207,-0.25886 0.92331,-0.70779 z" class="highlight2" id="path2679" sodipodi:nodetypes="ccc"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Huge_Highlights1" inkscape:label="Boob_Huge_Highlights1" style="display:inline"> + <g transformVariableName="_boob_left_art_transform" transform="matrix(4,0,0,4,-941.71671,-583.58668)" id="g2690"> + <path sodipodi:nodetypes="ccc" id="path2686" class="highlight1" d="m 310.7455,213.61878 c -1.23889,2.23231 -0.62951,4.2542 0.10734,5.49919 0.8331,-1.29133 1.36861,-4.22251 -0.10734,-5.49919 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="path2688" class="highlight1" d="m 308.98735,230.89949 c -1.68861,1.7669 -1.74121,4.42131 -1.45308,5.80445 1.40005,-1.16485 2.00138,-3.93156 1.45308,-5.80445 z" inkscape:connector-curvature="0"/> + </g> + <g transformVariableName="_boob_right_art_transform" id="g2694" transform="matrix(4,0,0,4,-750.12304,-598.08667)"> + <path sodipodi:nodetypes="ccc" id="path2692" class="highlight1" d="m 242.78118,215.8836 c -3.18058,2.31902 -9.28242,4.77744 -11.34656,6.90425 3.63554,0.19592 9.94008,-1.84828 11.34656,-6.90425 z" inkscape:connector-curvature="0" transform="matrix(1.0060951,0,0,1.0060951,-1.9605124,-1.2116124)"/> + </g> + </g> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Medium_" inkscape:label="Boob_Medium_" style="display:inline"> + <g inkscape:label="Boob_Medium" style="display:inline;opacity:1" id="Boob_Medium" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2687"> + <path inkscape:connector-curvature="0" d="m 265.5598,202.06126 c -6.98215,3.2564 -12.1459,7.91148 -17.37338,13.84075 -11.32184,2.01098 -18.71223,6.38082 -25.75163,10.96125 -2.66627,10.79115 -4.63964,20.79074 2.86977,31.58189 5.0893,9.04044 12.45392,12.33466 22.45388,9.6257 10.79378,-2.60002 19.01126,-9.33031 21.77033,-22.30407 0.51484,-8.64963 10.03784,-15.80582 11.09806,-21.2787 1.24098,-5.57972 10.98028,-18.85392 3.68114,-25.19477 -5.28827,-4.59399 -12.52024,-0.43883 -18.74817,2.76795 z" class="shadow" id="path2247" sodipodi:nodetypes="ccccccccc"/> + <path sodipodi:nodetypes="accccccaa" id="path2685" class="skin boob" d="m 265.5598,202.06126 c -6.58282,3.38951 -11.49746,8.12763 -17.37338,13.84075 -10.4339,2.54375 -17.83242,6.90871 -25.75163,10.96125 -2.39837,10.79115 -3.49301,20.79074 2.86977,31.58189 5.76999,8.40513 13.52235,11.33746 22.45388,9.6257 10.31257,-2.97018 18.31118,-9.79744 21.77033,-22.30407 3.23278,-7.85413 11.18689,-15.27549 12.24711,-20.74837 1.24098,-5.57972 11.28964,-22.38945 3.9905,-28.7303 -5.28827,-4.59399 -13.97865,2.56637 -20.20658,5.77315 z" inkscape:connector-curvature="0"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2693"> + <path sodipodi:nodetypes="ccccc" id="path2689" class="shadow" d="m 344.93513,247.17137 c 11.50556,-18.72777 -0.99403,-25.03554 -7.30197,-37.88762 -11.45706,-9.02941 -12.82017,-9.43754 -25.94622,-9.76379 -26.26694,13.83475 -31.50169,24.95266 -28.41478,41.82961 5.19532,26.99402 48.12646,31.37297 61.66297,5.8218 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 344.93513,247.17137 c 6.85519,-11.89716 4.44093,-22.30576 -0.0687,-31.95616 -3.75098,-8.02695 -11.87524,-14.52078 -20.3528,-17.0962 -4.11529,-1.2502 -6.37048,-1.40468 -12.82672,1.40095 -25.4253,14.28793 -30.40982,25.54058 -28.41478,41.82961 5.56587,26.14704 48.78325,29.87175 61.66297,5.8218 z" class="skin boob" id="path2691" sodipodi:nodetypes="caaccc"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Medium_Areolae_Normal" style="display:inline;opacity:1" inkscape:label="Boob_Medium_Areolae_Normal"> + <g id="g1027" transformVariableName="_boob_right_art_transform"> + <path id="XMLID_592_" class="areola" d="m 227.06053,224.47722 c 0,0 0.24231,2.57487 -0.69623,5.44459 -0.93851,2.86971 -5.64569,7.20295 -5.64569,7.20295 0,0 -1.26707,-4.99893 -0.96376,-6.1901 0.30329,-1.19118 0.50662,-1.84681 1.74593,-3.20091 1.5586,-1.70299 5.55975,-3.25653 5.55975,-3.25653 z" inkscape:connector-curvature="0" sodipodi:nodetypes="czczsc"/> + </g> + <g id="g1036" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" id="XMLID_593_" d="m 313.4683,223.17155 c -3.40637,-0.37574 -6.84874,-2.88621 -6.8649,-5.13633 -0.0207,-2.87162 4.32444,-5.86871 8.14144,-5.70169 3.58937,0.15706 7.3351,2.49811 6.5993,5.97861 -0.7358,3.4805 -3.80292,5.30866 -7.87584,4.85941 z" class="areola" sodipodi:nodetypes="sssss"/> + </g> + </g> + <g inkscape:label="Boob_Medium_Areolae_Large" style="display:inline;opacity:1" id="Boob_Medium_Areolae_Large" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2296"> + <path sodipodi:nodetypes="czczsc" inkscape:connector-curvature="0" d="m 228.38636,223.74254 c 0,0 0.30094,3.19792 -0.8647,6.76203 -1.16561,3.5641 -7.01179,8.94586 -7.01179,8.94586 0,0 -1.57367,-6.20853 -1.19696,-7.68793 0.37668,-1.47941 0.62921,-2.29369 2.16839,-3.97544 1.93574,-2.11507 6.90506,-4.04452 6.90506,-4.04452 z" class="areola" id="path2293"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2313"> + <path sodipodi:nodetypes="sssss" class="areola" d="m 313.28827,227.10156 c -4.61957,-0.50956 -9.28796,-3.91415 -9.30987,-6.96566 -0.028,-3.89437 5.86461,-7.95889 11.04106,-7.73238 4.86774,0.213 9.94754,3.38782 8.94968,8.10792 -0.99786,4.72011 -5.15735,7.19938 -10.68087,6.59012 z" id="path2310" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Medium_Areolae_Wide" style="display:inline;opacity:1" inkscape:label="Boob_Medium_Areolae_Wide"> + <g id="g2320" transformVariableName="_boob_right_art_transform"> + <path id="path2318" class="areola" d="m 232.41861,221.42292 c 0,0 0.4464,4.74369 -1.28267,10.03057 -1.72902,5.28687 -10.40105,13.26999 -10.40105,13.26999 0,0 -2.33433,-9.20953 -1.77553,-11.40402 0.55875,-2.19451 0.93334,-3.40238 3.21651,-5.89704 2.87142,-3.13742 10.24274,-5.9995 10.24274,-5.9995 z" inkscape:connector-curvature="0" sodipodi:nodetypes="czczsc"/> + </g> + <g id="g2324" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" id="path2322" d="m 312.94881,231.61582 c -6.9072,-0.76189 -13.8874,-5.85245 -13.92016,-10.41508 -0.0419,-5.82288 8.76879,-11.90016 16.50864,-11.56148 7.27826,0.31847 14.8736,5.06548 13.3816,12.12299 -1.49201,7.05753 -7.71129,10.76454 -15.97008,9.85357 z" class="areola" sodipodi:nodetypes="sssss"/> + </g> + </g> + <g inkscape:label="Boob_Medium_Areolae_Huge" style="display:inline;opacity:1" id="Boob_Medium_Areolae_Huge" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2330"> + <path sodipodi:nodetypes="czczsc" inkscape:connector-curvature="0" d="m 237.61457,219.3019 c 0,0 0.61945,6.27319 -1.77989,13.6095 -2.39927,7.33629 -14.30039,16.46948 -14.30039,16.46948 -2.73835,-3.80069 -2.90352,-12.97462 -2.1428,-17.08636 0.76072,-4.11174 0.57641,-2.75255 3.74464,-6.21424 3.9845,-4.35363 14.47844,-6.77838 14.47844,-6.77838 z" class="areola" id="path2328"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2334"> + <path sodipodi:nodetypes="sssss" class="areola" d="m 312.68818,236.78493 c -8.66357,-0.95563 -17.41869,-7.34062 -17.45978,-13.06343 -0.0525,-7.30353 10.99852,-14.92615 20.70646,-14.50135 9.12899,0.39946 18.65567,6.35353 16.78428,15.20563 -1.87139,8.85212 -9.67212,13.50176 -20.03096,12.35915 z" id="path2332" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Medium_Areolae_Star" style="display:inline;opacity:1" inkscape:label="Boob_Medium_Areolae_Star"> + <g id="g2371" transformVariableName="_boob_right_art_transform"> + <path id="path2369" class="areola" d="m 233.02542,221.55986 c -4.6859,2.14736 -5.25182,2.38871 -7.8293,5.15291 3.10943,0.0163 4.6369,0.11248 9.70681,2.24076 -8.13452,-0.21458 -10.34402,4.13038 -10.34402,4.13038 0,0 0.7366,4.80558 1.8382,10.77591 -2.3421,-2.93308 -5.27409,-9.80651 -5.27409,-9.80651 0,0 -0.57065,4.73684 -0.39999,8.20797 -1.03447,-2.46908 -1.33154,-8.50959 -1.33154,-9.96676 0,-2.16436 0.62706,-3.09666 3.74464,-6.21424 4.17315,-4.17315 9.88929,-4.52042 9.88929,-4.52042 z" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccssc"/> + </g> + <g id="g2375" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" id="path2373" d="m 311.96943,221.02224 c -3.76567,1.79157 -6.84161,5.28921 -10.10232,7.39152 1.44885,-3.26388 2.80438,-7.85021 4.89355,-10.83394 -2.31674,-1.93975 -5.18388,-2.96451 -8.37065,-3.68536 3.56307,-1.07962 7.79205,-1.81135 11.55083,-1.25273 1.41528,-1.99803 2.88366,-2.69755 5.19852,-4.40935 0.47133,1.75669 1.08677,2.27498 2.38302,4.27914 4.40924,-0.57094 8.75671,0.34013 13.32809,1.37553 -4.74363,0.78623 -8.39968,1.78672 -11.63843,3.96162 1.36056,2.93262 2.11025,7.4758 2.95271,10.6874 -2.99455,-2.42622 -6.28672,-5.87702 -10.19532,-7.51383 z" class="areola" sodipodi:nodetypes="ccccccccccc"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Medium_Areolae_Heart" style="display:inline;opacity:1" inkscape:label="Boob_Medium_Areolae_Heart"> + <g id="g2361" transformVariableName="_boob_right_art_transform"> + <path id="path2359" class="areola" d="m 232.25356,226.4419 c 4.39417,7.66356 -6.67958,11.98476 -11.29027,20.32639 0,0 -2.32901,-10.92453 -1.5718,-14.47377 0.75721,-3.54924 1.27608,-4.34257 4.50054,-6.25453 4.9477,-1.91122 6.43637,-1.61802 8.36153,0.4019 0,0 0,1e-5 0,1e-5 z" inkscape:connector-curvature="0" sodipodi:nodetypes="cczcac"/> + </g> + <g id="g2365" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" id="path2363" d="m 310.81942,233.08395 c -4.20528,-2.9951 -12.71977,-16.79856 -6.01226,-22.33579 6.70751,-5.53723 9.65531,-0.0103 9.65531,-0.0103 0,0 5.61579,-5.19127 10.77973,1.06406 5.16394,6.25533 -9.37618,18.97767 -14.42277,21.28185 z" class="areola" sodipodi:nodetypes="czczcc"/> + </g> + </g> + <g inkscape:label="Boob_Medium_Nipples" style="display:inline;opacity:1" id="Boob_Medium_Nipples" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2294"> + <path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" d="m 219.66711,231.32551 c 0,0 -2.07916,-0.84424 -1.96587,-2.50683 0.27229,-2.06527 2.87049,-4.55573 4.56939,-3.54333 0.73795,0.4953 1.19745,1.3592 1.19745,1.3592 -0.28724,2.54749 -1.44251,3.76835 -3.80097,4.69096 z" class="shadow" id="path2283"/> + <path id="path2285" class="areola" d="m 219.66711,231.32551 c 0,0 -2.09128,-0.97248 -1.96587,-2.50683 0.22689,-1.88232 3.0014,-4.53764 4.56939,-3.54333 0.6399,0.45092 1.19745,1.3592 1.19745,1.3592 -0.28152,2.37691 -1.50508,3.78179 -3.80097,4.69096 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/> + <path sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" d="m 218.29586,227.4828 c 0.63254,-0.49981 1.24594,-0.4023 2.58629,-0.13128 -1.20929,-0.062 -1.73229,-0.39852 -2.58629,0.13128 z" class="shadow" id="path2288"/> + <path sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" d="m 219.23311,227.17234 c -0.0126,-0.30553 0.11607,-0.87173 0.80585,-0.93739 -0.78295,0.23692 -0.68828,0.58174 -0.80585,0.93739 z" class="shadow" id="path2290"/> + <path sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" d="m 220.87274,231.59877 c 1.83694,-1.04074 2.9183,-2.84285 2.47489,-4.27858 0.24179,0.88681 0.46243,2.78645 -2.47489,4.27858 z" class="shadow" id="path2292"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2310"> + <path sodipodi:nodetypes="ccscccc" class="shadow" d="m 309.81086,216.32021 c -0.65912,-0.84792 -0.55031,-2.1736 -0.36852,-2.79251 0.43828,-1.66398 2.36958,-2.51043 4.05199,-2.48698 1.47529,0.0205 2.31113,0.23638 2.97306,1.55088 0.7186,0.55937 0.76617,1.51497 0.72875,1.55811 -0.19628,1.38288 -1.11197,3.36797 -3.79882,3.25712 -2.15571,0.10863 -2.89207,-0.0288 -3.58646,-1.08662 z" id="path2298" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path2300" d="m 309.81086,216.32021 c -0.45016,-0.86882 -0.5452,-2.18377 -0.36852,-2.79251 0.46228,-1.59289 2.54845,-2.46893 4.05199,-2.48698 1.48227,-0.0177 2.31964,0.4407 2.97306,1.55088 0.60221,0.66517 0.7511,1.52867 0.72875,1.55811 -0.2578,1.29402 -1.17053,3.2834 -3.79882,3.25712 -2.03215,0.002 -2.83404,-0.0784 -3.58646,-1.08662 z" class="areola" sodipodi:nodetypes="csscccc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 310.75896,212.81749 c 1.44439,-0.5616 2.8211,0.19783 3.71681,0.95003 -1.07555,-0.52478 -2.45102,-1.24397 -3.71681,-0.95003 z" id="path2302" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path2304" d="m 312.42759,212.80804 c 0.82391,-0.71672 1.32028,-0.90751 2.55627,-0.79081 -1.15563,0.0407 -1.68078,0.25167 -2.55627,0.79081 z" class="shadow" sodipodi:nodetypes="ccc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 310.23731,216.41028 c 6.9597,1.44668 6.35651,-3.37569 6.23036,-3.85562 0.42028,2.9281 -1.33459,5.40848 -6.23036,3.85562 z" id="path2306" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" d="m 311.91659,217.9795 c 3.67212,-0.37532 4.7724,-1.1783 5.15758,-3.33875 -0.0448,2.50473 -2.04255,3.15529 -5.15758,3.33875 z" class="shadow" id="path2308"/> + </g> + </g> + <g style="display:inline" inkscape:label="Boob_Medium_Piercings_" id="Boob_Medium_Piercings_" inkscape:groupmode="layer"> + <g inkscape:label="Boob_Medium_Areola_Piercing" style="display:inline" id="Boob_Medium_Areola_Piercing" inkscape:groupmode="layer"> + <g id="g2527" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" d="m 318.02336,210.86274 c -5e-5,0.72098 -0.77245,1.52498 -1.52538,1.52498 -0.5209,-0.31798 -0.64486,-0.93444 -1.6847,-1.42095 0,-0.75293 0.8338,-1.69079 1.61288,-1.70123 0.75078,-0.0101 1.59725,0.84217 1.5972,1.5972 z" id="path2736" sodipodi:nodetypes="accaa" class="shadow"/> + <path inkscape:connector-curvature="0" d="m 312.43119,221.98893 c 0,0.75503 -0.84635,1.5972 -1.5972,1.5972 -0.75085,0 -1.5972,-0.84217 -1.5972,-1.5972 0,-0.75502 0.84635,-1.5972 1.5972,-1.5972 0.75085,0 1.5972,0.84218 1.5972,1.5972 z" id="path2738" sodipodi:nodetypes="aaaaa" class="shadow"/> + <path class="steel_piercing" sodipodi:nodetypes="accaa" id="path2740" d="m 317.87933,210.86274 c 0,0.68639 -0.76752,1.452 -1.452,1.452 -0.47354,-0.28907 -0.59653,-0.82878 -1.54184,-1.27106 0,-0.68448 0.79549,-1.62217 1.54184,-1.63294 0.68251,-0.01 1.452,0.76561 1.452,1.452 z" inkscape:connector-curvature="0"/> + <path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path2744" d="m 312.28599,221.98893 c 0,0.68639 -0.76941,1.452 -1.452,1.452 -0.68259,0 -1.452,-0.76561 -1.452,-1.452 0,-0.68639 0.76941,-1.452 1.452,-1.452 0.68259,0 1.452,0.76561 1.452,1.452 z" inkscape:connector-curvature="0"/> + </g> + <g id="g2533" transformVariableName="_boob_right_art_transform"> + <path inkscape:connector-curvature="0" d="m 227.48194,224.84564 c 0,0.75503 -0.84635,1.5972 -1.5972,1.5972 -0.75084,0 -1.5972,-0.84217 -1.5972,-1.5972 0,-0.75503 0.84636,-1.5972 1.5972,-1.5972 0.75085,0 1.5972,0.84217 1.5972,1.5972 z" id="path2742" sodipodi:nodetypes="aaaaa" class="shadow"/> + <path inkscape:connector-curvature="0" d="m 221.3219,235.74376 c 0,0.75502 -0.84635,1.5972 -1.5972,1.5972 -0.75084,0 -1.5972,-0.84218 -1.5972,-1.5972 0,-0.75503 0.84636,-1.5972 1.5972,-1.5972 0.75085,0 1.5972,0.84217 1.5972,1.5972 z" id="path2746" sodipodi:nodetypes="aaaaa" class="shadow"/> + <path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path2748" d="m 227.33674,224.84564 c 0,0.68639 -0.76941,1.452 -1.452,1.452 -0.68258,0 -1.452,-0.76561 -1.452,-1.452 0,-0.68639 0.76942,-1.452 1.452,-1.452 0.68259,0 1.452,0.76561 1.452,1.452 z" inkscape:connector-curvature="0"/> + <path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path2751" d="m 221.1767,235.74376 c 0,0.68638 -0.76941,1.452 -1.452,1.452 -0.68258,0 -1.452,-0.76562 -1.452,-1.452 0,-0.68639 0.76942,-1.452 1.452,-1.452 0.68259,0 1.452,0.76561 1.452,1.452 z" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Medium_Areola_Piercing_Heavy" style="display:inline" inkscape:label="Boob_Medium_Areola_Piercing_Heavy"> + <g id="g2507" transformVariableName="_boob_left_art_transform"> + <path sodipodi:nodetypes="caaacaaac" id="path2757" class="shadow" d="m 318.90291,214.58803 c 0,0 -0.13465,-4.47036 1.43,-5.58749 1.85611,-1.32523 5.3301,-1.17893 6.82,0.54779 1.43464,1.66269 0.96516,4.88585 -0.44,6.57352 -1.13778,1.36653 -5.17,1.3147 -5.17,1.3147 0,0 3.53534,-0.86423 4.29,-2.30073 0.61522,-1.17109 0.47784,-2.99147 -0.44,-3.94411 -1.02892,-1.06792 -3.08003,-1.33322 -4.4,-0.65735 -1.35318,0.69288 -2.09,4.05367 -2.09,4.05367 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caaacaaac" id="path2761" class="shadow" d="m 308.90661,215.70883 c 0,0 0.13465,-4.47036 -1.43,-5.58749 -1.85611,-1.32523 -5.3301,-1.17893 -6.82,0.5478 -1.43465,1.66269 -0.96516,4.88583 0.44,6.57351 1.13778,1.36653 5.17,1.31471 5.17,1.31471 0,0 -3.53534,-0.86423 -4.29,-2.30073 -0.61522,-1.1711 -0.47784,-2.99148 0.44,-3.94411 1.02892,-1.06793 3.08003,-1.33323 4.4,-0.65736 1.35317,0.69287 2.09,4.05367 2.09,4.05367 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 319.31756,214.42348 c 0,0 -0.12241,-4.06396 1.3,-5.07954 1.68737,-1.20474 4.84554,-1.07175 6.2,0.498 1.30422,1.51154 0.87742,4.44167 -0.4,5.97592 -1.03434,1.24231 -4.7,1.19519 -4.7,1.19519 0,0 3.21394,-0.78566 3.9,-2.09158 0.55929,-1.06462 0.4344,-2.71951 -0.4,-3.58555 -0.93538,-0.97084 -2.80003,-1.21202 -4,-0.59759 -1.23016,0.62989 -1.9,3.68515 -1.9,3.68515 z" class="steel_piercing" id="path2767" sodipodi:nodetypes="caaacaaac"/> + <path inkscape:connector-curvature="0" d="m 308.49196,215.54429 c 0,0 0.12241,-4.06397 -1.3,-5.07954 -1.68737,-1.20476 -4.84554,-1.07176 -6.2,0.49799 -1.30422,1.51153 -0.87742,4.44167 0.4,5.97593 1.03434,1.24229 4.7,1.19518 4.7,1.19518 0,0 -3.21395,-0.78566 -3.9,-2.09157 -0.55929,-1.06463 -0.4344,-2.71952 0.4,-3.58556 0.93538,-0.97083 2.80003,-1.21202 4,-0.59759 1.23016,0.62988 1.9,3.68516 1.9,3.68516 z" class="steel_piercing" id="path2769" sodipodi:nodetypes="caaacaaac"/> + </g> + <g id="g2512" transformVariableName="_boob_right_art_transform"> + <path sodipodi:nodetypes="caaacaaac" id="path2764" class="shadow" d="m 224.55987,227.39942 c 0,0 0.60967,-2.2986 1.54375,-2.82952 2.13513,-1.21356 5.78847,-1.60777 7.36253,0.27741 0.71838,0.86037 0.32663,2.54545 -0.475,3.32885 -1.34,1.30951 -5.58127,0.66576 -5.58127,0.66576 0,0 3.80544,0.19579 4.63127,-1.1651 0.35502,-0.58505 0.0468,-1.55454 -0.47501,-1.99731 -1.21025,-1.02692 -3.25058,-0.85339 -4.75002,-0.33287 -0.96055,0.33344 -2.25625,2.05278 -2.25625,2.05278 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 224.98193,227.29715 c 0,0 0.55424,-2.08964 1.40341,-2.57229 1.94103,-1.10324 5.26225,-1.46161 6.69321,0.25218 0.65307,0.78216 0.29693,2.31406 -0.43182,3.02623 -1.21818,1.19048 -5.07388,0.60524 -5.07388,0.60524 0,0 3.45948,0.178 4.21024,-1.05918 0.32274,-0.53186 0.0425,-1.41322 -0.43182,-1.81573 -1.10023,-0.93357 -2.95507,-0.77582 -4.3182,-0.30262 -0.87323,0.30313 -2.05114,1.86617 -2.05114,1.86617 z" class="steel_piercing" id="path2771" sodipodi:nodetypes="caaacaaac"/> + </g> + </g> + <g inkscape:label="Boob_Medium_Piercing_Heavy" style="display:inline" id="Boob_Medium_Piercing_Heavy" inkscape:groupmode="layer"> + <g transformVariableName="_boob_left_art_transform" id="g2789"> + <path sodipodi:nodetypes="caaacccccsascccccc" id="path2777" class="shadow" d="m 308.53153,209.94473 c 0,0 -2.49411,9.18374 -0.98325,13.39981 1.04425,2.91398 3.31774,6.91285 6.40728,6.7218 3.05706,-0.18904 4.59484,-4.44702 5.47216,-7.38158 1.23461,-4.12965 -0.7356,-12.9098 -0.7356,-12.9098 0,0 0.11352,1.8255 0.16679,3.66985 -0.16929,0.006 -2.35051,-4.1e-4 -2.35051,-4.1e-4 0.0559,0.37078 -0.0172,0.52908 -0.0182,0.90408 0,0 2.10319,-0.01 2.38726,-0.0165 0.0394,2.95347 -0.12672,6.29356 -1.09131,8.44744 -0.78349,1.74932 -2.10939,3.66042 -3.89433,3.67566 -1.987,0.017 -3.50956,-2.07688 -4.40441,-4.01713 -0.94479,-2.04857 -1.13062,-5.2179 -1.1115,-8.05448 0.44876,0 0.89492,-0.0536 0.89492,-0.0536 l 0.20179,-0.91124 c 0,0 -0.63009,-0.0132 -1.08238,-0.0132 0.0399,-1.72733 0.14124,-3.46134 0.14124,-3.46134 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caccc" id="path2779" class="shadow" d="m 313.96786,226.69394 c 0,0 -1.85221,9.4952 -1.92044,14.30624 -0.078,5.49738 1.72993,16.40283 1.72993,16.40283 0,0 -0.37012,-9.79442 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="cacac" id="path2781" class="shadow" d="m 313.71366,255.39314 c 0,0 -1.08607,3.59047 -0.98853,5.42648 0.0928,1.74745 1.48279,5.03598 1.48279,5.03598 0,0 1.05088,-3.32642 0.98853,-5.03598 -0.0683,-1.87389 -1.48279,-5.42648 -1.48279,-5.42648 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 308.97852,210.85194 c 0,0 -2.26737,8.34885 -0.89386,12.18164 0.94932,2.64907 3.01613,6.28441 5.8248,6.11072 2.77915,-0.17186 4.17713,-4.04274 4.97469,-6.71053 1.12237,-3.75422 -0.66873,-11.73618 -0.66873,-11.73618 0,0 0.1032,1.19752 0.15163,2.87419 -0.1539,0.005 -1.857,-3.7e-4 -1.857,-3.7e-4 -0.01,0.4056 -0.009,0.4963 -0.0851,0.81799 0,0 1.70069,-0.005 1.95894,-0.0111 0.0358,2.68498 -0.1152,6.18346 -0.9921,8.14152 -0.71227,1.59029 -1.91762,3.32765 -3.5403,3.34151 -1.80636,0.0154 -3.19051,-1.88807 -4.00401,-3.65193 -0.8589,-1.86234 -1.02784,-5.20558 -1.01046,-7.78429 0.40797,0 0.46484,-0.0487 0.46484,-0.0487 l 0.16073,-0.8284 c 0,0 -0.20131,-0.012 -0.61253,-0.012 0.0363,-1.5703 0.1284,-2.68465 0.1284,-2.68465 z" class="steel_piercing" id="path2783" sodipodi:nodetypes="caaacccccsascccccc"/> + <path inkscape:connector-curvature="0" d="m 313.92164,228.08981 c 0,0 -1.68382,8.632 -1.74585,13.00567 -0.0709,4.99762 1.57266,14.91166 1.57266,14.91166 0,0 -0.33647,-8.90402 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z" class="steel_piercing" id="path2785" sodipodi:nodetypes="caccc"/> + <path inkscape:connector-curvature="0" d="m 313.73597,255.8687 c 0,0 -0.98734,3.26408 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57815 1.34799,4.57815 0,0 0.95535,-3.02401 0.89867,-4.57815 -0.0621,-1.70355 -1.34799,-4.93318 -1.34799,-4.93318 z" class="steel_piercing" id="path2787" sodipodi:nodetypes="cacac"/> + </g> + <g transformVariableName="_boob_right_art_transform" id="g2803"> + <path sodipodi:nodetypes="caaacccccsascccccc" id="path2791" class="shadow" d="m 224.22146,224.11765 c 0,0 1.84875,9.08379 0.67687,13.39983 -0.70222,2.58629 -1.73488,6.86756 -4.41084,6.72179 -2.75834,-0.15025 -3.17412,-4.68356 -3.76709,-7.3816 -0.92442,-4.20618 0.5064,-12.90978 0.5064,-12.90978 0,0 -0.0782,1.73915 -0.11483,3.58349 0.11654,0.006 1.05275,-4.1e-4 1.05275,-4.1e-4 l -0.54866,0.90407 c 0,0 -0.32127,-0.01 -0.51683,-0.0165 -0.0271,2.95346 0.0873,6.37993 0.75126,8.5338 0.53937,1.74933 1.16447,3.66322 2.68091,3.67564 1.67758,0.0137 2.41602,-2.07685 3.03204,-4.01709 0.65041,-2.04858 0.77834,-5.30427 0.76517,-8.14084 -0.30893,0 -1.87642,-0.0536 -1.87642,-0.0536 0.0596,-0.36182 0.0683,-0.46339 0.2179,-0.91125 0,0 1.33728,-0.0132 1.64865,-0.0132 -0.0275,-1.72732 -0.0972,-3.37499 -0.0972,-3.37499 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caccc" id="path2793" class="shadow" d="m 220.8683,241.74486 c 0,0 -1.85221,9.4952 -1.92044,14.30623 -0.078,5.49739 1.72993,16.40284 1.72993,16.40284 0,0 -0.37012,-9.79444 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="cacac" id="path2795" class="shadow" d="m 220.6141,270.44405 c 0,0 -1.08607,3.59049 -0.98853,5.4265 0.0928,1.74744 1.48279,5.03595 1.48279,5.03595 0,0 1.05088,-3.3264 0.98853,-5.03595 -0.0683,-1.8739 -1.48279,-5.4265 -1.48279,-5.4265 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 223.91434,225.02477 c 0,0 1.68069,8.258 0.61534,12.18167 -0.63838,2.35118 -1.57717,6.24324 -4.00986,6.11072 -2.50758,-0.13659 -2.88557,-4.25779 -3.42463,-6.71055 -0.84038,-3.8238 0.46036,-11.73616 0.46036,-11.73616 0,0 -0.071,1.19752 -0.10438,2.87419 0.10594,0.005 0.62785,-3.7e-4 0.62785,-3.7e-4 l -0.33933,0.82187 c 0,0 -0.12233,-0.009 -0.30011,-0.015 -0.0247,2.68496 0.0793,6.18345 0.68297,8.14152 0.49034,1.5903 1.05861,3.33021 2.43719,3.3415 1.52508,0.0125 2.19638,-1.88805 2.7564,-3.65191 0.59128,-1.86235 0.70758,-5.20558 0.69561,-7.78429 -0.28085,0 -1.70584,-0.0487 -1.70584,-0.0487 0.0541,-0.32893 0.16478,-0.53596 0.16187,-0.82841 0,0 1.25193,-0.012 1.535,-0.012 -0.025,-1.57029 -0.0884,-2.68465 -0.0884,-2.68465 z" class="steel_piercing" id="path2797" sodipodi:nodetypes="caaacccccsascccccc"/> + <path inkscape:connector-curvature="0" d="m 220.82208,243.14073 c 0,0 -1.68382,8.632 -1.74585,13.00566 -0.0709,4.99762 1.57266,14.91167 1.57266,14.91167 0,0 -0.33647,-8.90403 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z" class="steel_piercing" id="path2799" sodipodi:nodetypes="caccc"/> + <path inkscape:connector-curvature="0" d="m 220.63641,270.91962 c 0,0 -0.98735,3.26408 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57813 1.34799,4.57813 0,0 0.95535,-3.02399 0.89867,-4.57813 -0.0621,-1.70354 -1.34799,-4.93318 -1.34799,-4.93318 z" class="steel_piercing" id="path2801" sodipodi:nodetypes="cacac"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Medium_Piercing" style="display:inline" inkscape:label="Boob_Medium_Piercing"> + <g style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1" transform="matrix(1.0081159,0,0,1.0081159,-2.6203467,-1.6676415)" id="g2807"/> + <g transformVariableName="_boob_left_art_transform" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1" id="g2817"> + <path inkscape:connector-curvature="0" d="m 319.36283,214.04054 c 0,0.74947 -0.84077,1.5972 -1.5972,1.5972 -0.75643,0 -1.5972,-0.84773 -1.5972,-1.5972 0,-0.74947 0.84077,-1.5972 1.5972,-1.5972 0.75643,0 1.5972,0.84773 1.5972,1.5972 z" id="path2809" sodipodi:nodetypes="aaaaa" class="shadow"/> + <path inkscape:connector-curvature="0" d="m 309.64776,215.76331 c -0.75293,0 -1.63873,-0.84886 -1.5972,-1.5972 0.0463,-0.83366 1.21255,-1.57531 1.96548,-1.57531 -0.68775,1.21129 -0.7805,1.82947 -0.3682,3.17251 z" id="path2811" sodipodi:nodetypes="saccs" class="shadow"/> + <path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path2813" d="m 319.21763,214.04054 c 0,0.68133 -0.76433,1.452 -1.452,1.452 -0.68767,0 -1.452,-0.77067 -1.452,-1.452 0,-0.68134 0.76433,-1.452 1.452,-1.452 0.68767,0 1.452,0.77066 1.452,1.452 z" inkscape:connector-curvature="0"/> + <path class="steel_piercing" sodipodi:nodetypes="saccs" id="path2815" d="m 309.64664,215.61811 c -0.68448,0 -1.48776,-0.77158 -1.452,-1.452 0.0401,-0.76308 1.10584,-1.452 1.79032,-1.452 -0.71906,1.10285 -0.73484,1.67672 -0.33828,2.904 z" inkscape:connector-curvature="0"/> + </g> + <g transformVariableName="_boob_right_art_transform" id="g2827" style="display:inline"> + <path transform="matrix(1,0,0,1.0092899,0,-2.0984812)" class="shadow" sodipodi:nodetypes="aaaaa" id="path2819" d="m 224.20461,228.08348 c 0,0.74947 -0.84077,1.5972 -1.5972,1.5972 -0.75643,0 -1.5972,-0.84773 -1.5972,-1.5972 0,-0.74947 0.84077,-1.5972 1.5972,-1.5972 0.75643,0 1.5972,0.84773 1.5972,1.5972 z" inkscape:connector-curvature="0"/> + <path transform="matrix(1,0,0,1.0092899,0,-2.0984812)" class="shadow" sodipodi:nodetypes="cscc" id="path2821" d="m 217.78699,229.56335 c -0.34466,-0.31248 -0.8444,-0.64473 -0.8444,-1.05102 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 -0.78404,0.89358 -0.83246,1.20611 -0.7528,2.64822 z" inkscape:connector-curvature="0"/> + <path transform="matrix(1,0,0,1.0092899,0,-2.0984812)" inkscape:connector-curvature="0" d="m 224.05941,228.08348 c 0,0.68133 -0.76433,1.452 -1.452,1.452 -0.68767,0 -1.452,-0.77067 -1.452,-1.452 0,-0.68134 0.76433,-1.452 1.452,-1.452 0.68767,0 1.452,0.77066 1.452,1.452 z" id="path2823" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + <path transform="matrix(1,0,0,1.0092899,0,-2.0984812)" inkscape:connector-curvature="0" d="m 217.78247,229.49646 c -0.31333,-0.28407 -0.76728,-0.63503 -0.76728,-1.00438 0,-0.68448 0.76752,-1.452 1.452,-1.452 -0.5497,0.90956 -0.83533,1.21423 -0.68472,2.45638 z" id="path2825" sodipodi:nodetypes="cscc" class="steel_piercing"/> + </g> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Medium_Highlights" inkscape:label="Boob_Medium_Highlights" style="display:inline"> + <g inkscape:groupmode="layer" id="Boob_Medium_Highlights2" inkscape:label="Boob_Medium_Highlights2" style="display:inline"> + <g id="g3014" transformVariableName="_boob_left_art_transform"> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9" class="highlight2" d="m 321.76732,202.98942 c -2.24758,1.20251 -7.44827,3.88396 -5.38213,7.57381 4.23715,-0.071 5.92957,-5.70386 5.38213,-7.57381 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7" class="highlight2" d="m 312.09439,222.06039 c -3.52683,3.26178 -5.76341,8.34571 -1.88762,10.3195 2.98911,-1.10062 3.7767,-5.82866 1.88762,-10.3195 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4" class="highlight2" d="m 312.37099,218.66381 c -1.45195,1.21811 -0.55284,1.57513 -0.29636,2.05122 0.91423,-0.4922 1.12461,-0.75849 0.29636,-2.05122 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-70" class="highlight2" d="m 323.62317,200.44685 c -0.70321,0.2097 -1.91059,0.15541 -1.19026,1.55076 2.16327,-0.20337 1.45089,-1.07074 1.19026,-1.55076 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4-2" class="highlight2" d="m 314.01066,214.12617 c -1.11294,-1.53405 -2.19421,-0.93805 -2.68716,-0.71571 0.55046,0.56081 1.587,0.71901 2.68716,0.71571 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4-2-1" class="highlight2" d="m 313.88423,211.37159 c -1.29574,-0.23601 -1.88877,0.15883 -2.19442,0.60489 1.134,0.2189 1.34152,0.27164 2.19442,-0.60489 z" inkscape:connector-curvature="0"/> + </g> + <g id="g3024" transformVariableName="_boob_right_art_transform"> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7" class="highlight2" d="m 247.9062,221.14042 c -7.62159,-1.9871 -15.09403,5.90489 -17.77314,7.66238 4.07679,1.14519 17.22608,2.90775 17.77314,-7.66238 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5" class="highlight2" d="m 255.78198,212.79897 c -0.95282,-0.17319 -2.05051,0.57552 -1.97909,1.35787 0.65101,0.10861 1.99182,0.29621 1.97909,-1.35787 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9" class="highlight2" d="m 229.41707,228.57127 c -0.73203,-0.21484 -5.15512,0.19734 -5.63251,0.25215 0.75202,0.71167 5.58739,1.42579 5.63251,-0.25215 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-6" class="highlight2" d="m 219.51702,235.37627 c -0.0284,5.33194 2.23939,13.97727 3.65131,15.5372 0.17258,-0.32513 -3.39485,-14.58806 -3.65131,-15.5372 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-4" class="highlight2" d="m 219.52806,232.80599 c -0.9515,0.64423 -0.46796,1.54477 -0.0582,1.90403 0.59571,-0.35255 0.32483,-1.39831 0.0582,-1.90403 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-62-3" class="highlight2" d="m 219.83124,227.63948 c -0.59901,0.17025 -1.09692,0.35984 -1.51392,0.72202 0.72549,0.21496 1.41311,0.13798 1.51392,-0.72202 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-62-3-9" class="highlight2" d="m 219.85898,225.8855 c -0.26942,0.0314 -0.84341,0.20991 -0.92331,0.70779 0.27525,-0.29894 0.86207,-0.25886 0.92331,-0.70779 z" inkscape:connector-curvature="0"/> + </g> + </g> + <g style="display:inline" inkscape:label="Boob_Medium_Highlights1" id="Boob_Medium_Highlights1" inkscape:groupmode="layer"> + <g id="g2210" transform="matrix(1.0060951,0,0,1.0060951,-1.9605124,-1.2116124)" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" d="m 319.27783,205.85656 c -2.25111,1.2044 -2.83496,3.23381 -2.89058,4.67945 1.40005,-0.6336 3.43888,-2.80656 2.89058,-4.67945 z" class="highlight1" id="path1139" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 312.08094,222.06065 c -1.68861,1.7669 -1.74121,4.42131 -1.45308,5.80445 1.40005,-1.16485 2.00138,-3.93156 1.45308,-5.80445 z" class="highlight1" id="path1141" sodipodi:nodetypes="ccc"/> + </g> + <g id="g2992" transformVariableName="_boob_right_art_transform"> + <path transform="matrix(1.0060951,0,0,1.0060951,-1.9605124,-1.2116124)" inkscape:connector-curvature="0" d="m 241.75459,224.35338 c -4.7273,0.75979 -7.83647,2.53916 -10.64479,3.98691 4.08319,1.14699 9.56562,1.06857 10.64479,-3.98691 z" class="highlight1" id="path1143" sodipodi:nodetypes="ccc"/> + </g> + </g> + </g> + </g> + <g style="display:inline" inkscape:label="Boob_Small_" id="Boob_Small_" inkscape:groupmode="layer"> + <g inkscape:groupmode="layer" id="Boob_Small" style="display:inline;opacity:1" inkscape:label="Boob_Small"> + <g id="g2754" transformVariableName="_boob_right_art_transform"> + <path sodipodi:nodetypes="ccccccc" id="path2750" class="shadow" d="m 258.4635,206.70525 c -2.43693,2.43693 -11.69974,10.96496 -13.78161,16.78224 -7.98808,4.18336 -12.04016,9.22946 -16.46667,14.18272 0.43705,8.71501 1.70553,16.51029 9.57142,22.68835 5.76096,5.49343 12.38835,5.57452 18.88215,1.82583 5.22936,-5.97715 7.46563,-9.46914 13.85527,-23.053 -9.9785,-11.21563 7.18836,-22.98696 -12.06056,-32.42614 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 258.4635,206.70525 c -2.51112,2.51112 -10.78183,11.16972 -13.78161,16.78224 -7.11937,4.34266 -11.56357,9.31685 -16.46667,14.18272 0.77061,8.54923 2.31908,16.20536 9.57142,22.68835 6.25108,4.85755 12.67805,5.19866 18.88215,1.82583 6.92903,-4.62954 11.03703,-12.07965 15.29277,-23.053 -0.9345,-14.31756 6.59712,-27.64388 -13.49806,-32.42614 z" class="skin boob" id="path2752" sodipodi:nodetypes="ccccccc"/> + </g> + <g id="g2762" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" d="m 343.18566,248.84738 c 6.61502,-9.96293 1.24605,-23.02347 -3.51192,-32.52403 -4.32357,-4.32357 -19.56457,-7.69007 -30.17045,-7.95661 -8.8142,9.37784 -15.40168,21.99318 -18.70132,35.53493 4.9837,22.57548 41.64172,26.17839 52.38369,4.94571 z" class="shadow" id="path2756" sodipodi:nodetypes="ccccc"/> + <path sodipodi:nodetypes="ccccc" id="path2760" class="skin boob" d="m 343.18566,248.84738 c 5.82359,-10.10683 3.21095,-23.94463 -2.82442,-32.52403 -2.73692,-4.74049 -22.03284,-11.71831 -31.42045,-7.95661 -9.28671,7.38783 -19.83364,21.69713 -18.13882,35.53493 4.7283,22.21233 41.44215,25.37653 52.38369,4.94571 z" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:label="Boob_Small_Areolae_Normal" style="display:inline;opacity:1" id="Boob_Small_Areolae_Normal" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2430"> + <path sodipodi:nodetypes="czczsc" inkscape:connector-curvature="0" d="m 235.30274,231.17264 c 0,0 0.24231,2.57487 -0.69623,5.44459 -0.93851,2.86971 -5.64569,7.20295 -5.64569,7.20295 0,0 -1.26707,-4.99893 -0.96376,-6.1901 0.30329,-1.19118 0.50662,-1.84681 1.74593,-3.20091 1.5586,-1.70299 5.55975,-3.25653 5.55975,-3.25653 z" class="areola" id="path2428"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2434"> + <path sodipodi:nodetypes="sssss" class="areola" d="m 316.0933,235.60905 c -3.40637,-0.37574 -6.84874,-2.88621 -6.8649,-5.13633 -0.0207,-2.87162 4.32444,-5.86871 8.14144,-5.70169 3.58937,0.15706 7.3351,2.49811 6.5993,5.97861 -0.7358,3.4805 -3.80292,5.30866 -7.87584,4.85941 z" id="path2432" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Small_Areolae_Large" style="display:inline;opacity:1" inkscape:label="Boob_Small_Areolae_Large"> + <g id="g2440" transformVariableName="_boob_right_art_transform"> + <path id="path2438" class="areola" d="m 237.2031,229.73085 c 0,0 0.30094,3.19792 -0.8647,6.76203 -1.16561,3.5641 -7.01179,8.94586 -7.01179,8.94586 0,0 -1.57367,-6.20853 -1.19696,-7.68793 0.37668,-1.47941 0.62921,-2.29369 2.16839,-3.97544 1.93574,-2.11507 6.90506,-4.04452 6.90506,-4.04452 z" inkscape:connector-curvature="0" sodipodi:nodetypes="czczsc"/> + </g> + <g id="g2444" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" id="path2442" d="m 315.47577,238.97656 c -4.61957,-0.50956 -9.28796,-3.91415 -9.30987,-6.96566 -0.028,-3.89437 5.86461,-7.95889 11.04106,-7.73238 4.86774,0.213 9.94754,3.38782 8.94968,8.10792 -0.99786,4.72011 -5.15735,7.19938 -10.68087,6.59012 z" class="areola" sodipodi:nodetypes="sssss"/> + </g> + </g> + <g inkscape:label="Boob_Small_Areolae_Wide" style="display:inline;opacity:1" id="Boob_Small_Areolae_Wide" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2450"> + <path sodipodi:nodetypes="caczsc" inkscape:connector-curvature="0" d="m 239.36986,227.39833 c 0,0 0.71277,8.23923 -0.67494,11.99618 -1.54558,4.18436 -8.11406,10.64147 -8.11406,10.64147 0,0 -3.24031,-8.7013 -2.48264,-11.5808 0.75767,-2.8795 0.64608,-3.04882 2.92925,-5.54348 2.87142,-3.13742 8.34239,-5.51337 8.34239,-5.51337 z" class="areola" id="path2448"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2454"> + <path sodipodi:nodetypes="sssss" class="areola" d="m 315.07013,243.9018 c -6.9072,-0.76189 -13.8874,-5.85245 -13.92016,-10.41508 -0.0419,-5.82288 8.76879,-11.90016 16.50864,-11.56148 7.27826,0.31847 14.8736,5.06548 13.3816,12.12299 -1.49201,7.05753 -7.71129,10.76454 -15.97008,9.85357 z" id="path2452" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Small_Areolae_Huge" style="display:inline;opacity:1" inkscape:label="Boob_Small_Areolae_Huge"> + <g id="g2460" transformVariableName="_boob_right_art_transform"> + <path id="path2458" class="areola" d="m 243.17821,224.74093 c 0,0 2.45622,9.86999 1.16254,14.56572 -1.70998,6.20677 -11.17982,15.74941 -11.17982,15.74941 0,0 -5.05432,-6.17604 -5.24261,-14.13117 -0.18828,-7.95513 0.0149,-2.81221 2.42761,-6.83709 3.03435,-5.06192 12.83228,-9.34687 12.83228,-9.34687 z" inkscape:connector-curvature="0" sodipodi:nodetypes="caczsc"/> + </g> + <g id="g2464" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" id="path2462" d="m 315.06318,249.00368 c -8.66357,-0.95563 -17.41869,-7.34062 -17.45978,-13.06343 -0.0525,-7.30353 10.99852,-14.92615 20.70646,-14.50135 9.12899,0.39946 18.65567,6.35353 16.78428,15.20563 -1.87139,8.85212 -9.67212,13.50176 -20.03096,12.35915 z" class="areola" sodipodi:nodetypes="sssss"/> + </g> + </g> + <g inkscape:label="Boob_Small_Areolae_Star" style="display:inline;opacity:1" id="Boob_Small_Areolae_Star" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2470"> + <path sodipodi:nodetypes="cccccccssc" inkscape:connector-curvature="0" d="m 240.29933,227.09802 c -5.18428,3.30051 -7.99474,6.86395 -7.99474,6.86395 0,0 5.67867,-0.38365 11.0749,1.50681 -6.37633,0.70776 -10.4201,3.2349 -10.4201,3.2349 0,0 0.13997,6.94247 1.84947,12.07033 -2.42771,-2.29651 -5.33947,-9.68006 -5.33947,-9.68006 0,0 -0.3282,3.79742 1.03998,8.23505 -1.98466,-2.89505 -2.17172,-7.40591 -2.3519,-9.33994 -0.17874,-1.91868 0.16998,-2.80786 2.53329,-5.94212 3.16348,-4.19549 9.60857,-6.94892 9.60857,-6.94892 z" class="areola" id="path2468"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2474"> + <path sodipodi:nodetypes="ccccccccccc" class="areola" d="m 314.46943,234.27224 c -3.76567,1.79157 -6.84161,5.28921 -10.10232,7.39152 1.44885,-3.26388 2.80438,-7.85021 4.89355,-10.83394 -2.31674,-1.93975 -5.18388,-2.96451 -8.37065,-3.68536 3.56307,-1.07962 7.79205,-1.81135 11.55083,-1.25273 1.41528,-1.99803 2.88366,-2.69755 5.19852,-4.40935 0.47133,1.75669 1.08677,2.27498 2.38302,4.27914 4.40924,-0.57094 8.75671,0.34013 13.32809,1.37553 -4.74363,0.78623 -8.39968,1.78672 -11.63843,3.96162 1.36056,2.93262 2.11025,7.4758 2.95271,10.6874 -2.99455,-2.42622 -6.28672,-5.87702 -10.19532,-7.51383 z" id="path2472" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:label="Boob_Small_Areolae_Heart" style="display:inline;opacity:1" id="Boob_Small_Areolae_Heart" inkscape:groupmode="layer"> + <g transformVariableName="_boob_right_art_transform" id="g2480"> + <path sodipodi:nodetypes="czcac" inkscape:connector-curvature="0" d="m 231.56989,252.42514 c -1.22195,-2.10852 -4.20293,-10.7371 -3.39892,-14.26628 0.80401,-3.52918 1.44795,-3.28007 4.67241,-5.19203 1.07003,-1.07003 5.21528,-2.42178 6.54597,-0.67782 4.36779,5.72431 -3.67752,10.857 -7.81946,20.13613 z" class="areola" id="path2478"/> + </g> + <g transformVariableName="_boob_left_art_transform" id="g2484"> + <path sodipodi:nodetypes="czczcc" class="areola" d="m 313.44442,246.20895 c -4.20528,-2.9951 -12.71977,-16.79856 -6.01226,-22.33579 6.70751,-5.53723 9.65531,-0.0103 9.65531,-0.0103 0,0 5.61579,-5.19127 10.77973,1.06406 5.16394,6.25533 -9.37618,18.97767 -14.42277,21.28185 z" id="path2482" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Small_Nipples" style="display:inline;opacity:1" inkscape:label="Boob_Small_Nipples"> + <g id="g2261" transformVariableName="_boob_right_art_transform"> + <path id="path2251" class="shadow" d="m 228.15788,238.27703 c 0,0 -1.69507,-0.53274 -1.71244,-1.85211 0.0822,-1.64738 1.97278,-3.7797 3.37857,-3.08983 0.61419,0.34349 1.0323,0.99576 1.0323,0.99576 -0.0631,2.02891 -0.89639,3.0666 -2.69843,3.94618 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/> + <path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" d="m 228.15788,238.27703 c 0,0 -1.71287,-0.63317 -1.71244,-1.85211 0.0582,-1.50008 2.07725,-3.77384 3.37857,-3.08983 0.53396,0.31477 1.0323,0.99576 1.0323,0.99576 -0.0695,1.89392 -0.94491,3.08122 -2.69843,3.94618 z" class="areola" id="path2253"/> + <path id="path2255" class="shadow" d="m 226.82891,235.33246 c 0.4671,-0.43506 0.95746,-0.39751 2.03265,-0.2697 -0.95835,0.0287 -1.3927,-0.20327 -2.03265,0.2697 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> + <path id="path2257" class="shadow" d="m 227.54865,235.02726 c -0.0294,-0.24033 0.0356,-0.69542 0.57576,-0.79154 -0.60268,0.23726 -0.50582,0.5033 -0.57576,0.79154 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> + <path id="path2259" class="shadow" d="m 229.12691,238.41526 c 1.38286,-0.93932 2.12052,-2.43098 1.67838,-3.53558 0.24777,0.68434 0.5439,2.16936 -1.67838,3.53558 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> + </g> + <g id="g2277" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" id="path2265" d="m 313.17342,229.48817 c -0.54304,-0.69859 -0.45339,-1.79081 -0.30362,-2.30073 0.3611,-1.37094 1.95228,-2.06832 3.33841,-2.049 1.21548,0.0169 1.90412,0.19475 2.44948,1.27776 0.59205,0.46086 0.63124,1.24817 0.60041,1.28371 -0.16171,1.13935 -0.91614,2.77485 -3.12982,2.68352 -1.77607,0.0895 -2.38275,-0.0237 -2.95486,-0.89526 z" class="shadow" sodipodi:nodetypes="ccscccc"/> + <path sodipodi:nodetypes="csscccc" class="areola" d="m 313.17342,229.48817 c -0.37088,-0.71581 -0.44918,-1.79919 -0.30362,-2.30073 0.38087,-1.31237 2.09965,-2.03413 3.33841,-2.049 1.22123,-0.0146 1.91113,0.36309 2.44948,1.27776 0.49616,0.54803 0.61883,1.25946 0.60041,1.28371 -0.2124,1.06614 -0.96439,2.70517 -3.12982,2.68352 -1.67427,0.002 -2.33494,-0.0646 -2.95486,-0.89526 z" id="path2267" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path2269" d="m 313.95456,226.60231 c 1.19002,-0.4627 2.32428,0.16299 3.06225,0.78272 -0.88614,-0.43236 -2.01938,-1.0249 -3.06225,-0.78272 z" class="shadow" sodipodi:nodetypes="ccc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 315.32933,226.59452 c 0.67881,-0.5905 1.08777,-0.74769 2.10609,-0.65154 -0.95211,0.0335 -1.38478,0.20735 -2.10609,0.65154 z" id="path2271" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path2273" d="m 313.52477,229.56238 c 5.73405,1.19191 5.23709,-2.78121 5.13315,-3.17662 0.34627,2.41244 -1.09956,4.45601 -5.13315,3.17662 z" class="shadow" sodipodi:nodetypes="ccc"/> + <path id="path2275" class="shadow" d="m 314.90832,230.85525 c 3.02543,-0.30922 3.93195,-0.97079 4.24929,-2.75077 -0.0369,2.06363 -1.68284,2.59962 -4.24929,2.75077 z" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Small_Piercings_" inkscape:label="Boob_Small_Piercings_" style="display:inline"> + <g inkscape:groupmode="layer" id="Boob_Small_Areola_Piercing" style="display:inline" inkscape:label="Boob_Small_Areola_Piercing"> + <g id="g2489" transformVariableName="_boob_left_art_transform"> + <path class="shadow" sodipodi:nodetypes="accaa" id="path5169" d="m 320.43194,225.09759 c -5e-5,0.717 -0.77245,1.51654 -1.52538,1.51654 -0.5209,-0.31622 -0.64486,-0.92927 -1.6847,-1.41308 0,-0.74876 0.8338,-1.68143 1.61288,-1.69181 0.75078,-0.0101 1.59725,0.83751 1.5972,1.58835 z" inkscape:connector-curvature="0"/> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5171" d="m 315.94907,234.83564 c 0,0.75084 -0.84635,1.58836 -1.5972,1.58836 -0.75085,0 -1.5972,-0.83752 -1.5972,-1.58836 0,-0.75085 0.84635,-1.58835 1.5972,-1.58835 0.75085,0 1.5972,0.8375 1.5972,1.58835 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 320.28791,225.09759 c 0,0.68259 -0.76752,1.44396 -1.452,1.44396 -0.47354,-0.28747 -0.59653,-0.82419 -1.54184,-1.26402 0,-0.68069 0.79549,-1.61319 1.54184,-1.6239 0.68252,-0.01 1.452,0.76138 1.452,1.44396 z" id="path2749-8-39" sodipodi:nodetypes="accaa" class="steel_piercing"/> + <path inkscape:connector-curvature="0" d="m 315.80387,234.83564 c 0,0.68259 -0.76941,1.44396 -1.452,1.44396 -0.68259,0 -1.452,-0.76137 -1.452,-1.44396 0,-0.68259 0.76941,-1.44396 1.452,-1.44396 0.68259,0 1.452,0.76137 1.452,1.44396 z" id="path2749-8-42" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + </g> + <g id="g2495" transformVariableName="_boob_right_art_transform"> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5173" d="m 236.01142,231.24698 c 0,0.75084 -0.84635,1.58835 -1.5972,1.58835 -0.75085,0 -1.5972,-0.83751 -1.5972,-1.58835 0,-0.75085 0.84635,-1.58836 1.5972,-1.58836 0.75085,0 1.5972,0.83751 1.5972,1.58836 z" inkscape:connector-curvature="0"/> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5175" d="m 229.91767,242.70346 c 0,0.75085 -0.84635,1.58835 -1.5972,1.58835 -0.75085,0 -1.5972,-0.8375 -1.5972,-1.58835 0,-0.75084 0.84635,-1.58836 1.5972,-1.58836 0.75085,0 1.5972,0.83752 1.5972,1.58836 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 235.86622,231.24698 c 0,0.68258 -0.76941,1.44396 -1.452,1.44396 -0.68259,0 -1.452,-0.76138 -1.452,-1.44396 0,-0.68259 0.76941,-1.44396 1.452,-1.44396 0.68259,0 1.452,0.76137 1.452,1.44396 z" id="path2749-8-40" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + <path inkscape:connector-curvature="0" d="m 229.77247,242.70346 c 0,0.68259 -0.76941,1.44396 -1.452,1.44396 -0.68259,0 -1.452,-0.76137 -1.452,-1.44396 0,-0.68258 0.76941,-1.44396 1.452,-1.44396 0.68259,0 1.452,0.76138 1.452,1.44396 z" id="path2749-8-2" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + </g> + </g> + <g inkscape:label="Boob_Small_Areola_Piercing_Heavy" style="display:inline" id="Boob_Small_Areola_Piercing_Heavy" inkscape:groupmode="layer"> + <g id="g2471" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" d="m 321.68714,227.27176 c 0,0 -0.13465,-4.47036 1.43,-5.58749 1.85611,-1.32523 5.3301,-1.17893 6.82,0.54779 1.43465,1.66269 0.96516,4.88585 -0.44,6.57352 -1.13778,1.36653 -5.17,1.3147 -5.17,1.3147 0,0 3.53534,-0.86422 4.29,-2.30073 0.61522,-1.17109 0.47784,-2.99147 -0.44,-3.94411 -1.02892,-1.06792 -3.08003,-1.33322 -4.4,-0.65735 -1.35317,0.69288 -2.09,4.05367 -2.09,4.05367 z" class="shadow" id="path5163" sodipodi:nodetypes="caaacaaac"/> + <path inkscape:connector-curvature="0" d="m 311.95601,227.50867 c 0,0 0.13465,-4.47036 -1.43,-5.58748 -1.85611,-1.32524 -5.3301,-1.17894 -6.82,0.54779 -1.43465,1.66269 -0.96517,4.88583 0.44,6.57352 1.13778,1.36652 5.17,1.3147 5.17,1.3147 0,0 -3.53534,-0.86423 -4.29,-2.30073 -0.61522,-1.17109 -0.47784,-2.99147 0.44,-3.94411 1.02891,-1.06792 3.08003,-1.33322 4.4,-0.65735 1.35317,0.69286 2.09,4.05366 2.09,4.05366 z" class="shadow" id="path5165" sodipodi:nodetypes="caaacaaac"/> + <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4" class="steel_piercing" d="m 322.10179,227.10721 c 0,0 -0.12241,-4.06396 1.3,-5.07953 1.68737,-1.20475 4.84554,-1.07176 6.2,0.49799 1.30422,1.51154 0.87742,4.44168 -0.4,5.97592 -1.03434,1.2423 -4.7,1.19519 -4.7,1.19519 0,0 3.21395,-0.78566 3.9,-2.09157 0.55929,-1.06462 0.4344,-2.71952 -0.4,-3.58556 -0.93538,-0.97084 -2.80003,-1.21202 -4,-0.59759 -1.23016,0.62989 -1.9,3.68515 -1.9,3.68515 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4-7" class="steel_piercing" d="m 311.54136,227.34413 c 0,0 0.12241,-4.06397 -1.3,-5.07954 -1.68737,-1.20475 -4.84554,-1.07175 -6.2,0.498 -1.30422,1.51154 -0.87742,4.44167 0.4,5.97592 1.03434,1.2423 4.7,1.19519 4.7,1.19519 0,0 -3.21395,-0.78567 -3.9,-2.09158 -0.5593,-1.06463 -0.4344,-2.71951 0.4,-3.58555 0.93538,-0.97084 2.80003,-1.21202 4,-0.5976 1.23016,0.62989 1.9,3.68516 1.9,3.68516 z" inkscape:connector-curvature="0"/> + </g> + <g id="g2475" transformVariableName="_boob_right_art_transform"> + <path inkscape:connector-curvature="0" d="m 232.11707,235.48695 c 0,0 0.60967,-2.2986 1.54375,-2.82951 2.13513,-1.21356 5.78847,-1.60777 7.36253,0.2774 0.71838,0.86038 0.32663,2.54546 -0.475,3.32885 -1.34,1.30952 -5.58127,0.66577 -5.58127,0.66577 0,0 3.80544,0.19579 4.63127,-1.1651 0.35502,-0.58505 0.0468,-1.55454 -0.47501,-1.99731 -1.21025,-1.02692 -3.25057,-0.85339 -4.75002,-0.33288 -0.96055,0.33345 -2.25625,2.05278 -2.25625,2.05278 z" class="shadow" id="path5167" sodipodi:nodetypes="caaacaaac"/> + <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4-3" class="steel_piercing" d="m 232.53913,235.38469 c 0,0 0.55425,-2.08965 1.40341,-2.57229 1.94103,-1.10324 5.26225,-1.46161 6.69321,0.25218 0.65308,0.78216 0.29694,2.31406 -0.43182,3.02623 -1.21818,1.19046 -5.07388,0.60524 -5.07388,0.60524 0,0 3.45949,0.17799 4.21024,-1.05918 0.32275,-0.53186 0.0425,-1.41322 -0.43182,-1.81574 -1.10022,-0.93356 -2.95507,-0.77581 -4.3182,-0.30262 -0.87323,0.30314 -2.05114,1.86618 -2.05114,1.86618 z" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Small_Piercing_Heavy" style="display:inline" inkscape:label="Boob_Small_Piercing_Heavy"> + <g id="g3131" transformVariableName="_boob_left_art_transform"> + <path inkscape:connector-curvature="0" d="m 310.74124,223.29137 c 0,0 -2.49411,9.18373 -0.98325,13.39981 1.04424,2.91398 3.31774,6.91285 6.40728,6.7218 3.05706,-0.18905 4.59483,-4.44702 5.47216,-7.38158 1.2346,-4.12965 -0.7356,-12.9098 -0.7356,-12.9098 0,0 0.11352,1.8255 0.16679,3.66985 -0.16929,0.006 -2.35051,-4.1e-4 -2.35051,-4.1e-4 0.0559,0.37078 -0.0172,0.52908 -0.0182,0.90408 0,0 2.10319,-0.01 2.38726,-0.0165 0.0394,2.95347 -0.12672,6.29356 -1.09131,8.44744 -0.78349,1.74932 -2.10939,3.66042 -3.89433,3.67566 -1.987,0.017 -3.50956,-2.07688 -4.40441,-4.01713 -0.94479,-2.04857 -1.13062,-5.2179 -1.1115,-8.05448 0.44876,0 2.16836,-0.0536 2.16836,-0.0536 l 0.0221,-0.91124 c 0,0 -1.72384,-0.0132 -2.17613,-0.0132 0.0399,-1.72733 0.14124,-3.46134 0.14124,-3.46134 z" class="shadow" id="path5090" sodipodi:nodetypes="caaacccccsascccccc"/> + <path inkscape:connector-curvature="0" d="m 316.17757,240.04058 c 0,0 -1.85221,9.4952 -1.92044,14.30624 -0.078,5.49738 1.72993,16.40283 1.72993,16.40283 0,0 -0.37012,-9.79442 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z" class="shadow" id="path5094" sodipodi:nodetypes="caccc"/> + <path inkscape:connector-curvature="0" d="m 315.92337,268.73978 c 0,0 -1.08608,3.59047 -0.98853,5.42648 0.0928,1.74745 1.48279,5.03598 1.48279,5.03598 0,0 1.05088,-3.32642 0.98853,-5.03598 -0.0684,-1.8739 -1.48279,-5.42648 -1.48279,-5.42648 z" class="shadow" id="path5096" sodipodi:nodetypes="cacac"/> + <path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-2" class="steel_piercing" d="m 311.18823,224.19858 c 0,0 -2.26737,8.34885 -0.89386,12.18164 0.94931,2.64907 3.01613,6.2844 5.8248,6.11072 2.77914,-0.17186 4.17712,-4.04275 4.97469,-6.71053 1.12237,-3.75423 -0.66873,-11.73618 -0.66873,-11.73618 0,0 0.1032,1.19752 0.15163,2.87419 -0.1539,0.005 -1.857,-3.7e-4 -1.857,-3.7e-4 -0.01,0.4056 -0.009,0.4963 -0.0851,0.81799 0,0 1.70069,-0.005 1.95894,-0.0111 0.0358,2.68498 -0.1152,6.18346 -0.9921,8.14152 -0.71227,1.59029 -1.91763,3.32765 -3.5403,3.34151 -1.80637,0.0154 -3.19051,-1.88807 -4.00401,-3.65193 -0.8589,-1.86234 -1.02784,-5.20558 -1.01046,-7.78429 0.40797,0 1.73828,-0.0487 1.73828,-0.0487 l 0.16073,-0.8284 c 0,0 -1.47475,-0.012 -1.88597,-0.012 0.0363,-1.5703 0.1284,-2.68465 0.1284,-2.68465 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-8" class="steel_piercing" d="m 316.13135,241.43645 c 0,0 -1.68382,8.632 -1.74585,13.00567 -0.0709,4.99762 1.57266,14.91166 1.57266,14.91166 0,0 -0.33647,-8.90402 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-8" class="steel_piercing" d="m 315.94568,269.21534 c 0,0 -0.98735,3.26408 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57815 1.34799,4.57815 0,0 0.95535,-3.02401 0.89867,-4.57815 -0.0621,-1.70355 -1.34799,-4.93318 -1.34799,-4.93318 z" inkscape:connector-curvature="0"/> + </g> + <g id="g3139" transformVariableName="_boob_right_art_transform"> + <path inkscape:connector-curvature="0" d="m 232.41948,231.80744 c 0,0 1.84875,9.08379 0.67687,13.39983 -0.70222,2.58629 -1.73488,6.86756 -4.41084,6.72179 -2.75834,-0.15026 -3.17412,-4.68357 -3.76709,-7.3816 -0.92442,-4.20618 0.5064,-12.90978 0.5064,-12.90978 0,0 -0.0782,1.73915 -0.11483,3.58349 0.11654,0.006 1.459,-4.1e-4 1.459,-4.1e-4 l -0.43147,0.90407 c 0,0 -0.84471,-0.01 -1.04027,-0.0165 -0.0271,2.95346 0.0873,6.37993 0.75126,8.5338 0.53937,1.74933 1.16447,3.66321 2.68091,3.67564 1.67758,0.0138 2.41602,-2.07685 3.03204,-4.01709 0.65041,-2.04858 0.77834,-5.30427 0.76517,-8.14084 -0.30893,0 -1.87642,-0.0536 -1.87642,-0.0536 0.0596,-0.36182 0.0683,-0.46339 0.2179,-0.91125 0,0 1.33728,-0.0132 1.64865,-0.0132 -0.0275,-1.72732 -0.0972,-3.37499 -0.0972,-3.37499 z" class="shadow" id="path5092" sodipodi:nodetypes="caaacccccsascccccc"/> + <path inkscape:connector-curvature="0" d="m 229.06632,249.43465 c 0,0 -1.8522,9.4952 -1.92044,14.30623 -0.078,5.49738 1.72993,16.40284 1.72993,16.40284 0,0 -0.37012,-9.79444 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z" class="shadow" id="path5098" sodipodi:nodetypes="caccc"/> + <path inkscape:connector-curvature="0" d="m 228.81212,278.13384 c 0,0 -1.08607,3.59049 -0.98853,5.4265 0.0928,1.74744 1.48279,5.03595 1.48279,5.03595 0,0 1.05088,-3.3264 0.98853,-5.03595 -0.0683,-1.8739 -1.48279,-5.4265 -1.48279,-5.4265 z" class="shadow" id="path5100" sodipodi:nodetypes="cacac"/> + <path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-0-8" class="steel_piercing" d="m 232.11236,232.71456 c 0,0 1.68068,8.25799 0.61534,12.18167 -0.63839,2.35117 -1.57717,6.24324 -4.00986,6.11072 -2.50758,-0.1366 -2.88557,-4.25779 -3.42463,-6.71055 -0.84038,-3.8238 0.46036,-11.73616 0.46036,-11.73616 0,0 -0.071,1.19752 -0.10438,2.87419 0.10594,0.005 1.0341,-3.7e-4 1.0341,-3.7e-4 l -0.22214,0.82187 c 0,0 -0.64577,-0.009 -0.82355,-0.015 -0.0247,2.68496 0.0793,6.18345 0.68297,8.14152 0.49034,1.5903 1.05861,3.3302 2.43719,3.3415 1.52507,0.0125 2.19638,-1.88805 2.7564,-3.65191 0.59128,-1.86235 0.70758,-5.20558 0.69561,-7.78429 -0.28085,0 -1.70584,-0.0487 -1.70584,-0.0487 0.0541,-0.32893 0.16478,-0.53596 0.16187,-0.82841 0,0 1.25193,-0.012 1.535,-0.012 -0.025,-1.57029 -0.0884,-2.68465 -0.0884,-2.68465 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-5-7" class="steel_piercing" d="m 229.0201,250.83052 c 0,0 -1.68382,8.63199 -1.74585,13.00566 -0.0709,4.99762 1.57266,14.91167 1.57266,14.91167 0,0 -0.33647,-8.90403 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-4-0" class="steel_piercing" d="m 228.83443,278.60941 c 0,0 -0.98734,3.26408 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57813 1.34799,4.57813 0,0 0.95535,-3.024 0.89867,-4.57813 -0.0621,-1.70355 -1.34799,-4.93318 -1.34799,-4.93318 z" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:label="Boob_Small_Piercing" style="display:inline" id="Boob_Small_Piercing" inkscape:groupmode="layer"> + <g id="g1366" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/> + <g id="g4019" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1" transformVariableName="_boob_left_art_transform"> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5080" d="m 321.89408,227.57109 c 0,0.74947 -0.84077,1.5972 -1.5972,1.5972 -0.75643,0 -1.5972,-0.84773 -1.5972,-1.5972 0,-0.74947 0.84077,-1.5972 1.5972,-1.5972 0.75643,0 1.5972,0.84773 1.5972,1.5972 z" inkscape:connector-curvature="0"/> + <path class="shadow" sodipodi:nodetypes="saccs" id="path5082" d="m 313.02276,229.35579 c -0.75293,0 -1.63873,-0.84886 -1.5972,-1.5972 0.0463,-0.83367 1.21255,-1.57531 1.96548,-1.57531 -0.68775,1.21129 -0.7805,1.82947 -0.3682,3.17251 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 321.74888,227.57109 c 0,0.68134 -0.76433,1.452 -1.452,1.452 -0.68767,0 -1.452,-0.77066 -1.452,-1.452 0,-0.68134 0.76433,-1.452 1.452,-1.452 0.68767,0 1.452,0.77066 1.452,1.452 z" id="path2749-8-1" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + <path inkscape:connector-curvature="0" d="m 313.02164,229.21059 c -0.68448,0 -1.48776,-0.77159 -1.452,-1.452 0.0401,-0.76308 1.10584,-1.452 1.79032,-1.452 -0.71906,1.10285 -0.73484,1.67672 -0.33828,2.904 z" id="path2749-8-37" sodipodi:nodetypes="saccs" class="steel_piercing"/> + </g> + <g style="display:inline" id="g3034" transformVariableName="_boob_right_art_transform"> + <path inkscape:connector-curvature="0" d="m 231.70657,235.61491 c 0,0.74947 -0.84076,1.5972 -1.5972,1.5972 -0.75643,0 -1.5972,-0.84773 -1.5972,-1.5972 0,-0.74947 0.84077,-1.5972 1.5972,-1.5972 0.75644,0 1.5972,0.84773 1.5972,1.5972 z" id="path5084" sodipodi:nodetypes="aaaaa" class="shadow" transform="matrix(1,0,0,1.0092899,0,-2.0984812)"/> + <path inkscape:connector-curvature="0" d="m 226.57248,236.96752 c -0.34466,-0.31248 -0.76627,-0.64473 -0.76627,-1.05102 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 -0.78404,0.89358 -0.91059,1.20611 -0.83093,2.64822 z" id="path5086" sodipodi:nodetypes="cscc" class="shadow" transform="matrix(1,0,0,1.0092899,0,-2.0984812)"/> + <path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path2749-8-1-1" d="m 231.56137,235.61491 c 0,0.68134 -0.76433,1.452 -1.452,1.452 -0.68766,0 -1.452,-0.77066 -1.452,-1.452 0,-0.68133 0.76434,-1.452 1.452,-1.452 0.68767,0 1.452,0.77067 1.452,1.452 z" inkscape:connector-curvature="0" transform="matrix(1,0,0,1.0092899,0,-2.0984812)"/> + <path class="steel_piercing" sodipodi:nodetypes="cscc" id="path2749-8-1-5" d="m 226.56796,236.90063 c -0.31333,-0.28407 -0.68915,-0.63503 -0.68915,-1.00438 0,-0.68448 0.76752,-1.452 1.452,-1.452 -0.71276,0.81234 -0.83527,1.14537 -0.76285,2.45638 z" inkscape:connector-curvature="0" transform="matrix(1,0,0,1.0092899,0,-2.0984812)"/> + </g> + </g> + </g> + <g inkscape:label="Boob_Small_Highlights" id="Boob_Small_Highlights" inkscape:groupmode="layer" style="display:inline"> + <g style="display:inline" inkscape:label="Boob_Small_Highlights2" id="Boob_Small_Highlights2" inkscape:groupmode="layer"> + <g transformVariableName="_boob_left_art_transform" id="g2519"> + <path inkscape:connector-curvature="0" d="m 321.85975,215.92692 c -1.89715,1.20251 -6.31642,3.88396 -3.175,7.57381 4.21646,-0.071 4.26738,-5.70386 3.175,-7.57381 z" class="highlight2" id="path2507" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 314.90689,235.99789 c -3.52683,3.26178 -5.76341,8.34571 -1.88762,10.3195 2.98911,-1.10062 3.7767,-5.82866 1.88762,-10.3195 z" class="highlight2" id="path2509" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 315.18349,232.60131 c -1.45195,1.21811 -0.55284,1.57513 -0.29636,2.05122 0.91423,-0.4922 1.12461,-0.75849 0.29636,-2.05122 z" class="highlight2" id="path2511" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 322.97466,213.38435 c -0.6421,0.2097 -1.8653,0.15541 -0.73834,1.55076 2.104,-0.20337 1.13886,-1.07074 0.73834,-1.55076 z" class="highlight2" id="path2513" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 316.82316,228.06367 c -1.11294,-1.53405 -2.19421,-0.93805 -2.68716,-0.71571 0.55046,0.56081 1.587,0.71901 2.68716,0.71571 z" class="highlight2" id="path2515" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 316.69673,225.30909 c -1.29574,-0.23601 -1.88877,0.15883 -2.19442,0.60489 1.134,0.2189 1.34152,0.27164 2.19442,-0.60489 z" class="highlight2" id="path2517" sodipodi:nodetypes="ccc"/> + </g> + <g transformVariableName="_boob_right_art_transform" id="g2560"> + <path inkscape:connector-curvature="0" d="m 259.03954,222.95658 c -7.62159,-1.9871 -15.09403,5.90489 -17.77314,7.66238 4.07679,1.14519 17.22608,2.90775 17.77314,-7.66238 z" class="highlight2" id="path2522" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 265.10282,214.91201 c -0.95282,-0.17319 -2.05051,0.57552 -1.97909,1.35787 0.65101,0.10861 1.99182,0.29621 1.97909,-1.35787 z" class="highlight2" id="path2526" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 240.11624,228.02619 c -0.88548,-0.39214 -2.12833,0.0778 -2.24268,0.85503 0.6073,0.25848 1.86652,0.75577 2.24268,-0.85503 z" class="highlight2" id="path2531" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 237.99074,236.34944 c -0.73203,-0.21484 -5.15512,0.19734 -5.63251,0.25215 0.75202,0.71167 5.58739,1.42579 5.63251,-0.25215 z" class="highlight2" id="path2534" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 229.28393,243.15444 c -0.0284,5.33194 5.46557,13.27016 6.87749,14.83009 0.17258,-0.32513 -6.62103,-13.88095 -6.87749,-14.83009 z" class="highlight2" id="path2536" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 229.074,240.58416 c -0.9515,0.64423 -0.46796,1.54477 -0.0582,1.90403 0.59571,-0.35255 0.32483,-1.39831 0.0582,-1.90403 z" class="highlight2" id="path2545" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 228.40491,235.41765 c -0.59901,0.17025 -1.09692,0.35984 -1.51392,0.72202 0.72549,0.21496 1.41311,0.13798 1.51392,-0.72202 z" class="highlight2" id="path2556" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 228.43265,233.66367 c -0.26942,0.0314 -0.84341,0.20991 -0.92331,0.70779 0.27525,-0.29894 0.86207,-0.25886 0.92331,-0.70779 z" class="highlight2" id="path2558" sodipodi:nodetypes="ccc"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Small_Highlights1" inkscape:label="Boob_Small_Highlights1" style="display:inline"> + <g transformVariableName="_boob_left_art_transform" transform="matrix(1.0060951,0,0,1.0060951,-1.9605124,-1.2116124)" id="g2569"> + <path sodipodi:nodetypes="ccc" id="path2564" class="highlight1" d="m 320.21266,218.71568 c -1.90013,1.2044 -1.89258,3.23381 -1.52692,4.67945 1.21541,-0.6336 2.621,-2.80656 1.52692,-4.67945 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccc" id="path2567" class="highlight1" d="m 314.8764,235.91371 c -1.68861,1.7669 -1.74121,4.42131 -1.45308,5.80445 1.40005,-1.16485 2.00138,-3.93156 1.45308,-5.80445 z" inkscape:connector-curvature="0"/> + </g> + <g transformVariableName="_boob_right_art_transform" id="g2573"> + <path sodipodi:nodetypes="ccc" id="path2571" class="highlight1" d="m 252.94473,226.59339 c -4.7273,0.75979 -7.83647,2.53916 -10.64479,3.98691 4.08319,1.14699 9.56562,1.06857 10.64479,-3.98691 z" inkscape:connector-curvature="0" transform="matrix(1.0060951,0,0,1.0060951,-1.9605124,-1.2116124)"/> + </g> + </g> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_None_" inkscape:label="Boob_None_" style="display:inline"> + <g inkscape:label="Boob_None_Areola_Normal" style="display:inline;opacity:1" id="Boob_None_Areola_Normal" inkscape:groupmode="layer"> <path inkscape:connector-curvature="0" id="path1074" d="m 312.6125,241.81215 c -2.0933,-0.29336 -4.20874,-2.25346 -4.21867,-4.01028 -0.0126,-2.24206 2.65749,-4.58209 5.00314,-4.45169 2.20577,0.12263 4.50762,1.95044 4.05546,4.6679 -0.45217,2.71747 -2.337,4.14484 -4.83993,3.79407 z" class="areola" sodipodi:nodetypes="sssss"/> <path inkscape:connector-curvature="0" id="path1082" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" class="shadow" sodipodi:nodetypes="ccsscsc"/> <path sodipodi:nodetypes="ccsscsc" class="areola" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" id="path1084" inkscape:connector-curvature="0"/> @@ -1649,147 +2132,121 @@ <path inkscape:connector-curvature="0" id="path1086-5" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" class="shadow" sodipodi:nodetypes="ccc"/> <path sodipodi:nodetypes="ccc" class="shadow" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" id="path1088-1" inkscape:connector-curvature="0"/> </g> - <g inkscape:groupmode="layer" id="Boob_Areola_Piercing" style="display:inline" inkscape:label="Boob_Areola_Piercing"> - <g id="g1412" transform="matrix(1.0263785,0,0,1.0263785,-8.6733354,-5.3910578)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/> - <g id="g1417" transform="matrix(1.0228023,0,0,1.0228023,-5.1326497,-5.0109358)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/> - <g id="g3985" transform="matrix(1,0,0,0.99446198,0,1.3046736)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path class="shadow" sodipodi:nodetypes="accaa" id="path5169" d="m 320.11944,205.11636 c -5e-5,0.72098 -0.77245,1.52498 -1.52538,1.52498 -0.5209,-0.31798 -0.53158,-1.16226 -1.57142,-1.64877 0,-0.75293 0.80074,-1.47651 1.4996,-1.47341 0.75084,0.003 1.59725,0.84217 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5171" d="m 314.10532,222.82749 c 0,0.75293 -0.84428,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75292,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 319.97541,205.11636 c 0,0.68447 -0.76752,1.452 -1.452,1.452 -0.47354,-0.28907 -0.48325,-1.0566 -1.42856,-1.49888 0,-0.68448 0.76064,-1.40789 1.42856,-1.40512 0.68448,0.003 1.452,0.76752 1.452,1.452 z" id="path2749-8-39" sodipodi:nodetypes="accaa" class="steel_piercing"/> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5173" d="m 225.29267,220.63292 c 0,0.75293 -0.84428,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75292,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 313.96012,222.82749 c 0,0.68448 -0.76753,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68447,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-42" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5175" d="m 214.29267,234.13292 c 0,0.75293 -0.84428,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75292,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 225.14747,220.63292 c 0,0.68448 -0.76753,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68447,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-40" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - <path inkscape:connector-curvature="0" d="m 214.14747,234.13292 c 0,0.68448 -0.76753,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68447,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-2" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - </g> - </g> - <g inkscape:label="Boob_Areola_Piercing_Heavy" style="display:inline" id="Boob_Areola_Piercing_Heavy" inkscape:groupmode="layer"> - <g id="g3979" transform="matrix(1,0,0,0.99598748,0,0.91583618)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path inkscape:connector-curvature="0" d="m 323.72007,212.66938 c 0,0 -0.14021,-4.48814 1.43,-5.61 1.85573,-1.32586 5.3301,-1.17681 6.82,0.55 1.44035,1.66939 0.96976,4.90469 -0.44,6.6 -1.13722,1.36756 -5.17,1.32 -5.17,1.32 0,0 3.53555,-0.87174 4.29,-2.31 0.61694,-1.17613 0.48099,-3.0031 -0.44,-3.96 -1.02846,-1.06855 -3.08027,-1.33662 -4.4,-0.66 -1.35712,0.69579 -2.09,4.07 -2.09,4.07 z" class="shadow" id="path5163" sodipodi:nodetypes="caaacaaac"/> - <path inkscape:connector-curvature="0" d="m 306.87368,212.28604 c 0,0 0.14021,-4.48814 -1.43,-5.61 -1.85573,-1.32586 -5.3301,-1.17681 -6.82,0.55 -1.44035,1.66939 -0.96976,4.90469 0.44,6.6 1.13722,1.36756 5.17,1.32 5.17,1.32 0,0 -3.53555,-0.87174 -4.29,-2.31 -0.61694,-1.17613 -0.48099,-3.0031 0.44,-3.96 1.02846,-1.06855 3.08027,-1.33662 4.4,-0.66 1.35712,0.69579 2.09,4.07 2.09,4.07 z" class="shadow" id="path5165" sodipodi:nodetypes="caaacaaac"/> - <path inkscape:connector-curvature="0" d="m 218.55457,226.88776 c 0,0 0.60718,-2.30763 1.54375,-2.84091 2.13422,-1.21521 5.78808,-1.60634 7.36253,0.27852 0.7214,0.86362 0.32939,2.55535 -0.475,3.34226 -1.33939,1.31028 -5.58127,0.66845 -5.58127,0.66845 0,0 3.80528,0.19144 4.63127,-1.1698 0.35636,-0.58727 0.0485,-1.56058 -0.47501,-2.00535 -1.20965,-1.02766 -3.25098,-0.85604 -4.75002,-0.33422 -0.96201,0.33488 -2.25625,2.06105 -2.25625,2.06105 z" class="shadow" id="path5167" sodipodi:nodetypes="caaacaaac"/> - <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4" class="steel_piercing" d="m 324.13472,212.50417 c 0,0 -0.12746,-4.08013 1.3,-5.1 1.68703,-1.20533 4.84555,-1.06983 6.2,0.5 1.30941,1.51763 0.8816,4.45881 -0.4,6 -1.03383,1.24324 -4.7,1.2 -4.7,1.2 0,0 3.21414,-0.79249 3.9,-2.1 0.56086,-1.06921 0.43727,-2.73009 -0.4,-3.6 -0.93496,-0.97141 -2.80024,-1.21511 -4,-0.6 -1.23374,0.63254 -1.9,3.7 -1.9,3.7 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4-7" class="steel_piercing" d="m 306.45903,212.12083 c 0,0 0.12746,-4.08013 -1.3,-5.1 -1.68703,-1.20533 -4.84555,-1.06983 -6.2,0.5 -1.30941,1.51763 -0.8816,4.45881 0.4,6 1.03383,1.24324 4.7,1.2 4.7,1.2 0,0 -3.21414,-0.79249 -3.9,-2.1 -0.56086,-1.06921 -0.43727,-2.73009 0.4,-3.6 0.93496,-0.97141 2.80024,-1.21511 4,-0.6 1.23374,0.63254 1.9,3.7 1.9,3.7 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4-3" class="steel_piercing" d="m 218.97663,226.78508 c 0,0 0.55198,-2.09785 1.40341,-2.58265 1.9402,-1.10474 5.26189,-1.46031 6.69321,0.2532 0.65582,0.78511 0.29944,2.32305 -0.43182,3.03842 -1.21763,1.19116 -5.07388,0.60768 -5.07388,0.60768 0,0 3.45934,0.17404 4.21024,-1.06345 0.32397,-0.53389 0.0441,-1.41871 -0.43182,-1.82305 -1.09969,-0.93424 -2.95544,-0.77822 -4.3182,-0.30384 -0.87456,0.30444 -2.05114,1.87369 -2.05114,1.87369 z" inkscape:connector-curvature="0"/> - </g> - </g> - <g inkscape:groupmode="layer" id="Boob_Areola_Piercing_NoBoob_Heavy" style="display:inline" inkscape:label="Boob_Areola_Piercing_NoBoob_Heavy"> - <g transform="matrix(1.0049807,0,0,1.0049807,-1.6578337,-0.99661844)" id="g1669" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/> - <g transform="matrix(1.0106254,0,0,1.0106254,-2.44532,-2.2864495)" id="g1677" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/> - <g id="g3991" transform="matrix(1,0,0,1.0072234,0,-1.7672168)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path inkscape:connector-curvature="0" d="m 316.39389,239.90478 c 0,0 3.2247,3.12482 5.1113,2.71879 2.22965,-0.47988 4.45815,-3.14958 4.18403,-5.41376 -0.265,-2.18891 -2.97434,-4.01868 -5.17703,-4.1173 -1.77684,-0.0795 -4.45626,2.93478 -4.45626,2.93478 0,0 3.02457,-2.02781 4.59604,-1.6176 1.28507,0.33544 2.54463,1.66577 2.63232,2.991 0.0979,1.47984 -1.08496,3.17766 -2.4737,3.69817 -1.42807,0.53526 -4.4167,-1.19408 -4.4167,-1.19408 z" class="shadow" id="path5154" sodipodi:nodetypes="caaacaaac"/> - <path inkscape:connector-curvature="0" d="m 309.09912,239.33692 c 0,0 -3.63548,2.6356 -5.44536,1.96596 -2.13901,-0.79141 -3.96612,-3.75032 -3.37348,-5.95269 0.57293,-2.12915 3.51451,-3.55595 5.7089,-3.34101 1.77014,0.17338 3.99471,3.53744 3.99471,3.53744 0,0 -2.70621,-2.43649 -4.31999,-2.25342 -1.31966,0.1497 -2.75526,1.28782 -3.03012,2.5872 -0.30692,1.45096 0.62309,3.29946 1.9239,4.01176 1.33767,0.73248 4.54144,-0.55524 4.54144,-0.55524 z" class="shadow" id="path5156" sodipodi:nodetypes="caaacaaac"/> - <path inkscape:connector-curvature="0" d="m 250.11413,242.34048 c 0,0 2.50391,3.06938 4.10816,2.71878 2.07541,-0.45357 3.61174,-3.30398 3.36288,-5.41376 -0.22858,-1.9378 -2.21189,-4.02594 -4.161,-4.1173 -1.5418,-0.0723 -3.58167,2.93479 -3.58167,2.93479 0,0 2.39892,-1.97771 3.69402,-1.61761 1.17658,0.32716 2.04104,1.77207 2.1157,2.991 0.0856,1.39697 -0.68667,3.18357 -1.98821,3.69817 -1.161,0.45903 -3.54988,-1.19407 -3.54988,-1.19407 z" class="shadow" id="path5159" sodipodi:nodetypes="caaacaaac"/> - <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6" class="steel_piercing" d="m 316.80209,239.7203 c 0,0 2.93154,2.84074 4.64663,2.47162 2.02696,-0.43625 4.05287,-2.86325 3.80367,-4.9216 -0.24091,-1.98991 -2.70395,-3.65334 -4.70639,-3.743 -1.61531,-0.0723 -4.05115,2.66799 -4.05115,2.66799 0,0 2.74961,-1.84347 4.17822,-1.47055 1.16824,0.30495 2.3133,1.51434 2.39302,2.71909 0.089,1.34531 -0.98633,2.88878 -2.24882,3.36197 -1.29825,0.4866 -4.01518,-1.08552 -4.01518,-1.08552 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 244.44613,241.71183 c 0,0 -2.00072,2.39045 -3.16913,1.96596 -1.96379,-0.71346 -2.44375,-3.91931 -1.96331,-5.95269 0.36115,-1.52853 1.75982,-3.49874 3.32249,-3.34101 1.40388,0.1417 2.32487,3.53744 2.32487,3.53744 0,0 -1.39697,-2.38913 -2.51418,-2.25342 -1.03607,0.12585 -1.59405,1.55735 -1.76347,2.5872 -0.22538,1.36995 -0.067,3.29109 1.11967,4.01176 0.76947,0.4673 2.64306,-0.55524 2.64306,-0.55524 z" class="shadow" id="path5161" sodipodi:nodetypes="caaacaaac"/> - <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-4" class="steel_piercing" d="m 308.73334,239.09718 c 0,0 -3.30498,2.396 -4.95033,1.78724 -1.94455,-0.71946 -3.60556,-3.40938 -3.0668,-5.41154 0.52085,-1.93559 3.19501,-3.23268 5.18991,-3.03728 1.60922,0.15762 3.63156,3.21586 3.63156,3.21586 0,0 -2.46019,-2.21499 -3.92727,-2.04857 -1.19969,0.13609 -2.50478,1.17075 -2.75465,2.352 -0.27902,1.31906 0.56644,2.99951 1.749,3.64706 1.21606,0.66589 4.12858,-0.50477 4.12858,-0.50477 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-7" class="steel_piercing" d="m 250.44258,242.15562 c 0,0 2.27628,2.79035 3.73469,2.47162 1.88674,-0.41234 3.2834,-3.00362 3.05716,-4.9216 -0.2078,-1.76164 -2.01081,-3.65995 -3.78272,-3.743 -1.40164,-0.0657 -3.25607,2.66799 -3.25607,2.66799 0,0 2.18084,-1.79792 3.3582,-1.47055 1.06962,0.29741 1.85549,1.61097 1.92337,2.71909 0.0778,1.26997 -0.62425,2.89415 -1.80747,3.36197 -1.05545,0.4173 -3.22716,-1.08552 -3.22716,-1.08552 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-4-1" class="steel_piercing" d="m 244.22839,241.47 c 0,0 -1.81884,2.17314 -2.88103,1.78724 -1.78526,-0.6486 -2.22159,-3.56301 -1.78483,-5.41154 0.32832,-1.38957 1.59984,-3.18067 3.02045,-3.03728 1.27625,0.12882 2.11352,3.21586 2.11352,3.21586 0,0 -1.26998,-2.17194 -2.28562,-2.04857 -0.94188,0.11441 -1.44914,1.41578 -1.60316,2.352 -0.20489,1.24541 -0.0609,2.9919 1.01789,3.64706 0.69951,0.42482 2.40278,-0.50477 2.40278,-0.50477 z" inkscape:connector-curvature="0"/> - </g> - </g> - <g inkscape:label="Boob_Areola_Piercing_NoBoob" style="display:inline" id="Boob_Areola_Piercing_NoBoob" inkscape:groupmode="layer"> - <g id="g3997" transform="matrix(1,0,0,1.0288842,0,-7.1288108)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5146" d="m 249.37141,236.16209 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 249.22621,236.16209 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-7" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5148" d="m 248.77479,245.35448 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 248.62959,245.35448 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-5" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5150" d="m 315.53009,232.95802 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 315.38489,232.95802 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-76" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5152" d="m 314.20427,242.60621 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 314.05907,242.60621 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-4" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - </g> - </g> - <g inkscape:label="Boob_Piercing_NoBoob_Heavy" style="display:inline" id="Boob_Piercing_NoBoob_Heavy" inkscape:groupmode="layer"> - <g id="g3755" transform="matrix(1,0,0,0.99551445,0,1.0543705)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path inkscape:connector-curvature="0" d="m 309.14219,234.55641 c 0,0 -1.66351,6.13387 -0.6555,8.95038 0.69607,1.9449 2.20975,4.61726 4.27152,4.4898 2.04057,-0.12615 3.06329,-2.97147 3.6481,-4.93052 0.82353,-2.7587 -0.4904,-8.62306 -0.4904,-8.62306 0,0 0.0757,0.87987 0.1112,2.11179 -0.11286,0.003 -0.5941,-2.8e-4 -0.5941,-2.8e-4 l 0.18681,0.60388 c 0,0 0.23025,-0.007 0.41963,-0.011 0.0263,1.97276 -0.0845,4.54326 -0.72754,5.98192 -0.52233,1.16847 -1.40518,2.44497 -2.59622,2.45515 -1.32582,0.0113 -2.33971,-1.38723 -2.93627,-2.68322 -0.62986,-1.36835 -0.75375,-3.82476 -0.74101,-5.71945 0.29918,0 1.29193,-0.0359 1.29193,-0.0359 l 0.0835,-0.60866 c 0,0 -1.06431,-0.009 -1.36586,-0.009 0.0266,-1.15377 0.0942,-1.97253 0.0942,-1.97253 z" class="shadow" id="path5128" sodipodi:nodetypes="caaacccccsascccccc"/> - <path inkscape:connector-curvature="0" d="m 249.30676,237.70242 c 0,0 1.66352,6.13388 0.6555,8.95038 -0.69607,1.9449 -2.20974,4.61726 -4.27152,4.4898 -2.04056,-0.12615 -3.06329,-2.97147 -3.6481,-4.93052 -0.82353,-2.7587 0.4904,-8.62306 0.4904,-8.62306 0,0 -0.0757,0.87987 -0.1112,2.11179 0.11286,0.003 1.62535,-2.8e-4 1.62535,-2.8e-4 l -0.0321,0.60388 c 0,0 -1.41619,-0.007 -1.60557,-0.011 -0.0263,1.97276 0.0845,4.54326 0.72754,5.98192 0.52233,1.16847 1.40518,2.44498 2.59622,2.45515 1.32583,0.0113 2.33971,-1.38723 2.93627,-2.68322 0.62986,-1.36835 0.75375,-3.82476 0.74101,-5.71945 -0.29918,0 -1.29193,-0.0359 -1.29193,-0.0359 l -0.0835,-0.60866 c 0,0 1.06431,-0.009 1.36586,-0.009 -0.0266,-1.15377 -0.0942,-1.97253 -0.0942,-1.97253 z" class="shadow" id="path5130" sodipodi:nodetypes="caaacccccsascccccc"/> - <path inkscape:connector-curvature="0" d="m 312.76639,245.60534 c 0,0 -1.2348,6.34214 -1.28029,9.55581 -0.052,3.67206 1.15328,10.95624 1.15328,10.95624 0,0 -0.24674,-6.54217 0.73111,-13.09806 -0.65216,-2.17566 -0.6041,-7.41399 -0.6041,-7.41399 z" class="shadow" id="path5132" sodipodi:nodetypes="caccc"/> - <path sodipodi:nodetypes="cacac" id="path5142" class="shadow" d="m 245.62844,250.23975 c 0,0 17.16757,16.91723 28.15752,17.25901 14.6901,0.45685 38.98635,-20.68692 38.98635,-20.68692 0,0 -23.85532,24.26227 -39.04231,23.65915 -11.51555,-0.45732 -28.10156,-20.23124 -28.10156,-20.23124 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 312.59693,264.7749 c 0,0 -0.72404,2.39816 -0.65902,3.62462 0.0619,1.16743 0.98852,3.36375 0.98852,3.36375 0,0 0.70059,-2.22176 0.65903,-3.36375 -0.0456,-1.25189 -0.98853,-3.62462 -0.98853,-3.62462 z" class="shadow" id="path5134" sodipodi:nodetypes="cacac"/> - <path inkscape:connector-curvature="0" d="m 245.51135,250.05572 c 0,0 16.43426,21.15463 28.27461,21.64865 15.44025,0.64421 39.07474,-25.06195 39.07474,-25.06195 0,0 -23.11514,28.87249 -39.1307,28.10077 -12.45924,-0.60036 -28.21865,-24.68747 -28.21865,-24.68747 z" class="shadow" id="path5144" sodipodi:nodetypes="cacac"/> - <path inkscape:connector-curvature="0" d="m 245.62844,250.23975 c 0,0 17.10777,17.17402 28.15752,17.52537 14.74599,0.46888 38.98635,-20.95328 38.98635,-20.95328 0,0 -23.88248,23.98358 -39.04231,23.39279 -11.48183,-0.44746 -28.10156,-19.96488 -28.10156,-19.96488 z" class="steel_piercing" id="path1115" sodipodi:nodetypes="cacac"/> - <path inkscape:connector-curvature="0" d="m 245.85647,248.53096 c 0,0 -1.2348,6.34215 -1.28029,9.55581 -0.052,3.67207 1.15328,10.95624 1.15328,10.95624 0,0 -0.24674,-6.54217 0.73111,-13.09806 -0.65216,-2.17566 -0.6041,-7.41399 -0.6041,-7.41399 z" class="shadow" id="path5136" sodipodi:nodetypes="caccc"/> - <path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9" class="steel_piercing" d="m 309.44017,235.16237 c 0,0 -1.51228,5.57625 -0.59591,8.13671 0.63279,1.76809 2.00887,4.19751 3.8832,4.08164 1.85507,-0.11468 2.78481,-2.70134 3.31646,-4.48229 0.74866,-2.50791 -0.44582,-7.83915 -0.44582,-7.83915 0,0 0.0688,0.79988 0.10109,1.91981 -0.1026,0.003 -0.54009,-2.5e-4 -0.54009,-2.5e-4 l 0.16983,0.54898 c 0,0 0.20931,-0.006 0.38148,-0.01 0.0239,1.79342 -0.0768,4.13023 -0.6614,5.43811 -0.47485,1.06224 -1.27744,2.2227 -2.3602,2.23195 -1.20529,0.0103 -2.12701,-1.26112 -2.66934,-2.43929 -0.5726,-1.24395 -0.68523,-3.47705 -0.67364,-5.1995 0.27198,0 1.17448,-0.0326 1.17448,-0.0326 l 0.0759,-0.55333 c 0,0 -0.96756,-0.008 -1.24169,-0.008 0.0242,-1.04888 0.0856,-1.79321 0.0856,-1.79321 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 245.68701,267.70052 c 0,0 -0.72404,2.39816 -0.65902,3.62462 0.0619,1.16743 0.98852,3.36375 0.98852,3.36375 0,0 0.70059,-2.22176 0.65903,-3.36375 -0.0456,-1.25189 -0.98853,-3.62462 -0.98853,-3.62462 z" class="shadow" id="path5138" sodipodi:nodetypes="cacac"/> - <path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-0" class="steel_piercing" d="m 249.00878,238.30838 c 0,0 1.51229,5.57626 0.59591,8.13671 -0.63279,1.76809 -2.00886,4.19751 -3.8832,4.08164 -1.85506,-0.11468 -2.78481,-2.70134 -3.31646,-4.48229 -0.74866,-2.50791 0.44582,-7.83915 0.44582,-7.83915 0,0 -0.0688,0.79988 -0.10109,1.91981 0.1026,0.003 1.47759,-2.5e-4 1.47759,-2.5e-4 l -0.0292,0.54898 c 0,0 -1.28744,-0.006 -1.45961,-0.01 -0.0239,1.79342 0.0768,4.13023 0.6614,5.43811 0.47485,1.06224 1.27744,2.22271 2.3602,2.23195 1.2053,0.0103 2.12701,-1.26112 2.66934,-2.43929 0.5726,-1.24395 0.68523,-3.47705 0.67364,-5.1995 -0.27198,0 -1.17448,-0.0326 -1.17448,-0.0326 l -0.0759,-0.55333 c 0,0 0.96756,-0.008 1.24169,-0.008 -0.0242,-1.04888 -0.0856,-1.79321 -0.0856,-1.79321 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0" class="steel_piercing" d="m 312.73558,246.53771 c 0,0 -1.12255,5.76559 -1.1639,8.6871 -0.0473,3.33824 1.04844,9.96021 1.04844,9.96021 0,0 -0.22431,-5.94742 0.66464,-11.90732 -0.59287,-1.97788 -0.54918,-6.73999 -0.54918,-6.73999 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7" class="steel_piercing" d="m 312.6118,265.09255 c 0,0 -0.65822,2.18015 -0.59911,3.29511 0.0563,1.0613 0.89866,3.05796 0.89866,3.05796 0,0 0.63689,-2.01978 0.59911,-3.05796 -0.0414,-1.13808 -0.89866,-3.29511 -0.89866,-3.29511 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-5" class="steel_piercing" d="m 245.82566,249.46333 c 0,0 -1.12255,5.76559 -1.1639,8.6871 -0.0472,3.33824 1.04844,9.96021 1.04844,9.96021 0,0 -0.22431,-5.94742 0.66464,-11.90732 -0.59287,-1.97788 -0.54918,-6.73999 -0.54918,-6.73999 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-4" class="steel_piercing" d="m 245.70188,268.01817 c 0,0 -0.65822,2.18015 -0.59911,3.29511 0.0563,1.0613 0.89866,3.05796 0.89866,3.05796 0,0 0.63689,-2.01978 0.59911,-3.05796 -0.0414,-1.13808 -0.89866,-3.29511 -0.89866,-3.29511 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="cacac" id="path3697" class="steel_piercing" d="m 245.51135,250.05572 c 0,0 16.35177,21.45578 28.27461,21.9594 15.5161,0.65539 39.07474,-25.3727 39.07474,-25.3727 0,0 -23.14622,28.57225 -39.1307,27.81221 -12.42068,-0.59059 -28.21865,-24.39891 -28.21865,-24.39891 z" inkscape:connector-curvature="0"/> - </g> - </g> - <g inkscape:groupmode="layer" id="Boob_Piercing_NoBoob" style="display:inline" inkscape:label="Boob_Piercing_NoBoob"> - <g id="g4003" transform="matrix(1,0,0,1.0291768,0,-7.0593321)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5118" d="m 317.55033,237.51562 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 317.40513,237.51562 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-66" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5120" d="m 311.06595,237.34375 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75292,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84428,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 310.92075,237.34375 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68447,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76753,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-3" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5122" d="m 250.31593,240.49857 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 250.17073,240.49857 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-66-7" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - <path class="shadow" sodipodi:nodetypes="csasccc" id="path5124" d="m 244.73869,241.83277 c -0.14826,0.0584 -0.30012,0.0911 -0.44845,0.0911 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.20146,0 0.40944,0.0605 0.60606,0.16339 -0.83243,0.65113 -1.08254,2.0678 -0.15761,2.93988 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 244.65287,241.69585 c -0.13478,0.0531 -0.27284,0.0828 -0.40768,0.0828 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.18314,0 0.37222,0.055 0.55096,0.14854 -0.68459,0.57919 -0.90899,1.86654 -0.14328,2.67261 z" id="path2749-8-3-4" sodipodi:nodetypes="csascc" class="steel_piercing"/> - </g> - </g> - <g inkscape:groupmode="layer" id="Boob_Piercing_Heavy" style="display:inline" inkscape:label="Boob_Piercing_Heavy"> - <g id="g4013" transform="matrix(1,0,0,1.0025792,0,-0.70652376)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path inkscape:connector-curvature="0" d="m 309.5038,204.64336 c 0,0 -2.49255,9.16089 -0.98325,13.36534 1.04444,2.90949 3.32191,6.89539 6.40728,6.7045 3.05198,-0.18881 4.5947,-4.43337 5.47216,-7.36259 1.23367,-4.11839 -0.7356,-12.87659 -0.7356,-12.87659 0,0 0.11352,1.82081 0.16679,3.66041 -0.16929,0.006 -1.17473,-4.1e-4 -1.17473,-4.1e-4 -0.19795,0.25684 -0.34925,0.53162 -0.25261,0.90176 0,0 1.16178,-0.01 1.44585,-0.0165 0.0394,2.94587 -0.12672,6.27737 -1.09131,8.42571 -0.78349,1.74482 -2.11155,3.65097 -3.89433,3.6662 -1.98467,0.0169 -3.50956,-2.07153 -4.40441,-4.00679 -0.94479,-2.0433 -1.13062,-5.20448 -1.1115,-8.03376 0.44876,0 0.51992,-0.0535 0.51992,-0.0535 l 0.0221,-0.9089 c 0,0 -0.0754,-0.0132 -0.52769,-0.0132 0.0399,-1.72289 0.14124,-3.45244 0.14124,-3.45244 z" class="shadow" id="path5090" sodipodi:nodetypes="caaacccccsascccccc"/> - <path inkscape:connector-curvature="0" d="m 219.3839,220.57007 c 0,0 2.13457,9.1044 0.8062,13.36536 -0.84502,2.71056 -2.41925,6.87099 -5.25359,6.7045 -2.86907,-0.16853 -3.7751,-4.57812 -4.48684,-7.36262 -1.06412,-4.16305 0.60315,-12.87656 0.60315,-12.87656 0,0 -0.0931,1.73467 -0.13676,3.57427 0.1388,0.006 0.75606,-4.1e-4 0.75606,-4.1e-4 l 0.17468,0.90174 c 0,0 -0.713,-0.01 -0.94592,-0.0165 -0.0323,2.94586 0.10395,6.36351 0.8948,8.51184 0.64242,1.74483 1.57258,3.65242 3.19313,3.66619 1.79796,0.0153 2.87763,-2.07151 3.61135,-4.00676 0.77468,-2.04331 0.92705,-5.29062 0.91137,-8.1199 -0.36796,0 -2.23494,-0.0535 -2.23494,-0.0535 0.071,-0.36089 0.0674,-0.74662 0.7341,-0.90891 0,0 1.11822,-0.0132 1.48908,-0.0132 -0.0328,-1.72288 -0.1158,-3.36631 -0.1158,-3.36631 z" class="shadow" id="path5092" sodipodi:nodetypes="caaacccccsascccccc"/> - <path inkscape:connector-curvature="0" d="m 314.94013,221.34948 c 0,0 -1.85221,9.47078 -1.92044,14.26944 -0.078,5.48324 1.72993,16.36063 1.72993,16.36063 0,0 -0.37012,-9.76923 1.09665,-19.55896 -0.97824,-3.24886 -0.90614,-11.07111 -0.90614,-11.07111 z" class="shadow" id="path5094" sodipodi:nodetypes="caccc"/> - <path inkscape:connector-curvature="0" d="m 314.68593,249.97485 c 0,0 -1.08607,3.58124 -0.98853,5.41252 0.0928,1.74295 1.48279,5.02302 1.48279,5.02302 0,0 1.05088,-3.31786 0.98853,-5.02302 -0.0683,-1.86907 -1.48279,-5.41252 -1.48279,-5.41252 z" class="shadow" id="path5096" sodipodi:nodetypes="cacac"/> - <path inkscape:connector-curvature="0" d="m 214.8358,236.62617 c 0,0 -1.85221,9.47077 -1.92044,14.26942 -0.078,5.48325 1.72993,16.36065 1.72993,16.36065 0,0 -0.37012,-9.76925 1.09665,-19.55896 -0.97824,-3.24886 -0.90614,-11.07111 -0.90614,-11.07111 z" class="shadow" id="path5098" sodipodi:nodetypes="caccc"/> - <path sodipodi:nodetypes="cacac" id="path5114" class="shadow" d="m 214.31901,239.32032 c 0,0 25.68032,21.60317 41.03252,20.95432 23.64619,-0.9994 60.23635,-37.49186 60.23635,-37.49186 0,0 -36.08773,39.66777 -60.29231,40.42734 -15.81322,0.49624 -40.97656,-23.8898 -40.97656,-23.8898 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 214.5816,265.25153 c 0,0 -1.08608,3.58126 -0.98853,5.41254 0.0928,1.74295 1.48279,5.02299 1.48279,5.02299 0,0 1.05088,-3.31784 0.98853,-5.02299 -0.0683,-1.86908 -1.48279,-5.41254 -1.48279,-5.41254 z" class="shadow" id="path5100" sodipodi:nodetypes="cacac"/> - <path inkscape:connector-curvature="0" d="m 214.20192,239.13711 c 0,0 25.0305,25.8073 41.14961,25.36846 24.49265,-0.66681 60.32474,-41.89145 60.32474,-41.89145 0,0 -35.29445,44.3827 -60.3807,44.82694 -16.64383,0.29474 -41.09365,-28.30395 -41.09365,-28.30395 z" class="shadow" id="path5116" sodipodi:nodetypes="cacac"/> - <path inkscape:connector-curvature="0" d="m 214.31901,239.32032 c 0,0 25.65102,21.83396 41.03252,21.19676 23.67286,-0.98068 60.23635,-37.7343 60.23635,-37.7343 0,0 -36.15672,39.38263 -60.29231,40.16286 -15.75824,0.50942 -40.97656,-23.62532 -40.97656,-23.62532 z" class="steel_piercing" id="path1115-5" sodipodi:nodetypes="cacac"/> - <path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-2" class="steel_piercing" d="m 309.95079,205.54823 c 0,0 -2.26595,8.32808 -0.89386,12.15031 0.94949,2.64499 3.01992,6.26853 5.8248,6.095 2.77453,-0.17165 4.177,-4.03034 4.97469,-6.69327 1.12152,-3.74399 -0.66873,-11.70599 -0.66873,-11.70599 0,0 0.1032,1.19444 0.15163,2.8668 -0.1539,0.005 -1.06794,-3.7e-4 -1.06794,-3.7e-4 -0.17995,0.23349 -0.3175,0.48329 -0.22964,0.81978 0,0 1.05616,-0.009 1.31441,-0.015 0.0358,2.67807 -0.1152,6.16755 -0.9921,8.12058 -0.71227,1.5862 -1.91959,3.31907 -3.5403,3.33291 -1.80425,0.0154 -3.19051,-1.88321 -4.00401,-3.64253 -0.8589,-1.85755 -1.02784,-5.19219 -1.01046,-7.76427 0.40797,0 0.47266,-0.0486 0.47266,-0.0486 l 0.0201,-0.82627 c 0,0 -0.0685,-0.012 -0.47972,-0.012 0.0363,-1.56626 0.1284,-2.67774 0.1284,-2.67774 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-0-8" class="steel_piercing" d="m 219.0181,221.47486 c 0,0 1.94052,8.27673 0.73291,12.15033 -0.7682,2.46414 -2.19932,6.24635 -4.77599,6.095 -2.60825,-0.15321 -3.43191,-4.16193 -4.07895,-6.69329 -0.96738,-3.78459 0.54832,-11.70597 0.54832,-11.70597 0,0 -0.0846,1.19444 -0.12433,2.8668 0.12619,0.005 0.68733,-3.7e-4 0.68733,-3.7e-4 l 0.1588,0.81976 c 0,0 -0.64818,-0.009 -0.85993,-0.015 -0.0294,2.67806 0.0945,6.16755 0.81346,8.12058 0.58402,1.58621 1.42962,3.32038 2.90284,3.3329 1.63451,0.0139 2.61603,-1.88319 3.28305,-3.64251 0.70425,-1.85756 0.84277,-5.19219 0.82852,-7.76427 -0.33451,0 -2.03177,-0.0486 -2.03177,-0.0486 0.0645,-0.32808 0.0613,-0.67874 0.66737,-0.82628 0,0 1.01656,-0.012 1.35371,-0.012 -0.0298,-1.56625 -0.10528,-2.67774 -0.10528,-2.67774 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-8" class="steel_piercing" d="m 314.89391,222.74176 c 0,0 -1.68382,8.60979 -1.74585,12.97221 -0.0709,4.98476 1.57266,14.8733 1.57266,14.8733 0,0 -0.33647,-8.88111 0.99696,-17.78087 -0.88931,-2.95351 -0.82377,-10.06464 -0.82377,-10.06464 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-8" class="steel_piercing" d="m 314.70824,250.44919 c 0,0 -0.98734,3.25568 -0.89867,4.92048 0.0844,1.5845 1.34799,4.56638 1.34799,4.56638 0,0 0.95535,-3.01623 0.89867,-4.56638 -0.0621,-1.69916 -1.34799,-4.92048 -1.34799,-4.92048 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-5-7" class="steel_piercing" d="m 214.78958,238.01845 c 0,0 -1.68382,8.60979 -1.74585,12.9722 -0.0709,4.98477 1.57266,14.87331 1.57266,14.87331 0,0 -0.33647,-8.88113 0.99696,-17.78087 -0.88931,-2.95351 -0.82377,-10.06464 -0.82377,-10.06464 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-4-0" class="steel_piercing" d="m 214.60391,265.72587 c 0,0 -0.98735,3.25569 -0.89867,4.92049 0.0844,1.5845 1.34799,4.56636 1.34799,4.56636 0,0 0.95535,-3.01622 0.89867,-4.56636 -0.0621,-1.69916 -1.34799,-4.92049 -1.34799,-4.92049 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="cacac" id="path3697-9" class="steel_piercing" d="m 214.20192,239.13711 c 0,0 24.99906,26.03874 41.14961,25.6109 24.5188,-0.64952 60.32474,-42.13389 60.32474,-42.13389 0,0 -35.37023,44.09941 -60.3807,44.56246 -16.57995,0.30696 -41.09365,-28.03947 -41.09365,-28.03947 z" inkscape:connector-curvature="0"/> - </g> - </g> - <g inkscape:label="Boob_Piercing" style="display:inline" id="Boob_Piercing" inkscape:groupmode="layer"> - <g id="g1366" transform="matrix(1.0081159,0,0,1.0081159,-2.6203467,-1.6676415)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/> - <g id="g4019" transform="matrix(1,0,0,1.0092899,0,-2.0984812)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5080" d="m 320.92533,208.3125 c 0,0.75293 -0.84428,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75292,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path class="shadow" sodipodi:nodetypes="saccs" id="path5082" d="m 310.52276,210.0972 c -0.75293,0 -1.60023,-0.84774 -1.5972,-1.5972 0.003,-0.75548 0.87005,-1.5972 1.62298,-1.5972 -0.36443,1.33139 -0.34478,1.89959 -0.0257,3.1944 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 320.78013,208.3125 c 0,0.68448 -0.76753,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68447,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-1" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5084" d="m 219.00345,224.4375 c 0,0.75293 -0.84428,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75292,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 310.52164,209.952 c -0.68448,0 -1.45474,-0.76753 -1.452,-1.452 0.003,-0.69002 0.79096,-1.452 1.47544,-1.452 -0.3313,1.21035 -0.31344,1.7269 -0.0234,2.904 z" id="path2749-8-37" sodipodi:nodetypes="cacc" class="steel_piercing"/> - <path class="shadow" sodipodi:nodetypes="cscc" id="path5086" d="m 212.05295,224.91542 c -0.34466,-0.31248 -0.59049,-0.74536 -0.59049,-1.15165 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 -0.78404,0.89358 -1.08637,1.30674 -1.00671,2.74885 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 218.85825,224.4375 c 0,0.68448 -0.76753,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68447,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-1-1" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> - <path inkscape:connector-curvature="0" d="m 212.07187,224.79047 c -0.31333,-0.28407 -0.53681,-0.6776 -0.53681,-1.04695 0,-0.68448 0.76752,-1.452 1.452,-1.452 -0.71276,0.81234 -0.98761,1.18794 -0.91519,2.49895 z" id="path2749-8-1-5" sodipodi:nodetypes="cscc" class="steel_piercing"/> + <g inkscape:groupmode="layer" id="Boob_None_Areola_Large" style="display:inline;opacity:1" inkscape:label="Boob_None_Areola_Large"> + <path sodipodi:nodetypes="sssss" class="areola" d="m 312.54464,242.65363 c -2.51196,-0.35203 -5.05049,-2.70415 -5.0624,-4.81234 -0.0151,-2.69047 3.18899,-5.4985 6.00377,-5.34202 2.64692,0.14715 5.40914,2.34052 4.86655,5.60148 -0.54261,3.26096 -2.8044,4.9738 -5.80792,4.55288 z" id="path3540" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" id="path3542" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3544" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 311.35893,236.87262 c 0.87662,-0.34085 1.71217,0.12006 2.25579,0.57658 -0.65277,-0.31849 -1.48757,-0.75499 -2.25579,-0.57658 z" id="path3546" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3548" d="m 312.37165,236.86687 c 0.50004,-0.43498 0.80129,-0.55077 1.55144,-0.47994 -0.70137,0.0247 -1.0201,0.15274 -1.55144,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/> + <path sodipodi:nodetypes="sssss" class="areola" d="m 247.17149,245.59069 c -1.85435,-0.35203 -3.72832,-2.70415 -3.73712,-4.81234 -0.0108,-2.69047 2.35414,-5.4985 4.43204,-5.34202 1.95398,0.14715 3.99308,2.34052 3.59253,5.60148 -0.40055,3.26096 -2.07023,4.9738 -4.28745,4.55288 z" id="path3550" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.11037,-0.47307 -2.60223,-1.38769 -0.0634,-0.11498 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.26383,-1.82945 2.28672,-1.77138 1.68239,0.0955 2.07736,2.11008 2.06584,2.11245 -0.17469,0.92279 -0.57699,2.09291 -1.71464,2.09291 z" id="path3552" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3554" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.20276,-0.60407 -2.60223,-1.38769 -0.0122,0.01 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.40347,-1.84755 2.28672,-1.77138 1.63435,0.14096 2.07736,2.11008 2.06584,2.11245 -0.14324,0.78536 -0.57699,2.09291 -1.71464,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" id="path3556" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3558" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/> + </g> + <g inkscape:groupmode="layer" id="Boob_None_Areola_Wide" style="display:inline;opacity:1" inkscape:label="Boob_None_Areola_Wide"> + <path sodipodi:nodetypes="sssss" class="areola" d="m 312.46321,243.66341 c -3.01435,-0.42244 -6.06059,-3.24498 -6.07488,-5.77481 -0.0181,-3.22857 3.82679,-6.5982 7.20452,-6.41043 3.17631,0.17658 6.49097,2.80863 5.83986,6.72178 -0.65113,3.91315 -3.36528,5.96856 -6.9695,5.46346 z" id="path3518" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" id="path3520" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3522" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 311.35893,236.87262 c 0.87662,-0.34085 1.71217,0.12006 2.25579,0.57658 -0.65277,-0.31849 -1.48757,-0.75499 -2.25579,-0.57658 z" id="path3524" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3526" d="m 312.37165,236.86687 c 0.50004,-0.43498 0.80129,-0.55077 1.55144,-0.47994 -0.70137,0.0247 -1.0201,0.15274 -1.55144,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/> + <path sodipodi:nodetypes="sccsss" class="areola" d="m 247.11138,246.60047 c -1.68167,-0.31925 -3.377,-2.00927 -4.10929,-3.90778 -0.21043,-2.33888 0.48566,-4.99206 1.49412,-6.5277 0.99819,-1.12304 2.26263,-1.8391 3.44907,-1.74976 2.34478,0.17657 4.7917,2.80863 4.31104,6.72178 -0.48066,3.91315 -2.48428,5.96856 -5.14494,5.46346 z" id="path3528" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.11037,-0.47307 -2.60223,-1.38769 -0.0634,-0.11498 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.26383,-1.82945 2.28672,-1.77138 1.68239,0.0955 2.07736,2.11008 2.06584,2.11245 -0.17469,0.92279 -0.57699,2.09291 -1.71464,2.09291 z" id="path3530" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3532" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.20276,-0.60407 -2.60223,-1.38769 -0.0122,0.01 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.40347,-1.84755 2.28672,-1.77138 1.63435,0.14096 2.07736,2.11008 2.06584,2.11245 -0.14324,0.78536 -0.57699,2.09291 -1.71464,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" id="path3534" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3536" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/> + </g> + <g inkscape:groupmode="layer" id="Boob_None_Areola_Huge" style="display:inline;opacity:1" inkscape:label="Boob_None_Areola_Huge"> + <path sodipodi:nodetypes="sssss" class="areola" d="m 312.36549,244.87514 c -3.61722,-0.50693 -7.2727,-3.89397 -7.28985,-6.92977 -0.0217,-3.87428 4.59215,-7.91784 8.64542,-7.69252 3.81157,0.2119 7.78917,3.37036 7.00783,8.06614 -0.78135,4.69578 -4.03833,7.16227 -8.3634,6.55615 z" id="path3496" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" id="path3498" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3500" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 311.35893,236.87262 c 0.87662,-0.34085 1.71217,0.12006 2.25579,0.57658 -0.65277,-0.31849 -1.48757,-0.75499 -2.25579,-0.57658 z" id="path3502" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3504" d="m 312.37165,236.86687 c 0.50004,-0.43498 0.80129,-0.55077 1.55144,-0.47994 -0.70137,0.0247 -1.0201,0.15274 -1.55144,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/> + <path sodipodi:nodetypes="sccsss" class="areola" d="m 246.55371,247.8122 c -1.42904,-0.30609 -2.86721,-1.66227 -3.78493,-3.35714 -0.13062,-3.67239 0.5558,-7.15081 2.2875,-10.24949 0.83401,-0.69815 1.50768,-1.09014 2.38433,-1.01566 2.49382,0.21188 5.09628,3.37036 4.58507,8.06614 -0.51122,4.69578 -2.64219,7.16228 -5.47197,6.55615 z" id="path3506" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.11037,-0.47307 -2.60223,-1.38769 -0.0634,-0.11498 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.26383,-1.82945 2.28672,-1.77138 1.68239,0.0955 2.07736,2.11008 2.06584,2.11245 -0.17469,0.92279 -0.57699,2.09291 -1.71464,2.09291 z" id="path3508" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3510" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.20276,-0.60407 -2.60223,-1.38769 -0.0122,0.01 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.40347,-1.84755 2.28672,-1.77138 1.63435,0.14096 2.07736,2.11008 2.06584,2.11245 -0.14324,0.78536 -0.57699,2.09291 -1.71464,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" id="path3512" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3514" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/> + </g> + <g inkscape:groupmode="layer" id="Boob_None_Areola_Star" style="display:inline;opacity:1" inkscape:label="Boob_None_Areola_Star"> + <path sodipodi:nodetypes="ccccccccccccc" class="areola" d="m 245.94542,243.7292 c -1.59722,1.06191 -2.35083,2.49876 -3.47795,3.76961 l 0.32113,-3.98865 c 0.0553,-0.7947 0.40279,-1.51228 0.75202,-2.1894 l -0.31673,-0.21132 c 0.14076,-1.07326 0.28806,-2.14356 0.74577,-3.07275 0.37871,-0.20231 0.7193,-0.2331 1.0392,-0.17079 1.01956,-2.12609 3.72149,-6.1021 3.72149,-6.1021 0,0 -0.79365,4.08678 -0.92235,6.011 1.85312,0.24383 5.32849,0.96237 5.32849,0.96237 0,0 -3.2575,1.66352 -4.54841,2.77169 0.4372,2.531 2.06436,7.47727 2.06436,7.47727 0,0 -3.66477,-3.07349 -4.70702,-5.25693 z" id="path2472-3-6" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccccccccccc" class="areola" d="m 312.50785,241.03136 -7.06793,5.17136 3.4237,-7.5798 -5.8564,-2.5784 8.08136,-0.87646 2.8937,-6.1021 1.34811,6.011 8.07479,0.96237 -6.89265,2.77169 3.12832,7.47727 z" id="path2472-3" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" id="path3476" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3478" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 311.35893,236.87262 c 0.87662,-0.34085 1.71217,0.12006 2.25579,0.57658 -0.65277,-0.31849 -1.48757,-0.75499 -2.25579,-0.57658 z" id="path3480" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3482" d="m 312.37165,236.86687 c 0.50004,-0.43498 0.80129,-0.55077 1.55144,-0.47994 -0.70137,0.0247 -1.0201,0.15274 -1.55144,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/> + <path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.11037,-0.47307 -2.60223,-1.38769 -0.0634,-0.11498 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.26383,-1.82945 2.28672,-1.77138 1.68239,0.0955 2.07736,2.11008 2.06584,2.11245 -0.17469,0.92279 -0.57699,2.09291 -1.71464,2.09291 z" id="path3486" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3488" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.20276,-0.60407 -2.60223,-1.38769 -0.0122,0.01 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.40347,-1.84755 2.28672,-1.77138 1.63435,0.14096 2.07736,2.11008 2.06584,2.11245 -0.14324,0.78536 -0.57699,2.09291 -1.71464,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" id="path3490" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3492" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/> + </g> + <g inkscape:groupmode="layer" id="Boob_None_Areola_Heart" style="display:inline;opacity:1" inkscape:label="Boob_None_Areola_Heart"> + <path sodipodi:nodetypes="cccczcc" class="areola" d="m 245.56185,251.55642 c -0.86254,-0.78552 -2.03098,-2.55215 -3.02546,-4.70061 -0.10805,-2.51234 0.0677,-9.261 3.10818,-14.05758 1.421,0.25373 2.07623,1.82455 2.07623,1.82455 0,0 3.32805,-3.93385 6.38833,0.80632 3.06028,4.74018 -5.55654,14.38093 -8.54728,16.12699 z" id="path2482-8-7" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="czczcc" class="areola" d="m 311.20178,248.40454 c -3.18669,-2.26963 -9.63881,-12.72964 -4.55598,-16.92564 5.08282,-4.19601 7.31661,-0.008 7.31661,-0.008 0,0 4.25554,-3.93385 8.16868,0.80632 3.91314,4.74018 -7.10509,14.38093 -10.92931,16.12699 z" id="path2482-8" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" id="path3454" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3456" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 311.35893,236.87262 c 0.87662,-0.34085 1.71217,0.12006 2.25579,0.57658 -0.65277,-0.31849 -1.48757,-0.75499 -2.25579,-0.57658 z" id="path3458" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3460" d="m 312.37165,236.86687 c 0.50004,-0.43498 0.80129,-0.55077 1.55144,-0.47994 -0.70137,0.0247 -1.0201,0.15274 -1.55144,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/> + <path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.11037,-0.47307 -2.60223,-1.38769 -0.0634,-0.11498 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.26383,-1.82945 2.28672,-1.77138 1.68239,0.0955 2.07736,2.11008 2.06584,2.11245 -0.17469,0.92279 -0.57699,2.09291 -1.71464,2.09291 z" id="path3464" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3466" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.20276,-0.60407 -2.60223,-1.38769 -0.0122,0.01 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.40347,-1.84755 2.28672,-1.77138 1.63435,0.14096 2.07736,2.11008 2.06584,2.11245 -0.14324,0.78536 -0.57699,2.09291 -1.71464,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/> + <path sodipodi:nodetypes="ccc" class="shadow" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" id="path3468" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" id="path3470" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/> + </g> + <g inkscape:groupmode="layer" id="Boob_None_Piercings_" inkscape:label="Boob_None_Piercings_" style="display:inline"> + <g inkscape:groupmode="layer" id="Boob_None_Areola_Piercing_Heavy" style="display:inline" inkscape:label="Boob_None_Areola_Piercing_Heavy"> + <g transform="matrix(1.0049807,0,0,1.0049807,-1.6578337,-0.99661844)" id="g1669" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/> + <g transform="matrix(1.0106254,0,0,1.0106254,-2.44532,-2.2864495)" id="g1677" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/> + <g id="g3991" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> + <path inkscape:connector-curvature="0" d="m 316.39389,239.90478 c 0,0 3.2247,3.12482 5.1113,2.71879 2.22965,-0.47988 4.45815,-3.14958 4.18403,-5.41376 -0.265,-2.18891 -2.97434,-4.01868 -5.17703,-4.1173 -1.77684,-0.0795 -4.45626,2.93478 -4.45626,2.93478 0,0 3.02457,-2.02781 4.59604,-1.6176 1.28507,0.33544 2.54463,1.66577 2.63232,2.991 0.0979,1.47984 -1.08496,3.17766 -2.4737,3.69817 -1.42807,0.53526 -4.4167,-1.19408 -4.4167,-1.19408 z" class="shadow" id="path5154" sodipodi:nodetypes="caaacaaac"/> + <path inkscape:connector-curvature="0" d="m 309.09912,239.33692 c 0,0 -3.63548,2.6356 -5.44536,1.96596 -2.13901,-0.79141 -3.96612,-3.75032 -3.37348,-5.95269 0.57293,-2.12915 3.51451,-3.55595 5.7089,-3.34101 1.77014,0.17338 3.99471,3.53744 3.99471,3.53744 0,0 -2.70621,-2.43649 -4.31999,-2.25342 -1.31966,0.1497 -2.75526,1.28782 -3.03012,2.5872 -0.30692,1.45096 0.62309,3.29946 1.9239,4.01176 1.33767,0.73248 4.54144,-0.55524 4.54144,-0.55524 z" class="shadow" id="path5156" sodipodi:nodetypes="caaacaaac"/> + <path inkscape:connector-curvature="0" d="m 250.11413,242.34048 c 0,0 2.50391,3.06938 4.10816,2.71878 2.07541,-0.45357 3.61174,-3.30398 3.36288,-5.41376 -0.22858,-1.9378 -2.21189,-4.02594 -4.161,-4.1173 -1.5418,-0.0723 -3.58167,2.93479 -3.58167,2.93479 0,0 2.39892,-1.97771 3.69402,-1.61761 1.17658,0.32716 2.04104,1.77207 2.1157,2.991 0.0856,1.39697 -0.68667,3.18357 -1.98821,3.69817 -1.161,0.45903 -3.54988,-1.19407 -3.54988,-1.19407 z" class="shadow" id="path5159" sodipodi:nodetypes="caaacaaac"/> + <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6" class="steel_piercing" d="m 316.80209,239.7203 c 0,0 2.93154,2.84074 4.64663,2.47162 2.02696,-0.43625 4.05287,-2.86325 3.80367,-4.9216 -0.24091,-1.98991 -2.70395,-3.65334 -4.70639,-3.743 -1.61531,-0.0723 -4.05115,2.66799 -4.05115,2.66799 0,0 2.74961,-1.84347 4.17822,-1.47055 1.16824,0.30495 2.3133,1.51434 2.39302,2.71909 0.089,1.34531 -0.98633,2.88878 -2.24882,3.36197 -1.29825,0.4866 -4.01518,-1.08552 -4.01518,-1.08552 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 244.44613,241.71183 c 0,0 -2.00072,2.39045 -3.16913,1.96596 -1.96379,-0.71346 -2.44375,-3.91931 -1.96331,-5.95269 0.36115,-1.52853 1.75982,-3.49874 3.32249,-3.34101 1.40388,0.1417 2.32487,3.53744 2.32487,3.53744 0,0 -1.39697,-2.38913 -2.51418,-2.25342 -1.03607,0.12585 -1.59405,1.55735 -1.76347,2.5872 -0.22538,1.36995 -0.067,3.29109 1.11967,4.01176 0.76947,0.4673 2.64306,-0.55524 2.64306,-0.55524 z" class="shadow" id="path5161" sodipodi:nodetypes="caaacaaac"/> + <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-4" class="steel_piercing" d="m 308.73334,239.09718 c 0,0 -3.30498,2.396 -4.95033,1.78724 -1.94455,-0.71946 -3.60556,-3.40938 -3.0668,-5.41154 0.52085,-1.93559 3.19501,-3.23268 5.18991,-3.03728 1.60922,0.15762 3.63156,3.21586 3.63156,3.21586 0,0 -2.46019,-2.21499 -3.92727,-2.04857 -1.19969,0.13609 -2.50478,1.17075 -2.75465,2.352 -0.27902,1.31906 0.56644,2.99951 1.749,3.64706 1.21606,0.66589 4.12858,-0.50477 4.12858,-0.50477 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-7" class="steel_piercing" d="m 250.44258,242.15562 c 0,0 2.27628,2.79035 3.73469,2.47162 1.88674,-0.41234 3.2834,-3.00362 3.05716,-4.9216 -0.2078,-1.76164 -2.01081,-3.65995 -3.78272,-3.743 -1.40164,-0.0657 -3.25607,2.66799 -3.25607,2.66799 0,0 2.18084,-1.79792 3.3582,-1.47055 1.06962,0.29741 1.85549,1.61097 1.92337,2.71909 0.0778,1.26997 -0.62425,2.89415 -1.80747,3.36197 -1.05545,0.4173 -3.22716,-1.08552 -3.22716,-1.08552 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-4-1" class="steel_piercing" d="m 244.22839,241.47 c 0,0 -1.81884,2.17314 -2.88103,1.78724 -1.78526,-0.6486 -2.22159,-3.56301 -1.78483,-5.41154 0.32832,-1.38957 1.59984,-3.18067 3.02045,-3.03728 1.27625,0.12882 2.11352,3.21586 2.11352,3.21586 0,0 -1.26998,-2.17194 -2.28562,-2.04857 -0.94188,0.11441 -1.44914,1.41578 -1.60316,2.352 -0.20489,1.24541 -0.0609,2.9919 1.01789,3.64706 0.69951,0.42482 2.40278,-0.50477 2.40278,-0.50477 z" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:label="Boob_None_Piercing_Heavy" style="display:inline" id="Boob_None_Piercing_Heavy" inkscape:groupmode="layer"> + <g id="g3755" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> + <path inkscape:connector-curvature="0" d="m 309.14219,234.55641 c 0,0 -1.66351,6.13387 -0.6555,8.95038 0.69607,1.9449 2.20975,4.61726 4.27152,4.4898 2.04057,-0.12615 3.06329,-2.97147 3.6481,-4.93052 0.82353,-2.7587 -0.4904,-8.62306 -0.4904,-8.62306 0,0 0.0757,0.87987 0.1112,2.11179 -0.11286,0.003 -0.5941,-2.8e-4 -0.5941,-2.8e-4 l 0.18681,0.60388 c 0,0 0.23025,-0.007 0.41963,-0.011 0.0263,1.97276 -0.0845,4.54326 -0.72754,5.98192 -0.52233,1.16847 -1.40518,2.44497 -2.59622,2.45515 -1.32582,0.0113 -2.33971,-1.38723 -2.93627,-2.68322 -0.62986,-1.36835 -0.75375,-3.82476 -0.74101,-5.71945 0.29918,0 1.29193,-0.0359 1.29193,-0.0359 l 0.0835,-0.60866 c 0,0 -1.06431,-0.009 -1.36586,-0.009 0.0266,-1.15377 0.0942,-1.97253 0.0942,-1.97253 z" class="shadow" id="path5128" sodipodi:nodetypes="caaacccccsascccccc"/> + <path inkscape:connector-curvature="0" d="m 249.30676,237.70242 c 0,0 1.66352,6.13388 0.6555,8.95038 -0.69607,1.9449 -2.20974,4.61726 -4.27152,4.4898 -2.04056,-0.12615 -3.06329,-2.97147 -3.6481,-4.93052 -0.82353,-2.7587 0.4904,-8.62306 0.4904,-8.62306 0,0 -0.0757,0.87987 -0.1112,2.11179 0.11286,0.003 1.62535,-2.8e-4 1.62535,-2.8e-4 l -0.0321,0.60388 c 0,0 -1.41619,-0.007 -1.60557,-0.011 -0.0263,1.97276 0.0845,4.54326 0.72754,5.98192 0.52233,1.16847 1.40518,2.44498 2.59622,2.45515 1.32583,0.0113 2.33971,-1.38723 2.93627,-2.68322 0.62986,-1.36835 0.75375,-3.82476 0.74101,-5.71945 -0.29918,0 -1.29193,-0.0359 -1.29193,-0.0359 l -0.0835,-0.60866 c 0,0 1.06431,-0.009 1.36586,-0.009 -0.0266,-1.15377 -0.0942,-1.97253 -0.0942,-1.97253 z" class="shadow" id="path5130" sodipodi:nodetypes="caaacccccsascccccc"/> + <path inkscape:connector-curvature="0" d="m 312.76639,245.60534 c 0,0 -1.2348,6.34214 -1.28029,9.55581 -0.052,3.67206 1.15328,10.95624 1.15328,10.95624 0,0 -0.24674,-6.54217 0.73111,-13.09806 -0.65216,-2.17566 -0.6041,-7.41399 -0.6041,-7.41399 z" class="shadow" id="path5132" sodipodi:nodetypes="caccc"/> + <path inkscape:connector-curvature="0" d="m 312.59693,264.7749 c 0,0 -0.72404,2.39816 -0.65902,3.62462 0.0619,1.16743 0.98852,3.36375 0.98852,3.36375 0,0 0.70059,-2.22176 0.65903,-3.36375 -0.0456,-1.25189 -0.98853,-3.62462 -0.98853,-3.62462 z" class="shadow" id="path5134" sodipodi:nodetypes="cacac"/> + <path inkscape:connector-curvature="0" d="m 245.85647,248.53096 c 0,0 -1.2348,6.34215 -1.28029,9.55581 -0.052,3.67207 1.15328,10.95624 1.15328,10.95624 0,0 -0.24674,-6.54217 0.73111,-13.09806 -0.65216,-2.17566 -0.6041,-7.41399 -0.6041,-7.41399 z" class="shadow" id="path5136" sodipodi:nodetypes="caccc"/> + <path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9" class="steel_piercing" d="m 309.44017,235.16237 c 0,0 -1.51228,5.57625 -0.59591,8.13671 0.63279,1.76809 2.00887,4.19751 3.8832,4.08164 1.85507,-0.11468 2.78481,-2.70134 3.31646,-4.48229 0.74866,-2.50791 -0.44582,-7.83915 -0.44582,-7.83915 0,0 0.0688,0.79988 0.10109,1.91981 -0.1026,0.003 -0.54009,-2.5e-4 -0.54009,-2.5e-4 l 0.16983,0.54898 c 0,0 0.20931,-0.006 0.38148,-0.01 0.0239,1.79342 -0.0768,4.13023 -0.6614,5.43811 -0.47485,1.06224 -1.27744,2.2227 -2.3602,2.23195 -1.20529,0.0103 -2.12701,-1.26112 -2.66934,-2.43929 -0.5726,-1.24395 -0.68523,-3.47705 -0.67364,-5.1995 0.27198,0 1.17448,-0.0326 1.17448,-0.0326 l 0.0759,-0.55333 c 0,0 -0.96756,-0.008 -1.24169,-0.008 0.0242,-1.04888 0.0856,-1.79321 0.0856,-1.79321 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 245.68701,267.70052 c 0,0 -0.72404,2.39816 -0.65902,3.62462 0.0619,1.16743 0.98852,3.36375 0.98852,3.36375 0,0 0.70059,-2.22176 0.65903,-3.36375 -0.0456,-1.25189 -0.98853,-3.62462 -0.98853,-3.62462 z" class="shadow" id="path5138" sodipodi:nodetypes="cacac"/> + <path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-0" class="steel_piercing" d="m 249.00878,238.30838 c 0,0 1.51229,5.57626 0.59591,8.13671 -0.63279,1.76809 -2.00886,4.19751 -3.8832,4.08164 -1.85506,-0.11468 -2.78481,-2.70134 -3.31646,-4.48229 -0.74866,-2.50791 0.44582,-7.83915 0.44582,-7.83915 0,0 -0.0688,0.79988 -0.10109,1.91981 0.1026,0.003 1.47759,-2.5e-4 1.47759,-2.5e-4 l -0.0292,0.54898 c 0,0 -1.28744,-0.006 -1.45961,-0.01 -0.0239,1.79342 0.0768,4.13023 0.6614,5.43811 0.47485,1.06224 1.27744,2.22271 2.3602,2.23195 1.2053,0.0103 2.12701,-1.26112 2.66934,-2.43929 0.5726,-1.24395 0.68523,-3.47705 0.67364,-5.1995 -0.27198,0 -1.17448,-0.0326 -1.17448,-0.0326 l -0.0759,-0.55333 c 0,0 0.96756,-0.008 1.24169,-0.008 -0.0242,-1.04888 -0.0856,-1.79321 -0.0856,-1.79321 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0" class="steel_piercing" d="m 312.73558,246.53771 c 0,0 -1.12255,5.76559 -1.1639,8.6871 -0.0473,3.33824 1.04844,9.96021 1.04844,9.96021 0,0 -0.22431,-5.94742 0.66464,-11.90732 -0.59287,-1.97788 -0.54918,-6.73999 -0.54918,-6.73999 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7" class="steel_piercing" d="m 312.6118,265.09255 c 0,0 -0.65822,2.18015 -0.59911,3.29511 0.0563,1.0613 0.89866,3.05796 0.89866,3.05796 0,0 0.63689,-2.01978 0.59911,-3.05796 -0.0414,-1.13808 -0.89866,-3.29511 -0.89866,-3.29511 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-5" class="steel_piercing" d="m 245.82566,249.46333 c 0,0 -1.12255,5.76559 -1.1639,8.6871 -0.0472,3.33824 1.04844,9.96021 1.04844,9.96021 0,0 -0.22431,-5.94742 0.66464,-11.90732 -0.59287,-1.97788 -0.54918,-6.73999 -0.54918,-6.73999 z" inkscape:connector-curvature="0"/> + <path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-4" class="steel_piercing" d="m 245.70188,268.01817 c 0,0 -0.65822,2.18015 -0.59911,3.29511 0.0563,1.0613 0.89866,3.05796 0.89866,3.05796 0,0 0.63689,-2.01978 0.59911,-3.05796 -0.0414,-1.13808 -0.89866,-3.29511 -0.89866,-3.29511 z" inkscape:connector-curvature="0"/> + </g> + </g> + <g inkscape:label="Boob_None_Areola_Piercing" style="display:inline" id="Boob_None_Areola_Piercing" inkscape:groupmode="layer"> + <g id="g3997" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5146" d="m 249.37141,236.16209 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 249.22621,236.16209 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-7" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5148" d="m 248.77479,245.35448 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 248.62959,245.35448 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-5" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5150" d="m 315.53009,232.95802 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 315.38489,232.95802 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-76" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5152" d="m 314.20427,242.60621 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 314.05907,242.60621 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-4" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_None_Piercing" style="display:inline" inkscape:label="Boob_None_Piercing"> + <g id="g4003" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5118" d="m 317.55033,237.51562 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 317.40513,237.51562 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-66" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5120" d="m 311.06595,237.34375 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75292,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84428,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 310.92075,237.34375 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68447,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76753,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-3" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + <path class="shadow" sodipodi:nodetypes="aaaaa" id="path5122" d="m 250.31593,240.49857 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 250.17073,240.49857 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-66-7" sodipodi:nodetypes="aaaaa" class="steel_piercing"/> + <path class="shadow" sodipodi:nodetypes="csasccc" id="path5124" d="m 244.73869,241.83277 c -0.14826,0.0584 -0.30012,0.0911 -0.44845,0.0911 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.20146,0 0.40944,0.0605 0.60606,0.16339 -0.83243,0.65113 -1.08254,2.0678 -0.15761,2.93988 z" inkscape:connector-curvature="0"/> + <path inkscape:connector-curvature="0" d="m 244.65287,241.69585 c -0.13478,0.0531 -0.27284,0.0828 -0.40768,0.0828 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.18314,0 0.37222,0.055 0.55096,0.14854 -0.68459,0.57919 -0.90899,1.86654 -0.14328,2.67261 z" id="path2749-8-3-4" sodipodi:nodetypes="csascc" class="steel_piercing"/> + </g> </g> - </g> - </g> - </g> - <g inkscape:groupmode="layer" id="Boob_Highlights_" inkscape:label="Boob_Highlights_" style="display:inline"> - <g inkscape:groupmode="layer" id="Boob_Highlights2" inkscape:label="Boob_Highlights2" style="display:inline"> - <g id="g2226" transform="matrix(0.99843271,0,0,0.99843271,0.51131944,0.3030066)"> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9" class="highlight2" d="m 324.062,195.87815 c -2.25111,1.2044 -7.45996,3.89006 -5.39058,7.5857 4.2438,-0.0711 5.93888,-5.71281 5.39058,-7.5857 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7" class="highlight2" d="m 313.22303,216.21843 c -3.53236,3.2669 -5.77246,8.35881 -1.89058,10.3357 2.9938,-1.10235 3.78263,-5.83781 1.89058,-10.3357 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7" class="highlight2" d="m 256.23397,214.34522 c -7.63355,-1.99021 -15.11772,5.91416 -17.80104,7.67441 4.08319,1.14699 17.25312,2.91232 17.80104,-7.67441 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4" class="highlight2" d="m 313.50007,212.81652 c -1.45423,1.22002 -0.55371,1.5776 -0.29683,2.05444 0.91567,-0.49297 1.12638,-0.75968 0.29683,-2.05444 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-70" class="highlight2" d="m 325.92076,193.33159 c -0.70431,0.21003 -1.91359,0.15565 -1.19213,1.55319 2.16667,-0.20368 1.45317,-1.07242 1.19213,-1.55319 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5" class="highlight2" d="m 262.30677,208.04077 c -0.95431,-0.17346 -2.05373,0.57643 -1.9822,1.36001 0.65204,0.10878 1.99495,0.29667 1.9822,-1.36001 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1" class="highlight2" d="m 237.28097,221.17554 c -0.88687,-0.39276 -2.13167,0.0779 -2.2462,0.85637 0.60825,0.25889 1.86945,0.75696 2.2462,-0.85637 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9" class="highlight2" d="m 224.57022,224.30732 c -0.73318,-0.21518 -5.16322,0.19765 -5.64135,0.25254 0.7532,0.71279 5.59616,1.42803 5.64135,-0.25254 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-6" class="highlight2" d="m 214.65463,231.123 c -1.28043,3.08678 -0.887,13.93661 0.52713,15.49899 0.17285,-0.32564 -0.27027,-14.54836 -0.52713,-15.49899 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-4" class="highlight2" d="m 214.66568,228.54869 c -0.95299,0.64524 -0.46869,1.54719 -0.0583,1.90701 0.59665,-0.3531 0.32534,-1.4005 0.0583,-1.90701 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-62-3" class="highlight2" d="m 214.96934,223.37407 c -0.59995,0.17051 -1.09864,0.3604 -1.5163,0.72315 0.72663,0.2153 1.41533,0.1382 1.5163,-0.72315 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4-2" class="highlight2" d="m 315.14231,208.27176 c -1.11469,-1.53646 -2.19765,-0.93953 -2.69138,-0.71684 0.55133,0.56169 1.58949,0.72014 2.69138,0.71684 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4-2-1" class="highlight2" d="m 315.01568,205.51285 c -1.29777,-0.23638 -1.89173,0.15908 -2.19786,0.60584 1.13578,0.21924 1.34362,0.27207 2.19786,-0.60584 z" inkscape:connector-curvature="0"/> - <path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-62-3-9" class="highlight2" d="m 214.99712,221.61733 c -0.26984,0.0314 -0.84473,0.21024 -0.92476,0.7089 0.27569,-0.29941 0.86343,-0.25926 0.92476,-0.7089 z" inkscape:connector-curvature="0"/> - </g> - </g> - <g style="display:inline" inkscape:label="Boob_Highlights1" id="Boob_Highlights1" inkscape:groupmode="layer"> - <g id="g2210" transform="matrix(1.0060951,0,0,1.0060951,-1.9605124,-1.2116124)"> - <path inkscape:connector-curvature="0" d="m 321.562,198.7844 c -2.25111,1.2044 -2.83496,3.23381 -2.89058,4.67945 1.40005,-0.6336 3.43888,-2.80656 2.89058,-4.67945 z" class="highlight1" id="path1139" sodipodi:nodetypes="ccc"/> - <path inkscape:connector-curvature="0" d="m 313.22303,216.21843 c -1.68861,1.7669 -1.74121,4.42131 -1.45308,5.80445 1.40005,-1.16485 2.00138,-3.93156 1.45308,-5.80445 z" class="highlight1" id="path1141" sodipodi:nodetypes="ccc"/> - <path inkscape:connector-curvature="0" d="m 250.26522,218.00147 c -4.7273,0.75979 -7.83647,2.53916 -10.64479,3.98691 4.08319,1.14699 9.56562,1.06857 10.64479,-3.98691 z" class="highlight1" id="path1143" sodipodi:nodetypes="ccc"/> </g> </g> </g> @@ -1805,23 +2262,34 @@ <path sodipodi:nodetypes="ccccc" id="XMLID_511_-1-8-2-9-28" class="shadow" d="m 248.16035,269.85576 64.35095,-3.16234 -15.11323,-3.41196 -42.937,2.58394 z" inkscape:connector-curvature="0"/> </g> </g> - <g inkscape:groupmode="layer" id="Boob_Outfit_Maid" inkscape:label="Boob_Outfit_Maid" style="display:inline;opacity:1"> - <g style="display:inline;opacity:1" id="g2134" transform="matrix(0.99515665,0,0,0.99515665,1.6400838,0.96959443)"> - <path inkscape:connector-curvature="0" transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2120" d="m 226.34766,216.85742 c 2.98619,-0.62315 5.85031,-1.4204 8.64453,-2.38086 2.79422,-0.96045 5.51818,-2.08363 8.22656,-3.35742 2.70838,-1.27379 5.40024,-2.69856 8.12891,-4.26172 2.72867,-1.56316 5.49451,-3.2652 8.34961,-5.09375 -11.79723,6.74895 -21.9632,11.76361 -33.34961,15.09375 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/> - <path inkscape:connector-curvature="0" transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2122" d="m 210.87305,229.81641 c 0.0451,-0.71382 0.22536,-1.51018 0.23047,-2.16797 0.006,-0.73749 0.0162,-1.44067 0.0996,-2.11719 0.0834,-0.67652 0.23899,-1.32563 0.53516,-1.95117 0.29618,-0.62554 0.73278,-1.22795 1.37695,-1.8125 0.64418,-0.58456 1.4957,-1.15152 2.62305,-1.70508 1.12735,-0.55356 2.52969,-1.0944 4.27539,-1.62695 1.74571,-0.53255 3.83474,-1.0566 6.33399,-1.57813 -18.80751,3.15763 -15.50638,7.20888 -15.47461,12.95899 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/> - <path inkscape:connector-curvature="0" transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2124" d="m 217.95898,264.23438 c -1.87038,-2.59224 -3.45412,-5.21814 -4.73046,-7.86329 -1.27635,-2.64515 -2.24524,-5.30915 -2.88672,-7.97461 -0.32074,-1.33272 -0.56048,-2.66635 -0.71485,-3.99804 -0.15437,-1.33169 -0.22414,-2.66171 -0.20703,-3.98828 0.0171,-1.32658 0.12272,-2.64941 0.31641,-3.9668 0.19369,-1.31739 0.47619,-2.62947 0.85156,-3.93359 -3.41169,10.57894 -1.27171,21.77042 7.37109,31.72461 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/> - <path inkscape:connector-curvature="0" transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2126" d="m 235.44727,272.8418 c -1.78236,-0.10142 -3.49568,-0.27493 -5.13086,-0.58203 -1.63519,-0.30711 -3.19249,-0.74733 -4.66211,-1.38282 -1.46962,-0.63548 -2.85106,-1.46617 -4.13672,-2.55273 -1.28566,-1.08657 -2.47529,-2.42951 -3.5586,-4.08984 4.0232,7.19252 9.64374,9.47305 17.48829,8.60742 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/> - <path inkscape:connector-curvature="0" transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2128" d="m 352.21094,243.07812 c -0.86728,1.85762 -1.81754,3.59094 -2.84961,5.20508 -1.03208,1.61415 -2.14654,3.10879 -3.33985,4.49219 -1.19331,1.3834 -2.46542,2.65492 -3.8164,3.82031 -1.35099,1.16539 -2.78006,2.22544 -4.28516,3.18555 -1.5051,0.96011 -3.08653,1.82033 -4.74219,2.58789 -1.65565,0.76756 -3.38485,1.44155 -5.1875,2.0293 -1.80264,0.58774 -3.67891,1.08911 -5.625,1.50976 -1.94608,0.42066 -3.96287,0.76104 -6.04882,1.02735 17.12494,-2.04297 30.70536,-8.64667 35.89453,-23.85743 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/> - <path sodipodi:nodetypes="ccsscccsscccccssscccccccscsccccscsccccccccsc" inkscape:connector-curvature="0" transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2130" d="m 339.94922,198.16016 c -32.0958,-3.67156 -54.13039,-3.02574 -80.25195,3.60351 -2.8551,1.82855 -5.62094,3.53059 -8.34961,5.09375 -2.72867,1.56316 -5.42053,2.98793 -8.12891,4.26172 -2.70838,1.27379 -5.43234,2.39697 -8.22656,3.35742 -2.79422,0.96046 -5.65834,1.75771 -8.64453,2.38086 -2.49925,0.52153 -4.58828,1.04558 -6.33399,1.57813 -1.7457,0.53255 -3.14804,1.07339 -4.27539,1.62695 -1.12735,0.55356 -1.97887,1.12052 -2.62305,1.70508 -0.64417,0.58455 -1.08077,1.18696 -1.37695,1.8125 -0.29617,0.62554 -0.4518,1.27465 -0.53516,1.95117 -0.0834,0.67652 -0.0939,1.3797 -0.0996,2.11719 -0.005,0.65779 -0.1854,1.45415 -0.23047,2.16797 0.005,0.86012 -0.0584,1.75431 -0.28516,2.69336 -0.37537,1.30412 -0.65787,2.6162 -0.85156,3.93359 -0.19369,1.31739 -0.2993,2.64022 -0.31641,3.9668 -0.0171,1.32657 0.0527,2.65659 0.20703,3.98828 0.15437,1.33169 0.39411,2.66532 0.71485,3.99804 0.64148,2.66546 1.61037,5.32946 2.88672,7.97461 1.27634,2.64515 2.86008,5.27105 4.73046,7.86329 1.08331,1.66033 2.27294,3.00327 3.5586,4.08984 1.28566,1.08656 2.6671,1.91725 4.13672,2.55273 1.46962,0.63549 3.02692,1.07571 4.66211,1.38282 1.63518,0.3071 3.3485,0.48061 5.13086,0.58203 6.92666,-0.0668 16.98116,-4.96122 24.06579,-9.98486 10.21409,-7.24271 18.92639,-25.59132 18.92639,-25.59132 0,0 -0.76705,11.91966 12.59961,22.70899 6.80046,5.48921 18.84722,7.23767 25.27735,6.96094 2.08595,-0.26631 4.10274,-0.60669 6.04882,-1.02735 1.94609,-0.42065 3.82236,-0.92202 5.625,-1.50976 1.80265,-0.58775 3.53185,-1.26174 5.1875,-2.0293 1.65566,-0.76756 3.23709,-1.62778 4.74219,-2.58789 1.5051,-0.96011 2.93417,-2.02016 4.28516,-3.18555 1.35098,-1.16539 2.62309,-2.43691 3.8164,-3.82031 1.19331,-1.3834 2.30777,-2.87804 3.33985,-4.49219 1.03207,-1.61414 1.98233,-3.34746 2.84961,-5.20508 0.91196,-2.53191 1.61912,-4.98945 2.13086,-7.37109 0.51173,-2.38164 0.82888,-4.68757 0.96093,-6.91211 0.13206,-2.22453 0.0786,-4.3691 -0.14843,-6.42969 -0.22709,-2.06059 -0.62768,-4.03792 -1.19336,-5.92773 -0.56569,-1.88981 -1.29595,-3.6921 -2.17969,-5.4043 -0.88374,-1.71219 -1.92226,-3.33358 -3.10352,-4.86132 -1.18125,-1.52775 -2.50661,-2.96042 -3.96484,-4.29688 -1.45823,-1.33646 -3.04901,-2.57651 -4.76367,-3.71484 z" style="display:inline;opacity:1;fill:#ffffff;stroke-width:0.99515665"/> - <path inkscape:connector-curvature="0" transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2132" d="m 339.94922,198.16016 c 1.71466,1.13833 3.30544,2.37838 4.76367,3.71484 1.45823,1.33646 2.78359,2.76913 3.96484,4.29688 1.18126,1.52774 2.21978,3.14913 3.10352,4.86132 0.88374,1.7122 1.614,3.51449 2.17969,5.4043 0.56568,1.88981 0.96627,3.86714 1.19336,5.92773 0.22708,2.06059 0.28049,4.20516 0.14843,6.42969 -0.13205,2.22454 -0.4492,4.53047 -0.96093,6.91211 -0.51174,2.38164 -1.2189,4.83918 -2.13086,7.37109 9.47613,-21.16383 1.84382,-35.97308 -12.26172,-44.91796 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/> + <g inkscape:groupmode="layer" id="Boob_Small_Outfit_Maid" inkscape:label="Boob_Small_Outfit_Maid" style="display:inline;opacity:1"> + <g style="display:inline;opacity:1" id="g2134" transformVariableName="_boob_outfit_art_transform"> + <path transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke-width:0.99515665" d="m 239.54885,237.04157 c -4.04819,7.94613 1.44538,18.58593 8.83122,22.81636 8.09471,6.43684 19.83019,-1.39546 30.03417,-2.40951 14.56784,0.39988 33.00884,8.74574 45.2163,-1.3044 10.61336,-7.56078 12.07589,-24.40116 5.67382,-34.87417 -7.36879,-13.11973 -24.34612,-5.89309 -39.2914,-4.14233 -19.08654,2.23589 -45.57307,0.78903 -50.46411,19.91405 z" id="path2802" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc"/> + <path sodipodi:nodetypes="aaaaaaa" inkscape:connector-curvature="0" id="path2130" d="m 239.54885,237.04157 c -2.74035,7.68108 1.92475,18.4794 8.83122,22.81636 8.5056,5.34113 20.0055,-1.86294 30.03417,-2.40951 15.05602,-0.82057 33.63673,8.35329 45.2163,-1.3044 9.12655,-7.61181 13.40486,-24.61335 7.40909,-34.87417 -7.23069,-12.3742 -26.77543,-14.38112 -41.02667,-12.86259 -19.23179,2.04922 -43.96524,10.41822 -50.46411,28.63431 z" style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.99515665" transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)"/> + </g> + </g> + <g style="display:inline;opacity:1" inkscape:label="Boob_Medium_Outfit_Maid" id="Boob_Medium_Outfit_Maid" inkscape:groupmode="layer"> + <g id="g2809" style="display:inline;opacity:1" clip-path="url(#clipPath2523)"> + <g id="g2538" transformVariableName="_boob_outfit_art_transform"> + <path style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke-width:0.99515665" d="m 227.00685,243.38843 c -2.76471,9.20616 1.1523,22.46284 10.23433,26.44142 13.66316,10.50116 31.65638,-1.69767 47.38431,-2.79233 21.61943,-0.77747 47.79009,14.35634 64.89544,-1.51164 12.83936,-8.09143 12.84724,-26.23313 11.44045,-40.41498 0.7133,-22.58264 -24.44265,-62.6023 -24.52354,-62.59331 -0.004,-0.002 -98.3921,36.39445 -109.43099,80.87084 z" id="path2459" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc"/> + <path sodipodi:nodetypes="aaaaaca" inkscape:connector-curvature="0" id="path2806" d="m 227.00685,243.38843 c -2.63483,9.07628 2.28426,21.33088 10.23433,26.44142 13.30944,8.5557 31.57548,-2.14261 47.38431,-2.79233 21.61943,-0.88852 47.79009,11.73964 64.89544,-1.51164 11.06829,-8.57445 12.1231,-26.43062 11.44045,-40.41498 -1.09258,-22.38199 -24.52354,-62.59331 -24.52354,-62.59331 0,0 -96.78599,37.31223 -109.43099,80.87084 z" style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.99515665"/> + </g> + </g> + </g> + <g inkscape:groupmode="layer" id="Boob_Huge_Outfit_Maid" inkscape:label="Boob_Huge_Outfit_Maid" style="display:inline;opacity:1"> + <g id="g2511" clip-path="url(#clipPath2523)"> + <g id="g2501" transformVariableName="_boob_outfit_art_transform"> + <path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="path2481" d="m 248.46348,221.30205 c -7.84799,13.39188 -9.31561,33.03051 1.17873,45.75168 8.18024,12.33371 22.62994,9.84279 34.81926,7.11239 10.16499,1.36382 18.37185,1.37376 32.10564,1.83999 11.54119,4.46467 21.63893,4.78374 30.06923,-2.42885 13.78259,-9.95091 14.54789,-23.07261 13.81906,-47.30239 1.67109,-21.37616 -23.40629,-68.10261 -23.40629,-68.10261 0,0 -76.87136,32.99996 -88.58563,63.12979 z" style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke-width:0.99515665"/> + <path style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.99515665" d="m 248.46348,221.30205 c -6.81285,13.64987 -7.73759,33.34658 1.17873,45.75168 8.43153,11.73061 22.90015,9.19429 34.81926,7.11239 10.50108,1.06974 18.86406,0.94308 32.10564,1.83999 12.09113,3.70602 22.27287,3.92208 30.06923,-2.42885 12.73576,-10.37458 14.2035,-30.88034 13.81906,-47.30239 -0.56178,-23.99764 -23.40629,-68.10261 -23.40629,-68.10261 0,0 -72.39285,30.6868 -88.58563,63.12979 z" id="path2826" inkscape:connector-curvature="0" sodipodi:nodetypes="asccaaca"/> + <path inkscape:connector-curvature="0" d="m 311.72503,274.95345 c -18.32365,-4.27958 -40.32075,-0.75207 -49.31724,-0.21926 9.0114,-0.53368 36.99108,-2.65958 49.31724,0.21926 z" class="shadow" id="path3232-3-3" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 309.32149,267.43126 c -19.55847,-1.59311 -33.01835,5.3752 -42.28691,7.29258 9.28391,-1.92053 29.1301,-8.36425 42.28691,-7.29258 z" class="shadow" id="path3232-3-3-0" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 306.30748,260.9606 c -13.32491,-3.8423 -29.59097,-2.06333 -36.21523,-2.00693 6.63522,-0.0565 27.25168,-0.57775 36.21523,2.00693 z" class="shadow" id="path3232-3-3-0-5" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 304.97187,260.29254 c -13.14861,-4.43301 -29.43657,-3.36835 -36.04526,-3.60354 6.61963,0.23558 27.20032,0.62148 36.04526,3.60354 z" class="shadow" id="path3232-3-3-0-5-5" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 311.29793,219.17019 c -11.83811,-4.5168 -26.69692,-4.12421 -32.70598,-4.57425 6.01901,0.45079 24.74259,1.53583 32.70598,4.57425 z" class="shadow" id="path3232-3-3-0-5-1" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 311.27871,223.32929 c -11.22803,-5.99229 -25.95244,-7.45922 -31.84373,-8.66054 5.90105,1.20331 24.29074,4.62958 31.84373,8.66054 z" class="shadow" id="path3232-3-3-0-5-1-0" sodipodi:nodetypes="ccc"/> + </g> </g> </g> - </g> - <g inkscape:groupmode="layer" id="Clavicle" style="display:inline" inkscape:label="Clavicle"> - <path inkscape:connector-curvature="0" d="m 309.9875,184.0875 c 14.75,-2.5125 17.4,-1.9875 45.45,-5.375 -27.27187,3.9625 -35,4.3375 -45.45,5.375 z" class="shadow" id="XMLID_511_" sodipodi:nodetypes="ccc"/> - <path inkscape:connector-curvature="0" d="m 297.39343,185.90351 c -10.35625,0.46563 -15.06859,3.45066 -23.39359,4.91628 7.69063,-2.24062 15.15922,-4.91628 23.39359,-4.91628 z" class="shadow" id="XMLID_546_" sodipodi:nodetypes="ccc"/> - <path inkscape:connector-curvature="0" d="m 313.8375,183.4375 c 10.06542,-14.75429 4.91406,-12.50942 11.3875,-27.5625 -4.64445,12.75714 -1.92662,15.28512 -11.3875,27.5625 z" class="shadow" id="XMLID_511_-1" sodipodi:nodetypes="ccc"/> - <path inkscape:connector-curvature="0" d="m 302.62124,184.29159 c -0.67705,-3.9108 -0.64175,-6.21768 -2.35616,-8.91389 1.38684,2.4846 1.37673,4.45479 2.35616,8.91389 z" class="shadow" id="XMLID_511_-1-8" sodipodi:nodetypes="ccc"/> </g> <g inkscape:groupmode="layer" id="Head_" style="display:inline;opacity:1" inkscape:label="Head_"> <g inkscape:groupmode="layer" id="Head" inkscape:label="Head" style="display:inline;opacity:1"> @@ -2155,12 +2623,6 @@ <path style="fill:#bababa" d="m 297.07576,186.01507 9.32377,2.45711 1.11893,18.32943 -23.41509,-4.89324 z" id="polygon18" inkscape:connector-curvature="0"/> <path d="m 302.32515,180.06063 -0.85064,3.30581 2.90499,0.74858 0.85064,-3.3058 z" id="line20" inkscape:connector-curvature="0"/> </g> - <g inkscape:groupmode="layer" id="Collar_Maid" inkscape:label="Collar_Maid" style="display:inline"> - <path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" id="path1313" class="shadow" d="m 331.85675,162.02243 1.93544,5.9919 c 0.0226,0.004 0.34362,1.06634 -0.055,1.40725 -0.38339,0.53019 -1.38615,0.29933 -1.37171,0.26757 0.054,0 0.46202,1.5678 -0.081,2.03434 -0.5322,0.56735 -2.02139,-0.001 -2.00889,-0.0302 0.037,0 0.38254,2.10628 -0.42608,2.60581 -0.78793,0.53523 -2.40476,-0.4653 -2.37303,-0.48513 0.0384,0.006 0.2673,1.80307 -0.43822,2.20841 -0.62218,0.58415 -2.41384,-0.43536 -2.42937,-0.46642 0.0803,0.0301 -0.0134,1.84831 -0.78489,2.15506 -0.80428,0.38323 -2.20648,-0.66689 -2.17531,-0.67858 0.0329,-0.007 0.0424,1.7723 -0.78489,2.08566 -0.84412,0.36119 -2.00797,-0.92447 -2.00797,-0.92447 0.0267,0.0419 -0.14902,1.64182 -0.81051,1.80958 -0.7509,0.31434 -1.99714,-0.81291 -1.94526,-0.84626 0.0447,0.0149 -0.27635,1.5613 -1.02005,1.7147 -0.73481,0.23969 -1.84326,-0.86986 -1.8042,-0.89089 0.0219,0.0188 -0.56384,1.18152 -1.17391,1.26017 -0.59199,0.16577 -1.4985,-0.60773 -1.4798,-0.62228 0.0272,0.0204 -0.72132,1.21882 -1.3999,1.28632 -0.6705,0.15933 -1.69372,-0.67933 -1.66134,-0.70288 0.0336,0.0336 -0.76566,1.10921 -1.41643,1.15247 -0.72271,0.15706 -1.81336,-0.69065 -1.78527,-0.70937 0.0206,0.0112 -0.93563,1.11098 -1.68979,1.08277 -0.59807,0.0713 -1.44494,-0.80263 -1.43635,-0.81265 0.0325,0.013 -0.27324,0.85093 -0.68009,0.76955 -0.29439,-0.0184 -0.34132,-0.69275 -0.30755,-0.71205 l -0.19939,-6.02293 c -0.003,0 -0.13477,-0.32166 0.032,-0.36489 0.17113,-0.0761 0.32878,0.27634 0.30666,0.29109 -0.0345,-0.0115 0.28294,-0.64768 0.6928,-0.6998 0.57869,0.27858 1.97754,0.7297 1.97754,0.7297 0,0 1.62702,-1.34485 2.2488,-1.76753 0.31994,0.0903 0.45771,0.27246 0.45497,0.27442 -0.008,-0.001 0.2782,-0.88845 0.71952,-0.99561 0.43595,-0.14269 1.12798,0.42903 1.11321,0.43747 -0.0137,0 0.0724,-1.00959 0.51286,-1.15604 0.46773,-0.19935 1.28089,0.57501 1.26076,0.59917 -0.0138,-0.0111 0.12563,-1.17419 0.61384,-1.32805 0.56719,-0.23879 1.61963,0.58765 1.57985,0.61252 -0.0346,0.002 0.1956,-1.47265 0.90107,-1.71051 0.68508,-0.29172 1.96956,0.70712 1.95558,0.72389 -0.0142,0 0.34612,-1.822 1.14808,-2.09134 0.81177,-0.31928 2.17473,0.8304 2.14422,0.85074 -0.0128,0.003 0.0174,-1.62685 0.71557,-1.9026 0.70359,-0.28524 1.8785,0.81789 1.83908,0.83103 -0.0322,-0.0138 0.0235,-1.70274 0.76143,-1.95615 0.72075,-0.31561 2.02146,0.63985 1.97329,0.65017 -0.0347,-0.008 -0.072,-1.35954 0.51405,-1.61896 0.56598,-0.34388 1.72256,0.36114 1.69497,0.38567 -0.0272,0.006 -0.16412,-1.28353 0.39216,-1.62524 0.53723,-0.37554 1.7904,0.19188 1.77026,0.20627 -0.0208,-0.0115 -0.16702,-1.19259 0.30242,-1.43107 0.44979,-0.29501 1.37419,0.20433 1.34972,0.21657 -0.0104,-0.001 -0.16864,-1.03615 0.25185,-1.27595 0.39853,-0.29034 1.22742,0.17064 1.2032,0.19217 -0.0264,-0.0192 -0.0519,-0.94646 0.35068,-1.09934 0.24481,-0.22205 0.8515,-0.0374 1.03033,0.0948 z" inkscape:connector-curvature="0"/> - <path inkscape:connector-curvature="0" d="m 331.85675,162.02243 1.93544,5.9919 c 0,0 0.2505,1.05082 -0.055,1.40725 -0.30317,0.35371 -1.37171,0.26757 -1.37171,0.26757 0,0 0.41185,1.5678 -0.081,2.03434 -0.48636,0.4604 -2.00889,-0.0302 -2.00889,-0.0302 0,0 0.29857,2.10628 -0.42608,2.60581 -0.66474,0.45823 -2.37303,-0.48513 -2.37303,-0.48513 0,0 0.1843,1.78924 -0.43822,2.20841 -0.68398,0.46055 -2.42937,-0.46642 -2.42937,-0.46642 0,0 -0.0997,1.81595 -0.78489,2.15506 -0.68075,0.33691 -2.17531,-0.67858 -2.17531,-0.67858 0,0 -0.0978,1.80346 -0.78489,2.08566 -0.68161,0.27994 -2.00797,-0.92447 -2.00797,-0.92447 0,0 -0.19423,1.57078 -0.81051,1.80958 -0.65935,0.25549 -1.94526,-0.84626 -1.94526,-0.84626 0,0 -0.38234,1.52597 -1.02005,1.7147 -0.64315,0.19034 -1.8042,-0.89089 -1.8042,-0.89089 0,0 -0.61261,1.13972 -1.17391,1.26017 -0.5232,0.11227 -1.4798,-0.62228 -1.4798,-0.62228 0,0 -0.77548,1.1782 -1.3999,1.28632 -0.59249,0.10259 -1.66134,-0.70288 -1.66134,-0.70288 0,0 -0.8148,1.06007 -1.41643,1.15247 -0.63292,0.0972 -1.78527,-0.70937 -1.78527,-0.70937 0,0 -1.02107,1.06438 -1.68979,1.08277 -0.54989,0.0151 -1.43635,-0.81265 -1.43635,-0.81265 0,0 -0.34202,0.82342 -0.68009,0.76955 -0.25532,-0.0407 -0.30755,-0.71205 -0.30755,-0.71205 l -0.19939,-6.02293 c 0,0 -0.0822,-0.32166 0.032,-0.36489 0.13181,-0.0499 0.30666,0.29109 0.30666,0.29109 0,0 0.37519,-0.61693 0.6928,-0.6998 0.57869,0.27858 1.97754,0.7297 1.97754,0.7297 0,0 1.62702,-1.34485 2.2488,-1.76753 0.25782,0.13468 0.45497,0.27442 0.45497,0.27442 0,0 0.32661,-0.88038 0.71952,-0.99561 0.38258,-0.1122 1.11321,0.43747 1.11321,0.43747 0,0 0.11755,-1.00959 0.51286,-1.15604 0.43632,-0.16165 1.26076,0.59917 1.26076,0.59917 0,0 0.16167,-1.14536 0.61384,-1.32805 0.52368,-0.21159 1.57985,0.61252 1.57985,0.61252 0,0 0.29924,-1.48005 0.90107,-1.71051 0.64912,-0.24857 1.95558,0.72389 1.95558,0.72389 0,0 0.39983,-1.822 1.14808,-2.09134 0.7235,-0.26043 2.14422,0.85074 2.14422,0.85074 0,0 0.0897,-1.64291 0.71557,-1.9026 0.62134,-0.25782 1.83908,0.83103 1.83908,0.83103 0,0 0.12856,-1.6577 0.76143,-1.95615 0.62639,-0.29539 1.97329,0.65017 1.97329,0.65017 0,0 0.0226,-1.33772 0.51405,-1.61896 0.5029,-0.28781 1.69497,0.38567 1.69497,0.38567 0,0 -0.0649,-1.30643 0.39216,-1.62524 0.48727,-0.33985 1.77026,0.20627 1.77026,0.20627 0,0 -0.0995,-1.15508 0.30242,-1.43107 0.37563,-0.25793 1.34972,0.21657 1.34972,0.21657 0,0 -0.10379,-1.02804 0.25185,-1.27595 0.33319,-0.23226 1.2032,0.19217 1.2032,0.19217 0,0 0.03,-0.88689 0.35068,-1.09934 0.28751,-0.19049 1.03033,0.0948 1.03033,0.0948 z" class="shadow" id="path1311" sodipodi:nodetypes="ccacacacacacacacacacacacacaccacccccacacacacacacacacacacacacc"/> - <path inkscape:connector-curvature="0" d="m 331.97234,162.2961 c 1.04474,1.70444 1.78177,3.48654 1.74481,5.48322 -4.80523,6.73958 -20.24123,13.2466 -33.48864,14.05592 -0.33393,-1.8002 -0.45469,-3.6478 -0.19853,-5.57779 0.85173,-0.3414 1.73617,-0.50846 2.29254,-0.58193 0.359,0.079 0.73339,0.22405 0.73339,0.22405 0,0 0.51119,-0.41895 0.73589,-0.60563 19.93433,-5.50204 22.69697,-9.57458 28.18054,-12.99784 z" class="shadow" id="path1309" sodipodi:nodetypes="cccccccc"/> - <path sodipodi:nodetypes="cccccccc" id="path1108-7-2-3" class="shadow" d="m 331.97234,162.2961 c 0.90255,1.73604 1.6591,3.5138 1.74481,5.48322 -5.06089,6.56914 -20.09695,12.90821 -33.48864,14.05592 -0.2453,-1.81793 -0.33592,-3.67155 -0.19853,-5.57779 0.68574,-0.17541 1.64124,-0.41353 2.29254,-0.58193 0.359,0.079 0.73339,0.22405 0.73339,0.22405 0,0 0.51119,-0.41895 0.73589,-0.60563 20.41701,-5.32652 22.8144,-9.53188 28.18054,-12.99784 z" inkscape:connector-curvature="0"/> - </g> </g> <g inkscape:groupmode="layer" id="Head_Addon_" inkscape:label="Head_Addon_" style="display:inline"> <g inkscape:groupmode="layer" id="Ball_Gag" style="display:inline" inkscape:label="Ball_Gag"> @@ -2344,7 +2806,32 @@ <path inkscape:connector-curvature="0" d="m 342.96115,118.67127 c 0.45979,0.021 0.8827,-0.0289 1.21529,-0.18958 1.53727,-0.74281 3.03323,-2.9322 2.40771,-4.52082 -0.71179,-1.80773 -3.60623,-2.27465 -5.51166,-1.89536 -1.40856,0.28039 -3.22729,2.85458 -3.22729,2.85458 0,0 2.2737,-1.96194 3.65848,-1.96834 1.13473,-0.005 2.63547,0.51494 3.01263,1.58517 0.3643,1.03374 -0.38999,2.41692 -1.30703,3.01723 -0.11714,0.0767 -0.25304,0.13776 -0.40271,0.1856 0.094,0.43902 0.11723,0.51341 0.15458,0.93152 z" class="steel_piercing" id="XMLID_525_-3-13" sodipodi:nodetypes="csaacaascc"/> </g> </g> - <g inkscape:groupmode="layer" id="Hair_Fore_" style="display:inline;opacity:1" inkscape:label="Hair_Fore_"> + <g inkscape:groupmode="layer" id="Hair_Fore_" style="display:inline;opacity:1" inkscape:label="Hair_Fore_" sodipodi:insensitive="true"> + <g style="display:inline;opacity:1" inkscape:label="Hair_Fore_Shaved_Sides_Old_ copy" id="Hair_Fore_Shaved_Sides_Old_ copy" inkscape:groupmode="layer"> + <path d="m 251.4536,161.46413 c -0.60449,-4.42611 -0.24997,-12.28779 0.30818,-15.07977 1.04636,5.95887 1.94432,13.80117 6.2265,21.23041 -1.19495,-8.60885 -0.67387,-12.01072 0.0186,-19.46198 0.86192,9.97611 5.42918,18.65867 5.51006,18.63661 0.32905,-0.27421 -3.75649,-41.35792 1.52765,-51.85844 -1.56878,4.39592 -1.0455,11.21714 -0.60609,13.1602 1.20375,-10.65238 4.7302,-16.65981 7.51079,-21.2274 -1.77637,3.56329 -1.69686,6.73318 -1.67001,6.72423 2.7435,-5.08811 7.28199,-10.31751 7.72633,-10.59258 1.7754,-0.59821 3.34591,-1.34727 4.89709,-1.98766 -0.95374,1.0861 -3.34853,5.47746 -3.25001,5.4479 1.78878,-2.20362 7.30144,-6.25367 8.15415,-6.579777 3.90053,-0.46273 7.96311,-0.887567 12.31642,-1.006656 0.97516,-2.301021 -2.46173,-4.187764 -2.50051,-4.180713 -0.27758,0.05552 6.85578,4.540259 7.53473,4.526486 1.84048,0.505313 3.1683,0.684458 4.34712,0.85514 1.24026,-1.476422 -2.27202,-4.30682 -2.28964,-4.301785 -0.19916,0.06639 5.41691,5.533855 6.59453,5.794845 1.42736,0.7452 2.9587,1.6137 4.75884,2.58346 0.0658,-3.22911 -1.83468,-5.252331 -1.83468,-5.252331 -0.0323,0.01176 4.46505,7.566831 7.18097,9.628731 0.90909,1.10054 1.85278,2.25487 3.10638,3.42971 6.69495,-2.3189 4.87583,-1.67338 8.49073,-3.89429 -0.0976,-7.08281 -1.93991,-22.249963 -12.0468,-28.474671 -10.4101,-7.382931 -24.19082,-8.250906 -39.13439,-7.179564 -9.13827,0.104194 -22.81316,5.928461 -22.58648,5.960844 -0.0377,0 3.35418,0.551361 3.88899,3.271316 -6.1017,3.88449 -11.84387,8.929494 -18.57324,16.734688 0.15081,0.117293 5.5349,-1.164935 6.8477,-1.139988 -6.73703,8.463735 -7.99098,10.588605 -11.93124,23.066475 0.0592,0.037 3.52877,-4.70615 7.09562,-6.54615 -3.84137,8.38017 -4.56237,13.29232 -4.81341,23.73954 1.57001,-2.6181 3.26987,-5.2362 4.28595,-7.8543 -2.62033,10.90993 -0.90677,24.463 2.90918,31.82747 z" id="path2645" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" class="shadow"/> + <path class="hair" sodipodi:nodetypes="cccccccccscccccsccsccsccsacccccccccc" inkscape:connector-curvature="0" id="path2647" d="m 251.4536,161.46413 c -0.79085,-4.39505 -0.55717,-12.23659 0.30818,-15.07977 1.29154,5.92384 2.10812,13.77777 6.2265,21.23041 -1.31756,-8.60885 -1.05268,-12.01072 0.0186,-19.46198 1.36659,9.83847 5.51006,18.63661 5.51006,18.63661 0,0 -3.91407,-41.2266 1.52765,-51.85844 -1.2366,4.39592 -0.92934,11.21714 -0.60609,13.1602 0.84931,-10.65238 4.65052,-16.65981 7.51079,-21.2274 -1.48912,3.46754 -1.67001,6.72423 -1.67001,6.72423 2.22597,-4.94024 6.98807,-10.23353 7.72633,-10.59258 1.59694,-0.77667 3.23294,-1.46024 4.89709,-1.98766 -0.51004,0.95299 -3.25001,5.4479 -3.25001,5.4479 1.78878,-2.46118 7.30144,-6.466628 8.15415,-6.579777 4.10434,-0.59011 8.22897,-1.053727 12.31642,-1.006656 0.4394,-2.20361 -2.50051,-4.180713 -2.50051,-4.180713 0,0 7.16706,4.478004 7.53473,4.526486 1.45783,0.192233 2.90777,0.471295 4.34712,0.85514 0.89162,-1.37681 -2.28964,-4.301785 -2.28964,-4.301785 0,0 5.74154,5.425645 6.59453,5.794845 1.60466,0.69454 3.19224,1.54697 4.75884,2.58346 -0.32722,-3.09812 -1.83468,-5.252331 -1.83468,-5.252331 0,0 5.00744,7.369601 7.18097,9.628731 1.02248,1.06274 2.08404,2.17778 3.10638,3.42971 6.03412,-2.42904 4.49208,-1.73734 8.49073,-3.89429 -0.30579,-7.01342 -2.45311,-22.078898 -12.0468,-28.474671 -11.17283,-7.448526 -25.88161,-7.687309 -39.13439,-7.179564 -7.7809,0.298105 -22.58648,5.960844 -22.58648,5.960844 0,0 3.90736,0.551361 3.88899,3.271316 -5.71397,4.003792 -11.16561,9.138189 -18.57324,16.734688 0,0 5.17446,-1.44528 6.8477,-1.139988 -6.1633,8.463735 -7.63273,10.588605 -11.93124,23.066475 0,0 3.16197,-4.9354 7.09562,-6.54615 -3.52693,8.29441 -3.97798,13.13294 -4.81341,23.73954 l 4.28595,-7.8543 c -2.05322,10.79651 -0.67088,24.41582 2.90918,31.82747 z"/> + </g> + <g inkscape:groupmode="layer" id="Hair_Fore_Messy_Old_" style="display:inline;opacity:1" inkscape:label="Hair_Fore_Messy_Old_"> + <path sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" id="path1442" inkscape:connector-curvature="0" class="shadow" d="m 244.725,110.6 c -4.91846,6.58813 -5.1856,19.3396 -5.13712,19.34401 0.006,0.005 2.56339,-2.84496 5.86993,-6.52894 0.75589,5.71669 1.68662,10.0521 3.60878,14.55916 0.11709,2.53892 -2.03599,4.51642 -2.02049,4.51642 0.0327,0.0196 3.96931,1.5105 5.30212,-1.44385 3.89359,5.86164 3.74368,5.49258 6.92104,8.91681 2.58948,4.51811 1.16151,5.94226 0.0742,7.69745 2.95862,-0.0862 5.2003,-0.59653 4.92955,-2.54612 -0.1956,0.0757 2.64225,3.93947 6.493,4.8944 -1.84572,-7.65225 -4.28847,-15.205 -6.8328,-22.74081 2.57902,6.09202 6.90856,9.26463 12.38979,12.89733 -5.22073,-11.31877 -4.0711,-6.75613 -5.07824,-20.43879 0.4832,0.91527 2.7069,2.31536 2.7374,2.27875 -1.15106,-3.47165 -1.52721,-8.61107 -1.67008,-12.06397 2.13176,-5.16018 3.81014,-8.3053 3.80885,-8.30595 3.27603,6.01178 4.10173,7.73219 8.00158,12.52204 2.2126,1.9484 1.33782,8.25688 0.82769,8.51203 0.62691,0.25475 2.60308,-4.44715 1.07593,-6.55145 3.61917,5.28436 5.58656,7.51529 11.82174,8.78897 -3.57509,-3.20004 -4.37162,-4.07437 -5.00615,-8.27776 3.39223,5.296 7.54667,9.93259 13.44317,13.6813 -2.36666,-4.69377 -6.33548,-11.19644 -6.28172,-18.19703 2.26858,2.68175 6.04717,1.62933 9.10444,-1.29984 -4.65907,1.81471 -8.46193,-0.18817 -9.89206,-8.99767 -0.85238,-6.88284 -2.18852,-5.8924 -2.18852,-5.8924 5.76839,8.55204 7.96169,9.20988 13.10381,14.07105 0,0 -3.37401,-6.25345 -1.71994,-7.35053 4.12299,4.65094 7.58501,4.09563 10.07958,13.21086 -0.37167,5.08777 -2.13213,10.43054 -2.12429,10.43211 0.0702,0.0312 2.3388,-2.08088 3.29281,-2.68415 -0.25505,1.61443 0.13626,9.38515 0.30703,10.92985 0.13896,0.0811 6.82167,-14.16497 6.60844,-23.34903 0.16691,0.002 1.31098,5.08479 2.15859,11.72771 -0.75833,6.60148 -0.28415,6.83605 -2.80224,5.4551 1.33409,2.07559 1.77197,2.44696 2.76408,1.38848 -0.23707,5.64039 -2.57216,11.47522 -2.52258,11.47109 5.24035,-4.04557 10.85672,-13.08882 11.516,-21.36538 7.1891,-5.52505 10.39667,0.18055 10.39164,0.14784 -0.0883,-7.30975 -4.26628,-12.56804 -8.70585,-18.31152 2.90895,-3.32142 5.53645,1.87184 8.48574,4.08963 -1.08924,-7.89902 -3.58727,-14.21058 -9.8139,-16.879752 7.04716,-1.377896 7.56203,-5.402843 7.55169,-5.408413 0.0407,-0.06608 -3.17695,3.387169 -7.36385,0.171386 2.57035,-1.867935 8.78082,-2.021959 13.20489,-3.36606 -6.17494,-4.672645 -12.59125,-6.525266 -19.3725,-6.676498 1.12959,-2.656055 1.47528,-5.428608 0.32899,-9.110782 -1.80442,2.055679 -4.20714,2.33573 -8.82379,-0.361764 -0.40829,-2.1327 3.89219,-2.662655 7.25081,-3.691036 -6.48187,-2.927296 -12.57371,-3.306369 -18.91894,-2.792333 1.56128,-3.867046 -0.33279,-5.536181 -1.10333,-8.216298 -1.06454,3.469481 -2.5964,5.974105 -6.6912,5.948127 -4.03082,-1.130038 -8.68437,-1.824299 -14.61057,-1.656591 -8.79418,-0.4959 -16.89013,0.475898 -23.98768,5.165699 -2.79549,2.499404 -3.6049,-0.728385 -2.49029,-5.343061 -2.54744,3.246638 -4.92985,6.487126 -3.35167,9.848161 -3.51039,-0.684155 -5.05566,0.361144 -6.29022,0.908556 1.07283,1.236569 2.00574,2.598187 1.36187,5.104433 -5.67523,-0.229018 -5.17194,-5.221299 0.23501,-10.976254 -9.60454,3.830836 -12.46718,13.057135 -5.18285,20.796848 -2.14603,-1.980035 -8.35141,-1.55314 -18.49467,4.365873 11.81435,-1.519649 12.91806,-1.80674 15.86633,4.009522 -2.69378,-0.951133 -4.48937,0.711322 -4.491,0.713435 -0.0446,0.02866 1.87442,0.308723 3.31256,4.531752 -3.49059,-0.0554 -3.72984,-1.42541 -6.02498,-4.961831 -0.007,0.0056 -2.71636,7.969211 4.76449,12.689721 z"/> + <path d="m 244.725,110.6 c -4.39124,6.63606 -5.13712,19.34401 -5.13712,19.34401 0,0 2.1368,-3.1649 5.86993,-6.52894 0.8815,5.71669 1.9087,10.0521 3.60878,14.55916 0.36276,2.53892 -2.02049,4.51642 -2.02049,4.51642 0,0 3.27328,1.37131 5.30212,-1.44385 4.56892,6.4186 3.7172,4.9316 6.92104,8.91681 2.96839,4.43391 1.28395,5.91505 0.0742,7.69745 2.76068,-0.18519 4.82148,-0.78594 4.92955,-2.54612 -0.0787,0.0367 3.0246,3.81202 6.493,4.8944 l -6.8328,-22.74081 c 2.89723,5.94738 7.23848,9.11466 12.38979,12.89733 -5.28575,-11.33377 -4.68815,-6.89853 -5.07824,-20.43879 0.71664,0.63515 2.7374,2.27875 2.7374,2.27875 -1.30172,-3.47165 -1.93893,-8.61107 -1.67008,-12.06397 1.44012,-5.506 3.80885,-8.30595 3.80885,-8.30595 3.32454,5.99685 4.73239,7.53814 8.00158,12.52204 2.4016,1.9484 1.50201,8.25688 0.82769,8.51203 0.52186,0.21973 2.21352,-4.577 1.07593,-6.55145 4.20477,5.02816 5.92996,7.36505 11.82174,8.78897 -4.17531,-3.16669 -4.82789,-4.04902 -5.00615,-8.27776 3.79155,4.94105 7.63535,9.85376 13.44317,13.6813 -2.47716,-4.68149 -6.72174,-11.15352 -6.28172,-18.19703 1.95492,2.32888 5.90341,1.4676 9.10444,-1.29984 -4.89397,1.93216 -8.91847,0.0401 -9.89206,-8.99767 -1.33183,-6.56321 -2.18852,-5.8924 -2.18852,-5.8924 6.00807,8.20964 13.10381,14.07105 13.10381,14.07105 0,0 -3.92454,-6.32685 -1.71994,-7.35053 4.21475,4.57753 8.03273,3.73746 10.07958,13.21086 0.44229,5.25056 -2.12429,10.43211 -2.12429,10.43211 0,0 1.92837,-2.26329 3.29281,-2.68415 0.13585,1.4407 0.23907,9.33946 0.30703,10.92985 0,0 6.3016,-14.46835 6.60844,-23.34903 0.19418,-0.007 1.75387,4.93716 2.15859,11.72771 -0.27749,6.51532 -0.60917,7.16107 -2.80224,5.4551 1.13889,1.56808 1.68093,2.21026 2.76408,1.38848 0.34083,5.59223 -2.52258,11.47109 -2.52258,11.47109 5.19062,-4.07044 10.1678,-13.43328 11.516,-21.36538 7.04519,-6.46044 10.39164,0.14784 10.39164,0.14784 -0.49013,-7.30975 -5.08317,-12.56804 -8.70585,-18.31152 3.27119,-3.63191 5.74903,1.68963 8.48574,4.08963 -1.34658,-7.84183 -4.06535,-14.10434 -9.8139,-16.879752 6.56716,-1.636356 7.55169,-5.408413 7.55169,-5.408413 0,0 -3.43706,3.809856 -7.36385,0.171386 2.3664,-2.377804 8.65552,-2.335198 13.20489,-3.36606 -6.32302,-4.343578 -12.81485,-6.028368 -19.3725,-6.676498 0.64033,-2.753907 1.40149,-5.443367 0.32899,-9.110782 -1.85359,2.22779 -4.39099,2.979194 -8.82379,-0.361764 -0.60149,-2.470796 3.75401,-2.904468 7.25081,-3.691036 -6.59977,-2.691505 -12.7835,-2.886794 -18.91894,-2.792333 1.14102,-3.867046 -0.46186,-5.536181 -1.10333,-8.216298 -0.88139,3.579369 -2.36411,6.113479 -6.6912,5.948127 -4.3431,-0.942669 -9.19501,-1.517915 -14.61057,-1.656591 -8.87477,-0.227256 -17.05335,1.019963 -23.98768,5.165699 -2.88716,2.526905 -4.05267,-0.594053 -2.49029,-5.343061 -2.45723,3.28272 -4.73406,6.565441 -3.35167,9.848161 -4.19343,-0.26382 -5.06869,0.369162 -6.29022,0.908556 1.32459,1.110689 2.34072,2.430696 1.36187,5.104433 -6.01749,-0.229018 -5.27195,-5.221299 0.23501,-10.976254 -9.52886,3.818223 -11.90858,12.964035 -5.18285,20.796848 -2.06874,-1.55492 -8.3139,-1.346843 -18.49467,4.365873 11.89037,-1.861722 12.95731,-1.983362 15.86633,4.009522 -3.26245,-0.211865 -4.491,0.713435 -4.491,0.713435 0,0 2.56106,-0.132686 3.31256,4.531752 -3.73067,0.0646 -3.96113,-1.30976 -6.02498,-4.961831 0,0 -2.12454,7.484991 4.76449,12.689721 z" class="hair" inkscape:connector-curvature="0" id="path1508" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccc"/> + </g> + <g inkscape:label="Hair_Fore_Messy_WIP_" style="display:inline;opacity:1" id="Hair_Fore_Messy_WIP_" inkscape:groupmode="layer"> + <path sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc" id="path3414" inkscape:connector-curvature="0" class="hair" d="m 252.24794,92.113797 c -0.96052,2.264012 -5.64352,9.839123 -16.09966,13.658823 0,0 4.03128,0.23574 8.29456,-2.16342 -5.07301,3.43365 -5.36534,15.63575 -3.29992,23.13523 0.6688,-5.8483 3.86138,-8.85359 9.6255,-8.52934 6.00939,18.12052 13.3869,23.40121 10.13527,40.20411 13.55475,-21.08915 -0.46211,-33.033 3.8181,-48.75089 -2.67998,11.78096 4.12804,15.21139 21.11279,16.05052 -19.55073,-5.22411 -18.28832,-12.92979 -11.67742,-20.11928 6.89861,4.63328 9.47546,7.25874 8.13844,18.00809 2.74298,-7.3012 3.91426,-13.50984 -0.0264,-20.05126 4.31985,-0.80694 8.80138,-1.22596 13.24637,-1.23831 0.46387,8.28136 -0.58619,15.42529 8.78124,18.61095 -7.79939,-3.75053 -4.51784,-11.06853 0.20557,-18.06203 0.1274,7.94959 7.31115,13.70771 7.31115,13.70771 0,0 -2.19736,-4.54038 3.58414,-11.24064 0.94867,6.06116 3.59301,15.47195 11.10138,14.94986 -5.99502,-2.23809 -4.9839,-7.62547 -3.57123,-10.64322 2.92323,2.28949 5.70019,-0.0882 8.18901,2.82006 -5.94376,10.16121 4.26425,14.57383 -1.71924,31.94639 11.99178,-16.86883 9.09871,-23.63763 9.35597,-21.74169 -0.44553,9.53964 7.95963,9.19498 14.6621,24.40815 -2.68582,-15.93318 -11.66307,-30.24706 -1.55693,-38.77971 3.52936,2.80629 0.30694,8.06496 0.30694,8.06496 3.0793,-4.29295 5.21747,-10.29156 -1.22236,-18.914898 2.43101,0.420037 5.67703,-1.666329 5.67703,-1.666329 -0.0718,0.506663 -9.67706,-0.79265 -10.71289,-10.448854 -7.39693,-8.329221 -14.1874,-6.687268 -20.54471,-8.360021 6.09505,-0.183064 8.51686,-2.638289 8.51686,-2.638289 -18.10109,1.328173 -27.5723,-11.76133 -44.13502,-4.661263 -7.96307,-0.184056 -14.09272,0.447273 -19.27144,5.970034 -4.5012,0.916506 -10.26256,3.513569 -12.21377,9.185024 -0.94277,0.934117 -7.13478,3.327513 -14.45192,11.693119 4.28041,-3.42356 9.41938,-4.403586 8.44052,-4.403586 z"/> + <path inkscape:connector-curvature="0" d="m 295.51306,103.64371 c 2.3227,-16.110028 -5.82091,-11.754894 -6.02475,-2.93917 2.84313,-13.395015 7.10945,-6.548939 6.02475,2.93917 z" class="shadow" id="path3416" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 304.60384,104.37846 c 1.16709,-5.314038 0.6396,-8.892601 -1.2245,-11.380268 1.5508,2.855719 1.53615,6.246258 1.2245,11.380268 z" class="shadow" id="path3418" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 315.46553,105.3608 c 1.22529,-4.86697 -0.38389,-14.274987 -3.72158,-16.839584 2.79959,2.543923 4.6345,12.137494 3.72158,16.839584 z" class="shadow" id="path3420" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 322.69521,109.66042 c 1.16709,-5.31404 4.33997,-14.89953 1.22977,-17.938973 2.78382,4.241823 -0.36021,12.804963 -1.22977,17.938973 z" class="shadow" id="path3422" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 282.27425,103.87304 c -3.39298,-16.04874 4.65865,-14.431521 7.37221,-5.038411 -3.69836,-14.422901 -11.60298,-6.322749 -7.37221,5.038411 z" class="shadow" id="path3424" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 274.3356,105.99359 c -2.97579,-4.97438 -0.89724,-12.899113 0.30219,-15.509686 -0.88465,2.952941 -2.73651,10.275476 -0.30219,15.509686 z" class="shadow" id="path3426" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 264.7999,110.45778 c -1.44713,-5.37608 0.75769,-10.662914 2.68627,-12.989398 -1.72191,2.716208 -3.53053,7.457428 -2.68627,12.989398 z" class="shadow" id="path3428" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 325.32609,76.971518 c -6.92134,0.855181 -14.44975,-1.043112 -17.31279,-2.673799 3.37003,1.488995 10.2241,3.048788 17.31279,2.673799 z" class="shadow" id="path3430" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 351.01339,97.388519 c -6.32981,-2.356151 -11.17982,-7.254274 -12.37042,-9.867335 1.71114,2.720387 6.24792,7.040678 12.37042,9.867335 z" class="shadow" id="path3432" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 339.3475,97.27368 c 6.50277,2.603673 11.4853,8.01636 12.70844,10.90393 -1.7579,-3.00618 -6.41864,-7.78033 -12.70844,-10.90393 z" class="shadow" id="path3434" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 338.87563,124.67924 c 1.16709,-5.31403 1.93581,-16.93594 0.0717,-19.4236 1.5508,2.85571 0.23994,14.28959 -0.0717,19.4236 z" class="shadow" id="path3436" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 258.40342,95.09793 c -3.73148,4.650551 -10.50695,7.84844 -13.9565,8.46679 3.64695,-1.01102 9.65373,-4.033272 13.9565,-8.46679 z" class="shadow" id="path3438" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 252.1954,92.260874 c 3.23743,-2.668217 10.9756,-3.707486 13.96841,-4.062259 -3.16408,0.580065 -10.23533,1.518563 -13.96841,4.062259 z" class="shadow" id="path3440" sodipodi:nodetypes="ccc"/> + <path inkscape:connector-curvature="0" d="m 250.79165,118.15306 c -0.68711,-5.46806 2.16637,-11.25162 4.40846,-13.39835 -2.09113,2.55187 -4.47455,7.82715 -4.40846,13.39835 z" class="shadow" id="path3442" sodipodi:nodetypes="ccc"/> + </g> <g inkscape:groupmode="layer" id="Hair_Fore_Shaved_Sides" inkscape:label="Hair_Fore_Shaved_Sides" style="display:inline;opacity:1"> <path class="shadow" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" id="path1796" d="m 309.69307,97.65617 c -17.4674,-1.204639 -25.4308,1.644362 -36.16819,4.11569 -0.68003,0.0694 -4.23105,0.97759 -4.61142,0.86607 1.30915,-0.0859 1.38463,-0.84993 1.79541,-1.23573 -0.59338,-0.0515 -3.18368,1.17982 -4.30919,1.05469 0.71359,-0.17669 0.91897,-1.36908 0.90981,-1.42157 -0.64987,-0.005 -2.13797,1.39599 -4.39802,1.39922 0.56662,-0.29106 -0.59356,-0.45916 -1.61309,-0.36171 -0.33267,-1.17402 -1.77827,-10.716878 -1.66288,-10.716878 0.0411,-0.02351 1.41393,1.33787 2.62874,2.036298 0.0465,-1.356947 -0.65787,-6.95987 -0.0834,-8.238226 0.0131,1.726882 0.98178,2.683342 1.84777,3.003499 0.34939,-1.354546 1.70899,-8.504441 2.69342,-9.792634 -0.68727,1.361666 0.35317,3.283134 1.05233,3.910535 0.85309,-1.275177 4.47656,-7.895821 5.99977,-9.005718 -0.68317,0.865843 -0.24969,2.360332 0.45554,3.339084 1.89973,-1.69551 7.33581,-6.910625 9.98442,-7.73019 -1.29807,0.670437 -1.42423,2.480578 -1.29445,3.568105 2.01406,-0.907847 11.23667,-5.245425 13.94334,-5.514426 -1.61184,0.466575 -2.21351,1.645167 -2.07998,3.218871 3.47306,-0.550899 16.27769,-1.943806 19.86634,-1.225144 -2.87382,0.102291 -3.91037,1.662458 -4.25189,2.643461 3.3576,0.307421 18.52325,4.29018 20.85226,5.605272 -3.16427,-0.704476 -7.36201,-0.311871 -7.82812,0.392727 1.72391,0.815389 13.17558,7.834721 14.09859,9.103109 -1.52344,-1.055356 -5.21954,-1.913664 -7.23933,-1.815917 2.09269,2.60075 9.00221,17.188672 9.32433,20.682252 -0.58176,-2.10303 -3.71936,-7.150209 -5.66374,-7.520508 -0.30151,0.242836 0.22145,1.465174 0.55147,1.942155 -1.44561,-0.267194 -6.40156,-3.13381 -6.88678,-4.034918 0.35373,0.637004 0.58313,1.430424 1.22174,1.654983 -1.35757,0.235461 -5.14516,-0.191863 -6.72537,-1.350775 -0.0542,0.247243 0.87189,2.273199 2.1583,2.389433 -1.05732,0.276563 -7.27001,-0.738695 -9.7834,-1.533585 0.01,0.199902 0.60945,1.172429 2.03967,1.298771 -2.64339,0.629993 -4.41634,0.07421 -6.82398,-0.726287 z"/> <path d="m 309.69307,97.65617 c -17.37586,-2.120034 -25.41574,1.493793 -36.16819,4.11569 -0.47841,-0.0516 -4.1493,0.92854 -4.61142,0.86607 1.42837,-0.0859 1.55789,-0.84993 1.79541,-1.23573 -0.87421,-0.12174 -3.37014,1.13321 -4.30919,1.05469 0.82987,-0.19607 1.1481,-1.40727 0.90981,-1.42157 -0.76096,-0.0457 -2.62442,1.2191 -4.39802,1.39922 0.94231,-0.45804 -0.466,-0.51585 -1.61309,-0.36171 0,-1.17402 -1.66288,-10.716878 -1.66288,-10.716878 0,0 1.08606,1.525225 2.62874,2.036298 0.30509,-1.356947 -0.58608,-6.95987 -0.0834,-8.238226 -0.0568,1.740861 0.77245,2.725209 1.84777,3.003499 0.64286,-1.39647 1.8062,-8.518328 2.69342,-9.792634 -0.74512,1.390593 0.0862,3.416617 1.05233,3.910535 1.07459,-1.275177 4.66705,-7.895821 5.99977,-9.005718 -0.72972,0.904639 -0.52345,2.588469 0.45554,3.339084 2.12596,-1.393868 7.45598,-6.750392 9.98442,-7.73019 -1.37352,0.683011 -1.68065,2.523315 -1.29445,3.568105 2.25579,-0.756764 11.46628,-5.10192 13.94334,-5.514426 -1.6692,0.482964 -2.53104,1.73589 -2.07998,3.218871 3.50849,-0.232022 16.3006,-1.737588 19.86634,-1.225144 -2.92418,-0.06557 -4.03046,1.262169 -4.25189,2.643461 2.70475,0.699132 18.35415,4.391638 20.85226,5.605272 -3.19823,-0.908232 -7.38666,-0.459771 -7.82812,0.392727 1.30998,0.96591 12.95417,7.915235 14.09859,9.103109 -1.63457,-1.134733 -5.85679,-2.368843 -7.23933,-1.815917 1.66096,2.654716 8.7825,17.216132 9.32433,20.682252 -0.57672,-2.11564 -3.61976,-7.399215 -5.66374,-7.520508 -0.48776,0.296049 -0.004,1.529588 0.55147,1.942155 -1.14866,-0.394459 -6.30994,-3.173076 -6.88678,-4.034918 0.24198,0.637004 0.40367,1.430424 1.22174,1.654983 -1.04773,0.04956 -4.86607,-0.359315 -6.72537,-1.350775 -0.14014,0.284063 0.57145,2.401961 2.1583,2.389433 -0.8921,0.15855 -7.02602,-0.912975 -9.7834,-1.533585 -0.17058,0.299994 0.27003,1.360996 2.03967,1.298771 -2.4806,0.467202 -4.17031,-0.171814 -6.82398,-0.726287 z" id="path3172-2" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc" class="hair"/> @@ -2402,6 +2889,6 @@ <path d="m 266.34659,144.54138 -2.41338,-7.27285 c 4.6902,-8.38077 4.88067,-17.02624 5.73537,-25.63263 21.08768,5.4249 32.45085,-3.58963 46.25533,-8.97917 4.54626,10.24925 10.74238,20.54574 18.1349,30.66532 14.49381,-20 17.75545,-33.06365 10.58856,-47.682879 -9.23347,-18.83469 -36.15618,-29.840266 -56.91699,-26.841732 -19.15897,2.767177 -39.46024,19.662162 -43.36963,38.621071 -3.50051,16.976 -0.19702,37.87287 21.98584,47.12287 z" class="hair" inkscape:connector-curvature="0" id="path1558" sodipodi:nodetypes="cccccaaac"/> </g> </g> - <g inkscape:groupmode="layer" id="Notes_" inkscape:label="Notes_" style="display:inline"><text xml:space="preserve" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" x="-187.58824" y="1041.6471" id="text4352"><tspan sodipodi:role="line" id="tspan4354" x="-187.58824" y="1041.6471" style="font-size:17.5px;line-height:1.25">prndev's notes:</tspan><tspan sodipodi:role="line" x="-187.58824" y="1063.5221" id="tspan4356" style="font-size:17.5px;line-height:1.25">I work with Inkscape. I do not know how Illustrator behaves.</tspan><tspan sodipodi:role="line" x="-187.58824" y="1085.3971" id="tspan4358" style="font-size:17.5px;line-height:1.25">All Inkscape Layers are SVG groups.</tspan><tspan sodipodi:role="line" x="-187.58824" y="1107.2721" id="tspan4360" style="font-size:17.5px;line-height:1.25">Inkscape Layer names should be unique.</tspan><tspan sodipodi:role="line" x="-187.58824" y="1129.1471" id="tspan4362" style="font-size:17.5px;line-height:1.25">Inkscape Layer names should be the same as the corresponding SVG group ID (use provided fixup tool to be sure).</tspan><tspan sodipodi:role="line" x="-187.58824" y="1151.0221" id="tspan4364" style="font-size:17.5px;line-height:1.25">All changable style (most notably fill) should be defined in a class.</tspan><tspan sodipodi:role="line" x="-187.58824" y="1172.8971" id="tspan4366" style="font-size:17.5px;line-height:1.25">All conflicting attribute style should be removed (use provided fixup tool to be sure).</tspan><tspan sodipodi:role="line" x="-187.58824" y="1194.7721" id="tspan4368" style="font-size:17.5px;line-height:1.25">All groups with IDs NOT ending in underscore "_", starting with "g" or "XMLID" are exported into separate files.</tspan><tspan sodipodi:role="line" x="-187.58824" y="1216.6471" id="tspan4060" style="font-size:17.5px;line-height:1.25">A single quote ' breaks embedding. Use them to include Twine variables (see README for details).</tspan><tspan sodipodi:role="line" x="-187.58824" y="1238.5221" id="tspan4370" style="font-size:17.5px;line-height:1.25">Original art credit goes to Nov-X.</tspan></text> + <g inkscape:groupmode="layer" id="Notes_" inkscape:label="Notes_" style="display:inline"><text xml:space="preserve" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" x="-183.58824" y="1037.6471" id="text4352"><tspan sodipodi:role="line" id="tspan4354" x="-183.58824" y="1037.6471" style="font-size:17.5px;line-height:1.25">prndev's notes:</tspan><tspan sodipodi:role="line" x="-183.58824" y="1059.5221" id="tspan4356" style="font-size:17.5px;line-height:1.25">I work with Inkscape. I do not know how Illustrator behaves.</tspan><tspan sodipodi:role="line" x="-183.58824" y="1081.3971" id="tspan4358" style="font-size:17.5px;line-height:1.25">All Inkscape Layers are SVG groups.</tspan><tspan sodipodi:role="line" x="-183.58824" y="1103.2721" id="tspan4360" style="font-size:17.5px;line-height:1.25">Inkscape Layer names should be unique.</tspan><tspan sodipodi:role="line" x="-183.58824" y="1125.1471" id="tspan4362" style="font-size:17.5px;line-height:1.25">Inkscape Layer names should be the same as the corresponding SVG group ID (use provided fixup tool to be sure).</tspan><tspan sodipodi:role="line" x="-183.58824" y="1147.0221" id="tspan4364" style="font-size:17.5px;line-height:1.25">All changable style (most notably fill) should be defined in a class.</tspan><tspan sodipodi:role="line" x="-183.58824" y="1168.8971" id="tspan4366" style="font-size:17.5px;line-height:1.25">All conflicting attribute style should be removed (use provided fixup tool to be sure).</tspan><tspan sodipodi:role="line" x="-183.58824" y="1190.7721" id="tspan4368" style="font-size:17.5px;line-height:1.25">All groups with IDs NOT ending in underscore "_", starting with "g" or "XMLID" are exported into separate files.</tspan><tspan sodipodi:role="line" x="-183.58824" y="1212.6471" id="tspan4060" style="font-size:17.5px;line-height:1.25">A single quote ' breaks embedding. Use them to include Twine variables (see README for details).</tspan><tspan sodipodi:role="line" x="-183.58824" y="1234.5221" id="tspan4370" style="font-size:17.5px;line-height:1.25">Original art credit goes to Nov-X.</tspan></text> </g> </svg> diff --git a/src/art/vector_revamp/Vector_Revamped_Control_.tw b/src/art/vector_revamp/Vector_Revamped_Control_.tw index ee16bee53baab61cd085cc515f40a82f1682871e..1131ad3494f27a37c52e9a5a6e594c5966a53c9c 100644 --- a/src/art/vector_revamp/Vector_Revamped_Control_.tw +++ b/src/art/vector_revamp/Vector_Revamped_Control_.tw @@ -20,6 +20,11 @@ <<print "<style>" + _revampedVectorArtControl.StylesCss + "</style>" >> <<set _revampedArtLayers to _revampedVectorArtControl.Layers>> <<set _art_transform = _revampedVectorArtControl.artTransform>> +<<set _boob_right_art_transform = _revampedVectorArtControl.boobRightArtTransform>> +<<set _boob_left_art_transform = _revampedVectorArtControl.boobLeftArtTransform>> + +<<set _boob_outfit_art_transform = _revampedVectorArtControl.boobOutfitArtTransform>> + <<set _art_pussy_tattoo_text = _revampedVectorArtControl.pubicTattooText >> <<for _i to 0; _i lt _revampedArtLayers.length; _i++>> <<include _revampedArtLayers[_i]>> diff --git a/src/art/vector_revamp/layers/Arm_Down_Hair_Neat.tw b/src/art/vector_revamp/layers/Arm_Down_Hair_Neat.tw index a76b1dbf76b1a7d2f1dc78d10be5b7e97a4227d1..a8d9368be813a57b0eb3734db414e40b814b467c 100644 --- a/src/art/vector_revamp/layers/Arm_Down_Hair_Neat.tw +++ b/src/art/vector_revamp/layers/Arm_Down_Hair_Neat.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Arm_Down_Hair_Neat [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccc" id="path3325" class="armpit_hair" d="m 360.64122,234.43118 c -1.78847,-3.72504 -3.61047,-12.89756 -3.19383,-24.4475 1.19043,6.54449 2.6192,20.32885 3.19383,24.4475 z"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 354.05629,228.07423 c 1.39185,-4.39624 2.09719,-9.60653 4.00065,-14.414 0.54189,4.42694 0.7503,4.99021 0.86324,6.92685 -1.39276,2.16548 -2.43234,4.46572 -4.86389,7.48715 z" class="armpit_hair" id="XMLID_590_-04-8-9-4-9-6" sodipodi:nodetypes="cccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Arm_Hair.tw b/src/art/vector_revamp/layers/Arm_Hair.tw index ad422060e7f555fcf7c4f8931db9bbed1e49d2c5..4ca976b6e5d475c743d8ee981dde436604fa0321 100644 --- a/src/art/vector_revamp/layers/Arm_Hair.tw +++ b/src/art/vector_revamp/layers/Arm_Hair.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Arm_Hair [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"style="display:inline" inkscape:label="Arm_Down_Hair_Neat" id="Arm_Down_Hair_Neat" inkscape:groupmode="layer"><path sodipodi:nodetypes="ccc" id="path3325" class="armpit_hair" d="m 360.64122,234.43118 c -1.78847,-3.72504 -3.61047,-12.89756 -3.19383,-24.4475 1.19043,6.54449 2.6192,20.32885 3.19383,24.4475 z"/></g><g transform="'+_art_transform+'"inkscape:label="Arm_Down_Hair_Bushy" id="Arm_Down_Hair_Bushy" inkscape:groupmode="layer" style="display:inline"><path sodipodi:nodetypes="cccccccccccccccccccccc" id="path1099" class="armpit_hair" d="m 360.24347,231.86792 0.62233,4.65711 c 0.55578,0.2551 -7.99816,5.95284 -3.27038,-0.65737 -3.09359,5.37627 2.92909,-0.003 2.17022,-2.14111 -1.53423,0.28812 -5.71284,3.52639 -5.25133,8.12415 -0.98363,-3.5058 2.9824,-9.77272 4.83736,-11.83806 -0.18244,1.45667 -8.26869,-0.51242 -3.88775,5.73641 -5.3105,-5.44303 2.41392,-7.14507 3.39202,-9.43961 0.45356,1.56568 -1.24519,3.2832 -7.4966,4.08414 3.46772,-0.44603 7.11012,-4.45071 7.06734,-6.77892 -2.40629,-0.74554 -6.1703,2.17421 -5.81219,4.21371 -0.25259,-2.66244 3.06309,-5.85365 5.67489,-7.08339 -0.9377,1.02012 -4.71933,0.89387 -3.06732,-2.07507 -0.83642,1.71326 1.4865,2.34105 2.34002,-0.14383 -1.70746,-1.70745 -3.52581,-1.63585 -3.89757,0.0658 0.97561,-3.83828 3.37716,-1.67017 4.2302,-1.64816 -0.32331,-0.41565 -0.17879,-0.76893 -0.0751,-1.12765 -2.01181,0.29687 -4.33853,-2.08468 -4.3297,-2.13619 1.72132,0.72587 4.20901,1.47818 4.21081,0.17288 0,0 -0.11184,-2.03629 -0.16497,-3.11735 1.19043,6.54449 2.70769,21.13294 2.70769,21.13294 z"/></g><g transform="'+_art_transform+'"inkscape:groupmode="layer" id="Arm_Up_Hair_Neat" inkscape:label="Arm_Up_Hair_Neat" style="display:inline"><path d="m 361.07872,235.74368 c -0.94878,-8.80737 -2.85473,-24.59569 2.37908,-28.8536 2.1627,9.19615 -2.2466,10.90217 -2.37908,28.8536 z" class="armpit_hair" id="XMLID_590_-04-8-9-4-9" sodipodi:nodetypes="ccc"/></g><g transform="'+_art_transform+'"style="display:inline" inkscape:groupmode="layer" id="Arm_Up_Hair_Bushy" inkscape:label="Arm_Up_Hair_Bushy"><path d="m 360.53365,236.48083 c -0.55578,0.2551 1.01548,-0.63209 3.04941,3.3643 -0.97228,-3.1532 -2.70812,-4.02467 -1.94925,-6.16278 1.53423,0.28812 5.80123,-1.42335 5.33972,3.17441 0.98363,-3.5058 -3.07079,-4.82298 -4.92575,-6.88832 0.18244,1.45667 11.2297,-1.04275 6.84876,5.20608 5.3105,-5.44303 -2.41392,-7.14507 -3.39202,-9.43961 -0.45356,1.56568 -1.45066,-1.04783 4.80075,-0.24689 -3.46772,-0.44603 -8.11396,-3.23134 -7.33132,-5.42448 2.51841,0.0603 4.53675,2.08298 3.54725,3.90196 1.08804,-2.44307 -0.41883,-4.58012 -2.50244,-6.5782 0.56364,1.26579 4.18828,2.35147 3.56874,-0.98917 0.24672,1.8905 -2.15515,1.74514 -2.17213,-0.88218 2.16264,-1.07417 3.58587,0.37498 2.70189,1.87578 1.89339,-3.4784 -1.34178,-3.52056 -1.98242,-4.08425 0.51967,-0.0851 0.6538,-0.44246 0.82158,-0.77605 1.2738,1.58522 4.59918,1.41997 4.62772,1.37618 -1.75593,-0.63763 -4.09192,-1.77678 -3.206,-2.73539 0,0 -0.30162,-0.93139 0.47217,-1.6882 -1.17562,0.12647 -1.50552,0.39685 -2.29732,1.39659 0.43889,-0.74403 0.22952,-1.36458 0.27651,-2.03396 -0.19789,1.53736 -0.94588,2.69608 -2.74427,3.1318 0.29183,-1.13068 -0.21459,-1.42216 -0.71523,-1.71972 0.596,1.32079 -0.14863,1.44588 -1.07278,1.41086 -0.87655,-1.71928 0.22738,-2.55256 0.83323,-3.60866 -1.93061,0.6298 -3.38367,1.69073 -3.81887,3.67055 -0.70564,-0.81459 -0.56273,-1.73524 -0.459,-2.651 -0.65736,0.85385 -1.14327,1.8183 -1.15811,3.08668 l 1.88893,15.25586 c 0,0 1.15763,7.50544 0.95025,9.05781 z" class="armpit_hair" id="path3321" sodipodi:nodetypes="cccccccccccccccccccccccccccccc"/></g></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g style="display:inline" inkscape:label="Arm_Down_Hair_Neat" id="Arm_Down_Hair_Neat" inkscape:groupmode="layer"><path d="m 354.05629,228.07423 c 1.39185,-4.39624 2.09719,-9.60653 4.00065,-14.414 0.54189,4.42694 0.7503,4.99021 0.86324,6.92685 -1.39276,2.16548 -2.43234,4.46572 -4.86389,7.48715 z" class="armpit_hair" id="XMLID_590_-04-8-9-4-9-6" sodipodi:nodetypes="cccc"/></g><g inkscape:label="Arm_Down_Hair_Bushy" id="Arm_Down_Hair_Bushy" inkscape:groupmode="layer" style="display:inline"><path sodipodi:nodetypes="cccccccccccccccccccccc" id="path1099" class="armpit_hair" d="m 360.24347,231.86792 0.62233,4.65711 c 0.55578,0.2551 -7.99816,5.95284 -3.27038,-0.65737 -3.09359,5.37627 2.92909,-0.003 2.17022,-2.14111 -1.53423,0.28812 -5.71284,3.52639 -5.25133,8.12415 -0.98363,-3.5058 2.9824,-9.77272 4.83736,-11.83806 -0.18244,1.45667 -8.26869,-0.51242 -3.88775,5.73641 -5.3105,-5.44303 2.41392,-7.14507 3.39202,-9.43961 0.45356,1.56568 -1.24519,3.2832 -7.4966,4.08414 3.46772,-0.44603 7.11012,-4.45071 7.06734,-6.77892 -2.40629,-0.74554 -6.1703,2.17421 -5.81219,4.21371 -0.25259,-2.66244 3.06309,-5.85365 5.67489,-7.08339 -0.9377,1.02012 -4.71933,0.89387 -3.06732,-2.07507 -0.83642,1.71326 1.4865,2.34105 2.34002,-0.14383 -1.70746,-1.70745 -3.52581,-1.63585 -3.89757,0.0658 0.97561,-3.83828 3.37716,-1.67017 4.2302,-1.64816 -0.32331,-0.41565 -0.17879,-0.76893 -0.0751,-1.12765 -2.01181,0.29687 -4.33853,-2.08468 -4.3297,-2.13619 1.72132,0.72587 4.20901,1.47818 4.21081,0.17288 0,0 -0.11184,-2.03629 -0.16497,-3.11735 1.19043,6.54449 2.70769,21.13294 2.70769,21.13294 z"/></g><g inkscape:groupmode="layer" id="Arm_Up_Hair_Neat" inkscape:label="Arm_Up_Hair_Neat" style="display:inline"><path d="m 353.82758,228.26371 c 2.63427,-8.3205 2.8094,-19.55701 13.30247,-25.45963 -2.25337,1.88046 -2.3103,2.56478 -2.3103,2.56478 0,0 3.92159,-2.74342 6.0617,-3.75361 -2.13734,1.00888 -7.90174,6.73287 -7.90174,6.73287 0,0 5.25855,-3.57777 7.96714,-4.85629 -2.65821,1.36333 -7.78621,6.57323 -7.78621,6.57323 0,0 5.96459,-4.60503 10.05437,-5.34594 -4.10883,0.74436 -10.03306,6.87998 -10.03306,6.87998 0,0 6.35061,-4.58166 9.43389,-4.32646 -3.08434,-0.25529 -10.12328,6.20939 -10.12328,6.20939 0,0 6.98773,-5.58977 9.97576,-4.51804 -2.94589,-1.05661 -10.71107,6.34907 -10.71107,6.34907 0,0 6.61595,-4.68536 9.63061,-3.60408 -3.02656,-1.08555 -10.21842,5.09377 -10.21842,5.09377 0,0 0.60053,-0.37366 1.37241,-0.41639 -4.47366,3.77416 -4.63821,6.81245 -8.71427,11.87735 z" class="armpit_hair" id="XMLID_590_-04-8-9-4-9" sodipodi:nodetypes="ccccccccccccccccc"/></g><g style="display:inline" inkscape:groupmode="layer" id="Arm_Up_Hair_Bushy" inkscape:label="Arm_Up_Hair_Bushy"><path d="m 354.20431,225.28332 c -0.61112,0.0223 1.18028,-0.1941 1.52525,4.27681 0.31193,-3.28492 -0.95671,-4.75569 0.56442,-6.43901 1.30627,0.85471 5.90336,0.91135 3.71313,4.98017 2.25343,-2.86011 -0.98533,-5.63205 -1.90592,-8.25103 -0.39041,1.41519 10.77036,3.34558 4.32719,7.43534 8.5248,-4.57088 -5.60608,-14.3046 5.01736,-8.4047 -3.0312,-1.74236 -3.14502,-4.92117 -0.87788,-5.45267 1.31482,2.14877 0.7096,4.94138 -1.3553,5.0962 2.64273,-0.41036 3.62136,-2.83526 4.1705,-5.66937 -0.75797,1.1599 0.29507,4.79417 2.76613,2.46231 -1.45473,1.23233 -2.63489,-0.86465 -0.43645,-2.30346 2.07516,1.23475 1.62919,3.21634 -0.11115,3.28731 3.94931,-0.29507 2.23064,-3.03628 2.35691,-3.88021 0.67358,1.25061 0.49749,1.49403 1.53676,2.24415 -1.02483,-1.3448 0.3076,-2.81529 0.72915,-3.20865 0.86312,-0.0346 1.27103,-0.54702 1.85896,-0.87047 -0.6731,0.32102 -1.5432,-0.54456 -2.31305,-1.72962 -0.2374,-0.36546 0.98951,-1.49356 1.11803,-2.66756 -0.68914,1.5688 -2.21073,0.66309 -2.37984,0.26276 -0.23543,-0.55727 -0.41307,-1.06893 -0.50614,-1.45692 1.13002,0.29438 1.42264,-0.21138 1.72133,-0.71135 -1.32214,0.59302 -1.44554,-0.15189 -1.40844,-1.07596 1.72125,-0.87267 2.55204,0.23313 3.60677,0.84136 -0.62544,-1.93202 -1.6831,-3.38747 -3.66192,-3.82713 0.81617,-0.7038 1.73649,-0.55881 2.65202,-0.45302 -0.85236,-0.65929 -1.81572,-1.14737 -3.08406,-1.16507 -3.6659,0.85993 -12.95933,3.61857 -17.02603,17.95061 0,0 -1.8106,7.37519 -2.59771,8.72919 z" class="armpit_hair" id="path3321" sodipodi:nodetypes="cccccccccccccccccscscccccccccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Arm_Left_High.tw b/src/art/vector_revamp/layers/Arm_Left_High.tw index 0900a7eed1477c4e5b907ac627857d075e6b1ff1..0eb3466136c6ccab56ca04fc9c2e39b73533a0b2 100644 --- a/src/art/vector_revamp/layers/Arm_Left_High.tw +++ b/src/art/vector_revamp/layers/Arm_Left_High.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Arm_Left_High [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccccccccccccccccscccccccc" id="path3228" class="shadow" d="m 416.96515,136.81346 c 32.11702,-0.95542 12.44417,5.83226 -8.86061,-0.84231 -13.17517,-3.55885 -22.10975,-11.35491 -32.16663,-14.92538 -26.00796,-7.28693 -35.18199,-5.36422 -35.15592,-5.52718 -5.7001,-0.621 -8.60045,-1.23038 -8.1843,-1.25056 -2.1832,0.69779 -4.14081,1.89142 -6.17593,2.9871 -4.21706,4.76934 -8.18639,10.39866 -13.57388,12.35835 -1.92294,1.53597 -4.68187,1.38752 -6.42427,1.56556 -3.17523,1.49929 -6.0303,5.71999 -10.25413,1.05927 -0.71753,-0.67242 -1.08803,-1.79537 -1.17931,-2.88952 -2.44492,-0.27198 -4.8582,-0.24109 -7.22331,-0.265 -2.49592,-2.52948 -4.91084,-5.18137 -5.29842,-10.2787 -0.57251,-2.93616 -1.19034,-5.8172 1.73934,-8.15351 -0.63334,-3.27898 0.8596,-5.81144 3.36731,-7.9988 0.0414,-3.142308 0.47692,-6.148001 4.81868,-7.881954 -0.35575,-2.53162 0.83749,-2.644437 1.40361,-3.677788 8.67897,-0.933389 17.44184,-1.860384 33.40821,0.707292 0.76908,-0.432375 1.18909,-0.984061 2.97187,-1.064521 2.02588,0.323394 2.29331,2.593018 4.17997,2.916577 0.017,-0.122533 11.07469,-0.519229 28.23967,2.846153 22.33718,4.993821 38.1414,6.556701 50.90227,11.342701 15.98778,2.32201 35.44598,17.35468 35.9125,31.34547 0.25313,7.59105 -9.11293,16.51703 -12.98971,17.78179 -6.90871,5.56547 -40.15715,34.83106 -68.08145,53.02535 -12.76935,11.09792 1.0322,34.94142 -18.21974,33.80336 -11.42113,-1.91438 -15.90619,-47.50408 -15.80696,-47.55692 8.12889,-3.15008 13.68165,-10.49055 19.97602,-16.62467 6.29362,-1.56423 11.88648,-5.46072 17.60239,-8.94768 24.72621,-14.49206 27.79345,-19.88621 45.07272,-33.85449 z"/><path d="m 416.34015,137.87596 c 27.19781,0.73794 6.76862,2.55782 -8.23561,-1.90481 -12.93847,-3.90325 -22.17008,-11.8098 -32.16663,-14.92538 -27.21775,-8.48286 -35.15592,-5.52718 -35.15592,-5.52718 -4.43404,-0.99709 -8.59402,-1.23228 -8.1843,-1.25056 -2.51009,0.47312 -4.29552,1.78509 -6.17593,2.9871 -4.50142,4.17994 -8.35339,10.0525 -13.57388,12.35835 -1.86742,1.32643 -4.6509,1.27068 -6.42427,1.56556 -3.17523,1.49929 -5.84837,5.36864 -10.25413,1.05927 -0.56736,-0.68182 -0.85844,-1.80974 -1.17931,-2.88952 -2.40238,-0.47006 -4.81155,-0.45831 -7.22331,-0.265 -2.2793,-2.88904 -4.539,-5.79859 -5.29842,-10.2787 -0.26857,-2.7479 -0.67956,-5.50083 1.73934,-8.15351 -0.23326,-3.18411 1.20628,-5.72923 3.36731,-7.9988 0.31255,-3.064215 1.08954,-5.971585 4.81868,-7.881954 0.11652,-2.52493 0.88382,-2.643795 1.40361,-3.677788 8.70196,-0.809319 17.4938,-1.580034 33.40821,0.707292 0.86624,-0.406652 1.55594,-0.886827 2.97187,-1.064521 1.97166,0.503435 2.26133,2.699256 4.17997,2.916577 0,0 11.28571,-1.354883 28.23967,2.846153 21.50866,5.329651 36.63325,6.513511 50.90227,11.342701 15.63351,5.29098 29.05276,12.30963 35.49429,28.83661 3.29595,8.45637 -8.6973,18.99285 -12.5715,20.29065 -7.2367,5.35747 -42.11286,34.38128 -68.08145,53.02535 -12.79099,11.05725 0.8543,34.6073 -18.21974,33.80336 -11.12304,-2.0731 -15.80696,-47.55692 -15.80696,-47.55692 3.13687,-5.26914 2.81848,-10.8608 20.30706,-17.24004 6.29362,-1.56423 11.55545,-4.84533 17.27136,-8.33229 18.03877,-8.34635 27.48335,-18.28231 44.44772,-32.792 z" class="skin arm" id="path3230" sodipodi:nodetypes="ccsccccccccccccccccsssccccccc"/><path d="m 295.18882,129.21753 c 5.34665,-3.49364 4.94695,-6.10534 5.3092,-7.81066 -0.937,2.89145 -1.33607,3.38261 -5.3092,7.81066 z" class="shadow" id="path3234" sodipodi:nodetypes="ccc"/><path d="m 300.37099,121.58603 c -4.87738,-0.98168 -4.57091,-0.48934 -6.46034,0.11744 1.79618,-0.32021 1.5622,-0.45178 6.46034,-0.11744 z" class="shadow" id="path3236" sodipodi:nodetypes="ccc"/><path d="m 304.25086,124.04729 c -3.73519,-3.29389 -7.7306,-6.63208 -10.0306,-6.82802 2.14005,0.77849 6.26034,4.08751 10.0306,6.82802 z" class="shadow" id="path3242" sodipodi:nodetypes="ccc"/><path d="m 293.91881,121.74899 c -2.2385,-0.52137 -2.5242,-0.52537 -4.84179,-0.25747 2.24964,0.0618 2.53867,0.0349 4.84179,0.25747 z" class="shadow" id="path3244" sodipodi:nodetypes="ccc"/><path d="m 293.8827,123.52006 c -1.50826,1.75414 -2.66361,2.30138 -4.6134,3.12696 2.46702,-0.46549 3.21838,-1.14883 4.6134,-3.12696 z" class="shadow" id="path3246" sodipodi:nodetypes="ccc"/><path d="m 294.93289,112.54791 c -4.05406,-2.84524 -8.44042,-1.75817 -10.74039,-1.95411 2.22191,0.51402 6.97014,-0.78639 10.74039,1.95411 z" class="shadow" id="path3248" sodipodi:nodetypes="ccc"/><path d="m 296.36587,104.19814 c -3.97505,-2.90663 -6.59037,-1.31213 -8.89036,-1.50807 2.2402,0.3267 5.12011,-1.23244 8.89036,1.50807 z" class="shadow" id="path3250" sodipodi:nodetypes="ccc"/><path d="m 299.03763,96.545358 c -4.03843,-2.845022 -4.24231,-1.560849 -6.5423,-1.756785 2.22279,0.451523 2.77205,-0.983725 6.5423,1.756785 z" class="shadow" id="path3252" sodipodi:nodetypes="ccc"/><path d="m 415.57013,138.34367 c 4.33424,-2.83585 8.46725,1.10257 16.32437,-3.88923 -8.00202,4.48396 -11.55736,0.31819 -16.32437,3.88923 z" class="shadow" id="path3232" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccccccccccccccccscccccccc" id="path3228" class="shadow" d="m 416.96515,136.81346 c 32.11702,-0.95542 12.44417,5.83226 -8.86061,-0.84231 -13.17517,-3.55885 -22.10975,-11.35491 -32.16663,-14.92538 -26.00796,-7.28693 -35.18199,-5.36422 -35.15592,-5.52718 -5.7001,-0.621 -8.60045,-1.23038 -8.1843,-1.25056 -2.1832,0.69779 -4.14081,1.89142 -6.17593,2.9871 -4.21706,4.76934 -8.18639,10.39866 -13.57388,12.35835 -1.92294,1.53597 -4.68187,1.38752 -6.42427,1.56556 -3.17523,1.49929 -6.0303,5.71999 -10.25413,1.05927 -0.71753,-0.67242 -1.08803,-1.79537 -1.17931,-2.88952 -2.44492,-0.27198 -4.8582,-0.24109 -7.22331,-0.265 -2.49592,-2.52948 -4.91084,-5.18137 -5.29842,-10.2787 -0.57251,-2.93616 -1.19034,-5.8172 1.73934,-8.15351 -0.63334,-3.27898 0.8596,-5.81144 3.36731,-7.9988 0.0414,-3.142308 0.47692,-6.148001 4.81868,-7.881954 -0.35575,-2.53162 0.83749,-2.644437 1.40361,-3.677788 8.67897,-0.933389 17.44184,-1.860384 33.40821,0.707292 0.76908,-0.432375 1.18909,-0.984061 2.97187,-1.064521 2.02588,0.323394 2.29331,2.593018 4.17997,2.916577 0.017,-0.122533 11.07469,-0.519229 28.23967,2.846153 22.33718,4.993821 38.1414,6.556701 50.90227,11.342701 15.98778,2.32201 35.44598,17.35468 35.9125,31.34547 0.25313,7.59105 -9.11293,16.51703 -12.98971,17.78179 -6.90871,5.56547 -44.3556,39.86919 -72.2799,58.06348 -0.7002,9.13287 -0.10078,10.74565 -2.89629,20.82773 -11.42113,-1.91438 -27.03119,-39.56658 -26.93196,-39.61942 8.12889,-3.15008 13.68165,-10.49055 19.97602,-16.62467 6.29362,-1.56423 11.88648,-5.46072 17.60239,-8.94768 24.72621,-14.49206 27.79345,-19.88621 45.07272,-33.85449 z"/><path d="m 416.34015,137.87596 c 27.19781,0.73794 6.76862,2.55782 -8.23561,-1.90481 -12.93847,-3.90325 -22.17008,-11.8098 -32.16663,-14.92538 -27.21775,-8.48286 -35.15592,-5.52718 -35.15592,-5.52718 -4.43404,-0.99709 -8.59402,-1.23228 -8.1843,-1.25056 -2.51009,0.47312 -4.29552,1.78509 -6.17593,2.9871 -4.50142,4.17994 -8.35339,10.0525 -13.57388,12.35835 -1.86742,1.32643 -4.6509,1.27068 -6.42427,1.56556 -3.17523,1.49929 -5.84837,5.36864 -10.25413,1.05927 -0.56736,-0.68182 -0.85844,-1.80974 -1.17931,-2.88952 -2.40238,-0.47006 -4.81155,-0.45831 -7.22331,-0.265 -2.2793,-2.88904 -4.539,-5.79859 -5.29842,-10.2787 -0.26857,-2.7479 -0.67956,-5.50083 1.73934,-8.15351 -0.23326,-3.18411 1.20628,-5.72923 3.36731,-7.9988 0.31255,-3.064215 1.08954,-5.971585 4.81868,-7.881954 0.11652,-2.52493 0.88382,-2.643795 1.40361,-3.677788 8.70196,-0.809319 17.4938,-1.580034 33.40821,0.707292 0.86624,-0.406652 1.55594,-0.886827 2.97187,-1.064521 1.97166,0.503435 2.26133,2.699256 4.17997,2.916577 0,0 11.28571,-1.354883 28.23967,2.846153 21.50866,5.329651 36.63325,6.513511 50.90227,11.342701 15.63351,5.29098 29.05276,12.30963 35.49429,28.83661 3.29595,8.45637 -8.6973,18.99285 -12.5715,20.29065 -7.2367,5.35747 -46.31131,39.41941 -72.2799,58.06348 -0.96906,8.75577 -0.54078,11.07961 -3.36964,21.87094 -11.12304,-2.0731 -20.03076,-45.4356 -20.03076,-45.4356 3.13687,-5.26914 14.04976,-13.48866 22.24901,-18.61451 6.35608,-3.97357 14.1103,-5.30921 20.52656,-9.18485 11.91046,-7.19433 15.85835,-11.28231 32.82272,-25.792 z" class="skin arm" id="path3230" sodipodi:nodetypes="ccsccccccccccccccccsssccccaac"/><path d="m 295.18882,129.21753 c 5.34665,-3.49364 4.94695,-6.10534 5.3092,-7.81066 -0.937,2.89145 -1.33607,3.38261 -5.3092,7.81066 z" class="shadow" id="path3234" sodipodi:nodetypes="ccc"/><path d="m 300.37099,121.58603 c -4.87738,-0.98168 -4.57091,-0.48934 -6.46034,0.11744 1.79618,-0.32021 1.5622,-0.45178 6.46034,-0.11744 z" class="shadow" id="path3236" sodipodi:nodetypes="ccc"/><path d="m 304.25086,124.04729 c -3.73519,-3.29389 -7.7306,-6.63208 -10.0306,-6.82802 2.14005,0.77849 6.26034,4.08751 10.0306,6.82802 z" class="shadow" id="path3242" sodipodi:nodetypes="ccc"/><path d="m 293.91881,121.74899 c -2.2385,-0.52137 -2.5242,-0.52537 -4.84179,-0.25747 2.24964,0.0618 2.53867,0.0349 4.84179,0.25747 z" class="shadow" id="path3244" sodipodi:nodetypes="ccc"/><path d="m 293.8827,123.52006 c -1.50826,1.75414 -2.66361,2.30138 -4.6134,3.12696 2.46702,-0.46549 3.21838,-1.14883 4.6134,-3.12696 z" class="shadow" id="path3246" sodipodi:nodetypes="ccc"/><path d="m 294.93289,112.54791 c -4.05406,-2.84524 -8.44042,-1.75817 -10.74039,-1.95411 2.22191,0.51402 6.97014,-0.78639 10.74039,1.95411 z" class="shadow" id="path3248" sodipodi:nodetypes="ccc"/><path d="m 296.36587,104.19814 c -3.97505,-2.90663 -6.59037,-1.31213 -8.89036,-1.50807 2.2402,0.3267 5.12011,-1.23244 8.89036,1.50807 z" class="shadow" id="path3250" sodipodi:nodetypes="ccc"/><path d="m 299.03763,96.545358 c -4.03843,-2.845022 -4.24231,-1.560849 -6.5423,-1.756785 2.22279,0.451523 2.77205,-0.983725 6.5423,1.756785 z" class="shadow" id="path3252" sodipodi:nodetypes="ccc"/><path d="m 415.57013,138.34367 c 4.33424,-2.83585 8.46725,1.10257 16.32437,-3.88923 -8.00202,4.48396 -11.55736,0.31819 -16.32437,3.88923 z" class="shadow" id="path3232" sodipodi:nodetypes="ccc"/><path d="m 374.39025,194.40581 c -7.5496,4.35876 -14.05597,12.18841 -16.98547,15.11791 2.93435,-2.93435 11.90692,-12.18581 16.98547,-15.11791 z" class="shadow" id="path3232-3" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Arm_Right_High.tw b/src/art/vector_revamp/layers/Arm_Right_High.tw index 56e26f469762d3f044b70176fa85e72f02766072..3c9190fc6233e7b0301028a1dab7d81c312a8017 100644 --- a/src/art/vector_revamp/layers/Arm_Right_High.tw +++ b/src/art/vector_revamp/layers/Arm_Right_High.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Arm_Right_High [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccsccccccccccccccccccscsscc" id="path3267" d="m 259.39085,219.99261 c 0,0 -11.4994,-9.89625 -19.3512,-17.30477 -13.55495,-10.6354 -16.5421,-12.96229 -23.61491,-19.05855 -7.84581,-5.48263 -11.33539,-8.77242 -14.18124,-11.27461 -1.59426,-0.41862 -14.57996,-10.23511 -15.50675,-17.99531 -0.30105,-2.52075 7.13378,-13.12186 10.18104,-16.29746 10.0981,-12.66515 14.28981,-11.39852 26.56588,-18.49891 20.9156,-10.12621 37.2882,-17.70528 37.28061,-17.28893 1.94149,-0.87834 15.65824,-4.611687 14.74106,-3.976477 2.64756,-0.166485 9.27182,1.396148 9.11158,1.835007 15.92104,-4.527759 22.02179,-3.105036 29.56893,-2.843117 0.53511,0.818414 1.47862,0.628049 1.41733,3.025847 3.51257,1.2406 4.50117,3.47693 4.64203,6.36438 2.11132,1.72264 3.93959,3.50445 3.36111,6.55914 2.5318,1.96802 2.44818,4.26321 1.92693,6.80088 -0.30855,3.98719 -1.98153,6.77689 -4.21016,9.07522 -2.10065,0.1102 -4.15584,0.4605 -6.38828,0.70975 -0.0238,1.09284 -0.29881,2.0174 -0.90926,2.5303 -3.51244,4.3944 -6.24262,0.87047 -9.13633,-0.21053 -1.64333,0.0894 -4.13515,0.43539 -5.76534,-0.89566 -4.8078,-1.15706 -13.18021,-10.80666 -13.15481,-10.96256 -2.13384,0.12843 -4.26201,0.27444 -6.59247,-0.21243 -6.9898,0.45253 -14.36983,2.47734 -17.85002,2.73673 -11.11904,3.05074 -35.45572,28.98109 -46.09657,27.81755 -0.80241,-0.0877 0.70344,1.51406 1.18795,2.30615 8.10171,5.03261 22.54551,16.19148 35.37619,25.48062 6.28262,4.54849 12.39945,5.64348 16.97459,8.35665 1.99185,1.18121 7.93634,5.85615 7.93634,5.85615 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.94240636"/><path d="m 259.39085,219.99261 c 0,0 -11.09917,-10.27939 -19.3512,-17.30477 -12.8911,-10.97488 -15.50869,-12.98224 -22.86491,-18.93355 -7.35622,-5.95133 -12.41012,-9.56779 -15.40224,-11.92994 -0.51549,-0.40696 -14.10708,-9.74715 -14.99488,-17.28574 -0.36683,-3.11486 7.78548,-13.45707 10.63018,-17.00703 7.42929,-9.27118 14.77475,-11.67837 27.41038,-18.23375 17.64518,-9.15434 35.9461,-17.02376 35.9461,-17.02376 0,0 13.0177,-3.417078 14.74106,-3.976477 1.26304,0.05577 8.3248,1.548142 9.11158,1.835007 13.99391,-3.008292 21.8199,-2.945865 29.56893,-2.843117 0.50937,0.842338 1.19497,0.891556 1.41733,3.025847 3.39454,1.3705 4.22052,3.78576 4.64203,6.36438 2.02196,1.78044 3.41759,3.84218 3.36111,6.55914 2.26855,2.08814 2.03529,4.45164 1.92693,6.80088 -0.46156,3.85176 -2.32676,6.4713 -4.21016,9.07522 -2.14619,-0.002 -4.28171,0.14977 -6.38828,0.70975 -0.23338,0.93759 -0.43868,1.91379 -0.90926,2.5303 -3.70065,3.95156 -6.25201,0.84837 -9.13633,-0.21053 -1.58528,-0.13117 -4.04804,0.10436 -5.76534,-0.89566 -4.73466,-1.60596 -13.15481,-10.96256 -13.15481,-10.96256 l -6.59247,-0.21243 c -7.35428,-0.284 -11.09037,1.70346 -16.764,2.56724 l -1.67401,0.29449 c -12.76702,3.05181 -20.62907,14.16069 -31.02434,21.168 -4.3974,2.96423 -13.29629,8.8307 -13.29629,8.8307 0,0 18.92983,14.51195 35.0083,25.85293 6.67662,4.70936 13.08253,5.86673 17.21619,8.21637 1.41226,0.80275 8.86431,5.54352 8.86431,5.54352" id="path3269" sodipodi:nodetypes="csscssscccccccccccccccccccssc" class="skin arm"/><path d="m 314.8035,130.10722 c -4.91505,-2.78303 -4.69322,-5.15544 -5.10067,-6.66314 0.97688,2.53491 1.35543,2.94959 5.10067,6.66314 z" class="shadow" id="path3271" sodipodi:nodetypes="ccc"/><path d="m 309.82448,123.59658 c 4.27234,-1.20558 4.02571,-0.74304 5.73079,-0.32343 -1.60792,-0.16837 -1.40724,-0.30207 -5.73079,0.32343 z" class="shadow" id="path3273" sodipodi:nodetypes="ccc"/><path d="m 314.80546,130.07947 c -0.098,-3.36849 0.14746,-3.03453 0.87734,-5.19396 -0.55565,2.12164 -0.46563,2.39281 -0.87734,5.19396 z" class="shadow" id="path3275" sodipodi:nodetypes="ccc"/><path d="m 108.68863,19.303827 c -0.49935,0.469172 -0.74546,0.546712 -1.18095,0.97262 0.52753,-0.326257 0.6995,-0.321405 1.18095,-0.97262 z" class="shadow" id="path3277" sodipodi:nodetypes="ccc"/><path d="m 306.51108,126.0649 c 3.14298,-3.2066 6.51432,-6.47026 8.54253,-6.79894 -1.85694,0.84134 -5.34042,4.08708 -8.54253,6.79894 z" class="shadow" id="path3279" sodipodi:nodetypes="ccc"/><path d="m 315.55037,123.31458 c 1.95722,-0.61691 2.21018,-0.63947 4.2775,-0.5527 -1.99038,0.20488 -2.24788,0.19991 -4.2775,0.5527 z" class="shadow" id="path3281" sodipodi:nodetypes="ccc"/><path d="m 315.67213,124.90299 c 1.42546,1.47543 2.47702,1.89027 4.24668,2.50237 -2.20976,-0.25431 -2.91021,-0.81821 -4.24668,-2.50237 z" class="shadow" id="path3283" sodipodi:nodetypes="ccc"/><path d="m 317.19371,115.14694 c 3.28076,-3.02925 4.48915,-1.83384 6.46354,-1.93829 -1.98636,0.18987 -3.26143,-0.77356 -6.46354,1.93829 z" class="shadow" id="path3285" sodipodi:nodetypes="ccc"/><path d="m 314.22671,108.02799 c 3.60791,-2.53496 4.00354,-1.64608 6.07674,-1.33616 -2.01029,-0.14966 -2.54463,-0.84091 -6.07674,1.33616 z" class="shadow" id="path3287" sodipodi:nodetypes="ccc"/><path d="m 310.51892,101.21471 c 3.64838,-2.022538 3.05965,-0.97171 5.11639,-0.89543 -1.9732,0.17927 -1.52109,-0.977392 -5.11639,0.89543 z" class="shadow" id="path3289" sodipodi:nodetypes="ccc"/><path d="m 197.74447,147.63995 c 8.21562,0.67892 11.21099,4.73522 18.47445,5.31502 -5.31009,0.60942 -12.29205,-3.84289 -18.47445,-5.31502 z" class="shadow" id="path3291" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccsccccccccccccccccccscsscc" id="path3267" d="m 259.39085,219.99261 c 0,0 -11.4994,-9.89625 -19.3512,-17.30477 -13.55495,-10.6354 -16.5421,-12.96229 -23.61491,-19.05855 -7.84581,-5.48263 -11.33539,-8.77242 -14.18124,-11.27461 -1.59426,-0.41862 -14.57996,-10.23511 -15.50675,-17.99531 -0.30105,-2.52075 7.13378,-13.12186 10.18104,-16.29746 10.0981,-12.66515 14.28981,-11.39852 26.56588,-18.49891 20.9156,-10.12621 37.2882,-17.70528 37.28061,-17.28893 1.94149,-0.87834 15.65824,-4.611687 14.74106,-3.976477 2.64756,-0.166485 9.27182,1.396148 9.11158,1.835007 15.92104,-4.527759 22.02179,-3.105036 29.56893,-2.843117 0.53511,0.818414 1.47862,0.628049 1.41733,3.025847 3.51257,1.2406 4.50117,3.47693 4.64203,6.36438 2.11132,1.72264 3.93959,3.50445 3.36111,6.55914 2.5318,1.96802 2.44818,4.26321 1.92693,6.80088 -0.30855,3.98719 -1.98153,6.77689 -4.21016,9.07522 -2.10065,0.1102 -4.15584,0.4605 -6.38828,0.70975 -0.0238,1.09284 -0.29881,2.0174 -0.90926,2.5303 -3.51244,4.3944 -6.24262,0.87047 -9.13633,-0.21053 -1.64333,0.0894 -4.13515,0.43539 -5.76534,-0.89566 -4.8078,-1.15706 -13.18021,-10.80666 -13.15481,-10.96256 -2.13384,0.12843 -4.26201,0.27444 -6.59247,-0.21243 -6.9898,0.45253 -14.36983,2.47734 -17.85002,2.73673 -11.11904,3.05074 -35.45572,28.98109 -46.09657,27.81755 -0.80241,-0.0877 0.70344,1.51406 1.18795,2.30615 8.10171,5.03261 22.54551,16.19148 35.37619,25.48062 6.28262,4.54849 12.39945,5.64348 16.97459,8.35665 1.99185,1.18121 7.93634,5.85615 7.93634,5.85615 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.94240636"/><path d="m 259.39085,219.99261 c 0,0 -11.09917,-10.27939 -19.3512,-17.30477 -12.8911,-10.97488 -15.50869,-12.98224 -22.86491,-18.93355 -7.35622,-5.95133 -12.41012,-9.56779 -15.40224,-11.92994 -0.51549,-0.40696 -14.10708,-9.74715 -14.99488,-17.28574 -0.36683,-3.11486 7.78548,-13.45707 10.63018,-17.00703 7.42929,-9.27118 14.77475,-11.67837 27.41038,-18.23375 17.64518,-9.15434 35.9461,-17.02376 35.9461,-17.02376 0,0 13.0177,-3.417078 14.74106,-3.976477 1.26304,0.05577 8.3248,1.548142 9.11158,1.835007 13.99391,-3.008292 21.8199,-2.945865 29.56893,-2.843117 0.50937,0.842338 1.19497,0.891556 1.41733,3.025847 3.39454,1.3705 4.22052,3.78576 4.64203,6.36438 2.02196,1.78044 3.41759,3.84218 3.36111,6.55914 2.26855,2.08814 2.03529,4.45164 1.92693,6.80088 -0.46156,3.85176 -2.32676,6.4713 -4.21016,9.07522 -2.14619,-0.002 -4.28171,0.14977 -6.38828,0.70975 -0.23338,0.93759 -0.43868,1.91379 -0.90926,2.5303 -3.70065,3.95156 -6.25201,0.84837 -9.13633,-0.21053 -1.58528,-0.13117 -4.04804,0.10436 -5.76534,-0.89566 -4.73466,-1.60596 -13.15481,-10.96256 -13.15481,-10.96256 l -6.59247,-0.21243 c -7.35428,-0.284 -11.09037,1.70346 -16.764,2.56724 l -1.67401,0.29449 c -12.76702,3.05181 -20.62907,14.16069 -31.02434,21.168 -4.3974,2.96423 -13.29629,8.8307 -13.29629,8.8307 0,0 20.43423,16.49245 31.69374,23.15708 5.38017,3.18458 11.66317,4.67429 16.98633,7.95327 2.97349,1.83162 8.23627,6.47548 8.23627,6.47548" id="path3269" sodipodi:nodetypes="csscssscccccccccccccccccccaac" class="skin arm"/><path d="m 314.8035,130.10722 c -4.91505,-2.78303 -4.69322,-5.15544 -5.10067,-6.66314 0.97688,2.53491 1.35543,2.94959 5.10067,6.66314 z" class="shadow" id="path3271" sodipodi:nodetypes="ccc"/><path d="m 309.82448,123.59658 c 4.27234,-1.20558 4.02571,-0.74304 5.73079,-0.32343 -1.60792,-0.16837 -1.40724,-0.30207 -5.73079,0.32343 z" class="shadow" id="path3273" sodipodi:nodetypes="ccc"/><path d="m 314.80546,130.07947 c -0.098,-3.36849 0.14746,-3.03453 0.87734,-5.19396 -0.55565,2.12164 -0.46563,2.39281 -0.87734,5.19396 z" class="shadow" id="path3275" sodipodi:nodetypes="ccc"/><path d="m 108.68863,19.303827 c -0.49935,0.469172 -0.74546,0.546712 -1.18095,0.97262 0.52753,-0.326257 0.6995,-0.321405 1.18095,-0.97262 z" class="shadow" id="path3277" sodipodi:nodetypes="ccc"/><path d="m 306.51108,126.0649 c 3.14298,-3.2066 6.51432,-6.47026 8.54253,-6.79894 -1.85694,0.84134 -5.34042,4.08708 -8.54253,6.79894 z" class="shadow" id="path3279" sodipodi:nodetypes="ccc"/><path d="m 315.55037,123.31458 c 1.95722,-0.61691 2.21018,-0.63947 4.2775,-0.5527 -1.99038,0.20488 -2.24788,0.19991 -4.2775,0.5527 z" class="shadow" id="path3281" sodipodi:nodetypes="ccc"/><path d="m 315.67213,124.90299 c 1.42546,1.47543 2.47702,1.89027 4.24668,2.50237 -2.20976,-0.25431 -2.91021,-0.81821 -4.24668,-2.50237 z" class="shadow" id="path3283" sodipodi:nodetypes="ccc"/><path d="m 317.19371,115.14694 c 3.28076,-3.02925 4.48915,-1.83384 6.46354,-1.93829 -1.98636,0.18987 -3.26143,-0.77356 -6.46354,1.93829 z" class="shadow" id="path3285" sodipodi:nodetypes="ccc"/><path d="m 314.22671,108.02799 c 3.60791,-2.53496 4.00354,-1.64608 6.07674,-1.33616 -2.01029,-0.14966 -2.54463,-0.84091 -6.07674,1.33616 z" class="shadow" id="path3287" sodipodi:nodetypes="ccc"/><path d="m 310.51892,101.21471 c 3.64838,-2.022538 3.05965,-0.97171 5.11639,-0.89543 -1.9732,0.17927 -1.52109,-0.977392 -5.11639,0.89543 z" class="shadow" id="path3289" sodipodi:nodetypes="ccc"/><path d="m 197.74447,147.63995 c 8.21562,0.67892 11.21099,4.73522 18.47445,5.31502 -5.31009,0.60942 -12.29205,-3.84289 -18.47445,-5.31502 z" class="shadow" id="path3291" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Arm_Stump.tw b/src/art/vector_revamp/layers/Arm_Stump.tw index 01254792de09da3a7a01a1ce795b4a4f84401f5b..f6136a28189b326d3e108dad4f8a322062f404c5 100644 --- a/src/art/vector_revamp/layers/Arm_Stump.tw +++ b/src/art/vector_revamp/layers/Arm_Stump.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Arm_Stump [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="scsas" id="path1420" d="m 358.5887,178.95455 c 14.62279,-1.68069 26.43944,8.01522 27.2351,21.9566 -0.56595,12.09082 -14.60862,20.72368 -26.56495,23.43702 -7.62636,1.73071 -15.19855,5.71989 -18.80847,0.59021 -9.48283,-13.47506 1.76879,-44.10237 18.13832,-45.98383 z" class="shadow"/><path class="skin arm" d="m 358.5887,178.95455 c 11.27433,-2.97859 26.97612,10.29832 27.2351,21.9566 0.26225,11.80571 -15.58625,19.08828 -26.56495,23.43702 -5.83173,2.31 -15.19855,5.71989 -18.80847,0.59021 -9.48283,-13.47506 2.20761,-41.77507 18.13832,-45.98383 z" id="path62-3" sodipodi:nodetypes="aaaaa"/><path sodipodi:nodetypes="ccccc" id="path1429" d="m 266.62049,190.96644 c 14.7851,-4.44494 28.94581,4.9963 30.24031,16.38814 1.33327,11.7331 -14.82389,22.17579 -26.56495,23.43702 -7.77555,0.83525 -18.48928,-3.87003 -20.48786,-11.43061 -2.96217,-11.75747 1.80873,-22.72825 16.8125,-28.39455 z" class="shadow"/><path class="skin arm" d="m 266.62049,190.96644 c 11.05043,-3.05578 28.94581,4.9963 30.24031,16.38814 1.33327,11.7331 -14.82389,22.17579 -26.56495,23.43702 -7.77555,0.83525 -18.44985,-3.88056 -20.48786,-11.43061 -2.86655,-10.61946 6.21083,-25.46287 16.8125,-28.39455 z" id="path62-3-9" sodipodi:nodetypes="aaaaa"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccc" id="path2735" d="m 358.5887,178.95455 c 11.59151,-3.04656 27.91436,10.04694 27.2351,21.9566 0.50082,10.83419 -11.72906,18.24361 -23.26882,22.09442 -0.60666,0.46821 -1.40053,13.57923 -1.6395,13.54509 0,0 -17.85326,-4.21656 -20.4651,-11.61228 -5.48693,-15.53689 2.20761,-41.77507 18.13832,-45.98383 z" class="shadow"/><path class="skin arm" d="m 358.5887,178.95455 c 11.27433,-2.97859 26.97612,10.29832 27.2351,21.9566 0.23694,10.66626 -12.67703,17.64036 -23.26882,22.09442 -1.1315,0.47581 -1.6395,13.54509 -1.6395,13.54509 0,0 -17.85326,-4.21656 -20.4651,-11.61228 -5.48693,-15.53689 2.20761,-41.77507 18.13832,-45.98383 z" id="path62-3" sodipodi:nodetypes="asscaa"/><path sodipodi:nodetypes="ccccc" id="path1429" d="m 266.62049,190.96644 c 14.7851,-4.44494 28.94581,4.9963 30.24031,16.38814 1.33327,11.7331 -14.82389,22.17579 -26.56495,23.43702 -7.77555,0.83525 -18.48928,-3.87003 -20.48786,-11.43061 -2.96217,-11.75747 1.80873,-22.72825 16.8125,-28.39455 z" class="shadow"/><path class="skin arm" d="m 266.62049,190.96644 c 11.05043,-3.05578 28.94581,4.9963 30.24031,16.38814 1.33327,11.7331 -14.82389,22.17579 -26.56495,23.43702 -7.77555,0.83525 -18.44985,-3.88056 -20.48786,-11.43061 -2.86655,-10.61946 6.21083,-25.46287 16.8125,-28.39455 z" id="path62-3-9" sodipodi:nodetypes="aaaaa"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Arm_Up_Hair_Bushy.tw b/src/art/vector_revamp/layers/Arm_Up_Hair_Bushy.tw index e42001566af398d69e2195879f7c10107b06a50a..c939b0338365c6f9f6b1b869c26ee01d75f012d9 100644 --- a/src/art/vector_revamp/layers/Arm_Up_Hair_Bushy.tw +++ b/src/art/vector_revamp/layers/Arm_Up_Hair_Bushy.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Arm_Up_Hair_Bushy [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 360.53365,236.48083 c -0.55578,0.2551 1.01548,-0.63209 3.04941,3.3643 -0.97228,-3.1532 -2.70812,-4.02467 -1.94925,-6.16278 1.53423,0.28812 5.80123,-1.42335 5.33972,3.17441 0.98363,-3.5058 -3.07079,-4.82298 -4.92575,-6.88832 0.18244,1.45667 11.2297,-1.04275 6.84876,5.20608 5.3105,-5.44303 -2.41392,-7.14507 -3.39202,-9.43961 -0.45356,1.56568 -1.45066,-1.04783 4.80075,-0.24689 -3.46772,-0.44603 -8.11396,-3.23134 -7.33132,-5.42448 2.51841,0.0603 4.53675,2.08298 3.54725,3.90196 1.08804,-2.44307 -0.41883,-4.58012 -2.50244,-6.5782 0.56364,1.26579 4.18828,2.35147 3.56874,-0.98917 0.24672,1.8905 -2.15515,1.74514 -2.17213,-0.88218 2.16264,-1.07417 3.58587,0.37498 2.70189,1.87578 1.89339,-3.4784 -1.34178,-3.52056 -1.98242,-4.08425 0.51967,-0.0851 0.6538,-0.44246 0.82158,-0.77605 1.2738,1.58522 4.59918,1.41997 4.62772,1.37618 -1.75593,-0.63763 -4.09192,-1.77678 -3.206,-2.73539 0,0 -0.30162,-0.93139 0.47217,-1.6882 -1.17562,0.12647 -1.50552,0.39685 -2.29732,1.39659 0.43889,-0.74403 0.22952,-1.36458 0.27651,-2.03396 -0.19789,1.53736 -0.94588,2.69608 -2.74427,3.1318 0.29183,-1.13068 -0.21459,-1.42216 -0.71523,-1.71972 0.596,1.32079 -0.14863,1.44588 -1.07278,1.41086 -0.87655,-1.71928 0.22738,-2.55256 0.83323,-3.60866 -1.93061,0.6298 -3.38367,1.69073 -3.81887,3.67055 -0.70564,-0.81459 -0.56273,-1.73524 -0.459,-2.651 -0.65736,0.85385 -1.14327,1.8183 -1.15811,3.08668 l 1.88893,15.25586 c 0,0 1.15763,7.50544 0.95025,9.05781 z" class="armpit_hair" id="path3321" sodipodi:nodetypes="cccccccccccccccccccccccccccccc"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 354.20431,225.28332 c -0.61112,0.0223 1.18028,-0.1941 1.52525,4.27681 0.31193,-3.28492 -0.95671,-4.75569 0.56442,-6.43901 1.30627,0.85471 5.90336,0.91135 3.71313,4.98017 2.25343,-2.86011 -0.98533,-5.63205 -1.90592,-8.25103 -0.39041,1.41519 10.77036,3.34558 4.32719,7.43534 8.5248,-4.57088 -5.60608,-14.3046 5.01736,-8.4047 -3.0312,-1.74236 -3.14502,-4.92117 -0.87788,-5.45267 1.31482,2.14877 0.7096,4.94138 -1.3553,5.0962 2.64273,-0.41036 3.62136,-2.83526 4.1705,-5.66937 -0.75797,1.1599 0.29507,4.79417 2.76613,2.46231 -1.45473,1.23233 -2.63489,-0.86465 -0.43645,-2.30346 2.07516,1.23475 1.62919,3.21634 -0.11115,3.28731 3.94931,-0.29507 2.23064,-3.03628 2.35691,-3.88021 0.67358,1.25061 0.49749,1.49403 1.53676,2.24415 -1.02483,-1.3448 0.3076,-2.81529 0.72915,-3.20865 0.86312,-0.0346 1.27103,-0.54702 1.85896,-0.87047 -0.6731,0.32102 -1.5432,-0.54456 -2.31305,-1.72962 -0.2374,-0.36546 0.98951,-1.49356 1.11803,-2.66756 -0.68914,1.5688 -2.21073,0.66309 -2.37984,0.26276 -0.23543,-0.55727 -0.41307,-1.06893 -0.50614,-1.45692 1.13002,0.29438 1.42264,-0.21138 1.72133,-0.71135 -1.32214,0.59302 -1.44554,-0.15189 -1.40844,-1.07596 1.72125,-0.87267 2.55204,0.23313 3.60677,0.84136 -0.62544,-1.93202 -1.6831,-3.38747 -3.66192,-3.82713 0.81617,-0.7038 1.73649,-0.55881 2.65202,-0.45302 -0.85236,-0.65929 -1.81572,-1.14737 -3.08406,-1.16507 -3.6659,0.85993 -12.95933,3.61857 -17.02603,17.95061 0,0 -1.8106,7.37519 -2.59771,8.72919 z" class="armpit_hair" id="path3321" sodipodi:nodetypes="cccccccccccccccccscscccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Arm_Up_Hair_Neat.tw b/src/art/vector_revamp/layers/Arm_Up_Hair_Neat.tw index 541e8092eb7c64205bc3ec428bd2efcaf5ddfb3f..6146ba7440beb2f766d6e9dcfa9cf0434ce51874 100644 --- a/src/art/vector_revamp/layers/Arm_Up_Hair_Neat.tw +++ b/src/art/vector_revamp/layers/Arm_Up_Hair_Neat.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Arm_Up_Hair_Neat [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 361.07872,235.74368 c -0.94878,-8.80737 -2.85473,-24.59569 2.37908,-28.8536 2.1627,9.19615 -2.2466,10.90217 -2.37908,28.8536 z" class="armpit_hair" id="XMLID_590_-04-8-9-4-9" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 353.82758,228.26371 c 2.63427,-8.3205 2.8094,-19.55701 13.30247,-25.45963 -2.25337,1.88046 -2.3103,2.56478 -2.3103,2.56478 0,0 3.92159,-2.74342 6.0617,-3.75361 -2.13734,1.00888 -7.90174,6.73287 -7.90174,6.73287 0,0 5.25855,-3.57777 7.96714,-4.85629 -2.65821,1.36333 -7.78621,6.57323 -7.78621,6.57323 0,0 5.96459,-4.60503 10.05437,-5.34594 -4.10883,0.74436 -10.03306,6.87998 -10.03306,6.87998 0,0 6.35061,-4.58166 9.43389,-4.32646 -3.08434,-0.25529 -10.12328,6.20939 -10.12328,6.20939 0,0 6.98773,-5.58977 9.97576,-4.51804 -2.94589,-1.05661 -10.71107,6.34907 -10.71107,6.34907 0,0 6.61595,-4.68536 9.63061,-3.60408 -3.02656,-1.08555 -10.21842,5.09377 -10.21842,5.09377 0,0 0.60053,-0.37366 1.37241,-0.41639 -4.47366,3.77416 -4.63821,6.81245 -8.71427,11.87735 z" class="armpit_hair" id="XMLID_590_-04-8-9-4-9" sodipodi:nodetypes="ccccccccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob.tw b/src/art/vector_revamp/layers/Boob.tw deleted file mode 100644 index 8ec7f37f7feb55820863cae599ad34384af9ade0..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g1065"><path d="m 270.34578,196.55707 c -12.11058,4.47607 -21.33353,10.38476 -27.42519,17.04587 -12.80622,2.09756 -20.32972,7.4459 -28.75481,12.23956 -3.26563,12.08634 -5.14611,24.17711 3.20444,36.14887 5.15461,10.33009 14.73224,11.95658 25.07247,9.77599" id="path1520" class="shadow"/><path d="m 242.44269,271.76736 c 12.30515,-2.59845 22.51491,-12.16054 31.77186,-26.40779 l -3.86877,-48.8025" id="path1515" class="shadow boob_inner_lower_shadow"/><path d="m 274.21455,245.35957 c 2.55546,-15.31136 11.88781,-30.84621 8.29579,-40.31411 -1.93843,-3.02612 -7.62333,-5.27685 -12.16456,-8.48839" id="path1056" class="shadow boob_inner_upper_shadow"/><path d="m 270.34578,196.55707 c -10.88689,5.21029 -20.86401,10.66647 -27.42519,17.04587 -11.65071,2.84039 -19.91205,7.7144 -28.75481,12.23956 -2.67807,12.04962 -3.90036,24.09925 3.20444,36.14887 6.4429,9.38534 15.09934,11.68738 25.07247,9.77599 11.51523,-3.31656 22.0236,-12.60719 31.77186,-26.40779 0.22345,-1.05729 4.92073,-9.04451 4.92073,-9.04451 0,0 -0.41676,-3.88071 1.50778,-14.12355 1.3857,-6.23043 2.34993,-12.6411 1.86728,-17.14605 -0.96883,-4.15211 -3.23773,-9.62848 -12.16456,-8.48839 z" class="skin boob" id="XMLID_588_" sodipodi:nodetypes="cccccccccc"/></g><g transform="'+_art_transform+'"id="g1069"><path d="m 279.17149,241.98615 c 6.27955,31.26499 54.26517,32.7166 68.84808,6.56488" id="path1518" class="shadow boob_inner_lower_shadow"/><path d="m 348.02257,248.51893 c 8.65355,-12.30579 11.43144,-30.88254 -0.97284,-43.4189 l -67.88132,36.91816" id="path1524" class="shadow"/><path d="m 347.04977,205.10006 c -14.67089,-12.96908 -28.30339,-7.92276 -38.99561,-8.00176 -24.21445,12.16832 -31.98806,25.58323 -28.88571,44.91992" id="path1050" class="shadow boob_inner_upper_shadow"/><path sodipodi:nodetypes="csccc" id="path1042" class="skin boob" d="m 348.02261,248.51896 c 7.65465,-13.28462 11.02267,-29.82946 -0.97284,-43.4189 -13.16154,-14.9104 -25.83696,-10.05 -38.46528,-8.66467 -23.32793,11.82921 -31.64375,27.39415 -29.41604,45.58283 9.02747,30.88382 54.47239,31.60541 68.85416,6.50074 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Areola.tw b/src/art/vector_revamp/layers/Boob_Areola.tw deleted file mode 100644 index ee04e34ee13938b4b98dde5484ff2e64da4b009c..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Areola.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Areola [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g1027" transform="matrix(1.0036748,0,0,1.0036748,-0.82340761,-0.81073623)"><path id="XMLID_592_" class="areola" d="m 224.06836,220.86839 c 0,0 -0.39131,3.31112 -2.35082,6.67438 -1.9595,3.36326 -9.06529,7.55149 -9.06529,7.55149 0,0 -0.24448,-6.64388 0.46015,-8.06326 0.70464,-1.41938 1.13831,-2.19079 3.06684,-3.56226 2.42539,-1.72481 7.88912,-2.60035 7.88912,-2.60035 z" sodipodi:nodetypes="czczsc"/><path id="path3138" class="shadow" d="m 213.5671,226.66466 c 0,0 -1.9262,-1.30979 -1.44901,-2.97247 0.72632,-2.03671 3.90583,-3.99822 5.40947,-2.60058 0.64103,0.66345 0.91915,1.64032 0.91915,1.64032 -0.84654,2.52287 -2.28501,3.51024 -4.87961,3.93273 z" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccccc" d="m 213.5671,226.66466 c 0,0 -1.91057,-1.4426 -1.44901,-2.97247 0.64038,-1.86093 4.03474,-3.95134 5.40947,-2.60058 0.55119,0.59704 0.91915,1.64032 0.91915,1.64032 -0.80357,2.35099 -2.35142,3.51024 -4.87961,3.93273 z" class="areola" id="XMLID_592_-5"/><path id="path3138-3" class="shadow" d="m 213.01263,222.46595 c 0.75085,-0.36944 1.35215,-0.13684 2.65343,0.43025 -1.21381,-0.3264 -1.67129,-0.78189 -2.65343,-0.43025 z" sodipodi:nodetypes="ccc"/><path id="path3138-3-7" class="shadow" d="m 214.0315,222.35507 c 0.054,-0.31278 0.30778,-0.85942 1.02206,-0.7758 -0.84623,0.0699 -0.82527,0.44046 -1.02206,0.7758 z" sodipodi:nodetypes="ccc"/><path id="path3138-3-7-4" class="shadow" d="m 214.73116,227.20469 c 2.09105,-0.65605 3.58115,-2.24941 3.44394,-3.80315 0.0522,0.95271 -0.13777,2.92874 -3.44394,3.80315 z" sodipodi:nodetypes="ccc"/></g><g transform="'+_art_transform+'"id="g1036" transform="matrix(1.0212835,0,0,1.0212835,-6.4679552,-4.3556102)"><path id="XMLID_593_" d="m 314.17289,222.1657 c -5.09999,-0.56255 -10.25389,-4.32121 -10.27808,-7.69008 -0.0309,-4.29936 6.47452,-8.78659 12.1893,-8.53652 5.37398,0.23516 10.98206,3.74015 9.88043,8.95113 -1.10163,5.21098 -5.6937,7.9481 -11.79165,7.27547 z" class="areola" sodipodi:nodetypes="sssss"/><path id="path989" d="m 310.66882,210.47597 c -0.72765,-0.9361 -0.60753,-2.39965 -0.40684,-3.08293 0.48386,-1.83702 2.61601,-2.7715 4.4734,-2.74561 1.62871,0.0227 2.55147,0.26096 3.28224,1.71217 0.79333,0.61754 0.84585,1.67252 0.80454,1.72014 -0.21669,1.5267 -1.22761,3.71824 -4.19389,3.59586 -2.37989,0.11991 -3.19283,-0.0317 -3.95945,-1.19963 z" class="shadow" sodipodi:nodetypes="ccscccc"/><path sodipodi:nodetypes="csscccc" class="areola" d="m 310.66882,210.47597 c -0.49696,-0.95917 -0.60188,-2.41088 -0.40684,-3.08293 0.51036,-1.75854 2.81349,-2.72569 4.4734,-2.74561 1.63641,-0.0196 2.56087,0.48653 3.28224,1.71217 0.66484,0.73435 0.82922,1.68764 0.80454,1.72014 -0.28461,1.4286 -1.29226,3.62486 -4.19389,3.59586 -2.24349,0.003 -3.12877,-0.0866 -3.95945,-1.19963 z" id="XMLID_593_-8"/><path id="path3990-3" d="m 311.71553,206.60898 c 1.5946,-0.62 3.11448,0.2184 4.10335,1.04883 -1.18741,-0.57935 -2.70593,-1.37335 -4.10335,-1.04883 z" class="shadow" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 313.5577,206.59854 c 0.90959,-0.79125 1.45758,-1.00189 2.8221,-0.87304 -1.2758,0.0449 -1.85557,0.27784 -2.8221,0.87304 z" id="path3990-3-1"/><path id="path3990-3-0" d="m 311.13963,210.57541 c 7.68349,1.59713 7.01758,-3.72676 6.8783,-4.2566 0.46399,3.23262 -1.47339,5.97095 -6.8783,4.2566 z" class="shadow" sodipodi:nodetypes="ccc"/><path id="path3138-3-7-4-8" class="shadow" d="m 312.99355,212.30782 c 4.05401,-0.41435 5.26872,-1.30083 5.69395,-3.68596 -0.0494,2.76521 -2.25496,3.48343 -5.69395,3.68596 z" sodipodi:nodetypes="ccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Areola_Piercing.tw b/src/art/vector_revamp/layers/Boob_Areola_Piercing.tw deleted file mode 100644 index cc9f28014a738e903febb945f5995e284219a850..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Areola_Piercing.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Areola_Piercing [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g1412" transform="matrix(1.0263785,0,0,1.0263785,-8.6733354,-5.3910578)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/><g transform="'+_art_transform+'"id="g1417" transform="matrix(1.0228023,0,0,1.0228023,-5.1326497,-5.0109358)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/><g transform="'+_art_transform+'"id="g3985" transform="matrix(1,0,0,0.99446198,0,1.3046736)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path class="shadow" sodipodi:nodetypes="accaa" id="path5169" d="m 320.11944,205.11636 c -5e-5,0.72098 -0.77245,1.52498 -1.52538,1.52498 -0.5209,-0.31798 -0.53158,-1.16226 -1.57142,-1.64877 0,-0.75293 0.80074,-1.47651 1.4996,-1.47341 0.75084,0.003 1.59725,0.84217 1.5972,1.5972 z"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5171" d="m 314.10532,222.82749 c 0,0.75293 -0.84428,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75292,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 319.97541,205.11636 c 0,0.68447 -0.76752,1.452 -1.452,1.452 -0.47354,-0.28907 -0.48325,-1.0566 -1.42856,-1.49888 0,-0.68448 0.76064,-1.40789 1.42856,-1.40512 0.68448,0.003 1.452,0.76752 1.452,1.452 z" id="path2749-8-39" sodipodi:nodetypes="accaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5173" d="m 225.29267,220.63292 c 0,0.75293 -0.84428,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75292,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 313.96012,222.82749 c 0,0.68448 -0.76753,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68447,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-42" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5175" d="m 214.29267,234.13292 c 0,0.75293 -0.84428,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75292,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 225.14747,220.63292 c 0,0.68448 -0.76753,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68447,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-40" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path d="m 214.14747,234.13292 c 0,0.68448 -0.76753,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68447,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-2" sodipodi:nodetypes="aaaaa" class="steel_piercing"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Areola_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Boob_Areola_Piercing_Heavy.tw deleted file mode 100644 index a81c2a1c12e50f0ca5958db1389eeffdd7c773ea..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Areola_Piercing_Heavy.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Areola_Piercing_Heavy [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g3979" transform="matrix(1,0,0,0.99598748,0,0.91583618)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path d="m 323.72007,212.66938 c 0,0 -0.14021,-4.48814 1.43,-5.61 1.85573,-1.32586 5.3301,-1.17681 6.82,0.55 1.44035,1.66939 0.96976,4.90469 -0.44,6.6 -1.13722,1.36756 -5.17,1.32 -5.17,1.32 0,0 3.53555,-0.87174 4.29,-2.31 0.61694,-1.17613 0.48099,-3.0031 -0.44,-3.96 -1.02846,-1.06855 -3.08027,-1.33662 -4.4,-0.66 -1.35712,0.69579 -2.09,4.07 -2.09,4.07 z" class="shadow" id="path5163" sodipodi:nodetypes="caaacaaac"/><path d="m 306.87368,212.28604 c 0,0 0.14021,-4.48814 -1.43,-5.61 -1.85573,-1.32586 -5.3301,-1.17681 -6.82,0.55 -1.44035,1.66939 -0.96976,4.90469 0.44,6.6 1.13722,1.36756 5.17,1.32 5.17,1.32 0,0 -3.53555,-0.87174 -4.29,-2.31 -0.61694,-1.17613 -0.48099,-3.0031 0.44,-3.96 1.02846,-1.06855 3.08027,-1.33662 4.4,-0.66 1.35712,0.69579 2.09,4.07 2.09,4.07 z" class="shadow" id="path5165" sodipodi:nodetypes="caaacaaac"/><path d="m 218.55457,226.88776 c 0,0 0.60718,-2.30763 1.54375,-2.84091 2.13422,-1.21521 5.78808,-1.60634 7.36253,0.27852 0.7214,0.86362 0.32939,2.55535 -0.475,3.34226 -1.33939,1.31028 -5.58127,0.66845 -5.58127,0.66845 0,0 3.80528,0.19144 4.63127,-1.1698 0.35636,-0.58727 0.0485,-1.56058 -0.47501,-2.00535 -1.20965,-1.02766 -3.25098,-0.85604 -4.75002,-0.33422 -0.96201,0.33488 -2.25625,2.06105 -2.25625,2.06105 z" class="shadow" id="path5167" sodipodi:nodetypes="caaacaaac"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4" class="steel_piercing" d="m 324.13472,212.50417 c 0,0 -0.12746,-4.08013 1.3,-5.1 1.68703,-1.20533 4.84555,-1.06983 6.2,0.5 1.30941,1.51763 0.8816,4.45881 -0.4,6 -1.03383,1.24324 -4.7,1.2 -4.7,1.2 0,0 3.21414,-0.79249 3.9,-2.1 0.56086,-1.06921 0.43727,-2.73009 -0.4,-3.6 -0.93496,-0.97141 -2.80024,-1.21511 -4,-0.6 -1.23374,0.63254 -1.9,3.7 -1.9,3.7 z"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4-7" class="steel_piercing" d="m 306.45903,212.12083 c 0,0 0.12746,-4.08013 -1.3,-5.1 -1.68703,-1.20533 -4.84555,-1.06983 -6.2,0.5 -1.30941,1.51763 -0.8816,4.45881 0.4,6 1.03383,1.24324 4.7,1.2 4.7,1.2 0,0 -3.21414,-0.79249 -3.9,-2.1 -0.56086,-1.06921 -0.43727,-2.73009 0.4,-3.6 0.93496,-0.97141 2.80024,-1.21511 4,-0.6 1.23374,0.63254 1.9,3.7 1.9,3.7 z"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4-3" class="steel_piercing" d="m 218.97663,226.78508 c 0,0 0.55198,-2.09785 1.40341,-2.58265 1.9402,-1.10474 5.26189,-1.46031 6.69321,0.2532 0.65582,0.78511 0.29944,2.32305 -0.43182,3.03842 -1.21763,1.19116 -5.07388,0.60768 -5.07388,0.60768 0,0 3.45934,0.17404 4.21024,-1.06345 0.32397,-0.53389 0.0441,-1.41871 -0.43182,-1.82305 -1.09969,-0.93424 -2.95544,-0.77822 -4.3182,-0.30384 -0.87456,0.30444 -2.05114,1.87369 -2.05114,1.87369 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Areola_Piercing_NoBoob.tw b/src/art/vector_revamp/layers/Boob_Areola_Piercing_NoBoob.tw deleted file mode 100644 index 379f4fcabb92d4bd92e7f8282d8aa6754ab0a580..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Areola_Piercing_NoBoob.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Areola_Piercing_NoBoob [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g3997" transform="matrix(1,0,0,1.0288842,0,-7.1288108)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5146" d="m 249.37141,236.16209 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 249.22621,236.16209 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-7" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5148" d="m 248.77479,245.35448 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 248.62959,245.35448 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-5" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5150" d="m 315.53009,232.95802 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 315.38489,232.95802 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-76" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5152" d="m 314.20427,242.60621 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 314.05907,242.60621 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-4" sodipodi:nodetypes="aaaaa" class="steel_piercing"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Areola_Piercing_NoBoob_Heavy.tw b/src/art/vector_revamp/layers/Boob_Areola_Piercing_NoBoob_Heavy.tw deleted file mode 100644 index 8e7c4440db9a2e4c694addec4e26781e08887522..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Areola_Piercing_NoBoob_Heavy.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Areola_Piercing_NoBoob_Heavy [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"transform="matrix(1.0049807,0,0,1.0049807,-1.6578337,-0.99661844)" id="g1669" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/><g transform="'+_art_transform+'"transform="matrix(1.0106254,0,0,1.0106254,-2.44532,-2.2864495)" id="g1677" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/><g transform="'+_art_transform+'"id="g3991" transform="matrix(1,0,0,1.0072234,0,-1.7672168)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path d="m 316.39389,239.90478 c 0,0 3.2247,3.12482 5.1113,2.71879 2.22965,-0.47988 4.45815,-3.14958 4.18403,-5.41376 -0.265,-2.18891 -2.97434,-4.01868 -5.17703,-4.1173 -1.77684,-0.0795 -4.45626,2.93478 -4.45626,2.93478 0,0 3.02457,-2.02781 4.59604,-1.6176 1.28507,0.33544 2.54463,1.66577 2.63232,2.991 0.0979,1.47984 -1.08496,3.17766 -2.4737,3.69817 -1.42807,0.53526 -4.4167,-1.19408 -4.4167,-1.19408 z" class="shadow" id="path5154" sodipodi:nodetypes="caaacaaac"/><path d="m 309.09912,239.33692 c 0,0 -3.63548,2.6356 -5.44536,1.96596 -2.13901,-0.79141 -3.96612,-3.75032 -3.37348,-5.95269 0.57293,-2.12915 3.51451,-3.55595 5.7089,-3.34101 1.77014,0.17338 3.99471,3.53744 3.99471,3.53744 0,0 -2.70621,-2.43649 -4.31999,-2.25342 -1.31966,0.1497 -2.75526,1.28782 -3.03012,2.5872 -0.30692,1.45096 0.62309,3.29946 1.9239,4.01176 1.33767,0.73248 4.54144,-0.55524 4.54144,-0.55524 z" class="shadow" id="path5156" sodipodi:nodetypes="caaacaaac"/><path d="m 250.11413,242.34048 c 0,0 2.50391,3.06938 4.10816,2.71878 2.07541,-0.45357 3.61174,-3.30398 3.36288,-5.41376 -0.22858,-1.9378 -2.21189,-4.02594 -4.161,-4.1173 -1.5418,-0.0723 -3.58167,2.93479 -3.58167,2.93479 0,0 2.39892,-1.97771 3.69402,-1.61761 1.17658,0.32716 2.04104,1.77207 2.1157,2.991 0.0856,1.39697 -0.68667,3.18357 -1.98821,3.69817 -1.161,0.45903 -3.54988,-1.19407 -3.54988,-1.19407 z" class="shadow" id="path5159" sodipodi:nodetypes="caaacaaac"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6" class="steel_piercing" d="m 316.80209,239.7203 c 0,0 2.93154,2.84074 4.64663,2.47162 2.02696,-0.43625 4.05287,-2.86325 3.80367,-4.9216 -0.24091,-1.98991 -2.70395,-3.65334 -4.70639,-3.743 -1.61531,-0.0723 -4.05115,2.66799 -4.05115,2.66799 0,0 2.74961,-1.84347 4.17822,-1.47055 1.16824,0.30495 2.3133,1.51434 2.39302,2.71909 0.089,1.34531 -0.98633,2.88878 -2.24882,3.36197 -1.29825,0.4866 -4.01518,-1.08552 -4.01518,-1.08552 z"/><path d="m 244.44613,241.71183 c 0,0 -2.00072,2.39045 -3.16913,1.96596 -1.96379,-0.71346 -2.44375,-3.91931 -1.96331,-5.95269 0.36115,-1.52853 1.75982,-3.49874 3.32249,-3.34101 1.40388,0.1417 2.32487,3.53744 2.32487,3.53744 0,0 -1.39697,-2.38913 -2.51418,-2.25342 -1.03607,0.12585 -1.59405,1.55735 -1.76347,2.5872 -0.22538,1.36995 -0.067,3.29109 1.11967,4.01176 0.76947,0.4673 2.64306,-0.55524 2.64306,-0.55524 z" class="shadow" id="path5161" sodipodi:nodetypes="caaacaaac"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-4" class="steel_piercing" d="m 308.73334,239.09718 c 0,0 -3.30498,2.396 -4.95033,1.78724 -1.94455,-0.71946 -3.60556,-3.40938 -3.0668,-5.41154 0.52085,-1.93559 3.19501,-3.23268 5.18991,-3.03728 1.60922,0.15762 3.63156,3.21586 3.63156,3.21586 0,0 -2.46019,-2.21499 -3.92727,-2.04857 -1.19969,0.13609 -2.50478,1.17075 -2.75465,2.352 -0.27902,1.31906 0.56644,2.99951 1.749,3.64706 1.21606,0.66589 4.12858,-0.50477 4.12858,-0.50477 z"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-7" class="steel_piercing" d="m 250.44258,242.15562 c 0,0 2.27628,2.79035 3.73469,2.47162 1.88674,-0.41234 3.2834,-3.00362 3.05716,-4.9216 -0.2078,-1.76164 -2.01081,-3.65995 -3.78272,-3.743 -1.40164,-0.0657 -3.25607,2.66799 -3.25607,2.66799 0,0 2.18084,-1.79792 3.3582,-1.47055 1.06962,0.29741 1.85549,1.61097 1.92337,2.71909 0.0778,1.26997 -0.62425,2.89415 -1.80747,3.36197 -1.05545,0.4173 -3.22716,-1.08552 -3.22716,-1.08552 z"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-4-1" class="steel_piercing" d="m 244.22839,241.47 c 0,0 -1.81884,2.17314 -2.88103,1.78724 -1.78526,-0.6486 -2.22159,-3.56301 -1.78483,-5.41154 0.32832,-1.38957 1.59984,-3.18067 3.02045,-3.03728 1.27625,0.12882 2.11352,3.21586 2.11352,3.21586 0,0 -1.26998,-2.17194 -2.28562,-2.04857 -0.94188,0.11441 -1.44914,1.41578 -1.60316,2.352 -0.20489,1.24541 -0.0609,2.9919 1.01789,3.64706 0.69951,0.42482 2.40278,-0.50477 2.40278,-0.50477 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Highlights1.tw b/src/art/vector_revamp/layers/Boob_Highlights1.tw deleted file mode 100644 index d862a90161b3faedcb3ed3252a7e465b772a1912..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Highlights1.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Highlights1 [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g2210" transform="matrix(1.0060951,0,0,1.0060951,-1.9605124,-1.2116124)"><path d="m 321.562,198.7844 c -2.25111,1.2044 -2.83496,3.23381 -2.89058,4.67945 1.40005,-0.6336 3.43888,-2.80656 2.89058,-4.67945 z" class="highlight1" id="path1139" sodipodi:nodetypes="ccc"/><path d="m 313.22303,216.21843 c -1.68861,1.7669 -1.74121,4.42131 -1.45308,5.80445 1.40005,-1.16485 2.00138,-3.93156 1.45308,-5.80445 z" class="highlight1" id="path1141" sodipodi:nodetypes="ccc"/><path d="m 250.26522,218.00147 c -4.7273,0.75979 -7.83647,2.53916 -10.64479,3.98691 4.08319,1.14699 9.56562,1.06857 10.64479,-3.98691 z" class="highlight1" id="path1143" sodipodi:nodetypes="ccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Highlights2.tw b/src/art/vector_revamp/layers/Boob_Highlights2.tw deleted file mode 100644 index f7fbc692aea0b897022a402499dec56ec07a5e84..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Highlights2.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Highlights2 [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g2226" transform="matrix(0.99843271,0,0,0.99843271,0.51131944,0.3030066)"><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9" class="highlight2" d="m 324.062,195.87815 c -2.25111,1.2044 -7.45996,3.89006 -5.39058,7.5857 4.2438,-0.0711 5.93888,-5.71281 5.39058,-7.5857 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7" class="highlight2" d="m 313.22303,216.21843 c -3.53236,3.2669 -5.77246,8.35881 -1.89058,10.3357 2.9938,-1.10235 3.78263,-5.83781 1.89058,-10.3357 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7" class="highlight2" d="m 256.23397,214.34522 c -7.63355,-1.99021 -15.11772,5.91416 -17.80104,7.67441 4.08319,1.14699 17.25312,2.91232 17.80104,-7.67441 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4" class="highlight2" d="m 313.50007,212.81652 c -1.45423,1.22002 -0.55371,1.5776 -0.29683,2.05444 0.91567,-0.49297 1.12638,-0.75968 0.29683,-2.05444 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-70" class="highlight2" d="m 325.92076,193.33159 c -0.70431,0.21003 -1.91359,0.15565 -1.19213,1.55319 2.16667,-0.20368 1.45317,-1.07242 1.19213,-1.55319 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5" class="highlight2" d="m 262.30677,208.04077 c -0.95431,-0.17346 -2.05373,0.57643 -1.9822,1.36001 0.65204,0.10878 1.99495,0.29667 1.9822,-1.36001 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1" class="highlight2" d="m 237.28097,221.17554 c -0.88687,-0.39276 -2.13167,0.0779 -2.2462,0.85637 0.60825,0.25889 1.86945,0.75696 2.2462,-0.85637 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9" class="highlight2" d="m 224.57022,224.30732 c -0.73318,-0.21518 -5.16322,0.19765 -5.64135,0.25254 0.7532,0.71279 5.59616,1.42803 5.64135,-0.25254 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-6" class="highlight2" d="m 214.65463,231.123 c -1.28043,3.08678 -0.887,13.93661 0.52713,15.49899 0.17285,-0.32564 -0.27027,-14.54836 -0.52713,-15.49899 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-4" class="highlight2" d="m 214.66568,228.54869 c -0.95299,0.64524 -0.46869,1.54719 -0.0583,1.90701 0.59665,-0.3531 0.32534,-1.4005 0.0583,-1.90701 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-62-3" class="highlight2" d="m 214.96934,223.37407 c -0.59995,0.17051 -1.09864,0.3604 -1.5163,0.72315 0.72663,0.2153 1.41533,0.1382 1.5163,-0.72315 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4-2" class="highlight2" d="m 315.14231,208.27176 c -1.11469,-1.53646 -2.19765,-0.93953 -2.69138,-0.71684 0.55133,0.56169 1.58949,0.72014 2.69138,0.71684 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4-2-1" class="highlight2" d="m 315.01568,205.51285 c -1.29777,-0.23638 -1.89173,0.15908 -2.19786,0.60584 1.13578,0.21924 1.34362,0.27207 2.19786,-0.60584 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-62-3-9" class="highlight2" d="m 214.99712,221.61733 c -0.26984,0.0314 -0.84473,0.21024 -0.92476,0.7089 0.27569,-0.29941 0.86343,-0.25926 0.92476,-0.7089 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge.tw b/src/art/vector_revamp/layers/Boob_Huge.tw new file mode 100644 index 0000000000000000000000000000000000000000..0fb849527a549550eb1c3e90e1259886523db7a4 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2276" transform="'+_boob_right_art_transform+'" ><path sodipodi:nodetypes="cccccccc" id="path2272" class="shadow" d="m 251.94799,202.06126 c -5.48922,8.60644 -14.21655,16.55553 -29.5132,24.802 -2.66627,10.79115 -4.57141,18.93814 5.09449,27.8494 6.92439,7.7255 14.82723,9.34865 24.00444,4.54068 9.9758,-4.87332 -2.88363,-0.91055 5.62068,-13.48656 0.51484,-8.64963 4.02743,-15.80582 5.08765,-21.2787 1.24098,-5.57972 1.78028,-10.00392 -5.51886,-16.34477 -5.28827,-4.59399 1.66486,-7.34429 -4.7752,-6.08205 z"/><path d="m 251.94799,202.06126 c -4.58269,8.82904 -14.93008,17.30782 -29.5132,24.802 -2.39837,10.79115 -3.45193,18.69011 5.09449,27.8494 7.45154,6.95799 15.65465,8.14394 24.00444,4.54068 9.42591,-5.13062 -3.89307,-1.68704 5.62068,-13.48656 3.23278,-7.85413 5.17648,-15.27549 6.2367,-20.74837 1.24098,-5.57972 -0.87916,-14.57204 -5.2095,-19.8803 -1.46475,-1.79553 -0.006,-6.28363 -6.23361,-3.07685 z" class="skin boob" id="path2274" sodipodi:nodetypes="ccccccac"/></g><g id="g2282" transform="'+_boob_left_art_transform+'" ><path d="m 322.52175,198.05651 c -4.11529,-0.17415 -4.6911,0.99135 -11.14734,1.40095 -6.05493,6.21998 -12.33211,13.08022 -17.97286,20.11452 -8.89026,9.35249 -11.15253,21.87785 -4.29471,30.50069 8.26604,12.77039 34.79999,12.67441 44.46576,0.60856 6.73235,-7.12225 6.42177,-20.48446 -1.27924,-30.36173 -5.66858,-9.77024 -9.11055,-18.938 -9.77161,-22.26299 z" class="shadow" id="path2307" sodipodi:nodetypes="ccccccc"/><path sodipodi:nodetypes="ccssssc" id="path2280" class="skin boob" d="m 322.52175,198.05651 c -4.11529,-1.2502 -4.6911,-1.40468 -11.14734,1.40095 -5.76044,6.21998 -11.66471,13.08022 -17.97286,20.11452 -8.22932,9.17663 -10.424,21.68399 -4.29471,30.50069 8.32079,11.96907 34.87117,11.63286 44.46576,0.60856 6.19858,-7.12225 5.94519,-20.48446 -1.27924,-30.36173 -6.92244,-9.4644 -9.19482,-18.91693 -9.77161,-22.26299 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Areola_Piercing.tw b/src/art/vector_revamp/layers/Boob_Huge_Areola_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..b3c9e367957648797bbbe2be5219e5748ca99d15 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Areola_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Areola_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2929" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/><g id="g2931" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/><g id="g3099" transform="'+_boob_left_art_transform+'" ><path class="shadow" sodipodi:nodetypes="accaa" id="path2933" d="m 315.07024,219.70277 c 0.0554,0.71485 -0.77245,1.51654 -1.52538,1.51654 -0.5209,-0.31622 -0.77768,-0.63239 -1.81752,-1.1162 0,-0.74876 0.67951,-1.68337 1.43634,-1.78429 0.77841,-0.1038 1.84592,0.60099 1.90656,1.38395 z"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path2935" d="m 311.29057,230.82984 c 0,0.75085 -0.84636,1.58836 -1.5972,1.58836 -0.75085,0 -1.59721,-0.83751 -1.5972,-1.58836 0,-0.75084 0.84635,-1.58835 1.5972,-1.58835 0.75084,0 1.59719,0.83751 1.5972,1.58835 z"/><path d="m 314.92621,219.70277 c 0.0577,0.68014 -0.76752,1.44396 -1.452,1.44396 -0.47354,-0.28747 -0.72935,-0.52731 -1.67466,-0.96714 0,-0.68069 0.64168,-1.61234 1.3653,-1.71638 0.71063,-0.10217 1.70063,0.5242 1.76136,1.23956 z" id="path2937" sodipodi:nodetypes="accaa" class="steel_piercing"/><path d="m 311.14537,230.82984 c 0,0.68259 -0.76942,1.44396 -1.452,1.44396 -0.68259,0 -1.45201,-0.76137 -1.452,-1.44396 0,-0.68258 0.76941,-1.44395 1.452,-1.44395 0.68258,0 1.45199,0.76137 1.452,1.44395 z" id="path2941" sodipodi:nodetypes="aaaaa" class="steel_piercing"/></g><g id="g3105" transform="'+_boob_right_art_transform+'" ><path class="shadow" sodipodi:nodetypes="aaaaa" id="path2939" d="m 227.38819,224.56136 c 0,0.75085 -0.84635,1.58836 -1.5972,1.58836 -0.75085,0 -1.5972,-0.83751 -1.5972,-1.58836 0,-0.75084 0.84636,-1.58835 1.5972,-1.58835 0.75084,0 1.5972,0.83751 1.5972,1.58835 z"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path2943" d="m 221.66565,235.14913 c 0,0.75084 -0.84636,1.58835 -1.5972,1.58835 -0.75084,0 -1.5972,-0.83751 -1.5972,-1.58835 0,-0.75084 0.84636,-1.58835 1.5972,-1.58835 0.75084,0 1.5972,0.83751 1.5972,1.58835 z"/><path d="m 227.24299,224.56136 c 0,0.68259 -0.76941,1.44396 -1.452,1.44396 -0.68259,0 -1.452,-0.76137 -1.452,-1.44396 0,-0.68258 0.76941,-1.44395 1.452,-1.44395 0.68258,0 1.452,0.76137 1.452,1.44395 z" id="path2945" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path d="m 221.52045,235.14913 c 0,0.68259 -0.76941,1.44396 -1.452,1.44396 -0.68259,0 -1.452,-0.76137 -1.452,-1.44396 0,-0.68259 0.76941,-1.44396 1.452,-1.44396 0.68259,0 1.452,0.76137 1.452,1.44396 z" id="path2947" sodipodi:nodetypes="aaaaa" class="steel_piercing"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Areola_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Boob_Huge_Areola_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..7e15d90ee8d55f6e5305810d22ff3602cf470efd --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Areola_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Areola_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g3085" transform="'+_boob_left_art_transform+'" ><path d="m 315.68416,222.90053 c 0,0 -0.13465,-4.47036 1.43,-5.58749 1.85611,-1.32523 5.3301,-1.17894 6.82,0.54779 1.43465,1.66269 0.96517,4.88584 -0.44,6.57352 -1.13778,1.36653 -5.17,1.3147 -5.17,1.3147 0,0 3.53534,-0.86423 4.29,-2.30073 0.61522,-1.17109 0.47784,-2.99147 -0.44,-3.94411 -1.02891,-1.06792 -3.08003,-1.33322 -4.4,-0.65735 -1.35317,0.69287 -2.09,4.05367 -2.09,4.05367 z" class="shadow" id="path2953" sodipodi:nodetypes="caaacaaac"/><path d="m 305.90661,222.83383 c 0,0 0.13465,-4.47036 -1.43,-5.58749 -1.85611,-1.32523 -5.3301,-1.17893 -6.82,0.5478 -1.43464,1.66269 -0.96516,4.88583 0.44,6.57351 1.13777,1.36653 5.17,1.31471 5.17,1.31471 0,0 -3.53534,-0.86423 -4.29,-2.30073 -0.61522,-1.17109 -0.47784,-2.99147 0.44,-3.94411 1.02891,-1.06792 3.08003,-1.33323 4.4,-0.65736 1.35317,0.69287 2.09,4.05367 2.09,4.05367 z" class="shadow" id="path2955" sodipodi:nodetypes="caaacaaac"/><path sodipodi:nodetypes="caaacaaac" id="path2959" class="steel_piercing" d="m 316.09881,222.73598 c 0,0 -0.12241,-4.06397 1.3,-5.07954 1.68738,-1.20475 4.84555,-1.07175 6.2,0.498 1.30422,1.51153 0.87742,4.44167 -0.4,5.97592 -1.03434,1.2423 -4.7,1.19519 -4.7,1.19519 0,0 3.21395,-0.78567 3.9,-2.09158 0.55929,-1.06463 0.4344,-2.71952 -0.4,-3.58555 -0.93538,-0.97084 -2.80003,-1.21202 -4,-0.59759 -1.23016,0.62988 -1.9,3.68515 -1.9,3.68515 z"/><path sodipodi:nodetypes="caaacaaac" id="path2961" class="steel_piercing" d="m 305.49196,222.66929 c 0,0 0.12241,-4.06397 -1.3,-5.07954 -1.68737,-1.20475 -4.84554,-1.07176 -6.2,0.49799 -1.30423,1.51154 -0.87743,4.44168 0.4,5.97593 1.03434,1.2423 4.7,1.19518 4.7,1.19518 0,0 -3.21395,-0.78566 -3.9,-2.09157 -0.5593,-1.06463 -0.4344,-2.71952 0.4,-3.58556 0.93538,-0.97084 2.80003,-1.21202 4,-0.59759 1.23016,0.62989 1.9,3.68516 1.9,3.68516 z"/></g><g id="g3109" transform="'+_boob_right_art_transform+'" ><path d="m 225.06547,228.29066 c 0,0 0.60967,-2.29861 1.54375,-2.82952 2.13513,-1.21356 5.78848,-1.60777 7.36253,0.27741 0.71838,0.86037 0.32663,2.54546 -0.475,3.32885 -1.34,1.30951 -5.58127,0.66576 -5.58127,0.66576 0,0 3.80544,0.19579 4.63127,-1.1651 0.35502,-0.58505 0.0468,-1.55455 -0.47501,-1.99731 -1.21025,-1.02692 -3.25057,-0.85339 -4.75002,-0.33287 -0.96055,0.33345 -2.25625,2.05278 -2.25625,2.05278 z" class="shadow" id="path2957" sodipodi:nodetypes="caaacaaac"/><path sodipodi:nodetypes="caaacaaac" id="path2963" class="steel_piercing" d="m 225.48753,228.18839 c 0,0 0.55425,-2.08964 1.40341,-2.57229 1.94103,-1.10324 5.26225,-1.46162 6.69321,0.25218 0.65308,0.78216 0.29694,2.31405 -0.43182,3.02623 -1.21818,1.19047 -5.07388,0.60524 -5.07388,0.60524 0,0 3.45949,0.17799 4.21024,-1.05918 0.32275,-0.53186 0.0425,-1.41322 -0.43182,-1.81573 -1.10022,-0.93357 -2.95507,-0.77582 -4.3182,-0.30262 -0.87323,0.30313 -2.05114,1.86617 -2.05114,1.86617 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Areolae_Heart.tw b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Heart.tw new file mode 100644 index 0000000000000000000000000000000000000000..8c44204bd44345117877b1d57d8a46f18ce6d88e --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Heart.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Areolae_Heart [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2618" ><path sodipodi:nodetypes="cczcac" d="m 232.52122,225.53565 c 4.39417,7.66356 -5.99208,11.98476 -10.60277,20.32639 -1.91692,-2.41158 -3.13082,-10.98168 -2.2593,-14.47377 0.87152,-3.49209 1.27608,-4.34257 4.50054,-6.25453 4.9477,-1.91122 6.43637,-1.61802 8.36153,0.4019 0,0 0,1e-5 0,1e-5 z" class="areola" id="path2616"/></g><g transform="'+_boob_left_art_transform+'" id="g2623" ><path sodipodi:nodetypes="czczcc" class="areola" d="m 308.00692,240.95895 c -4.20528,-2.9951 -12.71977,-16.79856 -6.01226,-22.33579 6.70751,-5.53723 9.65531,-0.0103 9.65531,-0.0103 0,0 5.61579,-5.19127 10.77973,1.06406 5.16394,6.25533 -9.37618,18.97767 -14.42277,21.28185 z" id="path2621"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Areolae_Huge.tw b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Huge.tw new file mode 100644 index 0000000000000000000000000000000000000000..cf9c4f74b8d32bf7bde558856b2237c74b50dda3 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Huge.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Areolae_Huge [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2598" transform="'+_boob_right_art_transform+'" ><path id="path2596" class="areola" d="m 236.62959,218.29317 c 0,0 1.7243,6.58569 -0.67504,13.922 -2.39927,7.33629 -12.70181,16.77885 -12.70181,16.77885 -2.04899,-3.31055 -4.6839,-13.22984 -3.74138,-17.39573 0.94253,-4.16588 0.57641,-2.75255 3.74464,-6.21424 3.9845,-4.35363 13.37359,-7.09088 13.37359,-7.09088 z" sodipodi:nodetypes="czczsc"/></g><g id="g2602" transform="'+_boob_left_art_transform+'" ><path id="path2600" d="m 310.21331,242.70695 c -8.66357,-0.95563 -17.41869,-7.34062 -17.45978,-13.06343 -0.0525,-7.30353 10.99852,-14.92615 20.70646,-14.50135 9.12899,0.39946 18.65567,6.35353 16.78428,15.20563 -1.87139,8.85212 -9.67212,13.50176 -20.03096,12.35915 z" class="areola" sodipodi:nodetypes="sssss"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Areolae_Large.tw b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Large.tw new file mode 100644 index 0000000000000000000000000000000000000000..b6a26c3806d3d7fcc98d7f75c9fd6fde63530e34 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Large.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Areolae_Large [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2578" transform="'+_boob_right_art_transform+'" ><path id="path2576" class="areola" d="m 228.60733,223.47737 c 0,0 0.30094,3.19792 -0.8647,6.76203 -1.16561,3.5641 -7.01179,8.94586 -7.01179,8.94586 0,0 -1.57367,-6.20853 -1.19696,-7.68793 0.37668,-1.47941 0.62921,-2.29369 2.16839,-3.97544 1.93574,-2.11507 6.90506,-4.04452 6.90506,-4.04452 z" sodipodi:nodetypes="czczsc"/></g><g id="g2582" transform="'+_boob_left_art_transform+'" ><path id="path2580" d="m 310.0179,234.96812 c -4.61957,-0.50956 -9.28796,-3.91415 -9.30987,-6.96566 -0.028,-3.89437 5.86461,-7.95889 11.04106,-7.73238 4.86774,0.213 9.94754,3.38782 8.94968,8.10792 -0.99786,4.72011 -5.15735,7.19938 -10.68087,6.59012 z" class="areola" sodipodi:nodetypes="sssss"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Areolae_Normal.tw b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..c8812ae7565e5e580220213834b7e1ec4ee7482e --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Areolae_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2568" ><path sodipodi:nodetypes="czczsc" d="m 227.14891,224.34464 c 0,0 0.24231,2.57487 -0.69623,5.44459 -0.93851,2.86971 -5.64569,7.20295 -5.64569,7.20295 0,0 -1.26707,-4.99893 -0.96376,-6.1901 0.30329,-1.19118 0.50662,-1.84681 1.74593,-3.20091 1.5586,-1.70299 5.55975,-3.25653 5.55975,-3.25653 z" class="areola" id="path2566"/></g><g transform="'+_boob_left_art_transform+'" id="g2572" ><path sodipodi:nodetypes="sssss" class="areola" d="m 309.93277,231.30328 c -3.40637,-0.37574 -6.84874,-2.88621 -6.8649,-5.13633 -0.0207,-2.87162 4.32444,-5.86871 8.14144,-5.70169 3.58937,0.15706 7.3351,2.49811 6.5993,5.97861 -0.7358,3.4805 -3.80292,5.30866 -7.87584,4.85941 z" id="path2570"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Areolae_Star.tw b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Star.tw new file mode 100644 index 0000000000000000000000000000000000000000..0a605023d410ee168b0e98ec3a59aafa9033bdd8 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Star.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Areolae_Star [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2608" ><path sodipodi:nodetypes="cccccccssc" d="m 234.36369,221.2914 c -5.83495,3.07543 -6.41117,3.88752 -8.98865,6.65172 3.10943,0.0163 3.09282,-0.28462 8.16273,1.84366 -7.00102,0.23835 -9.44665,2.25868 -9.44665,2.25868 0,0 -0.69998,1.91384 1.81583,11.39761 -3.75631,-5.09859 -4.6232,-9.07753 -4.6232,-9.07753 0,0 -0.7342,1.92505 -0.23957,8.04149 -1.78578,-3.48555 -1.6116,-7.85334 -1.6116,-9.31051 0,-2.16436 0.62706,-3.42478 3.74464,-6.54236 4.17315,-4.17315 11.18647,-5.26276 11.18647,-5.26276 z" class="areola" id="path2606"/></g><g transform="'+_boob_left_art_transform+'" id="g2612" ><path sodipodi:nodetypes="ccccccccccc" class="areola" d="m 309.21943,229.27224 c -3.76567,1.79157 -6.84161,5.28921 -10.10232,7.39152 1.44885,-3.26388 2.80438,-7.85021 4.89355,-10.83394 -2.31674,-1.93975 -5.18388,-2.96451 -8.37065,-3.68536 3.56307,-1.07962 7.79205,-1.81135 11.55083,-1.25273 1.41528,-1.99803 2.88366,-2.69755 5.19852,-4.40935 0.47133,1.75669 1.08677,2.27498 2.38302,4.27914 4.40924,-0.57094 8.75671,0.34013 13.32809,1.37553 -4.74363,0.78623 -8.39968,1.78672 -11.63843,3.96162 1.36056,2.93262 2.11025,7.4758 2.95271,10.6874 -2.99455,-2.42622 -6.28672,-5.87702 -10.19532,-7.51383 z" id="path2610"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Areolae_Wide.tw b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Wide.tw new file mode 100644 index 0000000000000000000000000000000000000000..e8c5a8d43256181b887c159001d71030ce668c4a --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Areolae_Wide.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Areolae_Wide [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2588" ><path sodipodi:nodetypes="czczsc" d="m 232.7832,220.84618 c 0,0 0.4464,4.52494 -1.28267,9.81182 -1.72902,5.28687 -10.19793,13.26999 -10.19793,13.26999 0,0 -2.53745,-9.20953 -1.97865,-11.40402 0.55875,-2.19451 0.93334,-3.40238 3.21651,-5.89704 2.87142,-3.13742 10.24274,-5.78075 10.24274,-5.78075 z" class="areola" id="path2586"/></g><g transform="'+_boob_left_art_transform+'" id="g2592" ><path sodipodi:nodetypes="sssss" class="areola" d="m 310.12038,239.65916 c -6.9072,-0.76189 -13.8874,-5.85245 -13.92016,-10.41508 -0.0419,-5.82288 8.76879,-11.90016 16.50864,-11.56148 7.27826,0.31847 14.8736,5.06548 13.3816,12.12299 -1.49201,7.05753 -7.71129,10.76454 -15.97008,9.85357 z" id="path2590"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Highlights.tw b/src/art/vector_revamp/layers/Boob_Huge_Highlights.tw new file mode 100644 index 0000000000000000000000000000000000000000..78be05d127504e1a76103623bcedd482c19113bf --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Highlights.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Highlights [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g style="display:inline" inkscape:label="Boob_Huge_Highlights2" id="Boob_Huge_Highlights2" inkscape:groupmode="layer"><g transform="'+_boob_left_art_transform+'" id="g2663" ><path d="m 311.28344,209.85996 c -1.23695,2.22881 -4.15391,7.30116 -0.41757,9.282 3.52221,-2.35637 1.8912,-8.00731 0.41757,-9.282 z" class="highlight2" id="path2651" sodipodi:nodetypes="ccc"/><path d="m 309.0008,230.89923 c -3.52683,3.26178 -5.76341,8.34571 -1.88762,10.3195 2.98911,-1.10062 3.7767,-5.82866 1.88762,-10.3195 z" class="highlight2" id="path2653" sodipodi:nodetypes="ccc"/><path d="m 309.2774,227.50265 c -1.45195,1.21811 -0.55284,1.57513 -0.29636,2.05122 0.91423,-0.4922 1.12461,-0.75849 0.29636,-2.05122 z" class="highlight2" id="path2655" sodipodi:nodetypes="ccc"/><path d="m 311.46483,206.71736 c -0.47728,0.55739 -1.52133,1.16622 -0.15966,1.94836 1.70767,-1.34349 0.63887,-1.68624 0.15966,-1.94836 z" class="highlight2" id="path2657" sodipodi:nodetypes="ccc"/><path d="m 310.91707,222.96501 c -1.11294,-1.53405 -2.19421,-0.93805 -2.68716,-0.71571 0.55046,0.56081 1.587,0.71901 2.68716,0.71571 z" class="highlight2" id="path2659" sodipodi:nodetypes="ccc"/><path d="m 310.79064,220.21043 c -1.29574,-0.23601 -1.88877,0.15883 -2.19442,0.60489 1.134,0.2189 1.34152,0.27164 2.19442,-0.60489 z" class="highlight2" id="path2661" sodipodi:nodetypes="ccc"/><path d="m 287.14784,234.24423 c -1.78019,22.27634 16.62413,23.78154 22.90192,24.02193 -23.56642,-3.77459 -22.37712,-21.24928 -22.90192,-24.02193 z" class="highlight2" id="path2673-6" sodipodi:nodetypes="ccc"/></g><g transform="'+_boob_right_art_transform+'" id="g2681" ><path d="m 245.56304,211.91401 c -4.11836,2.60208 -12.2636,9.19756 -15.16804,10.99308 3.27443,0.0574 14.42513,-1.08898 15.16804,-10.99308 z" class="highlight2" id="path2665" sodipodi:nodetypes="ccc"/><path d="m 250.43036,208.01772 c -0.95282,-0.17319 -2.05051,0.57552 -1.97909,1.35787 0.65101,0.10861 1.99182,0.29621 1.97909,-1.35787 z" class="highlight2" id="path2667" sodipodi:nodetypes="ccc"/><path d="m 229.41707,228.57127 c -0.73203,-0.21484 -5.15512,0.19734 -5.63251,0.25215 0.75202,0.71167 5.58739,1.42579 5.63251,-0.25215 z" class="highlight2" id="path2671" sodipodi:nodetypes="ccc"/><path d="m 221.11077,236.97002 c -0.77873,7.49629 6.53371,18.21895 9.15131,19.6622 -2.16944,-2.6361 -8.34445,-14.0271 -9.15131,-19.6622 z" class="highlight2" id="path2673" sodipodi:nodetypes="ccc"/><path d="m 221.12181,234.39974 c -0.9515,0.64423 -0.46796,1.54477 -0.0582,1.90403 0.59571,-0.35255 0.32483,-1.39831 0.0582,-1.90403 z" class="highlight2" id="path2675" sodipodi:nodetypes="ccc"/><path d="m 219.83124,227.63948 c -0.59901,0.17025 -1.09692,0.35984 -1.51392,0.72202 0.72549,0.21496 1.41311,0.13798 1.51392,-0.72202 z" class="highlight2" id="path2677" sodipodi:nodetypes="ccc"/><path d="m 220.10898,225.8855 c -0.26942,0.0314 -0.84341,0.20991 -0.92331,0.70779 0.27525,-0.29894 0.86207,-0.25886 0.92331,-0.70779 z" class="highlight2" id="path2679" sodipodi:nodetypes="ccc"/></g></g><g inkscape:groupmode="layer" id="Boob_Huge_Highlights1" inkscape:label="Boob_Huge_Highlights1" style="display:inline"><g transform="'+_boob_left_art_transform+'" id="g2690"><path sodipodi:nodetypes="ccc" id="path2686" class="highlight1" d="m 310.7455,213.61878 c -1.23889,2.23231 -0.62951,4.2542 0.10734,5.49919 0.8331,-1.29133 1.36861,-4.22251 -0.10734,-5.49919 z"/><path sodipodi:nodetypes="ccc" id="path2688" class="highlight1" d="m 308.98735,230.89949 c -1.68861,1.7669 -1.74121,4.42131 -1.45308,5.80445 1.40005,-1.16485 2.00138,-3.93156 1.45308,-5.80445 z"/></g><g transform="'+_boob_right_art_transform+'" id="g2694" ><path sodipodi:nodetypes="ccc" id="path2692" class="highlight1" d="m 242.78118,215.8836 c -3.18058,2.31902 -9.28242,4.77744 -11.34656,6.90425 3.63554,0.19592 9.94008,-1.84828 11.34656,-6.90425 z" /></g></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Highlights1.tw b/src/art/vector_revamp/layers/Boob_Huge_Highlights1.tw new file mode 100644 index 0000000000000000000000000000000000000000..beee97f2f7bad340762e052d5028a8ebb2d1c616 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Highlights1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Highlights1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_left_art_transform+'" id="g2690"><path sodipodi:nodetypes="ccc" id="path2686" class="highlight1" d="m 310.7455,213.61878 c -1.23889,2.23231 -0.62951,4.2542 0.10734,5.49919 0.8331,-1.29133 1.36861,-4.22251 -0.10734,-5.49919 z"/><path sodipodi:nodetypes="ccc" id="path2688" class="highlight1" d="m 308.98735,230.89949 c -1.68861,1.7669 -1.74121,4.42131 -1.45308,5.80445 1.40005,-1.16485 2.00138,-3.93156 1.45308,-5.80445 z"/></g><g transform="'+_boob_right_art_transform+'" id="g2694" ><path sodipodi:nodetypes="ccc" id="path2692" class="highlight1" d="m 242.78118,215.8836 c -3.18058,2.31902 -9.28242,4.77744 -11.34656,6.90425 3.63554,0.19592 9.94008,-1.84828 11.34656,-6.90425 z" /></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Highlights2.tw b/src/art/vector_revamp/layers/Boob_Huge_Highlights2.tw new file mode 100644 index 0000000000000000000000000000000000000000..4d3a794e4bd17cfd136a92eba43b090025e0adcc --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Highlights2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Highlights2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_left_art_transform+'" id="g2663" ><path d="m 311.28344,209.85996 c -1.23695,2.22881 -4.15391,7.30116 -0.41757,9.282 3.52221,-2.35637 1.8912,-8.00731 0.41757,-9.282 z" class="highlight2" id="path2651" sodipodi:nodetypes="ccc"/><path d="m 309.0008,230.89923 c -3.52683,3.26178 -5.76341,8.34571 -1.88762,10.3195 2.98911,-1.10062 3.7767,-5.82866 1.88762,-10.3195 z" class="highlight2" id="path2653" sodipodi:nodetypes="ccc"/><path d="m 309.2774,227.50265 c -1.45195,1.21811 -0.55284,1.57513 -0.29636,2.05122 0.91423,-0.4922 1.12461,-0.75849 0.29636,-2.05122 z" class="highlight2" id="path2655" sodipodi:nodetypes="ccc"/><path d="m 311.46483,206.71736 c -0.47728,0.55739 -1.52133,1.16622 -0.15966,1.94836 1.70767,-1.34349 0.63887,-1.68624 0.15966,-1.94836 z" class="highlight2" id="path2657" sodipodi:nodetypes="ccc"/><path d="m 310.91707,222.96501 c -1.11294,-1.53405 -2.19421,-0.93805 -2.68716,-0.71571 0.55046,0.56081 1.587,0.71901 2.68716,0.71571 z" class="highlight2" id="path2659" sodipodi:nodetypes="ccc"/><path d="m 310.79064,220.21043 c -1.29574,-0.23601 -1.88877,0.15883 -2.19442,0.60489 1.134,0.2189 1.34152,0.27164 2.19442,-0.60489 z" class="highlight2" id="path2661" sodipodi:nodetypes="ccc"/><path d="m 287.14784,234.24423 c -1.78019,22.27634 16.62413,23.78154 22.90192,24.02193 -23.56642,-3.77459 -22.37712,-21.24928 -22.90192,-24.02193 z" class="highlight2" id="path2673-6" sodipodi:nodetypes="ccc"/></g><g transform="'+_boob_right_art_transform+'" id="g2681" ><path d="m 245.56304,211.91401 c -4.11836,2.60208 -12.2636,9.19756 -15.16804,10.99308 3.27443,0.0574 14.42513,-1.08898 15.16804,-10.99308 z" class="highlight2" id="path2665" sodipodi:nodetypes="ccc"/><path d="m 250.43036,208.01772 c -0.95282,-0.17319 -2.05051,0.57552 -1.97909,1.35787 0.65101,0.10861 1.99182,0.29621 1.97909,-1.35787 z" class="highlight2" id="path2667" sodipodi:nodetypes="ccc"/><path d="m 229.41707,228.57127 c -0.73203,-0.21484 -5.15512,0.19734 -5.63251,0.25215 0.75202,0.71167 5.58739,1.42579 5.63251,-0.25215 z" class="highlight2" id="path2671" sodipodi:nodetypes="ccc"/><path d="m 221.11077,236.97002 c -0.77873,7.49629 6.53371,18.21895 9.15131,19.6622 -2.16944,-2.6361 -8.34445,-14.0271 -9.15131,-19.6622 z" class="highlight2" id="path2673" sodipodi:nodetypes="ccc"/><path d="m 221.12181,234.39974 c -0.9515,0.64423 -0.46796,1.54477 -0.0582,1.90403 0.59571,-0.35255 0.32483,-1.39831 0.0582,-1.90403 z" class="highlight2" id="path2675" sodipodi:nodetypes="ccc"/><path d="m 219.83124,227.63948 c -0.59901,0.17025 -1.09692,0.35984 -1.51392,0.72202 0.72549,0.21496 1.41311,0.13798 1.51392,-0.72202 z" class="highlight2" id="path2677" sodipodi:nodetypes="ccc"/><path d="m 220.10898,225.8855 c -0.26942,0.0314 -0.84341,0.20991 -0.92331,0.70779 0.27525,-0.29894 0.86207,-0.25886 0.92331,-0.70779 z" class="highlight2" id="path2679" sodipodi:nodetypes="ccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Nipples.tw b/src/art/vector_revamp/layers/Boob_Huge_Nipples.tw new file mode 100644 index 0000000000000000000000000000000000000000..7a1555ed76d014cc3efca6ed3222f15cd933f339 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Nipples.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Nipples [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2307" transform="'+_boob_right_art_transform+'" ><path id="path2297" class="shadow" d="m 219.66711,231.32551 c 0,0 -2.07916,-0.84424 -1.96587,-2.50683 0.27229,-2.06527 2.87049,-4.55573 4.56939,-3.54333 0.73795,0.4953 1.19745,1.3592 1.19745,1.3592 -0.28724,2.54749 -1.44251,3.76835 -3.80097,4.69096 z" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccccc" d="m 219.66711,231.32551 c 0,0 -2.09128,-0.97248 -1.96587,-2.50683 0.22689,-1.88232 3.0014,-4.53764 4.56939,-3.54333 0.6399,0.45092 1.19745,1.3592 1.19745,1.3592 -0.28152,2.37691 -1.50508,3.78179 -3.80097,4.69096 z" class="areola" id="path2299"/><path id="path2301" class="shadow" d="m 218.29586,227.4828 c 0.63254,-0.49981 1.24594,-0.4023 2.58629,-0.13128 -1.20929,-0.062 -1.73229,-0.39852 -2.58629,0.13128 z" sodipodi:nodetypes="ccc"/><path id="path2303" class="shadow" d="m 219.23311,227.17234 c -0.0126,-0.30553 0.11607,-0.87173 0.80585,-0.93739 -0.78295,0.23692 -0.68828,0.58174 -0.80585,0.93739 z" sodipodi:nodetypes="ccc"/><path id="path2305" class="shadow" d="m 220.87274,231.59877 c 1.83694,-1.04074 2.9183,-2.84285 2.47489,-4.27858 0.24179,0.88681 0.46243,2.78645 -2.47489,4.27858 z" sodipodi:nodetypes="ccc"/></g><g id="g2321" transform="'+_boob_left_art_transform+'" ><path id="path2309" d="m 307.02662,225.35792 c -0.65912,-0.84792 -0.55031,-2.1736 -0.36852,-2.79251 0.43828,-1.66398 2.36958,-2.51043 4.05199,-2.48698 1.47529,0.0205 2.31113,0.23638 2.97306,1.55088 0.7186,0.55937 0.76617,1.51497 0.72875,1.55811 -0.19628,1.38288 -1.11197,3.36797 -3.79882,3.25712 -2.15571,0.10863 -2.89207,-0.0288 -3.58646,-1.08662 z" class="shadow" sodipodi:nodetypes="ccscccc"/><path sodipodi:nodetypes="csscccc" class="areola" d="m 307.02662,225.35792 c -0.45016,-0.86882 -0.5452,-2.18377 -0.36852,-2.79251 0.46228,-1.59289 2.54845,-2.46893 4.05199,-2.48698 1.48227,-0.0177 2.31964,0.4407 2.97306,1.55088 0.60221,0.66517 0.7511,1.52867 0.72875,1.55811 -0.2578,1.29402 -1.17053,3.2834 -3.79882,3.25712 -2.03215,0.002 -2.83404,-0.0784 -3.58646,-1.08662 z" id="path2311"/><path id="path2313" d="m 307.97472,221.8552 c 1.44439,-0.5616 2.8211,0.19783 3.71681,0.95003 -1.07555,-0.52478 -2.45102,-1.24397 -3.71681,-0.95003 z" class="shadow" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 309.64335,221.84575 c 0.82391,-0.71672 1.32028,-0.90751 2.55627,-0.79081 -1.15563,0.0407 -1.68078,0.25167 -2.55627,0.79081 z" id="path2315"/><path id="path2317" d="m 307.45307,225.44799 c 6.9597,1.44668 6.35651,-3.37569 6.23036,-3.85562 0.42028,2.9281 -1.33459,5.40848 -6.23036,3.85562 z" class="shadow" sodipodi:nodetypes="ccc"/><path id="path2319" class="shadow" d="m 309.13235,227.01721 c 3.67212,-0.37532 4.7724,-1.1783 5.15758,-3.33875 -0.0448,2.50473 -2.04255,3.15529 -5.15758,3.33875 z" sodipodi:nodetypes="ccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Outfit_Maid.tw b/src/art/vector_revamp/layers/Boob_Huge_Outfit_Maid.tw new file mode 100644 index 0000000000000000000000000000000000000000..019cba47e462ec902f7b638ef92ec001a94e27f5 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Outfit_Maid.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Outfit_Maid [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter><clipPath clipPathUnits="userSpaceOnUse" id="clipPath2523"><path style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:1" d="m 274.57189,189.42903 15.50314,-3.68772 7.17414,5.6607 18.78855,-0.15563 22.89606,-10.20457 4.18325,-5.70166 12.47654,1.89159 300.60628,-20.29169 -9.82055,549.03095 -688.642378,1.7251 29.38501,-463.4512 z" id="path2525" sodipodi:nodetypes="cccccccccccc"/></clipPath></defs><g id="g2511" clip-path="url(#clipPath2523)"><g id="g2501" transform="'+_boob_outfit_art_transform+'" ><path sodipodi:nodetypes="cccccccc" id="path2481" d="m 248.46348,221.30205 c -7.84799,13.39188 -9.31561,33.03051 1.17873,45.75168 8.18024,12.33371 22.62994,9.84279 34.81926,7.11239 10.16499,1.36382 18.37185,1.37376 32.10564,1.83999 11.54119,4.46467 21.63893,4.78374 30.06923,-2.42885 13.78259,-9.95091 14.54789,-23.07261 13.81906,-47.30239 1.67109,-21.37616 -23.40629,-68.10261 -23.40629,-68.10261 0,0 -76.87136,32.99996 -88.58563,63.12979 z" style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke-width:0.99515665"/><path style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.99515665" d="m 248.46348,221.30205 c -6.81285,13.64987 -7.73759,33.34658 1.17873,45.75168 8.43153,11.73061 22.90015,9.19429 34.81926,7.11239 10.50108,1.06974 18.86406,0.94308 32.10564,1.83999 12.09113,3.70602 22.27287,3.92208 30.06923,-2.42885 12.73576,-10.37458 14.2035,-30.88034 13.81906,-47.30239 -0.56178,-23.99764 -23.40629,-68.10261 -23.40629,-68.10261 0,0 -72.39285,30.6868 -88.58563,63.12979 z" id="path2826" sodipodi:nodetypes="asccaaca"/><path d="m 311.72503,274.95345 c -18.32365,-4.27958 -40.32075,-0.75207 -49.31724,-0.21926 9.0114,-0.53368 36.99108,-2.65958 49.31724,0.21926 z" class="shadow" id="path3232-3-3" sodipodi:nodetypes="ccc"/><path d="m 309.32149,267.43126 c -19.55847,-1.59311 -33.01835,5.3752 -42.28691,7.29258 9.28391,-1.92053 29.1301,-8.36425 42.28691,-7.29258 z" class="shadow" id="path3232-3-3-0" sodipodi:nodetypes="ccc"/><path d="m 306.30748,260.9606 c -13.32491,-3.8423 -29.59097,-2.06333 -36.21523,-2.00693 6.63522,-0.0565 27.25168,-0.57775 36.21523,2.00693 z" class="shadow" id="path3232-3-3-0-5" sodipodi:nodetypes="ccc"/><path d="m 304.97187,260.29254 c -13.14861,-4.43301 -29.43657,-3.36835 -36.04526,-3.60354 6.61963,0.23558 27.20032,0.62148 36.04526,3.60354 z" class="shadow" id="path3232-3-3-0-5-5" sodipodi:nodetypes="ccc"/><path d="m 311.29793,219.17019 c -11.83811,-4.5168 -26.69692,-4.12421 -32.70598,-4.57425 6.01901,0.45079 24.74259,1.53583 32.70598,4.57425 z" class="shadow" id="path3232-3-3-0-5-1" sodipodi:nodetypes="ccc"/><path d="m 311.27871,223.32929 c -11.22803,-5.99229 -25.95244,-7.45922 -31.84373,-8.66054 5.90105,1.20331 24.29074,4.62958 31.84373,8.66054 z" class="shadow" id="path3232-3-3-0-5-1-0" sodipodi:nodetypes="ccc"/></g></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Piercing.tw b/src/art/vector_revamp/layers/Boob_Huge_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..162694d786abca6b63611632fc355b55ceddfc1d --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2999" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/><g id="g3009" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1" transform="'+_boob_left_art_transform+'" ><path class="shadow" sodipodi:nodetypes="aaaaa" id="path3001" d="m 316.48783,223.10304 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path class="shadow" sodipodi:nodetypes="saccs" id="path3003" d="m 306.77276,224.82581 c -0.75293,0 -1.6385,-0.84541 -1.5972,-1.5972 0.046,-0.83836 1.21255,-1.57531 1.96548,-1.57531 -0.68775,1.21129 -0.7805,1.82947 -0.3682,3.17251 z"/><path d="m 316.34263,223.10304 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path3005" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path d="m 306.77164,224.68061 c -0.68448,0 -1.48757,-0.76845 -1.452,-1.452 0.0399,-0.76733 1.10584,-1.452 1.79032,-1.452 -0.71906,1.10285 -0.73484,1.67672 -0.33828,2.904 z" id="path3007" sodipodi:nodetypes="saccs" class="steel_piercing"/></g><g style="display:inline" id="g3019" transform="'+_boob_right_art_transform+'" ><path d="m 224.07961,228.33118 c 0,0.74947 -0.84077,1.5972 -1.5972,1.5972 -0.75643,0 -1.5972,-0.84773 -1.5972,-1.5972 0,-0.74947 0.84077,-1.5972 1.5972,-1.5972 0.75643,0 1.5972,0.84773 1.5972,1.5972 z" id="path3011" sodipodi:nodetypes="aaaaa" class="shadow" /><path d="m 217.66199,229.81105 c -0.34466,-0.31248 -0.8444,-0.64473 -0.8444,-1.05102 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 -0.78404,0.89358 -0.83246,1.20611 -0.7528,2.64822 z" id="path3013" sodipodi:nodetypes="cscc" class="shadow" /><path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path3015" d="m 223.93441,228.33118 c 0,0.68134 -0.76433,1.452 -1.452,1.452 -0.68767,0 -1.452,-0.77066 -1.452,-1.452 0,-0.68133 0.76433,-1.452 1.452,-1.452 0.68767,0 1.452,0.77067 1.452,1.452 z" /><path class="steel_piercing" sodipodi:nodetypes="cscc" id="path3017" d="m 217.65747,229.74416 c -0.31333,-0.28407 -0.76728,-0.63503 -0.76728,-1.00438 0,-0.68448 0.76752,-1.452 1.452,-1.452 -0.5497,0.90956 -0.83533,1.21423 -0.68472,2.45638 z" /></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Huge_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Boob_Huge_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..9632a469497898b5568bf1e814e0dbdf9dd6b50a --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Huge_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Huge_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2981" transform="'+_boob_left_art_transform+'" ><path d="m 305.79149,218.84986 c 0,0 -2.49411,9.18373 -0.98325,13.39981 1.04425,2.91398 3.31774,6.91285 6.40728,6.7218 3.05706,-0.18905 4.59484,-4.44702 5.47216,-7.38158 1.23461,-4.12965 -0.7356,-12.9098 -0.7356,-12.9098 0,0 0.11352,1.8255 0.16679,3.66985 -0.16929,0.006 -2.35051,-4.1e-4 -2.35051,-4.1e-4 0.0559,0.37078 -0.0172,0.52908 -0.0182,0.90408 0,0 2.10319,-0.01 2.38726,-0.0165 0.0394,2.95347 -0.12672,6.29356 -1.09131,8.44744 -0.78349,1.74932 -2.10939,3.66042 -3.89433,3.67566 -1.987,0.017 -3.50956,-2.07688 -4.40441,-4.01713 -0.94479,-2.04857 -1.13062,-5.2179 -1.1115,-8.05448 0.44876,0 0.89492,-0.0536 0.89492,-0.0536 l 0.20179,-0.91124 c 0,0 -0.63009,-0.0132 -1.08238,-0.0132 0.0399,-1.72733 0.14124,-3.46134 0.14124,-3.46134 z" class="shadow" id="path2969" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 311.22782,235.59907 c 0,0 -1.85221,9.4952 -1.92044,14.30624 -0.078,5.49738 1.72993,16.40283 1.72993,16.40283 0,0 -0.37012,-9.79442 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z" class="shadow" id="path2971" sodipodi:nodetypes="caccc"/><path d="m 310.97362,264.29827 c 0,0 -1.08607,3.59047 -0.98853,5.42648 0.0928,1.74744 1.48279,5.03598 1.48279,5.03598 0,0 1.05088,-3.32643 0.98853,-5.03598 -0.0683,-1.8739 -1.48279,-5.42648 -1.48279,-5.42648 z" class="shadow" id="path2973" sodipodi:nodetypes="cacac"/><path sodipodi:nodetypes="caaacccccsascccccc" id="path2975" class="steel_piercing" d="m 306.23848,219.75707 c 0,0 -2.26737,8.34884 -0.89386,12.18164 0.94932,2.64907 3.01613,6.2844 5.8248,6.11072 2.77915,-0.17186 4.17713,-4.04275 4.97469,-6.71053 1.12237,-3.75423 -0.66873,-11.73618 -0.66873,-11.73618 0,0 0.1032,1.19752 0.15163,2.87419 -0.1539,0.005 -1.857,-3.7e-4 -1.857,-3.7e-4 -0.01,0.4056 -0.009,0.4963 -0.0851,0.81799 0,0 1.70069,-0.005 1.95894,-0.0111 0.0358,2.68498 -0.1152,6.18346 -0.9921,8.14152 -0.71227,1.59029 -1.91762,3.32765 -3.5403,3.34151 -1.80636,0.0154 -3.19051,-1.88807 -4.00401,-3.65193 -0.8589,-1.86234 -1.02784,-5.20558 -1.01046,-7.78429 0.40797,0 0.46484,-0.0487 0.46484,-0.0487 l 0.16073,-0.8284 c 0,0 -0.20131,-0.012 -0.61253,-0.012 0.0363,-1.5703 0.1284,-2.68465 0.1284,-2.68465 z"/><path sodipodi:nodetypes="caccc" id="path2977" class="steel_piercing" d="m 311.1816,236.99494 c 0,0 -1.68382,8.632 -1.74585,13.00567 -0.0709,4.99761 1.57266,14.91166 1.57266,14.91166 0,0 -0.33647,-8.90402 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z"/><path sodipodi:nodetypes="cacac" id="path2979" class="steel_piercing" d="m 310.99593,264.77383 c 0,0 -0.98734,3.26407 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57815 1.34799,4.57815 0,0 0.95535,-3.02401 0.89867,-4.57815 -0.0621,-1.70355 -1.34799,-4.93318 -1.34799,-4.93318 z"/></g><g id="g2995" transform="'+_boob_right_art_transform+'" ><path d="m 224.04177,224.35984 c 0,0 1.84875,9.08379 0.67687,13.39983 -0.70222,2.58629 -1.73488,6.86756 -4.41084,6.72179 -2.75834,-0.15026 -3.17412,-4.68357 -3.76709,-7.3816 -0.92442,-4.20618 0.5064,-12.90978 0.5064,-12.90978 0,0 -0.0782,1.73915 -0.11483,3.58349 0.11654,0.006 1.05275,-4.1e-4 1.05275,-4.1e-4 l -0.54866,0.90407 c 0,0 -0.32127,-0.01 -0.51683,-0.0165 -0.0271,2.95346 0.0873,6.37993 0.75126,8.5338 0.53937,1.74933 1.16447,3.66321 2.68091,3.67564 1.67758,0.0137 2.41602,-2.07685 3.03204,-4.01709 0.65041,-2.04858 0.77834,-5.30427 0.76517,-8.14084 -0.30893,0 -1.87642,-0.0536 -1.87642,-0.0536 0.0596,-0.36182 0.0683,-0.46339 0.2179,-0.91125 0,0 1.33728,-0.0132 1.64865,-0.0132 -0.0275,-1.72732 -0.0972,-3.37499 -0.0972,-3.37499 z" class="shadow" id="path2983" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 220.68861,241.98705 c 0,0 -1.85221,9.4952 -1.92044,14.30623 -0.078,5.49738 1.72993,16.40284 1.72993,16.40284 0,0 -0.37012,-9.79444 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z" class="shadow" id="path2985" sodipodi:nodetypes="caccc"/><path d="m 220.43441,270.68624 c 0,0 -1.08608,3.59049 -0.98853,5.4265 0.0928,1.74744 1.48279,5.03595 1.48279,5.03595 0,0 1.05088,-3.3264 0.98853,-5.03595 -0.0683,-1.8739 -1.48279,-5.4265 -1.48279,-5.4265 z" class="shadow" id="path2987" sodipodi:nodetypes="cacac"/><path sodipodi:nodetypes="caaacccccsascccccc" id="path2989" class="steel_piercing" d="m 223.73465,225.26696 c 0,0 1.68069,8.25799 0.61534,12.18167 -0.63838,2.35117 -1.57717,6.24324 -4.00986,6.11072 -2.50758,-0.1366 -2.88557,-4.25779 -3.42463,-6.71055 -0.84039,-3.8238 0.46036,-11.73616 0.46036,-11.73616 0,0 -0.071,1.19752 -0.10438,2.87419 0.10594,0.005 0.62785,-3.7e-4 0.62785,-3.7e-4 l -0.33933,0.82187 c 0,0 -0.12233,-0.009 -0.30011,-0.015 -0.0247,2.68496 0.0793,6.18345 0.68297,8.14152 0.49034,1.5903 1.05861,3.3302 2.43719,3.3415 1.52508,0.0125 2.19638,-1.88805 2.7564,-3.65191 0.59128,-1.86235 0.70758,-5.20558 0.69561,-7.78429 -0.28085,0 -1.70584,-0.0487 -1.70584,-0.0487 0.0541,-0.32893 0.16478,-0.53596 0.16187,-0.82841 0,0 1.25193,-0.012 1.535,-0.012 -0.025,-1.57029 -0.0884,-2.68465 -0.0884,-2.68465 z"/><path sodipodi:nodetypes="caccc" id="path2991" class="steel_piercing" d="m 220.64239,243.38292 c 0,0 -1.68382,8.63199 -1.74585,13.00566 -0.0709,4.99762 1.57266,14.91167 1.57266,14.91167 0,0 -0.33647,-8.90403 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z"/><path sodipodi:nodetypes="cacac" id="path2993" class="steel_piercing" d="m 220.45672,271.16181 c 0,0 -0.98735,3.26408 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57813 1.34799,4.57813 0,0 0.95535,-3.024 0.89867,-4.57813 -0.0621,-1.70355 -1.34799,-4.93318 -1.34799,-4.93318 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium.tw b/src/art/vector_revamp/layers/Boob_Medium.tw new file mode 100644 index 0000000000000000000000000000000000000000..f79f0d4845aa39bf58941427461b51f544d9ee8a --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2687"><path d="m 265.5598,202.06126 c -6.98215,3.2564 -12.1459,7.91148 -17.37338,13.84075 -11.32184,2.01098 -18.71223,6.38082 -25.75163,10.96125 -2.66627,10.79115 -4.63964,20.79074 2.86977,31.58189 5.0893,9.04044 12.45392,12.33466 22.45388,9.6257 10.79378,-2.60002 19.01126,-9.33031 21.77033,-22.30407 0.51484,-8.64963 10.03784,-15.80582 11.09806,-21.2787 1.24098,-5.57972 10.98028,-18.85392 3.68114,-25.19477 -5.28827,-4.59399 -12.52024,-0.43883 -18.74817,2.76795 z" class="shadow" id="path2247" sodipodi:nodetypes="ccccccccc"/><path sodipodi:nodetypes="accccccaa" id="path2685" class="skin boob" d="m 265.5598,202.06126 c -6.58282,3.38951 -11.49746,8.12763 -17.37338,13.84075 -10.4339,2.54375 -17.83242,6.90871 -25.75163,10.96125 -2.39837,10.79115 -3.49301,20.79074 2.86977,31.58189 5.76999,8.40513 13.52235,11.33746 22.45388,9.6257 10.31257,-2.97018 18.31118,-9.79744 21.77033,-22.30407 3.23278,-7.85413 11.18689,-15.27549 12.24711,-20.74837 1.24098,-5.57972 11.28964,-22.38945 3.9905,-28.7303 -5.28827,-4.59399 -13.97865,2.56637 -20.20658,5.77315 z"/></g><g transform="'+_boob_left_art_transform+'" id="g2693"><path sodipodi:nodetypes="ccccc" id="path2689" class="shadow" d="m 344.93513,247.17137 c 11.50556,-18.72777 -0.99403,-25.03554 -7.30197,-37.88762 -11.45706,-9.02941 -12.82017,-9.43754 -25.94622,-9.76379 -26.26694,13.83475 -31.50169,24.95266 -28.41478,41.82961 5.19532,26.99402 48.12646,31.37297 61.66297,5.8218 z"/><path d="m 344.93513,247.17137 c 6.85519,-11.89716 4.44093,-22.30576 -0.0687,-31.95616 -3.75098,-8.02695 -11.87524,-14.52078 -20.3528,-17.0962 -4.11529,-1.2502 -6.37048,-1.40468 -12.82672,1.40095 -25.4253,14.28793 -30.40982,25.54058 -28.41478,41.82961 5.56587,26.14704 48.78325,29.87175 61.66297,5.8218 z" class="skin boob" id="path2691" sodipodi:nodetypes="caaccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Areola_Piercing.tw b/src/art/vector_revamp/layers/Boob_Medium_Areola_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..478f9839f0120c77a589f8b0e2ac31c58cd23bd0 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Areola_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Areola_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2527" transform="'+_boob_left_art_transform+'" ><path d="m 318.02336,210.86274 c -5e-5,0.72098 -0.77245,1.52498 -1.52538,1.52498 -0.5209,-0.31798 -0.64486,-0.93444 -1.6847,-1.42095 0,-0.75293 0.8338,-1.69079 1.61288,-1.70123 0.75078,-0.0101 1.59725,0.84217 1.5972,1.5972 z" id="path2736" sodipodi:nodetypes="accaa" class="shadow"/><path d="m 312.43119,221.98893 c 0,0.75503 -0.84635,1.5972 -1.5972,1.5972 -0.75085,0 -1.5972,-0.84217 -1.5972,-1.5972 0,-0.75502 0.84635,-1.5972 1.5972,-1.5972 0.75085,0 1.5972,0.84218 1.5972,1.5972 z" id="path2738" sodipodi:nodetypes="aaaaa" class="shadow"/><path class="steel_piercing" sodipodi:nodetypes="accaa" id="path2740" d="m 317.87933,210.86274 c 0,0.68639 -0.76752,1.452 -1.452,1.452 -0.47354,-0.28907 -0.59653,-0.82878 -1.54184,-1.27106 0,-0.68448 0.79549,-1.62217 1.54184,-1.63294 0.68251,-0.01 1.452,0.76561 1.452,1.452 z"/><path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path2744" d="m 312.28599,221.98893 c 0,0.68639 -0.76941,1.452 -1.452,1.452 -0.68259,0 -1.452,-0.76561 -1.452,-1.452 0,-0.68639 0.76941,-1.452 1.452,-1.452 0.68259,0 1.452,0.76561 1.452,1.452 z"/></g><g id="g2533" transform="'+_boob_right_art_transform+'" ><path d="m 227.48194,224.84564 c 0,0.75503 -0.84635,1.5972 -1.5972,1.5972 -0.75084,0 -1.5972,-0.84217 -1.5972,-1.5972 0,-0.75503 0.84636,-1.5972 1.5972,-1.5972 0.75085,0 1.5972,0.84217 1.5972,1.5972 z" id="path2742" sodipodi:nodetypes="aaaaa" class="shadow"/><path d="m 221.3219,235.74376 c 0,0.75502 -0.84635,1.5972 -1.5972,1.5972 -0.75084,0 -1.5972,-0.84218 -1.5972,-1.5972 0,-0.75503 0.84636,-1.5972 1.5972,-1.5972 0.75085,0 1.5972,0.84217 1.5972,1.5972 z" id="path2746" sodipodi:nodetypes="aaaaa" class="shadow"/><path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path2748" d="m 227.33674,224.84564 c 0,0.68639 -0.76941,1.452 -1.452,1.452 -0.68258,0 -1.452,-0.76561 -1.452,-1.452 0,-0.68639 0.76942,-1.452 1.452,-1.452 0.68259,0 1.452,0.76561 1.452,1.452 z"/><path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path2751" d="m 221.1767,235.74376 c 0,0.68638 -0.76941,1.452 -1.452,1.452 -0.68258,0 -1.452,-0.76562 -1.452,-1.452 0,-0.68639 0.76942,-1.452 1.452,-1.452 0.68259,0 1.452,0.76561 1.452,1.452 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Areola_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Boob_Medium_Areola_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..59567eec9547c3fd3d2a67906ecffb3d4cc2d98a --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Areola_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Areola_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2507" transform="'+_boob_left_art_transform+'" ><path sodipodi:nodetypes="caaacaaac" id="path2757" class="shadow" d="m 318.90291,214.58803 c 0,0 -0.13465,-4.47036 1.43,-5.58749 1.85611,-1.32523 5.3301,-1.17893 6.82,0.54779 1.43464,1.66269 0.96516,4.88585 -0.44,6.57352 -1.13778,1.36653 -5.17,1.3147 -5.17,1.3147 0,0 3.53534,-0.86423 4.29,-2.30073 0.61522,-1.17109 0.47784,-2.99147 -0.44,-3.94411 -1.02892,-1.06792 -3.08003,-1.33322 -4.4,-0.65735 -1.35318,0.69288 -2.09,4.05367 -2.09,4.05367 z"/><path sodipodi:nodetypes="caaacaaac" id="path2761" class="shadow" d="m 308.90661,215.70883 c 0,0 0.13465,-4.47036 -1.43,-5.58749 -1.85611,-1.32523 -5.3301,-1.17893 -6.82,0.5478 -1.43465,1.66269 -0.96516,4.88583 0.44,6.57351 1.13778,1.36653 5.17,1.31471 5.17,1.31471 0,0 -3.53534,-0.86423 -4.29,-2.30073 -0.61522,-1.1711 -0.47784,-2.99148 0.44,-3.94411 1.02892,-1.06793 3.08003,-1.33323 4.4,-0.65736 1.35317,0.69287 2.09,4.05367 2.09,4.05367 z"/><path d="m 319.31756,214.42348 c 0,0 -0.12241,-4.06396 1.3,-5.07954 1.68737,-1.20474 4.84554,-1.07175 6.2,0.498 1.30422,1.51154 0.87742,4.44167 -0.4,5.97592 -1.03434,1.24231 -4.7,1.19519 -4.7,1.19519 0,0 3.21394,-0.78566 3.9,-2.09158 0.55929,-1.06462 0.4344,-2.71951 -0.4,-3.58555 -0.93538,-0.97084 -2.80003,-1.21202 -4,-0.59759 -1.23016,0.62989 -1.9,3.68515 -1.9,3.68515 z" class="steel_piercing" id="path2767" sodipodi:nodetypes="caaacaaac"/><path d="m 308.49196,215.54429 c 0,0 0.12241,-4.06397 -1.3,-5.07954 -1.68737,-1.20476 -4.84554,-1.07176 -6.2,0.49799 -1.30422,1.51153 -0.87742,4.44167 0.4,5.97593 1.03434,1.24229 4.7,1.19518 4.7,1.19518 0,0 -3.21395,-0.78566 -3.9,-2.09157 -0.55929,-1.06463 -0.4344,-2.71952 0.4,-3.58556 0.93538,-0.97083 2.80003,-1.21202 4,-0.59759 1.23016,0.62988 1.9,3.68516 1.9,3.68516 z" class="steel_piercing" id="path2769" sodipodi:nodetypes="caaacaaac"/></g><g id="g2512" transform="'+_boob_right_art_transform+'" ><path sodipodi:nodetypes="caaacaaac" id="path2764" class="shadow" d="m 224.55987,227.39942 c 0,0 0.60967,-2.2986 1.54375,-2.82952 2.13513,-1.21356 5.78847,-1.60777 7.36253,0.27741 0.71838,0.86037 0.32663,2.54545 -0.475,3.32885 -1.34,1.30951 -5.58127,0.66576 -5.58127,0.66576 0,0 3.80544,0.19579 4.63127,-1.1651 0.35502,-0.58505 0.0468,-1.55454 -0.47501,-1.99731 -1.21025,-1.02692 -3.25058,-0.85339 -4.75002,-0.33287 -0.96055,0.33344 -2.25625,2.05278 -2.25625,2.05278 z"/><path d="m 224.98193,227.29715 c 0,0 0.55424,-2.08964 1.40341,-2.57229 1.94103,-1.10324 5.26225,-1.46161 6.69321,0.25218 0.65307,0.78216 0.29693,2.31406 -0.43182,3.02623 -1.21818,1.19048 -5.07388,0.60524 -5.07388,0.60524 0,0 3.45948,0.178 4.21024,-1.05918 0.32274,-0.53186 0.0425,-1.41322 -0.43182,-1.81573 -1.10023,-0.93357 -2.95507,-0.77582 -4.3182,-0.30262 -0.87323,0.30313 -2.05114,1.86617 -2.05114,1.86617 z" class="steel_piercing" id="path2771" sodipodi:nodetypes="caaacaaac"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Areolae_Heart.tw b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Heart.tw new file mode 100644 index 0000000000000000000000000000000000000000..e1fc9f0be498bdeb6492471c697fac6ae0c314ee --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Heart.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Areolae_Heart [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2361" transform="'+_boob_right_art_transform+'" ><path id="path2359" class="areola" d="m 232.25356,226.4419 c 4.39417,7.66356 -6.67958,11.98476 -11.29027,20.32639 0,0 -2.32901,-10.92453 -1.5718,-14.47377 0.75721,-3.54924 1.27608,-4.34257 4.50054,-6.25453 4.9477,-1.91122 6.43637,-1.61802 8.36153,0.4019 0,0 0,1e-5 0,1e-5 z" sodipodi:nodetypes="cczcac"/></g><g id="g2365" transform="'+_boob_left_art_transform+'" ><path id="path2363" d="m 310.81942,233.08395 c -4.20528,-2.9951 -12.71977,-16.79856 -6.01226,-22.33579 6.70751,-5.53723 9.65531,-0.0103 9.65531,-0.0103 0,0 5.61579,-5.19127 10.77973,1.06406 5.16394,6.25533 -9.37618,18.97767 -14.42277,21.28185 z" class="areola" sodipodi:nodetypes="czczcc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Areolae_Huge.tw b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Huge.tw new file mode 100644 index 0000000000000000000000000000000000000000..ead2e97fc10c5fa32f6b7f075e4b02e6933704f0 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Huge.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Areolae_Huge [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2330"><path sodipodi:nodetypes="czczsc" d="m 237.61457,219.3019 c 0,0 0.61945,6.27319 -1.77989,13.6095 -2.39927,7.33629 -14.30039,16.46948 -14.30039,16.46948 -2.73835,-3.80069 -2.90352,-12.97462 -2.1428,-17.08636 0.76072,-4.11174 0.57641,-2.75255 3.74464,-6.21424 3.9845,-4.35363 14.47844,-6.77838 14.47844,-6.77838 z" class="areola" id="path2328"/></g><g transform="'+_boob_left_art_transform+'" id="g2334"><path sodipodi:nodetypes="sssss" class="areola" d="m 312.68818,236.78493 c -8.66357,-0.95563 -17.41869,-7.34062 -17.45978,-13.06343 -0.0525,-7.30353 10.99852,-14.92615 20.70646,-14.50135 9.12899,0.39946 18.65567,6.35353 16.78428,15.20563 -1.87139,8.85212 -9.67212,13.50176 -20.03096,12.35915 z" id="path2332"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Areolae_Large.tw b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Large.tw new file mode 100644 index 0000000000000000000000000000000000000000..c61693e29a1791507e08c89faad70cb446e3bc4d --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Large.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Areolae_Large [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2296"><path sodipodi:nodetypes="czczsc" d="m 228.38636,223.74254 c 0,0 0.30094,3.19792 -0.8647,6.76203 -1.16561,3.5641 -7.01179,8.94586 -7.01179,8.94586 0,0 -1.57367,-6.20853 -1.19696,-7.68793 0.37668,-1.47941 0.62921,-2.29369 2.16839,-3.97544 1.93574,-2.11507 6.90506,-4.04452 6.90506,-4.04452 z" class="areola" id="path2293"/></g><g transform="'+_boob_left_art_transform+'" id="g2313"><path sodipodi:nodetypes="sssss" class="areola" d="m 313.28827,227.10156 c -4.61957,-0.50956 -9.28796,-3.91415 -9.30987,-6.96566 -0.028,-3.89437 5.86461,-7.95889 11.04106,-7.73238 4.86774,0.213 9.94754,3.38782 8.94968,8.10792 -0.99786,4.72011 -5.15735,7.19938 -10.68087,6.59012 z" id="path2310"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Areolae_Normal.tw b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..ad4272d4432758f9b23604e02d7b023e9cc14119 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Areolae_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g1027" transform="'+_boob_right_art_transform+'" ><path id="XMLID_592_" class="areola" d="m 227.06053,224.47722 c 0,0 0.24231,2.57487 -0.69623,5.44459 -0.93851,2.86971 -5.64569,7.20295 -5.64569,7.20295 0,0 -1.26707,-4.99893 -0.96376,-6.1901 0.30329,-1.19118 0.50662,-1.84681 1.74593,-3.20091 1.5586,-1.70299 5.55975,-3.25653 5.55975,-3.25653 z" sodipodi:nodetypes="czczsc"/></g><g id="g1036" transform="'+_boob_left_art_transform+'" ><path id="XMLID_593_" d="m 313.4683,223.17155 c -3.40637,-0.37574 -6.84874,-2.88621 -6.8649,-5.13633 -0.0207,-2.87162 4.32444,-5.86871 8.14144,-5.70169 3.58937,0.15706 7.3351,2.49811 6.5993,5.97861 -0.7358,3.4805 -3.80292,5.30866 -7.87584,4.85941 z" class="areola" sodipodi:nodetypes="sssss"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Areolae_Star.tw b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Star.tw new file mode 100644 index 0000000000000000000000000000000000000000..2b6b3dd7e7b44fa0615bee19abf3e1fd09a5509a --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Star.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Areolae_Star [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2371" transform="'+_boob_right_art_transform+'" ><path id="path2369" class="areola" d="m 233.02542,221.55986 c -4.6859,2.14736 -5.25182,2.38871 -7.8293,5.15291 3.10943,0.0163 4.6369,0.11248 9.70681,2.24076 -8.13452,-0.21458 -10.34402,4.13038 -10.34402,4.13038 0,0 0.7366,4.80558 1.8382,10.77591 -2.3421,-2.93308 -5.27409,-9.80651 -5.27409,-9.80651 0,0 -0.57065,4.73684 -0.39999,8.20797 -1.03447,-2.46908 -1.33154,-8.50959 -1.33154,-9.96676 0,-2.16436 0.62706,-3.09666 3.74464,-6.21424 4.17315,-4.17315 9.88929,-4.52042 9.88929,-4.52042 z" sodipodi:nodetypes="cccccccssc"/></g><g id="g2375" transform="'+_boob_left_art_transform+'" ><path id="path2373" d="m 311.96943,221.02224 c -3.76567,1.79157 -6.84161,5.28921 -10.10232,7.39152 1.44885,-3.26388 2.80438,-7.85021 4.89355,-10.83394 -2.31674,-1.93975 -5.18388,-2.96451 -8.37065,-3.68536 3.56307,-1.07962 7.79205,-1.81135 11.55083,-1.25273 1.41528,-1.99803 2.88366,-2.69755 5.19852,-4.40935 0.47133,1.75669 1.08677,2.27498 2.38302,4.27914 4.40924,-0.57094 8.75671,0.34013 13.32809,1.37553 -4.74363,0.78623 -8.39968,1.78672 -11.63843,3.96162 1.36056,2.93262 2.11025,7.4758 2.95271,10.6874 -2.99455,-2.42622 -6.28672,-5.87702 -10.19532,-7.51383 z" class="areola" sodipodi:nodetypes="ccccccccccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Areolae_Wide.tw b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Wide.tw new file mode 100644 index 0000000000000000000000000000000000000000..5d180fa5a61b26613e1185a59f68af64c51634c7 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Areolae_Wide.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Areolae_Wide [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2320" transform="'+_boob_right_art_transform+'" ><path id="path2318" class="areola" d="m 232.41861,221.42292 c 0,0 0.4464,4.74369 -1.28267,10.03057 -1.72902,5.28687 -10.40105,13.26999 -10.40105,13.26999 0,0 -2.33433,-9.20953 -1.77553,-11.40402 0.55875,-2.19451 0.93334,-3.40238 3.21651,-5.89704 2.87142,-3.13742 10.24274,-5.9995 10.24274,-5.9995 z" sodipodi:nodetypes="czczsc"/></g><g id="g2324" transform="'+_boob_left_art_transform+'" ><path id="path2322" d="m 312.94881,231.61582 c -6.9072,-0.76189 -13.8874,-5.85245 -13.92016,-10.41508 -0.0419,-5.82288 8.76879,-11.90016 16.50864,-11.56148 7.27826,0.31847 14.8736,5.06548 13.3816,12.12299 -1.49201,7.05753 -7.71129,10.76454 -15.97008,9.85357 z" class="areola" sodipodi:nodetypes="sssss"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Highlights.tw b/src/art/vector_revamp/layers/Boob_Medium_Highlights.tw new file mode 100644 index 0000000000000000000000000000000000000000..524f5ada4203f3f3a556f770df5f9d8c8227a5d3 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Highlights.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Highlights [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g inkscape:groupmode="layer" id="Boob_Medium_Highlights2" inkscape:label="Boob_Medium_Highlights2" style="display:inline"><g id="g3014" transform="'+_boob_left_art_transform+'" ><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9" class="highlight2" d="m 321.76732,202.98942 c -2.24758,1.20251 -7.44827,3.88396 -5.38213,7.57381 4.23715,-0.071 5.92957,-5.70386 5.38213,-7.57381 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7" class="highlight2" d="m 312.09439,222.06039 c -3.52683,3.26178 -5.76341,8.34571 -1.88762,10.3195 2.98911,-1.10062 3.7767,-5.82866 1.88762,-10.3195 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4" class="highlight2" d="m 312.37099,218.66381 c -1.45195,1.21811 -0.55284,1.57513 -0.29636,2.05122 0.91423,-0.4922 1.12461,-0.75849 0.29636,-2.05122 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-70" class="highlight2" d="m 323.62317,200.44685 c -0.70321,0.2097 -1.91059,0.15541 -1.19026,1.55076 2.16327,-0.20337 1.45089,-1.07074 1.19026,-1.55076 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4-2" class="highlight2" d="m 314.01066,214.12617 c -1.11294,-1.53405 -2.19421,-0.93805 -2.68716,-0.71571 0.55046,0.56081 1.587,0.71901 2.68716,0.71571 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4-2-1" class="highlight2" d="m 313.88423,211.37159 c -1.29574,-0.23601 -1.88877,0.15883 -2.19442,0.60489 1.134,0.2189 1.34152,0.27164 2.19442,-0.60489 z"/></g><g id="g3024" transform="'+_boob_right_art_transform+'" ><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7" class="highlight2" d="m 247.9062,221.14042 c -7.62159,-1.9871 -15.09403,5.90489 -17.77314,7.66238 4.07679,1.14519 17.22608,2.90775 17.77314,-7.66238 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5" class="highlight2" d="m 255.78198,212.79897 c -0.95282,-0.17319 -2.05051,0.57552 -1.97909,1.35787 0.65101,0.10861 1.99182,0.29621 1.97909,-1.35787 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9" class="highlight2" d="m 229.41707,228.57127 c -0.73203,-0.21484 -5.15512,0.19734 -5.63251,0.25215 0.75202,0.71167 5.58739,1.42579 5.63251,-0.25215 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-6" class="highlight2" d="m 219.51702,235.37627 c -0.0284,5.33194 2.23939,13.97727 3.65131,15.5372 0.17258,-0.32513 -3.39485,-14.58806 -3.65131,-15.5372 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-4" class="highlight2" d="m 219.52806,232.80599 c -0.9515,0.64423 -0.46796,1.54477 -0.0582,1.90403 0.59571,-0.35255 0.32483,-1.39831 0.0582,-1.90403 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-62-3" class="highlight2" d="m 219.83124,227.63948 c -0.59901,0.17025 -1.09692,0.35984 -1.51392,0.72202 0.72549,0.21496 1.41311,0.13798 1.51392,-0.72202 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-62-3-9" class="highlight2" d="m 219.85898,225.8855 c -0.26942,0.0314 -0.84341,0.20991 -0.92331,0.70779 0.27525,-0.29894 0.86207,-0.25886 0.92331,-0.70779 z"/></g></g><g style="display:inline" inkscape:label="Boob_Medium_Highlights1" id="Boob_Medium_Highlights1" inkscape:groupmode="layer"><g id="g2210" transform="'+_boob_left_art_transform+'" ><path d="m 319.27783,205.85656 c -2.25111,1.2044 -2.83496,3.23381 -2.89058,4.67945 1.40005,-0.6336 3.43888,-2.80656 2.89058,-4.67945 z" class="highlight1" id="path1139" sodipodi:nodetypes="ccc"/><path d="m 312.08094,222.06065 c -1.68861,1.7669 -1.74121,4.42131 -1.45308,5.80445 1.40005,-1.16485 2.00138,-3.93156 1.45308,-5.80445 z" class="highlight1" id="path1141" sodipodi:nodetypes="ccc"/></g><g id="g2992" transform="'+_boob_right_art_transform+'" ><path d="m 241.75459,224.35338 c -4.7273,0.75979 -7.83647,2.53916 -10.64479,3.98691 4.08319,1.14699 9.56562,1.06857 10.64479,-3.98691 z" class="highlight1" id="path1143" sodipodi:nodetypes="ccc"/></g></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Highlights1.tw b/src/art/vector_revamp/layers/Boob_Medium_Highlights1.tw new file mode 100644 index 0000000000000000000000000000000000000000..aec5954dc82a62a21fe417df96bc644391e447e3 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Highlights1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Highlights1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2210" transform="'+_boob_left_art_transform+'" ><path d="m 319.27783,205.85656 c -2.25111,1.2044 -2.83496,3.23381 -2.89058,4.67945 1.40005,-0.6336 3.43888,-2.80656 2.89058,-4.67945 z" class="highlight1" id="path1139" sodipodi:nodetypes="ccc"/><path d="m 312.08094,222.06065 c -1.68861,1.7669 -1.74121,4.42131 -1.45308,5.80445 1.40005,-1.16485 2.00138,-3.93156 1.45308,-5.80445 z" class="highlight1" id="path1141" sodipodi:nodetypes="ccc"/></g><g id="g2992" transform="'+_boob_right_art_transform+'" ><path d="m 241.75459,224.35338 c -4.7273,0.75979 -7.83647,2.53916 -10.64479,3.98691 4.08319,1.14699 9.56562,1.06857 10.64479,-3.98691 z" class="highlight1" id="path1143" sodipodi:nodetypes="ccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Highlights2.tw b/src/art/vector_revamp/layers/Boob_Medium_Highlights2.tw new file mode 100644 index 0000000000000000000000000000000000000000..653982588f028573a9c6aa3e438d0ecb38c89fde --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Highlights2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Highlights2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g3014" transform="'+_boob_left_art_transform+'" ><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9" class="highlight2" d="m 321.76732,202.98942 c -2.24758,1.20251 -7.44827,3.88396 -5.38213,7.57381 4.23715,-0.071 5.92957,-5.70386 5.38213,-7.57381 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7" class="highlight2" d="m 312.09439,222.06039 c -3.52683,3.26178 -5.76341,8.34571 -1.88762,10.3195 2.98911,-1.10062 3.7767,-5.82866 1.88762,-10.3195 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4" class="highlight2" d="m 312.37099,218.66381 c -1.45195,1.21811 -0.55284,1.57513 -0.29636,2.05122 0.91423,-0.4922 1.12461,-0.75849 0.29636,-2.05122 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-70" class="highlight2" d="m 323.62317,200.44685 c -0.70321,0.2097 -1.91059,0.15541 -1.19026,1.55076 2.16327,-0.20337 1.45089,-1.07074 1.19026,-1.55076 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4-2" class="highlight2" d="m 314.01066,214.12617 c -1.11294,-1.53405 -2.19421,-0.93805 -2.68716,-0.71571 0.55046,0.56081 1.587,0.71901 2.68716,0.71571 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-4-2-1" class="highlight2" d="m 313.88423,211.37159 c -1.29574,-0.23601 -1.88877,0.15883 -2.19442,0.60489 1.134,0.2189 1.34152,0.27164 2.19442,-0.60489 z"/></g><g id="g3024" transform="'+_boob_right_art_transform+'" ><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7" class="highlight2" d="m 247.9062,221.14042 c -7.62159,-1.9871 -15.09403,5.90489 -17.77314,7.66238 4.07679,1.14519 17.22608,2.90775 17.77314,-7.66238 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5" class="highlight2" d="m 255.78198,212.79897 c -0.95282,-0.17319 -2.05051,0.57552 -1.97909,1.35787 0.65101,0.10861 1.99182,0.29621 1.97909,-1.35787 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9" class="highlight2" d="m 229.41707,228.57127 c -0.73203,-0.21484 -5.15512,0.19734 -5.63251,0.25215 0.75202,0.71167 5.58739,1.42579 5.63251,-0.25215 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-6" class="highlight2" d="m 219.51702,235.37627 c -0.0284,5.33194 2.23939,13.97727 3.65131,15.5372 0.17258,-0.32513 -3.39485,-14.58806 -3.65131,-15.5372 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-4" class="highlight2" d="m 219.52806,232.80599 c -0.9515,0.64423 -0.46796,1.54477 -0.0582,1.90403 0.59571,-0.35255 0.32483,-1.39831 0.0582,-1.90403 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-62-3" class="highlight2" d="m 219.83124,227.63948 c -0.59901,0.17025 -1.09692,0.35984 -1.51392,0.72202 0.72549,0.21496 1.41311,0.13798 1.51392,-0.72202 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-5-1-0-9-62-3-9" class="highlight2" d="m 219.85898,225.8855 c -0.26942,0.0314 -0.84341,0.20991 -0.92331,0.70779 0.27525,-0.29894 0.86207,-0.25886 0.92331,-0.70779 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Nipples.tw b/src/art/vector_revamp/layers/Boob_Medium_Nipples.tw new file mode 100644 index 0000000000000000000000000000000000000000..2ecdcc2f7b6ad98b46e8aafb1da140d2092eeaa3 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Nipples.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Nipples [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2294"><path sodipodi:nodetypes="ccccc" d="m 219.66711,231.32551 c 0,0 -2.07916,-0.84424 -1.96587,-2.50683 0.27229,-2.06527 2.87049,-4.55573 4.56939,-3.54333 0.73795,0.4953 1.19745,1.3592 1.19745,1.3592 -0.28724,2.54749 -1.44251,3.76835 -3.80097,4.69096 z" class="shadow" id="path2283"/><path id="path2285" class="areola" d="m 219.66711,231.32551 c 0,0 -2.09128,-0.97248 -1.96587,-2.50683 0.22689,-1.88232 3.0014,-4.53764 4.56939,-3.54333 0.6399,0.45092 1.19745,1.3592 1.19745,1.3592 -0.28152,2.37691 -1.50508,3.78179 -3.80097,4.69096 z" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccc" d="m 218.29586,227.4828 c 0.63254,-0.49981 1.24594,-0.4023 2.58629,-0.13128 -1.20929,-0.062 -1.73229,-0.39852 -2.58629,0.13128 z" class="shadow" id="path2288"/><path sodipodi:nodetypes="ccc" d="m 219.23311,227.17234 c -0.0126,-0.30553 0.11607,-0.87173 0.80585,-0.93739 -0.78295,0.23692 -0.68828,0.58174 -0.80585,0.93739 z" class="shadow" id="path2290"/><path sodipodi:nodetypes="ccc" d="m 220.87274,231.59877 c 1.83694,-1.04074 2.9183,-2.84285 2.47489,-4.27858 0.24179,0.88681 0.46243,2.78645 -2.47489,4.27858 z" class="shadow" id="path2292"/></g><g transform="'+_boob_left_art_transform+'" id="g2310"><path sodipodi:nodetypes="ccscccc" class="shadow" d="m 309.81086,216.32021 c -0.65912,-0.84792 -0.55031,-2.1736 -0.36852,-2.79251 0.43828,-1.66398 2.36958,-2.51043 4.05199,-2.48698 1.47529,0.0205 2.31113,0.23638 2.97306,1.55088 0.7186,0.55937 0.76617,1.51497 0.72875,1.55811 -0.19628,1.38288 -1.11197,3.36797 -3.79882,3.25712 -2.15571,0.10863 -2.89207,-0.0288 -3.58646,-1.08662 z" id="path2298"/><path id="path2300" d="m 309.81086,216.32021 c -0.45016,-0.86882 -0.5452,-2.18377 -0.36852,-2.79251 0.46228,-1.59289 2.54845,-2.46893 4.05199,-2.48698 1.48227,-0.0177 2.31964,0.4407 2.97306,1.55088 0.60221,0.66517 0.7511,1.52867 0.72875,1.55811 -0.2578,1.29402 -1.17053,3.2834 -3.79882,3.25712 -2.03215,0.002 -2.83404,-0.0784 -3.58646,-1.08662 z" class="areola" sodipodi:nodetypes="csscccc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 310.75896,212.81749 c 1.44439,-0.5616 2.8211,0.19783 3.71681,0.95003 -1.07555,-0.52478 -2.45102,-1.24397 -3.71681,-0.95003 z" id="path2302"/><path id="path2304" d="m 312.42759,212.80804 c 0.82391,-0.71672 1.32028,-0.90751 2.55627,-0.79081 -1.15563,0.0407 -1.68078,0.25167 -2.55627,0.79081 z" class="shadow" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 310.23731,216.41028 c 6.9597,1.44668 6.35651,-3.37569 6.23036,-3.85562 0.42028,2.9281 -1.33459,5.40848 -6.23036,3.85562 z" id="path2306"/><path sodipodi:nodetypes="ccc" d="m 311.91659,217.9795 c 3.67212,-0.37532 4.7724,-1.1783 5.15758,-3.33875 -0.0448,2.50473 -2.04255,3.15529 -5.15758,3.33875 z" class="shadow" id="path2308"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Outfit_Maid.tw b/src/art/vector_revamp/layers/Boob_Medium_Outfit_Maid.tw new file mode 100644 index 0000000000000000000000000000000000000000..8f03ccc92887afb27b119a2375a15331d5337808 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Outfit_Maid.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Outfit_Maid [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter><clipPath clipPathUnits="userSpaceOnUse" id="clipPath2523"><path style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:1" d="m 274.57189,189.42903 15.50314,-3.68772 7.17414,5.6607 18.78855,-0.15563 22.89606,-10.20457 4.18325,-5.70166 12.47654,1.89159 300.60628,-20.29169 -9.82055,549.03095 -688.642378,1.7251 29.38501,-463.4512 z" id="path2525" sodipodi:nodetypes="cccccccccccc"/></clipPath></defs><g id="g2809" style="display:inline;opacity:1" clip-path="url(#clipPath2523)"><g id="g2538" transform="'+_boob_outfit_art_transform+'" ><path style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke-width:0.99515665" d="m 227.00685,243.38843 c -2.76471,9.20616 1.1523,22.46284 10.23433,26.44142 13.66316,10.50116 31.65638,-1.69767 47.38431,-2.79233 21.61943,-0.77747 47.79009,14.35634 64.89544,-1.51164 12.83936,-8.09143 12.84724,-26.23313 11.44045,-40.41498 0.7133,-22.58264 -24.44265,-62.6023 -24.52354,-62.59331 -0.004,-0.002 -98.3921,36.39445 -109.43099,80.87084 z" id="path2459" sodipodi:nodetypes="ccccccc"/><path sodipodi:nodetypes="aaaaaca" id="path2806" d="m 227.00685,243.38843 c -2.63483,9.07628 2.28426,21.33088 10.23433,26.44142 13.30944,8.5557 31.57548,-2.14261 47.38431,-2.79233 21.61943,-0.88852 47.79009,11.73964 64.89544,-1.51164 11.06829,-8.57445 12.1231,-26.43062 11.44045,-40.41498 -1.09258,-22.38199 -24.52354,-62.59331 -24.52354,-62.59331 0,0 -96.78599,37.31223 -109.43099,80.87084 z" style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.99515665"/></g></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Piercing.tw b/src/art/vector_revamp/layers/Boob_Medium_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..da50b25d3211ca8fa7fad2530b59d676a56eb62f --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1" id="g2807"/><g transform="'+_boob_left_art_transform+'" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1" id="g2817"><path d="m 319.36283,214.04054 c 0,0.74947 -0.84077,1.5972 -1.5972,1.5972 -0.75643,0 -1.5972,-0.84773 -1.5972,-1.5972 0,-0.74947 0.84077,-1.5972 1.5972,-1.5972 0.75643,0 1.5972,0.84773 1.5972,1.5972 z" id="path2809" sodipodi:nodetypes="aaaaa" class="shadow"/><path d="m 309.64776,215.76331 c -0.75293,0 -1.63873,-0.84886 -1.5972,-1.5972 0.0463,-0.83366 1.21255,-1.57531 1.96548,-1.57531 -0.68775,1.21129 -0.7805,1.82947 -0.3682,3.17251 z" id="path2811" sodipodi:nodetypes="saccs" class="shadow"/><path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path2813" d="m 319.21763,214.04054 c 0,0.68133 -0.76433,1.452 -1.452,1.452 -0.68767,0 -1.452,-0.77067 -1.452,-1.452 0,-0.68134 0.76433,-1.452 1.452,-1.452 0.68767,0 1.452,0.77066 1.452,1.452 z"/><path class="steel_piercing" sodipodi:nodetypes="saccs" id="path2815" d="m 309.64664,215.61811 c -0.68448,0 -1.48776,-0.77158 -1.452,-1.452 0.0401,-0.76308 1.10584,-1.452 1.79032,-1.452 -0.71906,1.10285 -0.73484,1.67672 -0.33828,2.904 z"/></g><g transform="'+_boob_right_art_transform+'" id="g2827" style="display:inline"><path class="shadow" sodipodi:nodetypes="aaaaa" id="path2819" d="m 224.20461,228.08348 c 0,0.74947 -0.84077,1.5972 -1.5972,1.5972 -0.75643,0 -1.5972,-0.84773 -1.5972,-1.5972 0,-0.74947 0.84077,-1.5972 1.5972,-1.5972 0.75643,0 1.5972,0.84773 1.5972,1.5972 z"/><path class="shadow" sodipodi:nodetypes="cscc" id="path2821" d="m 217.78699,229.56335 c -0.34466,-0.31248 -0.8444,-0.64473 -0.8444,-1.05102 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 -0.78404,0.89358 -0.83246,1.20611 -0.7528,2.64822 z"/><path d="m 224.05941,228.08348 c 0,0.68133 -0.76433,1.452 -1.452,1.452 -0.68767,0 -1.452,-0.77067 -1.452,-1.452 0,-0.68134 0.76433,-1.452 1.452,-1.452 0.68767,0 1.452,0.77066 1.452,1.452 z" id="path2823" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path d="m 217.78247,229.49646 c -0.31333,-0.28407 -0.76728,-0.63503 -0.76728,-1.00438 0,-0.68448 0.76752,-1.452 1.452,-1.452 -0.5497,0.90956 -0.83533,1.21423 -0.68472,2.45638 z" id="path2825" sodipodi:nodetypes="cscc" class="steel_piercing"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Medium_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Boob_Medium_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..3def579eb3e5817764073ae476be54943e9b677b --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Medium_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Medium_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_left_art_transform+'" id="g2789"><path sodipodi:nodetypes="caaacccccsascccccc" id="path2777" class="shadow" d="m 308.53153,209.94473 c 0,0 -2.49411,9.18374 -0.98325,13.39981 1.04425,2.91398 3.31774,6.91285 6.40728,6.7218 3.05706,-0.18904 4.59484,-4.44702 5.47216,-7.38158 1.23461,-4.12965 -0.7356,-12.9098 -0.7356,-12.9098 0,0 0.11352,1.8255 0.16679,3.66985 -0.16929,0.006 -2.35051,-4.1e-4 -2.35051,-4.1e-4 0.0559,0.37078 -0.0172,0.52908 -0.0182,0.90408 0,0 2.10319,-0.01 2.38726,-0.0165 0.0394,2.95347 -0.12672,6.29356 -1.09131,8.44744 -0.78349,1.74932 -2.10939,3.66042 -3.89433,3.67566 -1.987,0.017 -3.50956,-2.07688 -4.40441,-4.01713 -0.94479,-2.04857 -1.13062,-5.2179 -1.1115,-8.05448 0.44876,0 0.89492,-0.0536 0.89492,-0.0536 l 0.20179,-0.91124 c 0,0 -0.63009,-0.0132 -1.08238,-0.0132 0.0399,-1.72733 0.14124,-3.46134 0.14124,-3.46134 z"/><path sodipodi:nodetypes="caccc" id="path2779" class="shadow" d="m 313.96786,226.69394 c 0,0 -1.85221,9.4952 -1.92044,14.30624 -0.078,5.49738 1.72993,16.40283 1.72993,16.40283 0,0 -0.37012,-9.79442 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z"/><path sodipodi:nodetypes="cacac" id="path2781" class="shadow" d="m 313.71366,255.39314 c 0,0 -1.08607,3.59047 -0.98853,5.42648 0.0928,1.74745 1.48279,5.03598 1.48279,5.03598 0,0 1.05088,-3.32642 0.98853,-5.03598 -0.0683,-1.87389 -1.48279,-5.42648 -1.48279,-5.42648 z"/><path d="m 308.97852,210.85194 c 0,0 -2.26737,8.34885 -0.89386,12.18164 0.94932,2.64907 3.01613,6.28441 5.8248,6.11072 2.77915,-0.17186 4.17713,-4.04274 4.97469,-6.71053 1.12237,-3.75422 -0.66873,-11.73618 -0.66873,-11.73618 0,0 0.1032,1.19752 0.15163,2.87419 -0.1539,0.005 -1.857,-3.7e-4 -1.857,-3.7e-4 -0.01,0.4056 -0.009,0.4963 -0.0851,0.81799 0,0 1.70069,-0.005 1.95894,-0.0111 0.0358,2.68498 -0.1152,6.18346 -0.9921,8.14152 -0.71227,1.59029 -1.91762,3.32765 -3.5403,3.34151 -1.80636,0.0154 -3.19051,-1.88807 -4.00401,-3.65193 -0.8589,-1.86234 -1.02784,-5.20558 -1.01046,-7.78429 0.40797,0 0.46484,-0.0487 0.46484,-0.0487 l 0.16073,-0.8284 c 0,0 -0.20131,-0.012 -0.61253,-0.012 0.0363,-1.5703 0.1284,-2.68465 0.1284,-2.68465 z" class="steel_piercing" id="path2783" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 313.92164,228.08981 c 0,0 -1.68382,8.632 -1.74585,13.00567 -0.0709,4.99762 1.57266,14.91166 1.57266,14.91166 0,0 -0.33647,-8.90402 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z" class="steel_piercing" id="path2785" sodipodi:nodetypes="caccc"/><path d="m 313.73597,255.8687 c 0,0 -0.98734,3.26408 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57815 1.34799,4.57815 0,0 0.95535,-3.02401 0.89867,-4.57815 -0.0621,-1.70355 -1.34799,-4.93318 -1.34799,-4.93318 z" class="steel_piercing" id="path2787" sodipodi:nodetypes="cacac"/></g><g transform="'+_boob_right_art_transform+'" id="g2803"><path sodipodi:nodetypes="caaacccccsascccccc" id="path2791" class="shadow" d="m 224.22146,224.11765 c 0,0 1.84875,9.08379 0.67687,13.39983 -0.70222,2.58629 -1.73488,6.86756 -4.41084,6.72179 -2.75834,-0.15025 -3.17412,-4.68356 -3.76709,-7.3816 -0.92442,-4.20618 0.5064,-12.90978 0.5064,-12.90978 0,0 -0.0782,1.73915 -0.11483,3.58349 0.11654,0.006 1.05275,-4.1e-4 1.05275,-4.1e-4 l -0.54866,0.90407 c 0,0 -0.32127,-0.01 -0.51683,-0.0165 -0.0271,2.95346 0.0873,6.37993 0.75126,8.5338 0.53937,1.74933 1.16447,3.66322 2.68091,3.67564 1.67758,0.0137 2.41602,-2.07685 3.03204,-4.01709 0.65041,-2.04858 0.77834,-5.30427 0.76517,-8.14084 -0.30893,0 -1.87642,-0.0536 -1.87642,-0.0536 0.0596,-0.36182 0.0683,-0.46339 0.2179,-0.91125 0,0 1.33728,-0.0132 1.64865,-0.0132 -0.0275,-1.72732 -0.0972,-3.37499 -0.0972,-3.37499 z"/><path sodipodi:nodetypes="caccc" id="path2793" class="shadow" d="m 220.8683,241.74486 c 0,0 -1.85221,9.4952 -1.92044,14.30623 -0.078,5.49739 1.72993,16.40284 1.72993,16.40284 0,0 -0.37012,-9.79444 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z"/><path sodipodi:nodetypes="cacac" id="path2795" class="shadow" d="m 220.6141,270.44405 c 0,0 -1.08607,3.59049 -0.98853,5.4265 0.0928,1.74744 1.48279,5.03595 1.48279,5.03595 0,0 1.05088,-3.3264 0.98853,-5.03595 -0.0683,-1.8739 -1.48279,-5.4265 -1.48279,-5.4265 z"/><path d="m 223.91434,225.02477 c 0,0 1.68069,8.258 0.61534,12.18167 -0.63838,2.35118 -1.57717,6.24324 -4.00986,6.11072 -2.50758,-0.13659 -2.88557,-4.25779 -3.42463,-6.71055 -0.84038,-3.8238 0.46036,-11.73616 0.46036,-11.73616 0,0 -0.071,1.19752 -0.10438,2.87419 0.10594,0.005 0.62785,-3.7e-4 0.62785,-3.7e-4 l -0.33933,0.82187 c 0,0 -0.12233,-0.009 -0.30011,-0.015 -0.0247,2.68496 0.0793,6.18345 0.68297,8.14152 0.49034,1.5903 1.05861,3.33021 2.43719,3.3415 1.52508,0.0125 2.19638,-1.88805 2.7564,-3.65191 0.59128,-1.86235 0.70758,-5.20558 0.69561,-7.78429 -0.28085,0 -1.70584,-0.0487 -1.70584,-0.0487 0.0541,-0.32893 0.16478,-0.53596 0.16187,-0.82841 0,0 1.25193,-0.012 1.535,-0.012 -0.025,-1.57029 -0.0884,-2.68465 -0.0884,-2.68465 z" class="steel_piercing" id="path2797" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 220.82208,243.14073 c 0,0 -1.68382,8.632 -1.74585,13.00566 -0.0709,4.99762 1.57266,14.91167 1.57266,14.91167 0,0 -0.33647,-8.90403 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z" class="steel_piercing" id="path2799" sodipodi:nodetypes="caccc"/><path d="m 220.63641,270.91962 c 0,0 -0.98735,3.26408 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57813 1.34799,4.57813 0,0 0.95535,-3.02399 0.89867,-4.57813 -0.0621,-1.70354 -1.34799,-4.93318 -1.34799,-4.93318 z" class="steel_piercing" id="path2801" sodipodi:nodetypes="cacac"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_None_Areola_Heart.tw b/src/art/vector_revamp/layers/Boob_None_Areola_Heart.tw new file mode 100644 index 0000000000000000000000000000000000000000..1db32492478aa16f1a8203b4db1508589b48c6d4 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_None_Areola_Heart.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_None_Areola_Heart [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccczcc" class="areola" d="m 245.56185,251.55642 c -0.86254,-0.78552 -2.03098,-2.55215 -3.02546,-4.70061 -0.10805,-2.51234 0.0677,-9.261 3.10818,-14.05758 1.421,0.25373 2.07623,1.82455 2.07623,1.82455 0,0 3.32805,-3.93385 6.38833,0.80632 3.06028,4.74018 -5.55654,14.38093 -8.54728,16.12699 z" id="path2482-8-7"/><path sodipodi:nodetypes="czczcc" class="areola" d="m 311.20178,248.40454 c -3.18669,-2.26963 -9.63881,-12.72964 -4.55598,-16.92564 5.08282,-4.19601 7.31661,-0.008 7.31661,-0.008 0,0 4.25554,-3.93385 8.16868,0.80632 3.91314,4.74018 -7.10509,14.38093 -10.92931,16.12699 z" id="path2482-8"/><path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" id="path3454"/><path id="path3456" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 311.35893,236.87262 c 0.87662,-0.34085 1.71217,0.12006 2.25579,0.57658 -0.65277,-0.31849 -1.48757,-0.75499 -2.25579,-0.57658 z" id="path3458"/><path id="path3460" d="m 312.37165,236.86687 c 0.50004,-0.43498 0.80129,-0.55077 1.55144,-0.47994 -0.70137,0.0247 -1.0201,0.15274 -1.55144,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.11037,-0.47307 -2.60223,-1.38769 -0.0634,-0.11498 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.26383,-1.82945 2.28672,-1.77138 1.68239,0.0955 2.07736,2.11008 2.06584,2.11245 -0.17469,0.92279 -0.57699,2.09291 -1.71464,2.09291 z" id="path3464"/><path id="path3466" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.20276,-0.60407 -2.60223,-1.38769 -0.0122,0.01 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.40347,-1.84755 2.28672,-1.77138 1.63435,0.14096 2.07736,2.11008 2.06584,2.11245 -0.14324,0.78536 -0.57699,2.09291 -1.71464,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" id="path3468"/><path id="path3470" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_None_Areola_Huge.tw b/src/art/vector_revamp/layers/Boob_None_Areola_Huge.tw new file mode 100644 index 0000000000000000000000000000000000000000..3ae1f5e9b273922488348ce101a02820dc2b7b93 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_None_Areola_Huge.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_None_Areola_Huge [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="sssss" class="areola" d="m 312.36549,244.87514 c -3.61722,-0.50693 -7.2727,-3.89397 -7.28985,-6.92977 -0.0217,-3.87428 4.59215,-7.91784 8.64542,-7.69252 3.81157,0.2119 7.78917,3.37036 7.00783,8.06614 -0.78135,4.69578 -4.03833,7.16227 -8.3634,6.55615 z" id="path3496"/><path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" id="path3498"/><path id="path3500" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 311.35893,236.87262 c 0.87662,-0.34085 1.71217,0.12006 2.25579,0.57658 -0.65277,-0.31849 -1.48757,-0.75499 -2.25579,-0.57658 z" id="path3502"/><path id="path3504" d="m 312.37165,236.86687 c 0.50004,-0.43498 0.80129,-0.55077 1.55144,-0.47994 -0.70137,0.0247 -1.0201,0.15274 -1.55144,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="sccsss" class="areola" d="m 246.55371,247.8122 c -1.42904,-0.30609 -2.86721,-1.66227 -3.78493,-3.35714 -0.13062,-3.67239 0.5558,-7.15081 2.2875,-10.24949 0.83401,-0.69815 1.50768,-1.09014 2.38433,-1.01566 2.49382,0.21188 5.09628,3.37036 4.58507,8.06614 -0.51122,4.69578 -2.64219,7.16228 -5.47197,6.55615 z" id="path3506"/><path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.11037,-0.47307 -2.60223,-1.38769 -0.0634,-0.11498 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.26383,-1.82945 2.28672,-1.77138 1.68239,0.0955 2.07736,2.11008 2.06584,2.11245 -0.17469,0.92279 -0.57699,2.09291 -1.71464,2.09291 z" id="path3508"/><path id="path3510" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.20276,-0.60407 -2.60223,-1.38769 -0.0122,0.01 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.40347,-1.84755 2.28672,-1.77138 1.63435,0.14096 2.07736,2.11008 2.06584,2.11245 -0.14324,0.78536 -0.57699,2.09291 -1.71464,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" id="path3512"/><path id="path3514" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_None_Areola_Large.tw b/src/art/vector_revamp/layers/Boob_None_Areola_Large.tw new file mode 100644 index 0000000000000000000000000000000000000000..0022f1793ac0d65cdcf82051f46f5ed92935e5f3 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_None_Areola_Large.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_None_Areola_Large [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="sssss" class="areola" d="m 312.54464,242.65363 c -2.51196,-0.35203 -5.05049,-2.70415 -5.0624,-4.81234 -0.0151,-2.69047 3.18899,-5.4985 6.00377,-5.34202 2.64692,0.14715 5.40914,2.34052 4.86655,5.60148 -0.54261,3.26096 -2.8044,4.9738 -5.80792,4.55288 z" id="path3540"/><path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" id="path3542"/><path id="path3544" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 311.35893,236.87262 c 0.87662,-0.34085 1.71217,0.12006 2.25579,0.57658 -0.65277,-0.31849 -1.48757,-0.75499 -2.25579,-0.57658 z" id="path3546"/><path id="path3548" d="m 312.37165,236.86687 c 0.50004,-0.43498 0.80129,-0.55077 1.55144,-0.47994 -0.70137,0.0247 -1.0201,0.15274 -1.55144,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="sssss" class="areola" d="m 247.17149,245.59069 c -1.85435,-0.35203 -3.72832,-2.70415 -3.73712,-4.81234 -0.0108,-2.69047 2.35414,-5.4985 4.43204,-5.34202 1.95398,0.14715 3.99308,2.34052 3.59253,5.60148 -0.40055,3.26096 -2.07023,4.9738 -4.28745,4.55288 z" id="path3550"/><path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.11037,-0.47307 -2.60223,-1.38769 -0.0634,-0.11498 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.26383,-1.82945 2.28672,-1.77138 1.68239,0.0955 2.07736,2.11008 2.06584,2.11245 -0.17469,0.92279 -0.57699,2.09291 -1.71464,2.09291 z" id="path3552"/><path id="path3554" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.20276,-0.60407 -2.60223,-1.38769 -0.0122,0.01 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.40347,-1.84755 2.28672,-1.77138 1.63435,0.14096 2.07736,2.11008 2.06584,2.11245 -0.14324,0.78536 -0.57699,2.09291 -1.71464,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" id="path3556"/><path id="path3558" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Areola_NoBoob.tw b/src/art/vector_revamp/layers/Boob_None_Areola_Normal.tw similarity index 98% rename from src/art/vector_revamp/layers/Boob_Areola_NoBoob.tw rename to src/art/vector_revamp/layers/Boob_None_Areola_Normal.tw index f1d0120faef2906fdfecabd1d4bd6056edb0cf73..372b85219083e21f337b2c5f225f43cc26cc1c88 100644 --- a/src/art/vector_revamp/layers/Boob_Areola_NoBoob.tw +++ b/src/art/vector_revamp/layers/Boob_None_Areola_Normal.tw @@ -1,3 +1,3 @@ -:: Art_Vector_Revamp_Boob_Areola_NoBoob [nobr] +:: Art_Vector_Revamp_Boob_None_Areola_Normal [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path1074" d="m 312.6125,241.81215 c -2.0933,-0.29336 -4.20874,-2.25346 -4.21867,-4.01028 -0.0126,-2.24206 2.65749,-4.58209 5.00314,-4.45169 2.20577,0.12263 4.50762,1.95044 4.05546,4.6679 -0.45217,2.71747 -2.337,4.14484 -4.83993,3.79407 z" class="areola" sodipodi:nodetypes="sssss"/><path id="path1082" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" class="shadow" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccsscsc" class="areola" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" id="path1084"/><path id="path1086" d="m 311.35893,236.87262 c 0.87662,-0.34085 1.71217,0.12006 2.25579,0.57658 -0.65277,-0.31849 -1.48757,-0.75499 -2.25579,-0.57658 z" class="shadow" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 312.37165,236.86687 c 0.50004,-0.43498 0.80129,-0.55077 1.55144,-0.47994 -0.70137,0.0247 -1.0201,0.15274 -1.55144,0.47994 z" id="path1088"/><path id="path1074-8" d="m 247.22158,244.74921 c -1.54529,-0.29336 -3.10693,-2.25346 -3.11426,-4.01028 -0.009,-2.24206 1.96178,-4.58209 3.69336,-4.45169 1.62832,0.12263 3.32757,1.95044 2.99378,4.6679 -0.33379,2.71747 -1.72519,4.14484 -3.57288,3.79407 z" class="areola" sodipodi:nodetypes="sssss"/><path id="path1082-6" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.11037,-0.47307 -2.60223,-1.38769 -0.0634,-0.11498 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.26383,-1.82945 2.28672,-1.77138 1.68239,0.0955 2.07736,2.11008 2.06584,2.11245 -0.17469,0.92279 -0.57699,2.09291 -1.71464,2.09291 z" class="shadow" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccsscsc" class="areola" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.20276,-0.60407 -2.60223,-1.38769 -0.0122,0.01 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.40347,-1.84755 2.28672,-1.77138 1.63435,0.14096 2.07736,2.11008 2.06584,2.11245 -0.14324,0.78536 -0.57699,2.09291 -1.71464,2.09291 z" id="path1084-7"/><path id="path1086-5" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" class="shadow" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" id="path1088-1"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_None_Areola_Piercing.tw b/src/art/vector_revamp/layers/Boob_None_Areola_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..718ef8a6f822b1f60bdc1631a15d8e2d1509765e --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_None_Areola_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_None_Areola_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g3997" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5146" d="m 249.37141,236.16209 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 249.22621,236.16209 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-7" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5148" d="m 248.77479,245.35448 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 248.62959,245.35448 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-5" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5150" d="m 315.53009,232.95802 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 315.38489,232.95802 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-76" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5152" d="m 314.20427,242.60621 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 314.05907,242.60621 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-4" sodipodi:nodetypes="aaaaa" class="steel_piercing"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_None_Areola_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Boob_None_Areola_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..ea4e036122bc7981cab7f82c7be27c297ff1ce17 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_None_Areola_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_None_Areola_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="matrix(1.0049807,0,0,1.0049807,-1.6578337,-0.99661844)" id="g1669" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/><g transform="matrix(1.0106254,0,0,1.0106254,-2.44532,-2.2864495)" id="g1677" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/><g id="g3991" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path d="m 316.39389,239.90478 c 0,0 3.2247,3.12482 5.1113,2.71879 2.22965,-0.47988 4.45815,-3.14958 4.18403,-5.41376 -0.265,-2.18891 -2.97434,-4.01868 -5.17703,-4.1173 -1.77684,-0.0795 -4.45626,2.93478 -4.45626,2.93478 0,0 3.02457,-2.02781 4.59604,-1.6176 1.28507,0.33544 2.54463,1.66577 2.63232,2.991 0.0979,1.47984 -1.08496,3.17766 -2.4737,3.69817 -1.42807,0.53526 -4.4167,-1.19408 -4.4167,-1.19408 z" class="shadow" id="path5154" sodipodi:nodetypes="caaacaaac"/><path d="m 309.09912,239.33692 c 0,0 -3.63548,2.6356 -5.44536,1.96596 -2.13901,-0.79141 -3.96612,-3.75032 -3.37348,-5.95269 0.57293,-2.12915 3.51451,-3.55595 5.7089,-3.34101 1.77014,0.17338 3.99471,3.53744 3.99471,3.53744 0,0 -2.70621,-2.43649 -4.31999,-2.25342 -1.31966,0.1497 -2.75526,1.28782 -3.03012,2.5872 -0.30692,1.45096 0.62309,3.29946 1.9239,4.01176 1.33767,0.73248 4.54144,-0.55524 4.54144,-0.55524 z" class="shadow" id="path5156" sodipodi:nodetypes="caaacaaac"/><path d="m 250.11413,242.34048 c 0,0 2.50391,3.06938 4.10816,2.71878 2.07541,-0.45357 3.61174,-3.30398 3.36288,-5.41376 -0.22858,-1.9378 -2.21189,-4.02594 -4.161,-4.1173 -1.5418,-0.0723 -3.58167,2.93479 -3.58167,2.93479 0,0 2.39892,-1.97771 3.69402,-1.61761 1.17658,0.32716 2.04104,1.77207 2.1157,2.991 0.0856,1.39697 -0.68667,3.18357 -1.98821,3.69817 -1.161,0.45903 -3.54988,-1.19407 -3.54988,-1.19407 z" class="shadow" id="path5159" sodipodi:nodetypes="caaacaaac"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6" class="steel_piercing" d="m 316.80209,239.7203 c 0,0 2.93154,2.84074 4.64663,2.47162 2.02696,-0.43625 4.05287,-2.86325 3.80367,-4.9216 -0.24091,-1.98991 -2.70395,-3.65334 -4.70639,-3.743 -1.61531,-0.0723 -4.05115,2.66799 -4.05115,2.66799 0,0 2.74961,-1.84347 4.17822,-1.47055 1.16824,0.30495 2.3133,1.51434 2.39302,2.71909 0.089,1.34531 -0.98633,2.88878 -2.24882,3.36197 -1.29825,0.4866 -4.01518,-1.08552 -4.01518,-1.08552 z"/><path d="m 244.44613,241.71183 c 0,0 -2.00072,2.39045 -3.16913,1.96596 -1.96379,-0.71346 -2.44375,-3.91931 -1.96331,-5.95269 0.36115,-1.52853 1.75982,-3.49874 3.32249,-3.34101 1.40388,0.1417 2.32487,3.53744 2.32487,3.53744 0,0 -1.39697,-2.38913 -2.51418,-2.25342 -1.03607,0.12585 -1.59405,1.55735 -1.76347,2.5872 -0.22538,1.36995 -0.067,3.29109 1.11967,4.01176 0.76947,0.4673 2.64306,-0.55524 2.64306,-0.55524 z" class="shadow" id="path5161" sodipodi:nodetypes="caaacaaac"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-4" class="steel_piercing" d="m 308.73334,239.09718 c 0,0 -3.30498,2.396 -4.95033,1.78724 -1.94455,-0.71946 -3.60556,-3.40938 -3.0668,-5.41154 0.52085,-1.93559 3.19501,-3.23268 5.18991,-3.03728 1.60922,0.15762 3.63156,3.21586 3.63156,3.21586 0,0 -2.46019,-2.21499 -3.92727,-2.04857 -1.19969,0.13609 -2.50478,1.17075 -2.75465,2.352 -0.27902,1.31906 0.56644,2.99951 1.749,3.64706 1.21606,0.66589 4.12858,-0.50477 4.12858,-0.50477 z"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-7" class="steel_piercing" d="m 250.44258,242.15562 c 0,0 2.27628,2.79035 3.73469,2.47162 1.88674,-0.41234 3.2834,-3.00362 3.05716,-4.9216 -0.2078,-1.76164 -2.01081,-3.65995 -3.78272,-3.743 -1.40164,-0.0657 -3.25607,2.66799 -3.25607,2.66799 0,0 2.18084,-1.79792 3.3582,-1.47055 1.06962,0.29741 1.85549,1.61097 1.92337,2.71909 0.0778,1.26997 -0.62425,2.89415 -1.80747,3.36197 -1.05545,0.4173 -3.22716,-1.08552 -3.22716,-1.08552 z"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-6-4-1" class="steel_piercing" d="m 244.22839,241.47 c 0,0 -1.81884,2.17314 -2.88103,1.78724 -1.78526,-0.6486 -2.22159,-3.56301 -1.78483,-5.41154 0.32832,-1.38957 1.59984,-3.18067 3.02045,-3.03728 1.27625,0.12882 2.11352,3.21586 2.11352,3.21586 0,0 -1.26998,-2.17194 -2.28562,-2.04857 -0.94188,0.11441 -1.44914,1.41578 -1.60316,2.352 -0.20489,1.24541 -0.0609,2.9919 1.01789,3.64706 0.69951,0.42482 2.40278,-0.50477 2.40278,-0.50477 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_None_Areola_Star.tw b/src/art/vector_revamp/layers/Boob_None_Areola_Star.tw new file mode 100644 index 0000000000000000000000000000000000000000..ed0edacfa1b84755b6c5df77f4ac90444a15df41 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_None_Areola_Star.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_None_Areola_Star [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccccccc" class="areola" d="m 245.94542,243.7292 c -1.59722,1.06191 -2.35083,2.49876 -3.47795,3.76961 l 0.32113,-3.98865 c 0.0553,-0.7947 0.40279,-1.51228 0.75202,-2.1894 l -0.31673,-0.21132 c 0.14076,-1.07326 0.28806,-2.14356 0.74577,-3.07275 0.37871,-0.20231 0.7193,-0.2331 1.0392,-0.17079 1.01956,-2.12609 3.72149,-6.1021 3.72149,-6.1021 0,0 -0.79365,4.08678 -0.92235,6.011 1.85312,0.24383 5.32849,0.96237 5.32849,0.96237 0,0 -3.2575,1.66352 -4.54841,2.77169 0.4372,2.531 2.06436,7.47727 2.06436,7.47727 0,0 -3.66477,-3.07349 -4.70702,-5.25693 z" id="path2472-3-6"/><path sodipodi:nodetypes="ccccccccccc" class="areola" d="m 312.50785,241.03136 -7.06793,5.17136 3.4237,-7.5798 -5.8564,-2.5784 8.08136,-0.87646 2.8937,-6.1021 1.34811,6.011 8.07479,0.96237 -6.89265,2.77169 3.12832,7.47727 z" id="path2472-3"/><path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" id="path3476"/><path id="path3478" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 311.35893,236.87262 c 0.87662,-0.34085 1.71217,0.12006 2.25579,0.57658 -0.65277,-0.31849 -1.48757,-0.75499 -2.25579,-0.57658 z" id="path3480"/><path id="path3482" d="m 312.37165,236.86687 c 0.50004,-0.43498 0.80129,-0.55077 1.55144,-0.47994 -0.70137,0.0247 -1.0201,0.15274 -1.55144,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.11037,-0.47307 -2.60223,-1.38769 -0.0634,-0.11498 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.26383,-1.82945 2.28672,-1.77138 1.68239,0.0955 2.07736,2.11008 2.06584,2.11245 -0.17469,0.92279 -0.57699,2.09291 -1.71464,2.09291 z" id="path3486"/><path id="path3488" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.20276,-0.60407 -2.60223,-1.38769 -0.0122,0.01 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.40347,-1.84755 2.28672,-1.77138 1.63435,0.14096 2.07736,2.11008 2.06584,2.11245 -0.14324,0.78536 -0.57699,2.09291 -1.71464,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" id="path3490"/><path id="path3492" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_None_Areola_Wide.tw b/src/art/vector_revamp/layers/Boob_None_Areola_Wide.tw new file mode 100644 index 0000000000000000000000000000000000000000..8e02aad1b061bae2c004b6e96b765b37d2feaa6d --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_None_Areola_Wide.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_None_Areola_Wide [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="sssss" class="areola" d="m 312.46321,243.66341 c -3.01435,-0.42244 -6.06059,-3.24498 -6.07488,-5.77481 -0.0181,-3.22857 3.82679,-6.5982 7.20452,-6.41043 3.17631,0.17658 6.49097,2.80863 5.83986,6.72178 -0.65113,3.91315 -3.36528,5.96856 -6.9695,5.46346 z" id="path3518"/><path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.30525,-0.47307 -2.84254,-1.38769 -0.0692,-0.11498 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.38054,-1.82945 2.49788,-1.77138 1.83776,0.0955 2.2692,2.11008 2.25662,2.11245 -0.19082,0.92279 -0.63028,2.09291 -1.87298,2.09291 z" id="path3520"/><path id="path3522" d="m 313.47573,239.66032 c -1.94762,-0.0319 -2.40618,-0.60407 -2.84254,-1.38769 -0.0133,0.01 -0.14074,-0.6753 -0.039,-1.04629 0.26998,-0.9844 1.53307,-1.84755 2.49788,-1.77138 1.78528,0.14096 2.2692,2.11008 2.25662,2.11245 -0.15647,0.78536 -0.63028,2.09291 -1.87298,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 311.35893,236.87262 c 0.87662,-0.34085 1.71217,0.12006 2.25579,0.57658 -0.65277,-0.31849 -1.48757,-0.75499 -2.25579,-0.57658 z" id="path3524"/><path id="path3526" d="m 312.37165,236.86687 c 0.50004,-0.43498 0.80129,-0.55077 1.55144,-0.47994 -0.70137,0.0247 -1.0201,0.15274 -1.55144,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="sccsss" class="areola" d="m 247.11138,246.60047 c -1.68167,-0.31925 -3.377,-2.00927 -4.10929,-3.90778 -0.21043,-2.33888 0.48566,-4.99206 1.49412,-6.5277 0.99819,-1.12304 2.26263,-1.8391 3.44907,-1.74976 2.34478,0.17657 4.7917,2.80863 4.31104,6.72178 -0.48066,3.91315 -2.48428,5.96856 -5.14494,5.46346 z" id="path3528"/><path sodipodi:nodetypes="ccsscsc" class="shadow" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.11037,-0.47307 -2.60223,-1.38769 -0.0634,-0.11498 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.26383,-1.82945 2.28672,-1.77138 1.68239,0.0955 2.07736,2.11008 2.06584,2.11245 -0.17469,0.92279 -0.57699,2.09291 -1.71464,2.09291 z" id="path3530"/><path id="path3532" d="m 246.84943,242.44113 c -1.78297,-0.0319 -2.20276,-0.60407 -2.60223,-1.38769 -0.0122,0.01 -0.12885,-0.6753 -0.0357,-1.04629 0.24716,-0.9844 1.40347,-1.84755 2.28672,-1.77138 1.63435,0.14096 2.07736,2.11008 2.06584,2.11245 -0.14324,0.78536 -0.57699,2.09291 -1.71464,2.09291 z" class="areola" sodipodi:nodetypes="ccsscsc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 244.21552,240.06223 c 0.80251,-0.34085 1.56743,0.12006 2.06509,0.57658 -0.59758,-0.31849 -1.36181,-0.75499 -2.06509,-0.57658 z" id="path3534"/><path id="path3536" d="m 245.14263,240.05648 c 0.45777,-0.43498 0.73355,-0.55077 1.42028,-0.47994 -0.64208,0.0247 -0.93386,0.15274 -1.42028,0.47994 z" class="shadow" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_None_Piercing.tw b/src/art/vector_revamp/layers/Boob_None_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..00ce08ea72a5b1a8da39012a9908f863e374fda6 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_None_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_None_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g4003" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5118" d="m 317.55033,237.51562 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 317.40513,237.51562 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-66" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5120" d="m 311.06595,237.34375 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75292,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84428,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 310.92075,237.34375 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68447,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76753,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-3" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5122" d="m 250.31593,240.49857 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 250.17073,240.49857 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-66-7" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="csasccc" id="path5124" d="m 244.73869,241.83277 c -0.14826,0.0584 -0.30012,0.0911 -0.44845,0.0911 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.20146,0 0.40944,0.0605 0.60606,0.16339 -0.83243,0.65113 -1.08254,2.0678 -0.15761,2.93988 z"/><path d="m 244.65287,241.69585 c -0.13478,0.0531 -0.27284,0.0828 -0.40768,0.0828 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.18314,0 0.37222,0.055 0.55096,0.14854 -0.68459,0.57919 -0.90899,1.86654 -0.14328,2.67261 z" id="path2749-8-3-4" sodipodi:nodetypes="csascc" class="steel_piercing"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_None_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Boob_None_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..0f0f335896f8883aacd2b1c5f57197f072548054 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_None_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_None_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g3755" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path d="m 309.14219,234.55641 c 0,0 -1.66351,6.13387 -0.6555,8.95038 0.69607,1.9449 2.20975,4.61726 4.27152,4.4898 2.04057,-0.12615 3.06329,-2.97147 3.6481,-4.93052 0.82353,-2.7587 -0.4904,-8.62306 -0.4904,-8.62306 0,0 0.0757,0.87987 0.1112,2.11179 -0.11286,0.003 -0.5941,-2.8e-4 -0.5941,-2.8e-4 l 0.18681,0.60388 c 0,0 0.23025,-0.007 0.41963,-0.011 0.0263,1.97276 -0.0845,4.54326 -0.72754,5.98192 -0.52233,1.16847 -1.40518,2.44497 -2.59622,2.45515 -1.32582,0.0113 -2.33971,-1.38723 -2.93627,-2.68322 -0.62986,-1.36835 -0.75375,-3.82476 -0.74101,-5.71945 0.29918,0 1.29193,-0.0359 1.29193,-0.0359 l 0.0835,-0.60866 c 0,0 -1.06431,-0.009 -1.36586,-0.009 0.0266,-1.15377 0.0942,-1.97253 0.0942,-1.97253 z" class="shadow" id="path5128" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 249.30676,237.70242 c 0,0 1.66352,6.13388 0.6555,8.95038 -0.69607,1.9449 -2.20974,4.61726 -4.27152,4.4898 -2.04056,-0.12615 -3.06329,-2.97147 -3.6481,-4.93052 -0.82353,-2.7587 0.4904,-8.62306 0.4904,-8.62306 0,0 -0.0757,0.87987 -0.1112,2.11179 0.11286,0.003 1.62535,-2.8e-4 1.62535,-2.8e-4 l -0.0321,0.60388 c 0,0 -1.41619,-0.007 -1.60557,-0.011 -0.0263,1.97276 0.0845,4.54326 0.72754,5.98192 0.52233,1.16847 1.40518,2.44498 2.59622,2.45515 1.32583,0.0113 2.33971,-1.38723 2.93627,-2.68322 0.62986,-1.36835 0.75375,-3.82476 0.74101,-5.71945 -0.29918,0 -1.29193,-0.0359 -1.29193,-0.0359 l -0.0835,-0.60866 c 0,0 1.06431,-0.009 1.36586,-0.009 -0.0266,-1.15377 -0.0942,-1.97253 -0.0942,-1.97253 z" class="shadow" id="path5130" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 312.76639,245.60534 c 0,0 -1.2348,6.34214 -1.28029,9.55581 -0.052,3.67206 1.15328,10.95624 1.15328,10.95624 0,0 -0.24674,-6.54217 0.73111,-13.09806 -0.65216,-2.17566 -0.6041,-7.41399 -0.6041,-7.41399 z" class="shadow" id="path5132" sodipodi:nodetypes="caccc"/><path d="m 312.59693,264.7749 c 0,0 -0.72404,2.39816 -0.65902,3.62462 0.0619,1.16743 0.98852,3.36375 0.98852,3.36375 0,0 0.70059,-2.22176 0.65903,-3.36375 -0.0456,-1.25189 -0.98853,-3.62462 -0.98853,-3.62462 z" class="shadow" id="path5134" sodipodi:nodetypes="cacac"/><path d="m 245.85647,248.53096 c 0,0 -1.2348,6.34215 -1.28029,9.55581 -0.052,3.67207 1.15328,10.95624 1.15328,10.95624 0,0 -0.24674,-6.54217 0.73111,-13.09806 -0.65216,-2.17566 -0.6041,-7.41399 -0.6041,-7.41399 z" class="shadow" id="path5136" sodipodi:nodetypes="caccc"/><path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9" class="steel_piercing" d="m 309.44017,235.16237 c 0,0 -1.51228,5.57625 -0.59591,8.13671 0.63279,1.76809 2.00887,4.19751 3.8832,4.08164 1.85507,-0.11468 2.78481,-2.70134 3.31646,-4.48229 0.74866,-2.50791 -0.44582,-7.83915 -0.44582,-7.83915 0,0 0.0688,0.79988 0.10109,1.91981 -0.1026,0.003 -0.54009,-2.5e-4 -0.54009,-2.5e-4 l 0.16983,0.54898 c 0,0 0.20931,-0.006 0.38148,-0.01 0.0239,1.79342 -0.0768,4.13023 -0.6614,5.43811 -0.47485,1.06224 -1.27744,2.2227 -2.3602,2.23195 -1.20529,0.0103 -2.12701,-1.26112 -2.66934,-2.43929 -0.5726,-1.24395 -0.68523,-3.47705 -0.67364,-5.1995 0.27198,0 1.17448,-0.0326 1.17448,-0.0326 l 0.0759,-0.55333 c 0,0 -0.96756,-0.008 -1.24169,-0.008 0.0242,-1.04888 0.0856,-1.79321 0.0856,-1.79321 z"/><path d="m 245.68701,267.70052 c 0,0 -0.72404,2.39816 -0.65902,3.62462 0.0619,1.16743 0.98852,3.36375 0.98852,3.36375 0,0 0.70059,-2.22176 0.65903,-3.36375 -0.0456,-1.25189 -0.98853,-3.62462 -0.98853,-3.62462 z" class="shadow" id="path5138" sodipodi:nodetypes="cacac"/><path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-0" class="steel_piercing" d="m 249.00878,238.30838 c 0,0 1.51229,5.57626 0.59591,8.13671 -0.63279,1.76809 -2.00886,4.19751 -3.8832,4.08164 -1.85506,-0.11468 -2.78481,-2.70134 -3.31646,-4.48229 -0.74866,-2.50791 0.44582,-7.83915 0.44582,-7.83915 0,0 -0.0688,0.79988 -0.10109,1.91981 0.1026,0.003 1.47759,-2.5e-4 1.47759,-2.5e-4 l -0.0292,0.54898 c 0,0 -1.28744,-0.006 -1.45961,-0.01 -0.0239,1.79342 0.0768,4.13023 0.6614,5.43811 0.47485,1.06224 1.27744,2.22271 2.3602,2.23195 1.2053,0.0103 2.12701,-1.26112 2.66934,-2.43929 0.5726,-1.24395 0.68523,-3.47705 0.67364,-5.1995 -0.27198,0 -1.17448,-0.0326 -1.17448,-0.0326 l -0.0759,-0.55333 c 0,0 0.96756,-0.008 1.24169,-0.008 -0.0242,-1.04888 -0.0856,-1.79321 -0.0856,-1.79321 z"/><path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0" class="steel_piercing" d="m 312.73558,246.53771 c 0,0 -1.12255,5.76559 -1.1639,8.6871 -0.0473,3.33824 1.04844,9.96021 1.04844,9.96021 0,0 -0.22431,-5.94742 0.66464,-11.90732 -0.59287,-1.97788 -0.54918,-6.73999 -0.54918,-6.73999 z"/><path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7" class="steel_piercing" d="m 312.6118,265.09255 c 0,0 -0.65822,2.18015 -0.59911,3.29511 0.0563,1.0613 0.89866,3.05796 0.89866,3.05796 0,0 0.63689,-2.01978 0.59911,-3.05796 -0.0414,-1.13808 -0.89866,-3.29511 -0.89866,-3.29511 z"/><path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-5" class="steel_piercing" d="m 245.82566,249.46333 c 0,0 -1.12255,5.76559 -1.1639,8.6871 -0.0472,3.33824 1.04844,9.96021 1.04844,9.96021 0,0 -0.22431,-5.94742 0.66464,-11.90732 -0.59287,-1.97788 -0.54918,-6.73999 -0.54918,-6.73999 z"/><path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-4" class="steel_piercing" d="m 245.70188,268.01817 c 0,0 -0.65822,2.18015 -0.59911,3.29511 0.0563,1.0613 0.89866,3.05796 0.89866,3.05796 0,0 0.63689,-2.01978 0.59911,-3.05796 -0.0414,-1.13808 -0.89866,-3.29511 -0.89866,-3.29511 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Outfit_Maid.tw b/src/art/vector_revamp/layers/Boob_Outfit_Maid.tw deleted file mode 100644 index 1ee7b7356921ce26d670950beea024b0251587f5..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Outfit_Maid.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Outfit_Maid [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"style="display:inline;opacity:1" id="g2134" transform="matrix(0.99515665,0,0,0.99515665,1.6400838,0.96959443)"><path transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2120" d="m 226.34766,216.85742 c 2.98619,-0.62315 5.85031,-1.4204 8.64453,-2.38086 2.79422,-0.96045 5.51818,-2.08363 8.22656,-3.35742 2.70838,-1.27379 5.40024,-2.69856 8.12891,-4.26172 2.72867,-1.56316 5.49451,-3.2652 8.34961,-5.09375 -11.79723,6.74895 -21.9632,11.76361 -33.34961,15.09375 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/><path transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2122" d="m 210.87305,229.81641 c 0.0451,-0.71382 0.22536,-1.51018 0.23047,-2.16797 0.006,-0.73749 0.0162,-1.44067 0.0996,-2.11719 0.0834,-0.67652 0.23899,-1.32563 0.53516,-1.95117 0.29618,-0.62554 0.73278,-1.22795 1.37695,-1.8125 0.64418,-0.58456 1.4957,-1.15152 2.62305,-1.70508 1.12735,-0.55356 2.52969,-1.0944 4.27539,-1.62695 1.74571,-0.53255 3.83474,-1.0566 6.33399,-1.57813 -18.80751,3.15763 -15.50638,7.20888 -15.47461,12.95899 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/><path transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2124" d="m 217.95898,264.23438 c -1.87038,-2.59224 -3.45412,-5.21814 -4.73046,-7.86329 -1.27635,-2.64515 -2.24524,-5.30915 -2.88672,-7.97461 -0.32074,-1.33272 -0.56048,-2.66635 -0.71485,-3.99804 -0.15437,-1.33169 -0.22414,-2.66171 -0.20703,-3.98828 0.0171,-1.32658 0.12272,-2.64941 0.31641,-3.9668 0.19369,-1.31739 0.47619,-2.62947 0.85156,-3.93359 -3.41169,10.57894 -1.27171,21.77042 7.37109,31.72461 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/><path transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2126" d="m 235.44727,272.8418 c -1.78236,-0.10142 -3.49568,-0.27493 -5.13086,-0.58203 -1.63519,-0.30711 -3.19249,-0.74733 -4.66211,-1.38282 -1.46962,-0.63548 -2.85106,-1.46617 -4.13672,-2.55273 -1.28566,-1.08657 -2.47529,-2.42951 -3.5586,-4.08984 4.0232,7.19252 9.64374,9.47305 17.48829,8.60742 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/><path transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2128" d="m 352.21094,243.07812 c -0.86728,1.85762 -1.81754,3.59094 -2.84961,5.20508 -1.03208,1.61415 -2.14654,3.10879 -3.33985,4.49219 -1.19331,1.3834 -2.46542,2.65492 -3.8164,3.82031 -1.35099,1.16539 -2.78006,2.22544 -4.28516,3.18555 -1.5051,0.96011 -3.08653,1.82033 -4.74219,2.58789 -1.65565,0.76756 -3.38485,1.44155 -5.1875,2.0293 -1.80264,0.58774 -3.67891,1.08911 -5.625,1.50976 -1.94608,0.42066 -3.96287,0.76104 -6.04882,1.02735 17.12494,-2.04297 30.70536,-8.64667 35.89453,-23.85743 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/><path sodipodi:nodetypes="ccsscccsscccccssscccccccscsccccscsccccccccsc" transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2130" d="m 339.94922,198.16016 c -32.0958,-3.67156 -54.13039,-3.02574 -80.25195,3.60351 -2.8551,1.82855 -5.62094,3.53059 -8.34961,5.09375 -2.72867,1.56316 -5.42053,2.98793 -8.12891,4.26172 -2.70838,1.27379 -5.43234,2.39697 -8.22656,3.35742 -2.79422,0.96046 -5.65834,1.75771 -8.64453,2.38086 -2.49925,0.52153 -4.58828,1.04558 -6.33399,1.57813 -1.7457,0.53255 -3.14804,1.07339 -4.27539,1.62695 -1.12735,0.55356 -1.97887,1.12052 -2.62305,1.70508 -0.64417,0.58455 -1.08077,1.18696 -1.37695,1.8125 -0.29617,0.62554 -0.4518,1.27465 -0.53516,1.95117 -0.0834,0.67652 -0.0939,1.3797 -0.0996,2.11719 -0.005,0.65779 -0.1854,1.45415 -0.23047,2.16797 0.005,0.86012 -0.0584,1.75431 -0.28516,2.69336 -0.37537,1.30412 -0.65787,2.6162 -0.85156,3.93359 -0.19369,1.31739 -0.2993,2.64022 -0.31641,3.9668 -0.0171,1.32657 0.0527,2.65659 0.20703,3.98828 0.15437,1.33169 0.39411,2.66532 0.71485,3.99804 0.64148,2.66546 1.61037,5.32946 2.88672,7.97461 1.27634,2.64515 2.86008,5.27105 4.73046,7.86329 1.08331,1.66033 2.27294,3.00327 3.5586,4.08984 1.28566,1.08656 2.6671,1.91725 4.13672,2.55273 1.46962,0.63549 3.02692,1.07571 4.66211,1.38282 1.63518,0.3071 3.3485,0.48061 5.13086,0.58203 6.92666,-0.0668 16.98116,-4.96122 24.06579,-9.98486 10.21409,-7.24271 18.92639,-25.59132 18.92639,-25.59132 0,0 -0.76705,11.91966 12.59961,22.70899 6.80046,5.48921 18.84722,7.23767 25.27735,6.96094 2.08595,-0.26631 4.10274,-0.60669 6.04882,-1.02735 1.94609,-0.42065 3.82236,-0.92202 5.625,-1.50976 1.80265,-0.58775 3.53185,-1.26174 5.1875,-2.0293 1.65566,-0.76756 3.23709,-1.62778 4.74219,-2.58789 1.5051,-0.96011 2.93417,-2.02016 4.28516,-3.18555 1.35098,-1.16539 2.62309,-2.43691 3.8164,-3.82031 1.19331,-1.3834 2.30777,-2.87804 3.33985,-4.49219 1.03207,-1.61414 1.98233,-3.34746 2.84961,-5.20508 0.91196,-2.53191 1.61912,-4.98945 2.13086,-7.37109 0.51173,-2.38164 0.82888,-4.68757 0.96093,-6.91211 0.13206,-2.22453 0.0786,-4.3691 -0.14843,-6.42969 -0.22709,-2.06059 -0.62768,-4.03792 -1.19336,-5.92773 -0.56569,-1.88981 -1.29595,-3.6921 -2.17969,-5.4043 -0.88374,-1.71219 -1.92226,-3.33358 -3.10352,-4.86132 -1.18125,-1.52775 -2.50661,-2.96042 -3.96484,-4.29688 -1.45823,-1.33646 -3.04901,-2.57651 -4.76367,-3.71484 z" style="display:inline;opacity:1;fill:#ffffff;stroke-width:0.99515665"/><path transform="matrix(1.0048669,0,0,1.0048669,-1.648066,-0.97431337)" id="path2132" d="m 339.94922,198.16016 c 1.71466,1.13833 3.30544,2.37838 4.76367,3.71484 1.45823,1.33646 2.78359,2.76913 3.96484,4.29688 1.18126,1.52774 2.21978,3.14913 3.10352,4.86132 0.88374,1.7122 1.614,3.51449 2.17969,5.4043 0.56568,1.88981 0.96627,3.86714 1.19336,5.92773 0.22708,2.06059 0.28049,4.20516 0.14843,6.42969 -0.13205,2.22454 -0.4492,4.53047 -0.96093,6.91211 -0.51174,2.38164 -1.2189,4.83918 -2.13086,7.37109 9.47613,-21.16383 1.84382,-35.97308 -12.26172,-44.91796 z" style="display:inline;opacity:1;fill:#000000;stroke-width:0.99515665"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Outfit_Straps.tw b/src/art/vector_revamp/layers/Boob_Outfit_Straps.tw index 71f4987a253906cab21f202140c090ae82e6e9df..42437ace15766f417021471cbe844a634750410f 100644 --- a/src/art/vector_revamp/layers/Boob_Outfit_Straps.tw +++ b/src/art/vector_revamp/layers/Boob_Outfit_Straps.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Boob_Outfit_Straps [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g4822" transform="matrix(1.0017766,0,0,1.0017766,-0.63254292,-0.30724415)"><path sodipodi:nodetypes="ccccc" id="XMLID_511_-1-8-2-9" class="shadow" d="m 222.31309,230.41353 c 27.62761,-2.84004 54.98628,-6.21798 80.98167,-12.32247 l -1.38826,-3.79634 c -24.90326,5.69686 -50.40708,10.1926 -77.19019,12.12975 z"/><path sodipodi:nodetypes="ccacccacc" id="XMLID_511_-1-8-2" class="shadow" d="m 212.5985,231.94358 c -0.26979,1.40375 -1.14168,4.52761 -0.71231,6.04134 4.21188,-1.0921 8.69472,-3.92289 11.42312,-7.59136 2.22607,-2.99304 3.41407,-7.35824 3.25049,-10.70782 -1.0224,-0.0113 -3.74679,0.90991 -4.05819,1.48623 l 1.54493,-0.28257 c -0.80164,3.27918 -1.61019,5.62444 -3.35983,7.88176 -2.06572,2.66511 -6.05614,5.00466 -8.0223,6.1622 z"/><path sodipodi:nodetypes="ccccc" id="XMLID_511_-1-8-2-9-8" class="shadow" d="m 326.40919,217.07208 c 9.16891,0.60183 19.58559,1.46163 28.7545,6.66542 l -0.76326,-3.96821 c -7.37379,-4.43842 -17.0551,-5.84118 -25.58802,-6.68627 z"/><path sodipodi:nodetypes="ccccc" id="XMLID_511_-1-8-2-9-2" class="shadow" d="m 319.33812,223.52443 c 3.13149,14.52631 2.89341,28.68012 -4.75134,43.25235 l -4.21669,-0.17242 c 8.29737,-13.11032 9.07293,-28.18441 5.62601,-43.09152 z"/><path sodipodi:nodetypes="cszzzsccszssscc" id="XMLID_511_-1-8-2-8" class="shadow" d="m 311.78146,205.54126 c 0,0 -4.06911,0.83634 -4.75478,1.23338 -3.06248,1.77333 -6.34186,4.91937 -4.95242,9.39071 1.38944,4.47134 9.79756,8.93051 15.3809,8.32756 5.58334,-0.60295 11.38232,-6.15933 12.03225,-10.55334 0.64993,-4.39401 -2.92629,-6.78148 -5.99024,-8.33911 -1.53648,-0.7811 -6.39247,-0.64798 -6.39247,-0.64798 0.43132,0.28882 0.76656,0.59341 1.0155,0.9021 0,0 2.86473,0.19978 4.09027,1.15267 2.09399,1.62813 4.90222,3.22496 4.36182,6.65545 -0.5404,3.43049 -5.49858,7.36518 -9.65134,7.74193 -4.54706,0.41253 -10.62186,-2.21016 -12.22062,-6.41495 -0.98964,-2.60278 1.92904,-5.99888 3.85457,-7.00098 0.68954,-0.35886 1.99763,-0.90354 1.99763,-0.90354 0.26018,-0.62451 0.61169,-1.00862 1.22893,-1.5439 z"/><path sodipodi:nodetypes="ccccc" id="XMLID_511_-1-8-2-9-2-1" class="shadow" d="m 213.87832,237.17918 c -2.24796,16.04054 3.36292,28.33477 21.43031,35.21675 l -1.9186,0.0485 C 218.02546,272.2753 210.15789,252.8513 211.92692,237.85504 Z"/><path sodipodi:nodetypes="ccccc" id="XMLID_511_-1-8-2-9-28" class="shadow" d="m 248.16035,269.85576 64.35095,-3.16234 -15.11323,-3.41196 -42.937,2.58394 z"/></g></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g4822" transform="matrix(1.0017766,0,0,1.0017766,-0.63254292,-0.30724415)"><path sodipodi:nodetypes="ccccc" id="XMLID_511_-1-8-2-9" class="shadow" d="m 222.31309,230.41353 c 27.62761,-2.84004 54.98628,-6.21798 80.98167,-12.32247 l -1.38826,-3.79634 c -24.90326,5.69686 -50.40708,10.1926 -77.19019,12.12975 z"/><path sodipodi:nodetypes="ccacccacc" id="XMLID_511_-1-8-2" class="shadow" d="m 212.5985,231.94358 c -0.26979,1.40375 -1.14168,4.52761 -0.71231,6.04134 4.21188,-1.0921 8.69472,-3.92289 11.42312,-7.59136 2.22607,-2.99304 3.41407,-7.35824 3.25049,-10.70782 -1.0224,-0.0113 -3.74679,0.90991 -4.05819,1.48623 l 1.54493,-0.28257 c -0.80164,3.27918 -1.61019,5.62444 -3.35983,7.88176 -2.06572,2.66511 -6.05614,5.00466 -8.0223,6.1622 z"/><path sodipodi:nodetypes="ccccc" id="XMLID_511_-1-8-2-9-8" class="shadow" d="m 326.40919,217.07208 c 9.16891,0.60183 19.58559,1.46163 28.7545,6.66542 l -0.76326,-3.96821 c -7.37379,-4.43842 -17.0551,-5.84118 -25.58802,-6.68627 z"/><path sodipodi:nodetypes="ccccc" id="XMLID_511_-1-8-2-9-2" class="shadow" d="m 319.33812,223.52443 c 3.13149,14.52631 2.89341,28.68012 -4.75134,43.25235 l -4.21669,-0.17242 c 8.29737,-13.11032 9.07293,-28.18441 5.62601,-43.09152 z"/><path sodipodi:nodetypes="cszzzsccszssscc" id="XMLID_511_-1-8-2-8" class="shadow" d="m 311.78146,205.54126 c 0,0 -4.06911,0.83634 -4.75478,1.23338 -3.06248,1.77333 -6.34186,4.91937 -4.95242,9.39071 1.38944,4.47134 9.79756,8.93051 15.3809,8.32756 5.58334,-0.60295 11.38232,-6.15933 12.03225,-10.55334 0.64993,-4.39401 -2.92629,-6.78148 -5.99024,-8.33911 -1.53648,-0.7811 -6.39247,-0.64798 -6.39247,-0.64798 0.43132,0.28882 0.76656,0.59341 1.0155,0.9021 0,0 2.86473,0.19978 4.09027,1.15267 2.09399,1.62813 4.90222,3.22496 4.36182,6.65545 -0.5404,3.43049 -5.49858,7.36518 -9.65134,7.74193 -4.54706,0.41253 -10.62186,-2.21016 -12.22062,-6.41495 -0.98964,-2.60278 1.92904,-5.99888 3.85457,-7.00098 0.68954,-0.35886 1.99763,-0.90354 1.99763,-0.90354 0.26018,-0.62451 0.61169,-1.00862 1.22893,-1.5439 z"/><path sodipodi:nodetypes="ccccc" id="XMLID_511_-1-8-2-9-2-1" class="shadow" d="m 213.87832,237.17918 c -2.24796,16.04054 3.36292,28.33477 21.43031,35.21675 l -1.9186,0.0485 C 218.02546,272.2753 210.15789,252.8513 211.92692,237.85504 Z"/><path sodipodi:nodetypes="ccccc" id="XMLID_511_-1-8-2-9-28" class="shadow" d="m 248.16035,269.85576 64.35095,-3.16234 -15.11323,-3.41196 -42.937,2.58394 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Piercing.tw b/src/art/vector_revamp/layers/Boob_Piercing.tw deleted file mode 100644 index 0a741dee6a9330a6df64359ee0ea4c56a34551b7..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Piercing.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Piercing [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g1366" transform="matrix(1.0081159,0,0,1.0081159,-2.6203467,-1.6676415)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/><g transform="'+_art_transform+'"id="g4019" transform="matrix(1,0,0,1.0092899,0,-2.0984812)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5080" d="m 320.92533,208.3125 c 0,0.75293 -0.84428,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75292,0 1.5972,0.84427 1.5972,1.5972 z"/><path class="shadow" sodipodi:nodetypes="saccs" id="path5082" d="m 310.52276,210.0972 c -0.75293,0 -1.60023,-0.84774 -1.5972,-1.5972 0.003,-0.75548 0.87005,-1.5972 1.62298,-1.5972 -0.36443,1.33139 -0.34478,1.89959 -0.0257,3.1944 z"/><path d="m 320.78013,208.3125 c 0,0.68448 -0.76753,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68447,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-1" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5084" d="m 219.00345,224.4375 c 0,0.75293 -0.84428,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75292,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 310.52164,209.952 c -0.68448,0 -1.45474,-0.76753 -1.452,-1.452 0.003,-0.69002 0.79096,-1.452 1.47544,-1.452 -0.3313,1.21035 -0.31344,1.7269 -0.0234,2.904 z" id="path2749-8-37" sodipodi:nodetypes="cacc" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="cscc" id="path5086" d="m 212.05295,224.91542 c -0.34466,-0.31248 -0.59049,-0.74536 -0.59049,-1.15165 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 -0.78404,0.89358 -1.08637,1.30674 -1.00671,2.74885 z"/><path d="m 218.85825,224.4375 c 0,0.68448 -0.76753,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68447,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-1-1" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path d="m 212.07187,224.79047 c -0.31333,-0.28407 -0.53681,-0.6776 -0.53681,-1.04695 0,-0.68448 0.76752,-1.452 1.452,-1.452 -0.71276,0.81234 -0.98761,1.18794 -0.91519,2.49895 z" id="path2749-8-1-5" sodipodi:nodetypes="cscc" class="steel_piercing"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Boob_Piercing_Heavy.tw deleted file mode 100644 index 3b6a5df3154279cd78a276292161afda96d371a3..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Piercing_Heavy.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Piercing_Heavy [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g4013" transform="matrix(1,0,0,1.0025792,0,-0.70652376)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path d="m 309.5038,204.64336 c 0,0 -2.49255,9.16089 -0.98325,13.36534 1.04444,2.90949 3.32191,6.89539 6.40728,6.7045 3.05198,-0.18881 4.5947,-4.43337 5.47216,-7.36259 1.23367,-4.11839 -0.7356,-12.87659 -0.7356,-12.87659 0,0 0.11352,1.82081 0.16679,3.66041 -0.16929,0.006 -1.17473,-4.1e-4 -1.17473,-4.1e-4 -0.19795,0.25684 -0.34925,0.53162 -0.25261,0.90176 0,0 1.16178,-0.01 1.44585,-0.0165 0.0394,2.94587 -0.12672,6.27737 -1.09131,8.42571 -0.78349,1.74482 -2.11155,3.65097 -3.89433,3.6662 -1.98467,0.0169 -3.50956,-2.07153 -4.40441,-4.00679 -0.94479,-2.0433 -1.13062,-5.20448 -1.1115,-8.03376 0.44876,0 0.51992,-0.0535 0.51992,-0.0535 l 0.0221,-0.9089 c 0,0 -0.0754,-0.0132 -0.52769,-0.0132 0.0399,-1.72289 0.14124,-3.45244 0.14124,-3.45244 z" class="shadow" id="path5090" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 219.3839,220.57007 c 0,0 2.13457,9.1044 0.8062,13.36536 -0.84502,2.71056 -2.41925,6.87099 -5.25359,6.7045 -2.86907,-0.16853 -3.7751,-4.57812 -4.48684,-7.36262 -1.06412,-4.16305 0.60315,-12.87656 0.60315,-12.87656 0,0 -0.0931,1.73467 -0.13676,3.57427 0.1388,0.006 0.75606,-4.1e-4 0.75606,-4.1e-4 l 0.17468,0.90174 c 0,0 -0.713,-0.01 -0.94592,-0.0165 -0.0323,2.94586 0.10395,6.36351 0.8948,8.51184 0.64242,1.74483 1.57258,3.65242 3.19313,3.66619 1.79796,0.0153 2.87763,-2.07151 3.61135,-4.00676 0.77468,-2.04331 0.92705,-5.29062 0.91137,-8.1199 -0.36796,0 -2.23494,-0.0535 -2.23494,-0.0535 0.071,-0.36089 0.0674,-0.74662 0.7341,-0.90891 0,0 1.11822,-0.0132 1.48908,-0.0132 -0.0328,-1.72288 -0.1158,-3.36631 -0.1158,-3.36631 z" class="shadow" id="path5092" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 314.94013,221.34948 c 0,0 -1.85221,9.47078 -1.92044,14.26944 -0.078,5.48324 1.72993,16.36063 1.72993,16.36063 0,0 -0.37012,-9.76923 1.09665,-19.55896 -0.97824,-3.24886 -0.90614,-11.07111 -0.90614,-11.07111 z" class="shadow" id="path5094" sodipodi:nodetypes="caccc"/><path d="m 314.68593,249.97485 c 0,0 -1.08607,3.58124 -0.98853,5.41252 0.0928,1.74295 1.48279,5.02302 1.48279,5.02302 0,0 1.05088,-3.31786 0.98853,-5.02302 -0.0683,-1.86907 -1.48279,-5.41252 -1.48279,-5.41252 z" class="shadow" id="path5096" sodipodi:nodetypes="cacac"/><path d="m 214.8358,236.62617 c 0,0 -1.85221,9.47077 -1.92044,14.26942 -0.078,5.48325 1.72993,16.36065 1.72993,16.36065 0,0 -0.37012,-9.76925 1.09665,-19.55896 -0.97824,-3.24886 -0.90614,-11.07111 -0.90614,-11.07111 z" class="shadow" id="path5098" sodipodi:nodetypes="caccc"/><path sodipodi:nodetypes="cacac" id="path5114" class="shadow" d="m 214.31901,239.32032 c 0,0 25.68032,21.60317 41.03252,20.95432 23.64619,-0.9994 60.23635,-37.49186 60.23635,-37.49186 0,0 -36.08773,39.66777 -60.29231,40.42734 -15.81322,0.49624 -40.97656,-23.8898 -40.97656,-23.8898 z"/><path d="m 214.5816,265.25153 c 0,0 -1.08608,3.58126 -0.98853,5.41254 0.0928,1.74295 1.48279,5.02299 1.48279,5.02299 0,0 1.05088,-3.31784 0.98853,-5.02299 -0.0683,-1.86908 -1.48279,-5.41254 -1.48279,-5.41254 z" class="shadow" id="path5100" sodipodi:nodetypes="cacac"/><path d="m 214.20192,239.13711 c 0,0 25.0305,25.8073 41.14961,25.36846 24.49265,-0.66681 60.32474,-41.89145 60.32474,-41.89145 0,0 -35.29445,44.3827 -60.3807,44.82694 -16.64383,0.29474 -41.09365,-28.30395 -41.09365,-28.30395 z" class="shadow" id="path5116" sodipodi:nodetypes="cacac"/><path d="m 214.31901,239.32032 c 0,0 25.65102,21.83396 41.03252,21.19676 23.67286,-0.98068 60.23635,-37.7343 60.23635,-37.7343 0,0 -36.15672,39.38263 -60.29231,40.16286 -15.75824,0.50942 -40.97656,-23.62532 -40.97656,-23.62532 z" class="steel_piercing" id="path1115-5" sodipodi:nodetypes="cacac"/><path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-2" class="steel_piercing" d="m 309.95079,205.54823 c 0,0 -2.26595,8.32808 -0.89386,12.15031 0.94949,2.64499 3.01992,6.26853 5.8248,6.095 2.77453,-0.17165 4.177,-4.03034 4.97469,-6.69327 1.12152,-3.74399 -0.66873,-11.70599 -0.66873,-11.70599 0,0 0.1032,1.19444 0.15163,2.8668 -0.1539,0.005 -1.06794,-3.7e-4 -1.06794,-3.7e-4 -0.17995,0.23349 -0.3175,0.48329 -0.22964,0.81978 0,0 1.05616,-0.009 1.31441,-0.015 0.0358,2.67807 -0.1152,6.16755 -0.9921,8.12058 -0.71227,1.5862 -1.91959,3.31907 -3.5403,3.33291 -1.80425,0.0154 -3.19051,-1.88321 -4.00401,-3.64253 -0.8589,-1.85755 -1.02784,-5.19219 -1.01046,-7.76427 0.40797,0 0.47266,-0.0486 0.47266,-0.0486 l 0.0201,-0.82627 c 0,0 -0.0685,-0.012 -0.47972,-0.012 0.0363,-1.56626 0.1284,-2.67774 0.1284,-2.67774 z"/><path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-0-8" class="steel_piercing" d="m 219.0181,221.47486 c 0,0 1.94052,8.27673 0.73291,12.15033 -0.7682,2.46414 -2.19932,6.24635 -4.77599,6.095 -2.60825,-0.15321 -3.43191,-4.16193 -4.07895,-6.69329 -0.96738,-3.78459 0.54832,-11.70597 0.54832,-11.70597 0,0 -0.0846,1.19444 -0.12433,2.8668 0.12619,0.005 0.68733,-3.7e-4 0.68733,-3.7e-4 l 0.1588,0.81976 c 0,0 -0.64818,-0.009 -0.85993,-0.015 -0.0294,2.67806 0.0945,6.16755 0.81346,8.12058 0.58402,1.58621 1.42962,3.32038 2.90284,3.3329 1.63451,0.0139 2.61603,-1.88319 3.28305,-3.64251 0.70425,-1.85756 0.84277,-5.19219 0.82852,-7.76427 -0.33451,0 -2.03177,-0.0486 -2.03177,-0.0486 0.0645,-0.32808 0.0613,-0.67874 0.66737,-0.82628 0,0 1.01656,-0.012 1.35371,-0.012 -0.0298,-1.56625 -0.10528,-2.67774 -0.10528,-2.67774 z"/><path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-8" class="steel_piercing" d="m 314.89391,222.74176 c 0,0 -1.68382,8.60979 -1.74585,12.97221 -0.0709,4.98476 1.57266,14.8733 1.57266,14.8733 0,0 -0.33647,-8.88111 0.99696,-17.78087 -0.88931,-2.95351 -0.82377,-10.06464 -0.82377,-10.06464 z"/><path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-8" class="steel_piercing" d="m 314.70824,250.44919 c 0,0 -0.98734,3.25568 -0.89867,4.92048 0.0844,1.5845 1.34799,4.56638 1.34799,4.56638 0,0 0.95535,-3.01623 0.89867,-4.56638 -0.0621,-1.69916 -1.34799,-4.92048 -1.34799,-4.92048 z"/><path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-5-7" class="steel_piercing" d="m 214.78958,238.01845 c 0,0 -1.68382,8.60979 -1.74585,12.9722 -0.0709,4.98477 1.57266,14.87331 1.57266,14.87331 0,0 -0.33647,-8.88113 0.99696,-17.78087 -0.88931,-2.95351 -0.82377,-10.06464 -0.82377,-10.06464 z"/><path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-4-0" class="steel_piercing" d="m 214.60391,265.72587 c 0,0 -0.98735,3.25569 -0.89867,4.92049 0.0844,1.5845 1.34799,4.56636 1.34799,4.56636 0,0 0.95535,-3.01622 0.89867,-4.56636 -0.0621,-1.69916 -1.34799,-4.92049 -1.34799,-4.92049 z"/><path sodipodi:nodetypes="cacac" id="path3697-9" class="steel_piercing" d="m 214.20192,239.13711 c 0,0 24.99906,26.03874 41.14961,25.6109 24.5188,-0.64952 60.32474,-42.13389 60.32474,-42.13389 0,0 -35.37023,44.09941 -60.3807,44.56246 -16.57995,0.30696 -41.09365,-28.03947 -41.09365,-28.03947 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Piercing_NoBoob.tw b/src/art/vector_revamp/layers/Boob_Piercing_NoBoob.tw deleted file mode 100644 index 65b2aa967e52535ae194b442f1056f39930d675f..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Piercing_NoBoob.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Piercing_NoBoob [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g4003" transform="matrix(1,0,0,1.0291768,0,-7.0593321)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5118" d="m 317.55033,237.51562 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 317.40513,237.51562 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-66" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5120" d="m 311.06595,237.34375 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75292,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84428,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 310.92075,237.34375 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68447,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76753,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-3" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5122" d="m 250.31593,240.49857 c 0,0.75293 -0.84427,1.5972 -1.5972,1.5972 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.75293,0 1.5972,0.84427 1.5972,1.5972 z"/><path d="m 250.17073,240.49857 c 0,0.68448 -0.76752,1.452 -1.452,1.452 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.68448,0 1.452,0.76752 1.452,1.452 z" id="path2749-8-66-7" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path class="shadow" sodipodi:nodetypes="csasccc" id="path5124" d="m 244.73869,241.83277 c -0.14826,0.0584 -0.30012,0.0911 -0.44845,0.0911 -0.75293,0 -1.5972,-0.84427 -1.5972,-1.5972 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 0.20146,0 0.40944,0.0605 0.60606,0.16339 -0.83243,0.65113 -1.08254,2.0678 -0.15761,2.93988 z"/><path d="m 244.65287,241.69585 c -0.13478,0.0531 -0.27284,0.0828 -0.40768,0.0828 -0.68448,0 -1.452,-0.76752 -1.452,-1.452 0,-0.68448 0.76752,-1.452 1.452,-1.452 0.18314,0 0.37222,0.055 0.55096,0.14854 -0.68459,0.57919 -0.90899,1.86654 -0.14328,2.67261 z" id="path2749-8-3-4" sodipodi:nodetypes="csascc" class="steel_piercing"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Piercing_NoBoob_Heavy.tw b/src/art/vector_revamp/layers/Boob_Piercing_NoBoob_Heavy.tw deleted file mode 100644 index 2adca2a70c8919d37a43cd323d650ee9718827f3..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Boob_Piercing_NoBoob_Heavy.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Boob_Piercing_NoBoob_Heavy [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g3755" transform="matrix(1,0,0,0.99551445,0,1.0543705)" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"><path d="m 309.14219,234.55641 c 0,0 -1.66351,6.13387 -0.6555,8.95038 0.69607,1.9449 2.20975,4.61726 4.27152,4.4898 2.04057,-0.12615 3.06329,-2.97147 3.6481,-4.93052 0.82353,-2.7587 -0.4904,-8.62306 -0.4904,-8.62306 0,0 0.0757,0.87987 0.1112,2.11179 -0.11286,0.003 -0.5941,-2.8e-4 -0.5941,-2.8e-4 l 0.18681,0.60388 c 0,0 0.23025,-0.007 0.41963,-0.011 0.0263,1.97276 -0.0845,4.54326 -0.72754,5.98192 -0.52233,1.16847 -1.40518,2.44497 -2.59622,2.45515 -1.32582,0.0113 -2.33971,-1.38723 -2.93627,-2.68322 -0.62986,-1.36835 -0.75375,-3.82476 -0.74101,-5.71945 0.29918,0 1.29193,-0.0359 1.29193,-0.0359 l 0.0835,-0.60866 c 0,0 -1.06431,-0.009 -1.36586,-0.009 0.0266,-1.15377 0.0942,-1.97253 0.0942,-1.97253 z" class="shadow" id="path5128" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 249.30676,237.70242 c 0,0 1.66352,6.13388 0.6555,8.95038 -0.69607,1.9449 -2.20974,4.61726 -4.27152,4.4898 -2.04056,-0.12615 -3.06329,-2.97147 -3.6481,-4.93052 -0.82353,-2.7587 0.4904,-8.62306 0.4904,-8.62306 0,0 -0.0757,0.87987 -0.1112,2.11179 0.11286,0.003 1.62535,-2.8e-4 1.62535,-2.8e-4 l -0.0321,0.60388 c 0,0 -1.41619,-0.007 -1.60557,-0.011 -0.0263,1.97276 0.0845,4.54326 0.72754,5.98192 0.52233,1.16847 1.40518,2.44498 2.59622,2.45515 1.32583,0.0113 2.33971,-1.38723 2.93627,-2.68322 0.62986,-1.36835 0.75375,-3.82476 0.74101,-5.71945 -0.29918,0 -1.29193,-0.0359 -1.29193,-0.0359 l -0.0835,-0.60866 c 0,0 1.06431,-0.009 1.36586,-0.009 -0.0266,-1.15377 -0.0942,-1.97253 -0.0942,-1.97253 z" class="shadow" id="path5130" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 312.76639,245.60534 c 0,0 -1.2348,6.34214 -1.28029,9.55581 -0.052,3.67206 1.15328,10.95624 1.15328,10.95624 0,0 -0.24674,-6.54217 0.73111,-13.09806 -0.65216,-2.17566 -0.6041,-7.41399 -0.6041,-7.41399 z" class="shadow" id="path5132" sodipodi:nodetypes="caccc"/><path sodipodi:nodetypes="cacac" id="path5142" class="shadow" d="m 245.62844,250.23975 c 0,0 17.16757,16.91723 28.15752,17.25901 14.6901,0.45685 38.98635,-20.68692 38.98635,-20.68692 0,0 -23.85532,24.26227 -39.04231,23.65915 -11.51555,-0.45732 -28.10156,-20.23124 -28.10156,-20.23124 z"/><path d="m 312.59693,264.7749 c 0,0 -0.72404,2.39816 -0.65902,3.62462 0.0619,1.16743 0.98852,3.36375 0.98852,3.36375 0,0 0.70059,-2.22176 0.65903,-3.36375 -0.0456,-1.25189 -0.98853,-3.62462 -0.98853,-3.62462 z" class="shadow" id="path5134" sodipodi:nodetypes="cacac"/><path d="m 245.51135,250.05572 c 0,0 16.43426,21.15463 28.27461,21.64865 15.44025,0.64421 39.07474,-25.06195 39.07474,-25.06195 0,0 -23.11514,28.87249 -39.1307,28.10077 -12.45924,-0.60036 -28.21865,-24.68747 -28.21865,-24.68747 z" class="shadow" id="path5144" sodipodi:nodetypes="cacac"/><path d="m 245.62844,250.23975 c 0,0 17.10777,17.17402 28.15752,17.52537 14.74599,0.46888 38.98635,-20.95328 38.98635,-20.95328 0,0 -23.88248,23.98358 -39.04231,23.39279 -11.48183,-0.44746 -28.10156,-19.96488 -28.10156,-19.96488 z" class="steel_piercing" id="path1115" sodipodi:nodetypes="cacac"/><path d="m 245.85647,248.53096 c 0,0 -1.2348,6.34215 -1.28029,9.55581 -0.052,3.67207 1.15328,10.95624 1.15328,10.95624 0,0 -0.24674,-6.54217 0.73111,-13.09806 -0.65216,-2.17566 -0.6041,-7.41399 -0.6041,-7.41399 z" class="shadow" id="path5136" sodipodi:nodetypes="caccc"/><path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9" class="steel_piercing" d="m 309.44017,235.16237 c 0,0 -1.51228,5.57625 -0.59591,8.13671 0.63279,1.76809 2.00887,4.19751 3.8832,4.08164 1.85507,-0.11468 2.78481,-2.70134 3.31646,-4.48229 0.74866,-2.50791 -0.44582,-7.83915 -0.44582,-7.83915 0,0 0.0688,0.79988 0.10109,1.91981 -0.1026,0.003 -0.54009,-2.5e-4 -0.54009,-2.5e-4 l 0.16983,0.54898 c 0,0 0.20931,-0.006 0.38148,-0.01 0.0239,1.79342 -0.0768,4.13023 -0.6614,5.43811 -0.47485,1.06224 -1.27744,2.2227 -2.3602,2.23195 -1.20529,0.0103 -2.12701,-1.26112 -2.66934,-2.43929 -0.5726,-1.24395 -0.68523,-3.47705 -0.67364,-5.1995 0.27198,0 1.17448,-0.0326 1.17448,-0.0326 l 0.0759,-0.55333 c 0,0 -0.96756,-0.008 -1.24169,-0.008 0.0242,-1.04888 0.0856,-1.79321 0.0856,-1.79321 z"/><path d="m 245.68701,267.70052 c 0,0 -0.72404,2.39816 -0.65902,3.62462 0.0619,1.16743 0.98852,3.36375 0.98852,3.36375 0,0 0.70059,-2.22176 0.65903,-3.36375 -0.0456,-1.25189 -0.98853,-3.62462 -0.98853,-3.62462 z" class="shadow" id="path5138" sodipodi:nodetypes="cacac"/><path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-0" class="steel_piercing" d="m 249.00878,238.30838 c 0,0 1.51229,5.57626 0.59591,8.13671 -0.63279,1.76809 -2.00886,4.19751 -3.8832,4.08164 -1.85506,-0.11468 -2.78481,-2.70134 -3.31646,-4.48229 -0.74866,-2.50791 0.44582,-7.83915 0.44582,-7.83915 0,0 -0.0688,0.79988 -0.10109,1.91981 0.1026,0.003 1.47759,-2.5e-4 1.47759,-2.5e-4 l -0.0292,0.54898 c 0,0 -1.28744,-0.006 -1.45961,-0.01 -0.0239,1.79342 0.0768,4.13023 0.6614,5.43811 0.47485,1.06224 1.27744,2.22271 2.3602,2.23195 1.2053,0.0103 2.12701,-1.26112 2.66934,-2.43929 0.5726,-1.24395 0.68523,-3.47705 0.67364,-5.1995 -0.27198,0 -1.17448,-0.0326 -1.17448,-0.0326 l -0.0759,-0.55333 c 0,0 0.96756,-0.008 1.24169,-0.008 -0.0242,-1.04888 -0.0856,-1.79321 -0.0856,-1.79321 z"/><path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0" class="steel_piercing" d="m 312.73558,246.53771 c 0,0 -1.12255,5.76559 -1.1639,8.6871 -0.0473,3.33824 1.04844,9.96021 1.04844,9.96021 0,0 -0.22431,-5.94742 0.66464,-11.90732 -0.59287,-1.97788 -0.54918,-6.73999 -0.54918,-6.73999 z"/><path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7" class="steel_piercing" d="m 312.6118,265.09255 c 0,0 -0.65822,2.18015 -0.59911,3.29511 0.0563,1.0613 0.89866,3.05796 0.89866,3.05796 0,0 0.63689,-2.01978 0.59911,-3.05796 -0.0414,-1.13808 -0.89866,-3.29511 -0.89866,-3.29511 z"/><path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-5" class="steel_piercing" d="m 245.82566,249.46333 c 0,0 -1.12255,5.76559 -1.1639,8.6871 -0.0472,3.33824 1.04844,9.96021 1.04844,9.96021 0,0 -0.22431,-5.94742 0.66464,-11.90732 -0.59287,-1.97788 -0.54918,-6.73999 -0.54918,-6.73999 z"/><path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-4" class="steel_piercing" d="m 245.70188,268.01817 c 0,0 -0.65822,2.18015 -0.59911,3.29511 0.0563,1.0613 0.89866,3.05796 0.89866,3.05796 0,0 0.63689,-2.01978 0.59911,-3.05796 -0.0414,-1.13808 -0.89866,-3.29511 -0.89866,-3.29511 z"/><path sodipodi:nodetypes="cacac" id="path3697" class="steel_piercing" d="m 245.51135,250.05572 c 0,0 16.35177,21.45578 28.27461,21.9594 15.5161,0.65539 39.07474,-25.3727 39.07474,-25.3727 0,0 -23.14622,28.57225 -39.1307,27.81221 -12.42068,-0.59059 -28.21865,-24.39891 -28.21865,-24.39891 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small.tw b/src/art/vector_revamp/layers/Boob_Small.tw new file mode 100644 index 0000000000000000000000000000000000000000..1f951648d2d44d36600fbe7c5a091dbfdca56293 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2754" transform="'+_boob_right_art_transform+'" ><path sodipodi:nodetypes="ccccccc" id="path2750" class="shadow" d="m 258.4635,206.70525 c -2.43693,2.43693 -11.69974,10.96496 -13.78161,16.78224 -7.98808,4.18336 -12.04016,9.22946 -16.46667,14.18272 0.43705,8.71501 1.70553,16.51029 9.57142,22.68835 5.76096,5.49343 12.38835,5.57452 18.88215,1.82583 5.22936,-5.97715 7.46563,-9.46914 13.85527,-23.053 -9.9785,-11.21563 7.18836,-22.98696 -12.06056,-32.42614 z"/><path d="m 258.4635,206.70525 c -2.51112,2.51112 -10.78183,11.16972 -13.78161,16.78224 -7.11937,4.34266 -11.56357,9.31685 -16.46667,14.18272 0.77061,8.54923 2.31908,16.20536 9.57142,22.68835 6.25108,4.85755 12.67805,5.19866 18.88215,1.82583 6.92903,-4.62954 11.03703,-12.07965 15.29277,-23.053 -0.9345,-14.31756 6.59712,-27.64388 -13.49806,-32.42614 z" class="skin boob" id="path2752" sodipodi:nodetypes="ccccccc"/></g><g id="g2762" transform="'+_boob_left_art_transform+'" ><path d="m 343.18566,248.84738 c 6.61502,-9.96293 1.24605,-23.02347 -3.51192,-32.52403 -4.32357,-4.32357 -19.56457,-7.69007 -30.17045,-7.95661 -8.8142,9.37784 -15.40168,21.99318 -18.70132,35.53493 4.9837,22.57548 41.64172,26.17839 52.38369,4.94571 z" class="shadow" id="path2756" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccccc" id="path2760" class="skin boob" d="m 343.18566,248.84738 c 5.82359,-10.10683 3.21095,-23.94463 -2.82442,-32.52403 -2.73692,-4.74049 -22.03284,-11.71831 -31.42045,-7.95661 -9.28671,7.38783 -19.83364,21.69713 -18.13882,35.53493 4.7283,22.21233 41.44215,25.37653 52.38369,4.94571 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Areola_Piercing.tw b/src/art/vector_revamp/layers/Boob_Small_Areola_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..c1ae5483f4fe021da25a5d4b3c743991431a9949 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Areola_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Areola_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2489" transform="'+_boob_left_art_transform+'" ><path class="shadow" sodipodi:nodetypes="accaa" id="path5169" d="m 320.43194,225.09759 c -5e-5,0.717 -0.77245,1.51654 -1.52538,1.51654 -0.5209,-0.31622 -0.64486,-0.92927 -1.6847,-1.41308 0,-0.74876 0.8338,-1.68143 1.61288,-1.69181 0.75078,-0.0101 1.59725,0.83751 1.5972,1.58835 z"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5171" d="m 315.94907,234.83564 c 0,0.75084 -0.84635,1.58836 -1.5972,1.58836 -0.75085,0 -1.5972,-0.83752 -1.5972,-1.58836 0,-0.75085 0.84635,-1.58835 1.5972,-1.58835 0.75085,0 1.5972,0.8375 1.5972,1.58835 z"/><path d="m 320.28791,225.09759 c 0,0.68259 -0.76752,1.44396 -1.452,1.44396 -0.47354,-0.28747 -0.59653,-0.82419 -1.54184,-1.26402 0,-0.68069 0.79549,-1.61319 1.54184,-1.6239 0.68252,-0.01 1.452,0.76138 1.452,1.44396 z" id="path2749-8-39" sodipodi:nodetypes="accaa" class="steel_piercing"/><path d="m 315.80387,234.83564 c 0,0.68259 -0.76941,1.44396 -1.452,1.44396 -0.68259,0 -1.452,-0.76137 -1.452,-1.44396 0,-0.68259 0.76941,-1.44396 1.452,-1.44396 0.68259,0 1.452,0.76137 1.452,1.44396 z" id="path2749-8-42" sodipodi:nodetypes="aaaaa" class="steel_piercing"/></g><g id="g2495" transform="'+_boob_right_art_transform+'" ><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5173" d="m 236.01142,231.24698 c 0,0.75084 -0.84635,1.58835 -1.5972,1.58835 -0.75085,0 -1.5972,-0.83751 -1.5972,-1.58835 0,-0.75085 0.84635,-1.58836 1.5972,-1.58836 0.75085,0 1.5972,0.83751 1.5972,1.58836 z"/><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5175" d="m 229.91767,242.70346 c 0,0.75085 -0.84635,1.58835 -1.5972,1.58835 -0.75085,0 -1.5972,-0.8375 -1.5972,-1.58835 0,-0.75084 0.84635,-1.58836 1.5972,-1.58836 0.75085,0 1.5972,0.83752 1.5972,1.58836 z"/><path d="m 235.86622,231.24698 c 0,0.68258 -0.76941,1.44396 -1.452,1.44396 -0.68259,0 -1.452,-0.76138 -1.452,-1.44396 0,-0.68259 0.76941,-1.44396 1.452,-1.44396 0.68259,0 1.452,0.76137 1.452,1.44396 z" id="path2749-8-40" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path d="m 229.77247,242.70346 c 0,0.68259 -0.76941,1.44396 -1.452,1.44396 -0.68259,0 -1.452,-0.76137 -1.452,-1.44396 0,-0.68258 0.76941,-1.44396 1.452,-1.44396 0.68259,0 1.452,0.76138 1.452,1.44396 z" id="path2749-8-2" sodipodi:nodetypes="aaaaa" class="steel_piercing"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Areola_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Boob_Small_Areola_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..43bfa10ba3e3c23cb4bb9d8093d46e656b17cd24 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Areola_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Areola_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2471" transform="'+_boob_left_art_transform+'" ><path d="m 321.68714,227.27176 c 0,0 -0.13465,-4.47036 1.43,-5.58749 1.85611,-1.32523 5.3301,-1.17893 6.82,0.54779 1.43465,1.66269 0.96516,4.88585 -0.44,6.57352 -1.13778,1.36653 -5.17,1.3147 -5.17,1.3147 0,0 3.53534,-0.86422 4.29,-2.30073 0.61522,-1.17109 0.47784,-2.99147 -0.44,-3.94411 -1.02892,-1.06792 -3.08003,-1.33322 -4.4,-0.65735 -1.35317,0.69288 -2.09,4.05367 -2.09,4.05367 z" class="shadow" id="path5163" sodipodi:nodetypes="caaacaaac"/><path d="m 311.95601,227.50867 c 0,0 0.13465,-4.47036 -1.43,-5.58748 -1.85611,-1.32524 -5.3301,-1.17894 -6.82,0.54779 -1.43465,1.66269 -0.96517,4.88583 0.44,6.57352 1.13778,1.36652 5.17,1.3147 5.17,1.3147 0,0 -3.53534,-0.86423 -4.29,-2.30073 -0.61522,-1.17109 -0.47784,-2.99147 0.44,-3.94411 1.02891,-1.06792 3.08003,-1.33322 4.4,-0.65735 1.35317,0.69286 2.09,4.05366 2.09,4.05366 z" class="shadow" id="path5165" sodipodi:nodetypes="caaacaaac"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4" class="steel_piercing" d="m 322.10179,227.10721 c 0,0 -0.12241,-4.06396 1.3,-5.07953 1.68737,-1.20475 4.84554,-1.07176 6.2,0.49799 1.30422,1.51154 0.87742,4.44168 -0.4,5.97592 -1.03434,1.2423 -4.7,1.19519 -4.7,1.19519 0,0 3.21395,-0.78566 3.9,-2.09157 0.55929,-1.06462 0.4344,-2.71952 -0.4,-3.58556 -0.93538,-0.97084 -2.80003,-1.21202 -4,-0.59759 -1.23016,0.62989 -1.9,3.68515 -1.9,3.68515 z"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4-7" class="steel_piercing" d="m 311.54136,227.34413 c 0,0 0.12241,-4.06397 -1.3,-5.07954 -1.68737,-1.20475 -4.84554,-1.07175 -6.2,0.498 -1.30422,1.51154 -0.87742,4.44167 0.4,5.97592 1.03434,1.2423 4.7,1.19519 4.7,1.19519 0,0 -3.21395,-0.78567 -3.9,-2.09158 -0.5593,-1.06463 -0.4344,-2.71951 0.4,-3.58555 0.93538,-0.97084 2.80003,-1.21202 4,-0.5976 1.23016,0.62989 1.9,3.68516 1.9,3.68516 z"/></g><g id="g2475" transform="'+_boob_right_art_transform+'" ><path d="m 232.11707,235.48695 c 0,0 0.60967,-2.2986 1.54375,-2.82951 2.13513,-1.21356 5.78847,-1.60777 7.36253,0.2774 0.71838,0.86038 0.32663,2.54546 -0.475,3.32885 -1.34,1.30952 -5.58127,0.66577 -5.58127,0.66577 0,0 3.80544,0.19579 4.63127,-1.1651 0.35502,-0.58505 0.0468,-1.55454 -0.47501,-1.99731 -1.21025,-1.02692 -3.25057,-0.85339 -4.75002,-0.33288 -0.96055,0.33345 -2.25625,2.05278 -2.25625,2.05278 z" class="shadow" id="path5167" sodipodi:nodetypes="caaacaaac"/><path sodipodi:nodetypes="caaacaaac" id="XMLID_525_-3-4-3" class="steel_piercing" d="m 232.53913,235.38469 c 0,0 0.55425,-2.08965 1.40341,-2.57229 1.94103,-1.10324 5.26225,-1.46161 6.69321,0.25218 0.65308,0.78216 0.29694,2.31406 -0.43182,3.02623 -1.21818,1.19046 -5.07388,0.60524 -5.07388,0.60524 0,0 3.45949,0.17799 4.21024,-1.05918 0.32275,-0.53186 0.0425,-1.41322 -0.43182,-1.81574 -1.10022,-0.93356 -2.95507,-0.77581 -4.3182,-0.30262 -0.87323,0.30314 -2.05114,1.86618 -2.05114,1.86618 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Areolae_Heart.tw b/src/art/vector_revamp/layers/Boob_Small_Areolae_Heart.tw new file mode 100644 index 0000000000000000000000000000000000000000..a4407f484637e0d5bc5c96562dfb799cf1fb1846 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Areolae_Heart.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Areolae_Heart [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2480"><path sodipodi:nodetypes="czcac" d="m 231.56989,252.42514 c -1.22195,-2.10852 -4.20293,-10.7371 -3.39892,-14.26628 0.80401,-3.52918 1.44795,-3.28007 4.67241,-5.19203 1.07003,-1.07003 5.21528,-2.42178 6.54597,-0.67782 4.36779,5.72431 -3.67752,10.857 -7.81946,20.13613 z" class="areola" id="path2478"/></g><g transform="'+_boob_left_art_transform+'" id="g2484"><path sodipodi:nodetypes="czczcc" class="areola" d="m 313.44442,246.20895 c -4.20528,-2.9951 -12.71977,-16.79856 -6.01226,-22.33579 6.70751,-5.53723 9.65531,-0.0103 9.65531,-0.0103 0,0 5.61579,-5.19127 10.77973,1.06406 5.16394,6.25533 -9.37618,18.97767 -14.42277,21.28185 z" id="path2482"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Areolae_Huge.tw b/src/art/vector_revamp/layers/Boob_Small_Areolae_Huge.tw new file mode 100644 index 0000000000000000000000000000000000000000..63633d58581b187b5fe3c22de52aff109128260b --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Areolae_Huge.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Areolae_Huge [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2460" transform="'+_boob_right_art_transform+'" ><path id="path2458" class="areola" d="m 243.17821,224.74093 c 0,0 2.45622,9.86999 1.16254,14.56572 -1.70998,6.20677 -11.17982,15.74941 -11.17982,15.74941 0,0 -5.05432,-6.17604 -5.24261,-14.13117 -0.18828,-7.95513 0.0149,-2.81221 2.42761,-6.83709 3.03435,-5.06192 12.83228,-9.34687 12.83228,-9.34687 z" sodipodi:nodetypes="caczsc"/></g><g id="g2464" transform="'+_boob_left_art_transform+'" ><path id="path2462" d="m 315.06318,249.00368 c -8.66357,-0.95563 -17.41869,-7.34062 -17.45978,-13.06343 -0.0525,-7.30353 10.99852,-14.92615 20.70646,-14.50135 9.12899,0.39946 18.65567,6.35353 16.78428,15.20563 -1.87139,8.85212 -9.67212,13.50176 -20.03096,12.35915 z" class="areola" sodipodi:nodetypes="sssss"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Areolae_Large.tw b/src/art/vector_revamp/layers/Boob_Small_Areolae_Large.tw new file mode 100644 index 0000000000000000000000000000000000000000..372fdcb92bbc450ebdf8f235a1317919c8eee874 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Areolae_Large.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Areolae_Large [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2440" transform="'+_boob_right_art_transform+'" ><path id="path2438" class="areola" d="m 237.2031,229.73085 c 0,0 0.30094,3.19792 -0.8647,6.76203 -1.16561,3.5641 -7.01179,8.94586 -7.01179,8.94586 0,0 -1.57367,-6.20853 -1.19696,-7.68793 0.37668,-1.47941 0.62921,-2.29369 2.16839,-3.97544 1.93574,-2.11507 6.90506,-4.04452 6.90506,-4.04452 z" sodipodi:nodetypes="czczsc"/></g><g id="g2444" transform="'+_boob_left_art_transform+'" ><path id="path2442" d="m 315.47577,238.97656 c -4.61957,-0.50956 -9.28796,-3.91415 -9.30987,-6.96566 -0.028,-3.89437 5.86461,-7.95889 11.04106,-7.73238 4.86774,0.213 9.94754,3.38782 8.94968,8.10792 -0.99786,4.72011 -5.15735,7.19938 -10.68087,6.59012 z" class="areola" sodipodi:nodetypes="sssss"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Areolae_Normal.tw b/src/art/vector_revamp/layers/Boob_Small_Areolae_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..4fe741f4d2e138c812e225f889f45badce8b01f5 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Areolae_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Areolae_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2430"><path sodipodi:nodetypes="czczsc" d="m 235.30274,231.17264 c 0,0 0.24231,2.57487 -0.69623,5.44459 -0.93851,2.86971 -5.64569,7.20295 -5.64569,7.20295 0,0 -1.26707,-4.99893 -0.96376,-6.1901 0.30329,-1.19118 0.50662,-1.84681 1.74593,-3.20091 1.5586,-1.70299 5.55975,-3.25653 5.55975,-3.25653 z" class="areola" id="path2428"/></g><g transform="'+_boob_left_art_transform+'" id="g2434"><path sodipodi:nodetypes="sssss" class="areola" d="m 316.0933,235.60905 c -3.40637,-0.37574 -6.84874,-2.88621 -6.8649,-5.13633 -0.0207,-2.87162 4.32444,-5.86871 8.14144,-5.70169 3.58937,0.15706 7.3351,2.49811 6.5993,5.97861 -0.7358,3.4805 -3.80292,5.30866 -7.87584,4.85941 z" id="path2432"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Areolae_Star.tw b/src/art/vector_revamp/layers/Boob_Small_Areolae_Star.tw new file mode 100644 index 0000000000000000000000000000000000000000..285c94b0906b88cbf5d3a1c906ee9ba58ef73070 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Areolae_Star.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Areolae_Star [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2470"><path sodipodi:nodetypes="cccccccssc" d="m 240.29933,227.09802 c -5.18428,3.30051 -7.99474,6.86395 -7.99474,6.86395 0,0 5.67867,-0.38365 11.0749,1.50681 -6.37633,0.70776 -10.4201,3.2349 -10.4201,3.2349 0,0 0.13997,6.94247 1.84947,12.07033 -2.42771,-2.29651 -5.33947,-9.68006 -5.33947,-9.68006 0,0 -0.3282,3.79742 1.03998,8.23505 -1.98466,-2.89505 -2.17172,-7.40591 -2.3519,-9.33994 -0.17874,-1.91868 0.16998,-2.80786 2.53329,-5.94212 3.16348,-4.19549 9.60857,-6.94892 9.60857,-6.94892 z" class="areola" id="path2468"/></g><g transform="'+_boob_left_art_transform+'" id="g2474"><path sodipodi:nodetypes="ccccccccccc" class="areola" d="m 314.46943,234.27224 c -3.76567,1.79157 -6.84161,5.28921 -10.10232,7.39152 1.44885,-3.26388 2.80438,-7.85021 4.89355,-10.83394 -2.31674,-1.93975 -5.18388,-2.96451 -8.37065,-3.68536 3.56307,-1.07962 7.79205,-1.81135 11.55083,-1.25273 1.41528,-1.99803 2.88366,-2.69755 5.19852,-4.40935 0.47133,1.75669 1.08677,2.27498 2.38302,4.27914 4.40924,-0.57094 8.75671,0.34013 13.32809,1.37553 -4.74363,0.78623 -8.39968,1.78672 -11.63843,3.96162 1.36056,2.93262 2.11025,7.4758 2.95271,10.6874 -2.99455,-2.42622 -6.28672,-5.87702 -10.19532,-7.51383 z" id="path2472"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Areolae_Wide.tw b/src/art/vector_revamp/layers/Boob_Small_Areolae_Wide.tw new file mode 100644 index 0000000000000000000000000000000000000000..9eb4b81af76c18f287db3efa939207bdab84f6cd --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Areolae_Wide.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Areolae_Wide [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_right_art_transform+'" id="g2450"><path sodipodi:nodetypes="caczsc" d="m 239.36986,227.39833 c 0,0 0.71277,8.23923 -0.67494,11.99618 -1.54558,4.18436 -8.11406,10.64147 -8.11406,10.64147 0,0 -3.24031,-8.7013 -2.48264,-11.5808 0.75767,-2.8795 0.64608,-3.04882 2.92925,-5.54348 2.87142,-3.13742 8.34239,-5.51337 8.34239,-5.51337 z" class="areola" id="path2448"/></g><g transform="'+_boob_left_art_transform+'" id="g2454"><path sodipodi:nodetypes="sssss" class="areola" d="m 315.07013,243.9018 c -6.9072,-0.76189 -13.8874,-5.85245 -13.92016,-10.41508 -0.0419,-5.82288 8.76879,-11.90016 16.50864,-11.56148 7.27826,0.31847 14.8736,5.06548 13.3816,12.12299 -1.49201,7.05753 -7.71129,10.76454 -15.97008,9.85357 z" id="path2452"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Highlights.tw b/src/art/vector_revamp/layers/Boob_Small_Highlights.tw new file mode 100644 index 0000000000000000000000000000000000000000..efb819087fd624e8c40c1cb29b7add4d64157617 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Highlights.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Highlights [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g style="display:inline" inkscape:label="Boob_Small_Highlights2" id="Boob_Small_Highlights2" inkscape:groupmode="layer"><g transform="'+_boob_left_art_transform+'" id="g2519"><path d="m 321.85975,215.92692 c -1.89715,1.20251 -6.31642,3.88396 -3.175,7.57381 4.21646,-0.071 4.26738,-5.70386 3.175,-7.57381 z" class="highlight2" id="path2507" sodipodi:nodetypes="ccc"/><path d="m 314.90689,235.99789 c -3.52683,3.26178 -5.76341,8.34571 -1.88762,10.3195 2.98911,-1.10062 3.7767,-5.82866 1.88762,-10.3195 z" class="highlight2" id="path2509" sodipodi:nodetypes="ccc"/><path d="m 315.18349,232.60131 c -1.45195,1.21811 -0.55284,1.57513 -0.29636,2.05122 0.91423,-0.4922 1.12461,-0.75849 0.29636,-2.05122 z" class="highlight2" id="path2511" sodipodi:nodetypes="ccc"/><path d="m 322.97466,213.38435 c -0.6421,0.2097 -1.8653,0.15541 -0.73834,1.55076 2.104,-0.20337 1.13886,-1.07074 0.73834,-1.55076 z" class="highlight2" id="path2513" sodipodi:nodetypes="ccc"/><path d="m 316.82316,228.06367 c -1.11294,-1.53405 -2.19421,-0.93805 -2.68716,-0.71571 0.55046,0.56081 1.587,0.71901 2.68716,0.71571 z" class="highlight2" id="path2515" sodipodi:nodetypes="ccc"/><path d="m 316.69673,225.30909 c -1.29574,-0.23601 -1.88877,0.15883 -2.19442,0.60489 1.134,0.2189 1.34152,0.27164 2.19442,-0.60489 z" class="highlight2" id="path2517" sodipodi:nodetypes="ccc"/></g><g transform="'+_boob_right_art_transform+'" id="g2560"><path d="m 259.03954,222.95658 c -7.62159,-1.9871 -15.09403,5.90489 -17.77314,7.66238 4.07679,1.14519 17.22608,2.90775 17.77314,-7.66238 z" class="highlight2" id="path2522" sodipodi:nodetypes="ccc"/><path d="m 265.10282,214.91201 c -0.95282,-0.17319 -2.05051,0.57552 -1.97909,1.35787 0.65101,0.10861 1.99182,0.29621 1.97909,-1.35787 z" class="highlight2" id="path2526" sodipodi:nodetypes="ccc"/><path d="m 240.11624,228.02619 c -0.88548,-0.39214 -2.12833,0.0778 -2.24268,0.85503 0.6073,0.25848 1.86652,0.75577 2.24268,-0.85503 z" class="highlight2" id="path2531" sodipodi:nodetypes="ccc"/><path d="m 237.99074,236.34944 c -0.73203,-0.21484 -5.15512,0.19734 -5.63251,0.25215 0.75202,0.71167 5.58739,1.42579 5.63251,-0.25215 z" class="highlight2" id="path2534" sodipodi:nodetypes="ccc"/><path d="m 229.28393,243.15444 c -0.0284,5.33194 5.46557,13.27016 6.87749,14.83009 0.17258,-0.32513 -6.62103,-13.88095 -6.87749,-14.83009 z" class="highlight2" id="path2536" sodipodi:nodetypes="ccc"/><path d="m 229.074,240.58416 c -0.9515,0.64423 -0.46796,1.54477 -0.0582,1.90403 0.59571,-0.35255 0.32483,-1.39831 0.0582,-1.90403 z" class="highlight2" id="path2545" sodipodi:nodetypes="ccc"/><path d="m 228.40491,235.41765 c -0.59901,0.17025 -1.09692,0.35984 -1.51392,0.72202 0.72549,0.21496 1.41311,0.13798 1.51392,-0.72202 z" class="highlight2" id="path2556" sodipodi:nodetypes="ccc"/><path d="m 228.43265,233.66367 c -0.26942,0.0314 -0.84341,0.20991 -0.92331,0.70779 0.27525,-0.29894 0.86207,-0.25886 0.92331,-0.70779 z" class="highlight2" id="path2558" sodipodi:nodetypes="ccc"/></g></g><g inkscape:groupmode="layer" id="Boob_Small_Highlights1" inkscape:label="Boob_Small_Highlights1" style="display:inline"><g transform="'+_boob_left_art_transform+'" id="g2569"><path sodipodi:nodetypes="ccc" id="path2564" class="highlight1" d="m 320.21266,218.71568 c -1.90013,1.2044 -1.89258,3.23381 -1.52692,4.67945 1.21541,-0.6336 2.621,-2.80656 1.52692,-4.67945 z"/><path sodipodi:nodetypes="ccc" id="path2567" class="highlight1" d="m 314.8764,235.91371 c -1.68861,1.7669 -1.74121,4.42131 -1.45308,5.80445 1.40005,-1.16485 2.00138,-3.93156 1.45308,-5.80445 z"/></g><g transform="'+_boob_right_art_transform+'" id="g2573"><path sodipodi:nodetypes="ccc" id="path2571" class="highlight1" d="m 252.94473,226.59339 c -4.7273,0.75979 -7.83647,2.53916 -10.64479,3.98691 4.08319,1.14699 9.56562,1.06857 10.64479,-3.98691 z" /></g></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Highlights1.tw b/src/art/vector_revamp/layers/Boob_Small_Highlights1.tw new file mode 100644 index 0000000000000000000000000000000000000000..790f22335919bdf69cd2ec42a2faaf2fd1f95799 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Highlights1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Highlights1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_left_art_transform+'" id="g2569"><path sodipodi:nodetypes="ccc" id="path2564" class="highlight1" d="m 320.21266,218.71568 c -1.90013,1.2044 -1.89258,3.23381 -1.52692,4.67945 1.21541,-0.6336 2.621,-2.80656 1.52692,-4.67945 z"/><path sodipodi:nodetypes="ccc" id="path2567" class="highlight1" d="m 314.8764,235.91371 c -1.68861,1.7669 -1.74121,4.42131 -1.45308,5.80445 1.40005,-1.16485 2.00138,-3.93156 1.45308,-5.80445 z"/></g><g transform="'+_boob_right_art_transform+'" id="g2573"><path sodipodi:nodetypes="ccc" id="path2571" class="highlight1" d="m 252.94473,226.59339 c -4.7273,0.75979 -7.83647,2.53916 -10.64479,3.98691 4.08319,1.14699 9.56562,1.06857 10.64479,-3.98691 z" /></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Highlights2.tw b/src/art/vector_revamp/layers/Boob_Small_Highlights2.tw new file mode 100644 index 0000000000000000000000000000000000000000..79bcd4afb3ceebd97c136fbc22db1d419ad8f7cc --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Highlights2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Highlights2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_boob_left_art_transform+'" id="g2519"><path d="m 321.85975,215.92692 c -1.89715,1.20251 -6.31642,3.88396 -3.175,7.57381 4.21646,-0.071 4.26738,-5.70386 3.175,-7.57381 z" class="highlight2" id="path2507" sodipodi:nodetypes="ccc"/><path d="m 314.90689,235.99789 c -3.52683,3.26178 -5.76341,8.34571 -1.88762,10.3195 2.98911,-1.10062 3.7767,-5.82866 1.88762,-10.3195 z" class="highlight2" id="path2509" sodipodi:nodetypes="ccc"/><path d="m 315.18349,232.60131 c -1.45195,1.21811 -0.55284,1.57513 -0.29636,2.05122 0.91423,-0.4922 1.12461,-0.75849 0.29636,-2.05122 z" class="highlight2" id="path2511" sodipodi:nodetypes="ccc"/><path d="m 322.97466,213.38435 c -0.6421,0.2097 -1.8653,0.15541 -0.73834,1.55076 2.104,-0.20337 1.13886,-1.07074 0.73834,-1.55076 z" class="highlight2" id="path2513" sodipodi:nodetypes="ccc"/><path d="m 316.82316,228.06367 c -1.11294,-1.53405 -2.19421,-0.93805 -2.68716,-0.71571 0.55046,0.56081 1.587,0.71901 2.68716,0.71571 z" class="highlight2" id="path2515" sodipodi:nodetypes="ccc"/><path d="m 316.69673,225.30909 c -1.29574,-0.23601 -1.88877,0.15883 -2.19442,0.60489 1.134,0.2189 1.34152,0.27164 2.19442,-0.60489 z" class="highlight2" id="path2517" sodipodi:nodetypes="ccc"/></g><g transform="'+_boob_right_art_transform+'" id="g2560"><path d="m 259.03954,222.95658 c -7.62159,-1.9871 -15.09403,5.90489 -17.77314,7.66238 4.07679,1.14519 17.22608,2.90775 17.77314,-7.66238 z" class="highlight2" id="path2522" sodipodi:nodetypes="ccc"/><path d="m 265.10282,214.91201 c -0.95282,-0.17319 -2.05051,0.57552 -1.97909,1.35787 0.65101,0.10861 1.99182,0.29621 1.97909,-1.35787 z" class="highlight2" id="path2526" sodipodi:nodetypes="ccc"/><path d="m 240.11624,228.02619 c -0.88548,-0.39214 -2.12833,0.0778 -2.24268,0.85503 0.6073,0.25848 1.86652,0.75577 2.24268,-0.85503 z" class="highlight2" id="path2531" sodipodi:nodetypes="ccc"/><path d="m 237.99074,236.34944 c -0.73203,-0.21484 -5.15512,0.19734 -5.63251,0.25215 0.75202,0.71167 5.58739,1.42579 5.63251,-0.25215 z" class="highlight2" id="path2534" sodipodi:nodetypes="ccc"/><path d="m 229.28393,243.15444 c -0.0284,5.33194 5.46557,13.27016 6.87749,14.83009 0.17258,-0.32513 -6.62103,-13.88095 -6.87749,-14.83009 z" class="highlight2" id="path2536" sodipodi:nodetypes="ccc"/><path d="m 229.074,240.58416 c -0.9515,0.64423 -0.46796,1.54477 -0.0582,1.90403 0.59571,-0.35255 0.32483,-1.39831 0.0582,-1.90403 z" class="highlight2" id="path2545" sodipodi:nodetypes="ccc"/><path d="m 228.40491,235.41765 c -0.59901,0.17025 -1.09692,0.35984 -1.51392,0.72202 0.72549,0.21496 1.41311,0.13798 1.51392,-0.72202 z" class="highlight2" id="path2556" sodipodi:nodetypes="ccc"/><path d="m 228.43265,233.66367 c -0.26942,0.0314 -0.84341,0.20991 -0.92331,0.70779 0.27525,-0.29894 0.86207,-0.25886 0.92331,-0.70779 z" class="highlight2" id="path2558" sodipodi:nodetypes="ccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Nipples.tw b/src/art/vector_revamp/layers/Boob_Small_Nipples.tw new file mode 100644 index 0000000000000000000000000000000000000000..9c11d7ec0fb2c9c02178e93158d1757ba1aa0c49 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Nipples.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Nipples [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g2261" transform="'+_boob_right_art_transform+'" ><path id="path2251" class="shadow" d="m 228.15788,238.27703 c 0,0 -1.69507,-0.53274 -1.71244,-1.85211 0.0822,-1.64738 1.97278,-3.7797 3.37857,-3.08983 0.61419,0.34349 1.0323,0.99576 1.0323,0.99576 -0.0631,2.02891 -0.89639,3.0666 -2.69843,3.94618 z" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccccc" d="m 228.15788,238.27703 c 0,0 -1.71287,-0.63317 -1.71244,-1.85211 0.0582,-1.50008 2.07725,-3.77384 3.37857,-3.08983 0.53396,0.31477 1.0323,0.99576 1.0323,0.99576 -0.0695,1.89392 -0.94491,3.08122 -2.69843,3.94618 z" class="areola" id="path2253"/><path id="path2255" class="shadow" d="m 226.82891,235.33246 c 0.4671,-0.43506 0.95746,-0.39751 2.03265,-0.2697 -0.95835,0.0287 -1.3927,-0.20327 -2.03265,0.2697 z" sodipodi:nodetypes="ccc"/><path id="path2257" class="shadow" d="m 227.54865,235.02726 c -0.0294,-0.24033 0.0356,-0.69542 0.57576,-0.79154 -0.60268,0.23726 -0.50582,0.5033 -0.57576,0.79154 z" sodipodi:nodetypes="ccc"/><path id="path2259" class="shadow" d="m 229.12691,238.41526 c 1.38286,-0.93932 2.12052,-2.43098 1.67838,-3.53558 0.24777,0.68434 0.5439,2.16936 -1.67838,3.53558 z" sodipodi:nodetypes="ccc"/></g><g id="g2277" transform="'+_boob_left_art_transform+'" ><path id="path2265" d="m 313.17342,229.48817 c -0.54304,-0.69859 -0.45339,-1.79081 -0.30362,-2.30073 0.3611,-1.37094 1.95228,-2.06832 3.33841,-2.049 1.21548,0.0169 1.90412,0.19475 2.44948,1.27776 0.59205,0.46086 0.63124,1.24817 0.60041,1.28371 -0.16171,1.13935 -0.91614,2.77485 -3.12982,2.68352 -1.77607,0.0895 -2.38275,-0.0237 -2.95486,-0.89526 z" class="shadow" sodipodi:nodetypes="ccscccc"/><path sodipodi:nodetypes="csscccc" class="areola" d="m 313.17342,229.48817 c -0.37088,-0.71581 -0.44918,-1.79919 -0.30362,-2.30073 0.38087,-1.31237 2.09965,-2.03413 3.33841,-2.049 1.22123,-0.0146 1.91113,0.36309 2.44948,1.27776 0.49616,0.54803 0.61883,1.25946 0.60041,1.28371 -0.2124,1.06614 -0.96439,2.70517 -3.12982,2.68352 -1.67427,0.002 -2.33494,-0.0646 -2.95486,-0.89526 z" id="path2267"/><path id="path2269" d="m 313.95456,226.60231 c 1.19002,-0.4627 2.32428,0.16299 3.06225,0.78272 -0.88614,-0.43236 -2.01938,-1.0249 -3.06225,-0.78272 z" class="shadow" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccc" class="shadow" d="m 315.32933,226.59452 c 0.67881,-0.5905 1.08777,-0.74769 2.10609,-0.65154 -0.95211,0.0335 -1.38478,0.20735 -2.10609,0.65154 z" id="path2271"/><path id="path2273" d="m 313.52477,229.56238 c 5.73405,1.19191 5.23709,-2.78121 5.13315,-3.17662 0.34627,2.41244 -1.09956,4.45601 -5.13315,3.17662 z" class="shadow" sodipodi:nodetypes="ccc"/><path id="path2275" class="shadow" d="m 314.90832,230.85525 c 3.02543,-0.30922 3.93195,-0.97079 4.24929,-2.75077 -0.0369,2.06363 -1.68284,2.59962 -4.24929,2.75077 z" sodipodi:nodetypes="ccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Outfit_Maid.tw b/src/art/vector_revamp/layers/Boob_Small_Outfit_Maid.tw new file mode 100644 index 0000000000000000000000000000000000000000..885e275e7dd8c7e3f2f84bf4ff51b29d547219ac --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Outfit_Maid.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Outfit_Maid [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g style="display:inline;opacity:1" id="g2134" transform="'+_boob_outfit_art_transform+'" ><path style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke-width:0.99515665" d="m 239.54885,237.04157 c -4.04819,7.94613 1.44538,18.58593 8.83122,22.81636 8.09471,6.43684 19.83019,-1.39546 30.03417,-2.40951 14.56784,0.39988 33.00884,8.74574 45.2163,-1.3044 10.61336,-7.56078 12.07589,-24.40116 5.67382,-34.87417 -7.36879,-13.11973 -24.34612,-5.89309 -39.2914,-4.14233 -19.08654,2.23589 -45.57307,0.78903 -50.46411,19.91405 z" id="path2802" sodipodi:nodetypes="ccccccc"/><path sodipodi:nodetypes="aaaaaaa" id="path2130" d="m 239.54885,237.04157 c -2.74035,7.68108 1.92475,18.4794 8.83122,22.81636 8.5056,5.34113 20.0055,-1.86294 30.03417,-2.40951 15.05602,-0.82057 33.63673,8.35329 45.2163,-1.3044 9.12655,-7.61181 13.40486,-24.61335 7.40909,-34.87417 -7.23069,-12.3742 -26.77543,-14.38112 -41.02667,-12.86259 -19.23179,2.04922 -43.96524,10.41822 -50.46411,28.63431 z" style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.99515665" /></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Piercing.tw b/src/art/vector_revamp/layers/Boob_Small_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..223a1b0f2edf45badf0c29d8f975118f07a7bfe4 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g1366" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1"/><g id="g4019" style="fill:#c0c6c7;fill-opacity:1;stroke:none;stroke-opacity:1" transform="'+_boob_left_art_transform+'" ><path class="shadow" sodipodi:nodetypes="aaaaa" id="path5080" d="m 321.89408,227.57109 c 0,0.74947 -0.84077,1.5972 -1.5972,1.5972 -0.75643,0 -1.5972,-0.84773 -1.5972,-1.5972 0,-0.74947 0.84077,-1.5972 1.5972,-1.5972 0.75643,0 1.5972,0.84773 1.5972,1.5972 z"/><path class="shadow" sodipodi:nodetypes="saccs" id="path5082" d="m 313.02276,229.35579 c -0.75293,0 -1.63873,-0.84886 -1.5972,-1.5972 0.0463,-0.83367 1.21255,-1.57531 1.96548,-1.57531 -0.68775,1.21129 -0.7805,1.82947 -0.3682,3.17251 z"/><path d="m 321.74888,227.57109 c 0,0.68134 -0.76433,1.452 -1.452,1.452 -0.68767,0 -1.452,-0.77066 -1.452,-1.452 0,-0.68134 0.76433,-1.452 1.452,-1.452 0.68767,0 1.452,0.77066 1.452,1.452 z" id="path2749-8-1" sodipodi:nodetypes="aaaaa" class="steel_piercing"/><path d="m 313.02164,229.21059 c -0.68448,0 -1.48776,-0.77159 -1.452,-1.452 0.0401,-0.76308 1.10584,-1.452 1.79032,-1.452 -0.71906,1.10285 -0.73484,1.67672 -0.33828,2.904 z" id="path2749-8-37" sodipodi:nodetypes="saccs" class="steel_piercing"/></g><g style="display:inline" id="g3034" transform="'+_boob_right_art_transform+'" ><path d="m 231.70657,235.61491 c 0,0.74947 -0.84076,1.5972 -1.5972,1.5972 -0.75643,0 -1.5972,-0.84773 -1.5972,-1.5972 0,-0.74947 0.84077,-1.5972 1.5972,-1.5972 0.75644,0 1.5972,0.84773 1.5972,1.5972 z" id="path5084" sodipodi:nodetypes="aaaaa" class="shadow" /><path d="m 226.57248,236.96752 c -0.34466,-0.31248 -0.76627,-0.64473 -0.76627,-1.05102 0,-0.75293 0.84427,-1.5972 1.5972,-1.5972 -0.78404,0.89358 -0.91059,1.20611 -0.83093,2.64822 z" id="path5086" sodipodi:nodetypes="cscc" class="shadow" /><path class="steel_piercing" sodipodi:nodetypes="aaaaa" id="path2749-8-1-1" d="m 231.56137,235.61491 c 0,0.68134 -0.76433,1.452 -1.452,1.452 -0.68766,0 -1.452,-0.77066 -1.452,-1.452 0,-0.68133 0.76434,-1.452 1.452,-1.452 0.68767,0 1.452,0.77067 1.452,1.452 z" /><path class="steel_piercing" sodipodi:nodetypes="cscc" id="path2749-8-1-5" d="m 226.56796,236.90063 c -0.31333,-0.28407 -0.68915,-0.63503 -0.68915,-1.00438 0,-0.68448 0.76752,-1.452 1.452,-1.452 -0.71276,0.81234 -0.83527,1.14537 -0.76285,2.45638 z" /></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Boob_Small_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Boob_Small_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..944d5a9644651a28f17a6955d87ee7abfaade543 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Small_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Small_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g id="g3131" transform="'+_boob_left_art_transform+'" ><path d="m 310.74124,223.29137 c 0,0 -2.49411,9.18373 -0.98325,13.39981 1.04424,2.91398 3.31774,6.91285 6.40728,6.7218 3.05706,-0.18905 4.59483,-4.44702 5.47216,-7.38158 1.2346,-4.12965 -0.7356,-12.9098 -0.7356,-12.9098 0,0 0.11352,1.8255 0.16679,3.66985 -0.16929,0.006 -2.35051,-4.1e-4 -2.35051,-4.1e-4 0.0559,0.37078 -0.0172,0.52908 -0.0182,0.90408 0,0 2.10319,-0.01 2.38726,-0.0165 0.0394,2.95347 -0.12672,6.29356 -1.09131,8.44744 -0.78349,1.74932 -2.10939,3.66042 -3.89433,3.67566 -1.987,0.017 -3.50956,-2.07688 -4.40441,-4.01713 -0.94479,-2.04857 -1.13062,-5.2179 -1.1115,-8.05448 0.44876,0 2.16836,-0.0536 2.16836,-0.0536 l 0.0221,-0.91124 c 0,0 -1.72384,-0.0132 -2.17613,-0.0132 0.0399,-1.72733 0.14124,-3.46134 0.14124,-3.46134 z" class="shadow" id="path5090" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 316.17757,240.04058 c 0,0 -1.85221,9.4952 -1.92044,14.30624 -0.078,5.49738 1.72993,16.40283 1.72993,16.40283 0,0 -0.37012,-9.79442 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z" class="shadow" id="path5094" sodipodi:nodetypes="caccc"/><path d="m 315.92337,268.73978 c 0,0 -1.08608,3.59047 -0.98853,5.42648 0.0928,1.74745 1.48279,5.03598 1.48279,5.03598 0,0 1.05088,-3.32642 0.98853,-5.03598 -0.0684,-1.8739 -1.48279,-5.42648 -1.48279,-5.42648 z" class="shadow" id="path5096" sodipodi:nodetypes="cacac"/><path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-2" class="steel_piercing" d="m 311.18823,224.19858 c 0,0 -2.26737,8.34885 -0.89386,12.18164 0.94931,2.64907 3.01613,6.2844 5.8248,6.11072 2.77914,-0.17186 4.17712,-4.04275 4.97469,-6.71053 1.12237,-3.75423 -0.66873,-11.73618 -0.66873,-11.73618 0,0 0.1032,1.19752 0.15163,2.87419 -0.1539,0.005 -1.857,-3.7e-4 -1.857,-3.7e-4 -0.01,0.4056 -0.009,0.4963 -0.0851,0.81799 0,0 1.70069,-0.005 1.95894,-0.0111 0.0358,2.68498 -0.1152,6.18346 -0.9921,8.14152 -0.71227,1.59029 -1.91763,3.32765 -3.5403,3.34151 -1.80637,0.0154 -3.19051,-1.88807 -4.00401,-3.65193 -0.8589,-1.86234 -1.02784,-5.20558 -1.01046,-7.78429 0.40797,0 1.73828,-0.0487 1.73828,-0.0487 l 0.16073,-0.8284 c 0,0 -1.47475,-0.012 -1.88597,-0.012 0.0363,-1.5703 0.1284,-2.68465 0.1284,-2.68465 z"/><path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-8" class="steel_piercing" d="m 316.13135,241.43645 c 0,0 -1.68382,8.632 -1.74585,13.00567 -0.0709,4.99762 1.57266,14.91166 1.57266,14.91166 0,0 -0.33647,-8.90402 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z"/><path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-8" class="steel_piercing" d="m 315.94568,269.21534 c 0,0 -0.98735,3.26408 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57815 1.34799,4.57815 0,0 0.95535,-3.02401 0.89867,-4.57815 -0.0621,-1.70355 -1.34799,-4.93318 -1.34799,-4.93318 z"/></g><g id="g3139" transform="'+_boob_right_art_transform+'" ><path d="m 232.41948,231.80744 c 0,0 1.84875,9.08379 0.67687,13.39983 -0.70222,2.58629 -1.73488,6.86756 -4.41084,6.72179 -2.75834,-0.15026 -3.17412,-4.68357 -3.76709,-7.3816 -0.92442,-4.20618 0.5064,-12.90978 0.5064,-12.90978 0,0 -0.0782,1.73915 -0.11483,3.58349 0.11654,0.006 1.459,-4.1e-4 1.459,-4.1e-4 l -0.43147,0.90407 c 0,0 -0.84471,-0.01 -1.04027,-0.0165 -0.0271,2.95346 0.0873,6.37993 0.75126,8.5338 0.53937,1.74933 1.16447,3.66321 2.68091,3.67564 1.67758,0.0138 2.41602,-2.07685 3.03204,-4.01709 0.65041,-2.04858 0.77834,-5.30427 0.76517,-8.14084 -0.30893,0 -1.87642,-0.0536 -1.87642,-0.0536 0.0596,-0.36182 0.0683,-0.46339 0.2179,-0.91125 0,0 1.33728,-0.0132 1.64865,-0.0132 -0.0275,-1.72732 -0.0972,-3.37499 -0.0972,-3.37499 z" class="shadow" id="path5092" sodipodi:nodetypes="caaacccccsascccccc"/><path d="m 229.06632,249.43465 c 0,0 -1.8522,9.4952 -1.92044,14.30623 -0.078,5.49738 1.72993,16.40284 1.72993,16.40284 0,0 -0.37012,-9.79444 1.09665,-19.6094 -0.97824,-3.25724 -0.90614,-11.09967 -0.90614,-11.09967 z" class="shadow" id="path5098" sodipodi:nodetypes="caccc"/><path d="m 228.81212,278.13384 c 0,0 -1.08607,3.59049 -0.98853,5.4265 0.0928,1.74744 1.48279,5.03595 1.48279,5.03595 0,0 1.05088,-3.3264 0.98853,-5.03595 -0.0683,-1.8739 -1.48279,-5.4265 -1.48279,-5.4265 z" class="shadow" id="path5100" sodipodi:nodetypes="cacac"/><path sodipodi:nodetypes="caaacccccsascccccc" id="XMLID_525_-3-62-9-0-8" class="steel_piercing" d="m 232.11236,232.71456 c 0,0 1.68068,8.25799 0.61534,12.18167 -0.63839,2.35117 -1.57717,6.24324 -4.00986,6.11072 -2.50758,-0.1366 -2.88557,-4.25779 -3.42463,-6.71055 -0.84038,-3.8238 0.46036,-11.73616 0.46036,-11.73616 0,0 -0.071,1.19752 -0.10438,2.87419 0.10594,0.005 1.0341,-3.7e-4 1.0341,-3.7e-4 l -0.22214,0.82187 c 0,0 -0.64577,-0.009 -0.82355,-0.015 -0.0247,2.68496 0.0793,6.18345 0.68297,8.14152 0.49034,1.5903 1.05861,3.3302 2.43719,3.3415 1.52507,0.0125 2.19638,-1.88805 2.7564,-3.65191 0.59128,-1.86235 0.70758,-5.20558 0.69561,-7.78429 -0.28085,0 -1.70584,-0.0487 -1.70584,-0.0487 0.0541,-0.32893 0.16478,-0.53596 0.16187,-0.82841 0,0 1.25193,-0.012 1.535,-0.012 -0.025,-1.57029 -0.0884,-2.68465 -0.0884,-2.68465 z"/><path sodipodi:nodetypes="caccc" id="XMLID_513_-8-0-5-7" class="steel_piercing" d="m 229.0201,250.83052 c 0,0 -1.68382,8.63199 -1.74585,13.00566 -0.0709,4.99762 1.57266,14.91167 1.57266,14.91167 0,0 -0.33647,-8.90403 0.99696,-17.82673 -0.88931,-2.96113 -0.82377,-10.0906 -0.82377,-10.0906 z"/><path sodipodi:nodetypes="cacac" id="XMLID_514_-2-7-4-0" class="steel_piercing" d="m 228.83443,278.60941 c 0,0 -0.98734,3.26408 -0.89867,4.93318 0.0844,1.58858 1.34799,4.57813 1.34799,4.57813 0,0 0.95535,-3.024 0.89867,-4.57813 -0.0621,-1.70355 -1.34799,-4.93318 -1.34799,-4.93318 z"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Collar_Maid.tw b/src/art/vector_revamp/layers/Collar_Maid.tw deleted file mode 100644 index 8a19b8d254b080abc6b4232a5dc286bacfb0083c..0000000000000000000000000000000000000000 --- a/src/art/vector_revamp/layers/Collar_Maid.tw +++ /dev/null @@ -1,3 +0,0 @@ -:: Art_Vector_Revamp_Collar_Maid [nobr] - -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" id="path1313" class="shadow" d="m 331.85675,162.02243 1.93544,5.9919 c 0.0226,0.004 0.34362,1.06634 -0.055,1.40725 -0.38339,0.53019 -1.38615,0.29933 -1.37171,0.26757 0.054,0 0.46202,1.5678 -0.081,2.03434 -0.5322,0.56735 -2.02139,-0.001 -2.00889,-0.0302 0.037,0 0.38254,2.10628 -0.42608,2.60581 -0.78793,0.53523 -2.40476,-0.4653 -2.37303,-0.48513 0.0384,0.006 0.2673,1.80307 -0.43822,2.20841 -0.62218,0.58415 -2.41384,-0.43536 -2.42937,-0.46642 0.0803,0.0301 -0.0134,1.84831 -0.78489,2.15506 -0.80428,0.38323 -2.20648,-0.66689 -2.17531,-0.67858 0.0329,-0.007 0.0424,1.7723 -0.78489,2.08566 -0.84412,0.36119 -2.00797,-0.92447 -2.00797,-0.92447 0.0267,0.0419 -0.14902,1.64182 -0.81051,1.80958 -0.7509,0.31434 -1.99714,-0.81291 -1.94526,-0.84626 0.0447,0.0149 -0.27635,1.5613 -1.02005,1.7147 -0.73481,0.23969 -1.84326,-0.86986 -1.8042,-0.89089 0.0219,0.0188 -0.56384,1.18152 -1.17391,1.26017 -0.59199,0.16577 -1.4985,-0.60773 -1.4798,-0.62228 0.0272,0.0204 -0.72132,1.21882 -1.3999,1.28632 -0.6705,0.15933 -1.69372,-0.67933 -1.66134,-0.70288 0.0336,0.0336 -0.76566,1.10921 -1.41643,1.15247 -0.72271,0.15706 -1.81336,-0.69065 -1.78527,-0.70937 0.0206,0.0112 -0.93563,1.11098 -1.68979,1.08277 -0.59807,0.0713 -1.44494,-0.80263 -1.43635,-0.81265 0.0325,0.013 -0.27324,0.85093 -0.68009,0.76955 -0.29439,-0.0184 -0.34132,-0.69275 -0.30755,-0.71205 l -0.19939,-6.02293 c -0.003,0 -0.13477,-0.32166 0.032,-0.36489 0.17113,-0.0761 0.32878,0.27634 0.30666,0.29109 -0.0345,-0.0115 0.28294,-0.64768 0.6928,-0.6998 0.57869,0.27858 1.97754,0.7297 1.97754,0.7297 0,0 1.62702,-1.34485 2.2488,-1.76753 0.31994,0.0903 0.45771,0.27246 0.45497,0.27442 -0.008,-0.001 0.2782,-0.88845 0.71952,-0.99561 0.43595,-0.14269 1.12798,0.42903 1.11321,0.43747 -0.0137,0 0.0724,-1.00959 0.51286,-1.15604 0.46773,-0.19935 1.28089,0.57501 1.26076,0.59917 -0.0138,-0.0111 0.12563,-1.17419 0.61384,-1.32805 0.56719,-0.23879 1.61963,0.58765 1.57985,0.61252 -0.0346,0.002 0.1956,-1.47265 0.90107,-1.71051 0.68508,-0.29172 1.96956,0.70712 1.95558,0.72389 -0.0142,0 0.34612,-1.822 1.14808,-2.09134 0.81177,-0.31928 2.17473,0.8304 2.14422,0.85074 -0.0128,0.003 0.0174,-1.62685 0.71557,-1.9026 0.70359,-0.28524 1.8785,0.81789 1.83908,0.83103 -0.0322,-0.0138 0.0235,-1.70274 0.76143,-1.95615 0.72075,-0.31561 2.02146,0.63985 1.97329,0.65017 -0.0347,-0.008 -0.072,-1.35954 0.51405,-1.61896 0.56598,-0.34388 1.72256,0.36114 1.69497,0.38567 -0.0272,0.006 -0.16412,-1.28353 0.39216,-1.62524 0.53723,-0.37554 1.7904,0.19188 1.77026,0.20627 -0.0208,-0.0115 -0.16702,-1.19259 0.30242,-1.43107 0.44979,-0.29501 1.37419,0.20433 1.34972,0.21657 -0.0104,-0.001 -0.16864,-1.03615 0.25185,-1.27595 0.39853,-0.29034 1.22742,0.17064 1.2032,0.19217 -0.0264,-0.0192 -0.0519,-0.94646 0.35068,-1.09934 0.24481,-0.22205 0.8515,-0.0374 1.03033,0.0948 z"/><path d="m 331.85675,162.02243 1.93544,5.9919 c 0,0 0.2505,1.05082 -0.055,1.40725 -0.30317,0.35371 -1.37171,0.26757 -1.37171,0.26757 0,0 0.41185,1.5678 -0.081,2.03434 -0.48636,0.4604 -2.00889,-0.0302 -2.00889,-0.0302 0,0 0.29857,2.10628 -0.42608,2.60581 -0.66474,0.45823 -2.37303,-0.48513 -2.37303,-0.48513 0,0 0.1843,1.78924 -0.43822,2.20841 -0.68398,0.46055 -2.42937,-0.46642 -2.42937,-0.46642 0,0 -0.0997,1.81595 -0.78489,2.15506 -0.68075,0.33691 -2.17531,-0.67858 -2.17531,-0.67858 0,0 -0.0978,1.80346 -0.78489,2.08566 -0.68161,0.27994 -2.00797,-0.92447 -2.00797,-0.92447 0,0 -0.19423,1.57078 -0.81051,1.80958 -0.65935,0.25549 -1.94526,-0.84626 -1.94526,-0.84626 0,0 -0.38234,1.52597 -1.02005,1.7147 -0.64315,0.19034 -1.8042,-0.89089 -1.8042,-0.89089 0,0 -0.61261,1.13972 -1.17391,1.26017 -0.5232,0.11227 -1.4798,-0.62228 -1.4798,-0.62228 0,0 -0.77548,1.1782 -1.3999,1.28632 -0.59249,0.10259 -1.66134,-0.70288 -1.66134,-0.70288 0,0 -0.8148,1.06007 -1.41643,1.15247 -0.63292,0.0972 -1.78527,-0.70937 -1.78527,-0.70937 0,0 -1.02107,1.06438 -1.68979,1.08277 -0.54989,0.0151 -1.43635,-0.81265 -1.43635,-0.81265 0,0 -0.34202,0.82342 -0.68009,0.76955 -0.25532,-0.0407 -0.30755,-0.71205 -0.30755,-0.71205 l -0.19939,-6.02293 c 0,0 -0.0822,-0.32166 0.032,-0.36489 0.13181,-0.0499 0.30666,0.29109 0.30666,0.29109 0,0 0.37519,-0.61693 0.6928,-0.6998 0.57869,0.27858 1.97754,0.7297 1.97754,0.7297 0,0 1.62702,-1.34485 2.2488,-1.76753 0.25782,0.13468 0.45497,0.27442 0.45497,0.27442 0,0 0.32661,-0.88038 0.71952,-0.99561 0.38258,-0.1122 1.11321,0.43747 1.11321,0.43747 0,0 0.11755,-1.00959 0.51286,-1.15604 0.43632,-0.16165 1.26076,0.59917 1.26076,0.59917 0,0 0.16167,-1.14536 0.61384,-1.32805 0.52368,-0.21159 1.57985,0.61252 1.57985,0.61252 0,0 0.29924,-1.48005 0.90107,-1.71051 0.64912,-0.24857 1.95558,0.72389 1.95558,0.72389 0,0 0.39983,-1.822 1.14808,-2.09134 0.7235,-0.26043 2.14422,0.85074 2.14422,0.85074 0,0 0.0897,-1.64291 0.71557,-1.9026 0.62134,-0.25782 1.83908,0.83103 1.83908,0.83103 0,0 0.12856,-1.6577 0.76143,-1.95615 0.62639,-0.29539 1.97329,0.65017 1.97329,0.65017 0,0 0.0226,-1.33772 0.51405,-1.61896 0.5029,-0.28781 1.69497,0.38567 1.69497,0.38567 0,0 -0.0649,-1.30643 0.39216,-1.62524 0.48727,-0.33985 1.77026,0.20627 1.77026,0.20627 0,0 -0.0995,-1.15508 0.30242,-1.43107 0.37563,-0.25793 1.34972,0.21657 1.34972,0.21657 0,0 -0.10379,-1.02804 0.25185,-1.27595 0.33319,-0.23226 1.2032,0.19217 1.2032,0.19217 0,0 0.03,-0.88689 0.35068,-1.09934 0.28751,-0.19049 1.03033,0.0948 1.03033,0.0948 z" class="shadow" id="path1311" sodipodi:nodetypes="ccacacacacacacacacacacacacaccacccccacacacacacacacacacacacacc"/><path d="m 331.97234,162.2961 c 1.04474,1.70444 1.78177,3.48654 1.74481,5.48322 -4.80523,6.73958 -20.24123,13.2466 -33.48864,14.05592 -0.33393,-1.8002 -0.45469,-3.6478 -0.19853,-5.57779 0.85173,-0.3414 1.73617,-0.50846 2.29254,-0.58193 0.359,0.079 0.73339,0.22405 0.73339,0.22405 0,0 0.51119,-0.41895 0.73589,-0.60563 19.93433,-5.50204 22.69697,-9.57458 28.18054,-12.99784 z" class="shadow" id="path1309" sodipodi:nodetypes="cccccccc"/><path sodipodi:nodetypes="cccccccc" id="path1108-7-2-3" class="shadow" d="m 331.97234,162.2961 c 0.90255,1.73604 1.6591,3.5138 1.74481,5.48322 -5.06089,6.56914 -20.09695,12.90821 -33.48864,14.05592 -0.2453,-1.81793 -0.33592,-3.67155 -0.19853,-5.57779 0.68574,-0.17541 1.64124,-0.41353 2.29254,-0.58193 0.359,0.079 0.73339,0.22405 0.73339,0.22405 0,0 0.51119,-0.41895 0.73589,-0.60563 20.41701,-5.32652 22.8144,-9.53188 28.18054,-12.99784 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Hair_Fore_Shaved_Sides_Old_ copy.tw b/src/art/vector_revamp/layers/Hair_Fore_Shaved_Sides_Old_ copy.tw new file mode 100644 index 0000000000000000000000000000000000000000..cc5965005aa4c7adb9916ed2c1fe08d010643e4d --- /dev/null +++ b/src/art/vector_revamp/layers/Hair_Fore_Shaved_Sides_Old_ copy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Hair_Fore_Shaved_Sides_Old_ copy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 251.4536,161.46413 c -0.60449,-4.42611 -0.24997,-12.28779 0.30818,-15.07977 1.04636,5.95887 1.94432,13.80117 6.2265,21.23041 -1.19495,-8.60885 -0.67387,-12.01072 0.0186,-19.46198 0.86192,9.97611 5.42918,18.65867 5.51006,18.63661 0.32905,-0.27421 -3.75649,-41.35792 1.52765,-51.85844 -1.56878,4.39592 -1.0455,11.21714 -0.60609,13.1602 1.20375,-10.65238 4.7302,-16.65981 7.51079,-21.2274 -1.77637,3.56329 -1.69686,6.73318 -1.67001,6.72423 2.7435,-5.08811 7.28199,-10.31751 7.72633,-10.59258 1.7754,-0.59821 3.34591,-1.34727 4.89709,-1.98766 -0.95374,1.0861 -3.34853,5.47746 -3.25001,5.4479 1.78878,-2.20362 7.30144,-6.25367 8.15415,-6.579777 3.90053,-0.46273 7.96311,-0.887567 12.31642,-1.006656 0.97516,-2.301021 -2.46173,-4.187764 -2.50051,-4.180713 -0.27758,0.05552 6.85578,4.540259 7.53473,4.526486 1.84048,0.505313 3.1683,0.684458 4.34712,0.85514 1.24026,-1.476422 -2.27202,-4.30682 -2.28964,-4.301785 -0.19916,0.06639 5.41691,5.533855 6.59453,5.794845 1.42736,0.7452 2.9587,1.6137 4.75884,2.58346 0.0658,-3.22911 -1.83468,-5.252331 -1.83468,-5.252331 -0.0323,0.01176 4.46505,7.566831 7.18097,9.628731 0.90909,1.10054 1.85278,2.25487 3.10638,3.42971 6.69495,-2.3189 4.87583,-1.67338 8.49073,-3.89429 -0.0976,-7.08281 -1.93991,-22.249963 -12.0468,-28.474671 -10.4101,-7.382931 -24.19082,-8.250906 -39.13439,-7.179564 -9.13827,0.104194 -22.81316,5.928461 -22.58648,5.960844 -0.0377,0 3.35418,0.551361 3.88899,3.271316 -6.1017,3.88449 -11.84387,8.929494 -18.57324,16.734688 0.15081,0.117293 5.5349,-1.164935 6.8477,-1.139988 -6.73703,8.463735 -7.99098,10.588605 -11.93124,23.066475 0.0592,0.037 3.52877,-4.70615 7.09562,-6.54615 -3.84137,8.38017 -4.56237,13.29232 -4.81341,23.73954 1.57001,-2.6181 3.26987,-5.2362 4.28595,-7.8543 -2.62033,10.90993 -0.90677,24.463 2.90918,31.82747 z" id="path2645" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" class="shadow"/><path class="hair" sodipodi:nodetypes="cccccccccscccccsccsccsccsacccccccccc" id="path2647" d="m 251.4536,161.46413 c -0.79085,-4.39505 -0.55717,-12.23659 0.30818,-15.07977 1.29154,5.92384 2.10812,13.77777 6.2265,21.23041 -1.31756,-8.60885 -1.05268,-12.01072 0.0186,-19.46198 1.36659,9.83847 5.51006,18.63661 5.51006,18.63661 0,0 -3.91407,-41.2266 1.52765,-51.85844 -1.2366,4.39592 -0.92934,11.21714 -0.60609,13.1602 0.84931,-10.65238 4.65052,-16.65981 7.51079,-21.2274 -1.48912,3.46754 -1.67001,6.72423 -1.67001,6.72423 2.22597,-4.94024 6.98807,-10.23353 7.72633,-10.59258 1.59694,-0.77667 3.23294,-1.46024 4.89709,-1.98766 -0.51004,0.95299 -3.25001,5.4479 -3.25001,5.4479 1.78878,-2.46118 7.30144,-6.466628 8.15415,-6.579777 4.10434,-0.59011 8.22897,-1.053727 12.31642,-1.006656 0.4394,-2.20361 -2.50051,-4.180713 -2.50051,-4.180713 0,0 7.16706,4.478004 7.53473,4.526486 1.45783,0.192233 2.90777,0.471295 4.34712,0.85514 0.89162,-1.37681 -2.28964,-4.301785 -2.28964,-4.301785 0,0 5.74154,5.425645 6.59453,5.794845 1.60466,0.69454 3.19224,1.54697 4.75884,2.58346 -0.32722,-3.09812 -1.83468,-5.252331 -1.83468,-5.252331 0,0 5.00744,7.369601 7.18097,9.628731 1.02248,1.06274 2.08404,2.17778 3.10638,3.42971 6.03412,-2.42904 4.49208,-1.73734 8.49073,-3.89429 -0.30579,-7.01342 -2.45311,-22.078898 -12.0468,-28.474671 -11.17283,-7.448526 -25.88161,-7.687309 -39.13439,-7.179564 -7.7809,0.298105 -22.58648,5.960844 -22.58648,5.960844 0,0 3.90736,0.551361 3.88899,3.271316 -5.71397,4.003792 -11.16561,9.138189 -18.57324,16.734688 0,0 5.17446,-1.44528 6.8477,-1.139988 -6.1633,8.463735 -7.63273,10.588605 -11.93124,23.066475 0,0 3.16197,-4.9354 7.09562,-6.54615 -3.52693,8.29441 -3.97798,13.13294 -4.81341,23.73954 l 4.28595,-7.8543 c -2.05322,10.79651 -0.67088,24.41582 2.90918,31.82747 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Head.tw b/src/art/vector_revamp/layers/Head.tw index e4ff04609a9bb673a3dddf24b79e03e2efbc83f0..ae217a35a32cf93dc59ff9f473301c79f766eac7 100644 --- a/src/art/vector_revamp/layers/Head.tw +++ b/src/art/vector_revamp/layers/Head.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Head [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccc" id="path4126" class="shadow head" d="m 330.67904,147.05787 c 4.02576,-14.5334 2.40774,-9.56522 4.60772,-24.96522 4.35294,-45.564708 -25.44467,-52.371855 -51.32169,-49.098532 -28.88715,12.369092 -23.56049,37.717112 -21.60625,58.861762 6.66296,29.71585 21.76686,38.584 40.69493,44.03319 8.24106,-6.80961 18.66057,-9.28422 27.62529,-28.8312 z"/><path sodipodi:nodetypes="ccccccc" id="path1765" class="shadow" d="m 343.08002,119.80575 c -0.0148,-3.57294 -1.58403,-7.42219 -4.46245,-7.82314 -1.68355,-0.26633 -3.73785,2.64279 -3.55482,2.7216 1.25161,7.30189 -0.14604,15.46037 -2.20326,23.8321 -0.0848,0.0914 0.78297,0.54026 1.33132,0.26096 1.50417,-0.38333 2.54625,-2.01017 3.23524,-3.53238 2.95627,-4.34895 6.29161,-10.18092 5.65397,-15.45914 z"/><path d="m 343.08002,119.80575 c -0.25152,-2.99157 -1.51987,-7.22818 -4.46245,-7.82314 -1.46275,-0.29575 -3.55482,2.7216 -3.55482,2.7216 l -2.20326,23.8321 c 0,0 0.90175,0.40229 1.33132,0.26096 1.5167,-0.49902 2.40603,-2.1679 3.23524,-3.53238 2.84953,-4.68892 6.11367,-9.99155 5.65397,-15.45914 z" class="skin head" id="path931-2" sodipodi:nodetypes="aaccaaa"/><path d="m 330.67904,147.05787 c 3.72059,-14.62059 2.40772,-9.56522 4.60772,-24.96522 4.35294,-45.564708 -27.66288,-52.98142 -51.35294,-49.098532 -28.54575,12.837088 -23.30441,38.335292 -21.575,58.861762 6.84118,29.3 22.26258,37.42731 40.69493,44.03319 8.22825,-6.89931 18.52529,-10.2312 27.62529,-28.8312 z" class="skin head" id="path931" sodipodi:nodetypes="cccccc"/><g transform="'+_art_transform+'"style="display:inline;opacity:1" id="g6985"/><path sodipodi:nodetypes="ccc" id="path836-0-8" class="shadow" d="m 293.0317,130.0354 c -0.55104,6.21615 -1.72058,11.7593 -4.0313,17.16839 1.63729,-4.8559 3.03877,-11.72175 4.0313,-17.16839 z"/><path sodipodi:nodetypes="ccc" id="path836-0-8-3" class="shadow" d="m 293.97009,148.42393 c -1.8413,1.05492 -2.944,-0.38614 -4.94972,-1.2813 1.54163,1.40085 3.21214,2.54072 4.94972,1.2813 z"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccc" id="path4126" class="shadow head" d="m 330.67904,147.05787 c 4.02576,-14.5334 2.40774,-9.56522 4.60772,-24.96522 4.35294,-45.564708 -25.44467,-52.371855 -51.32169,-49.098532 -28.88715,12.369092 -23.56049,37.717112 -21.60625,58.861762 6.66296,29.71585 21.76686,38.584 40.69493,44.03319 8.24106,-6.80961 18.66057,-9.28422 27.62529,-28.8312 z"/><path sodipodi:nodetypes="ccccccc" id="path1765" class="shadow" d="m 343.08002,119.80575 c -0.0148,-3.57294 -1.58403,-7.42219 -4.46245,-7.82314 -1.68355,-0.26633 -3.73785,2.64279 -3.55482,2.7216 1.25161,7.30189 -0.14604,15.46037 -2.20326,23.8321 -0.0848,0.0914 0.78297,0.54026 1.33132,0.26096 1.50417,-0.38333 2.54625,-2.01017 3.23524,-3.53238 2.95627,-4.34895 6.29161,-10.18092 5.65397,-15.45914 z"/><path d="m 343.08002,119.80575 c -0.25152,-2.99157 -1.51987,-7.22818 -4.46245,-7.82314 -1.46275,-0.29575 -3.55482,2.7216 -3.55482,2.7216 l -2.20326,23.8321 c 0,0 0.90175,0.40229 1.33132,0.26096 1.5167,-0.49902 2.40603,-2.1679 3.23524,-3.53238 2.84953,-4.68892 6.11367,-9.99155 5.65397,-15.45914 z" class="skin head" id="path931-2" sodipodi:nodetypes="aaccaaa"/><path d="m 330.67904,147.05787 c 3.72059,-14.62059 2.40772,-9.56522 4.60772,-24.96522 4.35294,-45.564708 -27.66288,-52.98142 -51.35294,-49.098532 -28.54575,12.837088 -23.30441,38.335292 -21.575,58.861762 6.84118,29.3 22.26258,37.42731 40.69493,44.03319 8.22825,-6.89931 18.52529,-10.2312 27.62529,-28.8312 z" class="skin head" id="path931" sodipodi:nodetypes="cccccc"/><g style="display:inline;opacity:1" id="g6985"/><path sodipodi:nodetypes="ccc" id="path836-0-8" class="shadow" d="m 293.0317,130.0354 c -0.55104,6.21615 -1.72058,11.7593 -4.0313,17.16839 1.63729,-4.8559 3.03877,-11.72175 4.0313,-17.16839 z"/><path sodipodi:nodetypes="ccc" id="path836-0-8-3" class="shadow" d="m 293.97009,148.42393 c -1.8413,1.05492 -2.944,-0.38614 -4.94972,-1.2813 1.54163,1.40085 3.21214,2.54072 4.94972,1.2813 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Hourglass.tw b/src/art/vector_revamp/layers/Torso_Hourglass.tw index 1499ca6da79978f7112f892e86f682c34394cdd6..f9b959d15c70ea0d8f84bedd85606140eeab4afe 100644 --- a/src/art/vector_revamp/layers/Torso_Hourglass.tw +++ b/src/art/vector_revamp/layers/Torso_Hourglass.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Torso_Hourglass [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="display:inline;opacity:1;fill:#ff0000" d="m 330.46094,146.33008 -33.94532,3.49609 c -0.60023,11.74644 4.71069,22.2221 4.14063,32.15625 -3.38126,2.62022 -7.80518,3.85567 -13.92187,5.23828 -2.12717,0.53863 -3.90301,1.14812 -5.31836,1.8125 -1.44243,0.67709 -2.53172,1.40659 -3.29883,2.16797 -0.76711,0.76138 -1.21275,1.5546 -1.36914,2.35352 -0.1564,0.79891 -0.0225,1.60483 0.36718,2.39453 0.38973,0.78969 1.035,1.56315 1.90625,2.29687 0.87126,0.73373 1.96768,1.42761 3.25586,2.0586 1.28819,0.63099 2.76769,1.19818 4.40821,1.67969 1.64051,0.4815 3.44284,0.87684 5.37109,1.1621 1.92825,0.28527 3.98337,0.46164 6.13477,0.50391 2.15139,0.0423 4.39904,-0.0494 6.70898,-0.29687 2.30994,-0.24748 4.68205,-0.65235 7.08594,-1.23633 2.40388,-0.58398 4.83825,-1.34721 7.27148,-2.31446 2.43324,-0.96724 4.86569,-2.13789 7.26367,-3.53515 2.39799,-1.39726 4.76241,-3.02051 7.06055,-4.89453 2.29815,-1.87403 4.53036,-3.99893 6.66406,-6.39649 2.13371,-2.39755 4.1676,-5.06732 6.07227,-8.03515 -0.0465,-0.0259 -0.0648,-0.0634 -0.10938,-0.0898 -9.4165,-1.39251 -15.92222,-5.03012 -15.74804,-30.52148 z" id="path1104"/><path d="m 246.30911,231.06259 c -6.69233,19.28587 -3.26169,38.80526 2.84033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -12.22966,23.47896 -14.09706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 0.89599,1.18481 5.48384,2.32551 7.03956,-0.25046 l 1.10418,-0.062 c 0.0578,0.0417 5.51012,4.26247 11.34914,0.16388 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -2.78089,-8.8422 -20.01148,-25.04261 -20.57655,-24.78256 0.41299,-0.50348 -6.8269,-13.62863 -7.45206,-15.85983 2.68681,-6.22178 7.5538,-32.80103 8.07452,-32.87542 14.92551,-15.90852 19.20209,-32.18261 21.62975,-41.33057 -0.50349,-3.50775 -1.32308,-10.70751 -1.45375,-13.44272 -4.53544,-10.77188 -2.3443,-15.76194 -4.6441,-26.29186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.5475,-3.91931 -28.08011,3.12735 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.80032,4.30093 -13.259,4.44692 -29.51965,8.86728 -10.04843,13.94881 -16.38873,17.64107 -24.82836,40.21314 z" class="shadow torso" id="path1102" sodipodi:nodetypes="ccccccccccscccccccsccccccc"/><path class="skin neck" sodipodi:nodetypes="cccccc" id="path1541" d="m 346.40754,176.85218 c -7.39171,-1.56131 -16.05125,-2.2441 -15.85743,-30.61093 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -3.83498,2.97182 -5.98014,3.47675 -13.82076,5.20414 -34.91738,8.73668 29.00804,37.23957 59.48279,-10.24576 z"/><path d="m 346.20898,176.85156 c 0.0446,0.0265 0.0629,0.064 0.10938,0.0898 -29.49173,35.69478 -78.90476,13.79456 -59.58398,10.27929 -4.05962,0.91764 -8.25647,1.76506 -15.5879,3.61328 -8.65971,10.94361 -15.77788,17.65645 -24.83789,40.22852 -5.87551,18.9358 -2.9645,38.67948 2.8418,56.00977 -1.06764,11.32585 -1.52592,26.55771 1,35.50195 -11.37059,21.52353 -11.89766,23.525 -14.09766,43.625 -1.1,10.1 -2.23134,20.37109 -6.00781,40.87109 1.79918,21.68192 24.06434,28.08621 33.55274,33.19727 14.43169,10.04215 15.75568,13.80686 22.99414,21.73047 1.37693,0.26708 4.09368,1.61095 7.06445,-0.26758 l 1.11133,-0.0781 c 1.17404,1.57274 8.90177,1.53055 11.31445,0.17774 1.25908,-5.51105 3.06526,-22.40357 25.5332,-37.0293 9.99479,-6.9207 28.66489,-25.38486 47.28125,-34.05664 -9.1,-20.7 -12.62221,-28.06668 -19.58398,-39.49609 -3.8841,-8.49646 -20.35167,-24.94928 -20.57812,-24.78321 0.17394,-0.53763 -7.38366,-13.70783 -7.45118,-15.85937 2.56898,-6.32141 6.52259,-31.00027 8.07422,-32.87695 13.06864,-15.80638 16.79573,-26.30873 21.57031,-41.16602 -0.3269,-2.17434 -0.47181,-3.26841 -0.6582,-5.75 -1.66961,-10.3676 -2.48045,-23.52968 -5.33008,-34.10742 0.025,-10.96207 3.83399,-17.95313 3.83399,-17.95313 -4.53269,-1.09789 -8.76087,-1.33791 -12.56446,-1.90039 z" id="path1557" sodipodi:nodetypes="cccccccccccccccccccscccccc" class="skin torso"/><path sodipodi:nodetypes="ccccc" id="path1106" class="shadow belly_details" d="m 276.99339,346.1357 c 0.48219,-2.95995 0.50103,-5.52426 -0.57274,-9.24552 l -0.0242,0.001 c -0.78458,4.82879 -0.38541,6.45786 0.59697,9.24433 z"/><path sodipodi:nodetypes="ccc" id="path1108" class="muscle_tone" d="m 317.3521,285.5361 c -7.46191,11.4761 -10.89652,37.14512 -11.1397,41.11412 2.81194,-18.56341 5.72671,-31.01778 11.1397,-41.11412 z"/><path sodipodi:nodetypes="ccc" id="path1110" class="muscle_tone" d="m 333.64545,368.51096 c -5.87092,10.37125 -20.05508,16.48024 -27.5903,38.1711 8.55718,-28.02096 20.05599,-25.82086 27.5903,-38.1711 z"/><path sodipodi:nodetypes="ccc" id="path1112" class="muscle_tone" d="m 261.07288,408.74028 c -7.12092,-11.56625 -12.80508,-15.26976 -19.3403,-19.6414 12.24468,7.16654 14.68099,9.92914 19.3403,19.6414 z"/><path sodipodi:nodetypes="ccc" id="path1114" class="muscle_tone" d="m 333.87477,277.49678 c -0.45714,-1.47279 -0.073,-7.87231 -6.56962,-12.18972 4.93326,3.3569 6.04008,6.0889 6.56962,12.18972 z"/><path sodipodi:nodetypes="ccc" id="path1116" class="muscle_tone" d="m 303.24363,269.89121 c -3.70542,-3.35104 -8.95604,-6.81165 -14.43619,-10.51034 5.04375,3.22432 11.32129,6.97278 14.43619,10.51034 z"/><path sodipodi:nodetypes="ccc" id="path1118" class="muscle_tone" d="m 249.55985,274.96762 c 2.66686,-3.79298 3.9516,-9.15827 9.43175,-12.85696 -5.04375,3.22432 -7.24493,9.01004 -9.43175,12.85696 z"/><path sodipodi:nodetypes="ccc" id="path1120" class="muscle_tone" d="m 315.32611,381.50405 c -4.37092,10.93375 -5.99229,14.67189 -8.99626,24.269 4.27593,-11.17721 5.6182,-14.98126 8.99626,-24.269 z"/><path sodipodi:nodetypes="ccc" id="path1122" class="muscle_tone" d="m 260.92015,408.4457 c -3.30842,-11.56625 -4.55508,-15.20726 -7.9653,-24.0789 5.24468,9.91654 5.36849,14.36664 7.9653,24.0789 z"/><path sodipodi:nodetypes="ccc" id="path1124" class="muscle_tone" d="m 322.21004,418.07002 c -4.37092,10.93375 -6.6994,16.08611 -9.70337,25.68322 4.27593,-11.17721 6.32531,-16.39548 9.70337,-25.68322 z"/><path sodipodi:nodetypes="ccc" id="path1126" class="muscle_tone" d="m 263.39362,428.05063 c 4.93342,11.09 6.0119,9.64861 9.01587,19.24572 -4.27593,-11.17721 -5.63781,-9.95798 -9.01587,-19.24572 z"/><path sodipodi:nodetypes="ccc" id="path1128" class="muscle_tone" d="m 331.83474,309.96831 c -1.2483,3.29428 -1.95746,4.93254 -3.52279,9.12572 0.95249,-4.27451 1.65215,-6.1206 3.52279,-9.12572 z"/><path sodipodi:nodetypes="ccc" id="path1130" class="muscle_tone" d="m 250.08235,322.46839 c 1.2483,3.29428 0.64496,1.83879 2.21029,6.03197 -0.95249,-4.27451 -0.33965,-3.02685 -2.21029,-6.03197 z"/><path sodipodi:nodetypes="ccc" id="path1132" class="shadow" d="m 361.02638,237.18777 c -0.94326,-8.05772 -0.78056,-23.30289 -4.75812,-32.08391 2.09688,6.60791 3.01744,21.31058 4.75812,32.08391 z"/><path d="m 276.42065,336.89018 c -2.33392,-7.76332 -1.51834,-23.53988 0.81606,-35.04811 -1.74332,-2.38988 -4.44237,-24.92087 -1.47199,-27.6049 -3.61369,4.2787 -0.75808,24.51323 1.47338,27.60765 -2.61353,11.47022 -3.33983,26.27713 -0.84168,35.04655 z" class="muscle_tone belly_details" id="path1440" sodipodi:nodetypes="cccccc"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="display:inline;opacity:1;fill:#ff0000" d="m 330.46094,146.33008 -33.94532,3.49609 c -0.60023,11.74644 4.71069,22.2221 4.14063,32.15625 -3.38126,2.62022 -7.80518,3.85567 -13.92187,5.23828 -2.12717,0.53863 -3.90301,1.14812 -5.31836,1.8125 -1.44243,0.67709 -2.53172,1.40659 -3.29883,2.16797 -0.76711,0.76138 -1.21275,1.5546 -1.36914,2.35352 -0.1564,0.79891 -0.0225,1.60483 0.36718,2.39453 0.38973,0.78969 1.035,1.56315 1.90625,2.29687 0.87126,0.73373 1.96768,1.42761 3.25586,2.0586 1.28819,0.63099 2.76769,1.19818 4.40821,1.67969 1.64051,0.4815 3.44284,0.87684 5.37109,1.1621 1.92825,0.28527 3.98337,0.46164 6.13477,0.50391 2.15139,0.0423 4.39904,-0.0494 6.70898,-0.29687 2.30994,-0.24748 4.68205,-0.65235 7.08594,-1.23633 2.40388,-0.58398 4.83825,-1.34721 7.27148,-2.31446 2.43324,-0.96724 4.86569,-2.13789 7.26367,-3.53515 2.39799,-1.39726 4.76241,-3.02051 7.06055,-4.89453 2.29815,-1.87403 4.53036,-3.99893 6.66406,-6.39649 2.13371,-2.39755 4.1676,-5.06732 6.07227,-8.03515 -0.0465,-0.0259 -0.0648,-0.0634 -0.10938,-0.0898 -9.4165,-1.39251 -15.92222,-5.03012 -15.74804,-30.52148 z" id="path1104"/><path d="m 246.30911,231.06259 c -6.69233,19.28587 -3.26169,38.80526 2.84033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -12.22966,23.47896 -14.09706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 0.89599,1.18481 5.48384,2.32551 7.03956,-0.25046 l 1.10418,-0.062 c 0.0578,0.0417 5.51012,4.26247 11.34914,0.16388 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -2.78089,-8.8422 -20.01148,-25.04261 -20.57655,-24.78256 0.41299,-0.50348 -6.8269,-13.62863 -7.45206,-15.85983 2.68681,-6.22178 7.5538,-32.80103 8.07452,-32.87542 14.92551,-15.90852 19.20209,-32.18261 21.62975,-41.33057 -1.58625,-1.51901 -2.19808,-10.70751 -2.32875,-13.44272 -4.53544,-10.77188 -1.4693,-15.76194 -3.7691,-26.29186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.20009,-4.26672 -28.06149,3.10873 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.01907,3.61343 -17.66525,5.91567 -29.51965,8.86728 -8.36905,13.10912 -16.38873,17.64107 -24.82836,40.21314 z" class="shadow torso" id="path1102" sodipodi:nodetypes="ccccccccccscccccccsccccccc"/><path class="skin neck" sodipodi:nodetypes="cccccc" id="path1541" d="m 346.40754,176.85218 c -7.39171,-1.56131 -16.05125,-2.2441 -15.85743,-30.61093 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -3.83498,2.97182 -5.98014,3.47675 -13.82076,5.20414 -34.91738,8.73668 29.00804,37.23957 59.48279,-10.24576 z"/><path d="m 346.20898,176.85156 c 0.0446,0.0265 0.0629,0.064 0.10938,0.0898 -29.49173,35.69478 -78.90476,13.79456 -59.58398,10.27929 -4.05962,0.91764 -8.25647,1.76506 -15.5879,3.61328 -8.65971,10.94361 -15.77788,17.65645 -24.83789,40.22852 -5.87551,18.9358 -2.9645,38.67948 2.8418,56.00977 -1.06764,11.32585 -1.52592,26.55771 1,35.50195 -11.37059,21.52353 -11.89766,23.525 -14.09766,43.625 -1.1,10.1 -2.23134,20.37109 -6.00781,40.87109 1.79918,21.68192 24.06434,28.08621 33.55274,33.19727 14.43169,10.04215 15.75568,13.80686 22.99414,21.73047 1.37693,0.26708 4.09368,1.61095 7.06445,-0.26758 l 1.11133,-0.0781 c 1.17404,1.57274 8.90177,1.53055 11.31445,0.17774 1.25908,-5.51105 3.06526,-22.40357 25.5332,-37.0293 9.99479,-6.9207 28.66489,-25.38486 47.28125,-34.05664 -9.1,-20.7 -12.62221,-28.06668 -19.58398,-39.49609 -3.8841,-8.49646 -20.35167,-24.94928 -20.57812,-24.78321 0.17394,-0.53763 -7.38366,-13.70783 -7.45118,-15.85937 2.56898,-6.32141 6.52259,-31.00027 8.07422,-32.87695 3.11188,-3.76379 5.6941,-7.22684 7.88691,-10.51955 7.0161,-10.53536 10.04573,-19.32697 13.6834,-30.64647 -0.3269,-2.17434 -0.47181,-3.26841 -0.6582,-5.75 -1.66961,-10.3676 -2.48045,-23.52968 -5.33008,-34.10742 0.025,-10.96207 3.83399,-17.95313 3.83399,-17.95313 -4.53269,-1.09789 -8.76087,-1.33791 -12.56446,-1.90039 z" id="path1557" sodipodi:nodetypes="cccccccccccccccccccsscccccc" class="skin torso"/><path sodipodi:nodetypes="ccccc" id="path1106" class="shadow belly_details" d="m 276.99339,346.1357 c 0.48219,-2.95995 0.50103,-5.52426 -0.57274,-9.24552 l -0.0242,0.001 c -0.78458,4.82879 -0.38541,6.45786 0.59697,9.24433 z"/><path sodipodi:nodetypes="ccc" id="path1108" class="muscle_tone" d="m 317.3521,285.5361 c -7.46191,11.4761 -10.89652,37.14512 -11.1397,41.11412 2.81194,-18.56341 5.72671,-31.01778 11.1397,-41.11412 z"/><path sodipodi:nodetypes="ccc" id="path1110" class="muscle_tone" d="m 333.64545,368.51096 c -5.87092,10.37125 -20.05508,16.48024 -27.5903,38.1711 8.55718,-28.02096 20.05599,-25.82086 27.5903,-38.1711 z"/><path sodipodi:nodetypes="ccc" id="path1112" class="muscle_tone" d="m 261.07288,408.74028 c -7.12092,-11.56625 -12.80508,-15.26976 -19.3403,-19.6414 12.24468,7.16654 14.68099,9.92914 19.3403,19.6414 z"/><path sodipodi:nodetypes="ccc" id="path1114" class="muscle_tone" d="m 333.87477,277.49678 c -0.45714,-1.47279 -0.073,-7.87231 -6.56962,-12.18972 4.93326,3.3569 6.04008,6.0889 6.56962,12.18972 z"/><path sodipodi:nodetypes="ccc" id="path1116" class="muscle_tone" d="m 303.24363,269.89121 c -3.70542,-3.35104 -8.95604,-6.81165 -14.43619,-10.51034 5.04375,3.22432 11.32129,6.97278 14.43619,10.51034 z"/><path sodipodi:nodetypes="ccc" id="path1118" class="muscle_tone" d="m 249.55985,274.96762 c 2.66686,-3.79298 3.9516,-9.15827 9.43175,-12.85696 -5.04375,3.22432 -7.24493,9.01004 -9.43175,12.85696 z"/><path sodipodi:nodetypes="ccc" id="path1120" class="muscle_tone" d="m 315.32611,381.50405 c -4.37092,10.93375 -5.99229,14.67189 -8.99626,24.269 4.27593,-11.17721 5.6182,-14.98126 8.99626,-24.269 z"/><path sodipodi:nodetypes="ccc" id="path1122" class="muscle_tone" d="m 260.92015,408.4457 c -3.30842,-11.56625 -4.55508,-15.20726 -7.9653,-24.0789 5.24468,9.91654 5.36849,14.36664 7.9653,24.0789 z"/><path sodipodi:nodetypes="ccc" id="path1124" class="muscle_tone" d="m 322.21004,418.07002 c -4.37092,10.93375 -6.6994,16.08611 -9.70337,25.68322 4.27593,-11.17721 6.32531,-16.39548 9.70337,-25.68322 z"/><path sodipodi:nodetypes="ccc" id="path1126" class="muscle_tone" d="m 263.39362,428.05063 c 4.93342,11.09 6.0119,9.64861 9.01587,19.24572 -4.27593,-11.17721 -5.63781,-9.95798 -9.01587,-19.24572 z"/><path sodipodi:nodetypes="ccc" id="path1128" class="muscle_tone" d="m 331.83474,309.96831 c -1.2483,3.29428 -1.95746,4.93254 -3.52279,9.12572 0.95249,-4.27451 1.65215,-6.1206 3.52279,-9.12572 z"/><path sodipodi:nodetypes="ccc" id="path1130" class="muscle_tone" d="m 250.08235,322.46839 c 1.2483,3.29428 0.64496,1.83879 2.21029,6.03197 -0.95249,-4.27451 -0.33965,-3.02685 -2.21029,-6.03197 z"/><path d="m 276.42065,336.89018 c -2.33392,-7.76332 -1.51834,-23.53988 0.81606,-35.04811 -1.74332,-2.38988 -4.44237,-24.92087 -1.47199,-27.6049 -3.61369,4.2787 -0.75808,24.51323 1.47338,27.60765 -2.61353,11.47022 -3.33983,26.27713 -0.84168,35.04655 z" class="muscle_tone belly_details" id="path1440" sodipodi:nodetypes="cccccc"/><path d="m 334.35262,257.79054 c 18.3821,-10.6129 18.87632,-45.89411 23.20514,-48.39336 -5.22768,3.0182 -6.34343,38.65826 -23.20514,48.39336 z" class="shadow" id="path3232-0" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Normal.tw b/src/art/vector_revamp/layers/Torso_Normal.tw index c272251a56cad88e212192dd2d72980f60a78176..2bc8a53b3a7d184fc853269c9fdb994f5f7a5962 100644 --- a/src/art/vector_revamp/layers/Torso_Normal.tw +++ b/src/art/vector_revamp/layers/Torso_Normal.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Torso_Normal [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccccsccccsccccccc" id="path4124" class="shadow torso" d="m 246.30911,231.06259 c -6.69233,19.28587 -3.26169,38.80526 2.84033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -12.22966,23.47896 -14.09706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 1.09074,1.42828 6.14846,2.05805 7.03175,-0.25046 l 1.13543,-0.062 c 0.0539,0.0333 5.91812,4.25115 11.3257,0.16388 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -21.65173,-54.37031 -7.45593,-62.61558 1.67566,-114.84838 -0.50349,-3.50775 -1.32308,-10.70751 -1.45375,-13.44272 -4.53544,-10.77188 -2.3443,-15.76194 -4.6441,-26.29186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.5475,-3.91931 -28.08011,3.12735 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.80032,4.30093 -13.259,4.44692 -29.51965,8.86728 -10.04843,13.94881 -16.38873,17.64107 -24.82836,40.21314 z"/><path d="m 346.40754,176.85218 c -7.39171,-1.56131 -16.05125,-2.2441 -15.85743,-30.61093 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -3.83498,2.97182 -5.98014,3.47675 -13.82076,5.20414 -34.91738,8.73668 29.00804,37.23957 59.48279,-10.24576 z" id="path1544" sodipodi:nodetypes="cccccc" class="skin neck"/><path d="m 286.20117,187.34375 c -4.00254,0.89821 -7.97398,1.70521 -15.05469,3.49023 -8.65971,10.94361 -15.77788,17.65645 -24.83789,40.22852 -5.87551,18.9358 -2.9645,38.67948 2.8418,56.00977 -1.06764,11.32585 -1.52592,26.55771 1,35.50195 -11.37059,21.52353 -11.89766,23.525 -14.09766,43.625 -1.1,10.1 -2.23134,20.37109 -6.00781,40.87109 1.79918,21.68192 24.06434,28.08621 33.55274,33.19727 14.43169,10.04215 15.75568,13.80686 22.99414,21.73047 0.78119,0.55861 4.78693,1.49428 7.05664,-0.26758 l 1.14258,-0.0781 c 1.51181,1.59807 9.57688,1.45961 11.29101,0.17774 1.25908,-5.51105 3.06526,-22.40357 25.5332,-37.0293 9.99479,-6.9207 28.66489,-25.38486 47.28125,-34.05664 -9.1,-20.7 -12.62221,-28.06668 -19.58398,-39.49609 -23.58113,-57.47054 -9.98057,-57.2743 1.61523,-114.68555 -0.3269,-2.17434 -0.47181,-3.26841 -0.6582,-5.75 -1.66961,-10.3676 -2.48045,-23.52968 -5.33008,-34.10742 0.025,-10.96207 3.83399,-17.95313 3.83399,-17.95313 -4.46119,-1.08058 -8.63009,-1.32686 -12.38867,-1.86914 -20.45084,30.32024 -80.12449,19.33623 -60.1836,10.46094 z" id="path1566" sodipodi:nodetypes="cccccccccccccccccccccc" class="skin torso"/><path style="fill:#ff0000" d="m 296.58398,149.81836 -0.0684,0.008 c -0.004,0.0796 0.0172,0.15299 0.0137,0.23242 0.007,-0.0902 0.0493,-0.14839 0.0547,-0.24023 z" id="path1564"/><path style="fill:#ff0000" d="m 330.46484,146.40625 c 1.9e-4,-0.0296 -0.004,-0.0466 -0.004,-0.0762 l -16.56055,1.70508 z" id="path1562"/><path d="m 317.3521,285.5361 c -7.46191,11.4761 -10.89652,37.14512 -11.1397,41.11412 2.81194,-18.56341 5.72671,-31.01778 11.1397,-41.11412 z" class="muscle_tone" id="XMLID_590_-04-8" sodipodi:nodetypes="ccc"/><path d="m 333.64545,368.51096 c -5.87092,10.37125 -20.05508,16.48024 -27.5903,38.1711 8.55718,-28.02096 20.05599,-25.82086 27.5903,-38.1711 z" class="muscle_tone" id="XMLID_590_-04-8-5" sodipodi:nodetypes="ccc"/><path d="m 261.07288,408.74028 c -7.12092,-11.56625 -12.80508,-15.26976 -19.3403,-19.6414 12.24468,7.16654 14.68099,9.92914 19.3403,19.6414 z" class="muscle_tone" id="XMLID_590_-04-8-5-8" sodipodi:nodetypes="ccc"/><path d="m 333.87477,277.49678 c -0.45714,-1.47279 -0.073,-7.87231 -6.56962,-12.18972 4.93326,3.3569 6.04008,6.0889 6.56962,12.18972 z" class="muscle_tone" id="XMLID_590_-04-8-9" sodipodi:nodetypes="ccc"/><path d="m 303.24363,269.89121 c -3.70542,-3.35104 -8.95604,-6.81165 -14.43619,-10.51034 5.04375,3.22432 11.32129,6.97278 14.43619,10.51034 z" class="muscle_tone" id="XMLID_590_-04-8-9-1" sodipodi:nodetypes="ccc"/><path d="m 249.55985,274.96762 c 2.66686,-3.79298 3.9516,-9.15827 9.43175,-12.85696 -5.04375,3.22432 -7.24493,9.01004 -9.43175,12.85696 z" class="muscle_tone" id="XMLID_590_-04-8-9-1-2" sodipodi:nodetypes="ccc"/><path d="m 315.32611,381.50405 c -4.37092,10.93375 -5.99229,14.67189 -8.99626,24.269 4.27593,-11.17721 5.6182,-14.98126 8.99626,-24.269 z" class="muscle_tone" id="XMLID_590_-04-8-5-87" sodipodi:nodetypes="ccc"/><path d="m 260.92015,408.4457 c -3.30842,-11.56625 -4.55508,-15.20726 -7.9653,-24.0789 5.24468,9.91654 5.36849,14.36664 7.9653,24.0789 z" class="muscle_tone" id="XMLID_590_-04-8-5-8-4" sodipodi:nodetypes="ccc"/><path d="m 322.21004,418.07002 c -4.37092,10.93375 -6.6994,16.08611 -9.70337,25.68322 4.27593,-11.17721 6.32531,-16.39548 9.70337,-25.68322 z" class="muscle_tone" id="XMLID_590_-04-8-5-87-5" sodipodi:nodetypes="ccc"/><path d="m 263.39362,428.05063 c 4.93342,11.09 6.0119,9.64861 9.01587,19.24572 -4.27593,-11.17721 -5.63781,-9.95798 -9.01587,-19.24572 z" class="muscle_tone" id="XMLID_590_-04-8-5-87-5-2" sodipodi:nodetypes="ccc"/><path d="m 331.83474,309.96831 c -1.2483,3.29428 -1.95746,4.93254 -3.52279,9.12572 0.95249,-4.27451 1.65215,-6.1206 3.52279,-9.12572 z" class="muscle_tone" id="XMLID_590_-04-8-5-2" sodipodi:nodetypes="ccc"/><path d="m 250.08235,322.46839 c 1.2483,3.29428 0.64496,1.83879 2.21029,6.03197 -0.95249,-4.27451 -0.33965,-3.02685 -2.21029,-6.03197 z" class="muscle_tone" id="XMLID_590_-04-8-5-2-4" sodipodi:nodetypes="ccc"/><path d="m 361.02638,237.18777 c -0.94326,-8.05772 -0.78056,-23.30289 -4.75812,-32.08391 2.09688,6.60791 3.01744,21.31058 4.75812,32.08391 z" class="shadow" id="XMLID_590_-04-8-9-4" sodipodi:nodetypes="ccc"/><path d="m 276.99339,346.1357 c 0.48219,-2.95995 0.50103,-5.52426 -0.57274,-9.24552 l -0.0242,0.001 c -0.78458,4.82879 -0.38541,6.45786 0.59697,9.24433 z" class="shadow belly_details" id="path1444" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="cccccc" id="path1446" class="muscle_tone belly_details" d="m 276.42065,336.89018 c -2.33392,-7.76332 -1.51834,-23.53988 0.81606,-35.04811 -1.74332,-2.38988 -4.44237,-24.92087 -1.47199,-27.6049 -3.61369,4.2787 -0.75808,24.51323 1.47338,27.60765 -2.61353,11.47022 -3.33983,26.27713 -0.84168,35.04655 z"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccccsccccsccccccc" id="path4124" class="shadow torso" d="m 246.30911,231.06259 c -6.69233,19.28587 -3.26169,38.80526 2.84033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -12.22966,23.47896 -14.09706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 1.09074,1.42828 6.14846,2.05805 7.03175,-0.25046 l 1.13543,-0.062 c 0.0539,0.0333 5.91812,4.25115 11.3257,0.16388 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -21.65173,-54.37031 -7.45593,-62.61558 1.67566,-114.84838 -1.67464,-1.5853 -2.26058,-10.45751 -2.39125,-13.19272 -4.53544,-10.77188 -1.4068,-16.01194 -3.7066,-26.54186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.5475,-3.91931 -28.08011,3.12735 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.80032,4.30093 -13.259,4.44692 -29.51965,8.86728 -10.04843,13.94881 -16.38873,17.64107 -24.82836,40.21314 z"/><path d="m 346.40754,176.85218 c -7.39171,-1.56131 -16.05125,-2.2441 -15.85743,-30.61093 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -3.83498,2.97182 -5.98014,3.47675 -13.82076,5.20414 -34.91738,8.73668 29.00804,37.23957 59.48279,-10.24576 z" id="path1544" sodipodi:nodetypes="cccccc" class="skin neck"/><path d="m 286.20117,187.34375 c -4.00254,0.89821 -7.97398,1.70521 -15.05469,3.49023 -8.65971,10.94361 -15.77788,17.65645 -24.83789,40.22852 -5.87551,18.9358 -2.9645,38.67948 2.8418,56.00977 -1.06764,11.32585 -1.52592,26.55771 1,35.50195 -11.37059,21.52353 -11.89766,23.525 -14.09766,43.625 -1.1,10.1 -2.23134,20.37109 -6.00781,40.87109 1.79918,21.68192 24.06434,28.08621 33.55274,33.19727 14.43169,10.04215 15.75568,13.80686 22.99414,21.73047 0.78119,0.55861 4.78693,1.49428 7.05664,-0.26758 l 1.14258,-0.0781 c 1.51181,1.59807 9.57688,1.45961 11.29101,0.17774 1.25908,-5.51105 3.06526,-22.40357 25.5332,-37.0293 9.99479,-6.9207 28.66489,-25.38486 47.28125,-34.05664 -9.1,-20.7 -12.62221,-28.06668 -19.58398,-39.49609 -23.58113,-57.47054 -9.98057,-57.2743 1.61523,-114.68555 -0.3269,-2.17434 -0.47181,-3.26841 -0.6582,-5.75 -1.66961,-10.3676 -2.48045,-23.52968 -5.33008,-34.10742 0.025,-10.96207 3.83399,-17.95313 3.83399,-17.95313 -4.46119,-1.08058 -8.63009,-1.32686 -12.38867,-1.86914 -20.45084,30.32024 -80.12449,19.33623 -60.1836,10.46094 z" id="path1566" sodipodi:nodetypes="cccccccccccccccccccccc" class="skin torso"/><path style="fill:#ff0000" d="m 296.58398,149.81836 -0.0684,0.008 c -0.004,0.0796 0.0172,0.15299 0.0137,0.23242 0.007,-0.0902 0.0493,-0.14839 0.0547,-0.24023 z" id="path1564"/><path style="fill:#ff0000" d="m 330.46484,146.40625 c 1.9e-4,-0.0296 -0.004,-0.0466 -0.004,-0.0762 l -16.56055,1.70508 z" id="path1562"/><path d="m 317.3521,285.5361 c -7.46191,11.4761 -10.89652,37.14512 -11.1397,41.11412 2.81194,-18.56341 5.72671,-31.01778 11.1397,-41.11412 z" class="muscle_tone" id="XMLID_590_-04-8" sodipodi:nodetypes="ccc"/><path d="m 333.64545,368.51096 c -5.87092,10.37125 -20.05508,16.48024 -27.5903,38.1711 8.55718,-28.02096 20.05599,-25.82086 27.5903,-38.1711 z" class="muscle_tone" id="XMLID_590_-04-8-5" sodipodi:nodetypes="ccc"/><path d="m 261.07288,408.74028 c -7.12092,-11.56625 -12.80508,-15.26976 -19.3403,-19.6414 12.24468,7.16654 14.68099,9.92914 19.3403,19.6414 z" class="muscle_tone" id="XMLID_590_-04-8-5-8" sodipodi:nodetypes="ccc"/><path d="m 333.87477,277.49678 c -0.45714,-1.47279 -0.073,-7.87231 -6.56962,-12.18972 4.93326,3.3569 6.04008,6.0889 6.56962,12.18972 z" class="muscle_tone" id="XMLID_590_-04-8-9" sodipodi:nodetypes="ccc"/><path d="m 303.24363,269.89121 c -3.70542,-3.35104 -8.95604,-6.81165 -14.43619,-10.51034 5.04375,3.22432 11.32129,6.97278 14.43619,10.51034 z" class="muscle_tone" id="XMLID_590_-04-8-9-1" sodipodi:nodetypes="ccc"/><path d="m 249.55985,274.96762 c 2.66686,-3.79298 3.9516,-9.15827 9.43175,-12.85696 -5.04375,3.22432 -7.24493,9.01004 -9.43175,12.85696 z" class="muscle_tone" id="XMLID_590_-04-8-9-1-2" sodipodi:nodetypes="ccc"/><path d="m 315.32611,381.50405 c -4.37092,10.93375 -5.99229,14.67189 -8.99626,24.269 4.27593,-11.17721 5.6182,-14.98126 8.99626,-24.269 z" class="muscle_tone" id="XMLID_590_-04-8-5-87" sodipodi:nodetypes="ccc"/><path d="m 260.92015,408.4457 c -3.30842,-11.56625 -4.55508,-15.20726 -7.9653,-24.0789 5.24468,9.91654 5.36849,14.36664 7.9653,24.0789 z" class="muscle_tone" id="XMLID_590_-04-8-5-8-4" sodipodi:nodetypes="ccc"/><path d="m 322.21004,418.07002 c -4.37092,10.93375 -6.6994,16.08611 -9.70337,25.68322 4.27593,-11.17721 6.32531,-16.39548 9.70337,-25.68322 z" class="muscle_tone" id="XMLID_590_-04-8-5-87-5" sodipodi:nodetypes="ccc"/><path d="m 263.39362,428.05063 c 4.93342,11.09 6.0119,9.64861 9.01587,19.24572 -4.27593,-11.17721 -5.63781,-9.95798 -9.01587,-19.24572 z" class="muscle_tone" id="XMLID_590_-04-8-5-87-5-2" sodipodi:nodetypes="ccc"/><path d="m 331.83474,309.96831 c -1.2483,3.29428 -1.95746,4.93254 -3.52279,9.12572 0.95249,-4.27451 1.65215,-6.1206 3.52279,-9.12572 z" class="muscle_tone" id="XMLID_590_-04-8-5-2" sodipodi:nodetypes="ccc"/><path d="m 250.08235,322.46839 c 1.2483,3.29428 0.64496,1.83879 2.21029,6.03197 -0.95249,-4.27451 -0.33965,-3.02685 -2.21029,-6.03197 z" class="muscle_tone" id="XMLID_590_-04-8-5-2-4" sodipodi:nodetypes="ccc"/><path d="m 276.99339,346.1357 c 0.48219,-2.95995 0.50103,-5.52426 -0.57274,-9.24552 l -0.0242,0.001 c -0.78458,4.82879 -0.38541,6.45786 0.59697,9.24433 z" class="shadow belly_details" id="path1444" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="cccccc" id="path1446" class="muscle_tone belly_details" d="m 276.42065,336.89018 c -2.33392,-7.76332 -1.51834,-23.53988 0.81606,-35.04811 -1.74332,-2.38988 -4.44237,-24.92087 -1.47199,-27.6049 -3.61369,4.2787 -0.75808,24.51323 1.47338,27.60765 -2.61353,11.47022 -3.33983,26.27713 -0.84168,35.04655 z"/><path d="m 334.35262,257.79054 c 18.3821,-10.6129 18.87632,-45.89411 23.20514,-48.39336 -5.22768,3.0182 -6.34343,38.65826 -23.20514,48.39336 z" class="shadow" id="path2549" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Outfit_Maid_Hourglass.tw b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Hourglass.tw index 5624e263e321221c8ee6bd80d779fb74d7e16ed4..ca7d0e2259f4c4408f66178ffbf0619ea2686dbc 100644 --- a/src/art/vector_revamp/layers/Torso_Outfit_Maid_Hourglass.tw +++ b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Hourglass.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Torso_Outfit_Maid_Hourglass [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 359.85539,224.47865 c 0,0 0.28252,2.9195 1.13622,14.01358 0.60333,0.24133 -4.66387,31.43722 -21.44276,39.64844 -2.60991,13.16972 -4.10758,40.46738 -4.54391,40.39466 0,0 2.60164,5.12801 3.8029,7.55426 25.41094,14.16919 46.24345,42.44329 56.43292,71.31194 19.15995,38.96952 18.59152,124.9406 17.21147,125.13775 -69.91487,-25.57972 -163.41142,29.15618 -232.75934,-4.27387 -0.6629,0 4.43678,-75.76419 20.06445,-110.96586 8.85721,-31.27651 35.22168,-60.19855 50.2411,-84.26 -5.31056,-13.48953 -3.00269,-25.08718 -1.37108,-35.87779 -10.20434,-15.27731 -9.37658,-29.5504 -6.26329,-44.46892 1.91023,-12.81128 7.57872,-19.40372 7.03791,-19.59657 44.12648,12.49268 110.45341,1.38238 110.45341,1.38238 z" id="path1322" sodipodi:nodetypes="cccccccccccccc" class="shadow"/><path style="display:inline;opacity:1;fill:#333333" sodipodi:nodetypes="cccccaccaccacc" id="path1108-7" d="m 359.85539,224.47865 c 0,0 0.28252,2.9195 1.13622,14.01358 0,0 -5.70201,31.02196 -21.44276,39.64844 -4.05461,12.92894 -4.54391,40.39466 -4.54391,40.39466 0,0 2.60164,5.12801 3.8029,7.55426 23.94861,15.0158 44.54286,43.42784 56.43292,71.31194 16.51533,38.7311 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.88371,-75.76419 20.06445,-110.96586 11.46675,-30.62413 36.51387,-59.8755 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -9.41353,-15.3492 -7.79397,-29.57811 -6.26329,-44.46892 0.70972,-6.9043 7.03791,-19.59657 7.03791,-19.59657 44.12648,12.49268 110.45341,1.38238 110.45341,1.38238 z"/><path sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc" id="path1251" class="shadow" d="m 318.99599,327.6899 c 0.0644,-0.16109 8.65228,0.56099 9.61497,4.49727 1.3512,2.8737 -3.34911,7.53093 -3.47797,7.44163 -0.0771,-0.15425 8.84757,-0.64052 10.11034,3.2164 1.02068,3.07865 -5.38909,6.92467 -5.44926,6.82438 0.23172,-0.20855 10.82387,0.0205 11.58201,4.44743 1.38783,4.11242 -6.22864,10.32292 -6.27664,10.17893 0.21991,-0.13745 8.43834,1.21248 9.01294,4.71968 1.2288,3.81779 -4.96917,9.64522 -5.03752,9.48573 0.21257,-0.13285 10.58372,2.34604 11.07464,6.85972 1.25518,3.94064 -6.04041,9.4479 -6.21547,9.33849 0.13515,-0.11263 11.08656,2.58112 11.93526,7.39163 1.71015,4.99964 -7.00879,13.22784 -7.21484,13.15057 0.0942,-0.0157 9.93077,7.19801 9.34405,12.44107 0.10908,5.19779 -9.69913,10.99968 -9.76212,10.93669 0.18533,-0.0824 11.15376,9.91714 7.63971,14.84338 -2.61785,4.65478 -15.08597,-0.32502 -15.15239,-0.59071 0.33431,-0.16715 5.3952,17.15578 -0.85713,21.87287 -6.50245,5.00033 -23.38239,-4.72464 -23.02204,-4.94986 0.22183,0.0246 -1.66191,12.7012 -7.19718,14.88791 -5.5687,2.47972 -16.74854,-6.17807 -16.74854,-6.48015 0.21345,0.4269 -5.07562,9.91879 -10.03403,10.20801 -5.55297,0.42338 -12.95531,-7.17693 -12.56583,-7.44005 0.36032,0.1488 -7.16402,7.27921 -12.8887,6.95808 -4.83568,-0.14563 -10.74277,-8.48059 -10.58851,-8.67342 0.22444,0.19238 -9.22718,7.16136 -14.53666,4.80368 -4.70766,-1.85637 -6.31717,-11.27134 -6.13011,-11.24256 -0.0365,0.3281 -13.14523,5.45055 -17.62156,1.26353 -4.51529,-3.20565 -1.84094,-15.18727 -1.6627,-15.20509 -0.17088,0.0854 -9.60707,-4.8907 -10.3417,-9.69215 -1.57318,-4.62814 3.84701,-13.41306 4.19582,-13.29679 -0.18367,0.0459 -4.13228,-7.96382 -2.49807,-11.98279 0.67111,-3.66494 7.4073,-7.52683 7.53174,-7.42313 -0.10889,0.0545 -2.35187,-7.48617 -0.57345,-11.08065 0.97955,-3.46808 7.81374,-7.23036 7.98116,-7.15861 -0.16474,0.0412 -1.76219,-6.06944 -0.0618,-8.87421 0.86706,-2.57827 5.32018,-4.74225 5.36859,-4.54861 -0.31509,0.0788 -1.63297,-5.0224 -0.33716,-7.38269 1.06746,-2.94953 5.90428,-5.607 5.87412,-5.30544 -0.0593,0 0.14909,-4.63491 1.73435,-6.67977 1.09199,-2.83818 5.23059,-6.49208 5.30213,-6.32515 -0.13193,0.0495 1.90625,-6.4612 4.21952,-9.6367 1.30133,-2.92237 6.34678,-7.9651 6.48509,-7.9651 -0.0721,0.009 1.17726,-4.6058 3.03344,-6.74429 1.47439,-2.92429 5.62888,-6.48189 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z"/><path d="m 318.99599,327.6899 c 0,0 8.40821,1.17117 9.61497,4.49727 0.93385,2.57392 -3.47797,7.44163 -3.47797,7.44163 0,0 9.08388,-0.1679 10.11034,3.2164 0.84491,2.78571 -5.44926,6.82438 -5.44926,6.82438 0,0 10.25836,0.52946 11.58201,4.44743 1.27585,3.77649 -6.27664,10.17893 -6.27664,10.17893 0,0 8.01039,1.47995 9.01294,4.71968 1.05837,3.42011 -5.03752,9.48573 -5.03752,9.48573 0,0 10.15037,2.61688 11.07464,6.85972 0.7959,3.65359 -6.21547,9.33849 -6.21547,9.33849 0,0 10.74466,2.86604 11.93526,7.39163 1.2721,4.83537 -7.21484,13.15057 -7.21484,13.15057 0,0 9.56319,7.25927 9.34405,12.44107 -0.20647,4.88224 -9.76212,10.93669 -9.76212,10.93669 0,0 10.62954,10.15013 7.63971,14.84338 -2.71578,4.26308 -15.15239,-0.59071 -15.15239,-0.59071 0,0 4.90743,17.39967 -0.85713,21.87287 -6.20132,4.81212 -23.02204,-4.94986 -23.02204,-4.94986 0,0 -2.06947,12.86558 -7.19718,14.88791 -5.5687,2.19626 -16.74854,-6.48015 -16.74854,-6.48015 0,0 -5.30284,9.59088 -10.03403,10.20801 -4.82685,0.62961 -12.56583,-7.44005 -12.56583,-7.44005 0,0 -8.02869,7.4243 -12.8887,6.95808 -4.54161,-0.43568 -10.58851,-8.67342 -10.58851,-8.67342 0,0 -9.79032,6.67867 -14.53666,4.80368 -3.96987,-1.56825 -6.13011,-11.24256 -6.13011,-11.24256 0,0 -13.0991,5.03539 -17.62156,1.26353 -3.9155,-3.26563 -1.6627,-15.20509 -1.6627,-15.20509 0,0 -9.14506,-5.1217 -10.3417,-9.69215 -1.17719,-4.49614 4.19582,-13.29679 4.19582,-13.29679 0,0 -3.67873,-8.07721 -2.49807,-11.98279 1.02002,-3.37418 7.53174,-7.42313 7.53174,-7.42313 0,0 -1.99319,-7.66551 -0.57345,-11.08065 1.37185,-3.29995 7.98116,-7.15861 7.98116,-7.15861 0,0 -1.29621,-6.18593 -0.0618,-8.87421 0.97875,-2.13151 5.36859,-4.54861 5.36859,-4.54861 0,0 -1.28579,-5.1092 -0.33716,-7.38269 1.01601,-2.43499 5.87412,-5.30544 5.87412,-5.30544 0,0 0.68057,-4.63491 1.73435,-6.67977 1.26026,-2.44554 5.30213,-6.32515 5.30213,-6.32515 0,0 2.39255,-6.64356 4.21952,-9.6367 1.78378,-2.92237 6.48509,-7.9651 6.48509,-7.9651 0,0 1.69989,-4.67113 3.03344,-6.74429 1.54055,-2.39498 5.63667,-6.41957 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" id="path1249" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacaccc" style="display:inline;opacity:1;fill:#ffffff"/><path d="m 317.3515,327.6899 c 0.22023,-0.0832 13.95193,22.40956 15.51755,35.27419 7.4167,28.20029 26.15374,64.2233 5.41963,85.35354 -32.97758,33.60762 -95.87299,40.63263 -128.98295,5.78454 -16.72652,-17.60459 0.50361,-47.60411 11.1802,-71.36249 6.48324,-18.97334 29.03428,-54.79411 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" class="shadow" id="path1244" sodipodi:nodetypes="ccssccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="caaaacc" id="path1108-7-2" d="m 317.3515,327.6899 c 0,0 12.47759,22.79358 15.51755,35.27419 6.74669,27.69865 24.45833,64.13418 5.41963,85.35354 -28.74158,32.03359 -100.27917,37.85201 -128.98295,5.78454 -16.05853,-17.94037 3.26025,-48.62468 11.1802,-71.36249 6.85399,-19.67747 30.78578,-54.40455 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z"/><path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" id="path1282" class="shadow" d="m 318.00391,325.73755 c 0.1662,-0.0684 8.0406,-11.7618 5.42961,-17.15483 -0.9984,-4.15898 -9.59497,-7.10148 -9.61975,-7.06183 0.0569,0.0797 10.47717,-4.52675 10.06153,-9.41841 -0.0685,-4.77393 -10.54117,-8.39289 -10.58006,-8.30214 -0.0526,0.16819 10.25564,-4.52608 11.12513,-10.21762 1.02638,-5.3714 -8.5072,-13.50589 -8.61202,-13.47969 -0.0119,0.17826 11.09595,-3.22828 11.88153,-8.72903 1.155,-4.5223 -7.71736,-10.81305 -7.91075,-10.7647 -0.18835,0.18835 9.25517,-0.42186 11.47755,-4.98693 1.84787,-4.00611 -4.81901,-11.58557 -4.96824,-11.52961 -0.01,0.12732 7.55069,-1.24244 9.10324,-4.91711 1.82315,-3.08035 -1.62605,-9.99671 -1.71582,-9.98549 0.0825,0.0367 5.16407,-1.94852 5.15369,-4.3377 0.60501,-1.54914 -2.18836,-3.99091 -2.28908,-3.97832 0.0908,0.10897 4.0678,-0.15226 4.79507,-1.82593 1.06341,-1.36941 -0.21991,-4.6138 -0.31935,-4.58065 0,0.11423 4.17524,-0.0769 5.19792,-1.9502 0.99558,-1.00322 -0.0412,-3.85994 -0.15909,-3.89362 0.0263,0.10519 4.18456,0.34981 5.20584,-1.40388 1.11122,-1.15275 0.14014,-4.38532 0.077,-4.38532 0.0633,0.0633 4.12591,-0.0432 4.83864,-1.69189 0.81726,-0.94694 -0.16572,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c -0.0716,-0.0398 -3.52027,0.54293 -4.22866,1.88506 -0.85877,0.77377 -0.79145,2.93259 -0.6882,2.93259 0.0551,-0.16527 -3.13346,0.0301 -4.19674,1.3135 -0.99275,0.92921 -0.83191,3.5722 -0.81211,3.56824 -0.2917,-0.11219 -3.72836,0.0448 -4.59896,1.27221 -1.38692,1.22213 -1.40211,4.98076 -1.29971,4.98076 0,-0.0543 -3.63043,0.28826 -4.68112,1.63345 -1.39037,1.63663 -0.95682,5.95733 -0.84379,5.86314 -0.0714,-0.0572 -3.50997,1.34812 -4.13281,2.97367 -0.99363,1.8097 0.0827,5.8256 0.1485,5.78611 0.0286,-0.0107 -3.47409,-2.58144 -5.81788,-2.29945 -2.03561,0.078 -5.00819,3.04217 -4.98536,3.065 0.0894,-0.0383 -3.77398,-2.28548 -6.07463,-1.93646 -2.19936,0.16817 -5.28843,3.26531 -5.24625,3.29062 0.0577,-0.0247 -3.6596,-2.98608 -6.11743,-2.8254 -2.62706,-0.17114 -6.42609,3.37458 -6.37214,3.43623 0.0764,-0.0305 -2.5983,-3.62398 -4.74516,-3.86523 -2.3968,-0.5135 -6.56096,2.67213 -6.54041,2.73377 0.0278,0 -1.86631,-3.79743 -3.84319,-4.39294 -2.1406,-0.8914 -7.08051,1.65543 -7.08312,1.65775 0,0 4.17132,-0.88265 4.32598,-2.62631 0.28337,-1.00061 -1.78574,-2.2873 -1.82858,-2.27124 0.021,0.0349 5.21539,-1.03939 5.23366,-3.24468 0.28059,-1.11065 -2.28712,-1.83524 -2.3211,-1.81583 0.0194,0.0427 4.09634,-0.0764 4.41853,-1.78242 0.37085,-0.98469 -1.73184,-2.21574 -1.77223,-2.1933 0.008,0.0219 2.8764,-0.90334 3.31722,-2.28129 0.32598,-0.62431 -0.37809,-1.9308 -0.43513,-1.92265 l -4.69222,0.72413 c 0.0237,-0.0426 -1.79765,0.46492 -2.63183,1.51492 -0.69936,0.46779 -0.96174,2.2027 -0.94371,2.21712 0.007,-0.0358 -1.88989,0.10067 -2.44519,0.95669 -0.61207,0.66093 -0.26769,2.37608 -0.20536,2.36361 0.012,-0.0419 -2.55183,0.42329 -3.2251,1.69596 -0.77861,1.04606 0.0592,3.62639 0.12616,3.62639 0.0513,-0.094 -2.12186,0.38382 -2.86561,1.6675 -0.82026,1.16209 -0.31411,3.83168 -0.0897,3.71947 -0.2087,-0.14907 -4.50311,2.782 -5.0707,5.30267 -1.45304,2.7823 -0.4393,8.68853 -0.14431,8.57791 -0.11184,-0.19573 -5.61323,4.13251 -6.54891,7.662 -2.01339,4.22462 -0.20242,12.80349 0.12218,12.65594 -0.27988,-0.19992 -6.69779,4.93798 -6.78396,8.84863 -0.72683,3.97856 4.74341,10.55407 4.9951,10.4462 -0.19084,-0.12723 -4.51715,7.94817 -3.68091,12.43969 0.0674,4.53539 6.50495,11.45785 6.7561,11.37413 -0.19797,0.054 -3.09154,6.28983 -2.56163,9.33402 -0.61864,3.0265 1.44599,8.78728 1.66753,8.76266 -0.22155,-0.0738 -2.26451,6.97373 -1.5863,10.76219 -0.2869,2.90595 3.05181,8.88695 3.17474,8.83426 l 0.60329,6.29895 67.29376,-3.51585 z"/><path d="m 318.00391,325.73755 c 0,0 7.29076,-11.45304 5.42961,-17.15483 -1.23433,-3.78149 -9.61975,-7.06183 -9.61975,-7.06183 0,0 10.26143,-4.82879 10.06153,-9.41841 -0.19507,-4.4786 -10.58006,-8.30214 -10.58006,-8.30214 0,0 10.47399,-5.22482 11.12513,-10.21762 0.68954,-5.28719 -8.61202,-13.47969 -8.61202,-13.47969 0,0 11.1388,-3.87102 11.88153,-8.72903 0.67298,-4.4018 -7.91075,-10.7647 -7.91075,-10.7647 0,0 9.94184,-1.10853 11.47755,-4.98693 1.54066,-3.89091 -4.96824,-11.52961 -4.96824,-11.52961 0,0 7.59479,-1.81571 9.10324,-4.91711 1.47717,-3.0371 -1.71582,-9.98549 -1.71582,-9.98549 0,0 4.76382,-2.12641 5.15369,-4.3377 0.26565,-1.50672 -2.28908,-3.97832 -2.28908,-3.97832 0,0 3.87403,-0.38479 4.79507,-1.82593 0.82425,-1.28969 -0.31935,-4.58065 -0.31935,-4.58065 0,0 4.17524,-0.40787 5.19792,-1.9502 0.71783,-1.08258 -0.15909,-3.89362 -0.15909,-3.89362 0,0 4.10041,0.0132 5.20584,-1.40388 0.89923,-1.15275 0.077,-4.38532 0.077,-4.38532 0,0 3.91403,-0.25505 4.83864,-1.69189 0.60936,-0.94694 -0.30643,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c 0,0 -3.24515,0.69578 -4.22866,1.88506 -0.6399,0.77377 -0.6882,2.93259 -0.6882,2.93259 0,0 -3.20228,0.23661 -4.19674,1.3135 -0.82757,0.89617 -0.81211,3.56824 -0.81211,3.56824 0,0 -3.48252,0.13932 -4.59896,1.27221 -1.20438,1.22213 -1.29971,4.98076 -1.29971,4.98076 0,0 -3.63043,0.3578 -4.68112,1.63345 -1.25533,1.5241 -0.84379,5.86314 -0.84379,5.86314 0,0 -3.37828,1.45347 -4.13281,2.97367 -0.85776,1.72818 0.1485,5.78611 0.1485,5.78611 0,0 -3.74057,-2.48151 -5.81788,-2.29945 -1.94328,0.17031 -4.98536,3.065 -4.98536,3.065 0,0 -3.96616,-2.20312 -6.07463,-1.93646 -2.04797,0.25901 -5.24625,3.29062 -5.24625,3.29062 0,0 -3.87237,-2.89489 -6.11743,-2.8254 -2.41204,0.0746 -6.37214,3.43623 -6.37214,3.43623 0,0 -2.72617,-3.57283 -4.74516,-3.86523 -2.33852,-0.33867 -6.54041,2.73377 -6.54041,2.73377 0,0 -1.99097,-3.79743 -3.84319,-4.39294 -2.30846,-0.74219 -7.08312,1.65775 -7.08312,1.65775 0,0 4.03449,-0.96475 4.32598,-2.62631 0.16794,-0.95733 -1.82858,-2.27124 -1.82858,-2.27124 0,0 5.12196,-1.19511 5.23366,-3.24468 0.0535,-0.98088 -2.3211,-1.81583 -2.3211,-1.81583 0,0 4.01965,-0.24516 4.41853,-1.78242 0.23607,-0.90981 -1.77223,-2.1933 -1.77223,-2.1933 0,0 2.82832,-1.03154 3.31722,-2.28129 0.23939,-0.61194 -0.43513,-1.92265 -0.43513,-1.92265 l -4.69222,0.72413 c 0,0 -1.96023,0.75757 -2.63183,1.51492 -0.53291,0.60095 -0.94371,2.21712 -0.94371,2.21712 0,0 -1.92093,0.25586 -2.44519,0.95669 -0.47372,0.63326 -0.20536,2.36361 -0.20536,2.36361 0,0 -2.61532,0.6455 -3.2251,1.69596 -0.60723,1.04606 0.12616,3.62639 0.12616,3.62639 0,0 -2.30315,0.71618 -2.86561,1.6675 -0.63118,1.06755 -0.0897,3.71947 -0.0897,3.71947 0,0 -4.14105,3.04061 -5.0707,5.30267 -1.08704,2.64505 -0.14431,8.57791 -0.14431,8.57791 0,0 -5.40066,4.5045 -6.54891,7.662 -1.44183,3.96482 0.12218,12.65594 0.12218,12.65594 0,0 -6.39804,5.15209 -6.78396,8.84863 -0.40078,3.83882 4.9951,10.4462 4.9951,10.4462 0,0 -4.21638,8.14869 -3.68091,12.43969 0.54606,4.37584 6.7561,11.37413 6.7561,11.37413 0,0 -2.43294,6.11021 -2.56163,9.33402 -0.1186,2.97094 1.66753,8.76266 1.66753,8.76266 0,0 -1.76447,7.14041 -1.5863,10.76219 0.13408,2.72553 3.17474,8.83426 3.17474,8.83426 l 0.60329,6.29895 67.29376,-3.51585 z" id="path1280" sodipodi:nodetypes="cacacacacacacacacacacaccacacacacacacacacacacacacacaccacacacacacacacacacscccc" style="display:inline;opacity:1;fill:#ffffff;stroke-width:1.05999994"/><path d="m 315.90803,320.84344 c -2.49311,-12.85797 -3.70847,-24.16935 -4.44214,-39.5634 4.29028,-30.83464 3.35841,-41.06705 21.27809,-72.37945 1.06744,-9.14922 11.65832,-19.70221 22.34434,-31.15738 -2.13976,-0.51067 -4.28423,-0.96012 -6.46482,-0.94005 -11.40402,9.3964 -21.91679,21.41172 -24.91403,32.79713 -21.89276,0.52722 -32.81714,6.37507 -58.48416,-1.54946 3.84727,-8.39874 5.10763,-9.47909 10.78801,-18.40031 -1.05734,0.0265 -2.02266,-0.0784 -3.63549,0.74174 -6.9411,6.67026 -8.04042,9.50969 -12.35955,17.95063 -2.80066,6.10293 -4.61886,11.91112 -5.76436,17.5175 -10.39962,25.33864 -5.9915,43.15772 -3.53361,61.61413 -1.4792,13.13023 -0.30041,25.062 1.70304,36.68579 18.49356,5.86562 41.60515,-0.33523 63.48468,-3.31684 z" class="shadow" id="path1268" sodipodi:nodetypes="ccccccccccccccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccccccccccccc" id="path1108-7-2-2" d="m 315.90803,320.84344 c -2.81213,-13.35423 -5.31598,-26.66992 -4.44214,-39.5634 3.50974,-30.99075 1.84762,-41.36921 21.27809,-72.37945 0.93083,-9.35414 10.94077,-20.77854 22.34434,-31.15738 l -6.46482,-0.94005 c -9.53791,9.58301 -21.68892,21.43451 -24.91403,32.79713 -21.76753,0.94464 -32.29254,8.12373 -58.48416,-1.54946 3.69598,-8.48126 4.421,-9.85362 10.78801,-18.40031 l -3.63549,0.74174 c -6.53986,6.87088 -7.78622,9.63679 -12.35955,17.95063 l -5.76436,17.5175 c -8.96086,25.20784 -5.79542,43.13989 -3.53361,61.61413 -0.5132,12.61008 0.22818,24.77737 1.70304,36.68579 18.49356,5.86562 41.60515,-0.33523 63.48468,-3.31684 z"/><path d="m 335.13308,318.51346 3.76755,7.52419 c -34.68921,1.29057 -70.68419,18.30652 -92.67015,3.82289 l 3.86668,-6.97285 c 33.13895,8.49273 52.33122,-5.8368 85.03592,-4.37423 z" class="shadow" id="path1246" sodipodi:nodetypes="ccccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1108-7-2-7" d="m 335.13308,318.51346 3.76755,7.52419 c -35.36449,0.47083 -72.09797,17.70061 -92.67015,3.82289 l 3.86668,-6.97285 c 30.76253,9.95515 51.75714,-4.70842 85.03592,-4.37423 z"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="cccccccccccccccccccc" id="path2834" d="m 360.49161,241.99223 c 0.15713,0.0673 -4.72159,19.01292 -21.51477,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 25.42564,15.0158 49.36375,45.91894 56.68292,72.68694 18.09394,39.28852 18.07129,125.05958 17.21147,125.13775 -70.8552,-22.32954 -164.13155,30.03525 -232.75934,-4.27387 -0.19735,-0.0197 4.1265,-76.03991 20.06445,-110.96586 9.2798,-30.93655 35.4953,-60.02101 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -5.47524,-7.9954 -6.36742,-21.28882 -5.88641,-30.59601 -4.05722,-36.73329 30.65665,-66.66209 31.00076,-66.66209 -0.008,-0.0706 2.55382,-1.8267 8.72305,-2.20036 -36.01659,24.46625 -42.13809,58.83696 -39.24643,69.07094 12.14629,3.82492 34.25776,3.67112 87.23879,-1.85132 1.92836,0 6.15865,-6.88279 6.15865,-10.00465 2.71491,-24.25648 8.03999,-35.96111 9.4316,-68.9692 4.553,0.39299 4.95014,-0.2397 9.68823,1.7253 -1.04791,6.23371 0.31824,53.97628 4.75601,64.31785 z"/><path d="m 348.47508,176.56688 c 6.23488,24.59751 4.25162,51.07322 4.99933,76.19448 -42.11798,9.03479 -85.37513,19.71113 -110.63496,3.91432 -1.95782,-18.39591 8.20167,-47.39868 32.21961,-67.27394 42.97585,-9.32822 52.0825,-17.54406 73.41602,-12.83486 z" id="path2836" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/><path d="m 360.49161,241.99223 c 0,0 -6.37282,19.56418 -21.51477,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 23.94861,15.0158 44.73213,44.38116 56.68292,72.68694 16.37715,38.78974 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.88371,-75.76419 20.06445,-110.96586 11.46675,-30.62413 36.51387,-59.8755 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -4.94422,-8.06178 -5.57616,-21.38773 -5.88641,-30.59601 -3.92817,-36.49728 30.67927,-66.58172 31.00076,-66.66209 0,0 2.59939,-1.41654 8.72305,-2.20036 -36.76659,20.96625 -42.13809,58.83696 -39.24643,69.07094 24.85388,-0.61208 66.61629,9.56619 108.02244,-11.10597 1.4423,-26.38913 0.15792,-38.14578 -5.1934,-69.7192 4.57973,0.53998 5.03464,0.22507 9.68823,1.7253 -1.36935,6.31407 -0.62585,54.2123 4.75601,64.31785 z" id="path2838" sodipodi:nodetypes="ccccaccaccccccccccc" style="display:inline;opacity:1;fill:#333333"/><path d="m 306.1115,174.72723 3.10935,13.7728 c -3.58883,0.28907 -4.19632,0.25785 -6.36265,-0.32791 1.00219,-12.04918 3.2533,-13.44489 3.2533,-13.44489 z" id="path2840" sodipodi:nodetypes="cccc" style="display:inline;opacity:1;fill:#ffffff"/><path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="ccccc" id="path2842" d="m 300.08667,172.57237 c -2.03237,3.63344 -2.40946,7.63281 -3.39194,11.16176 -0.11097,2.48059 4.02564,5.20338 6.30994,6.62117 -0.11352,-4.35414 2.20104,-11.31333 2.96606,-15.5101 -2.0837,-0.64114 -4.38743,-1.29276 -5.88406,-2.27283 z"/><path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="ccccc" id="path2844" d="m 333.1721,164.81697 c 3.12234,3.33135 7.8525,6.78145 9.92028,10.58149 -7.93754,9.36149 -23.35479,13.30607 -33.9727,15.90151 -0.57861,-4.86704 -2.13199,-11.9051 -3.13395,-16.71185 8.60186,-2.43964 22.03678,-4.58024 27.18637,-9.77115 z"/><path d="m 318.99599,327.6899 c 0.0644,-0.16109 8.65228,0.56099 9.61497,4.49727 1.3512,2.8737 -3.34911,7.53093 -3.47797,7.44163 -0.0771,-0.15425 8.84757,-0.64052 10.11034,3.2164 1.02068,3.07865 -5.38909,6.92467 -5.44926,6.82438 0.23172,-0.20855 10.82387,0.0205 11.58201,4.44743 1.38783,4.11242 -6.22864,10.32292 -6.27664,10.17893 0.21991,-0.13745 8.43834,1.21248 9.01294,4.71968 1.2288,3.81779 -4.96917,9.64522 -5.03752,9.48573 0.21257,-0.13285 10.58372,2.34604 11.07464,6.85972 1.25518,3.94064 -6.04041,9.4479 -6.21547,9.33849 0.13515,-0.11263 11.08656,2.58112 11.93526,7.39163 1.71015,4.99964 -7.00879,13.22784 -7.21484,13.15057 0.0942,-0.0157 9.93077,7.19801 9.34405,12.44107 0.10908,5.19779 -9.69913,10.99968 -9.76212,10.93669 0.18533,-0.0824 11.15376,9.91714 7.63971,14.84338 -2.61785,4.65478 -15.08597,-0.32502 -15.15239,-0.59071 0.33431,-0.16715 5.3952,17.15578 -0.85713,21.87287 -6.50245,5.00033 -23.38239,-4.72464 -23.02204,-4.94986 0.22183,0.0246 -1.66191,12.7012 -7.19718,14.88791 -5.5687,2.47972 -16.74854,-6.17807 -16.74854,-6.48015 0.21345,0.4269 -5.07562,9.91879 -10.03403,10.20801 -5.55297,0.42338 -12.95531,-7.17693 -12.56583,-7.44005 0.36032,0.1488 -7.16402,7.27921 -12.8887,6.95808 -4.83568,-0.14563 -10.74277,-8.48059 -10.58851,-8.67342 0.22444,0.19238 -9.22718,7.16136 -14.53666,4.80368 -4.70766,-1.85637 -6.31717,-11.27134 -6.13011,-11.24256 -0.0365,0.3281 -13.14523,5.45055 -17.62156,1.26353 -4.51529,-3.20565 -1.84094,-15.18727 -1.6627,-15.20509 -0.17088,0.0854 -9.60707,-4.8907 -10.3417,-9.69215 -1.57318,-4.62814 3.84701,-13.41306 4.19582,-13.29679 -0.18367,0.0459 -4.13228,-7.96382 -2.49807,-11.98279 0.67111,-3.66494 7.4073,-7.52683 7.53174,-7.42313 -0.10889,0.0545 -2.35187,-7.48617 -0.57345,-11.08065 0.97955,-3.46808 7.81374,-7.23036 7.98116,-7.15861 -0.16474,0.0412 -1.76219,-6.06944 -0.0618,-8.87421 0.86706,-2.57827 5.32018,-4.74225 5.36859,-4.54861 -0.31509,0.0788 -1.63297,-5.0224 -0.33716,-7.38269 1.06746,-2.94953 5.90428,-5.607 5.87412,-5.30544 -0.0593,0 0.14909,-4.63491 1.73435,-6.67977 1.09199,-2.83818 5.23059,-6.49208 5.30213,-6.32515 -0.13193,0.0495 1.90625,-6.4612 4.21952,-9.6367 1.30133,-2.92237 6.34678,-7.9651 6.48509,-7.9651 -0.0721,0.009 1.17726,-4.6058 3.03344,-6.74429 1.47439,-2.92429 5.62888,-6.48189 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" class="shadow" id="path2846" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacaccc" id="path2848" d="m 318.99599,327.6899 c 0,0 8.40821,1.17117 9.61497,4.49727 0.93385,2.57392 -3.47797,7.44163 -3.47797,7.44163 0,0 9.08388,-0.1679 10.11034,3.2164 0.84491,2.78571 -5.44926,6.82438 -5.44926,6.82438 0,0 10.25836,0.52946 11.58201,4.44743 1.27585,3.77649 -6.27664,10.17893 -6.27664,10.17893 0,0 8.01039,1.47995 9.01294,4.71968 1.05837,3.42011 -5.03752,9.48573 -5.03752,9.48573 0,0 10.15037,2.61688 11.07464,6.85972 0.7959,3.65359 -6.21547,9.33849 -6.21547,9.33849 0,0 10.74466,2.86604 11.93526,7.39163 1.2721,4.83537 -7.21484,13.15057 -7.21484,13.15057 0,0 9.56319,7.25927 9.34405,12.44107 -0.20647,4.88224 -9.76212,10.93669 -9.76212,10.93669 0,0 10.62954,10.15013 7.63971,14.84338 -2.71578,4.26308 -15.15239,-0.59071 -15.15239,-0.59071 0,0 4.90743,17.39967 -0.85713,21.87287 -6.20132,4.81212 -23.02204,-4.94986 -23.02204,-4.94986 0,0 -2.06947,12.86558 -7.19718,14.88791 -5.5687,2.19626 -16.74854,-6.48015 -16.74854,-6.48015 0,0 -5.30284,9.59088 -10.03403,10.20801 -4.82685,0.62961 -12.56583,-7.44005 -12.56583,-7.44005 0,0 -8.02869,7.4243 -12.8887,6.95808 -4.54161,-0.43568 -10.58851,-8.67342 -10.58851,-8.67342 0,0 -9.79032,6.67867 -14.53666,4.80368 -3.96987,-1.56825 -6.13011,-11.24256 -6.13011,-11.24256 0,0 -13.0991,5.03539 -17.62156,1.26353 -3.9155,-3.26563 -1.6627,-15.20509 -1.6627,-15.20509 0,0 -9.14506,-5.1217 -10.3417,-9.69215 -1.17719,-4.49614 4.19582,-13.29679 4.19582,-13.29679 0,0 -3.67873,-8.07721 -2.49807,-11.98279 1.02002,-3.37418 7.53174,-7.42313 7.53174,-7.42313 0,0 -1.99319,-7.66551 -0.57345,-11.08065 1.37185,-3.29995 7.98116,-7.15861 7.98116,-7.15861 0,0 -1.29621,-6.18593 -0.0618,-8.87421 0.97875,-2.13151 5.36859,-4.54861 5.36859,-4.54861 0,0 -1.28579,-5.1092 -0.33716,-7.38269 1.01601,-2.43499 5.87412,-5.30544 5.87412,-5.30544 0,0 0.68057,-4.63491 1.73435,-6.67977 1.26026,-2.44554 5.30213,-6.32515 5.30213,-6.32515 0,0 2.39255,-6.64356 4.21952,-9.6367 1.78378,-2.92237 6.48509,-7.9651 6.48509,-7.9651 0,0 1.69989,-4.67113 3.03344,-6.74429 1.54055,-2.39498 5.63667,-6.41957 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z"/><path sodipodi:nodetypes="ccssccc" id="path2850" class="shadow" d="m 317.3515,327.6899 c 0.22023,-0.0832 13.95193,22.40956 15.51755,35.27419 7.4167,28.20029 26.15374,64.2233 5.41963,85.35354 -32.97758,33.60762 -95.87299,40.63263 -128.98295,5.78454 -16.72652,-17.60459 0.50361,-47.60411 11.1802,-71.36249 6.48324,-18.97334 29.03428,-54.79411 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z"/><path d="m 317.3515,327.6899 c 0,0 12.47759,22.79358 15.51755,35.27419 6.74669,27.69865 24.45833,64.13418 5.41963,85.35354 -28.74158,32.03359 -100.27917,37.85201 -128.98295,5.78454 -16.05853,-17.94037 3.26025,-48.62468 11.1802,-71.36249 6.85399,-19.67747 30.78578,-54.40455 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" id="path2852" sodipodi:nodetypes="caaaacc" style="display:inline;opacity:1;fill:#ffffff"/><path sodipodi:nodetypes="ccccc" id="path2854" class="shadow" d="m 339.32058,281.76346 c -2.00111,14.61346 -1.45571,28.77753 -0.66995,42.89919 -34.68921,1.29057 -70.43419,19.68152 -92.42015,5.19789 0.75356,-14.0727 1.75763,-29.9734 1.30418,-44.34785 33.13895,8.49273 59.08122,-5.2118 91.78592,-3.74923 z"/><path d="m 339.32058,281.76346 c -2.7968,14.29973 -1.98265,28.59946 -0.66995,42.89919 -35.36449,0.47083 -71.84797,19.07561 -92.42015,5.19789 1.05318,-14.11595 2.82363,-30.2319 1.30418,-44.34785 30.76253,9.95515 58.50714,-4.08342 91.78592,-3.74923 z" id="path2856" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/><path d="m 333.1721,164.81697 9.92028,10.58149 c -8.50147,8.95868 -23.58459,13.14193 -33.9727,15.90151 -0.35332,-4.82062 -1.60248,-11.89123 -3.13395,-16.71185 8.60186,-1.844 22.03678,-4.11883 27.18637,-9.77115 z" id="path2858" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/><path d="m 300.08667,172.57237 -3.39194,11.16176 c 0.27347,2.33273 4.1548,5.1537 6.30994,6.62117 -0.5339,-4.37642 1.60936,-11.42013 2.96606,-15.5101 -2.28233,-0.52764 -4.46978,-1.2457 -5.88406,-2.27283 z" id="path2860" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Outfit_Maid_Normal.tw b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Normal.tw index 21a9d63d2c2b84bf3190df624a661456c16cf9b4..e7a9c108accadb24f3f95bbcef526f3f539c309a 100644 --- a/src/art/vector_revamp/layers/Torso_Outfit_Maid_Normal.tw +++ b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Normal.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Torso_Outfit_Maid_Normal [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 359.59022,223.85993 c 0,0 0.54769,3.53822 1.40139,14.6323 0.60333,0.24133 1.08137,17.47186 -9.95227,42.07912 -2.60991,13.16972 -1.59807,36.6617 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 25.41094,14.16919 34.43095,43.81829 44.62042,72.68694 19.15995,38.96952 18.59152,124.9406 17.21147,125.13775 -69.91487,-25.57972 -163.41142,29.15618 -232.75934,-4.27387 -0.6629,0 4.43678,-75.76419 20.06445,-110.96586 8.85721,-31.27651 35.22168,-60.19855 50.2411,-84.26 -5.31056,-13.48953 -3.00269,-25.08718 -1.37108,-35.87779 -10.20434,-15.27731 -9.37658,-29.5504 -6.26329,-44.46892 2.33144,-13.21932 7.5209,-19.83366 7.32405,-19.71802 44.12648,12.49268 109.9021,0.88511 109.9021,0.88511 z" id="path1435" sodipodi:nodetypes="cccccccccccccc" class="shadow"/><path style="display:inline;opacity:1;fill:#333333" sodipodi:nodetypes="cccccaccaccacc" id="path1437" d="m 359.59022,223.85993 c 0,0 0.54769,3.53822 1.40139,14.6323 0,0 -0.31032,17.18918 -9.95227,42.07912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 23.94861,15.0158 35.04244,45.91894 44.62042,72.68694 14.18515,39.64386 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.88371,-75.76419 20.06445,-110.96586 11.46675,-30.62413 36.51387,-59.8755 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -9.41353,-15.3492 -7.87474,-29.58663 -6.26329,-44.46892 0.75479,-6.97069 7.32405,-19.71802 7.32405,-19.71802 44.12648,12.49268 109.9021,0.88511 109.9021,0.88511 z"/><path sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc" id="path1439" class="shadow" d="m 318.99599,327.6899 c 0.0644,-0.16109 8.65228,0.56099 9.61497,4.49727 1.3512,2.8737 -3.34911,7.53093 -3.47797,7.44163 -0.0771,-0.15425 8.84757,-0.64052 10.11034,3.2164 1.02068,3.07865 -5.38909,6.92467 -5.44926,6.82438 0.23172,-0.20855 10.82387,0.0205 11.58201,4.44743 1.38783,4.11242 -6.22864,10.32292 -6.27664,10.17893 0.21991,-0.13745 8.43834,1.21248 9.01294,4.71968 1.2288,3.81779 -4.96917,9.64522 -5.03752,9.48573 0.21257,-0.13285 10.58372,2.34604 11.07464,6.85972 1.25518,3.94064 -6.04041,9.4479 -6.21547,9.33849 0.13515,-0.11263 11.08656,2.58112 11.93526,7.39163 1.71015,4.99964 -7.00879,13.22784 -7.21484,13.15057 0.0942,-0.0157 9.93077,7.19801 9.34405,12.44107 0.10908,5.19779 -9.69913,10.99968 -9.76212,10.93669 0.18533,-0.0824 11.15376,9.91714 7.63971,14.84338 -2.61785,4.65478 -15.08597,-0.32502 -15.15239,-0.59071 0.33431,-0.16715 5.3952,17.15578 -0.85713,21.87287 -6.50245,5.00033 -23.38239,-4.72464 -23.02204,-4.94986 0.22183,0.0246 -1.66191,12.7012 -7.19718,14.88791 -5.5687,2.47972 -16.74854,-6.17807 -16.74854,-6.48015 0.21345,0.4269 -5.07562,9.91879 -10.03403,10.20801 -5.55297,0.42338 -12.95531,-7.17693 -12.56583,-7.44005 0.36032,0.1488 -7.16402,7.27921 -12.8887,6.95808 -4.83568,-0.14563 -10.74277,-8.48059 -10.58851,-8.67342 0.22444,0.19238 -9.22718,7.16136 -14.53666,4.80368 -4.70766,-1.85637 -6.31717,-11.27134 -6.13011,-11.24256 -0.0365,0.3281 -13.14523,5.45055 -17.62156,1.26353 -4.51529,-3.20565 -1.84094,-15.18727 -1.6627,-15.20509 -0.17088,0.0854 -9.60707,-4.8907 -10.3417,-9.69215 -1.57318,-4.62814 3.84701,-13.41306 4.19582,-13.29679 -0.18367,0.0459 -4.13228,-7.96382 -2.49807,-11.98279 0.67111,-3.66494 7.4073,-7.52683 7.53174,-7.42313 -0.10889,0.0545 -2.35187,-7.48617 -0.57345,-11.08065 0.97955,-3.46808 7.81374,-7.23036 7.98116,-7.15861 -0.16474,0.0412 -1.76219,-6.06944 -0.0618,-8.87421 0.86706,-2.57827 5.32018,-4.74225 5.36859,-4.54861 -0.31509,0.0788 -1.63297,-5.0224 -0.33716,-7.38269 1.06746,-2.94953 5.90428,-5.607 5.87412,-5.30544 -0.0593,0 0.14909,-4.63491 1.73435,-6.67977 1.09199,-2.83818 5.23059,-6.49208 5.30213,-6.32515 -0.13193,0.0495 1.90625,-6.4612 4.21952,-9.6367 1.30133,-2.92237 6.34678,-7.9651 6.48509,-7.9651 -0.0721,0.009 1.17726,-4.6058 3.03344,-6.74429 1.47439,-2.92429 5.62888,-6.48189 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z"/><path d="m 318.99599,327.6899 c 0,0 8.40821,1.17117 9.61497,4.49727 0.93385,2.57392 -3.47797,7.44163 -3.47797,7.44163 0,0 9.08388,-0.1679 10.11034,3.2164 0.84491,2.78571 -5.44926,6.82438 -5.44926,6.82438 0,0 10.25836,0.52946 11.58201,4.44743 1.27585,3.77649 -6.27664,10.17893 -6.27664,10.17893 0,0 8.01039,1.47995 9.01294,4.71968 1.05837,3.42011 -5.03752,9.48573 -5.03752,9.48573 0,0 10.15037,2.61688 11.07464,6.85972 0.7959,3.65359 -6.21547,9.33849 -6.21547,9.33849 0,0 10.74466,2.86604 11.93526,7.39163 1.2721,4.83537 -7.21484,13.15057 -7.21484,13.15057 0,0 9.56319,7.25927 9.34405,12.44107 -0.20647,4.88224 -9.76212,10.93669 -9.76212,10.93669 0,0 10.62954,10.15013 7.63971,14.84338 -2.71578,4.26308 -15.15239,-0.59071 -15.15239,-0.59071 0,0 4.90743,17.39967 -0.85713,21.87287 -6.20132,4.81212 -23.02204,-4.94986 -23.02204,-4.94986 0,0 -2.06947,12.86558 -7.19718,14.88791 -5.5687,2.19626 -16.74854,-6.48015 -16.74854,-6.48015 0,0 -5.30284,9.59088 -10.03403,10.20801 -4.82685,0.62961 -12.56583,-7.44005 -12.56583,-7.44005 0,0 -8.02869,7.4243 -12.8887,6.95808 -4.54161,-0.43568 -10.58851,-8.67342 -10.58851,-8.67342 0,0 -9.79032,6.67867 -14.53666,4.80368 -3.96987,-1.56825 -6.13011,-11.24256 -6.13011,-11.24256 0,0 -13.0991,5.03539 -17.62156,1.26353 -3.9155,-3.26563 -1.6627,-15.20509 -1.6627,-15.20509 0,0 -9.14506,-5.1217 -10.3417,-9.69215 -1.17719,-4.49614 4.19582,-13.29679 4.19582,-13.29679 0,0 -3.67873,-8.07721 -2.49807,-11.98279 1.02002,-3.37418 7.53174,-7.42313 7.53174,-7.42313 0,0 -1.99319,-7.66551 -0.57345,-11.08065 1.37185,-3.29995 7.98116,-7.15861 7.98116,-7.15861 0,0 -1.29621,-6.18593 -0.0618,-8.87421 0.97875,-2.13151 5.36859,-4.54861 5.36859,-4.54861 0,0 -1.28579,-5.1092 -0.33716,-7.38269 1.01601,-2.43499 5.87412,-5.30544 5.87412,-5.30544 0,0 0.68057,-4.63491 1.73435,-6.67977 1.26026,-2.44554 5.30213,-6.32515 5.30213,-6.32515 0,0 2.39255,-6.64356 4.21952,-9.6367 1.78378,-2.92237 6.48509,-7.9651 6.48509,-7.9651 0,0 1.69989,-4.67113 3.03344,-6.74429 1.54055,-2.39498 5.63667,-6.41957 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" id="path1441" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacaccc" style="display:inline;opacity:1;fill:#ffffff"/><path d="m 317.3515,327.6899 c 0.22023,-0.0832 13.95193,22.40956 15.51755,35.27419 7.4167,28.20029 26.15374,64.2233 5.41963,85.35354 -32.97758,33.60762 -95.87299,40.63263 -128.98295,5.78454 -16.72652,-17.60459 0.50361,-47.60411 11.1802,-71.36249 6.48324,-18.97334 29.03428,-54.79411 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" class="shadow" id="path1443" sodipodi:nodetypes="ccssccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="caaaacc" id="path1445" d="m 317.3515,327.6899 c 0,0 12.47759,22.79358 15.51755,35.27419 6.74669,27.69865 24.45833,64.13418 5.41963,85.35354 -28.74158,32.03359 -100.27917,37.85201 -128.98295,5.78454 -16.05853,-17.94037 3.26025,-48.62468 11.1802,-71.36249 6.85399,-19.67747 30.78578,-54.40455 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z"/><path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" id="path1447" class="shadow" d="m 318.00391,325.73755 c 0.1662,-0.0684 8.0406,-11.7618 5.42961,-17.15483 -0.9984,-4.15898 -9.59497,-7.10148 -9.61975,-7.06183 0.0569,0.0797 10.47717,-4.52675 10.06153,-9.41841 -0.0685,-4.77393 -10.54117,-8.39289 -10.58006,-8.30214 -0.0526,0.16819 10.25564,-4.52608 11.12513,-10.21762 1.02638,-5.3714 -8.5072,-13.50589 -8.61202,-13.47969 -0.0119,0.17826 11.09595,-3.22828 11.88153,-8.72903 1.155,-4.5223 -7.71736,-10.81305 -7.91075,-10.7647 -0.18835,0.18835 9.25517,-0.42186 11.47755,-4.98693 1.84787,-4.00611 -4.81901,-11.58557 -4.96824,-11.52961 -0.01,0.12732 7.55069,-1.24244 9.10324,-4.91711 1.82315,-3.08035 -1.62605,-9.99671 -1.71582,-9.98549 0.0825,0.0367 5.16407,-1.94852 5.15369,-4.3377 0.60501,-1.54914 -2.18836,-3.99091 -2.28908,-3.97832 0.0908,0.10897 4.0678,-0.15226 4.79507,-1.82593 1.06341,-1.36941 -0.21991,-4.6138 -0.31935,-4.58065 0,0.11423 4.17524,-0.0769 5.19792,-1.9502 0.99558,-1.00322 -0.0412,-3.85994 -0.15909,-3.89362 0.0263,0.10519 4.18456,0.34981 5.20584,-1.40388 1.11122,-1.15275 0.14014,-4.38532 0.077,-4.38532 0.0633,0.0633 4.12591,-0.0432 4.83864,-1.69189 0.81726,-0.94694 -0.16572,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c -0.0716,-0.0398 -3.52027,0.54293 -4.22866,1.88506 -0.85877,0.77377 -0.79145,2.93259 -0.6882,2.93259 0.0551,-0.16527 -3.13346,0.0301 -4.19674,1.3135 -0.99275,0.92921 -0.83191,3.5722 -0.81211,3.56824 -0.2917,-0.11219 -3.72836,0.0448 -4.59896,1.27221 -1.38692,1.22213 -1.40211,4.98076 -1.29971,4.98076 0,-0.0543 -3.63043,0.28826 -4.68112,1.63345 -1.39037,1.63663 -0.95682,5.95733 -0.84379,5.86314 -0.0714,-0.0572 -3.50997,1.34812 -4.13281,2.97367 -0.99363,1.8097 0.0827,5.8256 0.1485,5.78611 0.0286,-0.0107 -3.47409,-2.58144 -5.81788,-2.29945 -2.03561,0.078 -5.00819,3.04217 -4.98536,3.065 0.0894,-0.0383 -3.77398,-2.28548 -6.07463,-1.93646 -2.19936,0.16817 -5.28843,3.26531 -5.24625,3.29062 0.0577,-0.0247 -3.6596,-2.98608 -6.11743,-2.8254 -2.62706,-0.17114 -6.42609,3.37458 -6.37214,3.43623 0.0764,-0.0305 -2.5983,-3.62398 -4.74516,-3.86523 -2.3968,-0.5135 -6.56096,2.67213 -6.54041,2.73377 0.0278,0 -1.86631,-3.79743 -3.84319,-4.39294 -2.1406,-0.8914 -7.08051,1.65543 -7.08312,1.65775 0,0 4.17132,-0.88265 4.32598,-2.62631 0.28337,-1.00061 -1.78574,-2.2873 -1.82858,-2.27124 0.021,0.0349 5.21539,-1.03939 5.23366,-3.24468 0.28059,-1.11065 -2.28712,-1.83524 -2.3211,-1.81583 0.0194,0.0427 4.09634,-0.0764 4.41853,-1.78242 0.37085,-0.98469 -1.73184,-2.21574 -1.77223,-2.1933 0.008,0.0219 2.8764,-0.90334 3.31722,-2.28129 0.32598,-0.62431 -0.37809,-1.9308 -0.43513,-1.92265 l -4.69222,0.72413 c 0.0237,-0.0426 -1.79765,0.46492 -2.63183,1.51492 -0.69936,0.46779 -0.96174,2.2027 -0.94371,2.21712 0.007,-0.0358 -1.88989,0.10067 -2.44519,0.95669 -0.61207,0.66093 -0.26769,2.37608 -0.20536,2.36361 0.012,-0.0419 -2.55183,0.42329 -3.2251,1.69596 -0.77861,1.04606 0.0592,3.62639 0.12616,3.62639 0.0513,-0.094 -2.12186,0.38382 -2.86561,1.6675 -0.82026,1.16209 -0.31411,3.83168 -0.0897,3.71947 -0.2087,-0.14907 -4.50311,2.782 -5.0707,5.30267 -1.45304,2.7823 -0.4393,8.68853 -0.14431,8.57791 -0.11184,-0.19573 -5.61323,4.13251 -6.54891,7.662 -2.01339,4.22462 -0.20242,12.80349 0.12218,12.65594 -0.27988,-0.19992 -6.69779,4.93798 -6.78396,8.84863 -0.72683,3.97856 4.74341,10.55407 4.9951,10.4462 -0.19084,-0.12723 -4.51715,7.94817 -3.68091,12.43969 0.0674,4.53539 6.50495,11.45785 6.7561,11.37413 -0.19797,0.054 -3.09154,6.28983 -2.56163,9.33402 -0.61864,3.0265 1.44599,8.78728 1.66753,8.76266 -0.22155,-0.0738 -2.26451,6.97373 -1.5863,10.76219 -0.2869,2.90595 3.05181,8.88695 3.17474,8.83426 l 0.60329,6.29895 67.29376,-3.51585 z"/><path d="m 318.00391,325.73755 c 0,0 7.29076,-11.45304 5.42961,-17.15483 -1.23433,-3.78149 -9.61975,-7.06183 -9.61975,-7.06183 0,0 10.26143,-4.82879 10.06153,-9.41841 -0.19507,-4.4786 -10.58006,-8.30214 -10.58006,-8.30214 0,0 10.47399,-5.22482 11.12513,-10.21762 0.68954,-5.28719 -8.61202,-13.47969 -8.61202,-13.47969 0,0 11.1388,-3.87102 11.88153,-8.72903 0.67298,-4.4018 -7.91075,-10.7647 -7.91075,-10.7647 0,0 9.94184,-1.10853 11.47755,-4.98693 1.54066,-3.89091 -4.96824,-11.52961 -4.96824,-11.52961 0,0 7.59479,-1.81571 9.10324,-4.91711 1.47717,-3.0371 -1.71582,-9.98549 -1.71582,-9.98549 0,0 4.76382,-2.12641 5.15369,-4.3377 0.26565,-1.50672 -2.28908,-3.97832 -2.28908,-3.97832 0,0 3.87403,-0.38479 4.79507,-1.82593 0.82425,-1.28969 -0.31935,-4.58065 -0.31935,-4.58065 0,0 4.17524,-0.40787 5.19792,-1.9502 0.71783,-1.08258 -0.15909,-3.89362 -0.15909,-3.89362 0,0 4.10041,0.0132 5.20584,-1.40388 0.89923,-1.15275 0.077,-4.38532 0.077,-4.38532 0,0 3.91403,-0.25505 4.83864,-1.69189 0.60936,-0.94694 -0.30643,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c 0,0 -3.24515,0.69578 -4.22866,1.88506 -0.6399,0.77377 -0.6882,2.93259 -0.6882,2.93259 0,0 -3.20228,0.23661 -4.19674,1.3135 -0.82757,0.89617 -0.81211,3.56824 -0.81211,3.56824 0,0 -3.48252,0.13932 -4.59896,1.27221 -1.20438,1.22213 -1.29971,4.98076 -1.29971,4.98076 0,0 -3.63043,0.3578 -4.68112,1.63345 -1.25533,1.5241 -0.84379,5.86314 -0.84379,5.86314 0,0 -3.37828,1.45347 -4.13281,2.97367 -0.85776,1.72818 0.1485,5.78611 0.1485,5.78611 0,0 -3.74057,-2.48151 -5.81788,-2.29945 -1.94328,0.17031 -4.98536,3.065 -4.98536,3.065 0,0 -3.96616,-2.20312 -6.07463,-1.93646 -2.04797,0.25901 -5.24625,3.29062 -5.24625,3.29062 0,0 -3.87237,-2.89489 -6.11743,-2.8254 -2.41204,0.0746 -6.37214,3.43623 -6.37214,3.43623 0,0 -2.72617,-3.57283 -4.74516,-3.86523 -2.33852,-0.33867 -6.54041,2.73377 -6.54041,2.73377 0,0 -1.99097,-3.79743 -3.84319,-4.39294 -2.30846,-0.74219 -7.08312,1.65775 -7.08312,1.65775 0,0 4.03449,-0.96475 4.32598,-2.62631 0.16794,-0.95733 -1.82858,-2.27124 -1.82858,-2.27124 0,0 5.12196,-1.19511 5.23366,-3.24468 0.0535,-0.98088 -2.3211,-1.81583 -2.3211,-1.81583 0,0 4.01965,-0.24516 4.41853,-1.78242 0.23607,-0.90981 -1.77223,-2.1933 -1.77223,-2.1933 0,0 2.82832,-1.03154 3.31722,-2.28129 0.23939,-0.61194 -0.43513,-1.92265 -0.43513,-1.92265 l -4.69222,0.72413 c 0,0 -1.96023,0.75757 -2.63183,1.51492 -0.53291,0.60095 -0.94371,2.21712 -0.94371,2.21712 0,0 -1.92093,0.25586 -2.44519,0.95669 -0.47372,0.63326 -0.20536,2.36361 -0.20536,2.36361 0,0 -2.61532,0.6455 -3.2251,1.69596 -0.60723,1.04606 0.12616,3.62639 0.12616,3.62639 0,0 -2.30315,0.71618 -2.86561,1.6675 -0.63118,1.06755 -0.0897,3.71947 -0.0897,3.71947 0,0 -4.14105,3.04061 -5.0707,5.30267 -1.08704,2.64505 -0.14431,8.57791 -0.14431,8.57791 0,0 -5.40066,4.5045 -6.54891,7.662 -1.44183,3.96482 0.12218,12.65594 0.12218,12.65594 0,0 -6.39804,5.15209 -6.78396,8.84863 -0.40078,3.83882 4.9951,10.4462 4.9951,10.4462 0,0 -4.21638,8.14869 -3.68091,12.43969 0.54606,4.37584 6.7561,11.37413 6.7561,11.37413 0,0 -2.43294,6.11021 -2.56163,9.33402 -0.1186,2.97094 1.66753,8.76266 1.66753,8.76266 0,0 -1.76447,7.14041 -1.5863,10.76219 0.13408,2.72553 3.17474,8.83426 3.17474,8.83426 l 0.60329,6.29895 67.29376,-3.51585 z" id="path1449" sodipodi:nodetypes="cacacacacacacacacacacaccacacacacacacacacacacacacacaccacacacacacacacacacscccc" style="display:inline;opacity:1;fill:#ffffff;stroke-width:1.05999994"/><path d="m 315.90803,320.84344 c -2.49311,-12.85797 -3.70847,-24.16935 -4.44214,-39.5634 4.29028,-30.83464 3.35841,-41.06705 21.27809,-72.37945 1.06744,-9.14922 11.65832,-19.70221 22.34434,-31.15738 -2.13976,-0.51067 -4.28423,-0.96012 -6.46482,-0.94005 -11.40402,9.3964 -21.91679,21.41172 -24.91403,32.79713 -21.89276,0.52722 -32.81714,6.37507 -58.48416,-1.54946 3.84727,-8.39874 5.10763,-9.47909 10.78801,-18.40031 -1.05734,0.0265 -2.02266,-0.0784 -3.63549,0.74174 -6.9411,6.67026 -8.04042,9.50969 -12.35955,17.95063 -2.80066,6.10293 -4.61886,11.91112 -5.76436,17.5175 -10.39962,25.33864 -5.9915,43.15772 -3.53361,61.61413 -1.4792,13.13023 -0.30041,25.062 1.70304,36.68579 18.49356,5.86562 41.60515,-0.33523 63.48468,-3.31684 z" class="shadow" id="path1451" sodipodi:nodetypes="ccccccccccccccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccccccccccccc" id="path1453" d="m 315.90803,320.84344 c -2.81213,-13.35423 -5.31598,-26.66992 -4.44214,-39.5634 3.50974,-30.99075 1.84762,-41.36921 21.27809,-72.37945 0.93083,-9.35414 10.94077,-20.77854 22.34434,-31.15738 l -6.46482,-0.94005 c -9.53791,9.58301 -21.68892,21.43451 -24.91403,32.79713 -21.76753,0.94464 -32.29254,8.12373 -58.48416,-1.54946 3.69598,-8.48126 4.421,-9.85362 10.78801,-18.40031 l -3.63549,0.74174 c -6.53986,6.87088 -7.78622,9.63679 -12.35955,17.95063 l -5.76436,17.5175 c -8.96086,25.20784 -5.79542,43.13989 -3.53361,61.61413 -0.5132,12.61008 0.22818,24.77737 1.70304,36.68579 18.49356,5.86562 41.60515,-0.33523 63.48468,-3.31684 z"/><path d="m 349.13308,317.13846 1.58005,7.52419 c -34.68921,1.29057 -82.49669,19.68152 -104.48265,5.19789 l 3.86668,-6.97285 c 33.13895,8.49273 66.33122,-7.2118 99.03592,-5.74923 z" class="shadow" id="path1455" sodipodi:nodetypes="ccccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1457" d="m 349.13308,317.13846 1.58005,7.52419 c -35.36449,0.47083 -83.91047,19.07561 -104.48265,5.19789 l 3.86668,-6.97285 c 30.76253,9.95515 65.75714,-6.08342 99.03592,-5.74923 z"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 360.49161,241.99223 c 0.15713,0.0673 1.09091,14.07542 -9.45227,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 25.42564,15.0158 37.30125,45.91894 44.62042,72.68694 18.09394,39.28852 18.07129,125.05958 17.21147,125.13775 -70.8552,-22.32954 -164.13155,30.03525 -232.75934,-4.27387 -0.19735,-0.0197 4.1265,-76.03991 20.06445,-110.96586 9.2798,-30.93655 35.4953,-60.02101 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -5.47524,-7.9954 -6.36742,-21.28882 -5.88641,-30.59601 -4.05722,-36.73329 30.65665,-66.66209 31.00076,-66.66209 -0.008,-0.0706 2.55382,-1.8267 8.72305,-2.20036 -36.01659,24.46625 -42.13809,58.83696 -39.24643,69.07094 12.14629,3.82492 34.25776,3.67112 87.23879,-1.85132 1.92836,0 6.15865,-6.88279 6.15865,-10.00465 2.71491,-24.25648 8.03999,-35.96111 9.4316,-68.9692 4.553,0.39299 4.95014,-0.2397 9.68823,1.7253 -1.04791,6.23371 0.31824,53.97628 4.75601,64.31785 z" id="path2461" sodipodi:nodetypes="cccccccccccccccccccc" style="display:inline;opacity:1;fill:#000000"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1445-0" d="m 348.47508,176.56688 c 6.23488,24.59751 4.25162,51.07322 4.99933,76.19448 -42.11798,9.03479 -85.37513,19.71113 -110.63496,3.91432 -1.95782,-18.39591 8.20167,-47.39868 32.21961,-67.27394 42.97585,-9.32822 52.0825,-17.54406 73.41602,-12.83486 z"/><path style="display:inline;opacity:1;fill:#333333" sodipodi:nodetypes="ccccaccaccccccccccc" id="path1437" d="m 360.49161,241.99223 c 0,0 0.18968,13.68918 -9.45227,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 23.94861,15.0158 35.04244,45.91894 44.62042,72.68694 14.18515,39.64386 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.88371,-75.76419 20.06445,-110.96586 11.46675,-30.62413 36.51387,-59.8755 50.2411,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -4.94422,-8.06178 -5.57616,-21.38773 -5.88641,-30.59601 -3.92817,-36.49728 30.67927,-66.58172 31.00076,-66.66209 0,0 2.59939,-1.41654 8.72305,-2.20036 -36.76659,20.96625 -42.13809,58.83696 -39.24643,69.07094 24.85388,-0.61208 66.61629,9.56619 108.02244,-11.10597 1.4423,-26.38913 0.15792,-38.14578 -5.1934,-69.7192 4.57973,0.53998 5.03464,0.22507 9.68823,1.7253 -1.36935,6.31407 -0.62585,54.2123 4.75601,64.31785 z"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="cccc" id="path1445-1-7" d="m 306.1115,174.72723 3.10935,13.7728 c -3.58883,0.28907 -4.19632,0.25785 -6.36265,-0.32791 1.00219,-12.04918 3.2533,-13.44489 3.2533,-13.44489 z"/><path d="m 300.08667,172.57237 c -2.03237,3.63344 -2.40946,7.63281 -3.39194,11.16176 -0.11097,2.48059 4.02564,5.20338 6.30994,6.62117 -0.11352,-4.35414 2.20104,-11.31333 2.96606,-15.5101 -2.0837,-0.64114 -4.38743,-1.29276 -5.88406,-2.27283 z" id="path2554" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#000000"/><path d="m 333.1721,164.81697 c 3.12234,3.33135 7.8525,6.78145 9.92028,10.58149 -7.93754,9.36149 -23.35479,13.30607 -33.9727,15.90151 -0.57861,-4.86704 -2.13199,-11.9051 -3.13395,-16.71185 8.60186,-2.43964 22.03678,-4.58024 27.18637,-9.77115 z" id="path2552" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#000000"/><path sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc" id="path1439" class="shadow" d="m 318.99599,327.6899 c 0.0644,-0.16109 8.65228,0.56099 9.61497,4.49727 1.3512,2.8737 -3.34911,7.53093 -3.47797,7.44163 -0.0771,-0.15425 8.84757,-0.64052 10.11034,3.2164 1.02068,3.07865 -5.38909,6.92467 -5.44926,6.82438 0.23172,-0.20855 10.82387,0.0205 11.58201,4.44743 1.38783,4.11242 -6.22864,10.32292 -6.27664,10.17893 0.21991,-0.13745 8.43834,1.21248 9.01294,4.71968 1.2288,3.81779 -4.96917,9.64522 -5.03752,9.48573 0.21257,-0.13285 10.58372,2.34604 11.07464,6.85972 1.25518,3.94064 -6.04041,9.4479 -6.21547,9.33849 0.13515,-0.11263 11.08656,2.58112 11.93526,7.39163 1.71015,4.99964 -7.00879,13.22784 -7.21484,13.15057 0.0942,-0.0157 9.93077,7.19801 9.34405,12.44107 0.10908,5.19779 -9.69913,10.99968 -9.76212,10.93669 0.18533,-0.0824 11.15376,9.91714 7.63971,14.84338 -2.61785,4.65478 -15.08597,-0.32502 -15.15239,-0.59071 0.33431,-0.16715 5.3952,17.15578 -0.85713,21.87287 -6.50245,5.00033 -23.38239,-4.72464 -23.02204,-4.94986 0.22183,0.0246 -1.66191,12.7012 -7.19718,14.88791 -5.5687,2.47972 -16.74854,-6.17807 -16.74854,-6.48015 0.21345,0.4269 -5.07562,9.91879 -10.03403,10.20801 -5.55297,0.42338 -12.95531,-7.17693 -12.56583,-7.44005 0.36032,0.1488 -7.16402,7.27921 -12.8887,6.95808 -4.83568,-0.14563 -10.74277,-8.48059 -10.58851,-8.67342 0.22444,0.19238 -9.22718,7.16136 -14.53666,4.80368 -4.70766,-1.85637 -6.31717,-11.27134 -6.13011,-11.24256 -0.0365,0.3281 -13.14523,5.45055 -17.62156,1.26353 -4.51529,-3.20565 -1.84094,-15.18727 -1.6627,-15.20509 -0.17088,0.0854 -9.60707,-4.8907 -10.3417,-9.69215 -1.57318,-4.62814 3.84701,-13.41306 4.19582,-13.29679 -0.18367,0.0459 -4.13228,-7.96382 -2.49807,-11.98279 0.67111,-3.66494 7.4073,-7.52683 7.53174,-7.42313 -0.10889,0.0545 -2.35187,-7.48617 -0.57345,-11.08065 0.97955,-3.46808 7.81374,-7.23036 7.98116,-7.15861 -0.16474,0.0412 -1.76219,-6.06944 -0.0618,-8.87421 0.86706,-2.57827 5.32018,-4.74225 5.36859,-4.54861 -0.31509,0.0788 -1.63297,-5.0224 -0.33716,-7.38269 1.06746,-2.94953 5.90428,-5.607 5.87412,-5.30544 -0.0593,0 0.14909,-4.63491 1.73435,-6.67977 1.09199,-2.83818 5.23059,-6.49208 5.30213,-6.32515 -0.13193,0.0495 1.90625,-6.4612 4.21952,-9.6367 1.30133,-2.92237 6.34678,-7.9651 6.48509,-7.9651 -0.0721,0.009 1.17726,-4.6058 3.03344,-6.74429 1.47439,-2.92429 5.62888,-6.48189 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z"/><path d="m 318.99599,327.6899 c 0,0 8.40821,1.17117 9.61497,4.49727 0.93385,2.57392 -3.47797,7.44163 -3.47797,7.44163 0,0 9.08388,-0.1679 10.11034,3.2164 0.84491,2.78571 -5.44926,6.82438 -5.44926,6.82438 0,0 10.25836,0.52946 11.58201,4.44743 1.27585,3.77649 -6.27664,10.17893 -6.27664,10.17893 0,0 8.01039,1.47995 9.01294,4.71968 1.05837,3.42011 -5.03752,9.48573 -5.03752,9.48573 0,0 10.15037,2.61688 11.07464,6.85972 0.7959,3.65359 -6.21547,9.33849 -6.21547,9.33849 0,0 10.74466,2.86604 11.93526,7.39163 1.2721,4.83537 -7.21484,13.15057 -7.21484,13.15057 0,0 9.56319,7.25927 9.34405,12.44107 -0.20647,4.88224 -9.76212,10.93669 -9.76212,10.93669 0,0 10.62954,10.15013 7.63971,14.84338 -2.71578,4.26308 -15.15239,-0.59071 -15.15239,-0.59071 0,0 4.90743,17.39967 -0.85713,21.87287 -6.20132,4.81212 -23.02204,-4.94986 -23.02204,-4.94986 0,0 -2.06947,12.86558 -7.19718,14.88791 -5.5687,2.19626 -16.74854,-6.48015 -16.74854,-6.48015 0,0 -5.30284,9.59088 -10.03403,10.20801 -4.82685,0.62961 -12.56583,-7.44005 -12.56583,-7.44005 0,0 -8.02869,7.4243 -12.8887,6.95808 -4.54161,-0.43568 -10.58851,-8.67342 -10.58851,-8.67342 0,0 -9.79032,6.67867 -14.53666,4.80368 -3.96987,-1.56825 -6.13011,-11.24256 -6.13011,-11.24256 0,0 -13.0991,5.03539 -17.62156,1.26353 -3.9155,-3.26563 -1.6627,-15.20509 -1.6627,-15.20509 0,0 -9.14506,-5.1217 -10.3417,-9.69215 -1.17719,-4.49614 4.19582,-13.29679 4.19582,-13.29679 0,0 -3.67873,-8.07721 -2.49807,-11.98279 1.02002,-3.37418 7.53174,-7.42313 7.53174,-7.42313 0,0 -1.99319,-7.66551 -0.57345,-11.08065 1.37185,-3.29995 7.98116,-7.15861 7.98116,-7.15861 0,0 -1.29621,-6.18593 -0.0618,-8.87421 0.97875,-2.13151 5.36859,-4.54861 5.36859,-4.54861 0,0 -1.28579,-5.1092 -0.33716,-7.38269 1.01601,-2.43499 5.87412,-5.30544 5.87412,-5.30544 0,0 0.68057,-4.63491 1.73435,-6.67977 1.26026,-2.44554 5.30213,-6.32515 5.30213,-6.32515 0,0 2.39255,-6.64356 4.21952,-9.6367 1.78378,-2.92237 6.48509,-7.9651 6.48509,-7.9651 0,0 1.69989,-4.67113 3.03344,-6.74429 1.54055,-2.39498 5.63667,-6.41957 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" id="path1441" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacaccc" style="display:inline;opacity:1;fill:#ffffff"/><path d="m 317.3515,327.6899 c 0.22023,-0.0832 13.95193,22.40956 15.51755,35.27419 7.4167,28.20029 26.15374,64.2233 5.41963,85.35354 -32.97758,33.60762 -95.87299,40.63263 -128.98295,5.78454 -16.72652,-17.60459 0.50361,-47.60411 11.1802,-71.36249 6.48324,-18.97334 29.03428,-54.79411 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" class="shadow" id="path1443" sodipodi:nodetypes="ccssccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="caaaacc" id="path1445" d="m 317.3515,327.6899 c 0,0 12.47759,22.79358 15.51755,35.27419 6.74669,27.69865 24.45833,64.13418 5.41963,85.35354 -28.74158,32.03359 -100.27917,37.85201 -128.98295,5.78454 -16.05853,-17.94037 3.26025,-48.62468 11.1802,-71.36249 6.85399,-19.67747 30.78578,-54.40455 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z"/><path d="m 351.38308,281.76346 c -2.00111,14.61346 -1.45571,28.77753 -0.66995,42.89919 -34.68921,1.29057 -82.49669,19.68152 -104.48265,5.19789 0.75356,-14.0727 1.75763,-29.9734 1.30418,-44.34785 33.13895,8.49273 71.14372,-5.2118 103.84842,-3.74923 z" class="shadow" id="path1455" sodipodi:nodetypes="ccccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1457" d="m 351.38308,281.76346 c -2.7968,14.29973 -1.98265,28.59946 -0.66995,42.89919 -35.36449,0.47083 -83.91047,19.07561 -104.48265,5.19789 1.05318,-14.11595 2.82363,-30.2319 1.30418,-44.34785 30.76253,9.95515 70.56964,-4.08342 103.84842,-3.74923 z"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1445-1" d="m 333.1721,164.81697 9.92028,10.58149 c -8.50147,8.95868 -23.58459,13.14193 -33.9727,15.90151 -0.35332,-4.82062 -1.60248,-11.89123 -3.13395,-16.71185 8.60186,-1.844 22.03678,-4.11883 27.18637,-9.77115 z"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1445-1-4" d="m 300.08667,172.57237 -3.39194,11.16176 c 0.27347,2.33273 4.1548,5.1537 6.30994,6.62117 -0.5339,-4.37642 1.60936,-11.42013 2.96606,-15.5101 -2.28233,-0.52764 -4.46978,-1.2457 -5.88406,-2.27283 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Outfit_Maid_Unnatural.tw b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Unnatural.tw index 713952e5be076bb1662c767edfff232ab6c73e16..33c5a23a2b0abb45ab041c98f1323548e4bdb797 100644 --- a/src/art/vector_revamp/layers/Torso_Outfit_Maid_Unnatural.tw +++ b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Unnatural.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Torso_Outfit_Maid_Unnatural [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path class="shadow" sodipodi:nodetypes="cccccccccccccc" id="path1396" d="m 359.32506,223.68315 c 0,0 0.81285,3.715 1.66655,14.80908 0.60333,0.24133 -10.14395,31.21625 -26.92284,39.42747 -2.60991,13.16972 -1.19,40.93835 -1.62633,40.86563 0,0 5.16414,4.87801 6.3654,7.30426 25.41094,14.16919 46.24345,42.44329 56.43292,71.31194 19.15995,38.96952 18.59152,124.9406 17.21147,125.13775 -69.91487,-25.57972 -163.41142,29.15618 -232.75934,-4.27387 -0.6629,0 4.43678,-75.76419 20.06445,-110.96586 8.85721,-31.27651 38.93399,-60.37533 53.95341,-84.43678 -5.31056,-13.48953 -3.26785,-24.95459 -1.63624,-35.7452 -10.20434,-15.27731 -12.82373,-29.50621 -9.71044,-44.42473 1.68036,-12.73855 7.18619,-19.52847 7.03163,-19.62506 44.12648,12.49268 109.92936,0.61537 109.92936,0.61537 z"/><path d="m 359.32506,223.68315 c 0,0 0.81285,3.715 1.66655,14.80908 0,0 -11.18209,30.80099 -26.92284,39.42747 -4.05461,12.92894 -1.62633,40.86563 -1.62633,40.86563 0,0 5.16414,4.87801 6.3654,7.30426 23.94861,15.0158 44.54286,43.42784 56.43292,71.31194 16.51533,38.7311 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.34105,-75.97218 20.06445,-110.96586 12.19453,-31.09516 40.22618,-60.05228 53.95341,-84.43678 -4.38752,-13.39723 -2.52851,-24.88066 -1.63624,-35.7452 -9.41353,-15.3492 -10.68632,-29.29831 -9.71044,-44.42473 0.44738,-6.9345 7.03163,-19.62506 7.03163,-19.62506 44.12648,12.49268 109.92936,0.61537 109.92936,0.61537 z" id="path1398" sodipodi:nodetypes="cccccaccaccacc" style="display:inline;opacity:1;fill:#333333"/><path d="m 318.99599,327.6899 c 0.0644,-0.16109 8.65228,0.56099 9.61497,4.49727 1.3512,2.8737 -3.34911,7.53093 -3.47797,7.44163 -0.0771,-0.15425 8.84757,-0.64052 10.11034,3.2164 1.02068,3.07865 -5.38909,6.92467 -5.44926,6.82438 0.23172,-0.20855 10.82387,0.0205 11.58201,4.44743 1.38783,4.11242 -6.22864,10.32292 -6.27664,10.17893 0.21991,-0.13745 8.43834,1.21248 9.01294,4.71968 1.2288,3.81779 -4.96917,9.64522 -5.03752,9.48573 0.21257,-0.13285 10.58372,2.34604 11.07464,6.85972 1.25518,3.94064 -6.04041,9.4479 -6.21547,9.33849 0.13515,-0.11263 11.08656,2.58112 11.93526,7.39163 1.71015,4.99964 -7.00879,13.22784 -7.21484,13.15057 0.0942,-0.0157 9.93077,7.19801 9.34405,12.44107 0.10908,5.19779 -9.69913,10.99968 -9.76212,10.93669 0.18533,-0.0824 11.15376,9.91714 7.63971,14.84338 -2.61785,4.65478 -15.08597,-0.32502 -15.15239,-0.59071 0.33431,-0.16715 5.3952,17.15578 -0.85713,21.87287 -6.50245,5.00033 -23.38239,-4.72464 -23.02204,-4.94986 0.22183,0.0246 -1.66191,12.7012 -7.19718,14.88791 -5.5687,2.47972 -16.74854,-6.17807 -16.74854,-6.48015 0.21345,0.4269 -5.07562,9.91879 -10.03403,10.20801 -5.55297,0.42338 -12.95531,-7.17693 -12.56583,-7.44005 0.36032,0.1488 -7.16402,7.27921 -12.8887,6.95808 -4.83568,-0.14563 -10.74277,-8.48059 -10.58851,-8.67342 0.22444,0.19238 -9.22718,7.16136 -14.53666,4.80368 -4.70766,-1.85637 -6.31717,-11.27134 -6.13011,-11.24256 -0.0365,0.3281 -13.14523,5.45055 -17.62156,1.26353 -4.51529,-3.20565 -1.84094,-15.18727 -1.6627,-15.20509 -0.17088,0.0854 -9.60707,-4.8907 -10.3417,-9.69215 -1.57318,-4.62814 3.84701,-13.41306 4.19582,-13.29679 -0.18367,0.0459 -4.13228,-7.96382 -2.49807,-11.98279 0.67111,-3.66494 7.4073,-7.52683 7.53174,-7.42313 -0.10889,0.0545 -2.35187,-7.48617 -0.57345,-11.08065 0.97955,-3.46808 7.81374,-7.23036 7.98116,-7.15861 -0.16474,0.0412 -1.76219,-6.06944 -0.0618,-8.87421 0.86706,-2.57827 5.32018,-4.74225 5.36859,-4.54861 -0.31509,0.0788 -1.63297,-5.0224 -0.33716,-7.38269 1.06746,-2.94953 5.90428,-5.607 5.87412,-5.30544 -0.0593,0 0.14909,-4.63491 1.73435,-6.67977 1.09199,-2.83818 5.23059,-6.49208 5.30213,-6.32515 -0.13193,0.0495 1.90625,-6.4612 4.21952,-9.6367 1.30133,-2.92237 6.34678,-7.9651 6.48509,-7.9651 -0.0721,0.009 1.17726,-4.6058 3.03344,-6.74429 1.47439,-2.92429 5.62888,-6.48189 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" class="shadow" id="path1400" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacaccc" id="path1402" d="m 318.99599,327.6899 c 0,0 8.40821,1.17117 9.61497,4.49727 0.93385,2.57392 -3.47797,7.44163 -3.47797,7.44163 0,0 9.08388,-0.1679 10.11034,3.2164 0.84491,2.78571 -5.44926,6.82438 -5.44926,6.82438 0,0 10.25836,0.52946 11.58201,4.44743 1.27585,3.77649 -6.27664,10.17893 -6.27664,10.17893 0,0 8.01039,1.47995 9.01294,4.71968 1.05837,3.42011 -5.03752,9.48573 -5.03752,9.48573 0,0 10.15037,2.61688 11.07464,6.85972 0.7959,3.65359 -6.21547,9.33849 -6.21547,9.33849 0,0 10.74466,2.86604 11.93526,7.39163 1.2721,4.83537 -7.21484,13.15057 -7.21484,13.15057 0,0 9.56319,7.25927 9.34405,12.44107 -0.20647,4.88224 -9.76212,10.93669 -9.76212,10.93669 0,0 10.62954,10.15013 7.63971,14.84338 -2.71578,4.26308 -15.15239,-0.59071 -15.15239,-0.59071 0,0 4.90743,17.39967 -0.85713,21.87287 -6.20132,4.81212 -23.02204,-4.94986 -23.02204,-4.94986 0,0 -2.06947,12.86558 -7.19718,14.88791 -5.5687,2.19626 -16.74854,-6.48015 -16.74854,-6.48015 0,0 -5.30284,9.59088 -10.03403,10.20801 -4.82685,0.62961 -12.56583,-7.44005 -12.56583,-7.44005 0,0 -8.02869,7.4243 -12.8887,6.95808 -4.54161,-0.43568 -10.58851,-8.67342 -10.58851,-8.67342 0,0 -9.79032,6.67867 -14.53666,4.80368 -3.96987,-1.56825 -6.13011,-11.24256 -6.13011,-11.24256 0,0 -13.0991,5.03539 -17.62156,1.26353 -3.9155,-3.26563 -1.6627,-15.20509 -1.6627,-15.20509 0,0 -9.14506,-5.1217 -10.3417,-9.69215 -1.17719,-4.49614 4.19582,-13.29679 4.19582,-13.29679 0,0 -3.67873,-8.07721 -2.49807,-11.98279 1.02002,-3.37418 7.53174,-7.42313 7.53174,-7.42313 0,0 -1.99319,-7.66551 -0.57345,-11.08065 1.37185,-3.29995 7.98116,-7.15861 7.98116,-7.15861 0,0 -1.29621,-6.18593 -0.0618,-8.87421 0.97875,-2.13151 5.36859,-4.54861 5.36859,-4.54861 0,0 -1.28579,-5.1092 -0.33716,-7.38269 1.01601,-2.43499 5.87412,-5.30544 5.87412,-5.30544 0,0 0.68057,-4.63491 1.73435,-6.67977 1.26026,-2.44554 5.30213,-6.32515 5.30213,-6.32515 0,0 2.39255,-6.64356 4.21952,-9.6367 1.78378,-2.92237 6.48509,-7.9651 6.48509,-7.9651 0,0 1.69989,-4.67113 3.03344,-6.74429 1.54055,-2.39498 5.63667,-6.41957 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z"/><path sodipodi:nodetypes="ccssccc" id="path1404" class="shadow" d="m 317.3515,327.6899 c 0.22023,-0.0832 13.95193,22.40956 15.51755,35.27419 7.4167,28.20029 26.15374,64.2233 5.41963,85.35354 -32.97758,33.60762 -95.87299,40.63263 -128.98295,5.78454 -16.72652,-17.60459 0.50361,-47.60411 11.1802,-71.36249 6.48324,-18.97334 29.03428,-54.79411 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z"/><path d="m 317.3515,327.6899 c 0,0 12.47759,22.79358 15.51755,35.27419 6.74669,27.69865 24.45833,64.13418 5.41963,85.35354 -28.74158,32.03359 -100.27917,37.85201 -128.98295,5.78454 -16.05853,-17.94037 3.26025,-48.62468 11.1802,-71.36249 6.85399,-19.67747 30.78578,-54.40455 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" id="path1415" sodipodi:nodetypes="caaaacc" style="display:inline;opacity:1;fill:#ffffff"/><path d="m 318.00391,325.73755 c 0.1662,-0.0684 8.0406,-11.7618 5.42961,-17.15483 -0.9984,-4.15898 -9.59497,-7.10148 -9.61975,-7.06183 0.0569,0.0797 10.47717,-4.52675 10.06153,-9.41841 -0.0685,-4.77393 -10.54117,-8.39289 -10.58006,-8.30214 -0.0526,0.16819 10.25564,-4.52608 11.12513,-10.21762 1.02638,-5.3714 -8.5072,-13.50589 -8.61202,-13.47969 -0.0119,0.17826 11.09595,-3.22828 11.88153,-8.72903 1.155,-4.5223 -7.71736,-10.81305 -7.91075,-10.7647 -0.18835,0.18835 9.25517,-0.42186 11.47755,-4.98693 1.84787,-4.00611 -4.81901,-11.58557 -4.96824,-11.52961 -0.01,0.12732 7.55069,-1.24244 9.10324,-4.91711 1.82315,-3.08035 -1.62605,-9.99671 -1.71582,-9.98549 0.0825,0.0367 5.16407,-1.94852 5.15369,-4.3377 0.60501,-1.54914 -2.18836,-3.99091 -2.28908,-3.97832 0.0908,0.10897 4.0678,-0.15226 4.79507,-1.82593 1.06341,-1.36941 -0.21991,-4.6138 -0.31935,-4.58065 0,0.11423 4.17524,-0.0769 5.19792,-1.9502 0.99558,-1.00322 -0.0412,-3.85994 -0.15909,-3.89362 0.0263,0.10519 4.18456,0.34981 5.20584,-1.40388 1.11122,-1.15275 0.14014,-4.38532 0.077,-4.38532 0.0633,0.0633 4.12591,-0.0432 4.83864,-1.69189 0.81726,-0.94694 -0.16572,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c -0.0716,-0.0398 -3.52027,0.54293 -4.22866,1.88506 -0.85877,0.77377 -0.79145,2.93259 -0.6882,2.93259 0.0551,-0.16527 -3.13346,0.0301 -4.19674,1.3135 -0.99275,0.92921 -0.83191,3.5722 -0.81211,3.56824 -0.2917,-0.11219 -3.72836,0.0448 -4.59896,1.27221 -1.38692,1.22213 -1.40211,4.98076 -1.29971,4.98076 0,-0.0543 -3.63043,0.28826 -4.68112,1.63345 -1.39037,1.63663 -0.95682,5.95733 -0.84379,5.86314 -0.0714,-0.0572 -3.50997,1.34812 -4.13281,2.97367 -0.99363,1.8097 0.0827,5.8256 0.1485,5.78611 0.0286,-0.0107 -3.47409,-2.58144 -5.81788,-2.29945 -2.03561,0.078 -5.00819,3.04217 -4.98536,3.065 0.0894,-0.0383 -3.77398,-2.28548 -6.07463,-1.93646 -2.19936,0.16817 -5.28843,3.26531 -5.24625,3.29062 0.0577,-0.0247 -3.6596,-2.98608 -6.11743,-2.8254 -2.62706,-0.17114 -6.42609,3.37458 -6.37214,3.43623 0.0764,-0.0305 -2.5983,-3.62398 -4.74516,-3.86523 -2.3968,-0.5135 -6.56096,2.67213 -6.54041,2.73377 0.0278,0 -1.86631,-3.79743 -3.84319,-4.39294 -2.1406,-0.8914 -7.08051,1.65543 -7.08312,1.65775 0,0 4.17132,-0.88265 4.32598,-2.62631 0.28337,-1.00061 -1.78574,-2.2873 -1.82858,-2.27124 0.021,0.0349 5.21539,-1.03939 5.23366,-3.24468 0.28059,-1.11065 -2.28712,-1.83524 -2.3211,-1.81583 0.0194,0.0427 4.09634,-0.0764 4.41853,-1.78242 0.37085,-0.98469 -1.73184,-2.21574 -1.77223,-2.1933 0.008,0.0219 2.8764,-0.90334 3.31722,-2.28129 0.32598,-0.62431 -0.37809,-1.9308 -0.43513,-1.92265 l -4.69222,0.72413 c 0.0237,-0.0426 -1.79765,0.46492 -2.63183,1.51492 -0.69936,0.46779 -0.96174,2.2027 -0.94371,2.21712 0.007,-0.0358 -1.88989,0.10067 -2.44519,0.95669 -0.61207,0.66093 -0.26769,2.37608 -0.20536,2.36361 0.012,-0.0419 -2.55183,0.42329 -3.2251,1.69596 -0.77861,1.04606 0.0592,3.62639 0.12616,3.62639 0.0513,-0.094 -2.12186,0.38382 -2.86561,1.6675 -0.82026,1.16209 -0.31411,3.83168 -0.0897,3.71947 -0.2087,-0.14907 -4.50311,2.782 -5.0707,5.30267 -1.45304,2.7823 -0.4393,8.68853 -0.14431,8.57791 -0.11184,-0.19573 -5.61323,4.13251 -6.54891,7.662 -2.01339,4.22462 -0.20242,12.80349 0.12218,12.65594 -0.27988,-0.19992 -6.69779,4.93798 -6.78396,8.84863 -0.72683,3.97856 4.74341,10.55407 4.9951,10.4462 -0.19084,-0.12723 -4.51715,7.94817 -3.68091,12.43969 0.0674,4.53539 6.50495,11.45785 6.7561,11.37413 -0.19797,0.054 -3.09154,6.28983 -2.56163,9.33402 -0.61864,3.0265 1.44599,8.78728 1.66753,8.76266 -0.22155,-0.0738 -2.26451,6.97373 -1.5863,10.76219 -0.2869,2.90595 6.58734,8.62178 6.71027,8.56909 l -2.93224,6.56412 67.29376,-3.51585 z" class="shadow" id="path1417" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/><path style="display:inline;opacity:1;fill:#ffffff;stroke-width:1.05999994" sodipodi:nodetypes="cacacacacacacacacacacaccacacacacacacacacacacacacacaccacacacacacacacacacscccc" id="path1419" d="m 318.00391,325.73755 c 0,0 7.29076,-11.45304 5.42961,-17.15483 -1.23433,-3.78149 -9.61975,-7.06183 -9.61975,-7.06183 0,0 10.26143,-4.82879 10.06153,-9.41841 -0.19507,-4.4786 -10.58006,-8.30214 -10.58006,-8.30214 0,0 10.47399,-5.22482 11.12513,-10.21762 0.68954,-5.28719 -8.61202,-13.47969 -8.61202,-13.47969 0,0 11.1388,-3.87102 11.88153,-8.72903 0.67298,-4.4018 -7.91075,-10.7647 -7.91075,-10.7647 0,0 9.94184,-1.10853 11.47755,-4.98693 1.54066,-3.89091 -4.96824,-11.52961 -4.96824,-11.52961 0,0 7.59479,-1.81571 9.10324,-4.91711 1.47717,-3.0371 -1.71582,-9.98549 -1.71582,-9.98549 0,0 4.76382,-2.12641 5.15369,-4.3377 0.26565,-1.50672 -2.28908,-3.97832 -2.28908,-3.97832 0,0 3.87403,-0.38479 4.79507,-1.82593 0.82425,-1.28969 -0.31935,-4.58065 -0.31935,-4.58065 0,0 4.17524,-0.40787 5.19792,-1.9502 0.71783,-1.08258 -0.15909,-3.89362 -0.15909,-3.89362 0,0 4.10041,0.0132 5.20584,-1.40388 0.89923,-1.15275 0.077,-4.38532 0.077,-4.38532 0,0 3.91403,-0.25505 4.83864,-1.69189 0.60936,-0.94694 -0.30643,-3.36424 -0.30643,-3.36424 l -7.90872,-1.24492 c 0,0 -3.24515,0.69578 -4.22866,1.88506 -0.6399,0.77377 -0.6882,2.93259 -0.6882,2.93259 0,0 -3.20228,0.23661 -4.19674,1.3135 -0.82757,0.89617 -0.81211,3.56824 -0.81211,3.56824 0,0 -3.48252,0.13932 -4.59896,1.27221 -1.20438,1.22213 -1.29971,4.98076 -1.29971,4.98076 0,0 -3.63043,0.3578 -4.68112,1.63345 -1.25533,1.5241 -0.84379,5.86314 -0.84379,5.86314 0,0 -3.37828,1.45347 -4.13281,2.97367 -0.85776,1.72818 0.1485,5.78611 0.1485,5.78611 0,0 -3.74057,-2.48151 -5.81788,-2.29945 -1.94328,0.17031 -4.98536,3.065 -4.98536,3.065 0,0 -3.96616,-2.20312 -6.07463,-1.93646 -2.04797,0.25901 -5.24625,3.29062 -5.24625,3.29062 0,0 -3.87237,-2.89489 -6.11743,-2.8254 -2.41204,0.0746 -6.37214,3.43623 -6.37214,3.43623 0,0 -2.72617,-3.57283 -4.74516,-3.86523 -2.33852,-0.33867 -6.54041,2.73377 -6.54041,2.73377 0,0 -1.99097,-3.79743 -3.84319,-4.39294 -2.30846,-0.74219 -7.08312,1.65775 -7.08312,1.65775 0,0 4.03449,-0.96475 4.32598,-2.62631 0.16794,-0.95733 -1.82858,-2.27124 -1.82858,-2.27124 0,0 5.12196,-1.19511 5.23366,-3.24468 0.0535,-0.98088 -2.3211,-1.81583 -2.3211,-1.81583 0,0 4.01965,-0.24516 4.41853,-1.78242 0.23607,-0.90981 -1.77223,-2.1933 -1.77223,-2.1933 0,0 2.82832,-1.03154 3.31722,-2.28129 0.23939,-0.61194 -0.43513,-1.92265 -0.43513,-1.92265 l -4.69222,0.72413 c 0,0 -1.96023,0.75757 -2.63183,1.51492 -0.53291,0.60095 -0.94371,2.21712 -0.94371,2.21712 0,0 -1.92093,0.25586 -2.44519,0.95669 -0.47372,0.63326 -0.20536,2.36361 -0.20536,2.36361 0,0 -2.61532,0.6455 -3.2251,1.69596 -0.60723,1.04606 0.12616,3.62639 0.12616,3.62639 0,0 -2.30315,0.71618 -2.86561,1.6675 -0.63118,1.06755 -0.0897,3.71947 -0.0897,3.71947 0,0 -4.14105,3.04061 -5.0707,5.30267 -1.08704,2.64505 -0.14431,8.57791 -0.14431,8.57791 0,0 -5.40066,4.5045 -6.54891,7.662 -1.44183,3.96482 0.12218,12.65594 0.12218,12.65594 0,0 -6.39804,5.15209 -6.78396,8.84863 -0.40078,3.83882 4.9951,10.4462 4.9951,10.4462 0,0 -4.21638,8.14869 -3.68091,12.43969 0.54606,4.37584 6.7561,11.37413 6.7561,11.37413 0,0 -2.43294,6.11021 -2.56163,9.33402 -0.1186,2.97094 1.66753,8.76266 1.66753,8.76266 0,0 -1.76447,7.14041 -1.5863,10.76219 0.13408,2.72553 6.71027,8.56909 6.71027,8.56909 l -2.93224,6.56412 67.29376,-3.51585 z"/><path sodipodi:nodetypes="ccccccccccccccc" id="path1421" class="shadow" d="m 315.90803,320.84344 c -2.49311,-12.85797 -3.70847,-24.16935 -4.44214,-39.5634 4.29028,-30.83464 3.35841,-41.06705 21.27809,-72.37945 1.06744,-9.14922 11.65832,-19.70221 22.34434,-31.15738 -2.13976,-0.51067 -4.28423,-0.96012 -6.46482,-0.94005 -11.40402,9.3964 -21.91679,21.41172 -24.91403,32.79713 -21.89276,0.52722 -32.81714,6.37507 -58.48416,-1.54946 3.84727,-8.39874 5.10763,-9.47909 10.78801,-18.40031 -1.05734,0.0265 -2.02266,-0.0784 -3.63549,0.74174 -6.9411,6.67026 -8.04042,9.50969 -12.35955,17.95063 -2.80066,6.10293 -4.61886,11.91112 -5.76436,17.5175 -10.39962,25.33864 -5.9915,43.15772 -3.53361,61.61413 -1.4792,13.13023 1.06961,23.82456 3.07306,35.44835 18.49356,5.86562 40.23513,0.90221 62.11466,-2.0794 z"/><path d="m 315.90803,320.84344 c -2.81213,-13.35423 -5.31598,-26.66992 -4.44214,-39.5634 3.50974,-30.99075 1.84762,-41.36921 21.27809,-72.37945 0.93083,-9.35414 10.94077,-20.77854 22.34434,-31.15738 l -6.46482,-0.94005 c -9.53791,9.58301 -21.68892,21.43451 -24.91403,32.79713 -21.76753,0.94464 -32.29254,8.12373 -58.48416,-1.54946 3.69598,-8.48126 4.421,-9.85362 10.78801,-18.40031 l -3.63549,0.74174 c -6.53986,6.87088 -7.78622,9.63679 -12.35955,17.95063 l -5.76436,17.5175 c -8.96086,25.20784 -5.79542,43.13989 -3.53361,61.61413 -0.5132,12.61008 1.5982,23.53993 3.07306,35.44835 18.49356,5.86562 40.23513,0.90221 62.11466,-2.0794 z" id="path1423" sodipodi:nodetypes="ccccccccccccccc" style="display:inline;opacity:1;fill:#ffffff"/><path sodipodi:nodetypes="ccccc" id="path1425" class="shadow" d="m 332.57058,318.76346 6.33005,7.27419 c -34.68921,1.29057 -66.97188,18.12974 -88.95784,3.64611 l 3.86668,-6.97285 c 33.13895,8.49273 46.05641,-5.41002 78.76111,-3.94745 z"/><path d="m 332.57058,318.76346 6.33005,7.27419 c -35.36449,0.47083 -68.38566,17.52383 -88.95784,3.64611 l 3.86668,-6.97285 c 30.76253,9.95515 45.48233,-4.28164 78.76111,-3.94745 z" id="path1427" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="cccccccccccccccccccc" id="path2798" d="m 360.49161,241.99223 c 0.15713,0.0673 -5.97159,18.38792 -21.70227,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 25.42564,15.0158 49.55125,45.91894 56.87042,72.68694 18.09394,39.28852 18.07129,125.05958 17.21147,125.13775 -70.8552,-22.32954 -164.13155,30.03525 -232.75934,-4.27387 -0.19735,-0.0197 4.1265,-76.03991 20.06445,-110.96586 9.2798,-30.93655 38.3703,-60.02101 53.1161,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -5.47524,-7.9954 -9.24242,-21.28882 -8.76141,-30.59601 -4.05722,-36.73329 30.65665,-66.66209 31.00076,-66.66209 -0.008,-0.0706 2.55382,-1.8267 8.72305,-2.20036 -36.01659,24.46625 -42.13809,58.83696 -39.24643,69.07094 12.14629,3.82492 34.25776,3.67112 87.23879,-1.85132 1.92836,0 6.15865,-6.88279 6.15865,-10.00465 2.71491,-24.25648 8.03999,-35.96111 9.4316,-68.9692 4.553,0.39299 4.95014,-0.2397 9.68823,1.7253 -1.04791,6.23371 0.31824,53.97628 4.75601,64.31785 z"/><path d="m 348.47508,176.56688 c 6.23488,24.59751 4.25162,51.07322 4.99933,76.19448 -42.11798,9.03479 -85.37513,19.71113 -110.63496,3.91432 -1.95782,-18.39591 8.20167,-47.39868 32.21961,-67.27394 42.97585,-9.32822 52.0825,-17.54406 73.41602,-12.83486 z" id="path2800" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/><path d="m 360.49161,241.99223 c 0,0 -7.49782,19.06418 -21.70227,38.57912 -4.05461,12.92894 -2.0344,36.58898 -2.0344,36.58898 0,0 0.41414,5.12801 1.6154,7.55426 23.94861,15.0158 44.88197,44.35531 56.87042,72.68694 16.40822,38.7766 17.21147,125.13775 17.21147,125.13775 -70.8552,-28.58878 -164.13155,26.85176 -232.75934,-4.27387 0,0 6.44834,-75.93029 20.06445,-110.96586 12.02699,-30.9466 39.38887,-59.8755 53.1161,-84.26 -4.38752,-13.39723 -2.26335,-25.01325 -1.37108,-35.87779 -4.94422,-8.06178 -8.45116,-21.38773 -8.76141,-30.59601 -3.92817,-36.49728 30.67927,-66.58172 31.00076,-66.66209 0,0 2.59939,-1.41654 8.72305,-2.20036 -36.76659,20.96625 -42.13809,58.83696 -39.24643,69.07094 24.85388,-0.61208 66.61629,9.56619 108.02244,-11.10597 1.4423,-26.38913 0.15792,-38.14578 -5.1934,-69.7192 4.57973,0.53998 5.03464,0.22507 9.68823,1.7253 -1.36935,6.31407 -0.62585,54.2123 4.75601,64.31785 z" id="path2803" sodipodi:nodetypes="ccccaccaccccccccccc" style="display:inline;opacity:1;fill:#333333"/><path d="m 306.1115,174.72723 3.10935,13.7728 c -3.58883,0.28907 -4.19632,0.25785 -6.36265,-0.32791 1.00219,-12.04918 3.2533,-13.44489 3.2533,-13.44489 z" id="path2805" sodipodi:nodetypes="cccc" style="display:inline;opacity:1;fill:#ffffff"/><path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="ccccc" id="path2807" d="m 300.08667,172.57237 c -2.03237,3.63344 -2.40946,7.63281 -3.39194,11.16176 -0.11097,2.48059 4.02564,5.20338 6.30994,6.62117 -0.11352,-4.35414 2.20104,-11.31333 2.96606,-15.5101 -2.0837,-0.64114 -4.38743,-1.29276 -5.88406,-2.27283 z"/><path style="display:inline;opacity:1;fill:#000000" sodipodi:nodetypes="ccccc" id="path2810" d="m 333.1721,164.81697 c 3.12234,3.33135 7.8525,6.78145 9.92028,10.58149 -7.93754,9.36149 -23.35479,13.30607 -33.9727,15.90151 -0.57861,-4.86704 -2.13199,-11.9051 -3.13395,-16.71185 8.60186,-2.43964 22.03678,-4.58024 27.18637,-9.77115 z"/><path d="m 318.99599,327.6899 c 0.0644,-0.16109 8.65228,0.56099 9.61497,4.49727 1.3512,2.8737 -3.34911,7.53093 -3.47797,7.44163 -0.0771,-0.15425 8.84757,-0.64052 10.11034,3.2164 1.02068,3.07865 -5.38909,6.92467 -5.44926,6.82438 0.23172,-0.20855 10.82387,0.0205 11.58201,4.44743 1.38783,4.11242 -6.22864,10.32292 -6.27664,10.17893 0.21991,-0.13745 8.43834,1.21248 9.01294,4.71968 1.2288,3.81779 -4.96917,9.64522 -5.03752,9.48573 0.21257,-0.13285 10.58372,2.34604 11.07464,6.85972 1.25518,3.94064 -6.04041,9.4479 -6.21547,9.33849 0.13515,-0.11263 11.08656,2.58112 11.93526,7.39163 1.71015,4.99964 -7.00879,13.22784 -7.21484,13.15057 0.0942,-0.0157 9.93077,7.19801 9.34405,12.44107 0.10908,5.19779 -9.69913,10.99968 -9.76212,10.93669 0.18533,-0.0824 11.15376,9.91714 7.63971,14.84338 -2.61785,4.65478 -15.08597,-0.32502 -15.15239,-0.59071 0.33431,-0.16715 5.3952,17.15578 -0.85713,21.87287 -6.50245,5.00033 -23.38239,-4.72464 -23.02204,-4.94986 0.22183,0.0246 -1.66191,12.7012 -7.19718,14.88791 -5.5687,2.47972 -16.74854,-6.17807 -16.74854,-6.48015 0.21345,0.4269 -5.07562,9.91879 -10.03403,10.20801 -5.55297,0.42338 -12.95531,-7.17693 -12.56583,-7.44005 0.36032,0.1488 -7.16402,7.27921 -12.8887,6.95808 -4.83568,-0.14563 -10.74277,-8.48059 -10.58851,-8.67342 0.22444,0.19238 -9.22718,7.16136 -14.53666,4.80368 -4.70766,-1.85637 -6.31717,-11.27134 -6.13011,-11.24256 -0.0365,0.3281 -13.14523,5.45055 -17.62156,1.26353 -4.51529,-3.20565 -1.84094,-15.18727 -1.6627,-15.20509 -0.17088,0.0854 -9.60707,-4.8907 -10.3417,-9.69215 -1.57318,-4.62814 3.84701,-13.41306 4.19582,-13.29679 -0.18367,0.0459 -4.13228,-7.96382 -2.49807,-11.98279 0.67111,-3.66494 7.4073,-7.52683 7.53174,-7.42313 -0.10889,0.0545 -2.35187,-7.48617 -0.57345,-11.08065 0.97955,-3.46808 7.81374,-7.23036 7.98116,-7.15861 -0.16474,0.0412 -1.76219,-6.06944 -0.0618,-8.87421 0.86706,-2.57827 5.32018,-4.74225 5.36859,-4.54861 -0.31509,0.0788 -1.63297,-5.0224 -0.33716,-7.38269 1.06746,-2.94953 5.90428,-5.607 5.87412,-5.30544 -0.0593,0 0.14909,-4.63491 1.73435,-6.67977 1.09199,-2.83818 5.23059,-6.49208 5.30213,-6.32515 -0.13193,0.0495 1.90625,-6.4612 4.21952,-9.6367 1.30133,-2.92237 6.34678,-7.9651 6.48509,-7.9651 -0.0721,0.009 1.17726,-4.6058 3.03344,-6.74429 1.47439,-2.92429 5.62888,-6.48189 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z" class="shadow" id="path2812" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacaccc" id="path2814" d="m 318.99599,327.6899 c 0,0 8.40821,1.17117 9.61497,4.49727 0.93385,2.57392 -3.47797,7.44163 -3.47797,7.44163 0,0 9.08388,-0.1679 10.11034,3.2164 0.84491,2.78571 -5.44926,6.82438 -5.44926,6.82438 0,0 10.25836,0.52946 11.58201,4.44743 1.27585,3.77649 -6.27664,10.17893 -6.27664,10.17893 0,0 8.01039,1.47995 9.01294,4.71968 1.05837,3.42011 -5.03752,9.48573 -5.03752,9.48573 0,0 10.15037,2.61688 11.07464,6.85972 0.7959,3.65359 -6.21547,9.33849 -6.21547,9.33849 0,0 10.74466,2.86604 11.93526,7.39163 1.2721,4.83537 -7.21484,13.15057 -7.21484,13.15057 0,0 9.56319,7.25927 9.34405,12.44107 -0.20647,4.88224 -9.76212,10.93669 -9.76212,10.93669 0,0 10.62954,10.15013 7.63971,14.84338 -2.71578,4.26308 -15.15239,-0.59071 -15.15239,-0.59071 0,0 4.90743,17.39967 -0.85713,21.87287 -6.20132,4.81212 -23.02204,-4.94986 -23.02204,-4.94986 0,0 -2.06947,12.86558 -7.19718,14.88791 -5.5687,2.19626 -16.74854,-6.48015 -16.74854,-6.48015 0,0 -5.30284,9.59088 -10.03403,10.20801 -4.82685,0.62961 -12.56583,-7.44005 -12.56583,-7.44005 0,0 -8.02869,7.4243 -12.8887,6.95808 -4.54161,-0.43568 -10.58851,-8.67342 -10.58851,-8.67342 0,0 -9.79032,6.67867 -14.53666,4.80368 -3.96987,-1.56825 -6.13011,-11.24256 -6.13011,-11.24256 0,0 -13.0991,5.03539 -17.62156,1.26353 -3.9155,-3.26563 -1.6627,-15.20509 -1.6627,-15.20509 0,0 -9.14506,-5.1217 -10.3417,-9.69215 -1.17719,-4.49614 4.19582,-13.29679 4.19582,-13.29679 0,0 -3.67873,-8.07721 -2.49807,-11.98279 1.02002,-3.37418 7.53174,-7.42313 7.53174,-7.42313 0,0 -1.99319,-7.66551 -0.57345,-11.08065 1.37185,-3.29995 7.98116,-7.15861 7.98116,-7.15861 0,0 -1.29621,-6.18593 -0.0618,-8.87421 0.97875,-2.13151 5.36859,-4.54861 5.36859,-4.54861 0,0 -1.28579,-5.1092 -0.33716,-7.38269 1.01601,-2.43499 5.87412,-5.30544 5.87412,-5.30544 0,0 0.68057,-4.63491 1.73435,-6.67977 1.26026,-2.44554 5.30213,-6.32515 5.30213,-6.32515 0,0 2.39255,-6.64356 4.21952,-9.6367 1.78378,-2.92237 6.48509,-7.9651 6.48509,-7.9651 0,0 1.69989,-4.67113 3.03344,-6.74429 1.54055,-2.39498 5.63667,-6.41957 5.63667,-6.41957 26.0423,7.35036 46.49273,1.22064 68.57478,-0.66959 z"/><path sodipodi:nodetypes="ccssccc" id="path2816" class="shadow" d="m 317.3515,327.6899 c 0.22023,-0.0832 13.95193,22.40956 15.51755,35.27419 7.4167,28.20029 26.15374,64.2233 5.41963,85.35354 -32.97758,33.60762 -95.87299,40.63263 -128.98295,5.78454 -16.72652,-17.60459 0.50361,-47.60411 11.1802,-71.36249 6.48324,-18.97334 29.03428,-54.79411 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z"/><path d="m 317.3515,327.6899 c 0,0 12.47759,22.79358 15.51755,35.27419 6.74669,27.69865 24.45833,64.13418 5.41963,85.35354 -28.74158,32.03359 -100.27917,37.85201 -128.98295,5.78454 -16.05853,-17.94037 3.26025,-48.62468 11.1802,-71.36249 6.85399,-19.67747 30.78578,-54.40455 30.78578,-54.40455 25.09479,7.08293 44.80116,1.17623 66.07979,-0.64523 z" id="path2818" sodipodi:nodetypes="caaaacc" style="display:inline;opacity:1;fill:#ffffff"/><path sodipodi:nodetypes="ccccc" id="path2820" class="shadow" d="m 339.13308,281.76346 c -2.00111,14.61346 -1.45571,28.77753 -0.66995,42.89919 -34.68921,1.29057 -67.37169,19.68152 -89.35765,5.19789 0.75356,-14.0727 1.75763,-29.9734 1.30418,-44.34785 33.13895,8.49273 56.01872,-5.2118 88.72342,-3.74923 z"/><path d="m 339.13308,281.76346 c -2.7968,14.29973 -1.98265,28.59946 -0.66995,42.89919 -35.36449,0.47083 -68.78547,19.07561 -89.35765,5.19789 1.05318,-14.11595 2.82363,-30.2319 1.30418,-44.34785 30.76253,9.95515 55.44464,-4.08342 88.72342,-3.74923 z" id="path2822" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/><path d="m 333.1721,164.81697 9.92028,10.58149 c -8.50147,8.95868 -23.58459,13.14193 -33.9727,15.90151 -0.35332,-4.82062 -1.60248,-11.89123 -3.13395,-16.71185 8.60186,-1.844 22.03678,-4.11883 27.18637,-9.77115 z" id="path2824" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/><path d="m 300.08667,172.57237 -3.39194,11.16176 c 0.27347,2.33273 4.1548,5.1537 6.30994,6.62117 -0.5339,-4.37642 1.60936,-11.42013 2.96606,-15.5101 -2.28233,-0.52764 -4.46978,-1.2457 -5.88406,-2.27283 z" id="path2827" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Unnatural.tw b/src/art/vector_revamp/layers/Torso_Unnatural.tw index 14a14a2744d1a8f0dbed6d1fa751cfefd9bf3a5d..c9750a158a0b9956341999258821b1c7a629b411 100644 --- a/src/art/vector_revamp/layers/Torso_Unnatural.tw +++ b/src/art/vector_revamp/layers/Torso_Unnatural.tw @@ -1,3 +1,3 @@ :: Art_Vector_Revamp_Torso_Unnatural [nobr] -<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccccscccccccsccccccc" id="path1150" class="shadow torso" d="m 246.30911,231.06259 c -8.99453,20.02062 -2.7168,39.82817 6.59033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -15.97966,23.47896 -17.84706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 3.60245,2.72059 6.88662,0.53559 7.11408,-0.30205 l 1.02256,-0.0126 c 0.0456,0.48907 6.30075,4.01813 11.35624,0.16606 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -2.78089,-8.8422 -20.01148,-25.04261 -20.57655,-24.78256 0.41299,-0.50348 -12.21859,-13.62863 -12.84375,-15.85983 2.68681,-6.22178 7.5538,-32.80103 8.07452,-32.87542 19.23508,-11.98202 24.99543,-31.81666 27.02144,-41.33057 -0.50349,-3.50775 -1.32308,-10.70751 -1.45375,-13.44272 -4.53544,-10.77188 -2.3443,-15.76194 -4.6441,-26.29186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.5475,-3.91931 -28.08011,3.12735 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.80032,4.30093 -13.259,4.44692 -29.51965,8.86728 -10.04843,13.94881 -16.38873,17.64107 -24.82836,40.21314 z"/><path d="m 346.40754,176.85218 c -7.39171,-1.56131 -16.05125,-2.2441 -15.85743,-30.61093 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -3.83498,2.97182 -5.98014,3.47675 -13.82076,5.20414 -34.91738,8.73668 29.00804,37.23957 59.48279,-10.24576 z" id="path1510" sodipodi:nodetypes="cccccc" class="skin neck"/><path d="m 286.83636,187.18633 c -3.66048,0.80645 -9.84112,2.17312 -15.69027,3.64767 -8.65971,10.94361 -15.77697,17.65654 -24.83698,40.22861 v -2e-5 c -7.97663,19.22419 -2.76769,39.20032 6.84033,56.00881 -1.06764,11.32585 -1.52536,26.55789 1.00056,35.50213 C 242.77941,344.09706 238.25294,346.1 236.05294,366.2 c -1.1,10.1 -2.23235,20.37059 -6.00882,40.87059 1.79918,21.68192 24.06603,28.08577 33.55443,33.19683 14.43169,10.04215 15.75456,13.80608 22.99302,21.72969 2.40278,1.2769 6.48126,0.50828 7.11501,-0.33224 l 1.04511,-0.0119 c 1.31243,1.17872 7.86774,1.71281 11.33041,0.17649 1.25908,-5.51105 3.06465,-22.40272 25.53259,-37.02845 9.99479,-6.9207 28.66527,-25.38509 47.28163,-34.05687 -9.1,-20.7 -12.62279,-28.06765 -19.58456,-39.49706 -3.8841,-8.49646 -20.35009,-24.94863 -20.57655,-24.78256 0.17394,-0.53763 -12.86462,-13.70829 -12.93214,-15.85983 2.56898,-6.32141 6.07307,-31.48845 8.07452,-32.87542 17.10876,-11.85604 23.08362,-25.52016 27.05018,-41.16751 -0.3269,-2.17434 -0.47207,-3.26685 -0.65846,-5.74844 -1.66961,-10.3676 -2.47994,-23.531 -5.32957,-34.10874 0.025,-10.96207 3.83428,-17.95261 3.83428,-17.95261 -3.26688,-0.7913 -9.53184,-1.48469 -12.45487,-1.8114 -33.85358,35.49387 -77.52547,14.10408 -59.48279,10.24576 z" id="path1152" sodipodi:nodetypes="ccccccccccccccccccccccccc" class="skin torso"/><path d="m 317.3521,285.5361 c -7.46191,11.4761 -10.89652,37.14512 -11.1397,41.11412 2.81194,-18.56341 5.72671,-31.01778 11.1397,-41.11412 z" class="muscle_tone" id="path1156" sodipodi:nodetypes="ccc"/><path d="m 333.64545,368.51096 c -5.87092,10.37125 -20.05508,16.48024 -27.5903,38.1711 8.55718,-28.02096 20.05599,-25.82086 27.5903,-38.1711 z" class="muscle_tone" id="path1158" sodipodi:nodetypes="ccc"/><path d="m 261.07288,408.74028 c -7.12092,-11.56625 -12.80508,-15.26976 -19.3403,-19.6414 12.24468,7.16654 14.68099,9.92914 19.3403,19.6414 z" class="muscle_tone" id="path1160" sodipodi:nodetypes="ccc"/><path d="m 333.87477,277.49678 c -0.45714,-1.47279 -0.073,-7.87231 -6.56962,-12.18972 4.93326,3.3569 6.04008,6.0889 6.56962,12.18972 z" class="muscle_tone" id="path1162" sodipodi:nodetypes="ccc"/><path d="m 303.24363,269.89121 c -3.70542,-3.35104 -8.95604,-6.81165 -14.43619,-10.51034 5.04375,3.22432 11.32129,6.97278 14.43619,10.51034 z" class="muscle_tone" id="path1164" sodipodi:nodetypes="ccc"/><path d="m 249.55985,274.96762 c 2.66686,-3.79298 3.9516,-9.15827 9.43175,-12.85696 -5.04375,3.22432 -7.24493,9.01004 -9.43175,12.85696 z" class="muscle_tone" id="path1166" sodipodi:nodetypes="ccc"/><path d="m 315.32611,381.50405 c -4.37092,10.93375 -5.99229,14.67189 -8.99626,24.269 4.27593,-11.17721 5.6182,-14.98126 8.99626,-24.269 z" class="muscle_tone" id="path1168" sodipodi:nodetypes="ccc"/><path d="m 260.92015,408.4457 c -3.30842,-11.56625 -4.55508,-15.20726 -7.9653,-24.0789 5.24468,9.91654 5.36849,14.36664 7.9653,24.0789 z" class="muscle_tone" id="path1170" sodipodi:nodetypes="ccc"/><path d="m 322.21004,418.07002 c -4.37092,10.93375 -6.6994,16.08611 -9.70337,25.68322 4.27593,-11.17721 6.32531,-16.39548 9.70337,-25.68322 z" class="muscle_tone" id="path1172" sodipodi:nodetypes="ccc"/><path d="m 263.39362,428.05063 c 4.93342,11.09 6.0119,9.64861 9.01587,19.24572 -4.27593,-11.17721 -5.63781,-9.95798 -9.01587,-19.24572 z" class="muscle_tone" id="path1174" sodipodi:nodetypes="ccc"/><path d="m 325.9149,310.57121 c -1.2483,3.29428 -1.95746,4.93254 -3.52279,9.12572 0.95249,-4.27451 1.65215,-6.1206 3.52279,-9.12572 z" class="muscle_tone" id="path1176" sodipodi:nodetypes="ccc"/><path d="m 254.14485,322.53089 c 1.2483,3.29428 0.64496,1.83879 2.21029,6.03197 -0.95249,-4.27451 -0.33965,-3.02685 -2.21029,-6.03197 z" class="muscle_tone" id="path1178" sodipodi:nodetypes="ccc"/><path d="m 361.02638,237.18777 c -0.94326,-8.05772 -0.78056,-23.30289 -4.75812,-32.08391 2.09688,6.60791 3.01744,21.31058 4.75812,32.08391 z" class="shadow" id="path1180" sodipodi:nodetypes="ccc"/><path d="m 276.99339,346.1357 c 0.48219,-2.95995 0.50103,-5.52426 -0.57274,-9.24552 l -0.0242,0.001 c -0.78458,4.82879 -0.38541,6.45786 0.59697,9.24433 z" class="shadow belly_details" id="path1454" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="cccccc" id="path1459" class="muscle_tone belly_details" d="m 276.42065,336.89018 c -2.33392,-7.76332 -1.51834,-23.53988 0.81606,-35.04811 -1.74332,-2.38988 -4.44237,-24.92087 -1.47199,-27.6049 -3.61369,4.2787 -0.75808,24.51323 1.47338,27.60765 -2.61353,11.47022 -3.33983,26.27713 -0.84168,35.04655 z"/></svg></html>' >> \ No newline at end of file +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccccscccccccsccccccc" id="path1150" class="shadow torso" d="m 246.30911,231.06259 c -8.99453,20.02062 -2.7168,39.82817 6.59033,56.00881 -1.53985,11.7306 -1.87414,26.85685 1.00056,35.50213 -11.85675,21.45408 -15.97966,23.47896 -17.84706,43.62647 -1.27191,10.1573 -2.73211,20.53718 -6.00882,40.87059 2.61719,20.31584 18.31529,25.98218 33.42233,33.28968 14.2695,10.10615 21.87131,20.64462 23.13315,21.60879 3.60245,2.72059 6.88662,0.53559 7.11408,-0.30205 l 1.02256,-0.0126 c 0.0456,0.48907 6.30075,4.01813 11.35624,0.16606 -0.0537,0.63231 -0.0183,-18.66075 25.04236,-35.98144 10.0947,-6.97697 31.55074,-29.06522 47.76148,-35.09887 -8.70897,-20.77821 -12.44162,-28.09997 -19.58456,-39.49315 -2.78089,-8.8422 -20.01148,-25.04261 -20.57655,-24.78256 0.41299,-0.50348 -12.21859,-13.62863 -12.84375,-15.85983 2.68681,-6.22178 7.5538,-32.80103 8.07452,-32.87542 19.23508,-11.98202 24.99543,-31.81666 27.02144,-41.33057 -2.30037,-2.67962 -2.96371,-10.70751 -3.09438,-13.44272 -4.53544,-10.77188 -0.70367,-15.76194 -3.00347,-26.29186 -2.20292,-10.08636 3.79175,-17.91215 3.88445,-17.91215 -15.5475,-3.91931 -28.08011,3.12735 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60044,11.74636 4.52731,21.84761 4.14186,32.15688 -5.80032,4.30093 -13.259,4.44692 -29.51965,8.86728 -10.04843,13.94881 -16.38873,17.64107 -24.82836,40.21314 z"/><path d="m 346.40754,176.85218 c -7.39171,-1.56131 -16.05125,-2.2441 -15.85743,-30.61093 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -3.83498,2.97182 -5.98014,3.47675 -13.82076,5.20414 -34.91738,8.73668 29.00804,37.23957 59.48279,-10.24576 z" id="path1510" sodipodi:nodetypes="cccccc" class="skin neck"/><path d="m 286.83636,187.18633 c -3.66048,0.80645 -9.84112,2.17312 -15.69027,3.64767 -8.65971,10.94361 -15.77697,17.65654 -24.83698,40.22861 v -2e-5 c -7.97663,19.22419 -2.76769,39.20032 6.84033,56.00881 -1.06764,11.32585 -1.52536,26.55789 1.00056,35.50213 C 242.77941,344.09706 238.25294,346.1 236.05294,366.2 c -1.1,10.1 -2.23235,20.37059 -6.00882,40.87059 1.79918,21.68192 24.06603,28.08577 33.55443,33.19683 14.43169,10.04215 15.75456,13.80608 22.99302,21.72969 2.40278,1.2769 6.48126,0.50828 7.11501,-0.33224 l 1.04511,-0.0119 c 1.31243,1.17872 7.86774,1.71281 11.33041,0.17649 1.25908,-5.51105 3.06465,-22.40272 25.53259,-37.02845 9.99479,-6.9207 28.66527,-25.38509 47.28163,-34.05687 -9.1,-20.7 -12.62279,-28.06765 -19.58456,-39.49706 -3.8841,-8.49646 -20.35009,-24.94863 -20.57655,-24.78256 0.17394,-0.53763 -12.86462,-13.70829 -12.93214,-15.85983 2.56898,-6.32141 6.07307,-31.48845 8.07452,-32.87542 17.10876,-11.85604 23.08362,-25.52016 27.05018,-41.16751 -0.3269,-2.17434 -0.47207,-3.26685 -0.65846,-5.74844 -1.66961,-10.3676 -2.47994,-23.531 -5.32957,-34.10874 0.025,-10.96207 3.83428,-17.95261 3.83428,-17.95261 -3.26688,-0.7913 -9.53184,-1.48469 -12.45487,-1.8114 -33.85358,35.49387 -77.52547,14.10408 -59.48279,10.24576 z" id="path1152" sodipodi:nodetypes="ccccccccccccccccccccccccc" class="skin torso"/><path d="m 317.3521,285.5361 c -7.46191,11.4761 -10.89652,37.14512 -11.1397,41.11412 2.81194,-18.56341 5.72671,-31.01778 11.1397,-41.11412 z" class="muscle_tone" id="path1156" sodipodi:nodetypes="ccc"/><path d="m 333.64545,368.51096 c -5.87092,10.37125 -20.05508,16.48024 -27.5903,38.1711 8.55718,-28.02096 20.05599,-25.82086 27.5903,-38.1711 z" class="muscle_tone" id="path1158" sodipodi:nodetypes="ccc"/><path d="m 261.07288,408.74028 c -7.12092,-11.56625 -12.80508,-15.26976 -19.3403,-19.6414 12.24468,7.16654 14.68099,9.92914 19.3403,19.6414 z" class="muscle_tone" id="path1160" sodipodi:nodetypes="ccc"/><path d="m 333.87477,277.49678 c -0.45714,-1.47279 -0.073,-7.87231 -6.56962,-12.18972 4.93326,3.3569 6.04008,6.0889 6.56962,12.18972 z" class="muscle_tone" id="path1162" sodipodi:nodetypes="ccc"/><path d="m 303.24363,269.89121 c -3.70542,-3.35104 -8.95604,-6.81165 -14.43619,-10.51034 5.04375,3.22432 11.32129,6.97278 14.43619,10.51034 z" class="muscle_tone" id="path1164" sodipodi:nodetypes="ccc"/><path d="m 249.55985,274.96762 c 2.66686,-3.79298 3.9516,-9.15827 9.43175,-12.85696 -5.04375,3.22432 -7.24493,9.01004 -9.43175,12.85696 z" class="muscle_tone" id="path1166" sodipodi:nodetypes="ccc"/><path d="m 315.32611,381.50405 c -4.37092,10.93375 -5.99229,14.67189 -8.99626,24.269 4.27593,-11.17721 5.6182,-14.98126 8.99626,-24.269 z" class="muscle_tone" id="path1168" sodipodi:nodetypes="ccc"/><path d="m 260.92015,408.4457 c -3.30842,-11.56625 -4.55508,-15.20726 -7.9653,-24.0789 5.24468,9.91654 5.36849,14.36664 7.9653,24.0789 z" class="muscle_tone" id="path1170" sodipodi:nodetypes="ccc"/><path d="m 322.21004,418.07002 c -4.37092,10.93375 -6.6994,16.08611 -9.70337,25.68322 4.27593,-11.17721 6.32531,-16.39548 9.70337,-25.68322 z" class="muscle_tone" id="path1172" sodipodi:nodetypes="ccc"/><path d="m 263.39362,428.05063 c 4.93342,11.09 6.0119,9.64861 9.01587,19.24572 -4.27593,-11.17721 -5.63781,-9.95798 -9.01587,-19.24572 z" class="muscle_tone" id="path1174" sodipodi:nodetypes="ccc"/><path d="m 325.9149,310.57121 c -1.2483,3.29428 -1.95746,4.93254 -3.52279,9.12572 0.95249,-4.27451 1.65215,-6.1206 3.52279,-9.12572 z" class="muscle_tone" id="path1176" sodipodi:nodetypes="ccc"/><path d="m 254.14485,322.53089 c 1.2483,3.29428 0.64496,1.83879 2.21029,6.03197 -0.95249,-4.27451 -0.33965,-3.02685 -2.21029,-6.03197 z" class="muscle_tone" id="path1178" sodipodi:nodetypes="ccc"/><path d="m 276.99339,346.1357 c 0.48219,-2.95995 0.50103,-5.52426 -0.57274,-9.24552 l -0.0242,0.001 c -0.78458,4.82879 -0.38541,6.45786 0.59697,9.24433 z" class="shadow belly_details" id="path1454" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="cccccc" id="path1459" class="muscle_tone belly_details" d="m 276.42065,336.89018 c -2.33392,-7.76332 -1.51834,-23.53988 0.81606,-35.04811 -1.74332,-2.38988 -4.44237,-24.92087 -1.47199,-27.6049 -3.61369,4.2787 -0.75808,24.51323 1.47338,27.60765 -2.61353,11.47022 -3.33983,26.27713 -0.84168,35.04655 z"/><path sodipodi:nodetypes="ccc" id="path2543" class="shadow" d="m 334.35262,257.79054 c 18.3821,-10.6129 18.87632,-45.89411 23.20514,-48.39336 -5.22768,3.0182 -6.34343,38.65826 -23.20514,48.39336 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/cheats/mod_EditArcologyCheat.tw b/src/cheats/mod_EditArcologyCheat.tw index a207da4fe4656d4e8c60c86876ca601552f766f8..ca915825dceddaff70bb24fef60d5d1d9f238969 100644 --- a/src/cheats/mod_EditArcologyCheat.tw +++ b/src/cheats/mod_EditArcologyCheat.tw @@ -430,51 +430,3 @@ __Player Character__ <br>Other minority ownership: ''$arcologies[0].minority%'' <<textbox "$arcologies[0].minority" $arcologies[0].minority>> <br>$arcologies[0].name's GSP is @@.yellowgreen;<<print cashFormat(Math.trunc(0.1*$arcologies[0].prosperity))>>m@@. -<<if $arcologies.length > 1>> - <<set _neighbors = $arcologies.length-1>> - <br><br>Your arcology has _neighbors - <<if _neighbors == 1>>neighbor<<else>>neighbors<</if>>. -<<else>> - Your arcology has no neighbors. -<</if>> - -<<if $arcologies.length <= 8>> -<<link "Add neighbor">> - <<set _seed = ["north", "northeast", "east", "southeast", "south", "southwest", "west", "northwest"]>> - <<for _eca = 0; _eca < $arcologies.length; _eca++>> - <<set _seed.delete($arcologies[_eca].direction)>> /* remove directions already in use */ - <</for>> - <<set _govtypes = ["elected officials", "a committee", "an oligarchy", "an individual", "a corporation", "direct democracy"]>> - <<set $activeArcology = {name: "Arcology X-", direction: _seed.random(), government: _govtypes.random(), honeymoon: 0, prosperity: 50, ownership: 50, minority: 20, PCminority: 0, demandFactor:0, FSSupremacist: "unset", FSSupremacistRace: 0, FSSubjugationist: "unset", FSSubjugationistRace: 0, FSGenderRadicalist: "unset", FSGenderFundamentalist: "unset", FSPaternalist: "unset", FSDegradationist: "unset", FSBodyPurist: "unset", FSTransformationFetishist: "unset", FSYouthPreferentialist: "unset", FSMaturityPreferentialist: "unset", FSSlimnessEnthusiast: "unset", FSAssetExpansionist: "unset", FSPastoralist: "unset", FSPhysicalIdealist: "unset", FSChattelReligionist: "unset", FSRomanRevivalist: "unset", FSAztecRevivalist: "unset", FSEgyptianRevivalist: "unset", FSEdoRevivalist: "unset", FSArabianRevivalist: "unset", FSChineseRevivalist: "unset", FSNull: "unset", FSRepopulationFocus: "unset", FSRestart: "unset", embargo: 1, embargoTarget: -1, influenceTarget: -1, influenceBonus: 0, rival: 0}>> - - <<if $arcologies.length < 4>> /* X-4 is reserved for player's arcology, so X-1 is available */ - <<set $activeArcology.name += ($arcologies.length)>> - <<else>> - <<set $activeArcology.name += ($arcologies.length+1)>> - <</if>> - - <<set $activeArcology.prosperity += random(-20,20)>> - <<set $activeArcology.ownership += random(-10,0)>> - <<set $activeArcology.minority += random(-5,5)>> - <<set $arcologies.push($activeArcology)>> - - <<goto "MOD_Edit Arcology Cheat">> -<</link>> -<</if>> - -<br> -<<set $averageProsperity = 0, _seed = 0>> -<<for _eca = 0; _eca < $arcologies.length; _eca++>> - <<set $averageProsperity += $arcologies[_eca].prosperity, _seed++>> -<</for>> -<<set $averageProsperity = $averageProsperity/_seed>> - -<<for $i = 0; $i < $arcologies.length; $i++>> - <<if $arcologies[$i].direction != 0>> - <<include "Neighbor Description">> /* uses $arcologies[$i] */ - <</if>> - - <<if $i != 0>> - <<print "[[Remove neighbor|MOD_Edit Arcology Cheat][$arcologies.deleteAt(" + $i + ")]]">> - <</if>> -<</for>> diff --git a/src/cheats/mod_EditNeighborArcologyCheat.tw b/src/cheats/mod_EditNeighborArcologyCheat.tw new file mode 100644 index 0000000000000000000000000000000000000000..ce9b21bd67f9755cc6cd3f5e0d5cdd6dcde4b7ec --- /dev/null +++ b/src/cheats/mod_EditNeighborArcologyCheat.tw @@ -0,0 +1,58 @@ +:: MOD_Edit Neighbor Arcology Cheat [nobr] + +<<set $nextButton = "Continue", $nextLink = "MOD_Edit Neighbor Arcology Cheat Datatype Cleanup">> + +<<if $arcologies.length > 1>> + <<set _neighbors = $arcologies.length-1>> + <br><br>Your arcology has _neighbors + <<if _neighbors == 1>>neighbor<<else>>neighbors<</if>>. +<<else>> + Your arcology has no neighbors. +<</if>> + +<<if $arcologies.length <= 8>> +<<link "Add neighbor">> + <<set _seed = ["north", "northeast", "east", "southeast", "south", "southwest", "west", "northwest"]>> + <<for _eca = 0; _eca < $arcologies.length; _eca++>> + <<set _seed.delete($arcologies[_eca].direction)>> /* remove directions already in use */ + <</for>> + <<set _govtypes = ["elected officials", "a committee", "an oligarchy", "an individual", "a corporation", "direct democracy"]>> + <<set $activeArcology = {name: "Arcology X-", direction: _seed.random(), government: _govtypes.random(), honeymoon: 0, prosperity: 50, ownership: 50, minority: 20, PCminority: 0, demandFactor:0, FSSupremacist: "unset", FSSupremacistRace: 0, FSSubjugationist: "unset", FSSubjugationistRace: 0, FSGenderRadicalist: "unset", FSGenderFundamentalist: "unset", FSPaternalist: "unset", FSDegradationist: "unset", FSBodyPurist: "unset", FSTransformationFetishist: "unset", FSYouthPreferentialist: "unset", FSMaturityPreferentialist: "unset", FSSlimnessEnthusiast: "unset", FSAssetExpansionist: "unset", FSPastoralist: "unset", FSPhysicalIdealist: "unset", FSChattelReligionist: "unset", FSRomanRevivalist: "unset", FSAztecRevivalist: "unset", FSEgyptianRevivalist: "unset", FSEdoRevivalist: "unset", FSArabianRevivalist: "unset", FSChineseRevivalist: "unset", FSNull: "unset", FSRepopulationFocus: "unset", FSRestart: "unset", embargo: 1, embargoTarget: -1, influenceTarget: -1, influenceBonus: 0, rival: 0}>> + + <<if $arcologies.length < 4>> /* X-4 is reserved for player's arcology, so X-1 is available */ + <<set $activeArcology.name += ($arcologies.length)>> + <<else>> + <<set $activeArcology.name += ($arcologies.length+1)>> + <</if>> + + <<set $activeArcology.prosperity += random(-20,20)>> + <<set $activeArcology.ownership += random(-10,0)>> + <<set $activeArcology.minority += random(-5,5)>> + <<set $arcologies.push($activeArcology)>> + + <<goto "MOD_Edit Neighbor Arcology Cheat">> +<</link>> +<</if>> + +<br> +<<set $averageProsperity = 0, _seed = 0>> +<<for _eca = 0; _eca < $arcologies.length; _eca++>> + <<set $averageProsperity += $arcologies[_eca].prosperity, _seed++>> +<</for>> +<<set $averageProsperity = $averageProsperity/_seed>> + +<<for $i = 1; $i < $arcologies.length; $i++>> + <<if $arcologies[$i].direction != 0>> + <<include "Neighbor Description">> /* uses $arcologies[$i] */ + <</if>> + + <br><br> + + <<set _span = "arc"+$i>> + + <<print "<span id=\"" + _span + "\"><<link \"Cheat Edit Arcology " + $i + " (" + $arcologies[$i].name + ")\">><<replace #arc" + $i + ">><<EditNeighborCheat " + $i + ">><</replace>><</link>></span>">> | + + <<if $i != 0>> + <<print "[[Remove neighbor|MOD_Edit Neighbor Arcology Cheat][$arcologies.deleteAt(" + $i + ")]]">> + <</if>> +<</for>> diff --git a/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw b/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw new file mode 100644 index 0000000000000000000000000000000000000000..ddb116c035ebc063902767aa2464588ce2dec13f --- /dev/null +++ b/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw @@ -0,0 +1,112 @@ +:: MOD_Edit Neighbor Arcology Cheat Datatype Cleanup [nobr] + +<<set $nextButton = "Continue", $nextLink = "Main">> + +<<set _l = $arcologies.length>> +<<for _i = 1; _i < _l; _i++>> + <<set $arcologies[_i].honeymoon = Number($arcologies[_i].honeymoon) || 0>> + <<set $arcologies[_i].prosperity = Number($arcologies[_i].prosperity) || 0>> + <<set $arcologies[_i].ownership = Number($arcologies[_i].ownership) || 0>> + <<set $arcologies[_i].minority = Number($arcologies[_i].minority) || 0>> + <<set $arcologies[_i].PCminority = Number($arcologies[_i].PCminority) || 0>> + <<set $arcologies[_i].demandFactor = Number($arcologies[_i].demandFactor) || 0>> + <<if $arcologies[_i].FSSupremacist != "unset">> + <<set $arcologies[_i].FSSupremacist = Number($arcologies[_i].FSSupremacist) || 0>> + <</if>> + <<if $arcologies[_i].FSSubjugationist != "unset">> + <<set $arcologies[_i].FSSubjugationist = Number($arcologies[_i].FSSubjugationist) || 0>> + <</if>> + <<if $arcologies[_i].FSGenderRadicalist != "unset">> + <<set $arcologies[_i].FSGenderRadicalist = Number($arcologies[_i].FSGenderRadicalist) || 0>> + <<set $arcologies[_i].FSGenderFundamentalist = "unset">> + <</if>> + <<if $arcologies[_i].FSGenderFundamentalist != "unset">> + <<set $arcologies[_i].FSGenderFundamentalist = Number($arcologies[_i].FSGenderFundamentalist) || 0>> + <<set $arcologies[_i].FSGenderRadicalist = "unset">> + <</if>> + <<if $arcologies[_i].FSPaternalist != "unset">> + <<set $arcologies[_i].FSPaternalist = Number($arcologies[_i].FSPaternalist) || 0>> + <<set $arcologies[_i].FSDegradationist = "unset">> + <</if>> + <<if $arcologies[_i].FSDegradationist != "unset">> + <<set $arcologies[_i].FSDegradationist = Number($arcologies[_i].FSDegradationist) || 0>> + <<set $arcologies[_i].FSPaternalist = "unset">> + <</if>> + <<if $arcologies[_i].FSBodyPurist != "unset">> + <<set $arcologies[_i].FSBodyPurist = Number($arcologies[_i].FSBodyPurist) || 0>> + <<set $arcologies[_i].FSTransformationFetishist = "unset">> + <</if>> + <<if $arcologies[_i].FSTransformationFetishist != "unset">> + <<set $arcologies[_i].FSTransformationFetishist = Number($arcologies[_i].FSTransformationFetishist) || 0>> + <<set $arcologies[_i].FSBodyPurist = "unset">> + <</if>> + <<if $arcologies[_i].FSYouthPreferentialist != "unset">> + <<set $arcologies[_i].FSYouthPreferentialist = Number($arcologies[_i].FSYouthPreferentialist) || 0>> + <<set $arcologies[_i].FSMaturityPreferentialist = "unset">> + <</if>> + <<if $arcologies[_i].FSMaturityPreferentialist != "unset">> + <<set $arcologies[_i].FSMaturityPreferentialist = Number($arcologies[_i].FSMaturityPreferentialist) || 0>> + <<set $arcologies[_i].FSYouthPreferentialist = "unset">> + <</if>> + <<if $arcologies[_i].FSSlimnessEnthusiast != "unset">> + <<set $arcologies[_i].FSSlimnessEnthusiast = Number($arcologies[_i].FSSlimnessEnthusiast) || 0>> + <<set $arcologies[_i].FSAssetExpansionist = "unset">> + <</if>> + <<if $arcologies[_i].FSAssetExpansionist != "unset">> + <<set $arcologies[_i].FSAssetExpansionist = Number($arcologies[_i].FSAssetExpansionist) || 0>> + <<set $arcologies[_i].FSSlimnessEnthusiast = "unset">> + <</if>> + <<if $arcologies[_i].FSPastoralist != "unset">> + <<set $arcologies[_i].FSPastoralist = Number($arcologies[_i].FSPastoralist) || 0>> + <</if>> + <<if $arcologies[_i].FSPhysicalIdealist != "unset">> + <<set $arcologies[_i].FSPhysicalIdealist = Number($arcologies[_i].FSPhysicalIdealist) || 0>> + <</if>> + <<if $arcologies[_i].FSChattelReligionist != "unset">> + <<set $arcologies[_i].FSChattelReligionist = Number($arcologies[_i].FSChattelReligionist) || 0>> + <</if>> + <<if $arcologies[_i].FSRomanRevivalist != "unset">> + <<set $arcologies[_i].FSRomanRevivalist = Number($arcologies[_i].FSRomanRevivalist) || 0>> + <<set $arcologies[_i].FSArabianRevivalist = $arcologies[_i].FSAztecRevivalist = $arcologies[_i].FSChineseRevivalist = $arcologies[_i].FSEdoRevivalist = $arcologies[_i].FSEgyptianRevivalist = "unset">> + <</if>> + <<if $arcologies[_i].FSAztecRevivalist != "unset">> + <<set $arcologies[_i].FSAztecRevivalist = Number($arcologies[_i].FSAztecRevivalist) || 0>> + <<set $arcologies[_i].FSArabianRevivalist = $arcologies[_i].FSChineseRevivalist = $arcologies[_i].FSEdoRevivalist = $arcologies[_i].FSEgyptianRevivalist = $arcologies[_i].FSRomanRevivalist = "unset">> + <</if>> + <<if $arcologies[_i].FSEgyptianRevivalist != "unset">> + <<set $arcologies[_i].FSEgyptianRevivalist = Number($arcologies[_i].FSEgyptianRevivalist) || 0>> + <<set $arcologies[_i].FSArabianRevivalist = $arcologies[_i].FSAztecRevivalist = $arcologies[_i].FSChineseRevivalist = $arcologies[_i].FSEdoRevivalist = $arcologies[_i].FSRomanRevivalist = "unset">> + <</if>> + <<if $arcologies[_i].FSEdoRevivalist != "unset">> + <<set $arcologies[_i].FSEdoRevivalist = Number($arcologies[_i].FSEdoRevivalist) || 0>> + <<set $arcologies[_i].FSArabianRevivalist = $arcologies[_i].FSAztecRevivalist = $arcologies[_i].FSChineseRevivalist = $arcologies[_i].FSEgyptianRevivalist = $arcologies[_i].FSRomanRevivalist = "unset">> + <</if>> + <<if $arcologies[_i].FSArabianRevivalist != "unset">> + <<set $arcologies[_i].FSArabianRevivalist = Number($arcologies[_i].FSArabianRevivalist) || 0>> + <<set $arcologies[_i].FSAztecRevivalist = $arcologies[_i].FSChineseRevivalist = $arcologies[_i].FSEdoRevivalist = $arcologies[_i].FSEgyptianRevivalist = $arcologies[_i].FSRomanRevivalist = "unset">> + <</if>> + <<if $arcologies[_i].FSChineseRevivalist != "unset">> + <<set $arcologies[_i].FSChineseRevivalist = Number($arcologies[_i].FSChineseRevivalist) || 0>> + <<set $arcologies[_i].FSArabianRevivalist = $arcologies[_i].FSAztecRevivalist = $arcologies[_i].FSEdoRevivalist = $arcologies[_i].FSEgyptianRevivalist = $arcologies[_i].FSRomanRevivalist = "unset">> + <</if>> + <<if $arcologies[_i].FSNull != "unset">> + <<set $arcologies[_i].FSNull = Number($arcologies[_i].FSNull) || 0>> + <</if>> + <<if $arcologies[_i].FSRepopulationFocus != "unset">> + <<set $arcologies[_i].FSRepopulationFocus = Number($arcologies[_i].FSRepopulationFocus) || 0>> + <<set $arcologies[_i].FSRestart = "unset">> + <</if>> + <<if $arcologies[_i].FSRestart != "unset">> + <<set $arcologies[_i].FSRestart = Number($arcologies[_i].FSRestart) || 0>> + <<set $arcologies[_i].FSRepopulationFocus = "unset">> + <</if>> + <<set $arcologies[_i].embargo = Number($arcologies[_i].embargo) || 0>> + <<set $arcologies[_i].embargoTarget = Number($arcologies[_i].embargoTarget) || 0>> + <<set $arcologies[_i].influenceTarget = Number($arcologies[_i].influenceTarget) || 0>> + <<set $arcologies[_i].influenceBonus = Number($arcologies[_i].influenceBonus) || 0>> + <<set $arcologies[_i].rival = Number($arcologies[_i].rival) | 0>> +<</for>> + +You have CHEATED your way to influencing the neighboring arcologies. They have been unscrupulously directed according to your CHEAT whims. + +<br><br>The Eldritch horrors feast upon your CHEATING soul and look forward to more future dealings with you. The repercussions may be far reaching and the consquences dire. \ No newline at end of file diff --git a/src/cheats/mod_EditNeighborArcologyCheatWidget.tw b/src/cheats/mod_EditNeighborArcologyCheatWidget.tw new file mode 100644 index 0000000000000000000000000000000000000000..94505d7a058d395df91f4b216a34298f4a3347ac --- /dev/null +++ b/src/cheats/mod_EditNeighborArcologyCheatWidget.tw @@ -0,0 +1,240 @@ +:: MOD_Edit Neighbor Arcology Cheat Widget [widget nobr] + +/% + Call as <<EditNeighborCheat>> +%/ +<<widget "EditNeighborCheat">> + <<set _i = $args[0]>> + + ''Arcology _i name:'' $arcologies[_i].name + <br><<textbox "$arcologies[_i].name" $arcologies[_i].name "MOD_Edit Neighbor Arcology Cheat">> + + <br> + + ''$arcologies[_i].name direction:'' $arcologies[_i].direction + <br><<radiobutton "$arcologies[_i].direction" "north">> north + | <<radiobutton "$arcologies[_i].direction" "northeast">> northeast + | <<radiobutton "$arcologies[_i].direction" "east">> east + | <<radiobutton "$arcologies[_i].direction" "southeast">> southeast + | <<radiobutton "$arcologies[_i].direction" "south">> south + | <<radiobutton "$arcologies[_i].direction" "southwest">> southeast + | <<radiobutton "$arcologies[_i].direction" "west">> west + | <<radiobutton "$arcologies[_i].direction" "northwest">> northwest + + <br> + + ''$arcologies[_i].name government:'' $arcologies[_i].government + <br><<radiobutton "$arcologies[_i].government" "elected officials">> elected officials + | <<radiobutton "$arcologies[_i].government" "a committee">> a committee + | <<radiobutton "$arcologies[_i].government" "an oligarchy">> an oligarchy + | <<radiobutton "$arcologies[_i].government" "an individual">> an individual + | <<radiobutton "$arcologies[_i].government" "a corporation">> a corporation + | <<radiobutton "$arcologies[_i].government" "direct democracy">> direct democracy + | <<radiobutton "$arcologies[_i].government" "your trustees">> your trustees + | <<radiobutton "$arcologies[_i].government" "your agent">> your agent + + <br> + + ''$arcologies[_i].name honeymoon:'' $arcologies[_i].honeymoon + <br><<textbox "$arcologies[_i].honeymoon" $arcologies[_i].honeymoon>> + + <br> + + ''$arcologies[_i].name prosperity:'' $arcologies[_i].prosperity + <br><<textbox "$arcologies[_i].prosperity" $arcologies[_i].prosperity>> + + <br> + + ''$arcologies[_i].name ownership:'' $arcologies[_i].ownership + <br><<textbox "$arcologies[_i].ownership" $arcologies[_i].ownership>> + + <br> + + ''$arcologies[_i].name minority ownership:'' $arcologies[_i].minority + <br><<textbox "$arcologies[_i].minority" $arcologies[_i].minority>> + + <br> + + ''$arcologies[_i].name player ownership:'' $arcologies[_i].PCminority + <br><<textbox "$arcologies[_i].PCminority" $arcologies[_i].PCminority>> + + <br> + ''$arcologies[_i].name demand factor:'' $arcologies[_i].demandFactor + <br><<textbox "$arcologies[_i].demandFactor" $arcologies[_i].demandFactor>> + + <br> + ''$arcologies[_i].name Supremacist (unset or 1-100):'' $arcologies[_i].FSSupremacist + <br><<textbox "$arcologies[_i].FSSupremacist" $arcologies[_i].FSSupremacist>> + + <br> + ''$arcologies[_i].name Supremacist race:'' $arcologies[_i].FSSupremacistRace + <br><<radiobutton "$arcologies[_i].FSSupremacistRace" white>> White | + <<radiobutton "$arcologies[_i].FSSupremacistRace" asian>> Asian | + <<radiobutton "$arcologies[_i].FSSupremacistRace" latina>> Latina | + <<radiobutton "$arcologies[_i].FSSupremacistRace" middle eastern>> Middle Eastern | + <<radiobutton "$arcologies[_i].FSSupremacistRace" black>> Black | + <<radiobutton "$arcologies[_i].FSSupremacistRace" indo-aryan>> Indo-Aryan | + <<radiobutton "$arcologies[_i].FSSupremacistRace" amerindian>> Amerindian | + <<radiobutton "$arcologies[_i].FSSupremacistRace" pacific islander>> Pacific Islander | + <<radiobutton "$arcologies[_i].FSSupremacistRace" southern european>> Southern European | + <<radiobutton "$arcologies[_i].FSSupremacistRace" semitic>> Semitic | + <<radiobutton "$arcologies[_i].FSSupremacistRace" mixed race>> Mixed Race + + <br> + + ''$arcologies[_i].name Subjugationist (unset or 1-100):'' $arcologies[_i].FSSubjugationist + <br><<textbox "$arcologies[_i].FSSubjugationist" $arcologies[_i].FSSubjugationist>> + + <br> + + ''$arcologies[_i].name Subjugationist race:'' $arcologies[_i].FSSubjugationistRace + <br><<radiobutton "$arcologies[_i].FSSubjugationistRace" white>> White | + <<radiobutton "$arcologies[_i].FSSubjugationistRace" asian>> Asian | + <<radiobutton "$arcologies[_i].FSSubjugationistRace" latina>> Latina | + <<radiobutton "$arcologies[_i].FSSubjugationistRace" middle eastern>> Middle Eastern | + <<radiobutton "$arcologies[_i].FSSubjugationistRace" black>> Black | + <<radiobutton "$arcologies[_i].FSSubjugationistRace" indo-aryan>> Indo-Aryan | + <<radiobutton "$arcologies[_i].FSSubjugationistRace" amerindian>> Amerindian | + <<radiobutton "$arcologies[_i].FSSubjugationistRace" pacific islander>> Pacific Islander | + <<radiobutton "$arcologies[_i].FSSubjugationistRace" southern european>> Southern European | + <<radiobutton "$arcologies[_i].FSSubjugationistRace" semitic>> Semitic | + <<radiobutton "$arcologies[_i].FSSubjugationistRace" mixed race>> Mixed Race + + <br> + + ''$arcologies[_i].name Gender Radicalist (unset or 1-100):'' $arcologies[_i].FSGenderRadicalist + <br><<textbox "$arcologies[_i].FSGenderRadicalist" $arcologies[_i].FSGenderRadicalist>> + + <br> + + ''$arcologies[_i].name Gender Fundamentalist (unset or 1-100):'' $arcologies[_i].FSGenderFundamentalist + <br><<textbox "$arcologies[_i].FSGenderFundamentalist" $arcologies[_i].FSGenderFundamentalist>> + + <br> + + ''$arcologies[_i].name Paternalist (unset or 1-100):'' $arcologies[_i].FSPaternalist + <br><<textbox "$arcologies[_i].FSPaternalist" $arcologies[_i].FSPaternalist>> + + <br> + + ''$arcologies[_i].name Degradationist (unset or 1-100):'' $arcologies[_i].FSDegradationist + <br><<textbox "$arcologies[_i].FSDegradationist" $arcologies[_i].FSDegradationist>> + + <br> + + ''$arcologies[_i].name Body Purist (unset or 1-100):'' $arcologies[_i].FSBodyPurist + <br><<textbox "$arcologies[_i].FSBodyPurist" $arcologies[_i].FSBodyPurist>> + + <br> + + ''$arcologies[_i].name Transformation Fetishist (unset or 1-100):'' $arcologies[_i].FSTransformationFetishist + <br><<textbox "$arcologies[_i].FSTransformationFetishist" $arcologies[_i].FSTransformationFetishist>> + + <br> + + ''$arcologies[_i].name Youth Preferentialist (unset or 1-100):'' $arcologies[_i].FSYouthPreferentialist + <br><<textbox "$arcologies[_i].FSYouthPreferentialist" $arcologies[_i].FSYouthPreferentialist>> + + <br> + + ''$arcologies[_i].name Maturity Preferentialist (unset or 1-100):'' $arcologies[_i].FSMaturityPreferentialist + <br><<textbox "$arcologies[_i].FSMaturityPreferentialist" $arcologies[_i].FSMaturityPreferentialist>> + + <br> + + ''$arcologies[_i].name Slimness Enthusiast (unset or 1-100):'' $arcologies[_i].FSSlimnessEnthusiast + <br><<textbox "$arcologies[_i].FSSlimnessEnthusiast" $arcologies[_i].FSSlimnessEnthusiast>> + + <br> + + ''$arcologies[_i].name Asset Expansionist (unset or 1-100):'' $arcologies[_i].FSAssetExpansionist + <br><<textbox "$arcologies[_i].FSAssetExpansionist" $arcologies[_i].FSAssetExpansionist>> + + <br> + + ''$arcologies[_i].name Pastoralist (unset or 1-100):'' $arcologies[_i].FSPastoralist + <br><<textbox "$arcologies[_i].FSPastoralist" $arcologies[_i].FSPastoralist>> + + <br> + + ''$arcologies[_i].name Physical Idealist (unset or 1-100):'' $arcologies[_i].FSPhysicalIdealist + <br><<textbox "$arcologies[_i].FSPhysicalIdealist" $arcologies[_i].FSPhysicalIdealist>> + + <br> + + ''$arcologies[_i].name Chattel Religionist (unset or 1-100):'' $arcologies[_i].FSChattelReligionist + <br><<textbox "$arcologies[_i].FSChattelReligionist" $arcologies[_i].FSChattelReligionist>> + + <br> + + ''$arcologies[_i].name Roman Revivalist (unset or 1-100):'' $arcologies[_i].FSRomanRevivalist + <br><<textbox "$arcologies[_i].FSRomanRevivalist" $arcologies[_i].FSRomanRevivalist>> + + <br> + + ''$arcologies[_i].name Aztec Revivalist (unset or 1-100):'' $arcologies[_i].FSAztecRevivalist + <br><<textbox "$arcologies[_i].FSAztecRevivalist" $arcologies[_i].FSAztecRevivalist>> + + <br> + + ''$arcologies[_i].name Egyptian Revivalist (unset or 1-100):'' $arcologies[_i].FSEgyptianRevivalist + <br><<textbox "$arcologies[_i].FSEgyptianRevivalist" $arcologies[_i].FSEgyptianRevivalist>> + + <br> + + ''$arcologies[_i].name Edo Revivalist (unset or 1-100):'' $arcologies[_i].FSEdoRevivalist + <br><<textbox "$arcologies[_i].FSEdoRevivalist" $arcologies[_i].FSEdoRevivalist>> + + <br> + + ''$arcologies[_i].name Arabian Revivalist (unset or 1-100):'' $arcologies[_i].FSArabianRevivalist + <br><<textbox "$arcologies[_i].FSArabianRevivalist" $arcologies[_i].FSArabianRevivalist>> + + <br> + + ''$arcologies[_i].name Chinese Revivalist (unset or 1-100):'' $arcologies[_i].FSChineseRevivalist + <br><<textbox "$arcologies[_i].FSChineseRevivalist" $arcologies[_i].FSChineseRevivalist>> + + <br> + + ''$arcologies[_i].name FSNull (unset or 1-100):'' $arcologies[_i].FSNull + <br><<textbox "$arcologies[_i].FSNull" $arcologies[_i].FSNull>> + + <br> + + ''$arcologies[_i].name Repopulation Focus (unset or 1-100):'' $arcologies[_i].FSRepopulationFocus + <br><<textbox "$arcologies[_i].FSRepopulationFocus" $arcologies[_i].FSRepopulationFocus>> + + <br> + + ''$arcologies[_i].name FSRestart (unset or 1-100):'' $arcologies[_i].FSRestart + <br><<textbox "$arcologies[_i].FSRestart" $arcologies[_i].FSRestart>> + + <br> + + ''$arcologies[_i].name embargo (1 to 3):'' $arcologies[_i].embargo + <br><<textbox "$arcologies[_i].embargo" $arcologies[_i].embargo>> + + <br> + + ''$arcologies[_i].name embargoTarget (0 to 7):'' $arcologies[_i].embargoTarget + <br><<textbox "$arcologies[_i].embargoTarget" $arcologies[_i].embargoTarget>> + + <br> + + ''$arcologies[_i].name influenceTarget:'' $arcologies[_i].influenceTarget + <br><<textbox "$arcologies[_i].influenceTarget" $arcologies[_i].influenceTarget>> + + <br> + + ''$arcologies[_i].name influenceBonus:'' $arcologies[_i].influenceBonus + <br><<textbox "$arcologies[_i].influenceBonus" $arcologies[_i].influenceBonus>> + + <br> + + ''$arcologies[_i].name rival (0 or 1):'' $arcologies[_i].rival + <br><<textbox "$arcologies[_i].rival" $arcologies[_i].rival>> + + <br> + +<</widget>> diff --git a/src/js/eventSelectionJS.tw b/src/js/eventSelectionJS.tw index e1317557a9c62a87f3028d642877e28446f7dbed..9ea9403ee2b8c8d7457cf842b50779dd71506b64 100644 --- a/src/js/eventSelectionJS.tw +++ b/src/js/eventSelectionJS.tw @@ -1512,6 +1512,16 @@ if(eventSlave.fetish != "mindbroken") { } } } + + if(eventSlave.vagina == 0) { + if(eventSlave.devotion > 50) { + if(eventSlave.trust > 20) { + if(eventSlave.speechRules != "restrictive") { + State.variables.RESSevent.push("devoted virgin"); + } + } + } + } if(eventSlave.anus == 0) { if(eventSlave.devotion > 50) { @@ -2716,6 +2726,16 @@ if(eventSlave.fetish != "mindbroken") { } } } + + if(eventSlave.vagina == 0) { + if(eventSlave.devotion > 50) { + if(eventSlave.trust > 20) { + if(eventSlave.speechRules != "restrictive") { + State.variables.RESSevent.push("devoted virgin"); + } + } + } + } if(eventSlave.anus == 0) { if(eventSlave.devotion > 50) { diff --git a/src/js/extendedFamilyModeJS.tw b/src/js/extendedFamilyModeJS.tw index 29aab10992026f75be937dc4448c286c795bb50c..587edad98c8782d5770596542c5991efd8341f65 100644 --- a/src/js/extendedFamilyModeJS.tw +++ b/src/js/extendedFamilyModeJS.tw @@ -56,7 +56,9 @@ window.areTwins = function(slave1, slave2) { window.areSisters = function(slave1, slave2) { if (slave1.ID == slave2.ID) { return 0; //you are not your own sister - } else if ((slave1.father != 0 && slave1.father != -2) || (slave1.mother != 0 && slave1.mother != -2)) { + } else if (((slave1.father == 0) || (slave1.father == -2)) && ((slave1.mother == 0) || (slave1.mother == -2))) { + return 0; //not related + } else { if (sameDad(slave1, slave2) == false && sameMom(slave1, slave2) == true) { return 3; //half sisters } else if (sameDad(slave1, slave2) == true && sameMom(slave1, slave2) == false) { @@ -74,8 +76,6 @@ window.areSisters = function(slave1, slave2) { } else { return 0; //not related } - } else { - return 0; //not related } }; diff --git a/src/js/vectorRevampedArtControlJS.tw b/src/js/vectorRevampedArtControlJS.tw index efa5032d977d21f1453fa4caacb711ce367aa6b4..2017d7345d2c050ad974d17a1c642b5e921abcac 100644 --- a/src/js/vectorRevampedArtControlJS.tw +++ b/src/js/vectorRevampedArtControlJS.tw @@ -126,42 +126,10 @@ class ArtStyleControl { } } - getLipsColorBySkinColorName(colorName) { - var skinPalette = [ - ["light", "#ce6876"], - ["white", "#ce6876"], - ["fair", "#ce6876"], - ["lightened", "#ce6876"], - ["extremely pale", "#ffb9ca"], - ["pale", "#ffb9ca"], - ["tanned", "#9e4c44"], - ["natural", "#9e4c44"], - ["olive", "#c1a785"], - ["light brown", "#5d2f1b"], - ["dark", "#714536"], - ["brown", "#714536"], - ["black", "#403030"], - ["camouflage patterned", "#708050"], - ["red dyed", "#b04040"], - ["dyed red", "#b04040"], - ["green dyed", "#A0C070"], - ["dyed green", "#A0C070"], - ["blue dyed", "#5080b0"], - ["dyed blue", "#5080b0"], - ["tiger striped", "#e0d050"] - ]; - - var skinPaletteMap = new Map(skinPalette); - colorName = colorName.toLowerCase(); - var colorValue = skinPaletteMap.get(colorName); - if (!colorValue) { - return parseColorFromName(colorName); - } - - return colorValue; - } - parseColorFromName(colorName) { + if (colorName == null) + return "#000000"; + var colorPalette = [ ["auburn", "#7e543e"], ["black", "#3F4040"], @@ -186,7 +154,18 @@ class ArtStyleControl { ["blazing red", "#E00E2B"], ["neon green", "#25d12b"], ["neon blue", "#2284C3"], - ["neon pink", "#cc26aa"] + ["neon pink", "#cc26aa"], + ["demonic", "#aa0000"], + ["devilish", "#ffd42a"], + ["hypnotic", "#ff5599"], + ["catlike", "#555555"], + ["serpent-like", "#555555"], + ["heart-shaped", "#555555"], + ["wide-eyed", "#555555"], + ["almond-shaped", "#555555"], + ["bright", "#555555"], + ["teary", "#555555"], + ["vacant", "#555555"], ]; var colorPaletteMap = new Map(colorPalette); @@ -203,8 +182,49 @@ class ArtStyleControl { return colorValue; } + + getLipsColorBySkinColorName(colorName) { + if (colorName == null) + return "#000000"; + + var lipsPalette = [ + ["light", "#ce6876"], + ["white", "#ce6876"], + ["fair", "#ce6876"], + ["lightened", "#ce6876"], + ["extremely pale", "#ffb9ca"], + ["pale", "#ffb9ca"], + ["tanned", "#9e4c44"], + ["natural", "#9e4c44"], + ["olive", "#c1a785"], + ["light brown", "#5d2f1b"], + ["dark", "#714536"], + ["brown", "#714536"], + ["black", "#403030"], + ["camouflage patterned", "#708050"], + ["red dyed", "#b04040"], + ["dyed red", "#b04040"], + ["green dyed", "#A0C070"], + ["dyed green", "#A0C070"], + ["blue dyed", "#5080b0"], + ["dyed blue", "#5080b0"], + ["tiger striped", "#e0d050"] + ]; + + var lipsPaletteMap = new Map(lipsPalette); + colorName = colorName.toLowerCase(); + var colorValue = lipsPaletteMap.get(colorName); + if (!colorValue) { + return this.parseColorFromName(colorName); + } + + return colorValue; + } parseSkinColorFromName(colorName) { + if (colorName == null) + return "#000000"; + var skinPalette = [ ["light", "#feebe5"], ["white", "#feebe5"], @@ -233,7 +253,7 @@ class ArtStyleControl { colorName = colorName.toLowerCase(); var colorValue = skinPaletteMap.get(colorName); if (!colorValue) { - return parseColorFromName(colorName); + return this.parseColorFromName(colorName); } return colorValue; @@ -357,6 +377,8 @@ class ArtStyleControl { this.shadowBoobInnerUpperShadow = new ArtStyleEntry("shadow.boob_inner_upper_shadow"); this.shadowBoobInnerUpperShadow["fill-opacity"] = 1; + this.gag = new ArtStyleEntry("gag"); + this.gag.fill = "#bf2126"; } get StylesCss() { @@ -405,7 +427,7 @@ class ArtStyleControl { this.styles.push(this.feetSkin); this.styles.push(this.shadowBoobInnerLowerShadow); this.styles.push(this.shadowBoobInnerUpperShadow); - + this.styles.push(this.gag); var stylesValues = []; var artDisplayClass = this.artDisplayClass; @@ -642,6 +664,9 @@ class RevampedArtControl { this.styleControl = new ArtStyleControl(artDisplayClass, artSlave); this.clothingControl = new ClothingControl(); this.artTransform = ""; + this.boobRightArtTransform = ""; + this.boobLeftArtTransform = ""; + this.boobOutfitArtTransform = ""; this.showArmHair = true; this.showHair = true; @@ -656,6 +681,9 @@ class RevampedArtControl { this.showEyes = true; this.showMouth = true; + this.leftArmType = this.getLeftArmPosition; + this.rightArmType = this.getRightArmPosition; + this.hairLength = this.getHairLength; this.torsoSize = this.getTorsoSize; this.bellyLevel = this.getBellyLevel; @@ -780,6 +808,50 @@ class RevampedArtControl { return torsoSize; } + get getLeftArmPosition() { + var leftArmType = "Low"; + + if (this.artSlave.devotion > 50) { + leftArmType = "High"; + } + else if (this.artSlave.trust >= -20) { + if (this.artSlave.devotion <= 20) { + leftArmType = "Low"; + } + else + { + leftArmType = "Mid"; + } + } + else { + leftArmType = "Mid"; + } + + return leftArmType; + } + + get getRightArmPosition() { + var rightArmType = "Low"; + + if (this.artSlave.devotion > 50) { + rightArmType = "High"; + } + else if (this.artSlave.trust >= -20) { + if (this.artSlave.devotion <= 20) { + rightArmType = "Low"; + } + else + { + rightArmType = "High"; + } + } + else { + rightArmType = "Mid"; + } + + return rightArmType; + } + get getBellyLevel() { var bellyLevel = 0; if (this.artSlave.belly >= 120000) @@ -867,40 +939,15 @@ class RevampedArtControl { var leftArmType = ""; var rightArmType = ""; - if (this.artSlave.amp) { + if (this.artSlave.amp == 1) { result.push("Art_Vector_Revamp_Arm_Stump"); } else { - var leftArmType = ""; - var rightArmType = ""; - if (this.artSlave.devotion > 50) { - leftArmType = "High" - rightArmType = "High" - } - else if (this.artSlave.trust >= -20) { - if (this.artSlave.devotion < -20) { - leftArmType = "Low" - rightArmType = "Low" - } - else if (this.artSlave.devotion <= 20) { - leftArmType = "Low" - rightArmType = "Low" - } - else - { - leftArmType = "Mid" - rightArmType = "High" - } - } - else { - leftArmType = "Mid" - rightArmType = "Mid" - } - result.push("Art_Vector_Revamp_Arm_Right_"+rightArmType); - result.push("Art_Vector_Revamp_Arm_Left_"+leftArmType); + result.push("Art_Vector_Revamp_Arm_Right_"+this.rightArmType); + result.push("Art_Vector_Revamp_Arm_Left_"+this.leftArmType); } - if (this.showArmHair && (this.artSlave.amp || leftArmType == "High")) + if (this.showArmHair && (this.artSlave.amp == 1 || (this.leftArmType == "High" && this.artSlave.amp != 1))) { switch(this.artSlave.underArmHStyle) { @@ -940,7 +987,7 @@ class RevampedArtControl { get legLayer() { var result = []; - if (this.artSlave.amp) { + if (this.artSlave.amp == 1) { result.push("Art_Vector_Revamp_Stump"); } else { @@ -971,7 +1018,7 @@ class RevampedArtControl { get feetLayer() { var result = []; - if (this.artSlave.amp) { + if (this.artSlave.amp == 1) { return result; } @@ -1007,7 +1054,7 @@ class RevampedArtControl { result.push("Art_Vector_Revamp_Torso_Highlights1"); } - if (this.showArmHair) + if (this.showArmHair && this.leftArmType != "High" && this.artSlave.amp != 1) { switch(this.artSlave.underArmHStyle) { @@ -1243,37 +1290,113 @@ class RevampedArtControl { get boobLayer() { var result = []; - - var artScaleFactor = 0.255622*Math.log(0.0626767*this.artSlave.boobs); - - var artTranslationX = -283.841*artScaleFactor+280.349; - var artTranslationY = -198.438*artScaleFactor+208.274; + + var artScaleFactor = 0.804354*Math.log(0.00577801*this.artSlave.boobs); + + var boobRightArtTranslationX = 270*((-1*artScaleFactor) + 1); + var boobLeftArtTranslationX = 320*((-1*artScaleFactor) + 1); + var artTranslationX = -283.841*artScaleFactor+285.349; + var artTranslationY = 198*((-1*artScaleFactor) + 1); var artBoobTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + artTranslationX + "," + artTranslationY + ")"; - + this.artTransform = artBoobTransform; if (this.artSlave.boobs < 300) { - artBoobTransform = "matrix(1,0,0,1,0,0)"; - this.artTransform = artBoobTransform; - if (this.showNipples) - result.push("Art_Vector_Revamp_Boob_Areola_NoBoob"); + { + var areolaeShape = "Normal"; + + switch(this.artSlave.areolae) + { + case 0: + areolaeShape = "Normal"; + break; + case 1: + areolaeShape = "Large"; + break; + case 2: + areolaeShape = "Wide"; + break; + case 3: + areolaeShape = "Huge"; + break; + case 4: + areolaeShape = "Heart"; + break; + case 5: + areolaeShape = "Star"; + break; + } + + result.push("Art_Vector_Revamp_Boob_None_Areola_" + areolaeShape); + } + + } else { if (!this.showBoobs) return result; + + var size = "Small"; + + if (this.artSlave.boobs < 600) + { + artScaleFactor = 0.360674*Math.log(0.0266667*this.artSlave.boobs); + + boobRightArtTranslationX = 240*((-1*artScaleFactor) + 1); + boobLeftArtTranslationX = 300*((-1*artScaleFactor) + 1); + artTranslationY = 250*((-1*artScaleFactor) + 1); + size = "Small"; + } + else if (this.artSlave.boobs < 15000) + { + size = "Medium"; + } + else { + size = "Huge"; + boobRightArtTranslationX = 252*((-1*artScaleFactor) + 1); + boobLeftArtTranslationX = 315*((-1*artScaleFactor) + 1); + } - result.push("Art_Vector_Revamp_Boob"); + this.boobRightArtTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + boobRightArtTranslationX + "," + artTranslationY + ")"; + this.boobLeftArtTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + boobLeftArtTranslationX + "," + artTranslationY + ")"; + result.push("Art_Vector_Revamp_Boob_" + size); if (this.showNipples) - result.push("Art_Vector_Revamp_Boob_Areola"); - + { + var areolaeShape = "Normal"; + + switch(this.artSlave.areolae) + { + case 0: + areolaeShape = "Normal"; + break; + case 1: + areolaeShape = "Large"; + break; + case 2: + areolaeShape = "Wide"; + break; + case 3: + areolaeShape = "Huge"; + break; + case 4: + areolaeShape = "Heart"; + break; + case 5: + areolaeShape = "Star"; + break; + } + + result.push("Art_Vector_Revamp_Boob_" + size + "_Areolae_" + areolaeShape); + result.push("Art_Vector_Revamp_Boob_" + size + "_Nipples"); + } if (this.showBoobsHighlight) { - result.push("Art_Vector_Revamp_Boob_Highlights2"); - result.push("Art_Vector_Revamp_Boob_Highlights1"); + result.push("Art_Vector_Revamp_Boob_" + size + "_Highlights2"); + result.push("Art_Vector_Revamp_Boob_" + size + "_Highlights1"); } } @@ -1286,34 +1409,48 @@ class RevampedArtControl { if (this.showNipplesPiercings) { + var size = "Small"; + + if (this.artSlave.boobs < 600) + { + size = "Small"; + } + else if (this.artSlave.boobs < 15000) + { + size = "Medium"; + } + else { + size = "Huge"; + } + if (this.artSlave.nipplesPiercing == 1) { if (this.artSlave.boobs < 300) - result.push("Art_Vector_Revamp_Boob_Piercing_NoBoob"); + result.push("Art_Vector_Revamp_Boob_None_Piercing"); else - result.push("Art_Vector_Revamp_Boob_Piercing"); + result.push("Art_Vector_Revamp_Boob_" + size + "_Piercing"); } else if (this.artSlave.nipplesPiercing == 2) { if (this.artSlave.boobs < 300) - result.push("Art_Vector_Revamp_Boob_Piercing_NoBoob_Heavy"); + result.push("Art_Vector_Revamp_Boob_None_Piercing_Heavy"); else - result.push("Art_Vector_Revamp_Boob_Piercing_Heavy"); + result.push("Art_Vector_Revamp_Boob_" + size + "_Piercing_Heavy"); } if (this.artSlave.areolaePiercing == 1) { if (this.artSlave.boobs < 300) - result.push("Art_Vector_Revamp_Boob_Areola_Piercing_NoBoob"); + result.push("Art_Vector_Revamp_Boob_None_Areola_Piercing"); else - result.push("Art_Vector_Revamp_Boob_Areola_Piercing"); + result.push("Art_Vector_Revamp_Boob_" + size + "_Areola_Piercing"); } else if (this.artSlave.areolaePiercing == 2) { if (this.artSlave.boobs < 300) - result.push("Art_Vector_Revamp_Boob_Areola_Piercing_NoBoob_Heavy"); + result.push("Art_Vector_Revamp_Boob_None_Areola_Piercing_Heavy"); else - result.push("Art_Vector_Revamp_Boob_Areola_Piercing_Heavy"); + result.push("Art_Vector_Revamp_Boob_" + size + "_Areola_Piercing_Heavy"); } } @@ -1321,11 +1458,43 @@ class RevampedArtControl { { case "uncomfortable straps": if (this.artSlave.boobs >= 300) - result.push("Art_Vector_Revamp_Boob_Outfit_Straps"); + //result.push("Art_Vector_Revamp_Boob_Outfit_Straps"); break; case "a nice maid outfit": if (this.artSlave.boobs >= 300) - result.push("Art_Vector_Revamp_Boob_Outfit_Maid"); + { + if (this.artSlave.boobs < 600) + { + var artScaleFactor = 0.288539*Math.log(0.106667*this.artSlave.boobs); + var artTranslationX = 270*((-1*artScaleFactor) + 1); + var artTranslationY = 198*((-1*artScaleFactor) + 1);//-198.438*artScaleFactor+203.274; + var artBoobTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + artTranslationX + "," + artTranslationY + ")"; + + this.boobOutfitArtTransform = artBoobTransform; + + result.push("Art_Vector_Revamp_Boob_Small_Outfit_Maid"); + } + else if (this.artSlave.boobs < 15000) + { + var artScaleFactor = 0.155334*Math.log(1.04167*this.artSlave.boobs); + var artTranslationX = 270*((-1.25*artScaleFactor) + 1.25); + var artTranslationY = 198*((-0.8*artScaleFactor) + 0.8);//-198.438*artScaleFactor+203.274; + var artBoobTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + artTranslationX + "," + artTranslationY + ")"; + + this.boobOutfitArtTransform = artBoobTransform; + result.push("Art_Vector_Revamp_Boob_Medium_Outfit_Maid"); + } + else { + var artScaleFactor = 1.56609*Math.log(0.00017373*this.artSlave.boobs); + var artTranslationX = 340*((-1*artScaleFactor) + 1); + var artTranslationY = 153*((-1*artScaleFactor) + 1);//-198.438*artScaleFactor+203.274; + var artBoobTransform = "matrix(" + artScaleFactor +",0,0," + artScaleFactor + "," + artTranslationX + "," + artTranslationY + ")"; + + this.boobOutfitArtTransform = artBoobTransform; + result.push("Art_Vector_Revamp_Boob_Huge_Outfit_Maid"); + } + + } break; default: @@ -1618,6 +1787,7 @@ class RevampedArtControl { Array.prototype.push.apply(layers, this.legLayer); Array.prototype.push.apply(layers, this.feetLayer); Array.prototype.push.apply(layers, this.torsoLayer); + Array.prototype.push.apply(layers, this.clavicleLayer); Array.prototype.push.apply(layers, this.pussyLayer); Array.prototype.push.apply(layers, this.pubicLayer); Array.prototype.push.apply(layers, this.pussyPiercingsLayer); @@ -1628,7 +1798,6 @@ class RevampedArtControl { Array.prototype.push.apply(layers, this.penisLayer); Array.prototype.push.apply(layers, this.boobLayer); Array.prototype.push.apply(layers, this.boobAddonLayer); - Array.prototype.push.apply(layers, this.clavicleLayer); Array.prototype.push.apply(layers, this.collarLayer); Array.prototype.push.apply(layers, this.headLayer); Array.prototype.push.apply(layers, this.eyesLayer); diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw index 850c2eb256f58e17aaa1ad64bebbd1949d4b201c..c789604f852e419e12936e6717c60a7cce4b2ef2 100644 --- a/src/pregmod/managePersonalAffairs.tw +++ b/src/pregmod/managePersonalAffairs.tw @@ -209,7 +209,7 @@ You ponder what skills may be useful in running your arcology. Alcohol makes pain go away, right? <</if>> -<br>hacking: +<br>Hacking: <<if $PC.hacking >= 100>> You are a master of hacking. <<elseif $PC.hacking >= 80>> diff --git a/src/pregmod/widgets/slaveSummaryWidgets.tw b/src/pregmod/widgets/slaveSummaryWidgets.tw index 551e8e1868ddd1a3af4a805fa3e42983b2a39aa2..240a68591e1f5123d49d72f22f4ab4506d8df4d0 100644 --- a/src/pregmod/widgets/slaveSummaryWidgets.tw +++ b/src/pregmod/widgets/slaveSummaryWidgets.tw @@ -1244,7 +1244,7 @@ Release rules: _Slave.releaseRules. <</if>> <<if _Slave.eyes == -2>> @@.red;Blind@@ -<<elseif _Slave.eyes == -1 && (_Slave.eyewear != "corrective glasses") && (_Slave.eyewear != "corrective contacts")>> +<<elseif ((_Slave.eyes == -1) && (_Slave.eyewear != "corrective glasses") && (_Slave.eyewear != "corrective contacts"))>> @@.yellow;Sight-@@ <</if>> @@ -1475,7 +1475,7 @@ Release rules: _Slave.releaseRules. _Slave.faceShape face. <<if _Slave.eyes <= -2>> @@.red;Blind.@@ -<<elseif _Slave.eyes <= -1>> +<<elseif ((_Slave.eyes <= -1) && (_Slave.eyewear != "corrective glasses") && (_Slave.eyewear != "corrective contacts"))>> @@.yellow;Nearsighted.@@ <</if>> <<if _Slave.lips > 95>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 5fcd7661e1358e7b46fa26e77fb77febf2af963e..0662a1b5921a11a93807b842bcc6540a98f8ba78 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -1295,6 +1295,16 @@ There is a horrible crash from the shower. You rush in to see <<EventNameLink $a <</if>> "Help me, <<Master>>!" +<<case "devoted virgin">> + +<<EventNameLink $activeSlave>> comes into your office and politely waits until you indicate she can have your attention. +<<if !canTalk($activeSlave)>> + She points to her pussy and comically pantomimes having sex, and then uses gestures to ask if she can serve you with her pussy. +<<else>> + She <<say>>s, "<<Master>>, I want to know what it'<<s>> like to have a cock in my virgin pu<<ss>>y. <<S>>eeing <<s>>o many of the other <<s>>lave<<s>> getting fucked looks like so much fun. I'm <<s>>o turned on by it. I can't be a proper <<s>>e<<x>> <<s>>lave without u<<s>>ing my pu<<ss>>y. Plea<<s>>e take my virginity, <<Master>>." +<</if>> +She spreads her legs and her hips <<if $activeSlave.belly >= 10000>>carefully<<else>>suggestively<</if>> at you. + <<case "devoted anal virgin">> <<EventNameLink $activeSlave>> comes into your office and politely waits until you indicate she can have your attention. @@ -8899,6 +8909,50 @@ You tell her kindly that you understand, and that she'll be trained to address t <</replace>> <</link>> +<<case "devoted virgin">> + +<<link "No, reassure her that she doesn't need to be a slut">> + <<EventNameDelink $activeSlave>> + <<replace "#result">> + You kindly explain that you've decided to save her virginity - for now. She looks slightly down-hearted and tries to smile nonetheless, but finds herself swept off her <<if $activeSlave.amp == 1>>stumps<<else>>feet<</if>> and<<if $activeSlave.bellyPreg >= 5000>> gently<</if>> deposited on the couch. She gasps with surprise when she finds herself being teased, fondled, and massaged rather than outright used. In no time at all she's pressing her whole<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body against you and shivering with delight. She shudders, almost uncontrollably, when you grind your <<if $PC.dick == 0>>clitoris<<else>>dick<</if>> against her moistened, wet pussy between her thighs, taking extra care not to penetrate the willing slave. She leaves your office feeling @@.hotpink;very close to her <<WrittenMaster>> indeed,@@ and seems to have forgotten her unfucked vagina, for now. + <<set $activeSlave.devotion += 4>> + <</replace>> +<</link>> +<br><<link "Make sure her first time is enjoyable">> + <<EventNameDelink $activeSlave>> + <<replace "#result">> + You bring her over to the couch<<if !canDoVaginal($activeSlave)>>, unfasten her chastity<</if>>, set her on your lap, and teasingly play with her<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body for a long time. Every so often you mover your hands over her pussylips, making her shiver and press herself against you, but you only make it the center of attention once the poor over-aroused slave + <<if !canTalk($activeSlave)>> + begins to reach for your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> to pull it towards herself. + <<else>> + begs, "I can't take it any more, <<Master>>! Fuck me, plea<<s>>e. Plea<<s>>e!" + <</if>> + Finally, you lubricate your hand. Then you slowly and gently push a finger into her invitingly tight virgin pussy. She's already on the edge of orgasm, and you patiently inch your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> into her pussy without making her climax. You then start pumping and she starts to moan and breathing more and more heavily. You continue pumping until she finally starts to orgasm, <<if $PC.dick == 0>>her climactic shudders<<else>>the walls of her tightening vagina<</if>> send you over as well. She's left in a haze of @@.hotpink;sexual satisfaction@@ that radiates outward from her @@.lime;newly initiated pussy,@@ and she @@.mediumaquamarine;trusts you@@ a lot more, now. + <<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "pregnancy")>> + She's back again before the week is over, eager for @@.lightcoral;another dick in her fuckhole.@@ + <<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "pregnancy">> + <</if>> + <<set $activeSlave.devotion += 3, $activeSlave.trust += 3, $activeSlave.vagina = 1, $activeSlave.vaginalCount++, $vaginalTotal++>> + <<if $PC.dick == 1 && $activeSlave.eggType == "human" && isFertile($activeSlave) && $activeSlave.preg == 0>> + <<KnockMeUp $activeSlave 15 0 -1>> + <</if>> + <</replace>> +<</link>> +<br><<link "Make sure her first fuck puts her in her place">> + <<EventNameDelink $activeSlave>> + <<replace "#result">> + You throw her onto the couch beside your desk, she fails to stop her from losing balance with her flailing <<if $activeSlave.amp == 1>>stumps<<else>>limbs<</if>>. She looks around doubtfully; she's already started to wonder whether this was a mistake. In a few moments she knows it for sure as she feels<<if !canDoVaginal($activeSlave)>> her vaginal chastity ripped off and<</if>> the burning sensation of a lubricated <<if $PC.dick == 0>>strap-on<<else>>dickhead<</if>> forcing her virgin pussy wide. You have her face shoved deep between the leather cushions and you ignore the muffled sounds coming from her. She limply tries to relax for her beloved master, but the painful sensation coming from her crotch causes her to start to writhe uncontrollably. She pushes against the couch, trying to endure the pounding. When you finish, the poor slave is left lying on the couch with <<if $PC.dick == 0>>a<<else>>a thin dribble of ejaculate escaping from her<</if>> @@.lime;newly fucked vagina,@@ a stream of drying tears running down each side of her face,<<if $activeSlave.dick > 0>> a single drop of precum at the tip of her totally flaccid dick,<</if>> and a new understanding of @@.gold;her place in life.@@ + <<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "submissive")>> + Before the end of the week it's clear that she's taken the rape to heart, and now sees her body as something @@.lightcoral;for others to use and abuse.@@ + <<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "submissive">> + <</if>> + <<set $activeSlave.trust -= 5, $activeSlave.vagina = 1, $activeSlave.vaginalCount++, $vaginalTotal++>> + <<if $PC.dick == 1 && $activeSlave.eggType == "human" && isFertile($activeSlave) && $activeSlave.preg == 0>> + <<KnockMeUp $activeSlave 25 0 -1>> + <</if>> + <</replace>> +<</link>> + <<case "devoted anal virgin">> <<link "No, reassure her that she doesn't need to be an anal slut">> @@ -18733,7 +18787,7 @@ You tell her kindly that you understand, and that she'll be trained to address t <<EventNameDelink $activeSlave>> <<replace "#result">> <<if $activeSlave.belly >= 3000000>> - You pull your chair back from your desk and order her to lie o her back with her _belly belly to the ceiling. She isn't sure what you are up to, but it quickly dawns on her as you staddle her stomach and take a seat. She groans under the massive pressure increase inside her, but does her best to hold your weight. + You pull your chair back from your desk and order her to lie on her back with her _belly belly to the ceiling. She isn't sure what you are up to, but it quickly dawns on her as you staddle her stomach and take a seat. She groans under the massive pressure increase inside her, but does her best to hold your weight. <<if $activeSlave.preg > 10>> You manage to get very little work done. The sheer amount of motion <<if $PC.dick == 1>> diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw index 0f739711bbafc0b3eeb41fe8c0f751a03c826c8e..1a313bf2ae480a1ee0b7db6f305f98b25e2cf7d0 100644 --- a/src/uncategorized/RETS.tw +++ b/src/uncategorized/RETS.tw @@ -1850,7 +1850,7 @@ she adds impishly. Hearing this, $subSlave.slaveName lets the breast pop free of <</if>> She was on the edge of orgasm when you stepped in, and this is just too much. She climaxes with indecent speed, involuntarily humping against the machine, shooting rope after rope of her cum into $activeSlave.slaveName's mouth<<if $PC.dick>> and spasming against your invading penis wonderfully<</if>>. You hold the quivering $subSlave.slaveName down and keep hammering her until you're certain she's fed $activeSlave.slaveName every drop she has. Then you let her up. <br><br> - As $subSlave.slaveName stumbles off, looking @@.hotpink;rather submissive,@@ $activeSlave.slaveName scoots out from underneath the machine. "<<Master>>," she <<say>>s $activeSlave.slaveName @@.hotpink;devotedly,@@ "that ta<<s>>ted incredible. It ta<<s>>te<<s>> <<s>>o much better when you fuck it out of her!" She rubs her<<if $activeSlave.belly >= 5000>> rounded<</if>> tummy with exaggerated satisfaction, and then realizes that you weren't fucking for nearly long enough to have gotten off yourself. + As $subSlave.slaveName stumbles off, looking @@.hotpink;rather submissive,@@ $activeSlave.slaveName scoots out from underneath the machine. "<<Master>>," she <<say>>s @@.hotpink;devotedly,@@ "that ta<<s>>ted incredible. It ta<<s>>te<<s>> <<s>>o much better when you fuck it out of her!" She rubs her<<if $activeSlave.belly >= 5000>> rounded<</if>> tummy with exaggerated satisfaction, and then realizes that you weren't fucking for nearly long enough to have gotten off yourself. <<if $activeSlave.lactation || $activeSlave.balls>> "I need to be milked now, too," she <<say>>s flirtily, and turns to mount the machine in turn. "Plea<<s>>e, plea<<s>>e do me too!" The machine hasn't had a turn first, this time, so she's much tighter<<if $PC.dick>>, and when she's done being milked, she's got a load of your cum inside her<</if>>. <<set $activeSlave.analCount++, $analTotal++>> diff --git a/src/uncategorized/arcologyDescription.tw b/src/uncategorized/arcologyDescription.tw index 5aaaef06498ff3c97ede3b92e6968badb1d67e92..e7fd93a9d4b59cb7c6d93713934d6134e0db7b39 100644 --- a/src/uncategorized/arcologyDescription.tw +++ b/src/uncategorized/arcologyDescription.tw @@ -679,6 +679,10 @@ Its lingua franca is $language. <</if>> <</for>> +<<if $cheatMode == 1>> + <br><br>[[Cheat Edit Neighboring Arcologies|MOD_Edit Neighbor Arcology Cheat]] +<</if>> + <br> <</replace>> diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw index 2799b628580762c336c9806f61c37886f2d19ebd..f584ec77c247b047636fa7bf1b3e9549e45a3151 100644 --- a/src/uncategorized/costsReport.tw +++ b/src/uncategorized/costsReport.tw @@ -30,14 +30,14 @@ <<if $citizenOrphanageTotal+$privateOrphanageTotal > 0>> You are paying <<if $citizenOrphanageTotal > 0>> - <<print cashFormat($citizenOrphanageTotal*100)>> for education of $citizenOrphanageTotal of your slaves' children in citizen schools<<if $privateOrphanageTotal > 0>>, and<<else>>.<</if>> + <<print cashFormat($citizenOrphanageTotal*100)>> for education of <<print commaNum($citizenOrphanageTotal)>> of your slaves' children in citizen schools<<if $privateOrphanageTotal > 0>>, and<<else>>.<</if>> <</if>> <<if $privateOrphanageTotal > 0>> - <<print cashFormat($privateOrphanageTotal*500)>> for private tutelage of $privateOrphanageTotal of your slaves' children. + <<print cashFormat($privateOrphanageTotal*500)>> for private tutelage of <<print commaNum($privateOrphanageTotal)>> of your slaves' children. <</if>> <</if>> <<if $breederOrphanageTotal > 0>> - Since $breederOrphanageTotal of your slaves' children are being raised into productive members of society in a soceity funded school, you pay a <<print cashFormat(50)>> usage fee. + Since <<print commaNum($breederOrphanageTotal)>> of your slaves' children are being raised into productive members of society in a soceity funded school, you pay a <<print cashFormat(50)>> usage fee. <</if>> <<if $peacekeepers != 0>> @@ -406,7 +406,7 @@ trainer fees: <<print cashFormat(_cost)>> <<if !canSee($slaves[$i]) && ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && ($slaves[$i].assignment != "be confined in the arcade")>> <br> Increased living expenses due to lack of sight: <<print cashFormat(50)>> <<set $individualCosts += 50>> - <<elseif $slaves[$i].eyes <= -1>> + <<elseif $slaves[$i].eyes <= -1 && $slaves[$i].eyewear != "corrective glasses" && $slaves[$i].eyewear != "corrective contacts">> <br> Increased living expenses due to poor vision: <<print cashFormat(25)>> <<set $individualCosts += 25>> <<elseif ($slaves[$i].eyewear == "blurring glasses") || ($slaves[$i].eyewear == "blurring contacts")>> @@ -502,7 +502,7 @@ trainer fees: <<print cashFormat(_cost)>> <br> Intensive drugs: <<print cashFormat($drugsCost*5)>> <<set $individualCosts += $drugsCost*5>> <<case "sag-B-gone">> - <br> Questionable infomercial creams: <<print cashFormat(($drugsCost/10))>> + <br> Questionable infomercial creams: <<print cashFormat(Math.trunc($drugsCost/10))>> <<set $individualCosts += ($drugsCost/10)>> <<case "no drugs" "none">> <<default>> @@ -515,7 +515,7 @@ trainer fees: <<print cashFormat(_cost)>> <<set $individualCosts += $drugsCost+($slaves[$i].curatives*$drugsCost)>> <</if>> <<if ($slaves[$i].aphrodisiacs !== 0)>> - <br> Aphrodisiacs/Anaphrodisiacs: <<print cashFormat(($drugsCost*Math.abs($slaves[$i].aphrodisiacs)))>> + <br> Aphrodisiacs/Anaphrodisiacs: <<print cashFormat(Math.trunc($drugsCost*Math.abs($slaves[$i].aphrodisiacs)))>> <<set $individualCosts += $drugsCost*Math.abs($slaves[$i].aphrodisiacs)>> <</if>> <<if ($slaves[$i].hormones != 0)>> @@ -532,7 +532,7 @@ trainer fees: <<print cashFormat(_cost)>> <<set $individualCosts += $slaves[$i].pornFameSpending>> <</if>> <</if>> - <br> __Total__: <<print cashFormat(($individualCosts))>> + <br> __Total__: <<print cashFormat(Math.trunc($individualCosts))>> <br> <</for>> diff --git a/src/uncategorized/masterSuite.tw b/src/uncategorized/masterSuite.tw index 20b417664891a3142be6bee17fe57387881afe3f..bc565c00cac996ca7deaeefc5bd2f40481c97aa4 100644 --- a/src/uncategorized/masterSuite.tw +++ b/src/uncategorized/masterSuite.tw @@ -288,9 +288,6 @@ $masterSuiteNameCaps is furnished It's sparsely populated, so that the few slaves here have to work hard and quickly to ensure that an assortment of sex slaves is perfect and ready for your pleasure at any given moment. <<else>> None of your slaves are serving here. - <<if $Concubine == 0>> - [[Decommission the Master Suite|Main][$masterSuite = 0, $masterSuiteUpgradeLuxury = 0, $masterSuitePregnancySlaveLuxuries = 0, $masterSuiteDecoration = "standard", $masterSuitePregnancyFertilityDrugs = 0, $masterSuitePregnancyFertilitySupplements = 0, $masterSuiteUpgradePregnancy = 0, $masterSuiteHyperPregnancy = 0]] - <</if>> <</if>> <br> [[Refit the suite to the height of traditional opulence|Master Suite][$cash -= _Tmult2, $masterSuiteUpgradeLuxury = 1]] //Costs <<print cashFormat(_Tmult2)>> and will focus the suite on you// <br> [[Remodel the suite around a luxurious pit for group sex|Master Suite][$cash -= _Tmult2, $masterSuiteUpgradeLuxury = 2]] //Costs <<print cashFormat(_Tmult2)>>; will encourage fucktoys to fuck each other// @@ -300,6 +297,9 @@ $masterSuiteNameCaps is furnished <br>$masterSuiteNameCaps has room for $masterSuite slaves to live comfortably<<if $masterSuiteUpgradeLuxury == 2>> in the moments when they're not in the fuckpit<<elseif $masterSuiteUpgradeLuxury == 1>> on its huge bed<</if>>. There are currently $masterSuiteSlaves in $masterSuiteNameCaps. <<set _Tmult0 = Math.trunc($masterSuite*1000*$upgradeMultiplierArcology)>> [[Expand the Master Suite|Master Suite][$cash -= _Tmult0, $masterSuite += 2, $PC.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>>// +<<if $Concubine == 0 && $masterSuiteSlaves == 0>> + |[[Decommission the Master Suite|Main][$masterSuite = 0, $masterSuiteUpgradeLuxury = 0, $masterSuitePregnancySlaveLuxuries = 0, $masterSuiteDecoration = "standard", $masterSuitePregnancyFertilityDrugs = 0, $masterSuitePregnancyFertilitySupplements = 0, $masterSuiteUpgradePregnancy = 0, $masterSuiteHyperPregnancy = 0]] +<</if>> <<if $seePreg != 0>> <br> diff --git a/src/uncategorized/multiImplant.tw b/src/uncategorized/multiImplant.tw index 970f9003755770c94183cd32302bcd52e411e746..8bbdb67517eaa65bcace721756ee85659f0d0933 100644 --- a/src/uncategorized/multiImplant.tw +++ b/src/uncategorized/multiImplant.tw @@ -130,6 +130,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <</if>> <<set $surgeryType = "restoreVoice">> <br><hr> + <<Enunciate $activeSlave>> <<include "Surgery Degradation">> <<else>> <br><hr> diff --git a/src/uncategorized/reBoomerang.tw b/src/uncategorized/reBoomerang.tw index 78a4e17788872b0ed6d9c6c9430972029f060e68..4fba34e6719a2dab81a914c48a7b16c20234221f 100644 --- a/src/uncategorized/reBoomerang.tw +++ b/src/uncategorized/reBoomerang.tw @@ -3,6 +3,7 @@ <<set $nextButton = "Continue", $nextLink = "RIE Eligibility Check", $returnTo = "RIE Eligibility Check", $showEncyclopedia = 1, $encyclopedia = "Enslaving People">> <<set $activeSlave = $boomerangSlave, $boomerangSlave = 0, _weeks = $boomerangWeeks, _pregWeeks = $boomerangWeeks, $boomerangWeeks = 0, _buyer = $boomerangBuyer, $boomerangBuyer = 0>> +<<SetBellySize $activeSlave>> Your work is interrupted by $assistantName with an alert from the entrance to the penthouse. <<if $assistant>> diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw index a1c4bad7e0b213b5a8a11bc93ef7d69b363c10f5..6dbdbea1d2ae5b772434ebfe077e4fbadacb4034 100644 --- a/src/uncategorized/remoteSurgery.tw +++ b/src/uncategorized/remoteSurgery.tw @@ -504,7 +504,7 @@ waist. <br> $pronounCap's -<<if $activeSlave.pregKnown == 1>> +<<if $activeSlave.preg > 0>> pregnant. <<elseif $activeSlave.bellyImplant > 0>> got a <<print $activeSlave.bellyImplant>>cc implant filled implant located in $possessive abdomen. diff --git a/src/uncategorized/seLethalPit.tw b/src/uncategorized/seLethalPit.tw index a01f97c0d69273e5a6076d32123254cab55f3495..2c9823202f936ff60db48bc76b7713acf932435c 100644 --- a/src/uncategorized/seLethalPit.tw +++ b/src/uncategorized/seLethalPit.tw @@ -195,7 +195,7 @@ You review the rules - the combatants will use their choice of swords, and the f <<if !canSee($fighterOne)>> Her lack of eyesight is certain death. -<<elseif ($fighterOne.eyes == -1 && ($fighterOne.eyewear != "corrective glasses" || $fighterOne.eyewear != "corrective contacts")) || ($fighterOne.eyes == 1 && ($fighterOne.eyewear == "blurring glasses" || $fighterOne.eyewear == "blurring contacts"))>> +<<elseif (($fighterOne.eyes == -1) && ($fighterOne.eyewear != "corrective glasses") && ($fighterOne.eyewear != "corrective contacts")) || ($fighterOne.eyes == 1 && ($fighterOne.eyewear == "blurring glasses" || $fighterOne.eyewear == "blurring contacts"))>> Her poor eyesight makes her a weaker combatant. <</if>> @@ -344,7 +344,7 @@ You review the rules - the combatants will use their choice of swords, and the f <<if !canSee($fighterTwo)>> Her lack of eyesight is certain death. -<<elseif ($fighterTwo.eyes == -1 && ($fighterTwo.eyewear != "corrective glasses" || $fighterTwo.eyewear != "corrective contacts")) || ($fighterTwo.eyes == 1 && ($fighterTwo.eyewear == "blurring glasses" || $fighterTwo.eyewear == "blurring contacts"))>> +<<elseif (($fighterTwo.eyes == -1) && ($fighterTwo.eyewear != "corrective glasses") && ($fighterTwo.eyewear != "corrective contacts")) || ($fighterTwo.eyes == 1 && ($fighterTwo.eyewear == "blurring glasses" || $fighterTwo.eyewear == "blurring contacts"))>> Her poor eyesight makes her a weaker combatant. <</if>> diff --git a/src/uncategorized/seNonlethalPit.tw b/src/uncategorized/seNonlethalPit.tw index ebe7f1aed5d032aff76c4c2c213cb234cd72f5e5..8b449ae7272197b7fa57c82209e35fdb4b80b136 100644 --- a/src/uncategorized/seNonlethalPit.tw +++ b/src/uncategorized/seNonlethalPit.tw @@ -154,7 +154,7 @@ You review the rules - the combatants are wearing light gloves, and the fight wi <<if !canSee($fighterOne)>> Her lack of eyesight means certain defeat. -<<elseif ($fighterOne.eyes == -1 && ($fighterOne.eyewear != "corrective glasses" || $fighterOne.eyewear != "corrective contacts")) || ($fighterOne.eyes == 1 && ($fighterOne.eyewear == "blurring glasses" || $fighterOne.eyewear == "blurring contacts"))>> +<<elseif (($fighterOne.eyes == -1) && ($fighterOne.eyewear != "corrective glasses") && ($fighterOne.eyewear != "corrective contacts")) || ($fighterOne.eyes == 1 && ($fighterOne.eyewear == "blurring glasses" || $fighterOne.eyewear == "blurring contacts"))>> Her poor eyesight makes her a weaker fighter. <</if>> @@ -292,7 +292,7 @@ You review the rules - the combatants are wearing light gloves, and the fight wi <<if !canSee($fighterTwo)>> Her lack of eyesight means certain defeat. -<<elseif ($fighterTwo.eyes == -1 && ($fighterTwo.eyewear != "corrective glasses" || $fighterTwo.eyewear != "corrective contacts")) || ($fighterTwo.eyes == 1 && ($fighterTwo.eyewear == "blurring glasses" || $fighterTwo.eyewear == "blurring contacts"))>> +<<elseif (($fighterTwo.eyes == -1) && ($fighterTwo.eyewear != "corrective glasses") && ($fighterTwo.eyewear != "corrective contacts")) || ($fighterTwo.eyes == 1 && ($fighterTwo.eyewear == "blurring glasses" || $fighterTwo.eyewear == "blurring contacts"))>> Her poor eyesight makes her a weaker fighter. <</if>> diff --git a/src/utility/assayWidgets.tw b/src/utility/assayWidgets.tw index 8ef6a6745593649b5e5ab3114e993a0da0ce5d84..2f9efc0e72b9ac1276afb1ec62acd80c99815f0a 100644 --- a/src/utility/assayWidgets.tw +++ b/src/utility/assayWidgets.tw @@ -1540,7 +1540,7 @@ <<if !canSee($args[0])>> <<set $deadliness -= 8>> -<<elseif ($args[0].eyes == -1 && ($args[0].eyewear != "corrective glasses" || $args[0].eyewear != "corrective contacts")) || ($args[0].eyes == 1 && ($args[0].eyewear == "blurring glasses" || $args[0].eyewear == "blurring contacts"))>> +<<elseif (($args[0].eyes == -1) && ($args[0].eyewear != "corrective glasses") && ($args[0].eyewear != "corrective contacts")) || ($args[0].eyes == 1 && ($args[0].eyewear == "blurring glasses" || $args[0].eyewear == "blurring contacts"))>> <<set $deadliness -= 1>> <</if>> diff --git a/src/utility/descriptionWidgetsStyle.tw b/src/utility/descriptionWidgetsStyle.tw index 51bf9c1b397bc6acf0ae37d5ed49f0fbff590825..f0b1174b360148522f3a18bf5d1587ed70fa0885 100644 --- a/src/utility/descriptionWidgetsStyle.tw +++ b/src/utility/descriptionWidgetsStyle.tw @@ -2185,7 +2185,7 @@ $possessiveCap <<elseif $activeSlave.nails == 8>> $possessiveCap nails are shiny and metallic. <<elseif $activeSlave.nails == 9>> - $possessiveCap nails are shiny, mettalic and color-coordinated with $possessive $activeSlave.hColor hair. + $possessiveCap nails are shiny, metallic and color-coordinated with $possessive $activeSlave.hColor hair. <<else>> $possessiveCap nails are neatly clipped. <</if>> diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw index 4baa7c953f193bca888a5c4bc9017bd8870a5bc4..e3e89387b3393638f70338517e24c616979e2550 100644 --- a/src/utility/miscWidgets.tw +++ b/src/utility/miscWidgets.tw @@ -47,7 +47,12 @@ <<if $activeSlave.tankBaby == 2>> She thinks of losing her anal virginity to her <<WrittenMaster $activeSlave>> a @@.hotpink;necessity.@@ She expects her asshole to be seeing a lot more attention now. <<else>> - She thinks of losing her anal virginity to you as a @@.hotpink;connection@@ with her beloved <<WrittenMaster $activeSlave>>. She looks forward to having her asshole fucked by you again. + She thinks of losing her anal virginity to you as a @@.hotpink;connection@@ with her beloved <<WrittenMaster $activeSlave>>. + <<if ($activeSlave.fetishKnown && $activeSlave.fetish == "buttslut") || ($activeSlave.energy > 95) || (($activeSlave.attrXY >= 85) && ($PC.dick != 0)) || (($activeSlave.attrXX >= 85) && ($PC.dick == 0))>> + She can't wait to be fucked in the ass by you again. + <<else>> + She looks forward to having her asshole fucked by you again. + <</if>> <</if>> <<set $activeSlave.devotion += 4>> <<elseif ($activeSlave.devotion > 20)>> @@ -91,7 +96,12 @@ <<if $activeSlave.tankBaby == 2>> She thinks of losing her virginity to her <<WrittenMaster $activeSlave>> a @@.hotpink;necessity to be happy.@@ She expects her pussy to be seeing a lot more attention in the future. <<else>> - @@.hotpink;She enjoys losing her cherry to you.@@ She looks forward to having her pussy fucked by you again. + @@.hotpink;She enjoys losing her cherry to you.@@ + <<if ($activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy") || ($activeSlave.energy > 95) || (($activeSlave.attrXY >= 85) && ($PC.dick != 0)) || (($activeSlave.attrXX >= 85) && ($PC.dick == 0))>> + She can't wait to have her pussy fucked by you again. + <<else>> + She looks forward to having her pussy fucked by you again. + <</if>> <</if>> <<set $activeSlave.devotion += 4>> <<elseif $activeSlave.devotion > 20>>