diff --git a/artTools/vector_revamp_layer_split.py b/artTools/vector_revamp_layer_split.py new file mode 100644 index 0000000000000000000000000000000000000000..51c4dcfff12034146a10a396dddb501ef574da40 --- /dev/null +++ b/artTools/vector_revamp_layer_split.py @@ -0,0 +1,119 @@ +#!/usr/bin/env python3 + +''' +Application for splitting groups from one SVG file into separate files + +Usage: +python3 vector_layer_split.py infile format outdir + +Usage Example: +python3 vector_layer_split.py vector_source.svg tw ../src/art/vector/layers/ +''' + +import lxml.etree as etree +import sys +import os +import copy +import re +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", +} + +tree = etree.parse(input_file) +inkscape_svg_fixup.fix(tree) + +# prepare output template +template = copy.deepcopy(tree) +root = template.getroot() + +# remove all svg root attributes except document size +for a in root.attrib: + 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+'" + +# 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) +# template preparation finished + +# prepare regex for later use +regex_xmlns = re.compile(' xmlns[^ ]+',) +regex_space = re.compile('[>][ ]+[<]',) + +# find all groups +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 + 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")) diff --git a/artTools/vector_revamp_source.svg b/artTools/vector_revamp_source.svg new file mode 100644 index 0000000000000000000000000000000000000000..46738bfbed56859d2a1db7ed99de6b77625f0024 --- /dev/null +++ b/artTools/vector_revamp_source.svg @@ -0,0 +1,6292 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + x="0px" + y="0px" + viewBox="0 0 560 1000" + xml:space="preserve" + id="svg4356" + sodipodi:docname="vector_revamp_source.svg" + inkscape:version="0.92.2 (5c3e80d, 2017-08-06)" + width="560" + height="1000" + enable-background="new"><metadata + id="metadata4362"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><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></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="1" + inkscape:cx="24.896814" + inkscape:cy="450.46059" + inkscape:window-x="69" + inkscape:window-y="-9" + inkscape:window-maximized="1" + inkscape:current-layer="Feet" + 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="true" + inkscape:lockguides="true" /><style + type="text/css" + id="style"> + /* please maintain these definitions manually */ + .white{fill:#FFFFFF;} + .skin{fill:#F6E0E8;} + .head{} + .torso{} + .boob{} + .penis{} + .scrotum{} + .areola{fill:#D76B93;} + .labia{fill:#D76B93;} + .hair{fill:#3F403F;} + .shoe{fill:#3E65B0;} + .shoe_shadow{fill:#15406D;} + .smart_piercing{fill:#4DB748;} + .steel_piercing{fill:#787878;} + .steel_chastity{fill:#BABABA;} + .gag{fill:#BF2126;} + .shadow{fill:#010101;} + .glasses{fill:#010101;} + .lips{fill:#de8787;} + .eyeball{fill:#ffffff;} + .iris{fill:#55ddff;} + .highlight1{fill:#ffffff;} + .highlight2{fill:#ffffff;opacity:0.58823529;} + .highlight3{fill:#ffffff;fill-opacity:0.19607843;} + .highlightStrong{fill:#ffffff;} + .shade1{fill:#623729;} + .shade2{fill:#764533;} + .shade3{fill:#88503a;} + .shade4{fill:#574b6f;} + .armpit_hair{fill:#3F403F;} + .pubic_hair{fill:#3F403F;} + .muscle_tone{fill:#010101;}</style><g + inkscape:groupmode="layer" + id="Original_Canvas_" + inkscape:label="Original_Canvas_" + style="display:inline;opacity:1"><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" /></g></g><g + inkscape:groupmode="layer" + id="Arm_" + style="display:inline;opacity:1" + inkscape:label="Arm_" + sodipodi:insensitive="true"><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" /><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" /><path + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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" /></g><g + inkscape:groupmode="layer" + id="Arm_Right_Low" + style="display:inline;opacity:1" + inkscape:label="Arm_Right_Low"><path + sodipodi:nodetypes="cccccccccccccccccccccccccccc" + inkscape:connector-curvature="0" + id="path6858" + d="m 271.15625,190.83398 c -10e-4,4.6e-4 -8.26074,0.52813 -17.10937,12.11719 -1.95254,1.86976 -4.95834,7.89234 -5.26368,13.1211 -1.71092,6.18845 -0.1326,11.40008 0.002,11.34961 -0.19861,0 -8.95387,22.74833 -10.89063,34.11914 -4.73894,17.98871 -5.67054,26.42171 -7.78906,36.2246 -3.17908,9.89918 -4.89436,15.96148 -5.71485,19.94336 -5.06993,6.85112 -8.10421,13.34386 -8.54687,20.41211 -2.24109,9.40174 -4.38422,26.77908 -4.7832,46.10157 -3.50027,22.27819 -5.65754,42.50139 -5.24317,42.45995 -0.7027,2.24865 -3.2029,17.94008 -2.65136,16.86036 0.0698,2.98489 2.21741,10.2966 2.64062,10.08203 -3.09584,18.22842 -1.13432,24.9636 -0.20117,33.41406 0.86351,0.5359 0.75775,1.60998 3.14258,1.35156 1.54951,3.84452 3.86687,4.77729 6.75781,4.70704 1.90524,2.23359 3.84428,4.14478 6.83789,3.2539 2.18731,2.68613 4.46787,2.41076 6.95117,1.625 3.94723,-0.66167 6.57922,-2.7601 8.67188,-5.44336 -0.0772,-2.36656 0.089,-4.70108 0.13867,-7.22656 1.08731,-0.11312 1.98448,-0.49494 2.44141,-1.2207 4.06786,-4.29003 0.31185,-7.07578 -1.02344,-10.23828 -0.0572,-1.85161 0.0658,-4.67587 -1.40625,-6.40039 -1.58155,-5.30494 -11.94648,-13.93928 -12.09961,-13.89844 -0.062,-2.40524 -0.10595,-4.80553 -0.79883,-7.38281 -0.1713,-7.88139 1.18999,-16.32513 1.13866,-20.25192 6.09926,-36.72474 24.81008,-86.9047 23.00389,-104.64057 7.91689,-17.39493 20.65345,-84.67624 20.02344,-84.86524 0.59049,-15.19144 -1.41369,-30.38287 1.77147,-45.57431 z" + style="fill:#000000" /><path + d="m 271.15625,190.83398 c 0,0 -6.00932,-0.18284 -17.10937,12.11719 -1.50978,1.67298 -4.34625,7.6203 -5.26368,13.1211 -0.98724,5.91707 0.002,11.34961 0.002,11.34961 0,0 -8.36237,22.74833 -10.89063,34.11914 -3.94958,17.76318 -5.33355,26.32543 -7.78906,36.2246 -2.45551,9.89918 -4.67817,15.96148 -5.71485,19.94336 -0.29595,1.13676 -6.38568,7.78114 -8.54687,20.41211 -2.23481,13.06125 -3.14408,30.49951 -4.7832,46.10157 -2.32818,22.16098 -5.24317,42.45995 -5.24317,42.45995 0,0 -2.24718,14.88177 -2.65136,16.86036 0.16806,1.41327 2.2846,9.22162 2.64062,10.08203 -1.75274,15.94516 -0.99362,24.72441 -0.20117,33.41406 0.88506,0.50511 0.9952,1.27076 3.14258,1.35156 1.66848,3.70176 4.14973,4.43786 6.75781,4.70704 1.95491,2.12872 4.13447,3.53216 6.83789,3.2539 2.28362,2.38115 4.61893,1.9324 6.95117,1.625 3.79859,-0.8227 6.24384,-3.12343 8.67188,-5.44336 -0.19329,-2.40878 -0.23197,-4.81778 0.13867,-7.22656 0.91387,-0.33611 1.86874,-0.64375 2.44141,-1.2207 3.60965,-4.46626 0.289,-7.08457 -1.02344,-10.23828 -0.27193,-1.76901 -0.25643,-4.55193 -1.40625,-6.40039 -2.02253,-5.18735 -12.09961,-13.89844 -12.09961,-13.89844 l -0.79883,-7.38281 c -0.93798,-8.23224 0.71057,-12.58293 1.06641,-19.01954 l 0.1445,-1.90225 c 6.39226,-48.88511 24.38187,-87.12412 22.93164,-103.9707 6.9,-17.7 20.02344,-84.86524 20.02344,-84.86524 z" + id="R" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccsscsscccccccccccccccccccc" + class="skin" /><path + inkscape:connector-curvature="0" + d="m 238.37545,485.13693 c -3.21198,-5.29673 -5.55722,-4.86012 -7.09647,-5.19822 2.61397,0.89603 3.06106,1.2881 7.09647,5.19822 z" + class="shadow" + id="XMLID_511_-7-7-2" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 231.44183,480.06319 c -0.82136,4.89077 -0.38222,4.57738 0.18791,6.45803 -0.31103,-1.79147 -0.42645,-1.55565 -0.18791,-6.45803 z" + class="shadow" + id="XMLID_511_-7-7-1-8" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 238.34797,485.14132 c -3.36667,0.1564 -3.01191,0.40551 -5.09959,1.39553 2.06553,-0.79147 2.34386,-0.71189 5.09959,-1.39553 z" + class="shadow" + id="XMLID_511_-7-7-1-5-6" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 233.26996,486.52413 c -0.72996,-0.0584 -1.00098,0.0383 -1.64725,-0.0263 0.67334,-0.0766 0.82862,-0.19236 1.64725,0.0263 z" + class="shadow" + id="XMLID_511_-7-7-1-5-7-8" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 233.60737,476.14891 c -2.91668,3.78139 -5.8699,7.82362 -6.01695,10.12614 0.67334,-2.15084 3.59872,-6.31751 6.01695,-10.12614 z" + class="shadow" + id="XMLID_511_-7-7-1-3-1" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 231.67059,486.51243 c -0.44069,2.24565 -0.44065,2.53137 -0.17006,4.84494 0.027,-2.25028 -8.9e-4,-2.53891 0.17006,-4.84494 z" + class="shadow" + id="XMLID_511_-7-7-1-3-8-1" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 233.26486,486.52348 c 1.59776,1.48331 2.10493,2.63081 2.8727,4.56873 -0.45029,-2.4602 -1.0748,-3.20182 -2.8727,-4.56873 z" + class="shadow" + id="XMLID_511_-7-7-1-3-8-6-8" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 223.67488,489.00293 c -2.72762,3.92201 -1.42836,5.1838 -1.35666,7.4082 0.0124,-2.24458 -1.06157,-3.59957 1.35666,-7.4082 z" + class="shadow" + id="XMLID_511_-7-7-1-3-83-47" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 216.31402,486.23566 c -2.20575,4.25013 -1.28443,4.62391 -0.79086,6.92643 -0.32821,-2.24459 -1.06488,-2.78968 0.79086,-6.92643 z" + class="shadow" + id="XMLID_511_-7-7-1-3-83-4-5" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 209.19191,482.61276 c -1.69128,4.25504 -0.69622,3.5111 -0.43702,5.81362 0.003,-2.22896 -1.10982,-1.62999 0.43702,-5.81362 z" + class="shadow" + id="XMLID_511_-7-7-1-3-83-43-5" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 236.64537,334.13444 c 7.06021,-9.58357 6.87062,-4.51245 12.64676,-12.89388 -5.95381,6.59708 -7.27909,4.1666 -12.64676,12.89388 z" + class="shadow" + id="XMLID_511_-7-2" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 226.7125,330.8948 c 2.03004,-7.72779 -0.11206,-3.27501 -0.69988,-11.9658 -0.56212,8.05549 2.57621,4.47596 0.69988,11.9658 z" + class="shadow" + id="XMLID_511_-7-2-0" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Arm_Right_Mid" + style="display:inline" + inkscape:label="Arm_Right_Mid"><path + style="display:inline;opacity:1;fill:#000000" + d="m 271.15625,190.83398 c -10e-4,4.6e-4 -8.26074,0.52813 -17.10937,12.11719 -1.95254,1.86976 -4.95834,7.89234 -5.26368,13.1211 -1.71092,6.18845 -0.1326,11.40008 0.002,11.34961 -0.19861,0 -8.95387,22.74833 -10.89063,34.11914 -4.73894,17.98871 -5.67054,26.42171 -7.78906,36.2246 -3.17908,9.89918 -4.89436,15.96148 -5.71485,19.94336 -5.06993,6.85112 -3.83658,27.45999 1.73218,31.83549 6.46958,7.18051 19.56181,18.80628 35.24542,30.09973 16.35743,15.52431 31.7849,28.77666 31.98592,28.41196 1.45277,1.85464 12.9542,12.81771 12.37815,11.75086 2.49735,1.63637 9.73647,4.01722 9.79996,3.54699 13.25237,12.89318 19.91118,15.10009 27.39877,19.12712 0.93127,-0.4069 1.75565,0.28969 2.89619,-1.82061 4.04485,0.9058 6.12792,-0.47298 7.7106,-2.89323 2.92029,-0.30127 5.5943,-0.81332 6.55954,-3.78379 3.45298,-0.27672 4.52039,-2.31078 5.2826,-4.80141 1.69512,-3.6256 1.46086,-6.98356 0.43901,-10.22932 -1.99242,-1.27938 -3.82034,-2.741 -5.87162,-4.21503 0.52388,-0.95948 0.7186,-1.91488 0.38031,-2.70296 -1.22399,-5.78391 -5.64919,-4.27207 -9.01091,-4.96722 -1.55706,-1.00364 -3.81274,-2.7076 -6.06804,-2.47414 -5.26554,-1.70815 -18.25679,1.92653 -18.31006,2.0758 -2.01565,-1.31386 -4.01697,-2.63976 -6.53228,-3.53178 -6.58669,-4.3314 -12.76672,-10.24385 -16.02915,-12.42993 -26.77777,-25.86229 -53.20972,-51.69811 -55.01591,-69.43398 7.91689,-17.39493 20.65345,-84.67624 20.02344,-84.86524 0.59049,-15.19144 -1.41369,-30.38287 1.77147,-45.57431 z" + id="path3186" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccccccccccc" /><path + class="skin" + sodipodi:nodetypes="ccccsscsscccccccccccccccccccc" + inkscape:connector-curvature="0" + id="path3188" + d="m 271.15625,190.83398 c 0,0 -6.00932,-0.18284 -17.10937,12.11719 -1.50978,1.67298 -4.34625,7.6203 -5.26368,13.1211 -0.98724,5.91707 0.002,11.34961 0.002,11.34961 0,0 -8.36237,22.74833 -10.89063,34.11914 -3.94958,17.76318 -5.33355,26.32543 -7.78906,36.2246 -2.45551,9.89918 -4.67817,15.96148 -5.71485,19.94336 -0.29595,1.13676 -7.44168,22.88828 1.73218,31.83549 9.48636,9.252 23.32893,19.89639 35.24542,30.09973 16.92605,14.49271 31.98592,28.41196 31.98592,28.41196 0,0 10.97835,10.29527 12.37815,11.75086 1.25905,0.66361 8.88947,3.35187 9.79996,3.54699 12.13452,10.4916 19.79407,14.8485 27.39877,19.12712 0.91815,-0.44211 1.61108,-0.0983 2.89619,-1.82061 3.99482,0.72683 6.00895,-0.89851 7.7106,-2.89323 2.86213,-0.40168 5.25455,-1.3999 6.55954,-3.78379 3.25651,-0.52908 4.21224,-2.70662 5.2826,-4.80141 1.47818,-3.59459 0.97138,-6.91359 0.43901,-10.22932 -2.09307,-1.20775 -4.09857,-2.54294 -5.87162,-4.21503 0.24184,-0.94321 0.5304,-1.90402 0.38031,-2.70296 -1.62912,-5.50663 -5.66939,-4.25824 -9.01091,-4.96722 -1.6109,-0.77996 -3.89354,-2.37194 -6.06804,-2.47414 -5.41896,-1.27832 -18.31006,2.0758 -18.31006,2.0758 l -6.53228,-3.53178 c -7.31065,-3.89922 -9.95748,-7.72551 -15.05541,-11.6711 l -1.4843,-1.19845 c -36.62429,-33.00419 -53.05512,-52.14778 -54.50535,-68.99436 6.9,-17.7 20.02344,-84.86524 20.02344,-84.86524 z" /><path + sodipodi:nodetypes="ccc" + id="path3190" + class="shadow" + d="m 359.96083,414.41916 c -6.184,-0.36101 -7.15535,1.81781 -8.30722,2.89336 2.22113,-1.64386 2.79767,-1.7895 8.30722,-2.89336 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3192" + class="shadow" + d="m 351.84852,417.24907 c 3.56093,3.45167 3.55208,2.91224 5.42413,3.51001 -1.65158,-0.7605 -1.52291,-0.53165 -5.42413,-3.51001 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3194" + class="shadow" + d="m 359.94885,414.44428 c -1.78171,2.86085 -1.37528,2.7101 -1.7448,4.99089 0.52044,-2.14988 0.74391,-2.33389 1.7448,-4.99089 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3196" + class="shadow" + d="m 233.26996,486.52413 c -0.72996,-0.0584 -1.00098,0.0383 -1.64725,-0.0263 0.67334,-0.0766 0.82862,-0.19236 1.64725,0.0263 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3198" + class="shadow" + d="m 349.8544,413.24474 c 1.45845,4.5474 3.11093,9.27291 4.92336,10.7006 -1.38888,-1.77496 -3.15963,-6.54816 -4.92336,-10.7006 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3200" + class="shadow" + d="m 357.2886,420.72046 c 1.59897,1.6372 1.83425,1.79931 3.89279,2.88939 -1.83755,-1.2992 -2.09103,-1.44003 -3.89279,-2.88939 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3202" + class="shadow" + d="m 358.2024,419.41402 c 2.12802,-0.47385 3.36067,-0.24028 5.39203,0.22725 -2.28124,-1.02532 -3.24627,-0.93195 -5.39203,-0.22725 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3204" + class="shadow" + d="m 354.80193,428.71736 c 1.68152,4.47153 3.45776,4.11776 5.33,5.321 -1.84113,-1.28394 -3.56627,-1.16856 -5.33,-5.321 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3206" + class="shadow" + d="m 348.34631,433.20791 c 2.24783,4.22802 3.07842,3.68152 5.25439,4.58173 -2.03443,-1.00349 -2.90129,-0.70625 -5.25439,-4.58173 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3208" + class="shadow" + d="m 341.32165,437.01632 c 2.54382,3.8072 2.49593,2.56571 4.5389,3.6589 -1.83361,-1.26734 -1.97191,-0.0112 -4.5389,-3.6589 z" + inkscape:connector-curvature="0" /><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" + id="path3230" + sodipodi:nodetypes="ccsccccccccccccccccsssccccccc" /><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" /><path + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + 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" /></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" /><path + inkscape:connector-curvature="0" + d="m 376.26653,307.61106 c -1.88158,6.09632 1.78864,14.58239 5.2492,26.09205 2.46473,8.19757 1.44095,16.36694 3.6408,24.0503 3.71989,12.99237 10.12989,25.00635 12.07785,36.18157 4.97043,28.51471 7.02391,41.093 7.02391,41.093 0.93429,4.44769 1.11063,8.61058 1.13471,8.20116 -0.50858,2.50315 -1.84566,4.26985 -3.07415,6.13307 -4.24317,4.44186 -10.16962,8.21041 -12.54906,13.39776 -1.35273,1.84846 -1.33633,4.63248 -1.65625,6.40149 -1.54405,3.15371 -5.45081,5.77187 -1.20417,10.23813 0.67374,0.57695 1.79742,0.88394 2.87256,1.22005 0.43604,2.40878 0.39022,4.81755 0.16282,7.22633 2.85652,2.31993 5.73383,4.62055 10.20275,5.44325 2.74382,0.3074 5.49067,0.75728 8.17729,-1.62387 3.18049,0.27826 5.74573,-1.12514 8.04562,-3.25386 3.06833,-0.26918 5.98639,-1.00499 7.94931,-4.70674 2.52633,-0.0808 2.65601,-0.84635 3.69726,-1.35146 0.93229,-8.68965 1.82726,-17.46971 -0.23479,-33.41487 0.41885,-0.86041 0.90873,-1.54325 1.10644,-2.95652 -0.4755,-1.97859 -0.64423,-3.89583 -0.8344,-5.81736 0,0 -1.32658,-10.15105 -4.03375,-27.40667 -3.28397,-20.9322 -0.61749,-47.35642 -3.56145,-61.93369 -5.07086,-25.10879 -12.88754,-33.92208 -16.17665,-44.92823 -1.06963,-9.28742 -6.90951,-43.83017 -10.48131,-76.21312 1.6744,-16.82464 3.75524,-26.77216 -7.88563,-41.90342 -8.1,-7.9 -27.20662,-9.05478 -27.20662,-9.05478 -2.50151,5.59877 -7.25637,8.55837 -2.40116,26.5298 2.34527,6.04617 2.69274,12.23744 3.13339,18.91848 3.16851,28.04891 8.85591,61.81475 16.82548,83.43815 z" + class="skin" + id="L" + sodipodi:nodetypes="csssccccccccccccccccssccccccc" /><path + inkscape:connector-curvature="0" + d="m 400.21324,339.59811 c 2.28724,-7.90419 0.16428,-14.75962 4.08426,-29.01888 -3.08119,14.24267 -0.8821,20.11482 -4.08426,29.01888 z" + class="shadow" + id="XMLID_511_-7" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 389.91598,480.42287 c 3.56887,-5.29673 6.17469,-4.86012 7.88496,-5.19822 -2.90441,0.89603 -3.40117,1.2881 -7.88496,5.19822 z" + class="shadow" + id="XMLID_511_-7-7" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 397.62,475.34913 c 0.91262,4.89077 0.42469,4.57738 -0.20879,6.45803 0.34559,-1.79147 0.47383,-1.55565 0.20879,-6.45803 z" + class="shadow" + id="XMLID_511_-7-7-1" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 389.94651,480.42726 c 3.74075,0.1564 3.34657,0.40551 5.66621,1.39553 -2.29503,-0.79147 -2.60429,-0.71189 -5.66621,-1.39553 z" + class="shadow" + id="XMLID_511_-7-7-1-5" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 395.58875,481.81007 c 0.81106,-0.0584 1.11219,0.0383 1.83027,-0.0263 -0.74815,-0.0766 -0.92069,-0.19236 -1.83027,0.0263 z" + class="shadow" + id="XMLID_511_-7-7-1-5-7" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 395.21385,471.43485 c 3.24075,3.78139 6.52211,7.82362 6.6855,10.12614 -0.74816,-2.15084 -3.99858,-6.31751 -6.6855,-10.12614 z" + class="shadow" + id="XMLID_511_-7-7-1-3" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 397.36582,481.79837 c 0.48966,2.24565 0.48961,2.53137 0.18896,4.84494 -0.03,-2.25028 9.9e-4,-2.53891 -0.18896,-4.84494 z" + class="shadow" + id="XMLID_511_-7-7-1-3-8" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 395.59441,481.80942 c -1.77529,1.48331 -2.33881,2.63081 -3.19189,4.56873 0.50033,-2.4602 1.19423,-3.20182 3.19189,-4.56873 z" + class="shadow" + id="XMLID_511_-7-7-1-3-8-6" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 406.58031,480.91449 c 2.78763,4.09389 1.63865,8.46444 1.80204,10.76696 -0.48254,-2.22896 0.88488,-6.95833 -1.80204,-10.76696 z" + class="shadow" + id="XMLID_511_-7-7-1-3-83" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 414.94951,479.59973 c 2.85013,4.01576 1.21881,6.60828 1.3822,8.9108 -0.29504,-2.24459 1.30472,-5.10217 -1.3822,-8.9108 z" + class="shadow" + id="XMLID_511_-7-7-1-3-83-4" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 422.63931,477.03646 c 2.78763,4.07826 1.5007,4.26397 1.66409,6.56649 -0.42004,-2.22896 1.02283,-2.75786 -1.66409,-6.56649 z" + class="shadow" + id="XMLID_511_-7-7-1-3-83-43" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Arm_Left_Mid" + inkscape:label="Arm_Left_Mid" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 376.26653,307.61106 c -2.14507,6.09632 -0.33627,-1.11766 -8.28781,8.24803 -6.41273,5.73171 -13.73675,9.1208 -19.21976,14.90883 -9.89974,9.39391 -17.1364,21.01569 -25.69503,28.19124 -22.97544,17.58176 -32.54807,26.04377 -32.44767,26.17476 -4.71971,3.25593 -6.98177,5.17073 -6.60604,4.99068 -2.25247,0.42386 -4.54216,0.30428 -6.85349,0.3077 -5.97727,-2.19144 -12.14538,-5.25725 -17.81681,-4.42042 -2.42192,-0.43726 -4.77865,1.00481 -6.39623,1.67643 -3.50625,0.19028 -8.02445,-2.1659 -9.52507,3.94239 -0.31164,0.93267 -0.10386,2.09675 0.336,3.10278 -2.02172,1.40151 -4.15962,2.52147 -6.22906,3.66676 -0.9935,3.41188 -1.85756,6.89293 0.22449,11.56178 0.89202,2.85535 1.71797,5.68378 5.40606,6.34661 1.00146,3.18589 3.51876,4.70427 6.7648,5.43665 1.53016,2.74488 3.34207,5.18227 7.98617,4.64392 0.89042,2.39641 1.99385,1.92846 2.98313,2.56849 8.0794,-3.30439 16.22958,-6.65429 29.05616,-16.50298 0.88216,0.0148 1.51394,0.30053 3.12066,-0.47613 1.62864,-1.24752 3.16542,-2.38431 4.67149,-3.56582 0.0732,0.0997 8.45625,-5.76864 21.95816,-16.88893 16.563,-11.99664 40.36676,-23.22176 52.33009,-33.31707 19.61377,-15.66755 35.65223,-41.26319 32.25561,-52.31081 -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" + class="shadow" + id="path3147" + sodipodi:nodetypes="ccccccccccccccccccccccccccccc" /><path + sodipodi:nodetypes="csssccccccccccccccccssccccccc" + id="path3149" + class="skin" + d="m 376.26653,307.61106 c -1.88158,6.09632 0.0721,-0.38679 -8.28781,8.24803 -5.95419,6.15001 -13.58527,9.24086 -19.21976,14.90883 -9.52778,9.5844 -16.88934,21.04002 -25.69503,28.19124 -22.4686,18.24708 -32.44767,26.17476 -32.44767,26.17476 -3.42707,2.98497 -6.9752,5.16935 -6.60604,4.99068 -2.43327,0.77692 -4.62773,0.47137 -6.85349,0.3077 -5.94727,-1.53772 -12.12776,-4.87332 -17.81681,-4.42042 -2.27347,-0.27933 -4.69587,1.09288 -6.39623,1.67643 -3.50625,0.19028 -7.69738,-1.94327 -9.52507,3.94239 -0.17505,0.86957 0.10502,2.00026 0.336,3.10278 -1.89015,1.55553 -4.01532,2.6904 -6.22906,3.66676 -0.63201,3.62524 -1.23701,7.25921 0.22449,11.56178 1.06993,2.54525 2.01696,5.16263 5.40606,6.34661 1.30836,2.91224 3.78469,4.46715 6.7648,5.43665 1.73156,2.54731 3.79719,4.73584 7.98617,4.64392 1.30274,2.16604 2.03431,1.90586 2.98313,2.56849 8.04065,-3.42448 16.14203,-6.92564 29.05616,-16.50298 0.95542,-0.054 1.79046,0.0406 3.12066,-0.47613 1.49535,-1.38016 3.08678,-2.46258 4.67149,-3.56582 0,0 8.21468,-6.10923 21.95816,-16.88893 16.67175,-13.07648 41.04026,-23.63702 52.33009,-33.31707 19.4463,-16.67353 35.54472,-41.30466 32.25561,-52.31081 -1.06963,-9.28742 -6.90951,-43.83017 -10.48131,-76.21312 1.6744,-16.82464 3.75524,-26.77216 -7.88563,-41.90342 -8.1,-7.9 -27.20662,-9.05478 -27.20662,-9.05478 -2.50151,5.59877 -7.25637,8.55837 -2.40116,26.5298 2.34527,6.04617 2.69274,12.23744 3.13339,18.91848 3.16851,28.04891 8.85591,61.81475 16.82548,83.43815 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3151" + class="shadow" + d="m 383.41945,309.3693 c 2.28724,-7.90419 0.16428,-14.75962 4.08426,-29.01888 -3.08119,14.24267 -0.8821,20.11482 -4.08426,29.01888 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3153" + class="shadow" + d="m 243.99178,394.75453 c 6.36467,0.53211 7.2545,3.0199 8.38384,4.34803 -2.19884,-2.09847 -2.78341,-2.3409 -8.38384,-4.34803 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3155" + class="shadow" + d="m 252.17869,399.00532 c -3.82444,3.18216 -3.78884,2.60335 -5.7396,2.96762 1.73249,-0.57209 1.58917,-0.34512 5.7396,-2.96762 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3157" + class="shadow" + d="m 389.94651,480.42726 c 3.74075,0.1564 3.34657,0.40551 5.66621,1.39553 -2.29503,-0.79147 -2.60429,-0.71189 -5.66621,-1.39553 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3159" + class="shadow" + d="m 395.58875,481.81007 c 0.81106,-0.0584 1.11219,0.0383 1.83027,-0.0263 -0.74815,-0.0766 -0.92069,-0.19236 -1.83027,0.0263 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3161" + class="shadow" + d="m 254.42221,394.99561 c -1.72043,4.67349 -3.64876,9.50965 -5.57914,10.77534 1.51274,-1.7022 3.5648,-6.57205 5.57914,-10.77534 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3163" + class="shadow" + d="m 246.42463,401.92902 c -1.72159,1.52278 -1.97104,1.6621 -4.1374,2.52807 1.94983,-1.12376 2.21692,-1.23748 4.1374,-2.52807 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3165" + class="shadow" + d="m 245.55098,400.388 c -2.1608,-0.82632 -3.4374,-0.75858 -5.54527,-0.55809 2.39176,-0.76317 3.37763,-0.51913 5.54527,0.55809 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3167" + class="shadow" + d="m 251.69058,409.54203 c -2.21424,4.43034 -6.59008,5.55902 -8.52045,6.8247 1.71049,-1.50842 6.50611,-2.62141 8.52045,-6.8247 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3169" + class="shadow" + d="m 256.9204,416.20694 c -2.11555,4.4468 -5.17445,4.28717 -7.10483,5.55286 1.81559,-1.35236 5.09049,-1.34957 7.10483,-5.55286 z" + inkscape:connector-curvature="0" /><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" + 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="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" + 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></g><g + inkscape:groupmode="layer" + id="Arm_Hightlights_" + inkscape:label="Arm_Hightlights_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Arm_Hightlights2" + inkscape:label="Arm_Hightlights2" + style="display:inline"><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-7-7-7" + class="highlight2" + d="m 265.77944,193.45942 c -4.10072,1.03769 -6.4965,4.8075 -7.88783,5.69551 1.54928,-0.0618 6.54674,-0.73329 7.88783,-5.69551 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-7-7-7-7" + class="highlight2" + d="m 376.43971,182.92074 c 1.39814,3.96435 9.20533,8.8149 11.5112,9.59607 -0.012,-1.47027 -4.46242,-9.07782 -11.5112,-9.59607 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-7-7-7-7-9" + class="highlight2" + d="m 376.65484,195.65209 c -0.43813,1.40732 0.73929,4.4073 1.22362,5.11026 0.30485,-0.41575 0.64886,-3.48691 -1.22362,-5.11026 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0" + class="highlight2" + d="m 393.88595,237.77147 c -0.32539,0.74013 0.13184,2.44777 0.35259,2.86072 0.19174,-0.20786 0.56818,-1.86069 -0.35259,-2.86072 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4" + class="highlight2" + d="m 385.14008,263.75716 c -0.78222,2.40877 0.79804,8.13462 1.18455,9.61072 0.30165,-0.60698 1.05052,-6.02219 -1.18455,-9.61072 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4-2" + class="highlight2" + d="m 395.8318,320.41341 c -0.78222,2.40877 0.26679,5.72837 0.6533,7.20447 0.30165,-0.60698 1.58177,-3.61594 -0.6533,-7.20447 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4-2-3" + class="highlight2" + d="m 403.73963,350.27896 c -0.78222,2.40877 7.11689,32.90779 7.5034,34.38389 0.30165,-0.60698 -5.26833,-30.79536 -7.5034,-34.38389 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4-2-3-9" + class="highlight2" + d="m 401.89462,412.05807 c -0.78222,2.40877 1.74189,13.28279 2.1284,14.75889 0.30165,-0.60698 0.10667,-11.17036 -2.1284,-14.75889 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4-2-3-9-9" + class="highlight2" + d="m 426.17396,448.15929 c -0.29986,0.92338 0.66774,5.09182 0.8159,5.65767 0.11563,-0.23268 0.0409,-4.28204 -0.8159,-5.65767 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4-2-3-9-9-9" + class="highlight2" + d="m 419.66199,478.73368 c -0.29986,0.92338 0.16774,2.27932 0.3159,2.84517 0.11563,-0.23268 0.5409,-1.46954 -0.3159,-2.84517 z" + inkscape:connector-curvature="0" /><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" + class="highlight2" + d="m 224.70264,318.95995 c 0.32134,5.04063 -7.00595,19.45209 -8.15426,21.83013 -0.30999,-1.13135 3.20436,-18.68405 8.15426,-21.83013 z" + inkscape:connector-curvature="0" /><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" + class="highlight2" + d="m 212.63145,385.55078 c 1.44309,8.15138 -3.97322,45.41148 -7.54093,49.38775 2.98356,-1.72687 4.87317,-42.0146 7.54093,-49.38775 z" + inkscape:connector-curvature="0" /><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-5" + class="highlight2" + d="m 206.90405,453.66964 c 1.84328,3.70775 1.06078,14.41863 -0.7066,16.30014 1.40444,-0.81288 -0.54919,-12.82939 0.7066,-16.30014 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Arm_Hightlights1" + inkscape:label="Arm_Hightlights1" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 264.02548,194.63655 c -2.42677,0.3965 -4.07691,2.49696 -4.68327,3.78258 1.45536,-0.87497 3.7861,-2.37251 4.68327,-3.78258 z" + class="highlight1" + id="path1141-07" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 387.27371,191.22429 c -1.20741,-3.25929 -4.94338,-5.47961 -6.89118,-5.97258 1.60807,1.78204 4.69195,5.10987 6.89118,5.97258 z" + class="highlight1" + id="path1141-07-4" + sodipodi:nodetypes="ccc" /></g></g><g + inkscape:groupmode="layer" + id="Hair_Back" + style="display:inline;opacity:1" + inkscape:label="Hair_Back"><g + inkscape:label="Hair_Back_Messy" + style="display:inline;opacity:1" + id="Hair_Back_Messy" + inkscape:groupmode="layer"><path + inkscape:connector-curvature="0" + d="m 344.30213,163.49241 c -0.62532,-4.17031 -0.84807,-3.85928 -0.84705,-3.85979 0.0498,-0.0207 0.91983,3.55309 -2.00341,13.67755 0.2185,-4.91233 -0.45712,-7.08344 -0.43108,-7.08865 -0.57955,2.40428 -1.35935,4.80856 -2.10785,7.21284 -0.0209,0.003 -0.92981,-8.71701 -2.48909,-12.11531 -0.0451,12.50339 -4.62485,11.13036 -8.58845,27.84975 -1.13435,-9.03155 -3.32768,-17.57687 -10.9138,-21.79354 -0.67059,9.21684 -3.43836,18.7832 -5.79902,28.2989 -0.2739,-7.66902 -0.6167,-15.04148 -4.25842,-22.3501 -3.63359,11.75353 -2.84586,21.92003 -3.55767,32.63108 -7.97552,-10.84968 -12.35861,-24.22774 -12.18158,-24.31625 0.0152,0 -1.23598,5.00437 -0.50282,13.32661 -5.01363,-8.99968 -8.64441,-18.1795 -8.60106,-18.19684 0.0244,0.0105 0.44784,4.73472 1.82794,10.06693 -3.04966,-2.91491 -3.03295,-4.22634 -4.02795,-6.07813 -0.0681,-0.0119 0.66962,1.29253 1.4644,5.41992 -7.34076,-12.23961 -8.43093,-12.67841 -11.0848,-22.97368 0.70411,9.55503 -0.008,7.29224 1.48892,16.46521 -11.9477,-26.61774 -45.88518,-98.846887 12.60533,-112.069623 81.94109,-21.019875 64.37946,92.935353 60.00746,95.893123 z" + class="shadow" + id="path1690" + sodipodi:nodetypes="ccccccccccccccccccccc" /><path + sodipodi:nodetypes="ccccccccccccccccccccc" + id="path1692" + class="hair" + d="m 344.30213,163.49241 c -0.40157,-4.28218 -0.84705,-3.85979 -0.84705,-3.85979 0,0 0.64803,3.66634 -2.00341,13.67755 0.32859,-4.93435 -0.43108,-7.08865 -0.43108,-7.08865 l -2.10785,7.21284 c 0,0 -0.79146,-8.74007 -2.48909,-12.11531 -0.23337,12.44063 -4.62485,11.13036 -8.58845,27.84975 -1.07895,-9.03946 -3.11201,-17.60768 -10.9138,-21.79354 -0.8598,9.1853 -3.47853,18.77651 -5.79902,28.2989 -0.25695,-7.6775 -0.41188,-15.14389 -4.25842,-22.3501 -3.89213,11.6889 -2.88905,21.90923 -3.55767,32.63108 -7.81949,-10.9277 -12.18158,-24.31625 -12.18158,-24.31625 0,0 -1.51657,5.00437 -0.50282,13.32661 -4.86186,-9.06039 -8.60106,-18.19684 -8.60106,-18.19684 0,0 0.21265,4.63393 1.82794,10.06693 -2.9014,-2.97845 -2.88956,-4.28779 -4.02795,-6.07813 -0.0727,-0.008 0.44773,1.47744 1.4644,5.41992 -7.11313,-12.29652 -8.33772,-12.70171 -11.0848,-22.97368 0.52476,9.52514 -0.0641,7.28281 1.48892,16.46521 -11.31512,-26.61774 -45.10202,-98.846887 12.60533,-112.069623 81.43385,-20.018738 63.40041,92.478433 60.00746,95.893123 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Hair_Back_Neat" + style="display:inline;opacity:1" + inkscape:label="Hair_Back_Neat"><path + sodipodi:nodetypes="ccccccc" + id="path1713" + class="shadow" + d="m 341.03176,163.49241 c -19.2084,3.76854 -55.46085,5.32927 -62.59166,5.9475 -0.37549,-0.64869 -1.20645,-1.35626 -1.76009,-2.17128 0.32341,0.92552 0.56958,1.85103 0.27442,2.77655 -3.93849,0.62454 -6.85101,1.92929 -8.52918,3.06294 -0.25176,0.036 -45.53604,-90.431971 14.01326,-103.917842 83.39811,-21.246401 59.1124,93.977662 58.59325,94.302132 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 341.03176,163.49241 c -19.8314,2.62637 -55.8227,4.66587 -62.59166,5.9475 -0.22535,-0.72376 -1.02392,-1.44752 -1.76009,-2.17128 0.18666,0.92552 0.37515,1.85103 0.27442,2.77655 -4.02517,0.30673 -6.88398,1.80839 -8.52918,3.06294 0,0 -43.69409,-90.695106 14.01326,-103.917842 81.43385,-20.018738 58.59325,94.302132 58.59325,94.302132 z" + class="hair" + id="path1701" + sodipodi:nodetypes="ccccccc" /></g><g + inkscape:label="Hair_Back_Bun" + style="display:inline;opacity:1" + id="Hair_Back_Bun" + inkscape:groupmode="layer"><path + inkscape:connector-curvature="0" + d="M 296.71866,97.884396 C 286.62945,93.731299 283.972,75.602879 290.47374,64.267699 c 1.06126,-1.488966 4.23728,-3.124406 5.72445,-3.710227 -2.35642,0.482976 -3.54454,1.648735 -4.72615,2.784184 0.77444,-1.299041 1.45583,-3.097836 2.74335,-4.040515 2.80838,-2.798392 7.16974,-4.230205 11.96353,-4.543065 0.56185,-0.107968 9.03448,1.273229 11.87926,3.134681 -2.74807,-1.492501 -2.76361,-1.590076 -9.61963,-2.624171 7.48004,-0.931009 15.28704,1.245206 19.89921,5.460526 0.51267,0.343212 2.822,6.647219 2.72946,8.268796 -0.039,-3.284796 -1.13244,-3.890602 -2.12126,-6.785416 0.93515,1.079939 3.07758,3.249382 3.13102,4.345403 0.8369,2.441445 0.93832,5.062021 -0.0999,7.77625 -2.70733,4.735086 -3.7116,4.633021 -4.98227,5.831302 1.64782,-1.132067 0.84177,0.461309 4.37899,-4.965447 -4.53587,12.907106 -23.29612,27.36021 -34.65518,22.684396 z" + class="shadow" + id="path1741" + sodipodi:nodetypes="ccccccccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 310.87721,68.488317 c 10.1863,-7.245453 12.24126,-7.224029 26.97186,-9.809734 -16.89829,2.457319 -18.17225,3.08713 -26.97186,9.809734 z" + class="shadow" + id="XMLID_511_-3-7" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 279.77204,58.955442 c 12.67434,5.067335 12.86761,3.661959 22.80256,14.310729 -10.71271,-12.157113 -11.92773,-9.7917 -22.80256,-14.310729 z" + class="shadow" + id="XMLID_511_-3-7-9-2" + sodipodi:nodetypes="ccc" /><path + sodipodi:nodetypes="ccccccccccccccccc" + id="path1723" + class="hair" + d="m 296.71866,97.884396 c -10.08921,-4.153097 -11.81523,-22.813762 -6.24492,-33.616697 1.16248,-1.416668 4.42234,-2.992223 5.72445,-3.710227 -2.44978,0.401284 -3.6173,1.585068 -4.72615,2.784184 0.82352,-1.299041 1.67526,-3.097836 2.74335,-4.040515 2.92758,-2.583827 7.25788,-4.071558 11.96353,-4.543065 0.47945,-0.04804 8.80774,1.438134 11.87926,3.134681 -2.61824,-1.564626 -2.62829,-1.665252 -9.61963,-2.624171 7.32849,-0.198526 15.28103,1.274271 19.89921,5.460526 0.42165,0.38222 2.70735,6.696353 2.72946,8.268796 0.024,-3.31386 -0.8434,-4.024003 -2.12126,-6.785416 0.67256,1.006996 2.80985,3.175014 3.13102,4.345403 0.67491,2.459444 0.58563,5.101208 -0.0999,7.77625 -2.63759,4.130641 -3.70202,4.549966 -4.98227,5.831302 1.66962,-1.132067 1.13339,0.461309 4.37899,-4.965447 -5.25261,12.907106 -23.29612,27.36021 -34.65518,22.684396 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="M 278.80443,65.57968 C 291.33509,64.374918 299.36183,64.004629 309.12,75.338409 298.3631,62.076442 290.67639,64.763461 278.80443,65.57968 Z" + class="shadow" + id="XMLID_511_-3-7-9" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 307.43125,70.468741 c 12.46875,-0.8875 14.2125,0.2 28.1375,5.65625 -15.70937,-6.69375 -17.125,-6.81875 -28.1375,-5.65625 z" + class="shadow" + id="XMLID_511_-3" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 292.11448,52.614564 c 5.39719,1.130155 5.37584,0.557465 10.07327,4.099903 -5.11234,-4.088212 -5.43041,-3.062107 -10.07327,-4.099903 z" + class="shadow" + id="XMLID_511_-3-7-9-2-1" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 316.86102,58.888871 c 4.73564,-2.824995 4.33197,-3.231786 10.18708,-3.808323 -6.53004,0.45616 -6.06887,1.426409 -10.18708,3.808323 z" + class="shadow" + id="XMLID_511_-3-7-9-2-1-7" + sodipodi:nodetypes="ccc" /></g></g><g + inkscape:groupmode="layer" + id="Butt_" + style="display:inline" + inkscape:label="Butt_"><g + inkscape:groupmode="layer" + id="Butt_3" + inkscape:label="Butt_3" + style="display:inline"><path + id="path1073" + class="shadow" + d="m 272.32511,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /><path + inkscape:connector-curvature="0" + d="m 272.32511,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + class="skin" + id="path1075" /><path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + d="m 366.95012,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + class="shadow" + id="path1077" /><path + id="path1079" + class="skin" + d="m 366.95012,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Butt_2" + inkscape:label="Butt_2" + style="display:inline"><path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + d="m 269.58507,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + class="shadow" + id="path1049" /><path + id="path1051" + class="skin" + d="m 269.58507,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + inkscape:connector-curvature="0" /><path + id="path1053" + class="shadow" + d="m 364.21008,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /><path + inkscape:connector-curvature="0" + d="m 364.21008,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + class="skin" + id="path1055" /></g><g + inkscape:groupmode="layer" + id="Butt_1" + inkscape:label="Butt_1" + style="display:inline"><path + id="path1037" + class="shadow" + d="m 267.81731,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /><path + inkscape:connector-curvature="0" + d="m 267.81731,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + class="skin" + id="path1039" /><path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + d="m 362.44232,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + class="shadow" + id="path1041" /><path + id="path1043" + class="skin" + d="m 362.44232,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Butt_0" + inkscape:label="Butt_0" + style="display:inline"><path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + d="m 266.49148,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + class="shadow" + id="path6961" /><path + id="path6963" + class="skin" + d="m 266.49148,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + inkscape:connector-curvature="0" /><path + id="path882" + class="shadow" + d="m 361.11649,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /><path + inkscape:connector-curvature="0" + d="m 361.11649,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" + class="skin" + id="path884" /></g></g><g + inkscape:groupmode="layer" + id="Leg_" + style="display:inline" + inkscape:label="Leg_"><g + inkscape:groupmode="layer" + id="Leg_Wide" + style="display:inline" + inkscape:label="Leg_Wide"><path + sodipodi:nodetypes="cccccccccccccccccccccccccccc" + id="path3112" + class="shadow" + d="m 230.16344,406.75684 c -0.45725,0.19597 -13.71714,52.20295 -12.8877,76.1189 -2.06873,32.41749 4.89133,108.27705 14.46929,134.30347 0.0164,4.8235 -4.19061,11.34488 -0.74046,25.66374 0.70559,9.86707 1.46989,9.97145 4.7938,18.63204 -3.04236,59.54886 -15.65675,146.12389 -20.39721,197.05189 7.84194,-4.38266 15.89481,-5.60145 24.44118,0.58235 C 243.31989,808.28831 302.42696,748.44875 292.55,688.2 c 1.17052,-5.16551 -4.63072,-15.79216 -4.685,-24.33327 1.31033,-7.42825 1.63646,-18.3535 -0.0492,-29.59286 -0.5844,-5.41129 -1.3899,-10.65541 -1.88678,-16.19898 7.43414,-17.32734 10.6379,-36.86783 12.06178,-60.7189 9.12116,-16.1781 6.9524,-83.41622 3.24159,-86.25025 -3.95738,-3.4222 -8.61637,-6.669 -13.51105,-9.85687 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -4.79782,15.97069 11.88462,136.6433 35.11482,167.99625 -0.30896,6.54251 1.22253,11.96366 3.58293,16.51999 1.95745,6.2414 7.67144,16.40567 8.31026,16.27188 -0.20808,0.10404 8.12617,30.85173 14.92797,58.18868 2.41014,12.81931 6.35083,28.63924 9.61479,46.06708 2.92205,27.63185 3.1728,57.02446 2.2074,100.15166 6.83065,-3.93915 13.84195,-3.00057 21.00588,2.05882 2.84613,-58.5 49.30508,-148.62213 0.36161,-213.23096 2.21201,-14.63772 -2.15046,-28.96177 -3.83238,-43.53363 10.22328,-45.83468 3.35825,-100.53242 -3.58425,-152.08653 -3.78587,-25.46967 -14.28583,-68.54216 -14.75479,-68.54216 L 230.1634,406.75684" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 230.16344,406.75684 c 0,0 -12.5877,51.7189 -12.8877,76.1189 -0.36782,31.77965 6.95433,107.50343 14.46929,134.30347 0.36107,4.69556 -3.03695,10.79151 -0.74046,25.66374 1.36037,8.80989 2.21605,9.30911 4.7938,18.63204 -1.57612,59.1823 -15.41843,146.06431 -20.39721,197.05189 l 24.44118,0.58235 c 2.2,-51.3 58.93707,-110.66217 52.70766,-170.90923 0.25772,-5.16551 -5.34658,-15.66345 -4.685,-24.33327 0.61317,-8.03525 0.74534,-18.83014 -0.0492,-29.59286 -0.40774,-5.52344 -2.62982,-10.65541 -1.88678,-16.19898 6.92108,-17.8404 9.4852,-38.19731 12.06178,-60.7189 6.60293,-16.1781 6.40904,-83.41622 3.24159,-86.25025 l -13.51105,-9.85687 c 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -3.40993,15.37588 9.52981,126.20607 35.11482,167.99625 0.38726,6.28143 1.71425,11.94402 3.58293,16.51999 2.67979,6.56225 8.31026,16.27188 8.31026,16.27188 0,0 9.20796,30.31083 14.92797,58.18868 2.6121,12.73068 7.26837,28.37709 9.61479,46.06708 3.65301,27.54048 4.30844,56.8825 2.2074,100.15166 l 21.00588,2.05882 c 0.2,-58.5 48.21749,-148.87213 0.36161,-213.23096 1.59844,-15.40469 -6.10129,-30.01447 -3.83238,-43.53363 7.82094,-46.6006 0.35954,-101.22443 -3.58425,-152.08653 -0.3,-26 -14.75479,-68.54216 -14.75479,-68.54216 L 230.1634,406.75684" + class="skin" + id="path3114" + sodipodi:nodetypes="cccsccccsscccccccscsscccsccc" /><path + inkscape:connector-curvature="0" + d="m 247.56984,612.94295 c -1.74439,-1.03364 -2.21606,-1.46317 -4.53268,-2.4083 3.01875,0.65797 2.98097,0.84985 4.53268,2.4083 z" + class="shadow" + id="path3116" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 236.04758,612.88385 c -0.72877,1.13042 -1.31762,1.55245 -2.06393,2.72451 0.85469,-1.08422 1.39503,-1.32984 2.06393,-2.72451 z" + class="shadow" + id="path3118" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 254.79184,646.43543 c -1.32454,1.59592 -3.05575,7.57454 -3.82557,16.35213 -0.22953,-7.60634 1.53236,-12.92801 3.82557,-16.35213 z" + class="shadow" + id="path3120" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 235.79639,660.98019 c 2.95671,5.50217 3.00675,8.23079 3.58068,13.78963 0.42672,-7.66884 -1.31139,-10.80301 -3.58068,-13.78963 z" + class="shadow" + id="path3122" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 388.88703,650.29137 c -2.16423,9.3299 -1.81831,17.03209 -2.58813,25.80968 0.21241,-9.68346 0.0297,-19.29197 2.58813,-25.80968 z" + class="shadow" + id="path3124" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 358.71593,661.56392 c 4.38265,5.28303 6.91607,6.62584 9.0525,16.71593 -1.16259,-10.63658 -5.61093,-13.43259 -9.0525,-16.71593 z" + class="shadow" + id="path3126" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Leg_Normal" + style="display:inline" + inkscape:label="Leg_Normal"><path + inkscape:connector-curvature="0" + d="m 230.16344,406.75684 c -0.45725,0.19597 -13.76292,52.20295 -12.8877,76.1189 -2.18291,32.41749 4.89133,108.27705 14.46929,134.30347 0.0164,4.8235 -4.19061,11.34488 -0.74046,25.66374 0.70559,9.86707 1.46989,9.97145 4.7938,18.63204 -3.04236,59.54886 -15.65675,146.12389 -20.39721,197.05189 7.84194,-4.38266 15.89481,-5.60145 24.44118,0.58235 3.47755,-50.82092 56.46873,-110.66048 46.04662,-170.90923 1.23512,-5.16551 -2.93357,-15.79216 -2.99085,-24.33327 1.38265,-7.42825 1.72678,-18.3535 -0.0519,-29.59286 -0.61665,-5.41129 -1.46661,-10.65541 -1.99091,-16.19898 8.64254,-21.66379 7.87642,-41.52669 10.77156,-62.48667 9.62459,-16.1781 13.31636,-81.64845 9.60555,-84.48248 -3.95738,-3.4222 -8.61637,-6.669 -13.51105,-9.85687 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -4.79782,15.97069 27.37942,150.0183 37.85962,167.99625 -0.30896,6.54251 1.22253,11.96366 3.58293,16.51999 1.95745,6.2414 7.67144,16.40567 8.31026,16.27188 -0.20808,0.10404 5.38137,30.85173 12.18317,58.18868 2.41014,12.81931 6.35083,28.63924 9.61479,46.06708 2.92205,27.63185 3.1728,57.02446 2.2074,100.15166 6.83065,-3.93915 13.84195,-3.00057 21.00588,2.05882 2.84613,-58.5 37.12094,-146.87213 -3.32253,-213.23096 2.21201,-14.63772 -2.15046,-28.96177 -3.83238,-43.53363 -2.02672,-44.83468 7.04239,-100.53242 0.0999,-152.08653 -3.78587,-25.46967 -14.28583,-68.54216 -14.75479,-68.54216 l -148.7328,16.03681" + class="shadow" + id="path3088" + sodipodi:nodetypes="cccccccccccccccccccccccccccc" /><path + sodipodi:nodetypes="cccsccccsscccccccscsscccsccc" + id="path3090" + class="skin" + d="m 230.16344,406.75684 c 0,0 -12.57114,51.7189 -12.8877,76.1189 -0.38812,31.77965 6.95433,107.50343 14.46929,134.30347 0.36107,4.69556 -3.03695,10.79151 -0.74046,25.66374 1.36037,8.80989 2.21605,9.30911 4.7938,18.63204 -1.57612,59.1823 -15.41843,146.06431 -20.39721,197.05189 l 24.44118,0.58235 c 2.2,-51.3 52.61985,-110.66217 46.04662,-170.90923 0.27194,-5.16551 -3.68895,-15.66345 -2.99085,-24.33327 0.64701,-8.03525 0.78648,-18.83014 -0.0519,-29.59286 -0.43024,-5.52344 -2.77497,-10.65541 -1.99091,-16.19898 7.30308,-17.8404 5.81436,-41.11413 10.77156,-62.48667 6.96737,-16.1781 12.773,-81.64845 9.60555,-84.48248 l -13.51105,-9.85687 c 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -3.40993,15.37588 29.27461,149.20607 37.85962,167.99625 0.38726,6.28143 1.71425,11.94402 3.58293,16.51999 2.67979,6.56225 8.31026,16.27188 8.31026,16.27188 0,0 6.46316,30.31083 12.18317,58.18868 2.6121,12.73068 7.26837,28.37709 9.61479,46.06708 3.65301,27.54048 4.30844,56.8825 2.2074,100.15166 l 21.00588,2.05882 c 0.2,-58.5 36.78335,-146.87213 -3.32253,-213.23096 1.59844,-15.40469 -2.8685,-29.85933 -3.83238,-43.53363 -3.17906,-45.1006 4.04368,-101.22443 0.0999,-152.08653 -0.3,-26 -14.75479,-68.54216 -14.75479,-68.54216 l -148.7328,16.03681" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3092" + class="shadow" + d="m 247.56984,612.94295 c -1.74439,-1.03364 -2.21606,-1.46317 -4.53268,-2.4083 3.01875,0.65797 2.98097,0.84985 4.53268,2.4083 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3094" + class="shadow" + d="m 236.04758,612.88385 c -0.72877,1.13042 -1.31762,1.55245 -2.06393,2.72451 0.85469,-1.08422 1.39503,-1.32984 2.06393,-2.72451 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3096" + class="shadow" + d="m 254.79184,646.43543 c -1.32454,1.59592 -3.05575,7.57454 -3.82557,16.35213 -0.22953,-7.60634 1.53236,-12.92801 3.82557,-16.35213 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3098" + class="shadow" + d="m 235.79639,660.98019 c 2.95671,5.50217 3.00675,8.23079 3.58068,13.78963 0.42672,-7.66884 -1.31139,-10.80301 -3.58068,-13.78963 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3100" + class="shadow" + d="m 388.88703,650.29137 c -2.16423,9.3299 -1.81831,17.03209 -2.58813,25.80968 0.21241,-9.68346 0.0297,-19.29197 2.58813,-25.80968 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path3102" + class="shadow" + d="m 358.71593,661.56392 c 4.38265,5.28303 6.91607,6.62584 9.0525,16.71593 -1.16259,-10.63658 -5.61093,-13.43259 -9.0525,-16.71593 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Leg_Narrow" + style="display:inline;opacity:1" + inkscape:label="Leg_Narrow"><path + sodipodi:nodetypes="cccccccccccccccccccccccccccc" + id="path6860" + class="shadow" + d="m 230.16344,406.75684 c -0.45725,0.19597 -13.71714,52.20295 -12.8877,76.1189 -2.06873,32.41749 4.89133,108.27705 14.46929,134.30347 0.0164,4.8235 -4.19061,11.34488 -0.74046,25.66374 0.70559,9.86707 1.46989,9.97145 4.7938,18.63204 -3.04236,59.54886 -15.65675,146.12389 -20.39721,197.05189 7.84194,-4.38266 15.89481,-5.60145 24.44118,0.58235 C 243.31989,808.28831 292.17696,748.44875 282.3,688.2 c 1.17052,-5.16551 -6.13072,-15.79216 -6.185,-24.33327 1.31033,-7.42825 1.63646,-18.3535 -0.0492,-29.59286 -0.5844,-5.41129 -1.3899,-10.65541 -1.88678,-16.19898 7.43414,-17.32734 10.54386,-39.4311 13.55873,-62.48667 9.12116,-16.1781 17.20545,-81.64845 13.49464,-84.48248 -3.95738,-3.4222 -8.61637,-6.669 -13.51105,-9.85687 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -4.79782,15.97069 30.38462,150.0183 40.86482,167.99625 -0.30896,6.54251 1.22253,11.96366 3.58293,16.51999 1.95745,6.2414 7.67144,16.40567 8.31026,16.27188 -0.20808,0.10404 2.37617,30.85173 9.17797,58.18868 2.41014,12.81931 6.35083,28.63924 9.61479,46.06708 2.92205,27.63185 3.1728,57.02446 2.2074,100.15166 6.83065,-3.93915 13.84195,-3.00057 21.00588,2.05882 2.84613,-58.5 33.05508,-146.87213 -7.38839,-213.23096 2.21201,-14.63772 -2.15046,-28.96177 -3.83238,-43.53363 -2.02672,-44.83468 11.10825,-100.53242 4.16575,-152.08653 -3.78587,-25.46967 -14.28583,-68.54216 -14.75479,-68.54216 L 230.1634,406.75684" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 230.16344,406.75684 c 0,0 -12.5877,51.7189 -12.8877,76.1189 -0.36782,31.77965 6.95433,107.50343 14.46929,134.30347 0.36107,4.69556 -3.03695,10.79151 -0.74046,25.66374 1.36037,8.80989 2.21605,9.30911 4.7938,18.63204 -1.57612,59.1823 -15.41843,146.06431 -20.39721,197.05189 l 24.44118,0.58235 c 2.2,-51.3 48.68707,-110.66217 42.45766,-170.90923 0.25772,-5.16551 -6.84658,-15.66345 -6.185,-24.33327 0.61317,-8.03525 0.74534,-18.83014 -0.0492,-29.59286 -0.40774,-5.52344 -2.62982,-10.65541 -1.88678,-16.19898 6.92108,-17.8404 8.86083,-41.11413 13.55873,-62.48667 6.60293,-16.1781 16.66209,-81.64845 13.49464,-84.48248 l -13.51105,-9.85687 c 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -3.40993,15.37588 32.27981,149.20607 40.86482,167.99625 0.38726,6.28143 1.71425,11.94402 3.58293,16.51999 2.67979,6.56225 8.31026,16.27188 8.31026,16.27188 0,0 3.45796,30.31083 9.17797,58.18868 2.6121,12.73068 7.26837,28.37709 9.61479,46.06708 3.65301,27.54048 4.30844,56.8825 2.2074,100.15166 l 21.00588,2.05882 c 0.2,-58.5 32.71749,-146.87213 -7.38839,-213.23096 1.59844,-15.40469 -2.8685,-29.85933 -3.83238,-43.53363 -3.17906,-45.1006 8.10954,-101.22443 4.16575,-152.08653 -0.3,-26 -14.75479,-68.54216 -14.75479,-68.54216 L 230.1634,406.75684" + class="skin" + id="XMLID_464_" + sodipodi:nodetypes="cccsccccsscccccccscsscccsccc" /><path + inkscape:connector-curvature="0" + d="m 247.56984,612.94295 c -1.74439,-1.03364 -2.21606,-1.46317 -4.53268,-2.4083 3.01875,0.65797 2.98097,0.84985 4.53268,2.4083 z" + class="shadow" + id="XMLID_590_-04-8-55" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 236.04758,612.88385 c -0.72877,1.13042 -1.31762,1.55245 -2.06393,2.72451 0.85469,-1.08422 1.39503,-1.32984 2.06393,-2.72451 z" + class="shadow" + id="XMLID_590_-04-8-55-0" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 254.79184,646.43543 c -1.32454,1.59592 -3.05575,7.57454 -3.82557,16.35213 -0.22953,-7.60634 1.53236,-12.92801 3.82557,-16.35213 z" + class="shadow" + id="XMLID_590_-04-8-55-8" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 235.79639,660.98019 c 2.95671,5.50217 3.00675,8.23079 3.58068,13.78963 0.42672,-7.66884 -1.31139,-10.80301 -3.58068,-13.78963 z" + class="shadow" + id="XMLID_590_-04-8-55-8-7" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 388.88703,650.29137 c -2.16423,9.3299 -1.81831,17.03209 -2.58813,25.80968 0.21241,-9.68346 0.0297,-19.29197 2.58813,-25.80968 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 358.71593,661.56392 c 4.38265,5.28303 6.91607,6.62584 9.0525,16.71593 -1.16259,-10.63658 -5.61093,-13.43259 -9.0525,-16.71593 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-3" + sodipodi:nodetypes="ccc" /></g><g + id="Stump" + inkscape:groupmode="layer" + inkscape:label="Stump" + style="display:inline"><path + sodipodi:nodetypes="cccccccc" + id="path1372" + inkscape:connector-curvature="0" + d="m 230.28965,407.60424 c 27.39204,-26.79135 106.43008,-43.38985 148.417,-16.8629 22.94771,17.0173 36.08141,60.01349 20.40321,84.0104 -13.72251,17.8756 -32.7562,14.73245 -52.05351,12.51115 -20.85364,-0.58883 -33.61362,-25.83908 -52.17969,-26.54843 -15.8761,1.03867 -28.23124,23.52457 -45.43451,22.30034 -13.25287,-0.31877 -29.07118,-7.54966 -32.94684,-20.32451 -7.97944,-17.5338 7.02473,-49.02171 13.79434,-55.08605 z" + class="shadow" /><path + class="skin" + d="m 230.28965,407.60424 c 27.39204,-26.79135 110.72562,-49.39699 148.417,-16.8629 21.00008,18.12665 35.42478,59.4177 20.40321,84.0104 -9.30215,15.22909 -34.33101,14.60117 -52.05351,12.51115 -19.38076,-2.28558 -32.66513,-26.40818 -52.17969,-26.54843 -16.87031,-0.12125 -28.58338,23.11374 -45.43451,22.30034 -12.88883,-0.62214 -28.08465,-8.37177 -32.94684,-20.32451 -7.13248,-17.5338 7.57873,-49.02171 13.79434,-55.08605 z" + inkscape:connector-curvature="0" + id="path62" + sodipodi:nodetypes="csaaaaac" /></g></g><g + inkscape:groupmode="layer" + id="Leg_Highlights_" + inkscape:label="Leg_Highlights_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Leg_Highlights2" + inkscape:label="Leg_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-8-4-2-7-6-6" + class="highlight2" + d="m 252.40264,490.48989 c 10.07018,29.84487 -3.27803,57.85752 -3.82385,61.89524 -3.30803,-1.62614 -7.09693,-44.45212 3.82385,-61.89524 z" + inkscape:connector-curvature="0" /><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-8-4-2-7-6-6-0" + class="highlight2" + d="m 247.84341,555.55395 c 2.9926,8.86913 0.40085,10.94377 0.23865,12.14368 -0.98306,-0.48325 -3.48403,-6.96003 -0.23865,-12.14368 z" + inkscape:connector-curvature="0" /><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-8-4-2-7-6-6-0-8" + class="highlight2" + d="m 240.30654,628.14692 c 2.9926,8.86913 0.40085,10.94377 0.23865,12.14368 -0.98306,-0.48325 -3.48403,-6.96003 -0.23865,-12.14368 z" + inkscape:connector-curvature="0" /><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-8-4-2-7-6-6-0-0" + class="highlight2" + d="m 369.91756,635.45313 c -1.97841,9.14894 0.82978,10.91963 1.12561,12.09376 0.92262,-0.59052 2.68097,-7.30704 -1.12561,-12.09376 z" + inkscape:connector-curvature="0" /><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-8-4-2-7-6-6-5" + class="highlight2" + d="m 353.92504,483.09326 c -3.41721,37.99625 7.60129,92.56555 9.59682,99.67367 3.83375,-17.75114 7.1206,-59.60555 -9.59682,-99.67367 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Leg_Highlights1" + inkscape:label="Leg_Highlights1" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 251.99197,509.9025 c -5.23668,7.36843 -4.53715,18.6497 -2.744,23.55798 1.47494,-6.06602 4.11072,-17.56782 2.744,-23.55798 z" + class="highlight1" + id="path1141-07-4-0" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 356.65399,517.81824 c 6.76776,9.52278 5.86371,24.10242 3.54628,30.44576 -1.90617,-7.83958 -5.31259,-22.70422 -3.54628,-30.44576 z" + class="highlight1" + id="path1141-07-4-0-3" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 360.4759,558.09508 c 0.81932,1.60231 0.35659,3.80443 -0.13802,4.71965 -0.11582,-1.23741 -0.30375,-3.57904 0.13802,-4.71965 z" + class="highlight1" + id="path1141-07-4-0-3-9" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 247.61623,559.01301 c -0.81932,1.60231 -0.35659,3.80443 0.13802,4.71965 0.11582,-1.23741 0.30375,-3.57904 -0.13802,-4.71965 z" + class="highlight1" + id="path1141-07-4-0-3-9-2" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 239.97063,629.98426 c -1.13405,1.65477 -0.53336,6.49014 0.13802,7.3759 -0.10399,-1.20078 0.025,-6.18884 -0.13802,-7.3759 z" + class="highlight1" + id="path1141-07-4-0-3-9-2-6" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 370.086,637.36953 c 1.64444,1.34354 1.87091,6.96776 1.08314,8.01095 -0.0993,-1.27689 -1.05116,-6.87277 -1.08314,-8.01095 z" + class="highlight1" + id="path1141-07-4-0-3-9-5" + sodipodi:nodetypes="ccc" /></g></g><g + inkscape:groupmode="layer" + id="Feet" + style="display:inline;opacity:1" + inkscape:label="Feet"><path + sodipodi:nodetypes="ccccccccccccccccccc" + id="path1094" + class="shadow" + d="m 238.95,872.025 c -0.48582,4.8674 0.15294,9.06839 -0.0125,13.6 2.22973,9.99408 1.7936,14.49404 2.1125,20.825 0.022,5.27636 -1.31474,9.10565 -4.425,9.7625 -3.67413,1.13135 -6.74815,2.63651 -14.39869,1.5302 -9.18145,2.47145 -15.2613,8.08123 -19.65088,12.66319 -5.99441,11.15878 -13.47376,7.21014 -20.43229,8.63526 -2.26339,1.53969 -4.48245,2.64592 -5.92759,3.92125 -8.08027,1.27814 -9.78952,-1.14984 -9.34055,-4.7749 -4.73388,-0.59152 -3.07859,-2.61348 -3.4875,-4.1125 -2.1797,-0.86783 -3.38524,-2.25017 -1.8875,-5.5125 -1.64492,-1.58194 -0.59193,-3.0027 1.0125,-4.4125 -0.047,-1.41206 -0.0626,-2.02062 1.85427,-3.5987 2.47354,-1.16931 5.2035,-1.82041 6.88323,-3.0263 9.61678,-4.02794 17.69545,-9.58214 24.9375,-15.6 6.764,-7.70672 11.93927,-16.77333 16.725,-26.1125 0.38886,-5.72349 1.1106,-11.50246 2.49687,-17.39219 8.29195,1.78724 16.46415,2.06569 24.4617,0.1436 0.0134,4.46773 -0.288,9.28647 -0.92107,13.46109 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 238.95,872.025 c -0.78366,4.8674 -0.0123,9.06839 -0.0125,13.6 1.96104,9.99408 1.6598,14.49404 2.1125,20.825 -0.33122,5.1439 -1.39649,9.075 -4.425,9.7625 -3.7164,0.94114 -6.82187,2.30479 -14.39869,1.5302 -9.54221,2.255 -15.48251,7.9485 -19.65088,12.66319 -5.99441,10.40697 -13.47376,7.11956 -20.43229,8.63526 -2.68208,1.30708 -4.5396,2.61417 -5.92759,3.92125 -7.45032,0.85817 -9.58295,-1.28756 -9.34055,-4.7749 -4.44919,-0.9711 -3.04844,-2.65368 -3.4875,-4.1125 -1.9584,-0.90471 -3.25864,-2.27127 -1.8875,-5.5125 -1.25464,-1.53858 -0.48809,-2.99116 1.0125,-4.4125 0.0921,-1.45 0.40705,-2.1487 1.85427,-3.5987 2.78612,-0.81208 5.26912,-1.74541 6.88323,-3.0263 10.38085,-4.02794 18.06828,-9.58214 24.9375,-15.6 7.28492,-7.70672 12.23858,-16.77333 16.725,-26.1125 l 2.49687,-17.39219 24.4617,0.1436 c -0.20353,4.43674 -0.48332,9.25857 -0.92107,13.46109 z" + class="skin" + id="XMLID_463_" + sodipodi:nodetypes="ccccccccccccccccccc" /><path + sodipodi:nodetypes="cccccccccccccccccccc" + id="path1096" + class="shadow" + d="m 375.58471,902.04597 c 0.52386,-4.42278 1.19018,-8.77106 2.62778,-13.11184 -0.18418,-4.15006 -1.53153,-7.58074 -2.24386,-11.19255 1.41187,-3.81106 3.55196,-7.41574 3.75747,-11.68734 l 9.5403,1.19132 11.39699,0.54305 c -0.13161,5.61968 0.61689,10.96792 1.61199,16.17184 -0.39734,2.28591 -1.32892,4.4142 -1.48163,6.5833 0.49368,10.63259 0.94138,21.12141 0.78125,31.41875 1.02096,6.09599 4.65404,10.88578 -0.98008,20.3093 1.08539,5.03478 -0.79793,7.36352 -3.88112,9.44835 -0.76646,0.77233 -1.5056,1.34202 -2.34991,0.25285 -1.29478,4.61758 -3.69222,4.6425 -6.30536,3.64975 -1.58037,3.04176 -4.00867,3.2139 -7.08388,1.97332 -3.5406,3.44729 -7.70644,0.0206 -7.31963,-0.63385 -4.38119,2.60045 -6.80232,1.14845 -7.60246,-4.0751 0.35561,-2.38229 1.37471,-4.40392 1.37081,-7.1661 -0.32501,-1.77042 -0.20542,-3.64462 -0.12828,-5.82926 2.01476,-4.1624 4.14533,-8.22545 5.26725,-12.21996 2.26819,-8.61114 1.87934,-17.08855 3.02237,-25.62583 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 375.58471,902.04597 c 0.75862,-4.37061 1.32442,-8.74123 2.62778,-13.11184 0.0883,-4.25905 -1.39782,-7.63422 -2.24386,-11.19255 1.53488,-3.81106 3.75773,-7.41574 3.75747,-11.68734 l 9.6028,-0.87118 11.33449,2.60555 c -0.54348,5.61968 0.32614,10.96792 1.61199,16.17184 -0.64128,2.19443 -1.39646,4.38887 -1.48163,6.5833 0.33165,10.6866 0.61556,21.23002 0.78125,31.41875 0.89521,6.14315 4.16056,11.07084 -0.98008,20.3093 0.80111,5.03478 -1.4045,7.36352 -3.88112,9.44835 -0.7833,0.60391 -1.56661,0.73191 -2.34991,0.25285 -1.50732,4.13937 -3.80652,4.38532 -6.30536,3.64975 -1.64076,2.4379 -4.02654,3.0352 -7.08388,1.97332 -3.47099,3.02964 -7.70217,-0.005 -7.31963,-0.63385 -4.31272,2.15538 -6.70519,0.51711 -7.60246,-4.0751 0.46976,-2.38229 1.66083,-4.40392 1.37081,-7.1661 -0.0428,-1.77042 -0.0855,-3.64462 -0.12828,-5.82926 2.29215,-4.04352 4.45099,-8.09445 5.26725,-12.21996 2.52972,-8.61114 2.11758,-17.08855 3.02237,-25.62583 z" + class="skin" + id="XMLID_510_" + sodipodi:nodetypes="cccccccccccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 396.35932,879.09548 c 0.33577,5.97053 1.94225,6.86306 4.45368,11.7344 -4.10767,-5.64573 -4.49649,-6.43544 -4.45368,-11.7344 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-5" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 378.16403,886.94416 c 3.50178,-2.27327 4.23806,-2.786 5.89065,-7.82868 -0.78635,4.34205 -1.48231,5.32462 -5.89065,7.82868 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-5-3" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 395.69892,943.48628 c -0.6807,3.78292 -1.85845,3.72528 -1.22527,8.57452 -1.10247,-5.75622 0.27648,-4.68977 1.22527,-8.57452 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-5-34" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 389.12868,946.23737 c -0.6807,3.78292 -1.77006,4.43239 -1.13688,9.28163 -1.10247,-5.75622 0.18809,-5.39688 1.13688,-9.28163 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-5-34-6" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 382.17591,947.91674 c -0.6807,3.78292 -1.37231,4.91853 -1.20317,9.74567 -0.74892,-5.60154 0.25438,-5.86092 1.20317,-9.74567 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-5-34-6-8" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 375.34424,947.66262 c -0.6807,3.78292 -1.70377,4.56498 -1.79979,9.37002 -0.35118,-5.49105 0.851,-5.48527 1.79979,-9.37002 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-5-34-6-8-0" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 233.85987,866.45583 c 0.20162,3.58528 1.78152,8.46827 1.27913,12.44825 -0.33424,2.64785 -1.53099,3.78741 -2.39316,6.67724 0.49516,-2.71172 1.67721,-3.99993 2.00285,-6.68659 0.49663,-4.09741 -0.91468,-9.23845 -0.88882,-12.4389 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-5-4" + sodipodi:nodetypes="cscsc" /><path + inkscape:connector-curvature="0" + d="m 174.52487,930.47124 c -0.6807,3.78292 -7.54752,3.28373 -7.64354,8.08877 -0.35118,-5.49105 6.69475,-4.20402 7.64354,-8.08877 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-5-34-6-8-0-9" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 171.50081,927.25578 c -0.6807,3.78292 -7.92317,3.54889 -8.01919,8.35393 -0.35118,-5.49105 7.0704,-4.46918 8.01919,-8.35393 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-5-34-6-8-0-9-0" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 170.10938,922.88554 c -1.57133,3.50167 -6.25131,2.72077 -8.61295,5.86956 2.43007,-3.53793 6.80478,-2.48481 8.61295,-5.86956 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-5-34-6-8-0-9-0-3" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 169.29085,920.33085 c -1.75883,3.47042 -4.50131,0.78327 -6.86295,3.93206 2.43007,-3.53793 4.92978,-0.57856 6.86295,-3.93206 z" + class="shadow" + id="XMLID_590_-04-8-55-8-75-5-34-6-8-0-9-0-3-1" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Shoes_" + style="display:inline" + inkscape:label="Shoes_"><g + inkscape:groupmode="layer" + id="Shoes_Boot" + inkscape:label="Shoes_Boot" + style="display:inline;opacity:1"><path + inkscape:connector-curvature="0" + d="m 410.16185,900.0141 c 2.86198,8.5845 -2.04252,30.0269 -2.04252,30.0269 -2.6082,0.68854 -3.40523,0.43588 -4.22778,6.50664 -0.62624,4.62187 1.57451,13.48604 0.72183,20.15407 -0.70731,5.53119 -1.99538,11.20183 -4.78637,16.02933 -2.73689,4.73391 -6.44108,9.36425 -11.28012,11.91064 -3.96775,2.0879 -9.22079,3.98196 -13.2869,2.09276 -4.86908,-2.26228 -7.20428,-8.52988 -8.34573,-13.77611 -3.12418,-14.35908 3.89312,-29.67483 5.11156,-43.78772 0.56958,-9.56894 0.56958,-17.42915 0.45566,-21.87186 0,-0.78196 0.5419,-1.93558 0.55511,-3.02502 0.0176,-1.4499 -0.49225,-2.78612 -0.49225,-2.98125 3.13628,-27.51762 -3.62235,-80.17699 -7.02883,-121.55654 -1.76091,-21.39034 -8.15834,-63.86913 -8.15834,-63.86913 27.93153,-9.28995 53.21077,9.69771 71.38941,-8.39445 1.69105,35.38515 -7.04987,61.39476 -7.99949,92.08389 0.26562,31.67469 -6.78797,59.35802 -10.58524,100.45785 z" + class="shoe" + id="XMLID_476_" + sodipodi:nodetypes="ccsaaaaaccscscccc" /><path + inkscape:connector-curvature="0" + d="m 220.3433,696.48401 c 8.38156,-0.20607 59.08473,13.7755 77.55825,9.34059 5.76359,46.33045 -41.72917,95.75159 -43.05923,107.72214 -1.33006,11.97055 -6.25632,16.9788 -12.5741,57.54565 0,0 -0.5542,6.09611 1.55173,11.08384 0.88671,2.21677 1.55174,2.32761 2.77096,4.21186 3.10348,4.98773 4.21186,12.63557 3.65767,18.28833 -0.44335,4.65521 -1.77341,4.65521 -3.43599,10.30797 -1.77341,6.20695 -2.10593,15.2957 -2.66012,33.36236 0,1.66257 -0.44336,5.54192 -0.44336,7.20449 -0.44335,0.33252 -2.21676,0.33252 -2.88179,0 0.11084,-1.33006 0.11084,-3.87934 0.11084,-5.43108 -0.22168,-9.31042 1.33006,-28.04211 -0.33252,-29.03966 -1.10838,-0.66503 -18.99219,8.39588 -21.3198,14.8245 -4.65521,13.52229 -2.54928,18.73169 -6.20695,23.60858 -3.10347,4.21186 -22.11225,7.09366 -31.75519,6.31779 -10.19714,-0.88671 -12.08139,-4.21186 -12.74642,-5.32024 -2.32761,-4.43354 -2.66012,-11.97055 -0.55419,-14.51983 0.77587,-0.99755 1.33006,-0.55419 3.32515,-1.21922 3.65767,-1.10839 6.31779,-3.76851 7.2045,-4.76606 3.10347,-3.54682 12.49702,-12.91267 16.01614,-15.51737 3.99535,-14.0275 5.72631,-17.90314 6.65031,-23.71941 0,0 0.77586,-4.3227 1.10838,-9.19959 0.44335,-5.43108 8.82169,-104.08788 18.04646,-176.75792 0,-2.21677 0.30178,-11.78826 -0.0307,-18.32772 z" + class="shoe" + id="XMLID_477_" + sodipodi:nodetypes="ccscccccccccsccccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Shoes_Boot_Wide" + inkscape:label="Shoes_Boot_Wide" + style="display:inline" /><g + inkscape:groupmode="layer" + id="Shoes_Pump" + inkscape:label="Shoes_Pump" + style="display:inline" /><g + inkscape:groupmode="layer" + id="Shoes_Exterme_Heel" + inkscape:label="Shoes_Exterme_Heel" + style="display:inline"><path + sodipodi:nodetypes="cccccccccccc" + id="path3082" + class="shoe" + d="m 197.71421,928.07188 c 0.84235,-11.67605 -1.71189,-49.689 14.90659,-65.62886 1.90184,-5.28177 6.69781,-82.56184 6.89573,-82.59309 l 49.973,2.42 c 3.07009,2.23279 -24.33404,71.01812 -25.51981,81.01101 3.22845,1.13574 4.21503,15.11979 3.86846,24.30368 -6.98224,17.7335 -5.47757,69.39834 -5.47757,69.39834 l -0.94939,-0.18887 c 0,0 -4.47938,-36.71186 -4.23419,-52.20785 -7.90677,18.65992 -21.83411,60.13149 -30.39884,64.8018 -3.0313,-0.44283 -4.27378,0.68941 -6.41589,-1.37679 -3.4832,-21.25345 -2.64809,-39.93937 -2.64809,-39.93937 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccaccac" + id="path3084" + class="shoe" + d="m 375.8095,877.51789 c 7.02973,-8.58252 3.90877,-84.70624 -1.77465,-84.88229 l 42.09097,1.29066 -14.30132,77.42063 c 5.687,16.577 11.33733,41.86577 11.132,63.283 -0.18518,19.31554 -3.388,29.161 -11.132,56.87 -2.904,3.63 -14.52,2.299 -18.392,-0.121 -8.228,-22.99 -12.09246,-37.92868 -13.33653,-57.596 -1.19009,-18.81385 3.65653,-31.702 5.71353,-56.265 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Shoes_Exterme_Heel_Wide" + inkscape:label="Shoes_Exterme_Heel_Wide" + style="display:inline;opacity:1"><path + inkscape:connector-curvature="0" + d="m 197.71421,928.07188 c 0.84235,-11.67605 -1.71189,-49.689 14.90659,-65.62886 1.90184,-5.28177 16.95086,-130.29155 17.14878,-130.3228 l 49.973,2.42 c 3.07009,2.23279 -34.58709,118.74783 -35.77286,128.74072 3.22845,1.13574 4.21503,15.11979 3.86846,24.30368 -6.98224,17.7335 -5.47757,69.39834 -5.47757,69.39834 l -0.94939,-0.18887 c 0,0 -4.47938,-36.71186 -4.23419,-52.20785 -7.90677,18.65992 -21.83411,60.13149 -30.39884,64.8018 -3.0313,-0.44283 -4.27378,0.68941 -6.41589,-1.37679 -3.4832,-21.25345 -2.64809,-39.93937 -2.64809,-39.93937 z" + class="shoe" + id="XMLID_490_" + sodipodi:nodetypes="cccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 375.8095,877.51789 c 8.80066,-8.83551 2.15407,-133.54898 -3.89597,-133.67266 l 42.09097,1.29066 -12.18,126.211 c 5.687,16.577 11.33733,41.86577 11.132,63.283 -0.18518,19.31554 -3.388,29.161 -11.132,56.87 -2.904,3.63 -14.52,2.299 -18.392,-0.121 -8.228,-22.99 -12.09246,-37.92868 -13.33653,-57.596 -1.19009,-18.81385 3.65653,-31.702 5.71353,-56.265 z" + class="shoe" + id="XMLID_491_" + sodipodi:nodetypes="ccccaccac" /></g><g + inkscape:groupmode="layer" + id="Shoes_Heel" + inkscape:label="Shoes_Heel" + style="display:inline"><path + sodipodi:nodetypes="cccccccccc" + id="path1155" + class="skin" + d="m 240.59845,873.07198 c 0.50286,4.90436 1.00937,7.12738 2.18205,11.50463 0.85694,12.72572 1.68645,15.02898 3.7623,21.02706 1.01141,5.05435 0.99988,9.12721 -1.7475,10.57512 -3.34618,1.87095 -5.9929,3.99189 -13.51203,5.20472 -46.61525,37.98885 -67.56847,48.2592 -29.24548,-8.53938 5.04205,-9.3296 9.51324,-18.92743 11.42962,-29.10955 l 2.00493,-25.33317 24.35037,0.50298 c 0.95172,4.33824 0.11088,9.99496 0.77574,14.16759 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccccccscccccczc" + id="path1148" + class="shoe" + d="m 244.31995,884.92623 c 0,0 1.55174,2.32761 2.77096,4.21186 3.10348,4.98773 4.21186,12.63557 3.65767,18.28833 -0.44335,4.65521 -1.77341,4.65521 -3.43599,10.30797 -1.77341,6.20695 -2.10593,15.2957 -2.66012,33.36236 0,1.66257 -0.44336,5.54192 -0.44336,7.20449 -0.44335,0.33252 -2.21676,0.33252 -2.88179,0 0.11084,-1.33006 0.11084,-3.87934 0.11084,-5.43108 -0.22168,-9.31042 1.33006,-28.04211 -0.33252,-29.03966 -1.10838,-0.66503 -18.99219,8.39588 -21.3198,14.8245 -4.65521,13.52229 -9.53196,20.1459 -13.18963,25.02279 -3.10347,4.21186 -15.12957,5.67945 -24.77251,4.90358 -10.19714,-0.88671 -15.55892,-3.88274 -15.55892,-3.88274 0,0 -1.75502,-8.83719 26.68462,-40.85535 l 15.13332,-23.22251 c -3.15612,7.97704 -12.0531,21.27684 -9.42395,24.21053 2.62915,2.93369 45.66118,-39.90507 45.66118,-39.90507 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccccccccc" + id="path1159" + class="skin" + d="m 375.58471,902.04597 c 0.75862,-4.37061 1.32442,-8.74123 2.62778,-13.11184 0.0883,-4.25905 -1.39782,-7.63422 -2.24386,-11.19255 1.53488,-3.81106 3.75773,-7.41574 3.75747,-11.68734 l 9.6028,-0.87118 11.33449,2.60555 c -0.54348,5.61968 0.32614,10.96792 1.61199,16.17184 -0.64128,2.19443 -1.39646,4.38887 -1.48163,6.5833 0.33165,10.6866 0.61556,21.23002 0.78125,31.41875 3.99699,37.66992 -39.08408,53.65806 -29.01266,5.7093 2.52972,-8.61114 2.11758,-17.08855 3.02237,-25.62583 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccssszcccscc" + id="path1146" + class="shoe" + d="m 401.16185,898.2641 c 4.86978,9.3269 4.14816,19.20588 3.20748,30.0269 0,0 -1.59383,25.88068 -5.20133,38.22252 -2.09871,7.18004 -4.5609,14.6838 -9.42657,20.3656 -1.98298,2.31559 -4.50163,7.07804 -7.61012,5.07283 -5.21682,-3.36524 -6.42685,-5.44847 -9.40639,-16.07421 -2.97954,-10.62574 -2.04254,-33.46924 -0.8241,-47.58213 0.30849,-4.24462 -0.58204,-25.74717 4.23787,-29.94193 l -0.54506,4.14234 c 0.68491,-0.2283 -5.89176,37.99606 7.34151,39.67379 14.711,1.86508 18.43779,-40.48551 18.43779,-40.48551 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1161" + class="shadow" + d="m 396.35932,879.09548 c 0.33577,5.97053 1.94225,6.86306 4.45368,11.7344 -4.10767,-5.64573 -4.49649,-6.43544 -4.45368,-11.7344 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1163" + class="shadow" + d="m 378.16403,886.94416 c 3.50178,-2.27327 4.23806,-2.786 5.89065,-7.82868 -0.78635,4.34205 -1.48231,5.32462 -5.89065,7.82868 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="cscsc" + id="path1173" + class="shadow" + d="m 229.24641,868.83321 c 1.12269,3.41093 3.91256,7.71863 4.45739,11.69303 0.36247,2.64412 -0.49857,4.0546 -0.58342,7.06911 -0.22351,-2.74748 0.5848,-4.29773 0.20399,-6.97713 -0.58078,-4.08633 -3.2746,-8.68693 -4.07796,-11.78501 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Shoes_Flat" + inkscape:label="Shoes_Flat" + style="display:inline;opacity:1"><path + inkscape:connector-curvature="0" + d="m 238.95,872.025 c -0.48582,4.8674 0.15294,9.06839 -0.0125,13.6 2.22973,9.99408 1.7936,14.49404 2.1125,20.825 0.022,5.27636 -1.31474,9.10565 -4.425,9.7625 -3.67413,1.13135 -6.74815,2.63651 -14.39869,1.5302 -9.18145,2.47145 -15.2613,8.08123 -19.65088,12.66319 -5.99441,11.15878 -13.47376,7.21014 -20.43229,8.63526 -2.26339,1.53969 -4.48245,2.64592 -5.92759,3.92125 -8.08027,1.27814 -9.78952,-1.14984 -9.34055,-4.7749 -4.73388,-0.59152 -3.07859,-2.61348 -3.4875,-4.1125 -2.1797,-0.86783 -3.38524,-2.25017 -1.8875,-5.5125 -1.64492,-1.58194 -0.59193,-3.0027 1.0125,-4.4125 -0.047,-1.41206 -0.0626,-2.02062 1.85427,-3.5987 2.47354,-1.16931 5.2035,-1.82041 6.88323,-3.0263 9.61678,-4.02794 17.69545,-9.58214 24.9375,-15.6 6.764,-7.70672 11.93927,-16.77333 16.725,-26.1125 0.38886,-5.72349 1.1106,-11.50246 2.49687,-17.39219 8.29195,1.78724 16.46415,2.06569 24.4617,0.1436 0.0134,4.46773 -0.288,9.28647 -0.92107,13.46109 z" + class="shadow" + id="path1284" + sodipodi:nodetypes="ccccccccccccccccccc" /><path + sodipodi:nodetypes="ccccccccccccccccccc" + id="path1286" + class="skin" + d="m 238.95,872.025 c -0.78366,4.8674 -0.0123,9.06839 -0.0125,13.6 1.96104,9.99408 1.6598,14.49404 2.1125,20.825 -0.33122,5.1439 -1.39649,9.075 -4.425,9.7625 -3.7164,0.94114 -6.82187,2.30479 -14.39869,1.5302 -9.54221,2.255 -15.48251,7.9485 -19.65088,12.66319 -5.99441,10.40697 -13.47376,7.11956 -20.43229,8.63526 -2.68208,1.30708 -4.5396,2.61417 -5.92759,3.92125 -7.45032,0.85817 -9.58295,-1.28756 -9.34055,-4.7749 -4.44919,-0.9711 -3.04844,-2.65368 -3.4875,-4.1125 -1.9584,-0.90471 -3.25864,-2.27127 -1.8875,-5.5125 -1.25464,-1.53858 -0.48809,-2.99116 1.0125,-4.4125 0.0921,-1.45 0.40705,-2.1487 1.85427,-3.5987 2.78612,-0.81208 5.26912,-1.74541 6.88323,-3.0263 10.38085,-4.02794 18.06828,-9.58214 24.9375,-15.6 7.28492,-7.70672 12.23858,-16.77333 16.725,-26.1125 l 2.49687,-17.39219 24.4617,0.1436 c -0.20353,4.43674 -0.48332,9.25857 -0.92107,13.46109 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 375.58471,902.04597 c 0.52386,-4.42278 1.19018,-8.77106 2.62778,-13.11184 -0.18418,-4.15006 -1.53153,-7.58074 -2.24386,-11.19255 1.41187,-3.81106 3.55196,-7.41574 3.75747,-11.68734 l 9.5403,1.19132 11.39699,0.54305 c -0.13161,5.61968 0.61689,10.96792 1.61199,16.17184 -0.39734,2.28591 -1.32892,4.4142 -1.48163,6.5833 0.49368,10.63259 0.94138,21.12141 0.78125,31.41875 1.02096,6.09599 4.65404,10.88578 -0.98008,20.3093 1.08539,5.03478 -0.79793,7.36352 -3.88112,9.44835 -0.76646,0.77233 -1.5056,1.34202 -2.34991,0.25285 -1.29478,4.61758 -3.69222,4.6425 -6.30536,3.64975 -1.58037,3.04176 -4.00867,3.2139 -7.08388,1.97332 -3.5406,3.44729 -7.70644,0.0206 -7.31963,-0.63385 -4.38119,2.60045 -6.80232,1.14845 -7.60246,-4.0751 0.35561,-2.38229 1.37471,-4.40392 1.37081,-7.1661 -0.32501,-1.77042 -0.20542,-3.64462 -0.12828,-5.82926 2.01476,-4.1624 4.14533,-8.22545 5.26725,-12.21996 2.26819,-8.61114 1.87934,-17.08855 3.02237,-25.62583 z" + class="shadow" + id="path1288" + sodipodi:nodetypes="cccccccccccccccccccc" /><path + sodipodi:nodetypes="cccccccccccccccccccc" + id="path1290" + class="skin" + d="m 375.58471,902.04597 c 0.75862,-4.37061 1.32442,-8.74123 2.62778,-13.11184 0.0883,-4.25905 -1.39782,-7.63422 -2.24386,-11.19255 1.53488,-3.81106 3.75773,-7.41574 3.75747,-11.68734 l 9.6028,-0.87118 11.33449,2.60555 c -0.54348,5.61968 0.32614,10.96792 1.61199,16.17184 -0.64128,2.19443 -1.39646,4.38887 -1.48163,6.5833 0.33165,10.6866 0.61556,21.23002 0.78125,31.41875 0.89521,6.14315 4.16056,11.07084 -0.98008,20.3093 0.80111,5.03478 -1.4045,7.36352 -3.88112,9.44835 -0.7833,0.60391 -1.56661,0.73191 -2.34991,0.25285 -1.50732,4.13937 -3.80652,4.38532 -6.30536,3.64975 -1.64076,2.4379 -4.02654,3.0352 -7.08388,1.97332 -3.47099,3.02964 -7.70217,-0.005 -7.31963,-0.63385 -4.31272,2.15538 -6.70519,0.51711 -7.60246,-4.0751 0.46976,-2.38229 1.66083,-4.40392 1.37081,-7.1661 -0.0428,-1.77042 -0.0855,-3.64462 -0.12828,-5.82926 2.29215,-4.04352 4.45099,-8.09445 5.26725,-12.21996 2.52972,-8.61114 2.11758,-17.08855 3.02237,-25.62583 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1292" + class="shadow" + d="m 396.35932,879.09548 c 0.33577,5.97053 1.94225,6.86306 4.45368,11.7344 -4.10767,-5.64573 -4.49649,-6.43544 -4.45368,-11.7344 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1294" + class="shadow" + d="m 378.16403,886.94416 c 3.50178,-2.27327 4.23806,-2.786 5.89065,-7.82868 -0.78635,4.34205 -1.48231,5.32462 -5.89065,7.82868 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1296" + class="shadow" + d="m 395.69892,943.48628 c -0.6807,3.78292 -1.85845,3.72528 -1.22527,8.57452 -1.10247,-5.75622 0.27648,-4.68977 1.22527,-8.57452 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1298" + class="shadow" + d="m 389.12868,946.23737 c -0.6807,3.78292 -1.77006,4.43239 -1.13688,9.28163 -1.10247,-5.75622 0.18809,-5.39688 1.13688,-9.28163 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1300" + class="shadow" + d="m 382.17591,947.91674 c -0.6807,3.78292 -1.37231,4.91853 -1.20317,9.74567 -0.74892,-5.60154 0.25438,-5.86092 1.20317,-9.74567 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1302" + class="shadow" + d="m 375.34424,947.66262 c -0.6807,3.78292 -1.70377,4.56498 -1.79979,9.37002 -0.35118,-5.49105 0.851,-5.48527 1.79979,-9.37002 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="cscsc" + id="path1304" + class="shadow" + d="m 233.85987,866.45583 c 0.20162,3.58528 1.78152,8.46827 1.27913,12.44825 -0.33424,2.64785 -1.53099,3.78741 -2.39316,6.67724 0.49516,-2.71172 1.67721,-3.99993 2.00285,-6.68659 0.49663,-4.09741 -0.91468,-9.23845 -0.88882,-12.4389 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1306" + class="shadow" + d="m 174.52487,930.47124 c -0.6807,3.78292 -7.54752,3.28373 -7.64354,8.08877 -0.35118,-5.49105 6.69475,-4.20402 7.64354,-8.08877 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1308" + class="shadow" + d="m 171.50081,927.25578 c -0.6807,3.78292 -7.92317,3.54889 -8.01919,8.35393 -0.35118,-5.49105 7.0704,-4.46918 8.01919,-8.35393 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1310" + class="shadow" + d="m 170.10938,922.88554 c -1.57133,3.50167 -6.25131,2.72077 -8.61295,5.86956 2.43007,-3.53793 6.80478,-2.48481 8.61295,-5.86956 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1312" + class="shadow" + d="m 169.29085,920.33085 c -1.75883,3.47042 -4.50131,0.78327 -6.86295,3.93206 2.43007,-3.53793 4.92978,-0.57856 6.86295,-3.93206 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 230.45,922.8 c 3.85881,-1.84229 9.7,-4 11,-6.6 2.2,-4.4 1.86667,-9.69149 1.625,-13.9 -0.25625,-4.4625 -3.63125,-14.53125 -3.63125,-14.53125 0,0 -0.36875,2.03125 -1.46875,4.43125 -1.4,3.6 -7.175,9.4125 -9.775,11.7125 -14.5,12.9 -40.12015,3.86298 -40.12015,3.86298 0,0 -10.2204,5.65968 -15.40485,8.34952 -3.16251,1.6408 -7.14797,2.1417 -9.575,4.75 -3.73865,4.01788 -8.05388,10.05854 -6.2375,15.2375 2.0624,5.88043 10.15263,8.32568 16.3375,9.0875 11.21911,1.38192 22.71118,-3.60382 32.75,-8.8 3.84711,-1.9913 6.24412,-6.14154 10,-8.3 4.46178,-2.56413 9.85603,-3.08285 14.5,-5.3 z" + class="shoe" + id="XMLID_507_" + sodipodi:nodetypes="assccccaaaaaaa" /><path + inkscape:connector-curvature="0" + d="m 375.79425,900.4029 c 0,0 -4.6154,16.02837 -6.68537,24.10598 -1.60665,6.26961 -4.06203,12.43938 -4.44905,18.9 -0.19029,3.17658 0.073,6.46298 1.0625,9.4875 0.76026,2.32384 1.5754,5.06857 3.65,6.3625 7.20694,4.49496 17.65124,5.08244 25.42698,1.66447 3.34793,-1.47165 5.42494,-5.19303 6.87423,-8.5507 2.52235,-5.84372 2.45461,-12.55089 2.62323,-18.91351 0.10833,-4.08767 -0.61807,-8.15587 -1.03934,-12.22322 -0.52587,-5.07731 -1.85728,-15.20035 -1.85728,-15.20035 -0.64133,8.18038 -8.65808,22.74034 -16.16284,20.44039 -10.43676,-3.19851 -10.21428,-16.25102 -9.44306,-26.07306 z" + class="shoe" + id="XMLID_508_" + sodipodi:nodetypes="caaaaaaaacsc" /></g></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.67702,0.43271 4.94669,1.18016 5.313,-0.25046 l 4.82293,-0.062 c 0,-0.003 0.49727,1.92474 9.35695,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 + inkscape:connector-curvature="0" + d="m 246.30911,231.06259 c -5.87551,18.9358 -2.96597,38.67852 2.84033,56.00881 -1.06764,11.32585 -1.52536,26.55789 1.00056,35.50213 C 238.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 0.71424,0.0435 3.1774,0.77206 4.37876,0.44893 0.70147,-0.18868 0.95983,-0.71607 0.95983,-0.71607 l 4.82917,-0.077 c 0.96846,1.30549 6.32302,0.7661 9.32277,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 -23.58113,-57.47054 -9.97979,-57.27407 1.61601,-114.68532 -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 -15.75422,-3.81595 -28.55683,3.36571 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -5.62538,4.35924 -11.13319,4.21882 -29.51103,8.85181 -8.65971,10.94361 -15.77697,17.65654 -24.83698,40.22861 z" + class="skin torso" + id="Body_Normal_1_" + sodipodi:nodetypes="cccccccscccccccccccccccc" /><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="XMLID_590_-04-8" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + 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" + id="path1444" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="cccccc" + id="path1446" + class="muscle_tone" + 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" /></g><g + inkscape:groupmode="layer" + id="Torso_Hourglass" + style="display:inline" + inkscape:label="Torso_Hourglass"><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 1.67702,0.43271 4.94669,1.18016 5.313,-0.25046 l 4.82293,-0.062 c 0,-0.003 0.49727,1.92474 9.35695,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 + sodipodi:nodetypes="cccccccsccccccccscccccccccc" + id="path1104" + class="skin torso" + d="m 246.30911,231.06259 c -5.87551,18.9358 -2.96597,38.67852 2.84033,56.00881 -1.06764,11.32585 -1.52536,26.55789 1.00056,35.50213 C 238.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 0.71424,0.0435 3.1774,0.77206 4.37876,0.44893 0.70147,-0.18868 0.95983,-0.71607 0.95983,-0.71607 l 4.82917,-0.077 c 0.96846,1.30549 6.32302,0.7661 9.32277,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 -7.38454,-13.70829 -7.45206,-15.85983 2.56898,-6.32141 6.52289,-30.99874 8.07452,-32.87542 13.06864,-15.80638 16.79552,-26.31022 21.5701,-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 -15.75422,-3.81595 -28.55683,3.36571 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -5.62538,4.35924 -11.13319,4.21882 -29.51103,8.85181 -8.65971,10.94361 -15.77697,17.65654 -24.83698,40.22861 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1106" + class="shadow" + 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" /><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" + inkscape:connector-curvature="0" /><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" + inkscape:connector-curvature="0" /><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" + inkscape:connector-curvature="0" /><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" + inkscape:connector-curvature="0" /><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" + inkscape:connector-curvature="0" /><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" + inkscape:connector-curvature="0" /><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" + inkscape:connector-curvature="0" /><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" + id="path1440" + sodipodi:nodetypes="cccccc" /></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 1.67702,0.43271 4.94669,1.18016 5.313,-0.25046 l 4.82293,-0.062 c 0,-0.003 0.49727,1.92474 9.35695,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 -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" /><path + inkscape:connector-curvature="0" + d="m 246.30911,231.06259 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 0.71424,0.0435 3.1774,0.77206 4.37876,0.44893 0.70147,-0.18868 0.95983,-0.71607 0.95983,-0.71607 l 4.82917,-0.077 c 0.96846,1.30549 6.32302,0.7661 9.32277,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 -15.75422,-3.81595 -28.55683,3.36571 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -5.62538,4.35924 -11.13319,4.21882 -29.51103,8.85181 -8.65971,10.94361 -15.77697,17.65654 -24.83698,40.22861 z" + class="skin torso" + id="path1152" + sodipodi:nodetypes="cccccccsccccccccscccccccccc" /><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" /><path + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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 + 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" + id="path1454" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="cccccc" + id="path1459" + class="muscle_tone" + 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" /></g></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" /><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-8" + class="highlight2" + d="m 263.8142,294.55822 c 2.74268,8.04932 2.76861,26.83209 0.89606,27.91484 -1.12917,-1.27471 -5.12923,-22.1752 -0.89606,-27.91484 z" + inkscape:connector-curvature="0" /><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-8-4" + class="highlight2" + d="m 289.50061,337.66987 c 2.74268,8.04932 1.84052,16.44647 -0.032,17.52922 -1.12917,-1.27471 -4.20114,-11.78958 0.032,-17.52922 z" + inkscape:connector-curvature="0" /><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-8-4-2" + class="highlight2" + d="m 244.58793,342.8708 c -1.39447,6.83617 -4.62602,11.20746 -5.51208,12.57947 -1.00378,-1.21683 1.66574,-6.6613 5.51208,-12.57947 z" + inkscape:connector-curvature="0" /><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-8-4-2-7" + class="highlight2" + d="m 338.3403,373.13569 c 2.26913,12.90402 -4.61748,11.22161 -5.51208,12.57947 -1.0473,-1.2502 -1.53943,-9.11859 5.51208,-12.57947 z" + inkscape:connector-curvature="0" /><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-8-4-2-7-6" + class="highlight2" + d="m 242.25302,404.89085 c -2.26913,12.90402 6.03169,10.58079 7.43452,11.6072 1.0473,-1.2502 -0.38301,-8.14632 -7.43452,-11.6072 z" + inkscape:connector-curvature="0" /><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-5" + class="highlight2" + d="m 274.56079,341.01946 c -0.6917,2.59191 1.01886,6.14891 1.5481,6.57075 -0.0597,-0.50761 -0.7297,-4.73118 -1.5481,-6.57075 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Torso_Highlights1" + inkscape:label="Torso_Highlights1" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 289.94777,295.4534 c -1.6989,1.77767 -0.82374,4.35987 -0.53385,5.75144 1.26028,-1.19667 0.74988,-3.92307 0.53385,-5.75144 z" + class="highlight1" + id="path1141-0" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 264.42812,302.28055 c -1.6989,1.77767 -0.82374,4.35987 -0.53385,5.75144 1.26028,-1.19667 0.74988,-3.92307 0.53385,-5.75144 z" + class="highlight1" + id="path1141-0-8" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 264.66554,309.1915 c -0.66567,0.91065 -0.10291,1.90971 0.20025,2.42067 0.49089,-0.59211 0.16685,-1.69027 -0.20025,-2.42067 z" + class="highlight1" + id="path1141-0-8-7" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 289.8216,345.80715 c -0.88546,0.69883 -0.61117,1.8122 -0.45611,2.38573 0.63167,-0.43881 0.61393,-1.58365 0.45611,-2.38573 z" + class="highlight1" + id="path1141-0-8-7-5" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 337.466,377.21609 c -2.30617,0.13597 -2.84869,1.67314 -2.48904,3.26962 2.13427,-0.43881 2.64686,-2.46754 2.48904,-3.26962 z" + class="highlight1" + id="path1141-0-8-7-5-0" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 248.30395,412.94797 c -1.46912,-3.58912 -3.04506,-5.40954 -5.40786,-5.39969 -0.8259,3.89201 3.18008,5.39446 5.40786,5.39969 z" + class="highlight1" + id="path1141-0-8-7-5-0-9" + sodipodi:nodetypes="ccc" /></g></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_" + inkscape:label="Torso_Outfit_" + style="display:inline;opacity:1"><g + inkscape:groupmode="layer" + id="Torso_Outfit_Straps_" + inkscape:label="Torso_Outfit_Straps_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Torso_Outfit_Straps_Hourglass" + inkscape:label="Torso_Outfit_Straps_Hourglass" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 300.64645,182.01961 c 0.19647,-2.8289 -0.21252,-5.25416 -0.48765,-7.76866 l 18.75297,-10.43959 11.53228,-16.37604 c 0.48515,9.29334 0.35747,19.09563 5.57428,24.45929 -11.37581,3.97083 -19.90829,12.02571 -35.37188,10.125 z" + class="shadow" + id="path1059" + sodipodi:nodetypes="cccccc" /><path + inkscape:connector-curvature="0" + d="m 282.74507,409.66612 c -3.02008,-75.15795 -28.86151,-165.97691 20.57911,-228.58327 l 7.48106,-2.774 c -52.38053,67.74199 -24.96872,151.88878 -22.44483,231.28803 z" + class="shadow" + id="path1061" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 248.61993,292.69037 0.49718,-5.61448 c 26.08054,7.76617 67.99111,-3.38669 89.95679,-8.90649 l -1.5334,6.06498 c -25.3681,6.21736 -60.17783,18.9423 -88.92057,8.45599 z" + class="shadow" + id="path1063" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 250.11347,322.51288 -1.23696,-5.4714 c 26.11901,7.93288 63.08772,-3.03436 84.20257,-12.2411 l -1.77559,6.01811 C 311.74357,317.86559 278.86187,333 250.11347,322.51288 Z" + class="shadow" + id="path1065" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 305.58478,461.76323 -2.91688,0.62771 c -0.237,-34.63249 43.891,-58.56721 74.52696,-75.64102 l 2.20189,5.09003 c -23.66963,12.29432 -69.72202,41.24006 -73.81197,69.92328 z" + class="shadow" + id="path1067" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 286.46262,461.96295 2.91688,0.62771 c -28.01268,-37.53971 -26.96023,-23.95407 -59.71446,-54.45352 l -1.38939,5.15253 c 34.69638,28.86465 42.2831,28.46475 58.18697,48.67328 z" + class="shadow" + id="path1069" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 230.0681,406.94442 0.77062,-5.05979 c 67.99401,11.93288 109.67161,-12.54586 143.53646,-21.5026 l 1.98091,4.40502 c -19.55992,7.0471 -78.41459,38.51949 -146.28799,22.15737 z" + class="shadow" + id="path1071" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 283.47212,411.04042 5.17119,-1.14037 26.1263,22.47011 -2.15059,4.14311 z" + class="shadow" + id="path1076" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="ccccc" + id="path1078" + class="shadow" + d="m 283.47212,411.04042 5.17119,-1.14037 -16.9362,33.09511 -3.33809,-2.73189 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 306.84144,179.80553 -2.06007,3.22555 c 23.3503,2.52905 38.53464,15.87246 53.33726,29.7214 l -1.09146,-6.06498 c -14.87819,-17.81605 -32.01863,-24.80565 -50.18573,-26.88197 z" + class="shadow" + id="path1080" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 302.41314,180.3416 2.06007,3.22555 c -17.14399,8.74118 -36.94672,13.05114 -49.62495,29.23526 l 2.50567,-4.20882 c 11.69297,-15.28809 29.81478,-19.23118 45.05921,-28.25199 z" + class="shadow" + id="path1083" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 295.92707,406.04635 -5.48014,0.45093 c 15.27591,-31.3179 31.43451,-62.33025 40.82744,-95.68456 l 2.64023,5.6203 c -10.44934,31.1379 -23.84084,59.86194 -37.98753,89.61333 z" + class="shadow" + id="path1085" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 282.59169,408.07843 5.48014,0.45093 C 271.9581,377.42091 257.55557,356.46024 250.06195,322.6311 l -2.97225,5.42499 c 8.59628,31.47482 20.75767,50.37961 35.50199,80.02234 z" + class="shadow" + id="path1087" + sodipodi:nodetypes="ccccc" /></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Straps_Unnatural" + inkscape:label="Torso_Outfit_Straps_Unnatural" + style="display:inline;opacity:1"><path + inkscape:connector-curvature="0" + d="m 300.64645,182.01961 c 0.19647,-2.8289 -0.21252,-5.25416 -0.48765,-7.76866 l 18.75297,-10.43959 11.53228,-16.37604 c 0.48515,9.29334 0.35747,19.09563 5.57428,24.45929 -11.37581,3.97083 -19.90829,12.02571 -35.37188,10.125 z" + class="shadow" + id="XMLID_511_-1-1" + sodipodi:nodetypes="cccccc" /><path + inkscape:connector-curvature="0" + d="m 282.74507,409.66612 c -3.02008,-75.15795 -28.86151,-165.97691 20.57911,-228.58327 l 7.48106,-2.774 c -52.38053,67.74199 -24.96872,151.88878 -22.44483,231.28803 z" + class="shadow" + id="XMLID_511_-1-1-0" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 252.72931,292.831 0.21593,-5.70042 c 26.08054,7.76617 58.6829,-3.61816 80.64858,-9.13796 l -1.5334,6.06498 c -25.3681,6.21736 -50.58837,19.25971 -79.33111,8.7734 z" + class="shadow" + id="XMLID_511_-1-1-2" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 253.95837,322.57917 -1.10438,-5.55979 c 26.11901,7.93288 53.67436,-3.18904 74.78921,-12.39578 l -1.77559,6.01811 c -19.55992,7.0471 -43.16084,22.42458 -71.90924,11.93746 z" + class="shadow" + id="XMLID_511_-1-1-2-6" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 305.58478,461.76323 -2.91688,0.62771 c -0.237,-34.63249 43.891,-58.56721 74.52696,-75.64102 l 2.20189,5.09003 c -23.66963,12.29432 -69.72202,41.24006 -73.81197,69.92328 z" + class="shadow" + id="XMLID_511_-1-1-2-6-1" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 286.46262,461.96295 2.91688,0.62771 c -28.01268,-37.53971 -26.96023,-23.95407 -59.71446,-54.45352 l -1.38939,5.15253 c 34.69638,28.86465 42.2831,28.46475 58.18697,48.67328 z" + class="shadow" + id="XMLID_511_-1-1-2-6-1-0" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 230.0681,406.94442 0.77062,-5.05979 c 67.99401,11.93288 109.67161,-12.54586 143.53646,-21.5026 l 1.98091,4.40502 c -19.55992,7.0471 -78.41459,38.51949 -146.28799,22.15737 z" + class="shadow" + id="XMLID_511_-1-1-2-6-2" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 283.47212,411.04042 5.17119,-1.14037 26.1263,22.47011 -2.15059,4.14311 z" + class="shadow" + id="XMLID_511_-1-1-2-6-3" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="ccccc" + id="path5007" + class="shadow" + d="m 283.47212,411.04042 5.17119,-1.14037 -16.9362,33.09511 -3.33809,-2.73189 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 306.84144,179.80553 -2.06007,3.22555 c 23.3503,2.52905 38.53464,15.87246 53.33726,29.7214 l -1.09146,-6.06498 c -14.87819,-17.81605 -32.01863,-24.80565 -50.18573,-26.88197 z" + class="shadow" + id="XMLID_511_-1-1-2-3" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 302.41314,180.3416 2.06007,3.22555 c -17.14399,8.74118 -36.94672,13.05114 -49.62495,29.23526 l 2.50567,-4.20882 c 11.69297,-15.28809 29.81478,-19.23118 45.05921,-28.25199 z" + class="shadow" + id="XMLID_511_-1-1-2-3-1" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 290.49119,405.86957 -5.48014,0.45093 c 15.27591,-31.3179 31.43451,-62.33025 40.82744,-95.68456 l 3.21835,4.52655 c -10.44934,31.1379 -24.41896,60.95569 -38.56565,90.70708 z" + class="shadow" + id="XMLID_511_-1-1-2-6-1-06" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 282.59169,408.07843 5.48014,0.45093 c -16.11373,-31.10845 -26.58298,-52.15751 -34.0766,-85.98665 l -2.97225,5.42499 c 8.59628,31.47482 16.82439,50.468 31.56871,80.11073 z" + class="shadow" + id="XMLID_511_-1-1-2-6-1-06-9" + sodipodi:nodetypes="ccccc" /></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Straps_Normal" + inkscape:label="Torso_Outfit_Straps_Normal" + style="display:inline"><path + sodipodi:nodetypes="cccccc" + id="path1017" + class="shadow" + d="m 300.64645,182.01961 c 0.19647,-2.8289 -0.21252,-5.25416 -0.48765,-7.76866 l 18.75297,-10.43959 11.53228,-16.37604 c 0.48515,9.29334 0.35747,19.09563 5.57428,24.45929 -11.37581,3.97083 -19.90829,12.02571 -35.37188,10.125 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1019" + class="shadow" + d="m 282.74507,409.66612 c -3.02008,-75.15795 -28.86151,-165.97691 20.57911,-228.58327 l 7.48106,-2.774 c -52.38053,67.74199 -24.96872,151.88878 -22.44483,231.28803 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1021" + class="shadow" + d="m 248.54181,293.0185 0.59093,-5.63792 c 26.08054,7.76617 81.41051,-8.64113 103.37619,-14.16093 l -1.5334,6.06498 c -25.3681,6.21736 -73.69098,24.22018 -102.43372,13.73387 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1024" + class="shadow" + d="m 249.83337,322.70417 -1.10438,-5.55979 c 26.11901,7.93288 77.02383,-9.41284 98.13868,-18.61958 l -0.44977,5.62037 c -19.55992,7.0471 -67.83613,29.04612 -96.58453,18.559 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1026" + class="shadow" + d="m 305.58478,461.76323 -2.91688,0.62771 c -0.237,-34.63249 43.891,-58.56721 74.52696,-75.64102 l 2.20189,5.09003 c -23.66963,12.29432 -69.72202,41.24006 -73.81197,69.92328 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1028" + class="shadow" + d="m 286.46262,461.96295 2.91688,0.62771 c -28.01268,-37.53971 -26.96023,-23.95407 -59.71446,-54.45352 l -1.38939,5.15253 c 34.69638,28.86465 42.2831,28.46475 58.18697,48.67328 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1030" + class="shadow" + d="m 230.0681,406.94442 0.77062,-5.05979 c 67.99401,11.93288 109.67161,-12.54586 143.53646,-21.5026 l 1.98091,4.40502 c -19.55992,7.0471 -78.41459,38.51949 -146.28799,22.15737 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1032" + class="shadow" + d="m 283.47212,411.04042 5.17119,-1.14037 26.1263,22.47011 -2.15059,4.14311 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 283.47212,411.04042 5.17119,-1.14037 -16.9362,33.09511 -3.33809,-2.73189 z" + class="shadow" + id="path1034" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="ccccc" + id="path1036" + class="shadow" + d="m 306.84144,179.80553 -2.06007,3.22555 c 23.3503,2.52905 38.53464,15.87246 53.33726,29.7214 l -1.09146,-6.06498 c -14.87819,-17.81605 -32.01863,-24.80565 -50.18573,-26.88197 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1038" + class="shadow" + d="m 302.41314,180.3416 2.06007,3.22555 c -17.14399,8.74118 -36.94672,13.05114 -49.62495,29.23526 l 2.50567,-4.20882 c 11.69297,-15.28809 29.81478,-19.23118 45.05921,-28.25199 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1040" + class="shadow" + d="m 290.49119,405.86957 -5.48014,0.45093 c 15.27591,-31.3179 51.9848,-68.82679 61.37773,-102.1811 l 0.87606,5.45462 c -10.44934,31.1379 -42.62696,66.52416 -56.77365,96.27555 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1044" + class="shadow" + d="m 282.59169,408.07843 5.48014,0.45093 c -16.11373,-31.10845 -30.52048,-51.97001 -38.0141,-85.79915 l -2.97225,5.42499 c 8.59628,31.47482 20.76189,50.2805 35.50621,79.92323 z" + inkscape:connector-curvature="0" /></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 + 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" /></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" /><path + style="display:inline;opacity:1;fill:#000000" + d="m 249.99805,323.03906 c 19.2233,7.95638 55.40396,-0.4426 85.00781,-4.5039 -7.47162,0.73268 -15.33345,1.82358 -23.21875,2.9375 -7.8853,1.11391 -15.79532,2.25094 -23.36523,3.07422 -3.78496,0.41163 -7.48528,0.74598 -11.05469,0.95898 -3.56942,0.213 -7.0068,0.304 -10.26953,0.23437 -3.26274,-0.0696 -6.34992,-0.30009 -9.21485,-0.73632 -2.86492,-0.43624 -5.50878,-1.07802 -7.88476,-1.96485 z" + id="path2358" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccsccc" /><path + inkscape:connector-curvature="0" + d="m 335.00494,318.53533 c 0,0 2.60164,5.12801 3.8029,7.55426 23.94861,15.0158 25.77303,27.13678 35.62962,42.89594 13.12179,20.97971 30.59015,67.64028 30.59015,67.64028 -70.8552,-28.58878 -143.13155,31.22676 -211.75934,0.10113 0,0 8.14697,-40.75862 17.18577,-59.21839 9.85604,-20.12879 35.639,-43.442 39.5444,-54.469 20.08971,8.80583 55.63969,-1.71367 85.0065,-4.50422 z" + id="path1227" + sodipodi:nodetypes="ccaccscc" + style="display:inline;opacity:1;fill:#333333" /><path + inkscape:connector-curvature="0" + d="m 311.04401,327.6899 c 0.0522,-0.10709 7.00362,0.37294 7.78287,2.98975 1.09373,1.91041 -2.71095,5.0065 -2.81525,4.94713 -0.0624,-0.10254 7.16168,-0.42581 8.18384,2.13824 0.82618,2.04666 -4.36222,4.60347 -4.41092,4.5368 0.18756,-0.13865 8.76141,0.0136 9.37508,2.95661 1.12339,2.7339 -5.04179,6.86259 -5.08064,6.76687 0.17801,-0.0914 6.83044,0.80604 7.29555,3.1376 0.99465,2.53804 -4.0223,6.41207 -4.07764,6.30604 0.17207,-0.0883 8.56703,1.55963 8.9644,4.56029 1.01602,2.6197 -4.88943,6.28089 -5.03113,6.20815 0.1094,-0.0749 8.97405,1.71591 9.66103,4.9139 1.38429,3.32371 -5.67328,8.79376 -5.84007,8.74239 0.0763,-0.0104 8.03849,4.78518 7.56356,8.27073 0.0883,3.45544 -7.85098,7.31249 -7.90197,7.27062 0.15001,-0.0548 9.02844,6.59283 6.18398,9.86775 -2.11902,3.09446 -12.21137,-0.21607 -12.26513,-0.39269 0.0165,-0.0806 2.22395,9.26158 -1.73237,12.2649 -5.26342,3.32418 -17.88837,-0.8649 -17.59669,-1.01463 0.17956,0.0164 -1.34524,8.44366 -5.82577,9.89737 -4.5076,1.64849 -13.55715,-4.10713 -13.55715,-4.30795 0.17277,0.2838 -4.10847,6.59393 -8.12207,6.7862 0,0 -10.48671,-4.77116 -10.17145,-4.94609 0.29167,0.0989 -5.79892,4.83916 -10.43279,4.62568 -3.91425,-0.0968 -8.69575,-5.63783 -8.57089,-5.76602 0.18168,0.12789 -7.46896,4.76081 -11.76673,3.19345 -3.81063,-1.2341 -5.11346,-7.4931 -4.96204,-7.47396 -0.0296,0.21811 -10.64044,3.62348 -14.26381,0.83998 -3.65492,-2.13109 -1.49016,-10.09638 -1.34588,-10.10822 -0.13832,0.0568 -7.77646,-3.2513 -8.37111,-6.44327 -1.27342,-3.07674 3.11397,-8.91689 3.39631,-8.83959 -0.14867,0.0305 -3.34488,-5.29429 -2.02206,-7.96607 0.54322,-2.43642 5.99585,-5.00377 6.09658,-4.93483 -0.0881,0.0362 -1.90373,-4.97675 -0.46419,-7.36633 0.79291,-2.30555 6.32486,-4.80668 6.46038,-4.75899 -0.13335,0.0274 -1.42641,-4.03491 -0.05,-5.8995 0.70184,-1.71401 4.30644,-3.15261 4.34563,-3.02387 -0.25505,0.0524 -1.32182,-3.33886 -0.27293,-4.90796 0.86407,-1.96083 4.77924,-3.72749 4.75483,-3.52701 -0.048,0 0.12068,-3.08126 1.40387,-4.44066 0.88392,-1.8868 4.23392,-4.31588 4.29183,-4.20491 -0.1068,0.0329 1.54301,-4.29535 3.4155,-6.4064 1.05336,-1.94277 5.13741,-5.29514 5.24937,-5.29514 -0.0584,0.006 0.95294,-3.0619 2.45542,-4.48355 1.19345,-1.94404 4.55632,-4.3091 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z" + class="shadow" + id="path1229" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc" /><path + style="display:inline;opacity:1;fill:#ffffff" + sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacacc" + id="path1231" + d="m 311.04401,327.6899 c 0,0 6.84733,0.37283 7.78287,2.98975 0.6387,1.78662 -2.81525,4.94713 -2.81525,4.94713 0,0 7.42648,-0.57766 8.18384,2.13824 0.56655,2.03169 -4.41092,4.5368 -4.41092,4.5368 0,0 8.37349,-0.16331 9.37508,2.95661 0.86218,2.68563 -5.08064,6.76687 -5.08064,6.76687 0,0 6.52509,0.60499 7.29555,3.1376 0.72854,2.39482 -4.07764,6.30604 -4.07764,6.30604 0,0 8.26692,1.28109 8.9644,4.56029 0.55415,2.60533 -5.03113,6.20815 -5.03113,6.20815 0,0 8.74735,1.41837 9.66103,4.9139 0.88626,3.39062 -5.84007,8.74239 -5.84007,8.74239 0,0 7.72456,4.5383 7.56356,8.27073 -0.15425,3.57598 -7.90197,7.27062 -7.90197,7.27062 0,0 8.1178,6.50196 6.18398,9.86775 -2.03778,3.54675 -12.26513,-0.39269 -12.26513,-0.39269 0,0 1.46134,9.64806 -1.73237,12.2649 -4.54459,3.7237 -17.59669,-1.01463 -17.59669,-1.01463 0,0 -2.2505,8.52889 -5.82577,9.89737 -4.42841,1.69502 -13.55715,-4.30795 -13.55715,-4.30795 0,0 -4.62018,6.35786 -8.12207,6.7862 -3.7422,0.45774 -10.17145,-4.94609 -10.17145,-4.94609 0,0 -6.64323,4.95785 -10.43279,4.62568 -3.43015,-0.30068 -8.57089,-5.76602 -8.57089,-5.76602 0,0 -7.96291,4.62455 -11.76673,3.19345 -2.79886,-1.05301 -4.96204,-7.47396 -4.96204,-7.47396 0,0 -10.5899,3.87098 -14.26381,0.83998 -2.622,-2.16317 -1.34588,-10.10822 -1.34588,-10.10822 0,0 -7.41836,-3.05339 -8.37111,-6.44327 -0.85408,-3.03879 3.39631,-8.83959 3.39631,-8.83959 0,0 -2.8861,-5.36632 -2.02206,-7.96607 0.82459,-2.48106 6.09658,-4.93483 6.09658,-4.93483 0,0 -1.5043,-5.13669 -0.46419,-7.36633 1.13073,-2.4239 6.46038,-4.75899 6.46038,-4.75899 0,0 -0.95325,-4.15262 -0.05,-5.8995 0.81052,-1.56758 4.34563,-3.02387 4.34563,-3.02387 0,0 -0.96863,-3.42448 -0.27293,-4.90796 0.83789,-1.78667 4.75483,-3.52701 4.75483,-3.52701 0,0 0.59123,-3.11792 1.40387,-4.44066 1.0484,-1.70649 4.29183,-4.20491 4.29183,-4.20491 0,0 1.97917,-4.45875 3.4155,-6.4064 1.47514,-2.00028 5.24937,-5.29514 5.24937,-5.29514 0,0 1.41081,-3.13734 2.45542,-4.48355 1.27666,-1.64525 4.56262,-4.26767 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccssccc" + id="path1233" + class="shadow" + d="m 309.71288,327.6899 c 0.17826,-0.0554 11.29343,14.89769 12.56072,23.45 5.35408,18.68238 17.63515,40.72923 4.38693,56.74234 -20.35084,24.59804 -79.88819,32.00846 -104.40557,3.84551 -10.16656,-11.67826 0.99038,-31.4387 9.04984,-47.4412 5.24788,-12.61332 23.50188,-36.42668 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 309.71288,327.6899 c 0,0 10.07222,14.93896 12.56072,23.45 5.32378,18.20822 17.01533,42.58588 4.38693,56.74234 -23.18276,25.98792 -81.71681,30.26582 -104.40557,3.84551 -10.48841,-12.21341 2.84148,-32.58757 9.04984,-47.4412 5.64594,-13.50803 24.91963,-36.16771 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z" + id="path1235" + sodipodi:nodetypes="caaaacc" + style="display:inline;opacity:1;fill:#ffffff" /><path + sodipodi:nodetypes="ccccc" + id="path1245" + class="shadow" + 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" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + 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" + id="path1247" + sodipodi:nodetypes="ccccc" + style="display:inline;opacity:1;fill:#ffffff" /><g + style="display:inline;opacity:0.697" + transform="matrix(0.99515665,0,0,0.99515665,59.14021,25.319195)" + id="g1223-8" /></g><g + inkscape:groupmode="layer" + id="Torso_Outfit_Maid_Lewd_Unnatural" + inkscape:label="Torso_Outfit_Maid_Lewd_Unnatural" + style="display:inline;opacity:1"><path + class="shadow" + inkscape:connector-curvature="0" + d="m 332.46378,318.91098 c 0,0 4.92183,4.75236 6.12309,7.17861 22.32823,15.82318 26.05552,27.17961 35.85059,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 38.43236,-43.77013 43.46628,-54.79713 20.08971,8.80583 49.17665,-1.00989 78.54346,-3.80044 z" + id="path1326" + sodipodi:nodetypes="cccccccc" /><path + style="display:inline;opacity:1;fill:#333333" + sodipodi:nodetypes="ccsccscc" + id="path1343" + d="m 332.46378,318.91098 c 0,0 4.92183,4.75236 6.12309,7.17861 21.82184,16.49529 25.63258,27.32918 35.85059,42.89594 13.57881,20.68684 30.59015,67.64028 30.59015,67.64028 -70.8552,-28.58878 -143.13155,31.22676 -211.75934,0.10113 0,0 8.14697,-40.75862 17.18577,-59.21839 9.85604,-20.12879 39.56088,-43.77013 43.46628,-54.79713 20.08971,8.80583 49.17665,-1.00989 78.54346,-3.80044 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc" + id="path1345" + class="shadow" + d="m 311.04401,327.6899 c 0.0522,-0.10709 7.00362,0.37294 7.78287,2.98975 1.09373,1.91041 -2.71095,5.0065 -2.81525,4.94713 -0.0624,-0.10254 7.16168,-0.42581 8.18384,2.13824 0.82618,2.04666 -4.36222,4.60347 -4.41092,4.5368 0.18756,-0.13865 8.76141,0.0136 9.37508,2.95661 1.12339,2.7339 -5.04179,6.86259 -5.08064,6.76687 0.17801,-0.0914 6.83044,0.80604 7.29555,3.1376 0.99465,2.53804 -4.0223,6.41207 -4.07764,6.30604 0.17207,-0.0883 8.56703,1.55963 8.9644,4.56029 1.01602,2.6197 -4.88943,6.28089 -5.03113,6.20815 0.1094,-0.0749 8.97405,1.71591 9.66103,4.9139 1.38429,3.32371 -5.67328,8.79376 -5.84007,8.74239 0.0763,-0.0104 8.03849,4.78518 7.56356,8.27073 0.0883,3.45544 -7.85098,7.31249 -7.90197,7.27062 0.15001,-0.0548 9.02844,6.59283 6.18398,9.86775 -2.11902,3.09446 -12.21137,-0.21607 -12.26513,-0.39269 0.0165,-0.0806 2.22395,9.26158 -1.73237,12.2649 -5.26342,3.32418 -17.88837,-0.8649 -17.59669,-1.01463 0.17956,0.0164 -1.34524,8.44366 -5.82577,9.89737 -4.5076,1.64849 -13.55715,-4.10713 -13.55715,-4.30795 0.17277,0.2838 -4.10847,6.59393 -8.12207,6.7862 0,0 -10.48671,-4.77116 -10.17145,-4.94609 0.29167,0.0989 -5.79892,4.83916 -10.43279,4.62568 -3.91425,-0.0968 -8.69575,-5.63783 -8.57089,-5.76602 0.18168,0.12789 -7.46896,4.76081 -11.76673,3.19345 -3.81063,-1.2341 -5.11346,-7.4931 -4.96204,-7.47396 -0.0296,0.21811 -10.64044,3.62348 -14.26381,0.83998 -3.65492,-2.13109 -1.49016,-10.09638 -1.34588,-10.10822 -0.13832,0.0568 -7.77646,-3.2513 -8.37111,-6.44327 -1.27342,-3.07674 3.11397,-8.91689 3.39631,-8.83959 -0.14867,0.0305 -3.34488,-5.29429 -2.02206,-7.96607 0.54322,-2.43642 5.99585,-5.00377 6.09658,-4.93483 -0.0881,0.0362 -1.90373,-4.97675 -0.46419,-7.36633 0.79291,-2.30555 6.32486,-4.80668 6.46038,-4.75899 -0.13335,0.0274 -1.42641,-4.03491 -0.05,-5.8995 0.70184,-1.71401 4.30644,-3.15261 4.34563,-3.02387 -0.25505,0.0524 -1.32182,-3.33886 -0.27293,-4.90796 0.86407,-1.96083 4.77924,-3.72749 4.75483,-3.52701 -0.048,0 0.12068,-3.08126 1.40387,-4.44066 0.88392,-1.8868 4.23392,-4.31588 4.29183,-4.20491 -0.1068,0.0329 1.54301,-4.29535 3.4155,-6.4064 1.05336,-1.94277 5.13741,-5.29514 5.24937,-5.29514 -0.0584,0.006 0.95294,-3.0619 2.45542,-4.48355 1.19345,-1.94404 4.55632,-4.3091 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 311.04401,327.6899 c 0,0 6.84733,0.37283 7.78287,2.98975 0.6387,1.78662 -2.81525,4.94713 -2.81525,4.94713 0,0 7.42648,-0.57766 8.18384,2.13824 0.56655,2.03169 -4.41092,4.5368 -4.41092,4.5368 0,0 8.37349,-0.16331 9.37508,2.95661 0.86218,2.68563 -5.08064,6.76687 -5.08064,6.76687 0,0 6.52509,0.60499 7.29555,3.1376 0.72854,2.39482 -4.07764,6.30604 -4.07764,6.30604 0,0 8.26692,1.28109 8.9644,4.56029 0.55415,2.60533 -5.03113,6.20815 -5.03113,6.20815 0,0 8.74735,1.41837 9.66103,4.9139 0.88626,3.39062 -5.84007,8.74239 -5.84007,8.74239 0,0 7.72456,4.5383 7.56356,8.27073 -0.15425,3.57598 -7.90197,7.27062 -7.90197,7.27062 0,0 8.1178,6.50196 6.18398,9.86775 -2.03778,3.54675 -12.26513,-0.39269 -12.26513,-0.39269 0,0 1.46134,9.64806 -1.73237,12.2649 -4.54459,3.7237 -17.59669,-1.01463 -17.59669,-1.01463 0,0 -2.2505,8.52889 -5.82577,9.89737 -4.42841,1.69502 -13.55715,-4.30795 -13.55715,-4.30795 0,0 -4.62018,6.35786 -8.12207,6.7862 -3.7422,0.45774 -10.17145,-4.94609 -10.17145,-4.94609 0,0 -6.64323,4.95785 -10.43279,4.62568 -3.43015,-0.30068 -8.57089,-5.76602 -8.57089,-5.76602 0,0 -7.96291,4.62455 -11.76673,3.19345 -2.79886,-1.05301 -4.96204,-7.47396 -4.96204,-7.47396 0,0 -10.5899,3.87098 -14.26381,0.83998 -2.622,-2.16317 -1.34588,-10.10822 -1.34588,-10.10822 0,0 -7.41836,-3.05339 -8.37111,-6.44327 -0.85408,-3.03879 3.39631,-8.83959 3.39631,-8.83959 0,0 -2.8861,-5.36632 -2.02206,-7.96607 0.82459,-2.48106 6.09658,-4.93483 6.09658,-4.93483 0,0 -1.5043,-5.13669 -0.46419,-7.36633 1.13073,-2.4239 6.46038,-4.75899 6.46038,-4.75899 0,0 -0.95325,-4.15262 -0.05,-5.8995 0.81052,-1.56758 4.34563,-3.02387 4.34563,-3.02387 0,0 -0.96863,-3.42448 -0.27293,-4.90796 0.83789,-1.78667 4.75483,-3.52701 4.75483,-3.52701 0,0 0.59123,-3.11792 1.40387,-4.44066 1.0484,-1.70649 4.29183,-4.20491 4.29183,-4.20491 0,0 1.97917,-4.45875 3.4155,-6.4064 1.47514,-2.00028 5.24937,-5.29514 5.24937,-5.29514 0,0 1.41081,-3.13734 2.45542,-4.48355 1.27666,-1.64525 4.56262,-4.26767 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z" + id="path1347" + sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacacc" + style="display:inline;opacity:1;fill:#ffffff" /><path + inkscape:connector-curvature="0" + d="m 309.71288,327.6899 c 0.17826,-0.0554 11.29343,14.89769 12.56072,23.45 5.35408,18.68238 17.63515,40.72923 4.38693,56.74234 -20.35084,24.59804 -79.88819,32.00846 -104.40557,3.84551 -10.16656,-11.67826 0.99038,-31.4387 9.04984,-47.4412 5.24788,-12.61332 23.50188,-36.42668 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z" + class="shadow" + id="path1349" + sodipodi:nodetypes="ccssccc" /><path + style="display:inline;opacity:1;fill:#ffffff" + sodipodi:nodetypes="caaaacc" + id="path1351" + d="m 309.71288,327.6899 c 0,0 10.07222,14.93896 12.56072,23.45 5.32378,18.20822 17.01533,42.58588 4.38693,56.74234 -23.18276,25.98792 -81.71681,30.26582 -104.40557,3.84551 -10.48841,-12.21341 2.84148,-32.58757 9.04984,-47.4412 5.64594,-13.50803 24.91963,-36.16771 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 332.59192,318.88911 6.08774,7.14854 c -34.68921,1.29057 -66.54134,17.97839 -88.5273,3.49476 l 3.86668,-6.97285 c 33.13895,8.49273 45.86818,-5.13302 78.57288,-3.67045 z" + class="shadow" + id="path1354" + sodipodi:nodetypes="ccccc" /><path + style="display:inline;opacity:1;fill:#ffffff" + sodipodi:nodetypes="ccccc" + id="path1356" + d="m 332.59192,318.88911 6.08774,7.14854 c -35.36449,0.47083 -67.95512,17.37248 -88.5273,3.49476 l 3.86668,-6.97285 c 30.76253,9.95515 45.2941,-4.00464 78.57288,-3.67045 z" + inkscape:connector-curvature="0" /><g + id="g1358" + transform="matrix(0.99515665,0,0,0.99515665,59.14021,25.319195)" + style="display:inline;opacity:0.697" /></g><g + style="display:inline;opacity:1" + inkscape:label="Torso_Outfit_Maid_Lewd_Normal" + id="Torso_Outfit_Maid_Lewd_Normal" + inkscape:groupmode="layer"><path + sodipodi:nodetypes="cccccccc" + id="path1363" + d="m 349.25494,318.53533 c 0,0 0.78914,5.12801 1.9904,7.55426 20.33794,23.39971 14.61913,26.64309 23.19212,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 69.88969,-1.71367 99.2565,-4.50422 z" + inkscape:connector-curvature="0" + class="shadow" /><path + style="display:inline;opacity:1;fill:#000000" + d="m 249.99805,323.03906 c 19.2233,7.95638 69.65396,-0.4426 99.25781,-4.5039 -7.47162,0.73268 -29.58345,1.82358 -37.46875,2.9375 -7.8853,1.11391 -15.79532,2.25094 -23.36523,3.07422 -3.78496,0.41163 -7.48528,0.74598 -11.05469,0.95898 -3.56942,0.213 -7.0068,0.304 -10.26953,0.23437 -3.26274,-0.0696 -6.34992,-0.30009 -9.21485,-0.73632 -2.86492,-0.43624 -5.50878,-1.07802 -7.88476,-1.96485 z" + id="path1369" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccsccc" /><path + inkscape:connector-curvature="0" + d="m 349.25494,318.53533 c 0,0 0.78914,5.12801 1.9904,7.55426 18.76111,23.0783 15.97322,28.3322 23.19212,42.89594 10.98968,22.17107 30.59015,67.64028 30.59015,67.64028 -70.8552,-28.58878 -143.13155,31.22676 -211.75934,0.10113 0,0 8.14697,-40.75862 17.18577,-59.21839 9.85604,-20.12879 35.639,-43.442 39.5444,-54.469 20.08971,8.80583 69.88969,-1.71367 99.2565,-4.50422 z" + id="path1377" + sodipodi:nodetypes="ccaccscc" + style="display:inline;opacity:1;fill:#333333" /><path + inkscape:connector-curvature="0" + d="m 311.04401,327.6899 c 0.0522,-0.10709 7.00362,0.37294 7.78287,2.98975 1.09373,1.91041 -2.71095,5.0065 -2.81525,4.94713 -0.0624,-0.10254 7.16168,-0.42581 8.18384,2.13824 0.82618,2.04666 -4.36222,4.60347 -4.41092,4.5368 0.18756,-0.13865 8.76141,0.0136 9.37508,2.95661 1.12339,2.7339 -5.04179,6.86259 -5.08064,6.76687 0.17801,-0.0914 6.83044,0.80604 7.29555,3.1376 0.99465,2.53804 -4.0223,6.41207 -4.07764,6.30604 0.17207,-0.0883 8.56703,1.55963 8.9644,4.56029 1.01602,2.6197 -4.88943,6.28089 -5.03113,6.20815 0.1094,-0.0749 8.97405,1.71591 9.66103,4.9139 1.38429,3.32371 -5.67328,8.79376 -5.84007,8.74239 0.0763,-0.0104 8.03849,4.78518 7.56356,8.27073 0.0883,3.45544 -7.85098,7.31249 -7.90197,7.27062 0.15001,-0.0548 9.02844,6.59283 6.18398,9.86775 -2.11902,3.09446 -12.21137,-0.21607 -12.26513,-0.39269 0.0165,-0.0806 2.22395,9.26158 -1.73237,12.2649 -5.26342,3.32418 -17.88837,-0.8649 -17.59669,-1.01463 0.17956,0.0164 -1.34524,8.44366 -5.82577,9.89737 -4.5076,1.64849 -13.55715,-4.10713 -13.55715,-4.30795 0.17277,0.2838 -4.10847,6.59393 -8.12207,6.7862 0,0 -10.48671,-4.77116 -10.17145,-4.94609 0.29167,0.0989 -5.79892,4.83916 -10.43279,4.62568 -3.91425,-0.0968 -8.69575,-5.63783 -8.57089,-5.76602 0.18168,0.12789 -7.46896,4.76081 -11.76673,3.19345 -3.81063,-1.2341 -5.11346,-7.4931 -4.96204,-7.47396 -0.0296,0.21811 -10.64044,3.62348 -14.26381,0.83998 -3.65492,-2.13109 -1.49016,-10.09638 -1.34588,-10.10822 -0.13832,0.0568 -7.77646,-3.2513 -8.37111,-6.44327 -1.27342,-3.07674 3.11397,-8.91689 3.39631,-8.83959 -0.14867,0.0305 -3.34488,-5.29429 -2.02206,-7.96607 0.54322,-2.43642 5.99585,-5.00377 6.09658,-4.93483 -0.0881,0.0362 -1.90373,-4.97675 -0.46419,-7.36633 0.79291,-2.30555 6.32486,-4.80668 6.46038,-4.75899 -0.13335,0.0274 -1.42641,-4.03491 -0.05,-5.8995 0.70184,-1.71401 4.30644,-3.15261 4.34563,-3.02387 -0.25505,0.0524 -1.32182,-3.33886 -0.27293,-4.90796 0.86407,-1.96083 4.77924,-3.72749 4.75483,-3.52701 -0.048,0 0.12068,-3.08126 1.40387,-4.44066 0.88392,-1.8868 4.23392,-4.31588 4.29183,-4.20491 -0.1068,0.0329 1.54301,-4.29535 3.4155,-6.4064 1.05336,-1.94277 5.13741,-5.29514 5.24937,-5.29514 -0.0584,0.006 0.95294,-3.0619 2.45542,-4.48355 1.19345,-1.94404 4.55632,-4.3091 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z" + class="shadow" + id="path1379" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc" /><path + style="display:inline;opacity:1;fill:#ffffff" + sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacacc" + id="path1381" + d="m 311.04401,327.6899 c 0,0 6.84733,0.37283 7.78287,2.98975 0.6387,1.78662 -2.81525,4.94713 -2.81525,4.94713 0,0 7.42648,-0.57766 8.18384,2.13824 0.56655,2.03169 -4.41092,4.5368 -4.41092,4.5368 0,0 8.37349,-0.16331 9.37508,2.95661 0.86218,2.68563 -5.08064,6.76687 -5.08064,6.76687 0,0 6.52509,0.60499 7.29555,3.1376 0.72854,2.39482 -4.07764,6.30604 -4.07764,6.30604 0,0 8.26692,1.28109 8.9644,4.56029 0.55415,2.60533 -5.03113,6.20815 -5.03113,6.20815 0,0 8.74735,1.41837 9.66103,4.9139 0.88626,3.39062 -5.84007,8.74239 -5.84007,8.74239 0,0 7.72456,4.5383 7.56356,8.27073 -0.15425,3.57598 -7.90197,7.27062 -7.90197,7.27062 0,0 8.1178,6.50196 6.18398,9.86775 -2.03778,3.54675 -12.26513,-0.39269 -12.26513,-0.39269 0,0 1.46134,9.64806 -1.73237,12.2649 -4.54459,3.7237 -17.59669,-1.01463 -17.59669,-1.01463 0,0 -2.2505,8.52889 -5.82577,9.89737 -4.42841,1.69502 -13.55715,-4.30795 -13.55715,-4.30795 0,0 -4.62018,6.35786 -8.12207,6.7862 -3.7422,0.45774 -10.17145,-4.94609 -10.17145,-4.94609 0,0 -6.64323,4.95785 -10.43279,4.62568 -3.43015,-0.30068 -8.57089,-5.76602 -8.57089,-5.76602 0,0 -7.96291,4.62455 -11.76673,3.19345 -2.79886,-1.05301 -4.96204,-7.47396 -4.96204,-7.47396 0,0 -10.5899,3.87098 -14.26381,0.83998 -2.622,-2.16317 -1.34588,-10.10822 -1.34588,-10.10822 0,0 -7.41836,-3.05339 -8.37111,-6.44327 -0.85408,-3.03879 3.39631,-8.83959 3.39631,-8.83959 0,0 -2.8861,-5.36632 -2.02206,-7.96607 0.82459,-2.48106 6.09658,-4.93483 6.09658,-4.93483 0,0 -1.5043,-5.13669 -0.46419,-7.36633 1.13073,-2.4239 6.46038,-4.75899 6.46038,-4.75899 0,0 -0.95325,-4.15262 -0.05,-5.8995 0.81052,-1.56758 4.34563,-3.02387 4.34563,-3.02387 0,0 -0.96863,-3.42448 -0.27293,-4.90796 0.83789,-1.78667 4.75483,-3.52701 4.75483,-3.52701 0,0 0.59123,-3.11792 1.40387,-4.44066 1.0484,-1.70649 4.29183,-4.20491 4.29183,-4.20491 0,0 1.97917,-4.45875 3.4155,-6.4064 1.47514,-2.00028 5.24937,-5.29514 5.24937,-5.29514 0,0 1.41081,-3.13734 2.45542,-4.48355 1.27666,-1.64525 4.56262,-4.26767 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccssccc" + id="path1384" + class="shadow" + d="m 309.71288,327.6899 c 0.17826,-0.0554 11.29343,14.89769 12.56072,23.45 5.35408,18.68238 17.63515,40.72923 4.38693,56.74234 -20.35084,24.59804 -79.88819,32.00846 -104.40557,3.84551 -10.16656,-11.67826 0.99038,-31.4387 9.04984,-47.4412 5.24788,-12.61332 23.50188,-36.42668 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 309.71288,327.6899 c 0,0 10.07222,14.93896 12.56072,23.45 5.32378,18.20822 17.01533,42.58588 4.38693,56.74234 -23.18276,25.98792 -81.71681,30.26582 -104.40557,3.84551 -10.48841,-12.21341 2.84148,-32.58757 9.04984,-47.4412 5.64594,-13.50803 24.91963,-36.16771 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z" + id="path1386" + sodipodi:nodetypes="caaaacc" + style="display:inline;opacity:1;fill:#ffffff" /><path + sodipodi:nodetypes="ccccc" + id="path1388" + class="shadow" + d="m 349.38308,318.51346 1.95505,7.52419 c -34.68921,1.29057 -83.12169,18.30652 -105.10765,3.82289 l 3.86668,-6.97285 c 33.13895,8.49273 66.58122,-5.8368 99.28592,-4.37423 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 349.38308,318.51346 1.95505,7.52419 c -35.36449,0.47083 -84.53547,17.70061 -105.10765,3.82289 l 3.86668,-6.97285 c 30.76253,9.95515 66.00714,-4.70842 99.28592,-4.37423 z" + id="path1390" + sodipodi:nodetypes="ccccc" + style="display:inline;opacity:1;fill:#ffffff" /><g + style="display:inline;opacity:0.697" + transform="matrix(0.99515665,0,0,0.99515665,59.14021,25.319195)" + id="g1392" /></g></g></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" /></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" /></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" /></g></g><g + inkscape:groupmode="layer" + id="Navel_Addons_" + inkscape:label="Navel_Addons_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Navel_Piercing_Heavy" + inkscape:label="Navel_Piercing_Heavy" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 277.10131,343.99568 c -0.3,-2.7e-4 -1.95,3 -1.8,17.4 0.15,19.05 1.8,19.95 2.1,19.95 0.49818,0 0.33196,-11.1 1.33125,-23.85 -0.75,-5.99289 -1.18125,-13.49959 -1.63125,-13.5 z" + class="steel_piercing" + id="XMLID_513_" + sodipodi:nodetypes="scscs" /><path + inkscape:connector-curvature="0" + d="m 277.25964,381.16047 c -0.75,0 -1.5,3.6 -1.2,6.6 0.3,1.95 0.9,4.5 1.8,4.5 0.6,0 1.05,-2.7 1.2,-4.5 0,-3.15 -1.05,-6.6 -1.8,-6.6 z" + class="steel_piercing" + id="XMLID_514_" + sodipodi:nodetypes="scscs" /></g><g + inkscape:groupmode="layer" + id="Navel_Piercing" + inkscape:label="Navel_Piercing" + style="display:inline"><circle + r="2.7" + cy="336.9996" + cx="276.44211" + class="steel_piercing" + id="XMLID_515_" /><circle + r="2.7" + cy="346.14935" + cx="276.88406" + class="steel_piercing" + id="XMLID_516_" /></g></g><g + inkscape:groupmode="layer" + id="Pubic_Hair_" + inkscape:label="Pubic_Hair_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Pussy_Tattoo" + inkscape:label="Pussy_Tattoo" + style="display:inline"><path + style="fill:none;stroke:none" + d="m 253.62239,430.50769 c 14.1376,12.59209 60.92413,9.84192 72.85898,-5.2246" + id="path4363" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /><text + xml:space="preserve" + id="text4365" + style="font-size:12px;line-height:0%;text-align:center;text-anchor:middle" + x="45.367271" + y="18.561554"><textPath + xlink:href="#path4363" + id="textPath4369" + style="font-size:12px;text-align:center;text-anchor:middle">'+_art_pussy_tattoo_text+'</textPath></text> +</g><g + inkscape:groupmode="layer" + id="Pubic_Hair_Bush" + inkscape:label="Pubic_Hair_Bush" + style="display:inline"><path + d="m 308.13404,461.37031 c -0.42215,-1.28729 0.0816,-2.88322 0.21937,-4.35713 0.83735,-0.9231 3.39354,-0.46675 4.27169,-0.32918 -1.30887,-1.90043 -2.57358,-4.54221 -2.26693,-6.80614 1.738,0.72332 5.26268,-0.10717 6.41461,-0.67323 -0.0359,-0.042 -3.73233,-5.5593 -3.73233,-5.5593 l 9.37697,-2.92546 c -2.29483,-1.16082 -2.9398,-3.27348 -0.88244,-5.06275 2.05735,-1.78926 4.65981,-3.19815 6.96574,-5.50002 2.30592,-2.30188 5.70181,-7.11497 7.1718,-9.21523 -3.30249,2.57531 -8.11937,4.56169 -12.38086,6.76405 3.87939,-4.08083 5.14191,-8.70938 6.56483,-13.30436 -2.75485,4.55035 -5.96287,8.80998 -11.80357,11.38073 0.0795,-2.69081 -1.1771,-5.33024 -2.60799,-7.96296 -0.22411,2.1009 0.65963,4.43504 -1.59857,6.10771 -1.87893,0.66093 -0.47641,0.32561 -1.63156,-0.61901 -1.15515,-0.94462 -1.07324,-2.86249 -0.92674,-4.77175 0.20638,0.15948 -5.2425,3.40307 -10.88069,2.89338 0.39636,-1.77718 -0.0929,-3.59654 -0.547,-5.41423 -1.43947,1.75633 -2.54315,3.7645 -5.73335,4.20778 -2.4605,-0.40363 -2.23191,-1.95973 -2.31051,-3.38418 -1.13808,1.43053 -1.96377,3.07348 -4.50289,3.5513 -1.9104,-1.28206 -0.74793,-2.77125 -0.61109,-4.22119 -1.53049,0.96737 -3.1427,1.90033 -3.58898,3.32421 -0.54093,-1.76679 -2.17255,-2.5156 -3.54365,-3.50756 -0.0389,1.41793 0.87573,3.17815 -1.27914,3.8365 -1.65822,-2.01275 -2.66902,-3.03894 -4.81025,-3.3656 0.25465,1.17773 3.29056,2.50997 -1.24916,3.42134 -2.99547,0.66615 -4.88472,-1.06452 -6.85325,-2.62341 1.01031,2.71963 1.71296,5.80844 3.5463,7.54043 -2.27359,-0.46197 -8.62398,-1.3164 -12.1147,-8.21411 -1.18774,2.82298 -3.39707,5.36503 -1.4599,9.04737 -4.08,-0.2462 -6.1875,-2.55065 -8.40846,-4.73671 0.87978,2.88663 0.68095,5.90808 3.36457,8.56923 -3.64826,0.33795 -6.3127,-1.29171 -9.26707,-2.34153 3.9514,4.60614 8.75627,7.56631 13.86823,9.93423 1.34859,1.27311 6.10477,6.04621 5.62068,7.31932 2.82401,-2.71219 1.92529,-1.87573 4.91302,-0.16768 2.79974,2.66519 2.83014,1.95151 3.16745,4.12421 1.92433,1.50259 3.84866,1.63676 5.77299,0.97623 0,0 -2.01653,2.6409 -4.35182,2.38868 1.74775,0.61934 4.06788,-0.37099 5.9306,-0.0583 1.77365,1.74778 0.43253,3.2124 -1.41503,4.63097 2.73367,-0.28074 5.4652,-0.70503 8.23933,1.72431 1.73622,1.49945 2.78135,3.0373 3.78142,4.57765 1.20741,0.19088 2.97961,-0.0117 1.69438,1.91564 0.94867,-0.32712 2.37843,-0.52377 1.68983,-1.29489 1.14987,0.78895 2.29975,0.66306 3.44962,0.4995 -0.7627,-0.5118 -1.8836,-1.08502 -0.37378,-1.68488 l -1.10478,-0.10762 -0.6613,-0.63638 c -0.0538,-0.38752 0.0965,-0.69562 0.57239,-0.87715 -0.55161,-0.19514 -0.82876,-0.0489 -0.99909,0.22508 0.0467,-0.74904 -0.0233,-1.52988 -0.30014,-2.36715 -0.37451,0.28516 -0.76038,0.25212 -1.16432,-0.28668 0.002,-0.91711 -0.0725,-1.84829 0.23704,-2.70958 -0.16694,0.37927 -0.59322,0.44156 -1.01892,0.50457 0.38567,-0.60697 0.46502,-1.15824 0.53332,-1.7075 -0.4944,0.29755 -1.11943,0.0252 -1.05496,-0.82437 0.33836,-0.10834 0.62446,-0.4585 0.67693,-0.79556 -0.43615,-0.85876 -0.10806,-1.64444 -0.0504,-2.55807 0.27076,0.89645 0.49642,1.81024 1.13611,2.5648 0.13715,-0.65786 0.62993,-1.03497 1.15644,-1.38545 0.48685,0.95084 0.54472,1.96297 0.4514,2.9967 0.23312,-0.65185 0.73464,-0.76691 1.27616,-0.80195 0.12849,0.90282 0.30765,1.81288 -0.27027,2.61479 0.54567,-0.30808 1.13159,-0.3075 1.62165,-1.04187 -0.0858,1.11195 -0.27643,2.20992 -0.67396,3.28031 0.25461,-0.26873 0.6401,-0.4284 0.66867,-0.8855 0.23427,0.66706 0.0246,1.11215 -0.0483,1.62563 0.11494,-0.22262 0.30901,-0.3028 0.63201,-0.15092 -0.23603,0.51298 -0.21479,0.99569 0.25629,1.42548 -0.0542,-0.28824 -0.10088,-0.57291 0.23199,-0.67779 0.40976,0.32368 0.52422,0.69166 0.51908,1.07758 -0.002,0.53232 -0.031,0.73901 0.15212,1.14793 -0.0165,-0.005 1.73831,1.6893 1.73831,1.6893 0.38852,-0.50132 0.92958,-0.77384 1.56782,-0.90059 1.1846,0.75012 2.56975,0.89857 3.88755,1.24905 -0.4332,-1.00083 0.027,-1.15529 0.77386,-1.03816 1.46038,-0.0697 1.24438,0.67559 1.26775,1.30448 1.46259,-1.00786 1.07324,-1.76849 1.50981,-2.14482 0.64839,0.13025 1.1895,0.0102 1.588,-0.44262 z" + id="path4354-2" + inkscape:connector-curvature="0" + class="pubic_hair" + sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Pubic_Hair_Neat" + inkscape:label="Pubic_Hair_Neat" + style="display:inline"><path + d="M 487.94,432.27" + class="hair" + id="path225" + inkscape:connector-curvature="0" /><path + d="m 286.65609,461.98173 c 0.16638,0.005 0.65051,0.34419 0.56084,0.39247 0.19977,0.003 0.32856,-0.0658 0.40338,-0.1882 0.33422,0.12782 0.51696,0.25564 0.58043,0.38346 0.21609,-0.0894 0.4782,-0.15944 1.0133,-0.11503 0.43584,0.10754 0.68692,0.23419 0.82103,0.37294 -0.008,0.0927 0.52663,-0.14421 0.736,-0.32954 -0.90113,-4.11148 -2.10193,-8.21187 -1.94173,-12.36266 2.71856,4.23162 8.61462,12.04671 8.61462,12.04671 0.38989,0.13811 0.74234,0.29026 0.96675,0.49043 0.24847,-0.10956 0.69829,-0.13102 1.10404,-0.17177 0.58751,0.0888 1.10811,0.2044 1.59165,0.33481 0.6335,-0.21513 1.27181,-0.4289 2.23112,-0.55239 0.52527,0.0705 1.01879,0.15999 1.33811,0.35403 0.15476,-0.34455 0.70352,-0.50509 1.09301,-0.76827 0,0 0.44736,-5.11636 0.76594,-5.196 -0.12435,-0.50648 -0.23931,-1.02703 0.0439,-2.14488 l 2.01173,-3.54551 c -0.43128,0.39066 -0.44976,-0.25068 -0.56821,-0.64206 -1.08258,-0.32189 7.91303,-16.94494 10.50549,-18.79352 -0.63953,0.33539 -13.02,1.46541 -13.26141,1.25849 -0.98823,0.039 -1.25854,-0.32319 -1.79438,-0.53699 -1.41965,0.37941 -3.15091,0.48875 -4.77102,0.69443 -0.81811,-0.007 -1.4182,-0.1762 -1.83865,-0.47812 -1.18533,0.5001 -2.60972,0.62168 -3.95727,0.86493 -0.81281,-0.12067 -1.55687,-0.28389 -2.06256,-0.59468 -1.39849,0.35479 -3.03308,0.59666 -5.10777,0.62804 -0.72143,-0.13335 -1.41712,-0.2812 -1.90627,-0.54521 -1.13229,0.38897 -2.62485,0.50346 -4.37547,0.42133 -0.93928,-0.0262 -1.90812,-0.0174 -2.53422,-0.41368 -0.42921,0.26544 -1.18226,0.18798 -1.84402,0.20719 -0.52649,0.46904 -18.28084,2.95756 -19.55531,2.12087 0.66622,-0.3004 16.89738,8.89776 17.23132,10.56747 0.62897,0.18482 2.21565,2.89524 2.70926,3.29872 0.93409,1.06603 1.82894,2.13206 2.47505,3.19809 1.19621,0.89238 2.23683,1.80421 3.09974,2.73825 0.58096,0.62421 0.87351,1.24843 1.06066,1.87264 0.77048,0.99028 1.01013,0.94544 1.39224,1.17839 0.30699,0.2588 0.57315,0.52927 0.59205,0.87038 0.66159,0.27273 0.91436,0.709 1.1695,1.14431 0.0913,0.17244 0.0921,0.30177 -0.0352,0.37012 0.27389,0.19768 0.54396,0.36486 0.79721,0.39746 0.0924,-0.009 0.65123,0.76933 0.6451,1.17255 z" + id="path5158" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccc" + class="pubic_hair" /></g><g + inkscape:groupmode="layer" + id="Pubic_Hair_Strip" + inkscape:label="Pubic_Hair_Strip" + style="display:inline"><path + d="m 290.07972,451.35547 c -5.26522,-8.42781 -6.8522,-25.02276 -6.40057,-24.40984 l -1.97847,0.0413 c -0.0968,0.0277 0.0996,15.01567 6.42775,24.67062 z" + id="path4354" + inkscape:connector-curvature="0" + class="pubic_hair" + sodipodi:nodetypes="ccccc" /></g></g><g + inkscape:groupmode="layer" + id="Hip_Addon_" + inkscape:label="Hip_Addon_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Chastity_Anus" + inkscape:label="Chastity_Anus" + style="display:inline"><path + sodipodi:nodetypes="ccccccccc" + id="path3080" + d="m 259.57075,420.99587 5.54092,2.13857 c 6.84074,12.92695 13.83515,25.67806 22.99206,38.15507 5.87262,1.49226 8.72636,0.53435 16.49875,-0.30496 2.72601,-20.54453 6.03555,-29.03633 14.92521,-48.24503 l 2.28574,-0.5993 c -5.31308,16.34941 -11.3981,32.06023 -16.22393,50.16815 -5.02246,3.8981 -10.47949,6.02978 -18.59375,0.25 -12.04308,-13.27369 -19.00846,-27.47246 -27.425,-41.5625 z" + class="shadow" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 259.57075,420.99587 5.54092,2.13857 c 6.43322,12.76394 13.40942,25.50777 22.99206,38.15507 5.46252,1.69783 9.56792,1.06871 16.49875,-0.30496 3.07852,-20.54453 6.67016,-29.03633 14.92521,-48.24503 l 2.28574,-0.5993 c -5.68796,16.34941 -11.85486,32.06023 -16.22393,50.16815 -5.07591,3.55067 -10.54368,5.61252 -18.59375,0.25 -11.7304,-13.58637 -18.82904,-27.65188 -27.425,-41.5625 z" + id="path7-06" + sodipodi:nodetypes="ccccccccc" /></g><g + inkscape:groupmode="layer" + id="Chastity_Vagina" + inkscape:label="Chastity_Vagina" + style="display:inline"><path + sodipodi:nodetypes="cccccc" + id="path3078" + d="m 246.27344,419.55409 38.26539,1.65534 50.70034,-17.16757 c -9.527,20.69304 -26.8295,38.13961 -29.60049,58.02694 -3.81473,4.94851 -11.42323,6.76119 -18.77833,0.13792 -12.59782,-13.26169 -20.10126,-26.49351 -40.58691,-42.65263 z" + class="shadow" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 246.27344,419.55409 38.26539,1.65534 50.70034,-17.16757 c -10.62636,19.22723 -27.00876,37.9006 -29.60049,58.02694 -4.44975,4.2738 -12.12093,6.01989 -18.77833,0.13792 -12.1636,-13.34853 -19.37318,-26.63913 -40.58691,-42.65263 z" + id="path7-68" + sodipodi:nodetypes="cccccc" /></g><g + inkscape:groupmode="layer" + id="Chastity_Base" + inkscape:label="Chastity_Base" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 234.14215,411.65829 c 9.83963,2.44592 24.11909,4.87598 41.29544,3.79314 14.82928,-1.00347 25.26976,-4.22856 41.10914,-9.24736 31.67875,-10.0376 59.89552,-24.27204 59.89552,-24.27204 0,0 3.77627,-1.52869 6.22097,3.2396 2.4447,4.76829 -3.82372,5.48812 -3.82372,5.48812 -11.21596,5.27692 -21.47914,9.58762 -30.87638,13.25027 -5.87529,2.27682 -13.83348,5.40046 -24.7826,8.91127 -11.47387,3.69784 -21.23826,6.81251 -34.64102,8.90022 -4.327,0.70671 -10.41184,1.70053 -17.99393,2.02697 -8.40953,0.36025 -21.89647,0.23256 -38.00184,-4.0271 -3.4127,0.35474 -6.02754,-2.05529 -6.27918,-4.44599 -0.0582,-1.20639 0.39848,-3.51013 2.76794,-4.30243 1.7256,-0.48449 3.58016,-0.17944 5.10966,0.68533 z" + id="path5" + sodipodi:nodetypes="ccscsccccccccc" /><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 232.02342,410.58579 c 4.2276,1.23469 10.00709,2.62122 17.0904,3.49082 0,0 10.92765,1.45762 23.47433,0.92828 15.58596,-0.62043 54.91755,-11.40132 101.73537,-34.14536 0,0 3.77627,-1.52869 6.22097,3.2396 2.4447,4.76829 -3.82371,5.48811 -3.82371,5.48811 -11.21597,5.27692 -21.47915,9.58763 -30.87638,13.25028 -7.17912,2.79374 -15.01821,5.7966 -24.7826,8.91127 -14.53555,4.50187 -30.64536,9.56484 -50.60668,10.59591 -9.08562,0.47068 -23.26478,0.35472 -39.87878,-3.61922 -3.4127,0.35474 -6.02754,-2.05529 -6.27918,-4.44599 -0.0582,-1.20639 0.39848,-3.51013 2.76794,-4.30243 1.59039,-0.4624 3.42882,-0.25604 4.95832,0.60873 z" + id="path7-0" + sodipodi:nodetypes="ccccscccccccc" /><rect + x="227.62526" + y="439.7114" + transform="rotate(-6.7781878)" + width="10.100405" + height="20.000801" + id="rect9" /><rect + x="227.61998" + y="439.71948" + transform="rotate(-6.7781878)" + class="steel_chastity" + width="9.1003647" + height="19.400776" + id="rect11-4" /><circle + transform="rotate(-96.778188)" + id="ellipse13" + r="2.9001162" + cy="232.19637" + cx="-445.93915" /><rect + x="231.53053" + y="445.11972" + transform="rotate(-6.7781878)" + width="1.400056" + height="9.8003931" + id="rect15" /></g></g><g + inkscape:groupmode="layer" + id="Pussy_" + style="display:inline" + inkscape:label="Pussy_"><g + inkscape:groupmode="layer" + id="Pussy" + inkscape:label="Pussy" + style="display:inline"><path + sodipodi:nodetypes="ccccc" + id="path6854" + class="shadow" + d="m 299.10498,462.39177 c -2.35316,0.0854 -4.70179,0.18592 -7.09885,0.12501 -0.0824,0.0494 -3.69251,-8.40114 -3.88549,-16.1264 2.52772,6.08878 11.00392,15.97054 10.98435,16.0013 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 299.10498,462.39177 -7.09885,0.12501 c 0,0 -3.56283,-8.47896 -3.88549,-16.1264 2.35055,6.18003 10.98435,16.0013 10.98435,16.0013 z" + class="labia" + id="Vagina" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="cccscscc" + id="path6854-9-8" + class="shadow" + d="m 292.63216,466.59055 c -1.73061,-0.19437 -7.03001,-3.72505 -5.70219,-9.91665 0.1601,-2.76887 0.0867,-6.16317 1.17318,-10.18253 0.28641,1.03144 0.69131,1.94771 0.91322,2.88009 0.0307,0.12881 -0.12066,0.32495 -0.0898,0.45181 0.72643,2.99258 1.24632,5.58783 1.7703,8.72249 0.22169,1.32631 0.89219,2.60457 1.38619,4.09161 1.34088,1.31773 0.15979,2.63545 0.54911,3.95318 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 292.63216,466.59055 c -1.86507,-0.54952 -6.66046,-3.79896 -5.70219,-9.91665 0.42844,-2.73531 0.15024,-6.23197 1.19594,-10.25643 0.27357,0.96308 1.3884,2.11196 0.90145,2.97052 -0.27993,0.49354 -0.17918,0.53324 -0.0547,1.05621 0.49134,2.00515 0.99352,3.99243 1.20405,5.86369 0.42793,3.80361 1.81823,6.40782 1.90634,6.32948 1.01304,1.31773 0.0191,2.63545 0.54911,3.95318 z" + class="skin" + id="path1025" + sodipodi:nodetypes="cscscsccc" /><path + sodipodi:nodetypes="cccccccc" + id="path2716" + class="shadow" + d="m 290.61167,451.63404 c 0,0 -0.78182,-1.41165 -1.1002,-2.03943 0,0 -0.21834,-0.0813 -0.33065,-0.094 -0.34764,-0.10249 -0.86066,0.44582 -1.06839,0.90358 -0.60478,0.75697 -0.3926,1.36358 -0.28906,1.55988 0.39221,0.71764 2.20573,0.62723 2.6884,-0.0278 0.13288,-0.11236 0.1371,-0.30214 0.0999,-0.30214 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 290.61167,451.63404 c 0,0 -0.78182,-1.41165 -1.1002,-2.03943 0,0 -0.21834,-0.0813 -0.33065,-0.094 -0.33065,-0.094 -0.79324,0.47954 -1.06839,0.90358 -0.20634,0.31802 -0.57552,1.07272 -0.28906,1.55988 0.5294,0.85571 2.53188,0.35264 2.6884,-0.0278 0.0737,-0.11236 0.1275,-0.30214 0.0999,-0.30214 z" + class="labia" + id="XMLID_891_-5" + sodipodi:nodetypes="cccscccc" /><path + sodipodi:nodetypes="ccccscc" + id="path6854-9" + class="shadow" + d="m 301.16804,466.55174 c 0.50134,-2.76742 2.59402,-7.92667 -4.70124,-12.03808 -2.47545,-1.86861 -4.84755,-4.98299 -8.3269,-8.07647 0.37045,0.99586 0.38749,3.21147 0.38749,3.21147 0,0 0.97999,0.0942 1.05319,0.23802 3.11283,6.13944 7.49401,9.79553 9.40544,12.53571 0.14956,1.46264 -1.23066,2.71722 2.18202,4.12935 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 301.16804,466.55174 c 0.1522,-2.28319 2.8586,-7.43057 -4.70124,-12.03808 -2.8757,-1.75266 -4.90969,-4.97366 -8.34395,-8.08216 0.22774,0.85313 -0.63101,3.51922 0.66276,3.20922 0.4373,-0.10479 0.81609,0.13292 1.09603,0.60885 1.32562,2.37763 3.08839,4.85882 4.4723,6.29919 2.84306,2.95909 4.63208,5.87363 4.63208,5.87363 0.21939,1.35814 -1.02735,2.71722 2.18202,4.12935 z" + class="skin" + id="path1023" + sodipodi:nodetypes="cscscscc" /><path + sodipodi:nodetypes="ccc" + id="path1126-6" + class="shadow" + d="m 290.54407,451.69582 c 4.14509,6.87889 3.90142,4.72146 6.65769,10.77769 -3.7205,-6.98985 -3.68107,-4.95515 -6.65769,-10.77769 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1126-6-1" + class="shadow" + d="m 289.4631,452.39396 c 2.38282,6.92091 2.62899,7.89107 3.65068,10.1027 -1.00056,-1.52637 -2.58149,-5.88488 -3.65068,-10.1027 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 290.73545,453.71977 c 3.55162,5.89401 3.75219,3.56791 6.11383,8.75706 -3.18783,-5.9891 -3.56339,-3.76815 -6.11383,-8.75706 z" + class="shadow" + id="path2763" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 290.71887,453.74374 c 2.04169,5.93003 1.75231,6.85793 2.62772,8.75292 -0.85731,-1.30784 -1.45577,-5.09919 -2.62772,-8.75292 z" + class="shadow" + id="path2765" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Pussy_Piercing_Heavy" + style="display:inline" + inkscape:label="Pussy_Piercing_Heavy"><path + inkscape:connector-curvature="0" + d="m 291.54981,461.60083 c 0.2,0 2,2.8 0.8,5.2 -1,2 -3.6,3.1 -6,2 -2.1,-1.1 -2.8,-3.7 -2,-5.6 0.9,-2.4 3.7,-3.1 3.9,-2.9 0.1,0.2 -2.6,1.4 -2.7,3.6 -0.1,1.2 0.5,2.6 1.9,3.1 1.4,0.6 3.1,0 3.9,-1 1.3,-1.7 0.1,-4.3 0.2,-4.4 z" + class="steel_piercing" + id="XMLID_512_" /><ellipse + ry="2.0000744" + rx="1.8000669" + cy="-502.68118" + cx="-218.76495" + class="steel_piercing" + transform="rotate(172.03924)" + id="XMLID_517_" /><ellipse + ry="1.8000669" + rx="1.7000633" + cy="-503.97836" + cx="-221.59023" + class="steel_piercing" + transform="rotate(172.03924)" + id="XMLID_518_" /><path + inkscape:connector-curvature="0" + d="m 291.24614,458.0085 c 0.2,0 1.7,3 0.1,5.2 -1.2,1.8 -4.1,2.6 -6.1,1.2 -2,-1.4 -2.2,-4.1 -1.2,-5.8 1.2,-2.2 4.2,-2.6 4.3,-2.4 0.1,0.2 -2.8,1.1 -3.1,3.1 -0.2,1.2 0.2,2.6 1.4,3.4 1.3,0.9 3.1,0.4 4,-0.4 1.3,-1.5 0.5,-4.3 0.6,-4.3 z" + class="steel_piercing" + id="XMLID_519_" /><ellipse + ry="2" + rx="1.8" + cy="461.40851" + cx="283.84613" + class="steel_piercing" + id="XMLID_520_" /><ellipse + ry="1.8" + rx="1.7" + cy="463.7085" + cx="285.84613" + class="steel_piercing" + id="XMLID_521_" /><path + inkscape:connector-curvature="0" + d="m 296.04874,461.50971 c -0.2,0 -1.4,3.2 0.4,5.2 1.4,1.7 4.3,2.2 6.2,0.6 1.9,-1.5 1.9,-4.3 0.8,-5.9 -1.3,-2.1 -4.4,-2.2 -4.4,-2 0,0.2 2.8,0.8 3.4,2.8 0.3,1.1 0,2.6 -1.1,3.5 -1.2,1 -3,0.7 -4,-0.2 -1.7,-1.2 -1.1,-4 -1.3,-4 z" + class="steel_piercing" + id="XMLID_522_" /><ellipse + ry="2.0000093" + rx="1.8000083" + cy="490.00046" + cx="262.68652" + class="steel_piercing" + transform="rotate(-4.7982784)" + id="XMLID_523_" /><ellipse + ry="1.8000085" + rx="1.7000082" + cy="491.17413" + cx="259.87625" + class="steel_piercing" + transform="rotate(-4.7983462)" + id="XMLID_524_" /><path + inkscape:connector-curvature="0" + d="m 293.60229,458.12012 c -0.2,0 -0.8,3.4 1.3,5.1 1.7,1.3 4.6,1.4 6.2,-0.5 1.5,-1.9 1,-4.5 -0.4,-6 -1.8,-1.8 -4.7,-1.3 -4.7,-1.2 -0.1,0.3 2.9,0.3 3.9,2.1 0.5,1.1 0.5,2.6 -0.4,3.6 -1.1,1.2 -2.8,1.2 -4,0.6 -1.7,-0.9 -1.7,-3.8 -1.9,-3.7 z" + class="steel_piercing" + id="XMLID_525_" /><ellipse + ry="2.0000699" + rx="1.8000628" + cy="526.64166" + cx="161.29683" + class="steel_piercing" + transform="rotate(-15.705363)" + id="XMLID_526_" /><ellipse + ry="1.8000628" + rx="1.7000594" + cy="526.31403" + cx="164.18712" + class="steel_piercing" + transform="rotate(-15.705363)" + id="XMLID_527_" /></g><g + inkscape:groupmode="layer" + id="Pussy_Piercing" + style="display:inline" + inkscape:label="Pussy_Piercing"><path + inkscape:connector-curvature="0" + d="m 293.62018,454.94004 c 0.1,-0.1 1.3,0.5 1.4,1.7 0.1,0.9 -0.6,2 -1.7,2 -1,0.1 -1.8,-0.7 -2,-1.5 -0.2,-1.1 0.6,-2 0.7,-2 0.1,0 -0.6,1.1 -0.2,1.9 0.3,0.4 0.8,0.8 1.3,0.7 0.7,-0.1 1.2,-0.7 1.2,-1.2 0.1,-0.9 -0.8,-1.6 -0.7,-1.6 z" + class="steel_piercing" + id="XMLID_528_" /><path + inkscape:connector-curvature="0" + d="m 289.93897,455.31149 c 0.1,0 0.7,1.2 0,2.2 -0.5,0.7 -1.7,1.1 -2.6,0.4 -0.8,-0.6 -0.9,-1.7 -0.5,-2.5 0.5,-0.9 1.8,-1.1 1.8,-1 0,0.1 -1.2,0.4 -1.3,1.3 -0.1,0.4 0.1,1.1 0.6,1.4 0.5,0.4 1.3,0.2 1.7,-0.2 0.6,-0.5 0.2,-1.6 0.3,-1.6 z" + class="steel_piercing" + id="XMLID_529_" /><path + inkscape:connector-curvature="0" + d="m 289.58138,459.13801 c 0.1,0 0.8,1.2 0.3,2.2 -0.4,0.8 -1.6,1.2 -2.6,0.7 -0.9,-0.5 -1.1,-1.6 -0.7,-2.4 0.4,-1 1.7,-1.2 1.7,-1.2 0.1,0.1 -1.2,0.5 -1.2,1.4 -0.1,0.4 0.2,1.1 0.7,1.3 0.6,0.3 1.3,0.1 1.7,-0.4 0.5,-0.5 0,-1.6 0.1,-1.6 z" + class="steel_piercing" + id="XMLID_530_" /><path + inkscape:connector-curvature="0" + d="m 297.78934,458.63353 c 0.1,-0.1 1.4,0.4 1.7,1.4 0.2,0.9 -0.4,2 -1.4,2.2 -1,0.3 -1.9,-0.4 -2.1,-1.2 -0.4,-1 0.4,-2 0.4,-2 0.1,0 -0.4,1.2 0.1,1.9 0.3,0.4 0.9,0.7 1.4,0.5 0.6,-0.2 1,-0.9 1,-1.4 0,-0.9 -1.2,-1.4 -1.1,-1.4 z" + class="steel_piercing" + id="XMLID_531_" /><path + inkscape:connector-curvature="0" + d="m 299.47329,463.1065 c 0.1,-0.1 1.4,0.4 1.7,1.5 0.2,0.9 -0.4,2 -1.4,2.2 -1,0.2 -1.9,-0.5 -2.1,-1.2 -0.4,-1 0.4,-2 0.4,-2 0.1,0 -0.4,1.2 0.1,1.9 0.3,0.4 0.9,0.7 1.4,0.5 0.6,-0.2 1,-0.9 1,-1.3 -0.1,-1 -1.1,-1.5 -1.1,-1.6 z" + class="steel_piercing" + id="XMLID_532_" /><path + inkscape:connector-curvature="0" + d="m 290.58817,462.89093 c 0.1,0 0.8,1.2 0.3,2.2 -0.4,0.8 -1.6,1.2 -2.6,0.7 -0.9,-0.5 -1.1,-1.6 -0.7,-2.4 0.4,-1 1.7,-1.2 1.7,-1.2 0.1,0.1 -1.2,0.5 -1.2,1.4 -0.1,0.4 0.2,1.1 0.7,1.3 0.6,0.3 1.3,0.1 1.7,-0.4 0.4,-0.5 0,-1.6 0.1,-1.6 z" + class="steel_piercing" + id="XMLID_533_" /></g><g + inkscape:groupmode="layer" + id="Clit_Piercing_Heavy" + style="display:inline" + inkscape:label="Clit_Piercing_Heavy"><circle + r="1.2" + cy="449.35001" + cx="291.67499" + class="steel_piercing" + id="XMLID_534_" /><circle + r="1.2" + cy="449.85001" + cx="286.97501" + class="steel_piercing" + id="XMLID_535_" /><path + inkscape:connector-curvature="0" + d="m 287.375,450.15 c -0.1,-0.1 -3.5,1.9 -3.2,5.1 0.3,2.7 2.9,4.5 5.6,4.4 2.6,-0.2 4.9,-2.4 4.9,-4.9 0,-3.2 -3.6,-5 -3.7,-4.8 -0.1,0.2 2.5,2.1 2.1,4.5 -0.2,1.6 -1.9,3.6 -4.1,3.6 -2,-0.1 -3.4,-1.7 -3.6,-3.2 -0.4,-2.6 2.1,-4.7 2,-4.7 z" + class="steel_piercing" + id="XMLID_536_" /></g><g + inkscape:groupmode="layer" + id="Clit_Piercing" + style="display:inline" + inkscape:label="Clit_Piercing"><circle + r="1.2" + cy="450.47501" + cx="291.67499" + class="steel_piercing" + id="XMLID_537_" /><circle + r="1.2" + cy="450.97501" + cx="286.97501" + class="steel_piercing" + id="XMLID_538_" /></g><g + inkscape:groupmode="layer" + id="Clit_Piercing_Smart" + style="display:inline" + inkscape:label="Clit_Piercing_Smart"><circle + r="1.2" + cy="450.0957" + cx="291.85547" + class="steel_piercing" + id="XMLID_539_" /><circle + r="1.2" + cy="450.5957" + cx="287.15549" + class="steel_piercing" + id="XMLID_540_" /><path + inkscape:connector-curvature="0" + d="m 287.35549,450.69569 c -0.1,-0.1 -2.3,3.3 -1.1,5.5 1.4,2.7 6.4,2.1 7.4,-0.8 0.8,-2.4 -1.6,-5.4 -1.8,-5.3 -0.1,0.1 1.4,2.5 0.5,4.4 -1,2.1 -3.6,2.3 -4.9,0.3 -1.2,-1.8 0,-4 -0.1,-4.1 z" + class="steel_piercing" + id="XMLID_541_" /><rect + height="7.3005033" + width="7.3005033" + class="smart_piercing" + transform="rotate(41.517924)" + y="149.45445" + x="519.35999" + id="XMLID_542_" /></g></g><g + inkscape:groupmode="layer" + id="Belly_" + style="display:inline" + inkscape:label="Belly_"><g + inkscape:groupmode="layer" + id="Belly" + inkscape:label="Belly" + style="display:inline"><path + id="path1353" + class="shadow" + d="m 274.8,433.8 c 21.7045,0.8035 49.46622,-12.07771 61.9,-42.4 13.35711,-25.50652 -13.60539,-70.14322 -27.1735,-84.40895 C 307.9828,305.36798 290.7,289.7 290.7,289.7 l -38.01351,-0.0884 c -3.72119,10.50526 0.65099,5.14821 -10.23287,13.02156 C 225.22398,315.09704 205.23454,348.37128 208.9,386.5 c 2.04357,37.62359 45.18214,47.07566 65.9,47.3 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsccscc" /><path + inkscape:connector-curvature="0" + d="m 274.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18.5,-83.4 -46,-101.7 -6.5,-4.3 -36.31351,-8.28839 -38.01351,-0.0884 C 250.08649,301.21161 205.4,323 208.9,386.5 c 1.8,34.8 45.1,47.2 65.9,47.3 z" + class="skin" + id="XMLID_544_" + sodipodi:nodetypes="sscccs" /><path + sodipodi:nodetypes="cccc" + id="path1329" + class="shadow" + d="m 247.11813,400.93648 c 0.6843,-3.19765 0.13727,-8.57118 -0.57274,-9.24552 l -0.0242,10e-4 c -1.11133,4.1119 -0.35187,6.27483 0.59697,9.24433 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 246.54539,391.69096 c -2.73244,-11.59717 1.40277,-43.43392 3.64449,-55.02388 7.09551,-25.7244 23.93942,-51.26551 23.93942,-51.26551 l 0.41957,0.10767 c 0,0 -13.88878,20.21402 -24.3576,51.16059 -2.55535,11.50057 -6.84773,48.18809 -3.67011,55.02232 z" + class="muscle_tone" + id="path1463" + sodipodi:nodetypes="ccccccc" /></g><g + inkscape:groupmode="layer" + id="Belly_Piercing" + inkscape:label="Belly_Piercing" + style="display:inline"><circle + id="XMLID_547_" + class="steel_piercing" + cx="246.54645" + cy="390.89999" + r="1.2" /><circle + id="XMLID_548_" + class="steel_piercing" + cx="247.16516" + cy="401.18719" + r="1.2" /></g><g + inkscape:groupmode="layer" + id="Belly_Piercing_Heavy" + inkscape:label="Belly_Piercing_Heavy" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 247,396.1 c -0.2,0 -1.6,2.1 -1.5,11.7 0.1,12.7 1.56039,13.34321 1.7,13.2 0.35325,-0.36234 0.35906,-16.24229 1.2,-15.9 -0.82281,-3.89532 -1.12121,-9.06465 -1.4,-9 z" + class="steel_piercing" + id="XMLID_549_" + sodipodi:nodetypes="ccscc" /><path + inkscape:connector-curvature="0" + d="m 247.1,421.1 c -0.5,0 -1,2.4 -0.8,4.4 0.2,1.3 0.6,3 1.2,3 0.4,0 0.7,-1.8 0.8,-3 -0.1,-2 -0.7,-4.4 -1.2,-4.4 z" + class="steel_piercing" + id="XMLID_550_" /></g><g + inkscape:groupmode="layer" + id="Belly_Outfit_" + inkscape:label="Belly_Outfit_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Belly_Outfit_Maid_" + inkscape:label="Belly_Outfit_Maid_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Belly_Outfit_Maid" + inkscape:label="Belly_Outfit_Maid" + style="display:inline"><path + sodipodi:nodetypes="ccsccscc" + inkscape:connector-curvature="0" + d="m 274.8,433.8 c 21.7045,0.8035 49.46622,-12.07771 61.9,-42.4 13.35711,-25.50652 -13.60539,-70.14322 -27.1735,-84.40895 C 307.9828,305.36798 290.7,289.7 290.7,289.7 h -40.4 c -3.72119,10.50526 0.56261,6.65081 -10.32125,14.52416 C 222.74911,316.68803 205.23454,348.37128 208.9,386.5 c 2.04357,37.62359 45.18214,47.07566 65.9,47.3 z" + class="shadow" + id="path1436" /><path + style="display:inline;fill:#ffffff" + id="path1438" + d="m 274.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18.5,-83.4 -46,-101.7 -6.5,-4.3 -38.7,-8.2 -40.4,0 -2.6,11.6 -44.9,33.3 -41.4,96.8 1.8,34.8 45.1,47.2 65.9,47.3 z" + inkscape:connector-curvature="0" /></g><g + inkscape:label="Belly_Outfit_Maid_Lewd" + id="Belly_Outfit_Maid_Lewd" + inkscape:groupmode="layer" + style="display:inline"><path + sodipodi:nodetypes="ccsccscc" + inkscape:connector-curvature="0" + d="m 274.8,433.8 c 21.7045,0.8035 49.46622,-12.07771 61.9,-42.4 13.35711,-25.50652 -13.60539,-70.14322 -27.1735,-84.40895 C 307.9828,305.36798 290.7,289.7 290.7,289.7 h -40.4 c -3.72119,10.50526 0.56261,6.65081 -10.32125,14.52416 C 222.74911,316.68803 205.23454,348.37128 208.9,386.5 c 2.04357,37.62359 45.18214,47.07566 65.9,47.3 z" + class="shadow" + id="path1456" /><path + id="path1458" + class="skin" + d="m 274.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18.5,-83.4 -46,-101.7 -6.5,-4.3 -38.7,-8.2 -40.4,0 -2.6,11.6 -44.9,33.3 -41.4,96.8 1.8,34.8 45.1,47.2 65.9,47.3 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 274.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18,-72.7 -18,-72.7 -31.1469,1.14566 -64.65766,7.56452 -91.9,0 -17.21627,24.22829 -18.42262,47.68549 -17.9,67.8 1.8,34.8 45.1,47.2 65.9,47.3 z" + id="path1450" + style="display:inline;fill:#ffffff" + sodipodi:nodetypes="sscccs" /><path + inkscape:connector-curvature="0" + d="m 255.56488,323.04208 c 2.51493,-15.06566 2.82724,-17.89909 18.56442,-37.64051 l 0.41957,0.10767 c -9.07306,11.02658 -17.01848,22.66319 -18.9826,37.53559 z" + class="shadow" + id="path1460" + sodipodi:nodetypes="ccccc" /></g></g></g></g><g + inkscape:groupmode="layer" + id="Penis_" + style="display:inline;opacity:1" + inkscape:label="Penis_"><g + inkscape:groupmode="layer" + id="Balls_4" + style="display:inline" + inkscape:label="Balls_4"><path + inkscape:connector-curvature="0" + d="m 243.6,499.375 c 3.3,8.9 7.4,10.4 10.4,11.3 6.6,2 10.1,-0.6 21,2.7 5,1.5 8.3,5.6 16.6,5.6 1.5,0 13.3,2.3 22.7,-7 5.9,-5.7 5.6,-14.1 5.4,-26.3 -0.2,-9.1 -2,-15.1 -3.3,-18.6 -2.3,-6.2 -3.6,-9.8 -7.1,-12.1 -7.7,-5 -19.3,0.5 -25.2,3.3 -6.3,3 -11.6,-1.4 -19,5.4 -10.8,10.2 -25.4,25 -21.5,35.7 z" + class="shadow" + id="XMLID_868_" + sodipodi:nodetypes="cccsccccccc" /><path + inkscape:connector-curvature="0" + d="m 243.6,491.575 c -0.3,5.7 2,12.8 7.1,16.5 5.6,4.1 9.8,0.5 21.8,3.5 9.4,2.4 9.1,5.3 16.5,6.5 1.7,0.3 15.7,2.3 24.2,-6.5 6.2,-6.3 6,-15.1 5.9,-28.3 -0.2,-9.7 -2.1,-16.3 -3.5,-19.9 -2.4,-6.6 -3.9,-10.4 -7.7,-13 -8.3,-5.4 -20.9,0.6 -27.1,3.5 -7,3.3 -10.9,7 -18.9,14.1 -11.8,10.9 -17.8,16.3 -18.3,23.6 z" + class="skin scrotum" + id="XMLID_869_" + sodipodi:nodetypes="ccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Balls_3" + style="display:inline" + inkscape:label="Balls_3"><path + inkscape:connector-curvature="0" + d="m 252.4,487.475 c 2.5,6.8 5.7,8 8,8.7 5.1,1.5 7.8,-0.5 16.1,2.1 3.8,1.2 6.4,4.3 12.7,4.3 1.2,0 10.2,1.7 17.4,-5.3 4.5,-4.4 4.3,-10.8 4.2,-20.2 -0.1,-7 -1.5,-11.6 -2.5,-14.3 -1.7,-4.8 -2.8,-7.5 -5.4,-9.3 -5.9,-3.8 -14.8,0.3 -19.4,2.5 -4.9,2.3 -8.9,-1 -14.6,4.2 -8.3,7.7 -19.5,19 -16.5,27.3 z" + class="shadow" + id="XMLID_870_" + sodipodi:nodetypes="cccsccccccc" /><path + inkscape:connector-curvature="0" + d="m 252.4,481.375 c -0.2,4.4 1.5,9.9 5.4,12.6 4.3,3.1 7.5,0.3 16.7,2.7 7.2,1.9 7,4.1 12.6,5 1.3,0.2 12.1,1.7 18.5,-5 4.8,-4.9 4.6,-11.6 4.5,-21.7 -0.1,-7.4 -1.6,-12.5 -2.7,-15.3 -1.9,-5.1 -3,-8 -5.9,-10 -6.4,-4.2 -16,0.5 -20.7,2.7 -5.3,2.5 -8.3,5.3 -14.5,10.8 -8.9,8.5 -13.5,12.7 -13.9,18.2 z" + class="skin scrotum" + id="XMLID_871_" + sodipodi:nodetypes="ccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Balls_2" + style="display:inline" + inkscape:label="Balls_2"><path + inkscape:connector-curvature="0" + d="m 259.2,478.275 c 2,5.2 4.4,6.1 6.1,6.7 3.9,1.2 6,-0.4 12.4,1.6 2.9,0.9 4.9,3.3 9.8,3.3 0.9,0 7.8,1.3 13.3,-4.1 3.5,-3.4 3.3,-8.3 3.2,-15.5 -0.1,-5.3 -1.2,-8.9 -2,-10.9 -1.3,-3.6 -2.1,-5.8 -4.2,-7.1 -4.5,-2.9 -11.4,0.3 -14.8,2 -3.7,1.8 -6.8,-0.8 -11.2,3.2 -6.3,5.8 -14.9,14.5 -12.6,20.8 z" + class="shadow" + id="XMLID_872_" + sodipodi:nodetypes="cccsccccccc" /><path + inkscape:connector-curvature="0" + d="m 259.2,473.675 c -0.2,3.4 1.2,7.6 4.2,9.7 3.3,2.4 5.8,0.3 12.8,2 5.5,1.4 5.3,3.1 9.7,3.8 1,0.2 9.2,1.3 14.2,-3.8 3.6,-3.7 3.6,-8.9 3.5,-16.6 -0.1,-5.7 -1.2,-9.6 -2,-11.7 -1.4,-3.9 -2.3,-6.1 -4.5,-7.6 -4.9,-3.2 -12.3,0.4 -15.9,2 -4.1,2 -6.4,4.1 -11.1,8.3 -7.1,6.4 -10.7,9.6 -10.9,13.9 z" + class="skin scrotum" + id="XMLID_873_" + sodipodi:nodetypes="ccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Balls_1" + style="display:inline" + inkscape:label="Balls_1"><path + inkscape:connector-curvature="0" + d="m 272.075,472.6 c 1.2,3.4 2.8,3.9 3.9,4.3 2.5,0.7 3.8,-0.3 7.9,1.1 1.9,0.5 3.1,2.1 6.3,2.1 0.6,0 5,0.8 8.5,-2.7 2.2,-2.2 2.1,-5.3 2,-9.9 -0.1,-3.4 -0.8,-5.7 -1.2,-7 -0.9,-2.3 -1.3,-3.6 -2.7,-4.5 -2.9,-1.9 -7.3,0.2 -9.5,1.2 -2.4,1.2 -4.7,-0.7 -7.5,1.8 -4,3.8 -9.1,9.6 -7.7,13.6 z" + class="shadow" + id="XMLID_874_" + sodipodi:nodetypes="cccsscccccc" /><path + inkscape:connector-curvature="0" + d="m 272.075,469.5 c -0.2,2.1 0.7,4.7 2.6,6.1 2.1,1.5 3.6,0.2 8.1,1.3 3.5,0.9 3.4,2 6.1,2.4 0.6,0.1 5.8,0.8 8.9,-2.4 2.3,-2.4 2.2,-5.6 2.1,-10.5 -0.1,-3.6 -0.8,-6 -1.3,-7.4 -0.9,-2.5 -1.75355,-4.91647 -3.15355,-5.81647 -3.1,-2 -7.7,0.2 -10,1.3 -2.6,1.2 -3.64645,3.61647 -6.54645,6.21647 -4.4,4 -6.6,6.1 -6.8,8.8 z" + class="skin scrotum" + id="XMLID_875_" + sodipodi:nodetypes="ccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Balls_0" + inkscape:label="Balls_0" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 280.8,465.675 c 0.7,2 1.6,2.3 2.3,2.5 1.4,0.4 2.2,-0.1 4.6,0.6 1.1,0.4 1.8,1.2 3.6,1.2 0.4,0 2.9,0.4 5,-1.5 1.3,-1.2 1.2,-3 1.2,-5.7 0,-2 -0.4,-3.3 -0.7,-4.1 -0.5,-1.3 -0.8,-2.1 -1.5,-2.6 -1.7,-1.1 -4.2,0.1 -5.5,0.7 -1.4,0.7 -3.1,-0.2 -4.7,1.3 -2.6,2.1 -5.2,5.2 -4.3,7.6 z" + class="shadow" + id="XMLID_876_" + sodipodi:nodetypes="cscscsccccc" /><path + inkscape:connector-curvature="0" + d="m 280.9,463.575 c -0.1,1.2 0.4,2.7 1.5,3.5 1.2,0.9 2,0.1 4.5,0.7 2,0.5 1.9,1.2 3.5,1.3 0.4,0.1 3.3,0.4 5.1,-1.3 1.3,-1.3 1.2,-3.2 1.2,-5.9 0,-2 -0.4,-3.4 -0.7,-4.2 -0.5,-1.4 -1.37452,-4.32132 -2.17452,-4.82132 -1.7,-1.2 -4.4,0.1 -5.6,0.7 -1.4,0.7 -1.72548,3.52132 -3.32548,5.02132 -2.7,2.3 -3.9,3.5 -4,5 z" + class="skin scrotum" + id="XMLID_877_" + sodipodi:nodetypes="cccccsccscc" /></g><g + inkscape:groupmode="layer" + id="Penis_6" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 183.2,369.4 c 1.4,0.9 1.4,3.5 1.4,3.9 0,7.5 14.3,33.3 27.4,46 39.3,38.2 78.2,48 74.4,30.6 -0.5,-2.6 3.3,-4.1 3.8,-5.6 5.1,-16.4 -19.5,-41.2 -46.7,-63.9 -22.8,-19 -23.3,-18.1 -28.6,-21.5 -0.8,-0.5 -2,-1.3 -2.4,-3.8 -0.4,-2 1.3,-4.2 1.4,-5.8 0.9,-5.9 -7.2,-10.4 -14.7,-14.2 -5.8,-2.9 -17.3,-6.4 -23.6,-1.4 -13.5,10.8 -2.9,39.9 3,36.6 1.3,-0.6 3.1,-1.9 4.6,-0.9 z" + class="shadow" + id="XMLID_878_" + sodipodi:nodetypes="csccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 182.9,369.4 c 1.6,1 1.6,3.7 1.6,4.1 0.1,5.1 13,31.1 38.3,53.1 19,16.5 55.9,40.1 68.5,29.6 2.2,-2 3,-4.5 3.5,-6.2 5.6,-18.5 -21.9,-42.4 -30.2,-49.6 -26.6,-23.1 -42.1,-36.5 -48,-40.4 -0.8,-0.5 -3.5,-2.2 -4.1,-5.1 -0.4,-2.2 0.8,-3.4 1,-5.1 0.7,-5.1 -8,-11 -14.3,-13.8 -4.9,-2.1 -15.7,-6.8 -23,-1.6 -11.4,8.3 -4.1,33.7 1.6,34.8 1.4,0.5 3.4,-1 5.1,0.2 z" + class="skin penis" + id="XMLID_879_" + sodipodi:nodetypes="ccccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Penis_5" + style="display:inline" + inkscape:label="Penis_5"><path + inkscape:connector-curvature="0" + d="m 202.1,382.1 c 1.2,0.8 1.2,2.9 1.2,3.2 0,6.2 11.8,27.5 22.6,38 32.5,31.5 64.6,39.6 61.4,25.2 -0.4,-2.2 2.7,-3.4 3.1,-4.7 4.2,-13.5 -16.1,-34 -38.6,-52.7 -18.8,-15.7 -19.3,-14.9 -23.6,-17.8 -0.6,-0.4 -1.6,-1.1 -1.9,-3.1 -0.3,-1.6 1.1,-3.5 1.2,-4.8 0.8,-4.9 -6,-8.6 -12.1,-11.7 -4.8,-2.4 -14.3,-5.3 -19.5,-1.2 -11.2,8.9 -2.4,32.9 2.5,30.2 1,-0.3 2.6,-1.4 3.7,-0.6 z" + class="shadow" + id="XMLID_880_" + sodipodi:nodetypes="csccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 201.9,382.1 c 1.3,0.9 1.3,3 1.3,3.4 0.1,4.2 10.7,25.7 31.6,43.9 15.7,13.6 46.1,33.1 56.5,24.5 1.8,-1.6 2.5,-3.7 2.9,-5.1 4.7,-15.3 -18.1,-35 -24.9,-40.9 -22,-19.1 -34.8,-30.1 -39.6,-33.4 -0.6,-0.4 -2.9,-1.8 -3.4,-4.2 -0.3,-1.8 0.6,-2.8 0.9,-4.2 0.5,-4.2 -6.6,-9.1 -11.8,-11.4 -4,-1.7 -13,-5.6 -19,-1.3 -9.4,6.8 -3.4,27.8 1.3,28.7 1.2,0.3 2.8,-0.9 4.2,0 z" + class="skin penis" + id="XMLID_881_" + sodipodi:nodetypes="ccccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Penis_4" + style="display:inline" + inkscape:label="Penis_4"><path + inkscape:connector-curvature="0" + d="m 218.8,395.4 c 1,0.6 1,2.4 1,2.7 0,5.1 9.7,22.6 18.6,31.2 26.7,25.9 53,32.5 50.4,20.7 -0.4,-1.8 2.2,-2.8 2.6,-3.8 3.5,-11.1 -13.2,-27.9 -31.6,-43.3 -15.5,-12.9 -15.8,-12.3 -19.4,-14.6 -0.5,-0.4 -1.3,-0.9 -1.6,-2.6 -0.3,-1.3 0.9,-2.8 1,-3.9 0.6,-4 -4.9,-7 -10,-9.6 -3.9,-2 -11.7,-4.4 -16,-1 -9.2,7.3 -2,27 2,24.8 0.8,-0.4 2,-1.3 3,-0.6 z" + class="shadow" + id="XMLID_882_" + sodipodi:nodetypes="csccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 218.6,395.4 c 1.1,0.7 1.1,2.5 1.1,2.8 0.1,3.5 8.8,21.1 25.9,36 12.9,11.2 37.9,27.2 46.4,20.1 1.5,-1.3 2,-3 2.4,-4.2 3.8,-12.5 -14.8,-28.7 -20.4,-33.6 -18,-15.6 -28.5,-24.7 -32.5,-27.4 -0.5,-0.4 -2.4,-1.5 -2.8,-3.5 -0.3,-1.5 0.5,-2.3 0.7,-3.5 0.4,-3.5 -5.4,-7.5 -9.7,-9.3 -3.3,-1.4 -10.7,-4.6 -15.6,-1.1 -7.7,5.6 -2.8,22.8 1.1,23.5 0.9,0.4 2.3,-0.6 3.4,0.2 z" + class="skin penis" + id="XMLID_883_" + sodipodi:nodetypes="cccccccsccccc" /></g><g + inkscape:groupmode="layer" + id="Penis_3" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 235.8,408.5 c 0.7,0.5 0.8,1.9 0.8,2.1 0,4 7.6,17.9 14.7,24.6 21.1,20.4 41.9,25.7 39.8,16.4 -0.3,-1.4 1.8,-2.1 2,-3 2.7,-8.8 -10.5,-22 -25,-34.2 -12.3,-10.2 -12.5,-9.7 -15.4,-11.6 -0.4,-0.3 -1,-0.7 -1.2,-2 -0.2,-1.1 0.7,-2.2 0.8,-3.1 0.4,-3.2 -3.9,-5.5 -7.9,-7.6 -3.1,-1.6 -9.2,-3.5 -12.6,-0.8 -7.2,5.8 -1.6,21.3 1.6,19.6 0.6,-0.3 1.6,-1 2.4,-0.4 z" + class="shadow" + id="XMLID_884_" + sodipodi:nodetypes="csccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 235.7,408.5 c 0.8,0.6 0.8,2 0.8,2.1 0.1,2.7 6.8,16.4 20.3,28.1 10.1,8.8 29.6,21.2 36.2,15.6 1.2,-1 1.6,-2.3 1.9,-3.2 3,-9.8 -11.6,-22.4 -15.9,-26.2 -14,-12.2 -22.2,-19.3 -25.4,-21.3 -0.4,-0.3 -1.9,-1.2 -2.1,-2.7 -0.2,-1.2 0.4,-1.8 0.5,-2.7 0.4,-2.8 -4.3,-5.9 -7.6,-7.3 -2.6,-1.1 -8.3,-3.6 -12.2,-0.8 -6,4.4 -2.1,17.9 0.8,18.4 0.8,0.1 1.9,-0.7 2.7,0 z" + class="skin penis" + id="XMLID_885_" + sodipodi:nodetypes="ccccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Penis_2" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 251.7,421.6 c 0.5,0.4 0.5,1.3 0.5,1.5 0,2.8 5.5,12.7 10.5,17.6 15,14.6 29.9,18.3 28.4,11.7 -0.2,-1 1.2,-1.5 1.4,-2.1 2,-6.3 -7.5,-15.7 -17.9,-24.4 -8.7,-7.3 -9,-6.9 -10.9,-8.3 -0.3,-0.2 -0.7,-0.5 -0.9,-1.5 -0.2,-0.7 0.4,-1.6 0.5,-2.2 0.4,-2.3 -2.8,-4 -5.6,-5.4 -2.2,-1.2 -6.7,-2.5 -9.1,-0.5 -5.2,4.1 -1.2,15.3 1.2,14 0.6,-0.2 1.3,-0.7 1.9,-0.4 z" + class="shadow" + id="XMLID_886_" + sodipodi:nodetypes="csccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 252,422.1 c 0.6,0.4 0.5,1.3 0.5,1.5 0,1.9 4.9,11.6 14.3,19.9 7.1,6.2 21,15 25.6,11.1 0.9,-0.7 1.2,-1.7 1.3,-2.3 2.1,-6.9 -8.2,-15.9 -11.3,-18.6 -10,-8.6 -15.7,-13.7 -17.9,-15.1 -0.3,-0.2 -1.3,-0.8 -1.5,-2 -0.2,-0.8 0.3,-1.2 0.4,-2 0.3,-2 -3,-4.2 -5.3,-5.2 -1.8,-0.8 -5.9,-2.6 -8.6,-0.5 -4.3,3.1 -1.5,12.6 0.5,13 0.5,0.3 1.3,-0.2 2,0.2 z" + class="skin penis" + id="XMLID_887_" + sodipodi:nodetypes="csccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Penis_1" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 268,434.4 c 0.4,0.3 0.4,0.8 0.4,1 0,1.8 2.4,7.6 6.3,11.2 9.7,8.8 18.8,11.3 17.9,7.1 -0.2,-0.6 0.8,-1 0.9,-1.3 0.8,-3 -4.1,-10 -10.7,-15.3 -5.5,-4.4 -6,-4.3 -7.3,-5.1 -0.2,-0.1 -0.4,-0.3 -0.5,-0.9 -0.1,-0.4 0.3,-1 0.4,-1.3 0.2,-1.4 -1.8,-2.5 -3.6,-3.4 -1.4,-0.7 -4.2,-1.5 -5.6,-0.4 -3.2,2.6 -1.1,9.7 0.7,8.7 0.3,-0.2 0.7,-0.6 1.1,-0.3 z" + class="shadow" + id="XMLID_888_" + sodipodi:nodetypes="sscccccccsccs" /><path + inkscape:connector-curvature="0" + d="m 268,434.6 c 0.4,0.3 0.4,0.9 0.4,1 0,1.2 3,7.3 9,12.4 4.4,3.9 13.1,9.3 16,6.9 0.5,-0.4 0.7,-1.1 0.8,-1.4 1.3,-4.3 -5.1,-9.9 -7,-11.6 -6.2,-5.4 -9.9,-8.5 -11.2,-9.4 -0.2,-0.1 -0.8,-0.5 -1,-1.2 -0.1,-0.5 0.2,-0.8 0.3,-1.2 0.2,-1.2 -1.9,-2.6 -3.4,-3.2 -1.2,-0.4 -3.6,-1.6 -5.3,-0.4 -2.7,2 -1,7.9 0.4,8.1 0.2,0.1 0.7,-0.3 1,0 z" + class="skin penis" + id="XMLID_889_" + sodipodi:nodetypes="csccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Penis_0" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 278.4,442.4 c 0.2,0.1 0.2,0.4 0.2,0.5 0,1 1.5,4.4 3.3,6 4.8,4.2 10.2,6.1 9.7,3.9 -0.1,-0.4 0.4,-0.5 0.4,-0.7 0.6,-2.1 -2.1,-5.3 -5.6,-8.3 -2.9,-2.5 -3.4,-2.2 -4,-2.7 -0.1,-0.1 -0.3,-0.2 -0.3,-0.5 -0.1,-0.3 0.2,-0.5 0.2,-0.7 0.1,-0.8 -0.9,-1.3 -1.9,-1.8 -0.7,-0.4 -2.2,-0.8 -3,-0.2 -1.7,1.3 -0.7,5.3 0.4,4.7 0.2,-0.1 0.4,-0.3 0.6,-0.2 z" + class="shadow" + id="XMLID_890_" + sodipodi:nodetypes="ssccccccccccs" /><path + inkscape:connector-curvature="0" + d="m 278.5,442.5 c 0.2,0.2 0.2,0.4 0.2,0.5 0,0.6 1.6,3.9 4.8,6.6 2.4,2 6.9,5 8.5,3.6 0.3,-0.3 0.4,-0.5 0.4,-0.8 0.7,-2.3 -2.8,-5.2 -3.7,-6.1 -3.3,-2.8 -5.2,-4.5 -6,-5 -0.1,-0.1 -0.4,-0.3 -0.5,-0.6 -0.1,-0.3 0.1,-0.4 0.1,-0.6 0.1,-0.6 -1,-1.3 -1.8,-1.7 -0.6,-0.3 -2,-0.8 -2.8,-0.2 -1.4,1.1 -0.5,4.2 0.2,4.4 0.2,0 0.4,-0.2 0.6,-0.1 z" + class="skin penis" + id="XMLID_891_" + sodipodi:nodetypes="cscccccscsccc" /></g><g + inkscape:groupmode="layer" + id="Flaccid_6" + inkscape:label="Flaccid_6" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 238.2,524.475 c 0.2,0.4 1.2,0.8 2.3,1.2 8.3,0.8 8.3,13 6.5,20.7 -0.2,0.7 -0.3,1.4 -0.5,2 -2.5,9.1 -6.6,13 -6.6,13 -0.8,0.8 -3.6,3.6 -7.2,5 -0.9,0.3 -1.8,0.6 -2.8,0.7 -11.9,-0.4 -17.2,-11.6 -18.7,-21.6 -0.3,-1 -0.5,-2.1 -0.7,-3.2 -0.8,-4.4 -0.7,-9.1 1.7,-11.7 0.5,-0.6 1.1,-1 1.7,-1.4 0.5,-0.4 1,-0.9 1.2,-1.7" + id="path7-6" + sodipodi:nodetypes="ccccccccsccc" /><path + inkscape:connector-curvature="0" + d="m 212.7,511.675 c 0,-1.5 0,-3.6 0.2,-6.2 0.1,-1.3 0.3,-6.2 1.4,-13.5 0.6,-4.2 1.2,-7.5 1.4,-8.3 4.3,-22.1 20.3,-33.3 20.3,-33.3 1.8,-1.4 5.9,-3.9 7.7,-5.3 3.6,-2.3 14.6,-7.4 29.9,-2.7 2.2,0.7 17.4,7.1 19.9,11.2 3.1,5.2 -1.9,-3.3 -3.1,-2.2 -0.5,0.4 -1.3,1.1 -2.4,2.4 -1.3,1.7 -1.8,3.2 -2.1,3.9 -1.2,2.7 -4.3,3.6 -8.9,5.4 -5.8,2.3 -9.4,3.8 -13,6.5 -2.6,2 -4.4,4.2 -8,8.6 -3.1,3.9 -4.9,6 -6.6,9.6 -0.5,1.1 -1.4,3.5 -3.2,8.3 -1.1,3 -1.5,4.2 -1.9,5.7 -0.8,2.6 -1.2,4.8 -1.5,6.4 -1,3.9 -3.4,11.2 -9.9,17.2 -3.2,2.9 -7.3,6.8 -11.4,5.7 -7.1,-1.9 -8.7,-18.2 -8.8,-19.4 z" + id="path9-0" + sodipodi:nodetypes="csccccccccccccccccccc" /><path + inkscape:connector-curvature="0" + class="skin penis" + d="m 264.7,441.675 c 8,-0.5 25.7,5 28.8,11.9 2.6,5.6 1.2,-1.9 -2.8,3.3 -2.4,1 -6.2,2.7 -10.9,4.6 -10.6,4.3 -12.7,4.7 -16.5,7.5 -4.1,3.1 -7.1,6.7 -8.7,8.7 -1.3,1.6 -3,3.9 -4.8,6.8 -0.5,0.9 -1,1.7 -1.4,2.4 -0.4,0.8 -0.8,1.5 -1.1,2.1 -3.2,9.8 -7.5,19.5 -5.8,28.8 v 2.7 c 0,0.9 -0.1,1.8 -0.2,2.7 -2.5,4.9 4,3.8 5,8.2 1.1,5.4 0,9.8 -0.4,15.1 -0.2,0.8 -0.4,1.6 -0.7,2.4 -2.4,7.5 -5.9,10.8 -5.9,10.8 -0.7,0.7 -2.3,2.3 -4.4,3.6 -0.7,0.4 -1.5,0.8 -2.3,1.1 -12.3,3.9 -17.8,-10.2 -20.5,-19.3 -0.2,-1 -0.5,-2 -0.7,-3 -0.7,-4.1 -0.6,-8.3 1.6,-10.7 0.5,-0.6 1.1,-0.9 1.6,-1.3 0.5,-0.4 0.9,-0.8 1.1,-1.6 -4.2,-13.4 -0.9,-25.3 0.7,-37.9 0.1,-0.9 0.3,-1.8 0.4,-2.7 1,-6.1 0.9,-7.7 3.4,-13.5 1,-2.2 3.9,-10.8 11.9,-18.9 13.9,-14 24,-13.3 32.6,-13.8 z" + id="path11-6" + sodipodi:nodetypes="ccccccccccsccccccccccscccccc" /></g><g + inkscape:groupmode="layer" + id="Flaccid_5" + inkscape:label="Flaccid_5" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 248.15,510.825 c 0.1,0.4 1,0.7 1.8,0.9 6.7,0.6 6.7,10.6 5.3,16.7 -0.1,0.6 -0.3,1.1 -0.4,1.7 -2.1,7.4 -5.3,10.5 -5.3,10.5 -0.6,0.6 -2.9,3 -5.9,4.1 -0.7,0.3 -1.5,0.5 -2.3,0.6 -9.6,-0.4 -13.9,-9.4 -15.2,-17.5 -0.2,-0.8 -0.4,-1.7 -0.6,-2.6 -0.6,-3.6 -0.5,-7.4 1.3,-9.4 0.4,-0.5 0.9,-0.8 1.3,-1.1 0.4,-0.4 0.8,-0.7 1,-1.4" + id="path7" + sodipodi:nodetypes="cccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 227.45,500.425 c 0,-1.2 0,-2.9 0.1,-5.1 0.1,-1.1 0.3,-5 1.1,-10.9 0.5,-3.4 1,-6.1 1.1,-6.7 3.6,-17.9 16.5,-26.9 16.5,-27 1.4,-1.2 4.8,-3.2 6.2,-4.3 2.9,-1.8 11.9,-6 24.2,-2.2 1.8,0.5 14.1,5.8 16.1,9.1 2.5,4.2 -1.6,-2.7 -2.5,-1.8 -0.4,0.4 -1.1,0.9 -1.9,2 -1.1,1.4 -1.5,2.6 -1.7,3.1 -1,2.2 -3.5,2.9 -7.2,4.4 -4.7,1.9 -7.7,3.1 -10.6,5.3 -2.1,1.6 -3.6,3.4 -6.5,6.9 -2.6,3.1 -4,4.9 -5.3,7.8 -0.4,0.9 -1.1,2.8 -2.6,6.7 -0.9,2.4 -1.2,3.4 -1.6,4.6 -0.6,2.1 -1,3.9 -1.2,5.2 -0.8,3.1 -2.8,9.1 -8,14 -2.6,2.4 -6,5.5 -9.3,4.6 -5.4,-1.5 -6.8,-14.7 -6.9,-15.7 z" + id="path9" + sodipodi:nodetypes="ccccccccscccccccccccc" /><path + inkscape:connector-curvature="0" + class="skin penis" + d="m 269.65,443.725 c 6.5,-0.4 20.8,4.1 23.4,9.6 2.1,4.6 1,-1.5 -2.3,2.6 -1.9,0.8 -5,2.2 -8.9,3.7 -8.6,3.5 -10.3,3.8 -13.4,6.1 -3.3,2.5 -5.7,5.5 -7,7 -1.1,1.3 -2.5,3.2 -3.9,5.5 -0.4,0.7 -0.8,1.4 -1.1,2 -0.3,0.6 -0.6,1.2 -0.9,1.7 -2.6,7.9 -6.1,15.8 -4.7,23.3 v 2.2 c 0,0.7 -0.1,1.4 -0.2,2.2 -2.1,4 3.2,3.1 4.1,6.6 0.9,4.4 0,7.9 -0.3,12.3 -0.2,0.7 -0.4,1.3 -0.6,1.9 -2,6.1 -4.8,8.7 -4.8,8.7 -0.6,0.5 -1.9,1.8 -3.6,2.9 -0.6,0.3 -1.2,0.7 -1.8,0.9 -10,3.1 -14.4,-8.3 -16.6,-15.6 -0.2,-0.8 -0.4,-1.6 -0.5,-2.4 -0.6,-3.3 -0.5,-6.8 1.3,-8.7 0.4,-0.4 0.9,-0.7 1.3,-1.1 0.4,-0.3 0.7,-0.7 0.9,-1.3 -3.4,-10.8 -0.7,-20.5 0.5,-30.7 0.1,-0.8 0.2,-1.5 0.3,-2.2 0.8,-4.9 0.7,-6.3 2.8,-10.9 0.8,-1.8 3.1,-8.8 9.7,-15.3 11.1,-11.2 19.3,-10.6 26.3,-11 z" + id="path11" + sodipodi:nodetypes="cccccccsccsccccccccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Flaccid_4" + inkscape:label="Flaccid_4" + style="display:inline"><path + id="path6-1" + d="m 262.35248,496.07062 c 0.1,0.3 0.7,0.5 1.4,0.7 5.2,0.5 5.2,8.1 4.1,12.9 -0.1,0.4 -0.2,0.9 -0.3,1.3 -1.6,5.7 -4.1,8.1 -4.1,8.1 -0.5,0.5 -2.3,2.3 -4.5,3.1 -0.6,0.2 -1.1,0.4 -1.8,0.4 -7.4,-0.3 -10.7,-7.2 -11.7,-13.5 -0.2,-0.7 -0.3,-1.3 -0.4,-2 -0.5,-2.8 -0.4,-5.7 1,-7.3 0.3,-0.4 0.7,-0.6 1,-0.9 0.3,-0.3 0.6,-0.6 0.8,-1.1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccsc" /><path + id="path8-2" + d="m 246.45248,488.07062 c 0,-0.9 0,-2.3 0.1,-3.9 0,-0.8 0.2,-3.9 0.9,-8.4 0.4,-2.6 0.8,-4.7 0.9,-5.2 2.8,-13.8 12.7,-20.7 12.7,-20.8 1.1,-0.9 3.7,-2.4 4.8,-3.3 2.2,-1.4 9.1,-4.6 18.7,-1.7 1.4,0.4 10.9,4.4 12.4,7 1.9,3.2 -1.2,-2.1 -1.9,-1.4 -0.3,0.3 -0.8,0.7 -1.5,1.5 -0.8,1.1 -1.1,2 -1.3,2.4 -0.8,1.7 -2.7,2.2 -5.5,3.4 -3.6,1.4 -5.9,2.4 -8.1,4 -1.6,1.2 -2.8,2.6 -5,5.3 -2,2.4 -3.1,3.8 -4.1,6 -0.3,0.7 -0.9,2.2 -2,5.2 -0.7,1.8 -0.9,2.6 -1.2,3.5 -0.5,1.6 -0.8,3 -0.9,4 -0.6,2.4 -2.1,7 -6.2,10.7 -2,1.8 -4.6,4.3 -7.1,3.6 -4.6,-1 -5.6,-11.2 -5.7,-11.9 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccscccccccccccc" /><path + id="path10-70" + d="m 278.85248,444.47062 c 5,-0.3 16,3.1 18,7.4 1.6,3.5 0.7,-1.2 -1.7,2 -1.5,0.7 -3.9,1.7 -6.8,2.9 -6.6,2.7 -7.9,2.9 -10.3,4.7 -2.6,1.9 -4.4,4.2 -5.4,5.4 -0.8,1 -1.9,2.4 -3,4.2 l -0.9,1.5 c -0.3,0.5 -0.5,0.9 -0.7,1.3 -2,6.1 -4.7,12.2 -3.6,18 v 1.7 c 0,0.6 -0.1,1.1 -0.1,1.7 -1.6,3.1 2.5,2.4 3.1,5.1 0.7,3.4 0,6.1 -0.3,9.4 -0.1,0.5 -0.3,1 -0.4,1.5 -1.5,4.7 -3.7,6.7 -3.7,6.7 -0.4,0.4 -1.4,1.4 -2.8,2.2 -0.4,0.3 -0.9,0.5 -1.4,0.7 -7.7,2.4 -11.1,-6.4 -12.8,-12 -0.2,-0.6 -0.3,-1.2 -0.4,-1.9 -0.4,-2.5 -0.4,-5.2 1,-6.7 0.3,-0.3 0.7,-0.6 1,-0.8 0.3,-0.2 0.6,-0.5 0.7,-1 -2.6,-8.3 -0.6,-15.8 0.4,-23.6 0.1,-0.6 0.2,-1.1 0.3,-1.7 0.6,-3.8 0.5,-4.8 2.1,-8.4 0.6,-1.3 2.4,-6.8 7.4,-11.8 8.6,-8.7 15,-8.2 20.3,-8.5 z" + class="skin penis" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccsccsccccccccccscccccc" /></g><g + inkscape:groupmode="layer" + id="Flaccid_3" + inkscape:label="Flaccid_3" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 269.6625,486.0125 c 0.1,0.2 0.6,0.4 1.1,0.6 4,0.4 4,6.4 3.2,10.1 -0.1,0.3 -0.2,0.7 -0.2,1 -1.2,4.5 -3.2,6.3 -3.2,6.3 -0.4,0.4 -1.8,1.8 -3.5,2.5 -0.4,0.2 -0.9,0.3 -1.4,0.3 -5.8,-0.2 -8.4,-5.7 -9.2,-10.6 -0.1,-0.5 -0.2,-1 -0.3,-1.6 -0.4,-2.2 -0.3,-4.4 0.8,-5.7 0.3,-0.3 0.6,-0.5 0.8,-0.7 0.3,-0.2 0.5,-0.4 0.6,-0.8" + id="path8-62" + sodipodi:nodetypes="cccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 257.1625,479.7125 c 0,-0.7 0,-1.8 0.1,-3 0,-0.6 0.2,-3 0.7,-6.6 0.3,-2.1 0.6,-3.7 0.7,-4.1 2.2,-10.8 10,-16.3 10,-16.3 0.9,-0.7 2.9,-1.9 3.8,-2.6 1.8,-1.1 7.2,-3.6 14.6,-1.3 1.1,0.3 8.5,3.5 9.7,5.5 1.5,2.5 -1,-1.6 -1.5,-1.1 -0.2,0.2 -0.7,0.5 -1.2,1.2 -0.6,0.8 -0.9,1.6 -1,1.9 -0.6,1.3 -2.1,1.7 -4.3,2.6 -2.8,1.1 -4.6,1.9 -6.4,3.2 -1.3,1 -2.2,2 -3.9,4.2 -1.5,1.9 -2.4,2.9 -3.2,4.7 -0.3,0.5 -0.7,1.7 -1.5,4.1 -0.5,1.4 -0.7,2.1 -0.9,2.8 -0.4,1.3 -0.6,2.4 -0.7,3.1 -0.5,1.9 -1.7,5.5 -4.9,8.4 -1.6,1.4 -3.6,3.3 -5.6,2.8 -3.6,-0.9 -4.4,-8.9 -4.5,-9.5 z" + id="path10-9" + sodipodi:nodetypes="cccccccssccccccccccsc" /><path + inkscape:connector-curvature="0" + class="skin penis" + d="m 282.6625,445.5125 c 3.9,-0.2 12.6,2.5 14.1,5.8 1.3,2.8 0.6,-0.9 -1.4,1.6 -1.2,0.5 -3,1.3 -5.4,2.3 -5.2,2.1 -6.2,2.3 -8.1,3.7 -2,1.5 -3.5,3.3 -4.2,4.2 -0.6,0.8 -1.5,1.9 -2.3,3.3 -0.3,0.4 -0.5,0.8 -0.7,1.2 -0.2,0.4 -0.4,0.7 -0.5,1 -1.5,4.8 -3.7,9.6 -2.9,14.1 v 1.3 c 0,0.4 0,0.9 -0.1,1.3 -1.2,2.4 1.9,1.9 2.5,4 0.5,2.7 0,4.8 -0.2,7.4 l -0.3,1.2 c -1.2,3.7 -2.9,5.3 -2.9,5.3 -0.3,0.3 -1.1,1.1 -2.2,1.7 -0.3,0.2 -0.7,0.4 -1.1,0.6 -6,1.9 -8.7,-5 -10,-9.4 l -0.3,-1.5 c -0.3,-2 -0.3,-4.1 0.8,-5.2 0.3,-0.3 0.5,-0.4 0.8,-0.6 0.2,-0.2 0.4,-0.4 0.6,-0.8 -2,-6.5 -0.4,-12.4 0.3,-18.5 0.1,-0.5 0.1,-0.9 0.2,-1.3 0.5,-3 0.4,-3.8 1.7,-6.6 0.5,-1.1 1.9,-5.3 5.8,-9.3 6.6,-6.9 11.6,-6.6 15.8,-6.8 z" + id="path12" + sodipodi:nodetypes="cccccccsccscccccccccsccccccc" /></g><g + inkscape:groupmode="layer" + id="Flaccid_2" + inkscape:label="Flaccid_2" + style="display:inline"><path + id="path6-5" + d="m 275.575,476.125 c 0.1,0.1 0.4,0.3 0.8,0.4 2.8,0.3 2.8,4.4 2.2,7 -0.1,0.2 -0.1,0.5 -0.2,0.7 -0.9,3.1 -2.2,4.4 -2.2,4.4 -0.3,0.3 -1.2,1.2 -2.4,1.7 -0.3,0.1 -0.6,0.2 -1,0.2 -4,-0.1 -5.8,-3.9 -6.3,-7.3 -0.1,-0.4 -0.2,-0.7 -0.2,-1.1 -0.3,-1.5 -0.2,-3.1 0.6,-3.9 0.2,-0.2 0.4,-0.3 0.6,-0.5 0.2,-0.1 0.3,-0.3 0.4,-0.6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccscc" /><path + id="path8-3" + d="m 266.875,471.725 c 0,-0.5 0,-1.2 0.1,-2.1 0,-0.4 0.1,-2.1 0.5,-4.5 0.2,-1.4 0.4,-2.5 0.5,-2.8 1.5,-7.5 6.9,-11.2 6.9,-11.2 0.6,-0.5 2,-1.3 2.6,-1.8 1.2,-0.8 4.9,-2.5 10.1,-0.9 0.7,0.2 5.9,2.4 6.7,3.8 1,1.8 -0.7,-1.1 -1,-0.8 -0.2,0.1 -0.5,0.4 -0.8,0.8 -0.4,0.6 -0.6,1.1 -0.7,1.3 -0.4,0.9 -1.5,1.2 -3,1.8 -2,0.8 -3.2,1.3 -4.4,2.2 -0.9,0.7 -1.5,1.4 -2.7,2.9 -1.1,1.3 -1.7,2 -2.2,3.2 -0.2,0.4 -0.5,1.2 -1.1,2.8 -0.4,1 -0.5,1.4 -0.7,1.9 -0.3,0.9 -0.4,1.6 -0.5,2.2 -0.3,1.3 -1.2,3.8 -3.4,5.8 -1.1,1 -2.5,2.3 -3.9,1.9 -2.4,-0.6 -2.9,-6.1 -3,-6.5 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccsccccccscc" /><path + id="path10-5" + d="m 284.475,448.125 c 2.7,-0.2 8.7,1.7 9.7,4 0.9,1.9 0.4,-0.6 -0.9,1.1 -0.8,0.4 -2.1,0.9 -3.7,1.6 -3.6,1.4 -4.3,1.6 -5.6,2.5 -1.4,1 -2.4,2.3 -2.9,2.9 -0.4,0.5 -1,1.3 -1.6,2.3 -0.2,0.3 -0.3,0.6 -0.5,0.8 -0.2,0.2 -0.3,0.5 -0.4,0.7 -1.1,3.3 -2.5,6.6 -2,9.7 v 0.9 c 0,0.3 0,0.6 -0.1,0.9 -0.9,1.7 1.3,1.3 1.7,2.8 0.4,1.8 0,3.3 -0.1,5.1 -0.1,0.3 -0.1,0.6 -0.2,0.8 -0.8,2.6 -2,3.6 -2,3.6 -0.2,0.2 -0.8,0.8 -1.5,1.2 -0.2,0.1 -0.5,0.3 -0.8,0.4 -4.2,1.3 -6,-3.5 -6.9,-6.5 -0.1,-0.3 -0.2,-0.7 -0.2,-1 -0.2,-1.4 -0.2,-2.8 0.5,-3.6 0.2,-0.2 0.4,-0.3 0.5,-0.4 0.2,-0.1 0.3,-0.3 0.4,-0.5 -1.4,-4.5 -0.3,-8.6 0.2,-12.8 0,-0.3 0.1,-0.6 0.1,-0.9 0.3,-2.1 0.3,-2.6 1.2,-4.6 0.3,-0.7 1.3,-3.7 4,-6.4 4.8,-4.7 8.2,-4.4 11.1,-4.6 z" + class="skin penis" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccsccsccccccccccccccccc" /></g><g + inkscape:groupmode="layer" + id="Flaccid_1" + inkscape:label="Flaccid_1" + style="display:inline"><path + id="path6-3" + d="m 280.78125,468.36875 c 0,0.1 0.3,0.2 0.5,0.3 1.9,0.2 1.9,3.1 1.5,4.9 0,0.2 -0.1,0.3 -0.1,0.5 -0.6,2.2 -1.6,3.1 -1.6,3.1 -0.2,0.2 -0.9,0.9 -1.7,1.2 -0.2,0.1 -0.4,0.1 -0.7,0.2 -2.8,-0.1 -4,-2.7 -4.4,-5.1 -0.1,-0.2 -0.1,-0.5 -0.2,-0.8 -0.2,-1 -0.2,-2.1 0.4,-2.7 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccssc" /><path + id="path8-6" + d="m 274.78125,465.26875 v -1.5 c 0,-0.3 0.1,-1.5 0.3,-3.2 0.1,-1 0.3,-1.8 0.3,-2 1,-5.2 4.8,-7.8 4.8,-7.8 0.4,-0.3 1.4,-0.9 1.8,-1.3 0.8,-0.5 3.4,-1.7 7,-0.6 0.5,0.2 4.1,1.7 4.7,2.6 0.7,1.2 -0.5,-0.8 -0.7,-0.5 l -0.6,0.6 c -0.3,0.4 -0.4,0.8 -0.5,0.9 -0.3,0.6 -1,0.8 -2.1,1.3 -1.4,0.5 -2.2,0.9 -3.1,1.5 -0.6,0.5 -1,1 -1.9,2 -0.7,0.9 -1.2,1.4 -1.6,2.3 -0.1,0.3 -0.3,0.8 -0.7,2 -0.3,0.7 -0.4,1 -0.5,1.3 -0.2,0.6 -0.3,1.1 -0.4,1.5 -0.2,0.9 -0.8,2.6 -2.3,4.1 -0.7,0.7 -1.7,1.6 -2.7,1.4 -1.4,-0.5 -1.8,-4.3 -1.8,-4.6 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ssccccccccccccccscscs" /><path + id="path10-7" + d="m 286.98125,448.86875 c 1.9,-0.1 6.1,1.2 6.8,2.8 0.6,1.3 0.3,-0.4 -0.7,0.8 -0.6,0.2 -1.5,0.6 -2.6,1.1 -2.5,1 -3,1.1 -3.9,1.8 -1,0.7 -1.7,1.6 -2,2 -0.3,0.4 -0.7,0.9 -1.1,1.6 l -0.3,0.6 c -0.1,0.2 -0.2,0.3 -0.3,0.5 -0.7,2.3 -1.8,4.6 -1.4,6.8 v 0.6 0.6 c -0.6,1.2 0.9,0.9 1.2,1.9 0.3,1.3 0,2.3 -0.1,3.6 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.6,1.8 -1.4,2.5 -1.4,2.5 -0.2,0.2 -0.5,0.5 -1,0.8 -0.2,0.1 -0.3,0.2 -0.5,0.3 -2.9,0.9 -4.2,-2.4 -4.8,-4.5 -0.1,-0.2 -0.1,-0.5 -0.2,-0.7 -0.2,-1 -0.2,-2 0.4,-2.5 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.4 -1,-3.1 -0.2,-6 0.2,-8.9 0,-0.2 0.1,-0.4 0.1,-0.6 0.2,-1.4 0.2,-1.8 0.8,-3.2 0.2,-0.5 0.9,-2.6 2.8,-4.5 3.1,-3.4 5.5,-3.2 7.5,-3.3 z" + class="skin penis" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccscscccccccccccccscccccc" /></g><g + inkscape:groupmode="layer" + id="Flaccid_0" + inkscape:label="Flaccid_0" + style="display:inline"><path + id="path6" + d="m 285.17635,460.26374 c 0,0.1 0.2,0.1 0.3,0.1 1.1,0.1 1.1,1.7 0.8,2.7 0,0.1 0,0.2 -0.1,0.3 -0.3,1.2 -0.8,1.7 -0.8,1.7 -0.1,0.1 -0.5,0.5 -0.9,0.6 -0.1,0 -0.2,0.1 -0.4,0.1 -1.5,-0.1 -2.2,-1.5 -2.4,-2.8 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.6 -0.11527,-1.2161 0.2,-1.5 l 0.2,-0.2 0.2,-0.2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccscc" /><path + id="path8" + d="m 281.87635,458.56374 v -0.8 c 0,-0.2 0,-0.8 0.2,-1.7 0.1,-0.5 0.2,-1 0.2,-1.1 0.6,-2.8 2.6,-4.3 2.6,-4.3 0.2,-0.2 0.8,-0.5 1,-0.7 0.5,-0.3 1.9,-1 3.9,-0.3 0.3,0.1 2.2,0.9 2.6,1.4 0.4,0.7 -0.3,-0.4 -0.4,-0.3 -0.1,0.1 -0.2,0.1 -0.3,0.3 -0.2,0.2 -0.2,0.4 -0.3,0.5 -0.2,0.4 -0.6,0.5 -1.1,0.7 -0.7,0.3 -1.2,0.5 -1.7,0.8 -0.3,0.3 -0.6,0.5 -1,1.1 -0.4,0.5 -0.6,0.8 -0.8,1.2 -0.1,0.1 -0.2,0.5 -0.4,1.1 -0.1,0.4 -0.2,0.5 -0.2,0.7 -0.1,0.3 -0.2,0.6 -0.2,0.8 -0.1,0.5 -0.4,1.4 -1.3,2.2 -0.4,0.4 -0.9,0.9 -1.5,0.7 -1,0 -1.3,-2.1 -1.3,-2.3 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ssccccccscccccccccccs" /><path + id="path10" + d="m 288.57635,449.56374 c 1,-0.1 3.3,0.7 3.7,1.5 0.3,0.7 0.2,-0.2 -0.4,0.4 -0.3,0.1 -0.8,0.3 -1.4,0.6 -1.4,0.6 -1.6,0.6 -2.1,1 -0.5,0.4 -0.9,0.9 -1.1,1.1 -0.2,0.2 -0.4,0.5 -0.6,0.9 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.4,1.3 -1,2.5 -0.8,3.7 v 0.3 0.3 c -0.3,0.6 0.5,0.5 0.7,1 0.1,0.7 0,1.3 -0.1,1.9 0,0.1 -0.1,0.2 -0.1,0.3 -0.3,1 -0.8,1.4 -0.8,1.4 -0.1,0.1 -0.3,0.3 -0.6,0.5 -0.1,0.1 -0.2,0.1 -0.3,0.1 -1.6,0.5 -2.3,-1.3 -2.6,-2.5 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.5 -0.1,-1.1 0.2,-1.4 l 0.2,-0.2 c 0.1,-0.1 0.1,-0.1 0.1,-0.2 -0.5,-1.7 -0.1,-3.3 0.1,-4.9 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.8 0.1,-1 0.4,-1.7 0.1,-0.3 0.5,-1.4 1.5,-2.4 1.9,-1.6 3.2,-1.5 4.3,-1.6 z" + class="skin penis" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccsscsccccccccccccsscccccc" /></g></g><g + inkscape:groupmode="layer" + id="Penis_Addon_" + inkscape:label="Penis_Addon_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Chastity_Cage_6" + inkscape:label="Chastity_Cage_6" + style="display:inline"><ellipse + id="ellipse9-5" + ry="2.5001018" + rx="14.00057" + cy="563.46527" + cx="223.78876" + transform="rotate(-0.51731229)" /><ellipse + id="ellipse11-6" + ry="2.3000937" + rx="13.800563" + cy="564.05988" + cx="223.18347" + class="steel_chastity" + transform="rotate(-0.51731229)" /><ellipse + transform="rotate(-17.980187)" + cx="109.78678" + cy="517.46411" + rx="2.100081" + ry="18.100698" + id="ellipse17-0" /><ellipse + transform="rotate(-17.980187)" + class="steel_chastity" + cx="109.40092" + cy="516.70447" + rx="1.9000733" + ry="18.100698" + id="ellipse19-46" /><ellipse + transform="rotate(-26.992949)" + cx="15.549369" + cy="527.31976" + rx="2.5001056" + ry="20.900883" + id="ellipse23-6" /><ellipse + transform="rotate(-26.992949)" + class="steel_chastity" + cx="15.118171" + cy="526.62225" + rx="2.300097" + ry="20.700874" + id="ellipse25-75" /><ellipse + transform="rotate(-54.237185)" + cx="-253.00562" + cy="471.60324" + rx="2.4998667" + ry="21.798836" + id="ellipse29-8" /><ellipse + transform="rotate(-54.237185)" + class="steel_chastity" + cx="-253.51361" + cy="470.8566" + rx="2.2998772" + ry="21.598848" + id="ellipse31-72" /><ellipse + transform="rotate(-80.822144)" + cx="-465.65756" + cy="305.72757" + rx="2.500005" + ry="20.900042" + id="ellipse35-29" /><ellipse + transform="rotate(-80.822144)" + class="steel_chastity" + cx="-466.23138" + cy="304.94336" + rx="2.3000047" + ry="20.700043" + id="ellipse37-9" /><ellipse + transform="rotate(-0.44003305)" + cx="223.67113" + cy="546.64923" + rx="2.5000737" + ry="19.100563" + id="ellipse41-0" /><ellipse + transform="rotate(-0.44003305)" + class="steel_chastity" + cx="223.07713" + cy="545.84473" + rx="2.3000679" + ry="18.900557" + id="ellipse43-2" /><path + id="path49-21" + d="m 249.25,544.3 c -1,10.5 -6.2,18.5 -7.4,18.1 -1.2,-0.2 1.9,-8.4 2.7,-18.7 1,-10.3 -0.8,-18.5 0.8,-18.3 1.2,-0.1 4.9,8.3 3.9,18.9 z" + inkscape:connector-curvature="0" /><path + id="path51-5" + d="m 248.65,543.5 c -0.8,10.5 -5.8,18.3 -6.8,18.1 -1.2,-0.2 1.9,-8.2 2.5,-18.5 0.8,-10.3 -1,-18.3 0.4,-18.1 1,-0.2 4.7,8.1 3.9,18.5 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-1" + d="m 211.85,544.6 c 0.8,9.9 3.7,17.5 2.5,18.7 -1,1.2 -6.6,-6 -7.6,-18.3 -1,-12.1 3.5,-21.8 4.7,-20.9 1.2,1.1 -0.6,10.6 0.4,20.5 z" + inkscape:connector-curvature="0" /><path + id="path59-49" + d="m 212.45,544.6 c 0.8,9.7 3.5,17 2.5,18.1 -1,1.2 -6.2,-6 -7.2,-17.5 -1,-11.7 3.3,-21 4.3,-20.1 1.1,0.6 -0.6,9.8 0.4,19.5 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-12.809092)" + cx="167.35036" + cy="504.03577" + rx="1.7999737" + ry="16.799755" + id="ellipse63-7" /><ellipse + transform="rotate(-12.809092)" + class="steel_chastity" + cx="167.05159" + cy="503.56573" + rx="1.5999768" + ry="16.599758" + id="ellipse65-5" /><ellipse + transform="rotate(-0.51731)" + cx="222.5524" + cy="545.35284" + rx="18.700764" + ry="2.5001018" + id="ellipse69-7" /><ellipse + transform="rotate(-0.51731)" + class="steel_chastity" + cx="221.74893" + cy="545.74579" + rx="18.500753" + ry="2.3000937" + id="ellipse71-0" /><ellipse + transform="rotate(-41.042549)" + cx="-125.04724" + cy="515.07556" + rx="2.4999266" + ry="21.599365" + id="ellipse75-8" /><ellipse + transform="rotate(-41.042549)" + class="steel_chastity" + cx="-125.60838" + cy="514.41785" + rx="2.2999322" + ry="21.39937" + id="ellipse77-04" /><ellipse + transform="rotate(-68.216677)" + cx="-372.95468" + cy="397.76074" + rx="2.5000165" + ry="21.800142" + id="ellipse81-9" /><ellipse + transform="rotate(-68.216677)" + class="steel_chastity" + cx="-373.46225" + cy="396.95178" + rx="2.3000152" + ry="21.600143" + id="ellipse83-61" /><path + id="path85-04" + d="m 282.35,452.3 c 0.2,0.4 -11.5,3.1 -25.3,12.3 -4.9,3.3 -10.3,6.8 -15.6,13.4 -6.8,8.6 -9.4,16.8 -10.1,18.9 -1.8,5.7 -2.3,11.5 -2.7,15.6 -0.4,4.5 -0.8,11.3 -1,11.3 0,0 0,0 0,-0.2 v 0 l 0.6,0.2 c 0,0.2 -0.8,0.4 -1.2,0.2 -0.8,-0.4 -0.8,-1.6 -1,-1.9 -0.6,-5.8 -0.4,-8 -0.4,-8 -0.6,-3.3 0,-6.2 1.2,-12.3 0.6,-2.9 1.6,-8.2 4.3,-14.4 1.6,-3.7 4.1,-8.6 8.4,-13.8 3.9,-3.5 10.1,-8.4 18.1,-12.7 13,-6.7 24.5,-9 24.7,-8.6 z" + inkscape:connector-curvature="0" /><path + id="path87-2" + d="m 282.55,452.3 c 0.2,0.4 -7.8,2.1 -18.3,7.4 -1.4,0.6 -2.7,1.4 -4.5,2.3 -4.7,2.5 -15.2,8.6 -22.4,20.5 -0.4,0.4 -1.4,2.1 -2.5,4.5 -9.9,20.1 -5.8,40.1 -7.6,40.3 -0.6,0 -1.2,-1.8 -1.4,-2.9 -0.8,-3.1 -3.3,-12.9 2.9,-31.2 1.2,-3.3 2.9,-7.8 5.7,-12.9 3.1,-4.5 6,-8 8.4,-10.1 0.2,-0.2 0.2,-0.2 0.4,-0.4 11.7,-11.5 31.2,-16.2 31.2,-16.2 4.2,-1.1 8.1,-1.7 8.1,-1.3 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-87.809822)" + cx="-516.20825" + cy="248.2253" + rx="2.5000763" + ry="19.700602" + id="ellipse91-2" /><ellipse + transform="rotate(-87.809822)" + class="steel_chastity" + cx="-516.70093" + cy="247.56767" + rx="2.3000703" + ry="19.500595" + id="ellipse93-05" /><ellipse + transform="rotate(-1.8914744)" + cx="269.29996" + cy="461.05957" + rx="1.8000808" + ry="15.6007" + id="ellipse97-2" /><ellipse + transform="rotate(-1.8914744)" + class="steel_chastity" + cx="268.91949" + cy="460.44696" + rx="1.6000718" + ry="15.400691" + id="ellipse99-9" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_5" + inkscape:label="Chastity_Cage_5" + style="display:inline"><ellipse + id="ellipse9-4" + ry="2.1000855" + rx="11.400464" + cy="541.96863" + cx="235.52405" + transform="rotate(-0.51731229)" /><ellipse + id="ellipse11-05" + ry="1.9000775" + rx="11.200457" + cy="542.46442" + cx="235.01974" + class="steel_chastity" + transform="rotate(-0.51731229)" /><ellipse + transform="rotate(-17.980187)" + cx="115.03899" + cy="516.97107" + rx="1.7000656" + ry="14.700566" + id="ellipse17-69" /><ellipse + transform="rotate(-17.980187)" + class="steel_chastity" + cx="114.71255" + cy="516.34155" + rx="1.6000618" + ry="14.700566" + id="ellipse19-22" /><ellipse + transform="rotate(-26.992949)" + cx="23.069269" + cy="527.79224" + rx="2.1000886" + ry="16.900713" + id="ellipse23-7" /><ellipse + transform="rotate(-26.992949)" + class="steel_chastity" + cx="22.687128" + cy="527.2511" + rx="1.9000802" + ry="16.700706" + id="ellipse25-54" /><ellipse + transform="rotate(-54.237185)" + cx="-241.71759" + cy="476.30286" + rx="2.0998878" + ry="17.699057" + id="ellipse29-12" /><ellipse + transform="rotate(-54.237185)" + class="steel_chastity" + cx="-242.1998" + cy="475.69751" + rx="1.8998986" + ry="17.499067" + id="ellipse31-8" /><ellipse + transform="rotate(-80.822144)" + cx="-452.28793" + cy="315.5076" + rx="2.1000042" + ry="16.900034" + id="ellipse35-6" /><ellipse + transform="rotate(-80.822144)" + class="steel_chastity" + cx="-452.80457" + cy="314.9664" + rx="1.9000039" + ry="16.700035" + id="ellipse37-80" /><ellipse + transform="rotate(-0.44003305)" + cx="235.55316" + cy="528.23846" + rx="2.1000619" + ry="15.500457" + id="ellipse41-51" /><ellipse + transform="rotate(-0.44003305)" + class="steel_chastity" + cx="235.05798" + cy="527.53479" + rx="1.900056" + ry="15.300451" + id="ellipse43-10" /><path + id="path49-0" + d="m 256.88999,525.89899 c -0.8,8.5 -5.1,15 -6,14.7 -0.9,-0.2 1.6,-6.8 2.2,-15.2 0.8,-8.4 -0.6,-15 0.6,-14.9 1,0.1 4,6.9 3.2,15.4 z" + inkscape:connector-curvature="0" /><path + id="path51-6" + d="m 256.48999,525.29899 c -0.6,8.5 -4.7,14.9 -5.5,14.7 -0.9,-0.2 1.6,-6.6 2.1,-15 0.6,-8.4 -0.8,-14.9 0.3,-14.7 0.7,-0.2 3.7,6.6 3.1,15 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-2" + d="m 226.58999,526.19899 c 0.6,8.1 3,14.2 2.1,15.2 -0.8,0.9 -5.4,-4.9 -6.2,-14.9 -0.8,-9.8 2.8,-17.7 3.8,-16.9 0.9,0.8 -0.5,8.5 0.3,16.6 z" + inkscape:connector-curvature="0" /><path + id="path59-58" + d="m 227.08999,526.19899 c 0.6,7.9 2.8,13.7 2.1,14.7 -0.7,1 -5.1,-4.9 -5.8,-14.2 -0.8,-9.5 2.7,-17.1 3.5,-16.3 0.8,0.5 -0.6,7.9 0.2,15.8 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-12.809092)" + cx="170.42334" + cy="503.39645" + rx="1.3999796" + ry="13.599803" + id="ellipse63-847" /><ellipse + transform="rotate(-12.809092)" + class="steel_chastity" + cx="170.20547" + cy="502.93967" + rx="1.299981" + ry="13.399805" + id="ellipse65-2" /><ellipse + transform="rotate(-0.51731)" + cx="234.55676" + cy="527.25861" + rx="15.20062" + ry="2.1000855" + id="ellipse69-6" /><ellipse + transform="rotate(-0.51731)" + class="steel_chastity" + cx="233.85391" + cy="527.55292" + rx="15.000611" + ry="1.9000775" + id="ellipse71-2" /><ellipse + transform="rotate(-41.042549)" + cx="-115.63295" + cy="517.47675" + rx="2.0999382" + ry="17.499485" + id="ellipse75-9" /><ellipse + transform="rotate(-41.042549)" + class="steel_chastity" + cx="-116.05816" + cy="516.92462" + rx="1.8999441" + ry="17.399488" + id="ellipse77-0" /><ellipse + transform="rotate(-68.216677)" + cx="-360.61716" + cy="404.87231" + rx="2.1000137" + ry="17.700117" + id="ellipse81-3" /><ellipse + transform="rotate(-68.216677)" + class="steel_chastity" + cx="-360.99899" + cy="404.15442" + rx="1.9000125" + ry="17.500114" + id="ellipse83-11" /><path + id="path85-0" + d="m 283.78999,451.29899 c 0.2,0.3 -9.3,2.5 -20.5,10 -3.9,2.7 -8.4,5.5 -12.6,10.9 -5.5,7 -7.6,13.6 -8.2,15.3 -1.4,4.6 -1.9,9.3 -2.2,12.6 -0.3,3.6 -0.6,9.2 -0.8,9.2 0,0 0,0 0,-0.2 v 0 l 0.5,0.2 c 0,0.2 -0.6,0.3 -0.9,0.2 -0.6,-0.3 -0.6,-1.3 -0.8,-1.6 -0.5,-4.7 -0.3,-6.5 -0.3,-6.5 -0.5,-2.7 0,-5.1 0.9,-10 0.5,-2.4 1.3,-6.6 3.5,-11.7 1.3,-3 3.3,-7 6.8,-11.2 3.2,-2.8 8.2,-6.8 14.7,-10.3 10.4,-5.3 19.7,-7.2 19.9,-6.9 z" + inkscape:connector-curvature="0" /><path + id="path87-3" + d="m 283.98999,451.29899 c 0.2,0.3 -6.3,1.7 -14.9,6 -1.1,0.5 -2.2,1.1 -3.6,1.9 -3.8,2.1 -12.3,7 -18.2,16.6 -0.3,0.3 -1.1,1.7 -2.1,3.6 -8.1,16.3 -4.7,32.5 -6.2,32.7 -0.5,0 -0.9,-1.4 -1.1,-2.4 -0.6,-2.5 -2.7,-10.4 2.4,-25.3 0.9,-2.7 2.4,-6.3 4.6,-10.4 2.5,-3.6 4.9,-6.5 6.8,-8.2 0.2,-0.2 0.2,-0.2 0.3,-0.3 9.5,-9.3 25.3,-13.1 25.3,-13.1 3.5,-0.9 6.7,-1.4 6.7,-1.1 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-87.809822)" + cx="-500.91162" + cy="259.28619" + rx="2.100064" + ry="16.000488" + id="ellipse91-0" /><ellipse + transform="rotate(-87.809822)" + class="steel_chastity" + cx="-501.42453" + cy="258.74768" + rx="1.900058" + ry="15.800483" + id="ellipse93-39" /><ellipse + transform="rotate(-1.8914744)" + cx="270.36884" + cy="460.1936" + rx="1.4000628" + ry="12.600566" + id="ellipse97-9" /><ellipse + transform="rotate(-1.8914744)" + class="steel_chastity" + cx="270.08469" + cy="459.78339" + rx="1.3000582" + ry="12.500561" + id="ellipse99-6" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_4" + inkscape:label="Chastity_Cage_4" + style="display:inline"><ellipse + id="ellipse9-1" + ry="1.6000652" + rx="8.8003588" + cy="520.67523" + cx="252.42801" + transform="rotate(-0.51731229)" /><ellipse + id="ellipse11-0" + ry="1.5000612" + rx="8.7003546" + cy="521.0719" + cx="252.02472" + class="steel_chastity" + transform="rotate(-0.51731229)" /><ellipse + transform="rotate(-17.980187)" + cx="125.4729" + cy="517.88269" + rx="1.3000501" + ry="11.300436" + id="ellipse17-4" /><ellipse + transform="rotate(-17.980187)" + class="steel_chastity" + cx="125.20676" + cy="517.48279" + rx="1.2000463" + ry="11.300436" + id="ellipse19-4" /><ellipse + transform="rotate(-26.992949)" + cx="35.382034" + cy="530.53302" + rx="1.6000676" + ry="13.000548" + id="ellipse23-47" /><ellipse + transform="rotate(-26.992949)" + class="steel_chastity" + cx="35.150055" + cy="530.14703" + rx="1.5000633" + ry="12.900544" + id="ellipse25-6" /><ellipse + transform="rotate(-54.237185)" + cx="-227.30109" + cy="485.23416" + rx="1.5999147" + ry="13.599275" + id="ellipse29-1" /><ellipse + transform="rotate(-54.237185)" + class="steel_chastity" + cx="-227.65594" + cy="484.66739" + rx="1.49992" + ry="13.49928" + id="ellipse31-7" /><ellipse + transform="rotate(-80.822144)" + cx="-438.15033" + cy="330.48074" + rx="1.6000032" + ry="13.000027" + id="ellipse35-9" /><ellipse + transform="rotate(-80.822144)" + class="steel_chastity" + cx="-438.50885" + cy="329.97794" + rx="1.5000031" + ry="12.900026" + id="ellipse37-6" /><ellipse + transform="rotate(-0.44003305)" + cx="252.6046" + cy="509.92383" + rx="1.6000472" + ry="11.900351" + id="ellipse41-78" /><ellipse + transform="rotate(-0.44003305)" + class="steel_chastity" + cx="252.20842" + cy="509.42105" + rx="1.5000442" + ry="11.800348" + id="ellipse43-5" /><path + id="path49-5" + d="m 269.90039,507.65445 c -0.6,6.6 -3.9,11.6 -4.6,11.3 -0.7,-0.1 1.2,-5.2 1.7,-11.7 0.6,-6.5 -0.5,-11.6 0.5,-11.5 0.7,0 3,5.3 2.4,11.9 z" + inkscape:connector-curvature="0" /><path + id="path51-97" + d="m 269.50039,507.15445 c -0.5,6.6 -3.7,11.5 -4.3,11.3 -0.7,-0.1 1.2,-5.1 1.6,-11.6 0.5,-6.5 -0.6,-11.5 0.2,-11.3 0.7,-0.1 3,5.1 2.5,11.6 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-88" + d="m 246.50039,507.85445 c 0.5,6.2 2.3,11 1.6,11.7 -0.6,0.7 -4.1,-3.8 -4.8,-11.5 -0.6,-7.6 2.2,-13.6 2.9,-13 0.8,0.6 -0.3,6.6 0.3,12.8 z" + inkscape:connector-curvature="0" /><path + id="path59-3" + d="m 246.80039,507.85445 c 0.5,6.1 2.2,10.6 1.6,11.3 -0.6,0.7 -3.9,-3.8 -4.5,-11 -0.6,-7.3 2.1,-13.2 2.7,-12.5 0.7,0.4 -0.4,6.1 0.2,12.2 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-12.809092)" + cx="178.68761" + cy="503.60449" + rx="1.099984" + ry="10.499847" + id="ellipse63-89" /><ellipse + transform="rotate(-12.809092)" + class="steel_chastity" + cx="178.55089" + cy="503.26062" + rx="0.99998546" + ry="10.399848" + id="ellipse65-6" /><ellipse + transform="rotate(-0.51731)" + cx="251.73035" + cy="509.36749" + rx="11.700477" + ry="1.6000652" + id="ellipse69-3" /><ellipse + transform="rotate(-0.51731)" + class="steel_chastity" + cx="251.22815" + cy="509.56305" + rx="11.600473" + ry="1.5000612" + id="ellipse71-38" /><ellipse + transform="rotate(-41.042549)" + cx="-102.11347" + cy="523.11237" + rx="1.5999529" + ry="13.499603" + id="ellipse75-04" /><ellipse + transform="rotate(-41.042549)" + class="steel_chastity" + cx="-102.40156" + cy="522.6637" + rx="1.4999559" + ry="13.399606" + id="ellipse77-8" /><ellipse + transform="rotate(-68.216677)" + cx="-346.17831" + cy="416.71124" + rx="1.6000105" + ry="13.60009" + id="ellipse81-8" /><ellipse + transform="rotate(-68.216677)" + class="steel_chastity" + cx="-346.53287" + cy="416.18054" + rx="1.5000099" + ry="13.500089" + id="ellipse83-9" /><path + id="path85-7" + d="m 290.60039,450.05445 c 0.1,0.2 -7.2,1.9 -15.8,7.7 -3,2.1 -6.5,4.3 -9.7,8.4 -4.3,5.4 -5.8,10.5 -6.3,11.8 -1.1,3.5 -1.5,7.2 -1.7,9.7 -0.2,2.8 -0.5,7.1 -0.6,7.1 0,0 0,0 0,-0.1 v 0 l 0.4,0.1 c 0,0.1 -0.5,0.2 -0.7,0.1 -0.5,-0.2 -0.5,-1 -0.6,-1.2 -0.4,-3.7 -0.2,-5 -0.2,-5 -0.4,-2.1 0,-3.9 0.7,-7.7 0.4,-1.8 1,-5.1 2.7,-9 1,-2.3 2.6,-5.4 5.2,-8.7 2.4,-2.2 6.3,-5.2 11.3,-7.9 8,-4 15.2,-5.5 15.3,-5.3 z" + inkscape:connector-curvature="0" /><path + id="path87-7" + d="m 290.70039,450.05445 c 0.1,0.2 -4.9,1.3 -11.5,4.6 -0.9,0.4 -1.7,0.9 -2.8,1.5 -2.9,1.6 -9.5,5.4 -14,12.8 -0.2,0.2 -0.9,1.3 -1.6,2.8 -6.2,12.5 -3.7,25.1 -4.8,25.2 -0.4,0 -0.7,-1.1 -0.9,-1.8 -0.5,-1.9 -2.1,-8 1.8,-19.5 0.7,-2.1 1.8,-4.9 3.5,-8 1.9,-2.8 3.8,-5 5.2,-6.3 0.1,-0.1 0.1,-0.1 0.2,-0.2 7.3,-7.2 19.5,-10.1 19.5,-10.1 3,-0.8 5.4,-1.2 5.4,-1 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-87.809822)" + cx="-485.53848" + cy="275.55014" + rx="1.6000489" + ry="12.300376" + id="ellipse91-4" /><ellipse + transform="rotate(-87.809822)" + class="steel_chastity" + cx="-485.8714" + cy="275.1265" + rx="1.5000458" + ry="12.200373" + id="ellipse93-3" /><ellipse + transform="rotate(-1.8914744)" + cx="276.81354" + cy="459.26169" + rx="1.1000494" + ry="9.7004356" + id="ellipse97-3" /><ellipse + transform="rotate(-1.8914744)" + class="steel_chastity" + cx="276.6257" + cy="458.95389" + rx="1.0000449" + ry="9.6004314" + id="ellipse99-0" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_3" + inkscape:label="Chastity_Cage_3" + style="display:inline"><ellipse + id="ellipse9-7" + ry="1.300053" + rx="7.2002935" + cy="507.01486" + cx="260.22626" + transform="rotate(-0.51733349)" /><ellipse + id="ellipse11-27" + ry="1.2000489" + rx="7.1002893" + cy="507.31244" + cx="259.92389" + class="steel_chastity" + transform="rotate(-0.51733349)" /><ellipse + transform="rotate(-17.980187)" + cx="129.64604" + cy="517.00818" + rx="1.1000425" + ry="9.3003588" + id="ellipse17-6" /><ellipse + transform="rotate(-17.980187)" + class="steel_chastity" + cx="129.44194" + cy="516.61993" + rx="1.0000386" + ry="9.3003588" + id="ellipse19-1" /><ellipse + transform="rotate(-26.992949)" + cx="41.019997" + cy="530.41113" + rx="1.3000548" + ry="10.700452" + id="ellipse23-1" /><ellipse + transform="rotate(-26.992949)" + class="steel_chastity" + cx="40.770897" + cy="530.04755" + rx="1.2000507" + ry="10.600448" + id="ellipse25-5" /><ellipse + transform="rotate(-54.237185)" + cx="-219.3932" + cy="488.16318" + rx="1.2999306" + ry="11.199403" + id="ellipse29-4" /><ellipse + transform="rotate(-54.237185)" + class="steel_chastity" + cx="-219.66667" + cy="487.7753" + rx="1.199936" + ry="11.099408" + id="ellipse31-90" /><ellipse + transform="rotate(-80.822144)" + cx="-429.20181" + cy="336.93039" + rx="1.3000026" + ry="10.700022" + id="ellipse35-1" /><ellipse + transform="rotate(-80.822144)" + class="steel_chastity" + cx="-429.53076" + cy="336.53275" + rx="1.2000026" + ry="10.600022" + id="ellipse37-7" /><ellipse + transform="rotate(-0.44004565)" + cx="260.47058" + cy="498.15396" + rx="1.3000383" + ry="9.8002892" + id="ellipse41-1" /><ellipse + transform="rotate(-0.44004565)" + class="steel_chastity" + cx="260.1734" + cy="497.75186" + rx="1.2000355" + ry="9.7002859" + id="ellipse43-1" /><path + id="path49-7" + d="m 275.275,495.825 c -0.5,5.4 -3.2,9.5 -3.8,9.3 -0.6,-0.1 1,-4.3 1.4,-9.6 0.5,-5.3 -0.4,-9.5 0.4,-9.4 0.6,0 2.5,4.3 2,9.7 z" + inkscape:connector-curvature="0" /><path + id="path51-7" + d="m 274.975,495.425 c -0.4,5.4 -3,9.4 -3.5,9.3 -0.6,-0.1 1,-4.2 1.3,-9.5 0.4,-5.3 -0.5,-9.4 0.2,-9.3 0.5,-0.1 2.4,4.2 2,9.5 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-6" + d="m 256.075,496.025 c 0.4,5.1 1.9,9 1.3,9.6 -0.5,0.6 -3.4,-3.1 -3.9,-9.4 -0.5,-6.2 1.8,-11.2 2.4,-10.7 0.6,0.5 -0.3,5.4 0.2,10.5 z" + inkscape:connector-curvature="0" /><path + id="path59-5" + d="m 256.375,496.025 c 0.4,5 1.8,8.7 1.3,9.3 -0.5,0.6 -3.2,-3.1 -3.7,-9 -0.5,-6 1.7,-10.8 2.2,-10.3 0.6,0.3 -0.3,5 0.2,10 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-12.809092)" + cx="181.56415" + cy="502.50012" + rx="0.89998686" + ry="8.5998755" + id="ellipse63-3" /><ellipse + transform="rotate(-12.809092)" + class="steel_chastity" + cx="181.42993" + cy="502.25079" + rx="0.79998839" + ry="8.499876" + id="ellipse65-9" /><ellipse + transform="rotate(-0.51733119)" + cx="259.6106" + cy="497.70834" + rx="9.6003914" + ry="1.300053" + id="ellipse69-8" /><ellipse + transform="rotate(-0.51733119)" + class="steel_chastity" + cx="259.20819" + cy="497.90512" + rx="9.5003872" + ry="1.2000489" + id="ellipse71-1" /><path + id="path73-2" + d="M 281.575,472.525" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-41.042549)" + cx="-95.2099" + cy="524.43323" + rx="1.2999617" + ry="11.099674" + id="ellipse77-3" /><ellipse + transform="rotate(-41.042549)" + class="steel_chastity" + cx="-95.505165" + cy="524.05786" + rx="1.1999648" + ry="10.999677" + id="ellipse79-9" /><ellipse + transform="rotate(-68.216677)" + cx="-337.76065" + cy="421.32883" + rx="1.3000085" + ry="11.200073" + id="ellipse83-8" /><ellipse + transform="rotate(-68.216677)" + class="steel_chastity" + cx="-338.04218" + cy="420.92136" + rx="1.2000079" + ry="11.100074" + id="ellipse85-8" /><path + id="path87-5" + d="m 292.275,448.625 c 0.1,0.2 -5.9,1.6 -13,6.3 -2.5,1.7 -5.3,3.5 -8,6.9 -3.5,4.4 -4.8,8.6 -5.2,9.7 -0.9,2.9 -1.2,5.9 -1.4,8 -0.2,2.3 -0.4,5.8 -0.5,5.8 0,0 0,0 0,-0.1 v 0 c 0,0 0.3,0.1 0.3,0.1 0,0.1 -0.4,0.2 -0.6,0.1 -0.4,-0.2 -0.4,-0.8 -0.5,-1 -0.3,-3 -0.2,-4.1 -0.2,-4.1 -0.3,-1.7 0,-3.2 0.6,-6.3 0.3,-1.5 0.8,-4.2 2.2,-7.4 0.8,-1.9 2.1,-4.4 4.3,-7.1 2,-1.8 5.2,-4.3 9.3,-6.5 6.7,-3.4 12.6,-4.6 12.7,-4.4 z" + inkscape:connector-curvature="0" /><path + id="path89-0" + d="m 292.375,448.625 c 0.1,0.2 -4,1.1 -9.4,3.8 -0.7,0.3 -1.4,0.7 -2.3,1.2 -2.4,1.3 -7.8,4.4 -11.5,10.5 -0.2,0.2 -0.7,1.1 -1.3,2.3 -5.1,10.3 -3,20.6 -3.9,20.7 -0.3,0 -0.6,-0.9 -0.7,-1.5 -0.4,-1.6 -1.7,-6.6 1.5,-16 0.6,-1.7 1.5,-4 2.9,-6.6 1.6,-2.3 3.1,-4.1 4.3,-5.2 0.1,-0.1 0.1,-0.1 0.2,-0.2 6,-5.9 16,-8.3 16,-8.3 2.2,-0.6 4.2,-0.9 4.2,-0.7 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path91-9" + d="M 262.575,452.925" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path93-6" + d="M 253.375,455.025" + inkscape:connector-curvature="0" /><path + id="path95-3" + d="M 261.475,453.025" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path97-8" + d="M 255.075,449.625" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-87.809755)" + cx="-475.63037" + cy="282.90826" + rx="1.3000398" + ry="10.100309" + id="ellipse101-6" /><ellipse + transform="rotate(-87.809755)" + class="steel_chastity" + cx="-475.91144" + cy="282.58267" + rx="1.2000368" + ry="10.000306" + id="ellipse103-1" /><ellipse + transform="rotate(-1.8915592)" + cx="278.33359" + cy="457.88177" + rx="0.90004039" + ry="8.0003595" + id="ellipse107-5" /><ellipse + transform="rotate(-1.8915592)" + class="steel_chastity" + cx="278.14319" + cy="457.57538" + rx="0.80003595" + ry="7.9003549" + id="ellipse109-9" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_2" + inkscape:label="Chastity_Cage_2" + style="display:inline"><ellipse + id="ellipse9-3" + ry="0.80003262" + rx="4.6001873" + cy="490.9444" + cx="267.79684" + transform="rotate(-0.51733349)" /><ellipse + id="ellipse11-2" + ry="0.80003262" + rx="4.6001873" + cy="491.14282" + cx="267.59525" + class="steel_chastity" + transform="rotate(-0.51733349)" /><ellipse + transform="rotate(-17.980187)" + cx="129.94711" + cy="519.67291" + rx="0.70002699" + ry="6.100235" + id="ellipse17-1" /><ellipse + transform="rotate(-17.980187)" + class="steel_chastity" + cx="129.70938" + cy="519.41577" + rx="0.70002699" + ry="6.0002313" + id="ellipse19-5" /><ellipse + transform="rotate(-26.992949)" + cx="42.951714" + cy="533.26959" + rx="0.80003381" + ry="6.9002914" + id="ellipse23-4" /><ellipse + transform="rotate(-26.992949)" + class="steel_chastity" + cx="42.74955" + cy="533.06342" + rx="0.80003381" + ry="6.8002872" + id="ellipse25-7" /><ellipse + transform="rotate(-54.237185)" + cx="-214.39348" + cy="492.40952" + rx="0.79995733" + ry="7.199616" + id="ellipse29-56" /><ellipse + transform="rotate(-54.237185)" + class="steel_chastity" + cx="-214.64661" + cy="492.15811" + rx="0.79995733" + ry="7.199616" + id="ellipse31-93" /><ellipse + transform="rotate(-80.822144)" + cx="-421.52307" + cy="343.36212" + rx="0.80000162" + ry="7.0000143" + id="ellipse35-4" /><ellipse + transform="rotate(-80.822144)" + class="steel_chastity" + cx="-421.71213" + cy="343.17468" + rx="0.80000162" + ry="6.9000144" + id="ellipse37-5" /><ellipse + transform="rotate(-0.44004565)" + cx="268.19629" + cy="485.07492" + rx="0.80002362" + ry="6.4001889" + id="ellipse41-5" /><ellipse + transform="rotate(-0.44004565)" + class="steel_chastity" + cx="267.99811" + cy="484.87354" + rx="0.80002362" + ry="6.3001862" + id="ellipse43-4" /><path + id="path49-4" + d="m 279,482.7875 c -0.3,3.5 -2.1,6.1 -2.5,6.1 -0.4,-0.1 0.6,-2.8 0.9,-6.2 0.3,-3.5 -0.2,-6.2 0.2,-6.1 0.5,0 1.7,2.7 1.4,6.2 z" + inkscape:connector-curvature="0" /><path + id="path51-3" + d="m 278.8,482.5875 c -0.3,3.5 -1.9,6.1 -2.3,6 -0.4,-0.1 0.6,-2.7 0.8,-6.2 0.3,-3.4 -0.3,-6.1 0.1,-6.1 0.4,0.1 1.7,2.8 1.4,6.3 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-8" + d="m 266.5,482.9875 c 0.3,3.3 1.2,5.8 0.8,6.2 -0.4,0.4 -2.2,-2 -2.5,-6.1 -0.3,-4 1.1,-7.2 1.6,-6.9 0.4,0.3 -0.2,3.4 0.1,6.8 z" + inkscape:connector-curvature="0" /><path + id="path59-6" + d="m 266.8,482.8875 c 0.3,3.2 1.2,5.7 0.8,6 -0.3,0.4 -2.1,-2 -2.4,-5.9 -0.3,-3.9 1.1,-7 1.5,-6.7 0.3,0.4 -0.3,3.4 0.1,6.6 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-12.809092)" + cx="180.00468" + cy="505.48141" + rx="0.59999132" + ry="5.4999199" + id="ellipse63-84" /><ellipse + transform="rotate(-12.809092)" + class="steel_chastity" + cx="179.84734" + cy="505.24936" + rx="0.49999273" + ry="5.4999199" + id="ellipse65-3" /><ellipse + transform="rotate(-0.51733119)" + cx="267.35156" + cy="484.94016" + rx="6.2002525" + ry="0.80003262" + id="ellipse69-4" /><ellipse + transform="rotate(-0.51733119)" + class="steel_chastity" + cx="267.14996" + cy="485.13806" + rx="6.2002525" + ry="0.80003262" + id="ellipse71-9" /><ellipse + transform="rotate(-41.042549)" + cx="-91.814835" + cy="527.70331" + rx="0.79997647" + ry="7.1997881" + id="ellipse75-0" /><ellipse + transform="rotate(-41.042549)" + class="steel_chastity" + cx="-91.98201" + cy="527.42474" + rx="0.79997647" + ry="7.099791" + id="ellipse77-68" /><ellipse + transform="rotate(-68.216677)" + cx="-331.52155" + cy="426.40738" + rx="0.80000526" + ry="7.200047" + id="ellipse81-2" /><ellipse + transform="rotate(-68.216677)" + class="steel_chastity" + cx="-331.67984" + cy="426.07828" + rx="0.80000526" + ry="7.200047" + id="ellipse83-6" /><path + id="path85-6" + d="m 290,452.2875 c 0.1,0.2 -3.8,1.1 -8.4,4.1 -1.6,1.1 -3.4,2.3 -5.2,4.5 -2.3,2.8 -3.1,5.6 -3.4,6.3 -0.6,1.9 -0.8,3.8 -0.9,5.2 -0.2,1.5 -0.3,3.7 -0.3,3.7 0,0 0,0 0,0 v 0 c 0,0 0.2,0 0.2,0.1 0,0 -0.2,0.1 -0.4,0 -0.2,-0.1 -0.3,-0.5 -0.3,-0.7 -0.2,-2 -0.1,-2.6 -0.1,-2.6 -0.2,-1.1 0,-2.1 0.4,-4.1 0.2,-1 0.5,-2.7 1.4,-4.8 0.5,-1.2 1.4,-2.9 2.8,-4.6 1.3,-1.2 3.3,-2.8 6.1,-4.2 4.2,-2.4 8.1,-3.1 8.1,-2.9 z" + inkscape:connector-curvature="0" /><path + id="path87-4" + d="m 290.1,452.1875 c 0,0.1 -2.6,0.7 -6.1,2.5 -0.4,0.2 -0.9,0.4 -1.5,0.8 -1.5,0.9 -5,2.9 -7.5,6.8 -0.1,0.2 -0.4,0.7 -0.8,1.5 -3.3,6.7 -2,13.4 -2.6,13.4 -0.2,0 -0.4,-0.6 -0.5,-1 -0.3,-1 -1.1,-4.3 0.9,-10.4 0.4,-1.1 1,-2.6 1.9,-4.3 1,-1.5 2,-2.6 2.8,-3.4 0,0 0.1,-0.1 0.1,-0.1 3.9,-3.8 10.4,-5.4 10.4,-5.4 1.6,-0.3 2.9,-0.5 2.9,-0.4 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-87.809755)" + cx="-465.82806" + cy="290.11841" + rx="0.80002451" + ry="6.5001988" + id="ellipse91-5" /><ellipse + transform="rotate(-87.809755)" + class="steel_chastity" + cx="-465.95081" + cy="289.81277" + rx="0.80002451" + ry="6.5001988" + id="ellipse93-0" /><ellipse + transform="rotate(-1.8915592)" + cx="275.63971" + cy="461.45648" + rx="0.60002697" + ry="5.2002335" + id="ellipse97-8" /><ellipse + transform="rotate(-1.8915592)" + class="steel_chastity" + cx="275.54593" + cy="461.25238" + rx="0.50002247" + ry="5.1002293" + id="ellipse99-7" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_1" + inkscape:label="Chastity_Cage_1" + style="display:inline"><ellipse + id="ellipse9-6" + ry="0.60002446" + rx="3.3001344" + cy="479.44797" + cx="273.82657" + transform="rotate(-0.51733349)" /><ellipse + id="ellipse11-1" + ry="0.50002038" + rx="3.2001305" + cy="479.54684" + cx="273.72546" + class="steel_chastity" + transform="rotate(-0.51733349)" /><ellipse + transform="rotate(-17.980187)" + cx="132.69135" + cy="519.04468" + rx="0.50001931" + ry="4.3001661" + id="ellipse17-9" /><ellipse + transform="rotate(-17.980187)" + class="steel_chastity" + cx="132.53522" + cy="518.90448" + rx="0.50001931" + ry="4.2001619" + id="ellipse19-2" /><ellipse + transform="rotate(-26.992949)" + cx="46.941521" + cy="533.22223" + rx="0.60002536" + ry="4.900207" + id="ellipse23-2" /><ellipse + transform="rotate(-26.992949)" + class="steel_chastity" + cx="46.810341" + cy="533.04767" + rx="0.5000211" + ry="4.8002028" + id="ellipse25-3" /><ellipse + transform="rotate(-54.237185)" + cx="-208.40569" + cy="494.58987" + rx="0.59996802" + ry="5.0997276" + id="ellipse29-5" /><ellipse + transform="rotate(-54.237185)" + class="steel_chastity" + cx="-208.50229" + cy="494.41287" + rx="0.49997333" + ry="5.0997276" + id="ellipse31-9" /><ellipse + transform="rotate(-80.822144)" + cx="-414.28348" + cy="348.33478" + rx="0.60000128" + ry="4.9000101" + id="ellipse35-2" /><ellipse + transform="rotate(-80.822144)" + class="steel_chastity" + cx="-414.40549" + cy="348.16217" + rx="0.50000101" + ry="4.9000101" + id="ellipse37-8" /><ellipse + transform="rotate(-0.44004565)" + cx="274.2977" + cy="475.17117" + rx="0.60001773" + ry="4.5001326" + id="ellipse41-7" /><ellipse + transform="rotate(-0.44004565)" + class="steel_chastity" + cx="274.09903" + cy="474.97028" + rx="0.50001472" + ry="4.4001298" + id="ellipse43-3" /><path + id="path49-2" + d="m 282.925,472.9375 c -0.2,2.5 -1.5,4.3 -1.7,4.3 -0.3,0 0.4,-1.9 0.6,-4.4 0.2,-2.4 -0.2,-4.3 0.2,-4.3 0.2,0 1.1,1.9 0.9,4.4 z" + inkscape:connector-curvature="0" /><path + id="path51-9" + d="m 282.725,472.7375 c -0.2,2.5 -1.4,4.3 -1.6,4.2 -0.3,0 0.4,-1.9 0.6,-4.3 0.2,-2.4 -0.2,-4.3 0.1,-4.3 0.3,0 1.1,2 0.9,4.4 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57-9" + d="m 274.125,473.0375 c 0.2,2.3 0.9,4.1 0.6,4.4 -0.2,0.3 -1.6,-1.4 -1.8,-4.3 -0.2,-2.8 0.8,-5.1 1.1,-4.9 0.3,0.2 -0.1,2.4 0.1,4.8 z" + inkscape:connector-curvature="0" /><path + id="path59-4" + d="m 274.325,473.0375 c 0.2,2.3 0.8,4 0.6,4.2 -0.2,0.3 -1.5,-1.4 -1.7,-4.1 -0.2,-2.7 0.8,-4.9 1,-4.7 0.3,0.1 -0.2,2.3 0.1,4.6 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-12.809092)" + cx="181.5271" + cy="504.76035" + rx="0.39999419" + ry="3.8999434" + id="ellipse63-8" /><ellipse + transform="rotate(-12.809092)" + class="steel_chastity" + cx="181.45718" + cy="504.53781" + rx="0.39999419" + ry="3.8999434" + id="ellipse65-4" /><ellipse + transform="rotate(-0.51733119)" + cx="273.56509" + cy="475.14505" + rx="4.4001794" + ry="0.60002446" + id="ellipse69-0" /><ellipse + transform="rotate(-0.51733119)" + class="steel_chastity" + cx="273.36389" + cy="475.34351" + rx="4.3001757" + ry="0.50002038" + id="ellipse71-3" /><ellipse + transform="rotate(-41.042549)" + cx="-86.744507" + cy="528.60522" + rx="0.59998238" + ry="4.9998531" + id="ellipse75" /><ellipse + transform="rotate(-41.042549)" + class="steel_chastity" + cx="-86.951141" + cy="528.47955" + rx="0.49998531" + ry="4.9998531" + id="ellipse77-6" /><ellipse + transform="rotate(-68.216677)" + cx="-324.80972" + cy="429.86664" + rx="0.60000396" + ry="5.1000333" + id="ellipse81" /><ellipse + transform="rotate(-68.216677)" + class="steel_chastity" + cx="-324.91003" + cy="429.63513" + rx="0.50000328" + ry="5.1000333" + id="ellipse83-1" /><path + id="path85" + d="m 290.725,451.4375 c 0,0.1 -2.7,0.7 -5.9,2.9 -1.2,0.8 -2.4,1.6 -3.6,3.1 -1.6,2 -2.2,3.9 -2.4,4.4 -0.4,1.3 -0.5,2.7 -0.6,3.6 -0.1,1.1 -0.2,2.6 -0.2,2.6 0,0 0,0 0,0 v 0 c 0,0 0.1,0 0.1,0.1 0,0 -0.2,0.1 -0.3,0 -0.2,-0.1 -0.2,-0.3 -0.2,-0.5 -0.2,-1.4 -0.1,-1.9 -0.1,-1.9 -0.1,-0.8 0,-1.5 0.3,-2.9 0.1,-0.7 0.4,-1.9 1,-3.4 0.4,-0.9 1,-2 1.9,-3.2 0.9,-0.8 2.4,-2 4.3,-3 2.9,-1.4 5.6,-1.9 5.7,-1.8 z" + inkscape:connector-curvature="0" /><path + id="path87-0" + d="m 290.725,451.3375 c 0,0.1 -1.8,0.5 -4.3,1.7 -0.3,0.2 -0.6,0.3 -1.1,0.5 -1.1,0.6 -3.5,2 -5.3,4.8 -0.1,0.1 -0.3,0.5 -0.6,1.1 -2.3,4.7 -1.4,9.4 -1.8,9.4 -0.1,0 -0.3,-0.4 -0.3,-0.7 -0.2,-0.7 -0.8,-3 0.7,-7.3 0.3,-0.8 0.7,-1.8 1.3,-3 0.7,-1.1 1.4,-1.9 1.9,-2.4 0,0 0.1,-0.1 0.1,-0.1 2.7,-2.7 7.3,-3.8 7.3,-3.8 1.2,-0.1 2.1,-0.2 2.1,-0.2 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-87.809755)" + cx="-457.5112" + cy="295.76151" + rx="0.60001838" + ry="4.6001406" + id="ellipse91" /><ellipse + transform="rotate(-87.809755)" + class="steel_chastity" + cx="-457.65686" + cy="295.57602" + rx="0.50001532" + ry="4.6001406" + id="ellipse93" /><ellipse + transform="rotate(-1.8915592)" + cx="276.09088" + cy="460.72162" + rx="0.40001798" + ry="3.6001616" + id="ellipse97" /><ellipse + transform="rotate(-1.8915592)" + class="steel_chastity" + cx="275.99527" + cy="460.51865" + rx="0.40001798" + ry="3.6001616" + id="ellipse99" /></g><g + inkscape:groupmode="layer" + id="Chastity_Cage_0" + inkscape:label="Chastity_Cage_0" + style="display:inline"><ellipse + id="ellipse9" + ry="0.30001223" + rx="1.8000734" + cy="467.29907" + cx="279.54913" + transform="rotate(-0.51733349)" /><ellipse + id="ellipse11" + ry="0.30001223" + rx="1.8000734" + cy="467.39847" + cx="279.54852" + class="steel_chastity" + transform="rotate(-0.51733349)" /><ellipse + transform="rotate(-17.980187)" + cx="134.75592" + cy="518.57367" + rx="0.30001158" + ry="2.3000886" + id="ellipse17" /><ellipse + transform="rotate(-17.980187)" + class="steel_chastity" + cx="134.67969" + cy="518.55194" + rx="0.30001158" + ry="2.3000886" + id="ellipse19" /><ellipse + transform="rotate(-26.992949)" + cx="50.34901" + cy="533.17877" + rx="0.30001268" + ry="2.6001096" + id="ellipse23" /><ellipse + transform="rotate(-26.992949)" + class="steel_chastity" + cx="50.286343" + cy="533.13831" + rx="0.30001268" + ry="2.6001096" + id="ellipse25" /><ellipse + transform="rotate(-54.237185)" + cx="-202.58504" + cy="496.51791" + rx="0.29998401" + ry="2.7998507" + id="ellipse29" /><ellipse + transform="rotate(-54.237185)" + class="steel_chastity" + cx="-202.6292" + cy="496.42209" + rx="0.29998401" + ry="2.699856" + id="ellipse31" /><ellipse + transform="rotate(-80.822144)" + cx="-406.91" + cy="353.02335" + rx="0.30000064" + ry="2.7000055" + id="ellipse35" /><ellipse + transform="rotate(-80.822144)" + class="steel_chastity" + cx="-406.96771" + cy="352.9758" + rx="0.30000064" + ry="2.6000051" + id="ellipse37" /><ellipse + transform="rotate(-0.44004565)" + cx="280.09009" + cy="464.81555" + rx="0.30000886" + ry="2.4000709" + id="ellipse41" /><ellipse + transform="rotate(-0.44004565)" + class="steel_chastity" + cx="279.99078" + cy="464.71503" + rx="0.30000886" + ry="2.4000709" + id="ellipse43" /><path + id="path49" + d="m 286.3375,462.5375 c -0.1,1.3 -0.8,2.3 -0.9,2.3 -0.2,0 0.2,-1.1 0.3,-2.4 0.1,-1.3 -0.1,-2.3 0.1,-2.3 0.2,0 0.7,1.1 0.5,2.4 z" + inkscape:connector-curvature="0" /><path + id="path932" + d="m 286.3375,462.4375 c -0.1,1.3 -0.7,2.3 -0.9,2.3 -0.1,0 0.2,-1 0.3,-2.4 0.1,-1.3 -0.1,-2.3 0,-2.3 0.2,0.1 0.7,1.1 0.6,2.4 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path57" + d="m 281.6375,462.6375 c 0.1,1.3 0.5,2.2 0.3,2.4 -0.1,0.1 -0.8,-0.8 -1,-2.3 -0.1,-1.5 0.4,-2.8 0.6,-2.6 0.2,0 0,1.2 0.1,2.5 z" + inkscape:connector-curvature="0" /><path + id="path59" + d="m 281.7375,462.6375 c 0.1,1.2 0.5,2.2 0.3,2.3 -0.1,0.1 -0.8,-0.8 -0.9,-2.2 -0.1,-1.5 0.4,-2.7 0.6,-2.5 0.1,0 -0.2,1.2 0,2.4 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-12.809092)" + cx="182.3781" + cy="504.23175" + rx="0.1999971" + ry="2.0999694" + id="ellipse63" /><ellipse + transform="rotate(-12.809092)" + class="steel_chastity" + cx="182.29442" + cy="504.11957" + rx="0.1999971" + ry="2.0999694" + id="ellipse65" /><ellipse + transform="rotate(-0.51733119)" + cx="279.46997" + cy="464.99747" + rx="2.4000978" + ry="0.30001223" + id="ellipse69" /><ellipse + transform="rotate(-0.51733119)" + class="steel_chastity" + cx="279.36935" + cy="465.09668" + rx="2.3000937" + ry="0.30001223" + id="ellipse71" /><path + id="path73" + d="M 287.9375,456.8375" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-41.042549)" + cx="-82.119583" + cy="529.44684" + rx="0.29999119" + ry="2.6999207" + id="ellipse77" /><ellipse + transform="rotate(-41.042549)" + class="steel_chastity" + cx="-82.168976" + cy="529.37885" + rx="0.29999119" + ry="2.6999207" + id="ellipse79" /><ellipse + transform="rotate(-68.216677)" + cx="-318.22693" + cy="433.1188" + rx="0.30000198" + ry="2.8000183" + id="ellipse83" /><ellipse + transform="rotate(-68.216677)" + class="steel_chastity" + cx="-318.27298" + cy="432.99356" + rx="0.30000198" + ry="2.7000179" + id="ellipse85" /><path + id="path87" + d="m 290.5375,450.9375 c 0,0.1 -1.5,0.4 -3.2,1.6 -0.6,0.4 -1.3,0.9 -2,1.7 -0.9,1.1 -1.2,2.1 -1.3,2.4 -0.2,0.7 -0.3,1.4 -0.3,2 -0.1,0.6 -0.1,1.4 -0.1,1.4 0,0 0,0 0,0 v 0 c 0,0 0.1,0 0.1,0 0,0 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.2 -0.1,-0.3 -0.1,-0.8 0,-1 0,-1 -0.1,-0.4 0,-0.8 0.2,-1.5 0.1,-0.4 0.2,-1 0.5,-1.8 0.2,-0.5 0.5,-1.1 1.1,-1.8 0.5,-0.5 1.3,-1.1 2.3,-1.6 1.6,-0.9 3,-1.2 3,-1.1 z" + inkscape:connector-curvature="0" /><path + id="path89" + d="m 290.6375,450.9375 c 0,0.1 -1,0.3 -2.3,0.9 -0.2,0.1 -0.3,0.2 -0.6,0.3 -0.6,0.3 -1.9,1.1 -2.9,2.6 0,0.1 -0.2,0.3 -0.3,0.6 -1.3,2.5 -0.7,5.1 -1,5.1 -0.1,0 -0.1,-0.2 -0.2,-0.4 -0.1,-0.4 -0.4,-1.6 0.4,-4 0.1,-0.4 0.4,-1 0.7,-1.6 0.4,-0.6 0.8,-1 1.1,-1.3 0,0 0,0 0.1,-0.1 1.5,-1.4 4,-2.1 4,-2.1 0.5,0 0.9,-0.1 1,0 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path91" + d="M 283.2375,451.9375" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path93" + d="M 280.9375,452.5375" + inkscape:connector-curvature="0" /><path + id="path95" + d="M 282.9375,452.0375" + class="steel_chastity" + inkscape:connector-curvature="0" /><path + id="path97" + d="M 281.4375,451.1375" + inkscape:connector-curvature="0" /><ellipse + transform="rotate(-87.809755)" + cx="-448.97247" + cy="301.0705" + rx="0.30000919" + ry="2.5000765" + id="ellipse101" /><ellipse + transform="rotate(-87.809755)" + class="steel_chastity" + cx="-449.04303" + cy="301.01602" + rx="0.30000919" + ry="2.5000765" + id="ellipse103" /><ellipse + transform="rotate(-1.8915592)" + cx="275.81781" + cy="460.21146" + rx="0.20000899" + ry="2.0000899" + id="ellipse107" /><ellipse + transform="rotate(-1.8915592)" + class="steel_chastity" + cx="275.72015" + cy="460.20984" + rx="0.20000899" + ry="2.0000899" + id="ellipse109" /></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 + sodipodi:nodetypes="cccccccc" + id="path1056" + class="shadow" + 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 12.30515,-2.59845 22.51491,-12.16054 31.77186,-26.40779 2.55546,-15.31136 11.88781,-30.84621 8.29579,-40.31411 -1.93843,-3.02612 -7.62333,-5.27685 -12.16456,-8.48839 z" + 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 + inkscape:connector-curvature="0" + d="m 348.02261,248.51896 c 8.65355,-12.30579 11.43144,-30.88254 -0.97284,-43.4189 -14.67089,-12.96908 -28.30339,-7.92276 -38.99561,-8.00176 -24.21445,12.16832 -31.98806,25.58323 -28.88571,44.91992 6.30867,31.25913 54.29562,32.66603 68.85416,6.50074 z" + class="shadow" + id="path1050" + sodipodi:nodetypes="ccccc" /><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"><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" /><path + inkscape:connector-curvature="0" + 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" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + 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 + inkscape:connector-curvature="0" + 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" + inkscape:connector-curvature="0" /><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)"><circle + id="circle1208" + class="steel_piercing" + cx="326.55273" + cy="211.96944" + r="2.25" /><circle + r="2.25" + id="circle1210" + class="steel_piercing" + cx="321.75674" + cy="206.62288" /><circle + id="circle1208-7" + class="steel_piercing" + cx="323.89911" + cy="218.82379" + r="2.25" /><circle + id="circle1208-0" + class="steel_piercing" + cx="311.17117" + cy="221.07768" + r="2.25" /><circle + id="circle1208-06" + class="steel_piercing" + cx="303.65814" + cy="214.8905" + r="2.25" /><circle + id="circle1208-8" + class="steel_piercing" + cx="307.76822" + cy="206.93555" + r="2.25" /></g><g + id="g1417" + transform="matrix(1.0228023,0,0,1.0228023,-5.1326497,-5.0109358)"><ellipse + id="ellipse1212" + transform="rotate(-166.16108)" + class="steel_piercing" + cx="-268.83929" + cy="-169.38443" + rx="1.350039" + ry="1.8000519" /><ellipse + id="ellipse1212-6" + transform="rotate(-166.16108)" + class="steel_piercing" + cx="-270.20932" + cy="-161.59186" + rx="1.3500389" + ry="1.8000519" /><ellipse + id="ellipse1212-3" + transform="rotate(-166.16108)" + class="steel_piercing" + cx="-263.35574" + cy="-176.55655" + rx="1.3500389" + ry="1.8000519" /></g></g><g + inkscape:label="Boob_Areola_Piercing_Heavy" + style="display:inline" + id="Boob_Areola_Piercing_Heavy" + inkscape:groupmode="layer"><g + id="g1650" + transform="matrix(1.0049807,0,0,1.0049807,-1.6578337,-0.99661844)"><path + id="XMLID_525_-4" + class="steel_piercing" + d="m 322.98091,222.29698 c -0.0685,0.18791 2.92054,1.91584 5.23684,0.52488 1.80351,-1.1521 2.89046,-3.84255 1.65317,-5.99641 -1.27152,-2.05991 -3.88556,-2.4804 -5.77426,-1.67865 -2.30753,1.07485 -2.83075,3.97075 -2.7368,4.00499 0.24763,0.19668 1.27486,-2.62197 3.30847,-2.94518 1.20471,-0.0931 2.61403,0.42049 3.24541,1.6085 0.75081,1.4444 0.16871,3.04163 -0.80592,3.96365 -1.42769,1.28906 -4.15239,0.29607 -4.12691,0.51822 z" + inkscape:connector-curvature="0" /><path + id="XMLID_525_-4-3" + class="steel_piercing" + d="m 328.13387,215.2046 c 0.0611,0.19045 3.48187,-0.27678 4.45916,-2.79569 0.71859,-2.01584 -0.072,-4.80779 -2.36992,-5.75095 -2.26737,-0.84795 -4.59038,0.42234 -5.59106,2.21361 -1.16415,2.26379 0.19777,4.87246 0.29299,4.84192 0.31621,0.004 -0.60016,-2.85303 0.80837,-4.35506 0.89471,-0.81209 2.323,-1.27029 3.55012,-0.71876 1.47865,0.68088 1.99792,2.29963 1.79314,3.62556 -0.33771,1.89365 -3.09911,2.77948 -2.9428,2.93937 z" + inkscape:connector-curvature="0" /><path + id="XMLID_525_-4-3-0" + class="steel_piercing" + d="m 323.33923,208.9427 c 0.096,0.17545 3.36662,-0.93057 3.84966,-3.58889 0.3242,-2.11539 -0.98036,-4.70732 -3.41522,-5.19867 -2.38685,-0.40364 -4.42756,1.28324 -5.07125,3.23148 -0.7148,2.44317 1.1161,4.74704 1.20382,4.69903 0.31125,-0.0559 -1.12913,-2.68794 -0.0302,-4.42934 0.72489,-0.96671 2.04069,-1.68687 3.35,-1.37748 1.58077,0.38881 2.39693,1.88008 2.44673,3.2208 0.0267,1.92334 -2.51724,3.31564 -2.33351,3.44307 z" + inkscape:connector-curvature="0" /><path + id="XMLID_525_-4-3-0-5" + class="steel_piercing" + d="m 309.36246,208.08395 c 0.19032,0.0615 1.80589,-2.98979 0.32972,-5.25274 -1.21839,-1.75941 -3.94741,-2.74553 -6.05375,-1.42899 -2.01118,1.34726 -2.33415,3.97514 -1.46271,5.83271 1.15995,2.26596 4.07331,2.68109 4.10403,2.58593 0.18767,-0.25452 -2.66757,-1.17644 -3.06618,-3.19664 -0.13786,-1.20042 0.32296,-2.62786 1.48666,-3.303 1.41547,-0.80402 3.03325,-0.28173 3.99089,0.65792 1.34128,1.37873 0.45032,4.1385 0.67136,4.10479 z" + inkscape:connector-curvature="0" /><path + id="XMLID_525_-4-3-0-5-5" + class="steel_piercing" + d="m 304.98758,215.27739 c 0.19977,-0.01 0.62842,-3.43587 -1.55424,-5.02835 -1.76308,-1.21307 -4.66444,-1.16745 -6.1671,0.81042 -1.40278,1.97285 -0.77296,4.5445 0.70052,5.97238 1.88805,1.70742 4.75931,1.06255 4.7543,0.96268 0.0852,-0.30453 -2.91139,-0.15412 -4.00043,-1.90172 -0.55456,-1.07354 -0.62982,-2.57163 0.21887,-3.61553 1.0384,-1.25368 2.73626,-1.33896 3.96487,-0.79993 1.743,0.81355 1.8885,3.70992 2.08323,3.60002 z" + inkscape:connector-curvature="0" /><path + id="XMLID_525_-4-3-0-5-5-8" + class="steel_piercing" + d="m 313.00196,221.4571 c 0.19355,-0.0505 -0.0844,-3.49184 -2.54562,-4.60649 -1.97317,-0.82862 -4.80444,-0.19314 -5.87285,2.04928 -0.97165,2.21717 0.16865,4.60668 1.90203,5.70459 2.19618,1.28717 4.87596,0.0711 4.85072,-0.0256 0.0214,-0.3155 -2.88178,0.44197 -4.30387,-1.04725 -0.76155,-0.93812 -1.1403,-2.38949 -0.52197,-3.58434 0.76135,-1.43887 2.40627,-1.8681 3.7189,-1.59056 1.87215,0.44157 2.6044,3.24762 2.77267,3.10037 z" + inkscape:connector-curvature="0" /></g><g + id="g1655" + transform="matrix(1.0106254,0,0,1.0106254,-2.44532,-2.2864495)"><path + id="XMLID_525_-4-3-0-3" + class="steel_piercing" + d="m 226.23976,224.03419 c 0.096,0.17545 3.36662,-0.93057 3.84966,-3.58889 0.3242,-2.11539 -0.98036,-4.70732 -3.41522,-5.19867 -2.38685,-0.40364 -4.42756,1.28324 -5.07125,3.23148 -0.7148,2.44317 1.1161,4.74704 1.20382,4.69903 0.31125,-0.0559 -1.12913,-2.68794 -0.0302,-4.42934 0.72489,-0.96671 2.04069,-1.68687 3.35,-1.37748 1.58077,0.38881 2.39693,1.88008 2.44673,3.2208 0.0267,1.92334 -2.51724,3.31564 -2.33351,3.44307 z" + inkscape:connector-curvature="0" /><path + id="XMLID_525_-4-3-0-3-2" + class="steel_piercing" + d="m 221.79512,232.06967 c 0.012,0.19964 3.44203,0.59373 5.01243,-1.60487 1.19522,-1.77523 1.12034,-4.67598 -0.87259,-6.15861 -1.9869,-1.38283 -4.55207,-0.7271 -5.96501,0.76071 -1.6883,1.90518 -1.0145,4.76979 -0.91468,4.76376 0.30537,0.0822 0.12474,-2.91279 1.86128,-4.0194 1.06788,-0.56535 2.56514,-0.65573 3.61755,0.18239 1.26409,1.02571 1.36649,2.72263 0.83988,3.9566 -0.79593,1.75113 -3.69069,1.92583 -3.57883,2.11943 z" + inkscape:connector-curvature="0" /><path + id="XMLID_525_-4-3-0-3-2-9" + class="steel_piercing" + d="m 213.61151,237.5937 c -0.072,0.1866 2.88498,1.969 5.22636,0.62068 1.8243,-1.11889 2.96033,-3.78898 1.76269,-5.96513 -1.23358,-2.08285 -3.8395,-2.55114 -5.74256,-1.78411 -2.32683,1.03243 -2.90298,3.91827 -2.80966,3.95422 0.24369,0.20154 1.32263,-2.59818 3.36185,-2.88408 1.20621,-0.071 2.60589,0.46828 3.21542,1.66764 0.72424,1.45791 0.11298,3.04422 -0.87836,3.94824 -1.45103,1.26272 -4.15711,0.21999 -4.13571,0.44256 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"><path + inkscape:connector-curvature="0" + d="m 316.57531,244.4989 c -0.0685,0.18791 2.92054,1.91584 5.23684,0.52488 1.80351,-1.1521 2.89046,-3.84255 1.65317,-5.99641 -1.27152,-2.05991 -3.88556,-2.4804 -5.77426,-1.67865 -2.30753,1.07485 -2.83075,3.97075 -2.7368,4.00499 0.24763,0.19668 1.27486,-2.62197 3.30847,-2.94518 1.20471,-0.0931 2.61403,0.42049 3.24541,1.6085 0.75081,1.4444 0.16871,3.04163 -0.80592,3.96365 -1.42769,1.28906 -4.15239,0.29607 -4.12691,0.51822 z" + class="steel_piercing" + id="path1657" /><path + inkscape:connector-curvature="0" + d="m 319.35905,235.62231 c 0.096,0.17545 3.36662,-0.93057 3.84966,-3.58889 0.3242,-2.11539 -0.98036,-4.70732 -3.41522,-5.19867 -2.38685,-0.40364 -4.42756,1.28324 -5.07125,3.23148 -0.7148,2.44317 1.1161,4.74704 1.20382,4.69903 0.31125,-0.0559 -1.12913,-2.68794 -0.0302,-4.42934 0.72489,-0.96671 2.04069,-1.68687 3.35,-1.37748 1.58077,0.38881 2.39693,1.88008 2.44673,3.2208 0.0267,1.92334 -2.51724,3.31564 -2.33351,3.44307 z" + class="steel_piercing" + id="path1661" /><path + inkscape:connector-curvature="0" + d="m 310.91722,234.39042 c 0.19032,0.0615 1.80589,-2.98979 0.32972,-5.25274 -1.21839,-1.75941 -3.94741,-2.74553 -6.05375,-1.42899 -2.01118,1.34726 -2.33415,3.97514 -1.46271,5.83271 1.15995,2.26596 4.07331,2.68109 4.10403,2.58593 0.18767,-0.25452 -2.66757,-1.17644 -3.06618,-3.19664 -0.13786,-1.20042 0.32296,-2.62786 1.48666,-3.303 1.41547,-0.80402 3.03325,-0.28173 3.99089,0.65792 1.34128,1.37873 0.45032,4.1385 0.67136,4.10479 z" + class="steel_piercing" + id="path1663" /><path + inkscape:connector-curvature="0" + d="m 311.4472,242.66397 c 0.19355,-0.0505 -0.0844,-3.49184 -2.54562,-4.60649 -1.97317,-0.82862 -4.80444,-0.19314 -5.87285,2.04928 -0.97165,2.21717 0.16865,4.60668 1.90203,5.70459 2.19618,1.28717 4.87596,0.0711 4.85072,-0.0256 0.0214,-0.3155 -2.88178,0.44197 -4.30387,-1.04725 -0.76155,-0.93812 -1.1403,-2.38949 -0.52197,-3.58434 0.76135,-1.43887 2.40627,-1.8681 3.7189,-1.59056 1.87215,0.44157 2.6044,3.24762 2.77267,3.10037 z" + class="steel_piercing" + id="path1667" /></g><g + transform="matrix(1.0106254,0,0,1.0106254,-2.44532,-2.2864495)" + id="g1677"><path + inkscape:connector-curvature="0" + d="m 247.14266,237.14488 c 0.096,0.17545 3.36662,-0.93057 3.84966,-3.58889 0.3242,-2.11539 -0.98036,-4.70732 -3.41522,-5.19867 -2.38685,-0.40364 -4.42756,1.28324 -5.07125,3.23148 -0.7148,2.44317 1.1161,4.74704 1.20382,4.69903 0.31125,-0.0559 -1.12913,-2.68794 -0.0302,-4.42934 0.72489,-0.96671 2.04069,-1.68687 3.35,-1.37748 1.58077,0.38881 2.39693,1.88008 2.44673,3.2208 0.0267,1.92334 -2.51724,3.31564 -2.33351,3.44307 z" + class="steel_piercing" + id="path1671" /><path + inkscape:connector-curvature="0" + d="m 252.84025,241.53163 c 0.012,0.19964 3.44203,0.59373 5.01243,-1.60487 1.19522,-1.77523 1.12034,-4.67598 -0.87259,-6.15861 -1.9869,-1.38283 -4.55207,-0.7271 -5.96501,0.76071 -1.6883,1.90518 -1.0145,4.76979 -0.91468,4.76376 0.30537,0.0822 0.12474,-2.91279 1.86128,-4.0194 1.06788,-0.56535 2.56514,-0.65573 3.61755,0.18239 1.26409,1.02571 1.36649,2.72263 0.83988,3.9566 -0.79593,1.75113 -3.69069,1.92583 -3.57883,2.11943 z" + class="steel_piercing" + id="path1673" /><path + inkscape:connector-curvature="0" + d="m 247.50142,247.79778 c -0.072,0.1866 2.88498,1.969 5.22636,0.62068 1.8243,-1.11889 2.96033,-3.78898 1.76269,-5.96513 -1.23358,-2.08285 -3.8395,-2.55114 -5.74256,-1.78411 -2.32683,1.03243 -2.90298,3.91827 -2.80966,3.95422 0.24369,0.20154 1.32263,-2.59818 3.36185,-2.88408 1.20621,-0.071 2.60589,0.46828 3.21542,1.66764 0.72424,1.45791 0.11298,3.04422 -0.87836,3.94824 -1.45103,1.26272 -4.15711,0.21999 -4.13571,0.44256 z" + class="steel_piercing" + id="path1675" /></g></g><g + inkscape:label="Boob_Areola_Piercing_NoBoob" + style="display:inline" + id="Boob_Areola_Piercing_NoBoob" + inkscape:groupmode="layer"><circle + id="circle1125" + class="steel_piercing" + cx="309.05273" + cy="242.34444" + r="2.25" /><ellipse + id="ellipse1129" + transform="rotate(-166.16108)" + class="steel_piercing" + cx="-301.22406" + cy="-172.02744" + rx="1.350039" + ry="1.8000519" /><circle + id="circle1131" + class="steel_piercing" + cx="317.02411" + cy="242.44879" + r="2.25" /><circle + id="circle1133" + class="steel_piercing" + cx="317.17117" + cy="233.57768" + r="2.25" /><circle + id="circle1135" + class="steel_piercing" + cx="308.90814" + cy="233.703" + r="2.25" /><ellipse + id="ellipse1139" + transform="rotate(-166.16108)" + class="steel_piercing" + cx="-295.81207" + cy="-170.41136" + rx="1.3500389" + ry="1.8000519" /><ellipse + id="ellipse1141" + transform="rotate(-166.16108)" + class="steel_piercing" + cx="-298.56195" + cy="-178.63326" + rx="1.3500389" + ry="1.8000519" /></g><g + inkscape:groupmode="layer" + id="Boob_Piercing_Heavy" + style="display:inline" + inkscape:label="Boob_Piercing_Heavy"><g + id="g1374" + transform="matrix(1.0017178,0,0,1.0017178,-0.55263244,-0.3529705)"><path + id="XMLID_610_" + class="steel_piercing" + d="m 309.90865,207.70517 c 0.21478,0 -1.07387,3.63006 -1.07387,8.81578 0,4.66721 1.07387,10.37151 3.65116,12.44583 3.00683,2.07431 6.22843,-4.66714 7.08751,-10.37151 0.8591,-5.70435 -0.64431,-10.37152 -0.42954,-10.8901 0.42954,-0.51857 2.36251,6.22293 1.93296,12.44584 -0.42955,7.26006 -3.65115,16.07583 -7.73184,14.52011 -3.00683,-1.03716 -6.01366,-6.74151 -6.01366,-14.52011 -0.42954,-7.26009 2.36251,-12.96441 2.57728,-12.44584 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cscsccccc" /><path + sodipodi:nodetypes="ccscccc" + id="XMLID_611_" + class="steel_piercing" + d="m 211.74093,240.94933 c 1.60318,2.00397 4.01575,-3.05165 4.55014,-7.8612 0.53439,-4.40874 -0.17813,-8.0159 0,-8.4167 0.17813,-0.40078 1.06879,4.80954 0.89066,9.6191 -0.35627,5.61111 -3.06571,12.09415 -5.38141,11.29257 -1.05341,-1.99943 -0.215,-4.83345 -0.0594,-4.63377 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="scccs" + id="XMLID_612_" + class="steel_piercing" + d="m 212.62757,245.06158 c 0.12894,-0.24264 18.44383,30.27982 43.52882,29.12099 26.8292,-1.45432 58.8088,-41.66451 59.11592,-41.49573 0.32354,0.3868 -29.85403,43.84637 -57.84606,45.49774 -26.95814,1.69698 -44.92761,-32.88035 -44.79868,-33.123 z" + inkscape:connector-curvature="0" /><circle + id="circle1192" + class="steel_piercing" + cx="309.49377" + cy="207.85938" + r="2.25" /><circle + r="2.25" + id="circle1194" + class="steel_piercing" + cx="319.45865" + cy="207.72774" /><ellipse + id="ellipse1196" + transform="rotate(-166.16108)" + class="steel_piercing" + cx="-263.7442" + cy="-165.79219" + rx="1.350039" + ry="1.8000519" /></g></g><g + inkscape:label="Boob_Piercing_NoBoob_Heavy" + style="display:inline" + id="Boob_Piercing_NoBoob_Heavy" + inkscape:groupmode="layer"><path + id="path1111" + class="steel_piercing" + d="m 308.53365,237.83017 c 0.21478,0 -1.07387,3.63006 -1.07387,8.81578 0,4.66721 1.07387,10.37151 3.65116,12.44583 3.00683,2.07431 6.22843,-4.66714 7.08751,-10.37151 0.8591,-5.70435 -0.64431,-10.37152 -0.42954,-10.8901 0.42954,-0.51857 2.36251,6.22293 1.93296,12.44584 -0.42955,7.26006 -3.65115,16.07583 -7.73184,14.52011 -3.00683,-1.03716 -6.01366,-6.74151 -6.01366,-14.52011 -0.42954,-7.26009 2.36251,-12.96441 2.57728,-12.44584 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cscsccccc" /><path + sodipodi:nodetypes="ccscccc" + id="path1113" + class="steel_piercing" + d="m 243.0687,257.31608 c 1.60318,2.00397 4.95325,-3.11415 5.48764,-7.9237 0.53439,-4.40874 -0.17813,-8.0159 0,-8.4167 0.17813,-0.40078 1.06879,4.80954 0.89066,9.6191 -0.35627,5.61111 -4.00321,12.15665 -6.31891,11.35507 -1.05341,-1.99943 -0.215,-4.83345 -0.0594,-4.63377 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="scccs" + id="path1115" + class="steel_piercing" + d="m 243.42593,260.51411 c 0.12894,-0.24264 6.59979,33.10825 31.68478,31.94942 26.8292,-1.45432 38.47948,-29.82047 38.7866,-29.65169 0.32354,0.3868 -9.52471,32.00233 -37.51674,33.6537 -26.95814,1.69698 -33.08357,-35.70878 -32.95464,-35.95143 z" + inkscape:connector-curvature="0" /><circle + id="circle1117" + class="steel_piercing" + cx="308.29556" + cy="237.84074" + r="2.25" /><circle + r="2.25" + id="circle1119" + class="steel_piercing" + cx="317.58649" + cy="237.63176" /><ellipse + id="ellipse1121" + transform="rotate(-166.16108)" + class="steel_piercing" + cx="-298.97275" + cy="-173.90553" + rx="1.350039" + ry="1.8000519" /></g><g + inkscape:groupmode="layer" + id="Boob_Piercing_NoBoob" + style="display:inline" + inkscape:label="Boob_Piercing_NoBoob"><circle + id="XMLID_622_" + class="steel_piercing" + cx="308.27518" + cy="237.54713" + r="2.25" /><circle + id="XMLID_623_" + class="steel_piercing" + cy="237.5405" + cx="317.5838" + r="2.25" /><ellipse + id="XMLID_626_" + transform="rotate(-166.16108)" + class="steel_piercing" + cx="-299.35211" + cy="-174.46425" + rx="1.350039" + ry="1.8000519" /></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)"><circle + id="circle1102" + class="steel_piercing" + cx="308.05627" + cy="208.32812" + r="2.25" /><circle + id="circle1104" + class="steel_piercing" + cy="207.72774" + cx="320.6149" + r="2.25" /><ellipse + id="ellipse1106" + transform="rotate(-166.16108)" + class="steel_piercing" + cx="-263.7442" + cy="-165.79219" + rx="1.350039" + ry="1.8000519" /></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><g + inkscape:groupmode="layer" + id="Boob_Outfit_" + inkscape:label="Boob_Outfit_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Boob_Outfit_Straps" + inkscape:label="Boob_Outfit_Straps" + style="display:inline"><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" + inkscape:connector-curvature="0" /><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" + inkscape:connector-curvature="0" /><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" + inkscape:connector-curvature="0" /><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" + inkscape:connector-curvature="0" /><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" + inkscape:connector-curvature="0" /><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" + inkscape:connector-curvature="0" /><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 -26.9708,5.57844 -53.81789,11.47426 -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></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_" + sodipodi:insensitive="true"><g + inkscape:groupmode="layer" + id="Head" + inkscape:label="Head" + style="display:inline;opacity:1" + sodipodi:insensitive="true"><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" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + 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 289.19072,140.7229 c -0.58382,3.43317 -0.99352,4.10273 -2.32781,7.22613 0.94543,-2.80397 1.75469,-4.08105 2.32781,-7.22613 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path836-0-8-3" + class="shadow" + d="m 289.73258,148.65358 c -1.16267,0.69754 -1.8436,-0.002 -2.85814,-0.73987 0.89019,0.8089 1.8548,1.4671 2.85814,0.73987 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Eyes_" + inkscape:label="Eyes_" + style="display:inline;opacity:1"><g + inkscape:groupmode="layer" + id="Eyes_Happy" + inkscape:label="Eyes_Happy" + style="display:inline"><path + sodipodi:nodetypes="cccccc" + id="path6045" + class="shadow" + d="m 307.10671,134.50075 c -2.14996,-0.21128 -3.4884,-1.89949 -3.24482,-3.7169 5.61251,-12.66418 20.17095,-9.17457 20.34208,-8.99178 l -2.84372,2.07583 c 0,0 0.49128,3.89972 -0.83752,5.48536 -1.92253,5.79302 -5.27149,5.56862 -13.41602,5.14749 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 307.10671,134.50075 c -1.87469,-0.40868 -3.30955,-2.02174 -3.24482,-3.70585 6.37333,-6.81838 12.60798,-6.56266 17.49836,-6.927 -0.089,1.78171 -0.22231,3.81052 -0.83752,5.48536 -2.65086,5.61858 -6.10961,5.14951 -13.41602,5.14749 z" + class="eyeball" + id="XMLID_511_-4-2" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="ccccc" + id="path6043" + class="shadow" + d="m 310.44159,134.49641 c -3.67367,-1.48686 -4.29831,-3.49933 -3.15534,-6.74851 2.69791,-2.16227 6.05502,-3.5901 10.32531,-3.68959 2.99107,2.5491 2.13293,6.70626 -0.65334,9.45436 -2.61876,1.10509 -4.65424,0.97852 -6.51663,0.98374 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 310.44159,134.49641 c -3.31639,-1.90368 -3.90593,-3.95711 -3.15534,-6.74851 2.69791,-2.16227 6.05502,-3.5901 10.32531,-3.68959 1.97318,2.65914 1.65167,6.75829 -0.65334,9.45436 -2.61876,1.10509 -4.65424,0.97852 -6.51663,0.98374 z" + class="iris" + id="XMLID_511_-4-2-3" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="aaaaa" + id="path836-0" + class="shadow" + d="m 312.9516,125.29705 c 1.10576,-0.11043 1.2531,1.93253 1.3748,3.0371 0.10786,0.97889 0.37016,2.74199 -0.60312,2.89222 -1.01892,0.15728 -1.36813,-1.67605 -1.515,-2.69652 -0.15752,-1.09444 -0.35693,-3.12293 0.74332,-3.2328 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 317.67935,111.63924 c -7.50966,2.24905 -13.60059,5.38357 -18.28488,9.05551 -0.50012,-0.83277 -0.541,-1.08655 -0.54648,-1.94262 2.10133,-1.86939 9.26628,-5.39235 18.83136,-7.11289 z" + class="shadow" + id="path898" + sodipodi:nodetypes="cccc" /><path + sodipodi:nodetypes="cccc" + id="path836-0-8-5-8" + class="hair" + d="m 317.67935,111.63924 c -7.62756,2.19852 -13.77221,5.31002 -18.28488,9.05551 -0.4503,-0.83989 -0.48773,-1.09416 -0.54648,-1.94262 1.80803,-1.6451 8.85545,-5.07818 18.83136,-7.11289 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="cccscccc" + id="path6039" + class="shadow" + d="m 274.44008,140.2959 c -3.77011,-1.33495 -4.55682,-6.73794 -4.41296,-6.90577 l -2.12826,-0.77244 c 0,0 4.27612,-4.61357 8.17537,-4.1261 3.11408,0.38931 5.88666,4.99929 6.94086,6.58701 0.70038,0.99444 1.14834,1.97959 1.20977,3.09041 -0.11063,0.6088 -0.16261,0.79325 -1.19487,1.03043 -2.0078,1.16001 -6.00188,0.99826 -8.58991,1.09646 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 274.44008,140.2959 c -3.10223,-2.11414 -3.60251,-4.55455 -4.41296,-6.90577 6.75267,-6.49147 10.05247,0.18553 13.13641,2.39159 0.7155,0.74756 0.79828,1.35208 1.06133,2.38729 -0.18602,0.58367 -0.41907,0.70776 -1.19487,1.03043 -2.25853,0.56739 -6.04492,0.89652 -8.58991,1.09646 z" + class="eyeball" + id="XMLID_511_-4-2-6" + sodipodi:nodetypes="cccccc" /><path + inkscape:connector-curvature="0" + d="m 277.23993,140.0554 c -3.75163,-1.66167 -4.05213,-6.80108 -3.89825,-8.99651 4.41482,-1.71661 6.48962,1.95868 9.57878,4.535 0.35859,1.15724 0.43496,2.38638 -0.22192,3.68841 0,0 -2.91362,0.57316 -5.45861,0.7731 z" + class="shadow" + id="path6037" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="ccccc" + id="path2346" + class="iris" + d="m 277.23993,140.0554 c -3.52398,-2.02728 -3.57865,-6.55541 -3.89825,-8.99651 4.41482,-1.71661 6.48962,1.95868 9.57878,4.535 0.0721,1.2479 -0.002,2.50301 -0.22192,3.68841 0,0 -2.91362,0.57316 -5.45861,0.7731 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="aaaaa" + id="path836-0-1" + class="shadow" + d="m 278.79187,132.35429 c 0.7753,-0.12567 0.96972,1.30423 1.11402,2.07628 0.14378,0.76921 0.47663,2.16241 -0.28777,2.32986 -0.76786,0.16821 -1.09139,-1.23356 -1.24105,-2.00526 -0.15462,-0.79729 -0.3869,-2.27094 0.4148,-2.40088 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 268.39113,125.24474 c 3.84956,-1.23054 7.58928,-1.35196 11.67387,-0.22046 -0.22533,-0.68817 -0.47718,-1.38369 -1.24059,-1.8713 -3.84357,-0.72563 -7.95641,0.48803 -10.43328,2.09176 z" + class="shadow" + id="path900" + sodipodi:nodetypes="cccc" /><path + sodipodi:nodetypes="cccc" + id="path836-0-8-5-8-4" + class="hair" + d="m 268.39113,125.24474 c 3.88481,-1.32454 7.6163,-1.42402 11.67387,-0.22046 -0.29393,-0.68817 -0.5742,-1.38369 -1.24059,-1.8713 -3.82999,-0.617 -7.94966,0.54201 -10.43328,2.09176 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="cccc" + id="path836-0-8-5" + class="shadow" + d="m 314.20378,119.09392 c -6.05866,2.28691 -11.22162,5.0986 -12.90586,12.75528 0.30717,-4.71449 0.75031,-5.81731 0.75031,-5.81731 0,0 5.19124,-5.91333 12.15555,-6.93797 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="cccc" + id="path836-0-8-5-6" + class="shadow" + d="m 283.68032,132.67341 c -2.29173,-3.19341 -6.81165,-7.67408 -11.63652,-4.4549 4.04155,-3.32386 9.21676,0.61188 9.21676,0.61188 0,0 0.78358,1.28953 2.41976,3.84302 z" + inkscape:connector-curvature="0" /></g><g + style="display:inline" + inkscape:label="Eyes_Happy_Highlights" + id="Eyes_Happy_Highlights" + inkscape:groupmode="layer"><path + sodipodi:nodetypes="ccc" + id="path1358" + class="highlight1" + d="m 276.31935,138.03596 c -1.74948,-1.08152 -2.82634,-0.70082 -4.14058,-0.83618 1.46255,1.3039 2.31388,1.58407 4.14058,0.83618 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="aaaaa" + id="path1360" + class="highlight1" + d="m 283.0156,136.69833 c 0.33283,-0.52775 -0.16277,-1.40573 -0.68949,-1.74018 -0.5567,-0.35349 -1.62751,-0.43801 -1.97452,0.12275 -0.33312,0.53831 0.20098,1.41744 0.74031,1.7489 0.54759,0.33653 1.58085,0.41218 1.9237,-0.13147 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="aaaaa" + id="path1362" + class="highlight1" + d="m 319.26713,128.31283 c 0.40208,-0.65326 0.15902,-1.79617 -0.45511,-2.25581 -0.76332,-0.57128 -2.3685,-0.57543 -2.84953,0.24775 -0.47889,0.81956 0.31823,2.19001 1.17781,2.59266 0.66581,0.31188 1.74144,0.0415 2.12683,-0.5846 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1364" + class="highlight1" + d="m 310.10154,134.01083 c -1.95261,-0.58152 -3.31071,-0.68519 -4.64058,-1.07055 1.46255,1.3039 2.81388,1.81844 4.64058,1.07055 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="aaaaa" + id="path1366" + class="highlight1" + d="m 309.12579,132.53462 c 0.22973,-0.28484 0.11628,-0.86094 -0.17386,-1.08393 -0.32114,-0.24683 -0.95451,-0.19244 -1.2089,0.12275 -0.21702,0.26887 -0.14841,0.8069 0.11531,1.03015 0.32294,0.27338 1.00184,0.26038 1.26745,-0.069 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="cccc" + id="path1368" + class="highlight2" + d="m 321.00393,127.22871 c -4.30477,3.52286 -10.19709,4.94055 -15.78334,6.32872 1.62696,1.45996 10.61033,1.15816 12.42644,-0.49043 0,0 3.43904,-3.38118 3.3569,-5.83829 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1370" + class="highlight2" + d="m 283.12848,136.19405 c 0.0421,0.92348 -6.38287,1.60284 -11.65745,0.9147 0.37816,1.02046 2.99994,3.12279 2.99994,3.12279 2.95098,-0.14535 5.87909,-0.37074 8.66548,-1.09216 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Eyes_Angry" + inkscape:label="Eyes_Angry" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 307.10947,134.55307 c -2.14996,-0.21128 -3.4884,-1.89949 -3.24482,-3.7169 0.90501,-3.62549 5.40258,-8.3911 5.85861,-8.3191 4.86402,-0.7642 5.54559,-1.15495 14.48347,-0.67268 l -2.84372,2.07583 c 0,0 0.49128,3.89972 -0.83752,5.48536 -1.89128,4.05864 -4.62305,4.52956 -13.41602,5.14749 z" + class="shadow" + id="path1272" + sodipodi:nodetypes="ccccccc" /><path + sodipodi:nodetypes="ccccc" + id="path1274" + class="eyeball" + d="m 307.10947,134.55307 c -1.87469,-0.40868 -3.30955,-2.02174 -3.24482,-3.70585 6.28282,-6.69771 12.58105,-6.52676 17.49836,-6.927 -0.089,1.78171 -0.22231,3.81052 -0.83752,5.48536 -2.6457,5.43786 -9.03811,4.15868 -13.41602,5.14749 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 310.42091,134.12686 c -3.67367,-1.48686 -4.27487,-3.07746 -3.1319,-6.32664 2.69791,-2.16227 6.05502,-3.5901 10.32531,-3.68959 2.99107,2.5491 2.10558,6.05001 -0.68069,8.79811 -1.41133,0.79838 -4.36294,1.09099 -6.51272,1.21812 z" + class="shadow" + id="path1276" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="ccccc" + id="path1278" + class="iris" + d="m 310.42091,134.12686 c -3.31639,-1.90368 -3.88249,-3.53524 -3.1319,-6.32664 3.29831,-1.48 6.34788,-3.25731 10.32531,-3.68959 1.97318,2.65914 1.62432,6.10204 -0.68069,8.79811 -2.63874,0.78543 -4.65878,1.07777 -6.51272,1.21812 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 312.95436,125.34937 c 1.10576,-0.11043 1.2531,1.93253 1.3748,3.0371 0.10786,0.97889 0.37016,2.74199 -0.60312,2.89222 -1.01892,0.15728 -1.36813,-1.67605 -1.515,-2.69652 -0.15752,-1.09444 -0.35693,-3.12293 0.74332,-3.2328 z" + class="shadow" + id="path1285" + sodipodi:nodetypes="aaaaa" /><path + sodipodi:nodetypes="cccc" + id="path1287" + class="shadow" + d="m 317.65086,114.80093 c -7.68644,3.55278 -16.95996,9.88357 -21.12863,10.22739 -0.50012,-0.83277 -0.541,-1.08655 -0.54648,-1.94262 4.52321,-0.46314 11.95535,-5.79083 21.67511,-8.28477 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 317.65086,114.80093 c -7.80434,3.41386 -15.03783,8.63815 -21.12863,10.22739 -0.4503,-0.83989 -0.48773,-1.09416 -0.54648,-1.94262 4.62053,-0.16073 12.07485,-5.67553 21.67511,-8.28477 z" + class="hair" + id="path1289" + sodipodi:nodetypes="cccc" /><path + inkscape:connector-curvature="0" + d="m 274.44284,139.61902 c -3.77011,-1.33495 -4.55682,-6.00874 -4.41296,-6.17657 l -2.12826,-0.77244 c 2.10867,-1.74524 4.33093,-3.42232 8.17537,-4.1261 3.31352,1.95033 6.40829,4.86888 6.94086,6.58701 0.70038,0.99444 1.14834,1.97959 1.20977,3.09041 -0.11063,0.6088 -0.16261,0.79325 -1.19487,1.03043 -2.0078,1.16001 -6.00188,0.26906 -8.58991,0.36726 z" + class="shadow" + id="path1291" + sodipodi:nodetypes="cccccccc" /><path + sodipodi:nodetypes="cccccc" + id="path1293" + class="eyeball" + d="m 274.44284,139.61902 c -3.10223,-2.11414 -3.60251,-3.82535 -4.41296,-6.17657 4.81902,-5.82796 9.04523,0.53115 13.13641,2.39159 0.7155,0.74756 0.79828,1.35208 1.06133,2.38729 -0.18602,0.58367 -0.41907,0.70776 -1.19487,1.03043 -2.25853,0.56739 -6.04492,0.16732 -8.58991,0.36726 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1295" + class="shadow" + d="m 277.24269,139.56084 c -3.75163,-1.66167 -4.05213,-6.2542 -3.89825,-8.44963 4.41482,-1.71661 6.48962,1.95868 9.57878,4.535 0.35859,1.15724 0.43496,2.38079 -0.22192,3.68282 0.0631,0.0631 -2.54258,0.40292 -5.45861,0.23181 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 277.24269,139.56084 c -3.52398,-2.02728 -3.57865,-6.00853 -3.89825,-8.44963 4.6668,-0.10393 6.50004,2.02537 9.57878,4.535 0.0721,1.2479 -0.002,2.49742 -0.22192,3.68282 0.0434,0.0916 -2.69968,0.48355 -5.45861,0.23181 z" + class="iris" + id="path1297" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 278.79463,132.40661 c 0.7753,-0.12567 0.96972,1.30423 1.11402,2.07628 0.14378,0.76921 0.47663,2.16241 -0.28777,2.32986 -0.76786,0.16821 -1.09139,-1.23356 -1.24105,-2.00526 -0.15462,-0.79729 -0.3869,-2.27094 0.4148,-2.40088 z" + class="shadow" + id="path1299" + sodipodi:nodetypes="aaaaa" /><path + sodipodi:nodetypes="cccc" + id="path1301" + class="shadow" + d="m 268.39389,124.29164 c 4.03739,0.7803 9.33495,3.23319 13.41954,4.36469 -0.22533,-0.68817 -0.22859,-1.82011 -0.992,-2.30772 -4.47886,-0.46046 -8.54751,-2.12495 -12.42754,-2.05697 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 268.39389,124.29164 c 4.14998,0.71944 9.36197,3.16113 13.41954,4.36469 -0.29393,-0.68817 -0.32561,-1.82011 -0.992,-2.30772 -4.43766,-0.34078 -8.31978,-2.00468 -12.42754,-2.05697 z" + class="hair" + id="path1303" + sodipodi:nodetypes="cccc" /><path + inkscape:connector-curvature="0" + d="m 314.20378,120.03142 c -6.05866,2.28691 -9.91789,5.31957 -11.60213,12.97625 1.05717,-5.02699 1.21906,-5.81731 1.21906,-5.81731 -0.0166,0.18218 3.35758,-5.46132 10.38307,-7.15894 z" + class="shadow" + id="path1431" + sodipodi:nodetypes="cccc" /><path + inkscape:connector-curvature="0" + d="m 283.68032,134.64216 c -2.29173,-3.19341 -6.45228,-8.28346 -11.63652,-5.8299 5.27592,-2.57386 9.21676,1.98688 9.21676,1.98688 0,0 0.78358,1.28953 2.41976,3.84302 z" + class="shadow" + id="path1433" + sodipodi:nodetypes="cccc" /></g><g + inkscape:groupmode="layer" + id="Eyes_Angry_Highlights" + inkscape:label="Eyes_Angry_Highlights" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 276.31935,138.03596 c -1.74948,-1.08152 -2.82634,-0.70082 -4.14058,-0.83618 1.46255,1.3039 2.31388,1.58407 4.14058,0.83618 z" + class="highlight1" + id="path1406" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 283.0156,136.69833 c 0.33283,-0.52775 -0.16277,-1.40573 -0.68949,-1.74018 -0.5567,-0.35349 -1.62751,-0.43801 -1.97452,0.12275 -0.33312,0.53831 0.20098,1.41744 0.74031,1.7489 0.54759,0.33653 1.58085,0.41218 1.9237,-0.13147 z" + class="highlight1" + id="path1408" + sodipodi:nodetypes="aaaaa" /><path + inkscape:connector-curvature="0" + d="m 319.26713,128.31283 c 0.40208,-0.65326 0.15902,-1.79617 -0.45511,-2.25581 -0.76332,-0.57128 -2.3685,-0.57543 -2.84953,0.24775 -0.47889,0.81956 0.31823,2.19001 1.17781,2.59266 0.66581,0.31188 1.74144,0.0415 2.12683,-0.5846 z" + class="highlight1" + id="path1410" + sodipodi:nodetypes="aaaaa" /><path + inkscape:connector-curvature="0" + d="m 310.10154,134.01083 c -1.95261,-0.58152 -3.31071,-0.68519 -4.64058,-1.07055 1.46255,1.3039 2.81388,1.81844 4.64058,1.07055 z" + class="highlight1" + id="path1412" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 309.12579,132.53462 c 0.22973,-0.28484 0.11628,-0.86094 -0.17386,-1.08393 -0.32114,-0.24683 -0.95451,-0.19244 -1.2089,0.12275 -0.21702,0.26887 -0.14841,0.8069 0.11531,1.03015 0.32294,0.27338 1.00184,0.26038 1.26745,-0.069 z" + class="highlight1" + id="path1414" + sodipodi:nodetypes="aaaaa" /><path + inkscape:connector-curvature="0" + d="m 321.00393,127.22871 c -4.30477,3.52286 -10.19709,4.94055 -15.78334,6.32872 1.62696,1.45996 11.01913,0.36266 12.83524,-1.28593 0.16245,0.19855 3.12965,-2.46418 2.9481,-5.04279 z" + class="highlight2" + id="path1416" + sodipodi:nodetypes="cccc" /><path + inkscape:connector-curvature="0" + d="m 283.12848,136.19405 c 0.0421,0.92348 -6.53131,0.97784 -11.80589,0.2897 0.37816,1.02046 3.14838,3.09154 3.14838,3.09154 2.95098,-0.14535 5.96765,0.44056 8.57173,-0.35388 1.67495,-0.40155 1.15179,-1.67781 0.0858,-3.02736 z" + class="highlight2" + id="path1418" + sodipodi:nodetypes="ccccc" /></g><g + inkscape:label="Eyes_Closed" + id="Eyes_Closed" + inkscape:groupmode="layer" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 302.16296,131.24318 c 2.57167,-0.52673 5.58238,0.006 9.33942,-0.69862 2.58668,-0.4848 5.43996,-1.74164 9.09976,-3.58177 l -2.13661,2.38519 c -4.04644,3.14664 -11.31128,2.34686 -16.30257,1.8952 z" + class="shadow" + id="path1266" + sodipodi:nodetypes="csccc" /><path + sodipodi:nodetypes="cccc" + id="path1316" + class="shadow" + d="m 314.07752,117.274 c -6.46523,0.2848 -13.00456,1.26106 -19.23505,-0.64511 l -0.54648,-1.94262 c 6.66634,2.35597 13.21476,2.28288 19.78153,2.58773 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 314.07752,117.274 c -6.30971,0.1139 -12.52917,1.16848 -19.23505,-0.64511 -0.11296,-0.62159 -0.35966,-1.29334 -0.54648,-1.94262 6.39298,2.42643 13.10866,2.34048 19.78153,2.58773 z" + class="hair" + id="path1318" + sodipodi:nodetypes="cccc" /><path + inkscape:connector-curvature="0" + d="m 269.949,137.67138 c 0.73177,-0.37643 0.86265,-1.21509 1.07486,-1.99119 3.59562,2.03489 7.47707,0.76228 11.35725,-0.49555 -5.4811,2.92985 -9.73399,4.45824 -12.43211,2.48674 z" + class="shadow" + id="path1320" + sodipodi:nodetypes="cccc" /><path + sodipodi:nodetypes="cccc" + id="path1330" + class="shadow" + d="m 268.39113,125.24474 c 3.63876,-0.89851 6.76925,-2.25327 10.18168,-4.73608 -0.62683,-0.53103 -0.61519,-0.89808 -0.76402,-1.63693 -2.88076,2.79444 -5.97516,5.03497 -9.41766,6.37301 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 268.39113,125.24474 c 3.984,-0.95362 7.05184,-2.69915 10.18168,-4.73608 -0.69182,-0.47535 -0.69569,-0.82906 -0.76402,-1.63693 -2.61352,2.58433 -5.48274,4.94492 -9.41766,6.37301 z" + class="hair" + id="path1332" + sodipodi:nodetypes="cccc" /><path + inkscape:connector-curvature="0" + d="m 316.03784,127.49081 c -4.30281,1.05938 -7.95357,2.3998 -14.53503,2.477 0.44427,-0.21168 0.43707,-0.6506 0.30235,-1.15169 6.72552,0.42105 9.85993,-0.72177 14.23268,-1.32531 z" + class="shadow" + id="path1305" + sodipodi:nodetypes="cccc" /><path + inkscape:connector-curvature="0" + d="m 284.71888,133.33632 c -4.35972,0.4276 -3.84243,1.28326 -12.01845,1.57179 3.11507,-0.36955 6.44566,-1.01385 8.97997,-2.27702 0.46806,0.45298 1.88596,0.52604 3.03848,0.70523 z" + class="shadow" + id="path1307" + sodipodi:nodetypes="cccc" /></g><g + inkscape:groupmode="layer" + id="Eyes_Shy" + inkscape:label="Eyes_Shy" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 307.10671,133.23513 c -2.14996,-0.21128 -3.4884,-0.63387 -3.24482,-2.45128 5.61251,-12.66418 20.17095,-9.17457 20.34208,-8.99178 l -2.84372,2.07583 c 0,0 0.49128,3.89972 -0.83752,5.48536 -4.6569,4.69927 -4.74024,3.03737 -13.41602,3.88187 z" + class="shadow" + id="path1383" + sodipodi:nodetypes="cccccc" /><path + sodipodi:nodetypes="ccccc" + id="path1385" + class="eyeball" + d="m 307.10671,133.23513 c -1.87469,-0.40868 -3.30955,-0.75612 -3.24482,-2.44023 6.37333,-6.81838 12.60798,-6.56266 17.49836,-6.927 -0.089,1.78171 -0.22231,3.81052 -0.83752,5.48536 -4.63523,3.72796 -4.96899,2.80576 -13.41602,3.88187 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 310.44159,132.82454 c -2.37038,-2.40092 -2.27065,-3.28058 -0.76472,-6.52976 2.69791,-2.16227 5.44322,-2.2007 9.71351,-2.30019 1.02447,3.36359 0.96171,4.79101 -0.65334,6.72697 -2.10986,1.90314 -6.35887,2.21411 -8.29545,2.10298 z" + class="shadow" + id="path1387" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="ccccc" + id="path1389" + class="iris" + d="m 310.44159,132.80891 c -2.06639,-2.49743 -1.51531,-3.72273 -0.76472,-6.51413 3.39397,-1.8971 5.44322,-2.2007 9.71351,-2.30019 0.91996,3.36377 0.44572,5.40578 -0.65334,6.71134 -2.09074,1.5744 -4.38813,2.04437 -8.29545,2.10298 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 314.67793,125.49592 c 1.10576,-0.11043 1.25309,1.93253 1.3748,3.0371 0.10786,0.97889 0.37016,2.74199 -0.60312,2.89222 -1.01892,0.15728 -1.36813,-1.67605 -1.515,-2.69652 -0.15752,-1.09444 -0.35693,-3.12292 0.74332,-3.2328 z" + class="shadow" + id="path1391" + sodipodi:nodetypes="aaaaa" /><path + sodipodi:nodetypes="cccc" + id="path1393" + class="shadow" + d="m 316.5303,114.40138 c -6.66941,0.72065 -12.03275,1.96548 -21.48896,0.96797 -0.0572,-0.64754 -0.32141,-1.29508 -0.54648,-1.94262 7.94186,0.96275 14.90918,0.88375 22.03544,0.97465 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 316.5303,114.40138 c -6.85014,0.90399 -13.36209,1.48406 -21.48896,0.96797 0.0949,-0.51969 -0.28129,-1.25676 -0.54648,-1.94262 7.70775,1.30604 14.79826,0.94191 22.03544,0.97465 z" + class="hair" + id="path1395" + sodipodi:nodetypes="cccc" /><path + inkscape:connector-curvature="0" + d="m 274.44008,139.12475 c -3.77011,-1.33495 -4.55682,-5.56679 -4.41296,-5.73462 l -2.12826,-0.77244 c 0,0 4.27612,-3.56396 8.17537,-3.07649 3.11408,0.38931 4.98068,3.73976 6.94086,5.5374 0.70038,0.99444 0.6622,0.90788 0.72363,2.0187 -0.11063,0.6088 0.14384,0.65866 -0.70873,0.93099 -2.0078,1.16001 -6.00188,0.99826 -8.58991,1.09646 z" + class="shadow" + id="path1397" + sodipodi:nodetypes="cccscccc" /><path + sodipodi:nodetypes="cccccc" + id="path1399" + class="eyeball" + d="m 274.44008,139.12475 c -3.10223,-2.11414 -3.60251,-3.3834 -4.41296,-5.73462 6.75267,-6.49147 10.05247,0.18553 13.13641,2.39159 0.36003,0.38428 0.18323,0.27256 0.44628,1.30777 -0.18602,0.58367 -0.1204,0.39348 -0.57982,0.9388 -2.25853,0.56739 -6.04492,0.89652 -8.58991,1.09646 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1401" + class="shadow" + d="m 277.23993,138.8953 c -3.23601,-2.56011 -2.26384,-6.08103 -2.10996,-8.27646 4.33748,0.018 4.70133,2.39873 7.79049,4.97505 0.35859,1.15724 0.43496,1.22628 -0.22192,2.52831 0,0 -2.91362,0.57316 -5.45861,0.7731 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 277.23993,138.90635 c -3.19586,-2.9179 -1.97786,-5.79953 -2.10996,-8.28751 3.93974,0.22794 4.70133,2.39873 7.79049,4.97505 1.19438,0.83852 0.73936,2.31119 -0.22192,2.53936 0,0 -2.91362,0.57316 -5.45861,0.7731 z" + class="iris" + id="path1403" + sodipodi:nodetypes="ccccc" /><path + inkscape:connector-curvature="0" + d="m 280.24499,132.97929 c 0.77531,-0.12566 0.96972,1.30423 1.11402,2.07628 0.14378,0.7692 0.47663,2.16241 -0.28777,2.32986 -0.76787,0.16821 -1.09138,-1.23356 -1.24105,-2.00526 -0.15462,-0.79729 -0.38688,-2.27094 0.4148,-2.40088 z" + class="shadow" + id="path1405" + sodipodi:nodetypes="aaaaa" /><path + sodipodi:nodetypes="cccc" + id="path1407" + class="shadow" + d="m 266.88853,124.93538 c 5.14281,-2.35048 8.8204,-4.54964 11.7733,-6.94902 -0.64858,-0.54081 -1.09249,-1.15385 -1.24059,-1.8713 -3.15256,3.1591 -6.34148,6.29597 -10.53271,8.82032 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 266.71175,125.01272 c 4.28394,-1.97306 8.31478,-4.40496 11.95008,-7.02636 -0.59259,-0.44063 -1.10195,-0.96639 -1.24059,-1.8713 -3.0006,3.32594 -6.50676,6.48064 -10.70949,8.89766 z" + class="hair" + id="path1409" + sodipodi:nodetypes="cccc" /><path + inkscape:connector-curvature="0" + d="m 315.90526,120.41975 c -7.90241,3.58378 -11.88871,4.3252 -14.9167,11.98188 0.30717,-4.71449 0.75031,-4.84504 0.75031,-4.84504 0,0 7.35676,-6.00172 14.16639,-7.13684 z" + class="shadow" + id="path1411" + sodipodi:nodetypes="cccc" /><path + inkscape:connector-curvature="0" + d="m 283.68032,134.28278 c -2.29173,-3.19341 -6.45739,-7.99776 -13.10527,-5.22052 5.93085,-3.26862 10.68551,1.3775 10.68551,1.3775 0,0 0.78358,1.28953 2.41976,3.84302 z" + class="shadow" + id="path1413" + sodipodi:nodetypes="cccc" /></g><g + style="display:inline" + inkscape:label="Eyes_Shy_Highlights" + id="Eyes_Shy_Highlights" + inkscape:groupmode="layer"><path + sodipodi:nodetypes="ccc" + id="path1422" + class="highlight1" + d="m 276.31935,136.60153 c -1.74948,-1.08152 -2.82634,-0.70082 -4.14058,-0.83618 1.46255,1.3039 2.31388,1.58407 4.14058,0.83618 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="aaaaa" + id="path1424" + class="highlight1" + d="m 283.0156,136.69833 c 0.33283,-0.52775 -0.16277,-1.40573 -0.68949,-1.74018 -0.5567,-0.35349 -1.62751,-0.43801 -1.97452,0.12275 -0.33312,0.53831 0.20098,1.41744 0.74031,1.7489 0.54759,0.33653 1.58085,0.41218 1.9237,-0.13147 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="aaaaa" + id="path1426" + class="highlight1" + d="m 319.26713,128.31283 c 0.40208,-0.65326 0.15902,-1.79617 -0.45511,-2.25581 -0.76332,-0.57128 -2.3685,-0.57543 -2.84953,0.24775 -0.47889,0.81956 0.31823,2.19001 1.17781,2.59266 0.66581,0.31188 1.74144,0.0415 2.12683,-0.5846 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1428" + class="highlight1" + d="m 308.9531,132.21396 c -1.95261,-0.58152 -3.31071,-0.68519 -4.64058,-1.07055 1.46255,1.3039 2.81388,1.81844 4.64058,1.07055 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="aaaaa" + id="path1430" + class="highlight1" + d="m 309.12579,132.53462 c 0.22973,-0.28484 0.11628,-0.86094 -0.17386,-1.08393 -0.32114,-0.24683 -0.95451,-0.19244 -1.2089,0.12275 -0.21702,0.26887 -0.14841,0.8069 0.11531,1.03015 0.32294,0.27338 1.00184,0.26038 1.26745,-0.069 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccccc" + id="path1432" + class="highlight2" + d="m 321.26909,125.30626 c -4.30477,3.52286 -11.2025,5.59241 -16.78875,6.98058 0.42493,0.38132 2.61485,0.92369 2.61485,0.92369 3.74766,-0.56824 8.59308,-0.25714 11.14846,-2.06598 0,0 2.93081,-1.48083 3.02544,-5.83829 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="cccccc" + id="path1434" + class="highlight2" + d="m 283.12848,135.7569 c 0.0421,0.92348 -6.71985,0.86812 -11.99443,0.17998 0.37816,1.02046 3.3093,3.19461 3.3093,3.19461 2.95098,-0.14535 5.90671,-0.44256 8.6931,-1.16398 0.9821,-1.2502 0.32176,-1.64424 -0.008,-2.21061 z" + inkscape:connector-curvature="0" /></g></g><g + inkscape:groupmode="layer" + id="Mouth_" + inkscape:label="Mouth_" + style="display:inline;opacity:1"><g + style="display:inline;opacity:1" + inkscape:label="Mouth_Happy" + id="Mouth_Happy" + inkscape:groupmode="layer"><path + inkscape:connector-curvature="0" + d="m 300.67907,164.2443 c -1.74079,0.54129 -2.60386,0.46609 -4.21215,0.60322 1.90581,1.1839 3.69318,1.01462 4.21215,-0.60322 z" + class="shadow" + id="path1314" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 304.16836,158.89728 c -0.65754,-0.15935 -1.25886,0.90901 -1.72778,1.06512 -1.27505,0.42448 -2.48719,0.72941 -3.60885,0.9432 -0.19845,0.0378 -0.36644,-0.0156 -0.55908,0.0167 -0.13152,0.022 -0.28928,0.13121 -0.41797,0.15079 -0.43426,0.066 -0.85211,0.11837 -1.2517,0.15887 -0.18968,0.0192 -0.37524,-0.0526 -0.55649,-0.0385 -0.18537,0.0144 -0.36623,0.11468 -0.54237,0.1242 -0.77914,0.0421 -1.26351,0.0593 -1.68445,0.0447 -0.26066,-0.009 -0.48867,-0.56649 -0.76394,-0.45611 -0.17938,0.0719 -0.27191,0.40524 -0.15456,0.5588 0.19626,0.2568 0.83404,-0.025 0.96964,-0.004 2.70837,0.41982 6.3844,-0.15314 9.47979,-1.57468 0.85817,-0.39411 1.04035,0.0106 1.1865,-0.37786 0.0838,-0.2227 -0.13749,-0.55517 -0.36874,-0.61121 z" + class="shadow" + id="path1317" + sodipodi:nodetypes="assssssssaassaa" /><path + inkscape:connector-curvature="0" + d="m 301.37797,158.85176 c -1.48115,-0.33094 -1.90064,-0.66259 -3.53037,0.43264 0.92533,-0.58981 2.22192,-0.63997 3.53037,-0.43264 z" + class="shadow" + id="path1319" + sodipodi:nodetypes="ccc" /><path + sodipodi:nodetypes="ccc" + id="path1321" + class="shadow" + d="m 297.00827,159.30416 c -1.14969,-0.43141 -1.46342,-0.22949 -2.47508,0.37718 0.97221,-0.32418 1.20482,-0.53261 2.47508,-0.37718 z" + inkscape:connector-curvature="0" /></g><g + inkscape:groupmode="layer" + id="Mouth_Happy_Highlights" + inkscape:label="Mouth_Happy_Highlights" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 301.6256,162.6093 c -2.03048,0.13893 -3.24258,0.38714 -4.23558,0.68032 0.35064,0.57872 3.64093,0.72858 4.23558,-0.68032 z" + class="highlight2" + id="path1464" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 296.64123,163.36824 c -0.62424,-0.0486 -1.55508,-0.7066 -2.40745,-0.63218 0.35064,0.57872 1.65655,1.47858 2.40745,0.63218 z" + class="highlight2" + id="path1466" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 297.44467,159.49516 c -0.60251,0.35152 -1.09223,0.56877 -1.8449,-0.0253 0.26033,-0.21724 1.01509,-0.27581 1.8449,0.0253 z" + class="highlight2" + id="path1468" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Mouth_Angry" + inkscape:label="Mouth_Angry" + style="display:inline;opacity:1"><path + sodipodi:nodetypes="ccc" + id="path1342" + class="shadow" + d="m 298.72595,162.8693 c -1.74079,0.54129 -2.60386,0.46609 -4.21215,0.60322 1.90581,1.1839 3.69318,1.01462 4.21215,-0.60322 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="cssssssssaassaacc" + id="path1344" + class="shadow" + d="m 301.77369,159.93145 c -0.59536,-0.32141 -1.49558,-0.40995 -1.98879,-0.37828 -1.34109,0.0861 -1.78502,-0.068 -2.90668,0.14576 -0.19845,0.0378 -0.36644,-0.0156 -0.55908,0.0167 -0.13152,0.022 -0.28928,-0.025 -0.41797,-0.005 -0.43426,0.066 -0.79514,0.22644 -1.19473,0.26689 -0.18968,0.0192 -0.40838,0.12419 -0.58963,0.13829 -0.18537,0.0144 -0.3784,0.0592 -0.54237,0.1242 -0.71345,0.28296 -0.89674,0.69602 -1.22192,0.90329 -0.21994,0.14018 -0.53951,0.0353 -0.65453,0.23682 -0.0837,0.14669 -0.0681,0.45023 0.0939,0.49793 0.31005,0.0913 0.55359,-0.62672 0.66731,-0.70349 2.58321,-1.74397 4.97811,-1.13453 8.10014,-1.2676 0.94348,-0.0402 0.62791,0.84829 1.01771,0.70994 0.22385,-0.0794 0.16356,-0.44971 0.19666,-0.68492 v -1e-5 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1346" + class="shadow" + d="m 299.48212,157.46491 c -1.66583,-0.75246 -1.79505,-0.91063 -3.55652,-0.043 0.99585,-0.46087 1.94376,-0.64981 3.55652,0.043 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 295.11418,157.52297 c -1.20709,-0.22549 -1.61386,-0.15189 -2.37217,0.8007 0.97157,-0.91756 1.0942,-0.73349 2.37217,-0.8007 z" + class="shadow" + id="path1348" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Mouth_Angry_Highlights" + inkscape:label="Mouth_Angry_Highlights" + style="display:inline"><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-0-9-5-8" + class="highlight2" + d="m 299.56552,160.5872 c -2.03048,0.13893 -3.24258,0.38714 -4.23558,0.68032 0.35064,0.57872 3.64093,0.72858 4.23558,-0.68032 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-0-9-5-8-4" + class="highlight2" + d="m 294.69804,162.49514 c -0.62424,-0.0486 -1.55508,-0.7066 -2.40745,-0.63218 0.35064,0.57872 1.65655,1.47858 2.40745,0.63218 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-0-9-5-8-4-4" + class="highlight2" + d="m 295.30404,157.90142 c -0.60251,0.35152 -1.09223,0.56877 -1.8449,-0.0253 0.26033,-0.21724 1.01509,-0.27581 1.8449,0.0253 z" + inkscape:connector-curvature="0" /></g></g></g><g + inkscape:groupmode="layer" + id="Head_Highlights_" + inkscape:label="Head_Highlights_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Face_Highlights" + inkscape:label="Face_Highlights" + style="display:inline"><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-0-9-5" + class="highlight2" + d="m 275.19669,144.91885 c -0.45504,-0.57446 -1.58115,-0.6711 -2.43843,-0.69755 0.35064,0.57872 1.68753,1.54395 2.43843,0.69755 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-0-9-5-7" + class="highlight2" + d="m 325.10727,135.45519 c -1.5378,0.39782 -2.70811,0.94199 -3.38861,1.31329 0.35064,0.57872 2.6819,0.15183 3.38861,-1.31329 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="XMLID_511_-1-8-0-3-9-0-9-5-8-4-8" + class="highlight2" + d="m 287.40684,166.81779 c -0.37424,-0.72047 -8.60195,-6.72222 -9.45432,-6.6478 0.1152,0.76888 7.07094,6.64629 9.45432,6.6478 z" + inkscape:connector-curvature="0" /></g></g><g + inkscape:groupmode="layer" + id="Collar_" + inkscape:label="Collar_" + style="display:inline"><g + inkscape:groupmode="layer" + id="Collar_Tight_Steel" + inkscape:label="Collar_Tight_Steel" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 338.84761,173.73169 c -0.2,0.2 -0.4,0.3 -0.7,0.4 -6,2.3 -29.80237,10.05946 -33.20237,9.95946 -5.9,-0.2 -7.5,-2.3 -7.7,-2.5 -0.7,-0.8 -0.4,-2.1 0.8,-2.6 1.3,-0.5 2.5,-0.5 3.2,0.3 0.009,3.44028 22.58334,-3.43594 34.70237,-8.25946 1.2,-0.5 2.7,-0.1 3.3,0.7 0.5,0.6 0.3,1.4 -0.4,2" + id="path11-0" + sodipodi:nodetypes="ccccccccc" /><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 305.44524,184.09115 c -6,0 -7.8,-2 -8,-2.1 -0.8,-0.8 -0.7,-2 0.5,-2.5 1.2,-0.6 2.76576,-0.84472 3.2,0.2 1.15585,2.7808 23.09391,-3.71229 34.60237,-8.75946 1.2,-0.5 2.7,-0.2 3.4,0.6 0.7,0.8 0.3,1.9 -0.9,2.3 -5.7,2.3 -29.40237,10.25946 -32.80237,10.25946 z" + id="path13" + sodipodi:nodetypes="sccscscs" /><circle + r="3.5999207" + transform="rotate(-59.999272)" + style="fill:none;stroke:#fefff2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:19" + cx="-7.6341872" + cy="357.4375" + id="ellipse15" /></g><g + inkscape:groupmode="layer" + id="Collar_Stylish_Leather" + inkscape:label="Collar_Stylish_Leather" + style="display:inline"><path + id="path9-3" + d="m 300.325,177.925 c -0.10721,3.72459 23.52313,-0.3129 34.7073,-8.01083 0.19654,-0.30228 0.55115,-0.23713 0.76157,-0.001 l 2.02623,2.93844 c 0.079,0.18372 0.0662,0.40696 0.0139,0.53834 -3.83995,5.24449 -28.00898,11.23512 -31.30898,11.23512 -5.2,0 -7.1,-1.8 -7.6,-2.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.6 0.6,-0.4 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccscccc" /><path + style="fill:#ffffff" + d="m 303.00781,184.69339 h 3.4 v -0.6 h 1 v 1.5 h -5.4 v -7 h 5.4 v 1.3 l -1,0.1 v -0.5 h -3.4 z" + id="polygon11" + inkscape:connector-curvature="0" /><rect + x="-172.36217" + y="307.03809" + transform="rotate(-88.080303)" + class="white" + width="0.9999612" + height="2.499903" + id="rect13" /></g><g + inkscape:groupmode="layer" + id="Collar_Shock_Punishment" + inkscape:label="Collar_Shock_Punishment" + style="display:inline"><path + id="path9-4" + d="m 306.15,183.8375 c -5.4,0 -7.7,-3.1 -7.8,-3.3 -0.5,-0.7 -0.3,-1.6 0.4,-2.1 0.7,-0.5 1.6,-0.3 2.1,0.4 0.2,0.3 5.3375,5.475 34.275,-9.625 0.7,-0.4 1.6,-0.2 2.1,0.5 0.4,0.7 0.2,1.6 -0.5,2.1 -5.7,3.4 -27.375,12.025 -30.575,12.025 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="scsccccs" /><rect + x="299.67276" + y="183.13045" + transform="rotate(-1.1601983)" + width="6.3000274" + height="10.500045" + id="rect11" /><rect + x="299.66086" + y="183.14191" + transform="rotate(-1.1601983)" + class="steel_chastity" + width="6.0000257" + height="10.100043" + id="rect13-0" /><circle + cx="288.78955" + cy="208.56601" + r="1.3" + id="circle15" + style="fill:#ce5b5b" + transform="rotate(-5.1341055)" /><circle + style="fill:#d13737" + cx="288.78955" + cy="208.466" + r="1.2" + id="circle17" + transform="rotate(-5.1341055)" /></g><g + inkscape:groupmode="layer" + id="Collar_Satin_Choker" + inkscape:label="Collar_Satin_Choker" + style="display:inline"><path + id="path9-9" + d="m 300.45955,176.79435 c 5.75393,4.57809 15.10826,-1.25778 32.69185,-10.78675 0.25346,-0.26166 0.59427,-0.13296 0.75882,0.13764 l 1.45752,3.26042 c 0.0437,0.19518 -0.0117,0.41252 -0.0889,0.53226 -4.82606,4.46138 -25.17723,13.55643 -28.52657,13.55643 -5.27775,0 -6.06553,-1.19062 -6.573,-1.89062 -0.1015,-0.1 -0.1015,-0.3 -0.1015,-0.4 l -0.22717,-4.00938 c 0,-0.4 0.30448,-0.6 0.60897,-0.4 z" + inkscape:connector-curvature="0" + style="stroke-width:1.00744832" + sodipodi:nodetypes="cccccsccccc" /><path + id="path13-6" + d="m 299.96797,179.10998 c 7.00222,2.06304 7.82277,2.97274 34.52324,-11.76259 l 0.27371,0.75854 c -4.77068,4.24404 -24.96781,13.18842 -28.11416,13.18842 -5.07476,0 -6.87776,-1.28437 -6.67477,-1.28437" + class="steel_chastity" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccsc" /></g><g + inkscape:groupmode="layer" + id="Collar_Pretty_Jewelry" + inkscape:label="Collar_Pretty_Jewelry" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 299.76916,182.31783 c 0,0 -0.1,0 -0.1,0 -0.3,-0.2 -0.7,-1.3 -0.7,-1.7 -0.1,-0.3 -0.4,-1.5 -0.2,-1.8 v -0.1 l 0.1,-0.1 c 0.1,0 0.1,0 0.2,0 0.3,0.2 0.7,1.3 0.7,1.7 v 0 c 0.1,0.3 0.4,1.5 0.2,1.8 v 0.1 l -0.2,0.1 c 0,0 0,0 0,0 z m -0.7,-2.8 c 0,0.3 0.1,0.6 0.2,1 0.1,0.4 0.2,0.8 0.3,1 0,-0.3 -0.1,-0.6 -0.2,-1 v 0 c -0.1,-0.5 -0.2,-0.8 -0.3,-1 z" + id="path7-4" /><path + inkscape:connector-curvature="0" + d="m 300.56916,185.71783 c -0.6,0 -1.2,-0.7 -1.5,-1.8 -0.4,-1.2 -0.2,-2.4 0.5,-2.7 0.7,-0.3 1.5,0.5 1.8,1.7 v 0 c 0.4,1.2 0.2,2.4 -0.5,2.7 -0.1,0 -0.2,0.1 -0.3,0.1 z m -0.8,-4.2 c -0.1,0 -0.1,0 -0.2,0 -0.5,0.2 -0.6,1.2 -0.3,2.2 0.3,1 1,1.7 1.4,1.5 0.5,-0.2 0.6,-1.2 0.3,-2.2 v 0 c -0.2,-0.9 -0.8,-1.5 -1.2,-1.5 z" + id="path9-49" /><path + inkscape:connector-curvature="0" + d="m 301.96916,189.21783 c -0.2,0 -0.4,-0.2 -0.9,-2.1 -0.6,-2.2 -0.4,-2.2 -0.3,-2.3 0.2,-0.1 0.3,0.2 0.5,0.7 0.1,0.4 0.3,0.9 0.4,1.4 0.7,2.2 0.5,2.2 0.3,2.3 0,0 0,0 0,0 z" + id="path11-9" /><path + inkscape:connector-curvature="0" + d="m 303.16916,192.61783 c -0.6,0 -1.4,-0.7 -1.8,-1.8 -0.2,-0.6 -0.3,-1.2 -0.3,-1.6 0.1,-0.5 0.3,-0.9 0.6,-1 0.4,-0.1 0.8,0 1.2,0.3 0.4,0.3 0.7,0.8 0.9,1.4 0.5,1.2 0.3,2.4 -0.4,2.7 0,0 -0.1,0 -0.2,0 z m -1.1,-4.1 c -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.3 -0.4,0.7 0,0.4 0,0.9 0.2,1.5 0.4,1.1 1.2,1.7 1.6,1.5 0.4,-0.2 0.6,-1.1 0.2,-2.2 -0.2,-0.5 -0.5,-1 -0.8,-1.2 -0.3,-0.2 -0.5,-0.3 -0.7,-0.3 z" + id="path13-3" /><path + inkscape:connector-curvature="0" + d="m 313.01655,195.31378 c -0.29028,-0.0758 -0.45854,-0.22303 -0.62681,-0.3703 -0.45428,-0.63532 0.0423,-1.74591 1.16566,-2.48621 1.12337,-0.7403 2.28873,-0.84954 2.74301,-0.21422 0.45428,0.63531 -0.0423,1.74591 -1.16566,2.48621 -0.75733,0.52578 -1.53565,0.73604 -2.1162,0.58452 z m 2.55404,-3.05399 c -0.48379,-0.12628 -1.16536,0.10923 -1.80068,0.56352 -0.87934,0.59729 -1.3254,1.51436 -1.01413,1.90566 0.28602,0.48805 1.25786,0.3283 2.13721,-0.26899 0.87934,-0.59729 1.3254,-1.51437 1.01413,-1.90566 -0.0463,-0.21877 -0.14301,-0.24403 -0.33653,-0.29453 z" + id="path15" /><path + inkscape:connector-curvature="0" + d="m 318.44839,190.73719 c -0.19352,-0.0505 -0.29028,-0.0758 -0.36178,-0.19777 -0.47954,-0.53856 -0.10498,-1.57765 0.85012,-2.46522 0.95511,-0.88756 2.07422,-1.21557 2.55375,-0.67701 0.23977,0.26928 0.23551,0.68156 0.10924,1.16536 -0.22303,0.45854 -0.54281,0.89182 -0.95936,1.29985 -0.41655,0.40803 -0.9046,0.69405 -1.3674,0.88331 -0.31553,0.021 -0.63106,0.042 -0.82457,-0.009 z m 2.48254,-3.176 c -0.38704,-0.10101 -1.06861,0.1345 -1.75443,0.78229 -0.83309,0.81606 -1.15714,1.66164 -0.82061,1.95617 0.16826,0.14727 0.36178,0.19778 0.70256,0.08 0.43754,-0.0925 0.82884,-0.40377 1.22013,-0.71504 0.41654,-0.40803 0.71108,-0.74456 0.81209,-1.13159 0.10102,-0.38704 0.15153,-0.58056 -0.0167,-0.72782 0.0505,-0.19352 -0.0462,-0.21877 -0.14301,-0.24403 z" + id="path17" /><path + inkscape:connector-curvature="0" + d="m 315.41907,192.84034 v 0 c -0.16827,-0.14727 -0.40804,-0.41655 1.42641,-1.90141 0.41655,-0.40803 0.9046,-0.69404 1.27064,-0.90856 0.48805,-0.28602 0.70682,-0.33227 0.87508,-0.185 l 0.0968,0.0253 -0.0253,0.0967 c -0.004,0.41229 -1.17814,1.34611 -1.54417,1.56062 -0.4418,0.50479 -1.71244,1.41335 -2.09947,1.31234 z m 2.64228,-2.20416 c -0.24402,0.14301 -0.61006,0.35752 -0.90459,0.69405 -0.3913,0.31127 -0.66058,0.55104 -0.92986,0.7908 0.24403,-0.143 0.61007,-0.35752 0.9046,-0.69404 0.39129,-0.31128 0.66057,-0.55104 0.92985,-0.79081 z" + id="path19" /><path + inkscape:connector-curvature="0" + d="m 324.34303,185.97135 c -0.19352,-0.0505 -0.29028,-0.0758 -0.45854,-0.22302 -0.23977,-0.26928 -0.33227,-0.70683 -0.206,-1.19062 0.12627,-0.48379 0.3493,-0.94233 0.74059,-1.2536 0.83309,-0.81607 1.95221,-1.14408 2.43174,-0.60552 0.23977,0.26928 0.33227,0.70683 0.206,1.19062 -0.12627,0.48379 -0.3493,0.94233 -0.74059,1.2536 v 0 c -0.41655,0.40803 -0.80784,0.71931 -1.24539,0.81181 -0.21877,0.0462 -0.5343,0.0672 -0.72781,0.0167 z m 2.07025,-3.18026 c -0.38704,-0.10101 -1.0686,0.1345 -1.63242,0.71079 -0.29453,0.33653 -0.61432,0.76981 -0.69008,1.06009 -0.0758,0.29027 -0.0548,0.6058 0.1135,0.75307 0.16826,0.14727 0.45853,0.22303 0.79932,0.10528 0.34078,-0.11776 0.80358,-0.30702 1.09811,-0.64355 0.29454,-0.33652 0.61432,-0.76981 0.69009,-1.06008 0.0758,-0.29028 0.0548,-0.60581 -0.1135,-0.75307 -0.0968,-0.0253 -0.16826,-0.14727 -0.26502,-0.17253 z" + id="path21" /><path + inkscape:connector-curvature="0" + d="m 321.26745,187.85573 -0.0715,-0.12202 0.0253,-0.0968 c 0.0505,-0.19351 0.58907,-0.67305 1.64094,-1.53536 0.75733,-0.52579 1.66192,-1.21983 1.88069,-1.26608 l 0.0968,0.0252 0.0715,0.12201 -0.0253,0.0968 c -0.0505,0.19352 -0.58906,0.67305 -1.64093,1.53537 v 0 c -0.68582,0.64779 -1.56517,1.24508 -1.97746,1.24083 z" + id="path23" /><path + inkscape:connector-curvature="0" + d="m 310.45428,196.81537 -0.0715,-0.12201 0.0253,-0.0968 c 0.0253,-0.0968 -0.021,-0.31553 1.30014,-1.41761 v 0 c 1.49367,-1.3671 1.56517,-1.24509 1.73344,-1.09782 0.16826,0.14726 0.23976,0.26928 -1.2539,1.63638 -1.4179,1.07682 -1.63667,1.12307 -1.73343,1.09782 z" + id="path27" /><path + inkscape:connector-curvature="0" + d="m 304.16916,195.81783 v 0 c -0.2,-0.1 -0.5,-0.8 -0.8,-2 -0.5,-2.1 -0.4,-2.2 -0.2,-2.2 v 0 c 0.2,0 0.3,-0.1 0.9,2 0.3,1.2 0.4,1.9 0.3,2.1 v 0.1 z" + id="path29" /><path + id="path33" + d="m 311.56916,198.41783 c -0.5,2.1 -2.9,4.3 -5.7,5.9 -1.7,-2 -3.1,-5.4 -2.8,-7.8 0.3,-2 2.7,-3.6 4.3,1.1 3,-4.5 4.7,-1.1 4.2,0.8 z" + inkscape:connector-curvature="0" /><path + id="path35" + d="m 310.96916,198.11783 c -0.5,2 -2.8,4.1 -5.4,5.6 -1.6,-1.9 -2.9,-5.1 -2.6,-7.3 0.2,-1.9 2.5,-3.4 4,1 2.8,-4.3 4.4,-1.1 4,0.7 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><rect + x="337.68442" + y="139.20795" + transform="rotate(10.64922)" + width="0.40000939" + height="1.8000422" + id="rect39" /><circle + r="0.79999298" + transform="rotate(-83.724979)" + cx="-164.25607" + cy="326.31647" + id="ellipse41-6" /><path + inkscape:connector-curvature="0" + d="m 326.43427,183.10662 c 0,0 -0.0715,-0.12201 -0.0715,-0.12201 -0.021,-0.31553 0.83735,-1.22835 1.00987,-1.49337 0.26928,-0.23977 1.12763,-1.15259 1.44316,-1.17358 l 0.0968,0.0252 0.0968,0.0252 c 0.0967,0.0253 0.0715,0.12202 0.0462,0.21878 0.021,0.31553 -0.83736,1.22835 -1.00988,1.49337 v 0 c -0.26928,0.23976 -1.12762,1.15258 -1.44315,1.17358 l -0.0968,-0.0252 -0.0715,-0.12202 c -0.0253,0.0968 0,0 0,0 z m 2.08274,-2.04015 c -0.24403,0.14301 -0.41655,0.40803 -0.80784,0.7193 -0.29454,0.33653 -0.56382,0.5763 -0.71108,0.74456 0.24402,-0.14301 0.41654,-0.40803 0.80784,-0.7193 v 0 c 0.26928,-0.23977 0.56381,-0.5763 0.71108,-0.74456 z" + id="path43" /><path + style="display:inline" + inkscape:connector-curvature="0" + d="m 328.8365,181.40598 c -0.19352,-0.0505 -0.29028,-0.0758 -0.45854,-0.22302 -0.23977,-0.26928 -0.33227,-0.70683 -0.206,-1.19062 0.12627,-0.48379 0.3493,-0.94233 0.74059,-1.2536 0.83309,-0.81607 1.95221,-1.14408 2.43174,-0.60552 0.23977,0.26928 0.33227,0.70683 0.206,1.19062 -0.12627,0.48379 -0.3493,0.94233 -0.74059,1.2536 v 0 c -0.41655,0.40803 -0.80784,0.71931 -1.24539,0.81181 -0.21877,0.0462 -0.5343,0.0672 -0.72781,0.0167 z m 2.07025,-3.18026 c -0.38704,-0.10101 -1.0686,0.1345 -1.63242,0.71079 -0.29453,0.33653 -0.61432,0.76981 -0.69008,1.06009 -0.0758,0.29027 -0.0548,0.6058 0.1135,0.75307 0.16826,0.14727 0.45853,0.22303 0.79932,0.10528 0.34078,-0.11776 0.80358,-0.30702 1.09811,-0.64355 0.29454,-0.33652 0.61432,-0.76981 0.69009,-1.06008 0.0758,-0.29028 0.0548,-0.60581 -0.1135,-0.75307 -0.0968,-0.0253 -0.16826,-0.14727 -0.26502,-0.17253 z" + id="path21-36" /><path + style="display:inline" + inkscape:connector-curvature="0" + d="m 330.92774,178.54125 c 0,0 -0.0715,-0.12201 -0.0715,-0.12201 -0.021,-0.31553 0.83735,-1.22835 1.00987,-1.49337 0.26928,-0.23977 1.12763,-1.15259 1.44316,-1.17358 l 0.0968,0.0252 0.0968,0.0252 c 0.0967,0.0253 0.0715,0.12202 0.0462,0.21878 0.021,0.31553 -0.83736,1.22835 -1.00988,1.49337 v 0 c -0.26928,0.23976 -1.12762,1.15258 -1.44315,1.17358 l -0.0968,-0.0252 -0.0715,-0.12202 c -0.0253,0.0968 0,0 0,0 z m 2.08274,-2.04015 c -0.24403,0.14301 -0.41655,0.40803 -0.80784,0.7193 -0.29454,0.33653 -0.56382,0.5763 -0.71108,0.74456 0.24402,-0.14301 0.41654,-0.40803 0.80784,-0.7193 v 0 c 0.26928,-0.23977 0.56381,-0.5763 0.71108,-0.74456 z" + id="path43-6" /><path + style="display:inline" + inkscape:connector-curvature="0" + d="m 333.24275,177.15598 c -0.19352,-0.0505 -0.29028,-0.0758 -0.45854,-0.22302 -0.23977,-0.26928 -0.33227,-0.70683 -0.206,-1.19062 0.12627,-0.48379 0.3493,-0.94233 0.74059,-1.2536 0.83309,-0.81607 1.95221,-1.14408 2.43174,-0.60552 0.23977,0.26928 0.33227,0.70683 0.206,1.19062 -0.12627,0.48379 -0.3493,0.94233 -0.74059,1.2536 v 0 c -0.41655,0.40803 -0.80784,0.71931 -1.24539,0.81181 -0.21877,0.0462 -0.5343,0.0672 -0.72781,0.0167 z m 2.07025,-3.18026 c -0.38704,-0.10101 -1.0686,0.1345 -1.63242,0.71079 -0.29453,0.33653 -0.61432,0.76981 -0.69008,1.06009 -0.0758,0.29027 -0.0548,0.6058 0.1135,0.75307 0.16826,0.14727 0.45853,0.22303 0.79932,0.10528 0.34078,-0.11776 0.80358,-0.30702 1.09811,-0.64355 0.29454,-0.33652 0.61432,-0.76981 0.69009,-1.06008 0.0758,-0.29028 0.0548,-0.60581 -0.1135,-0.75307 -0.0968,-0.0253 -0.16826,-0.14727 -0.26502,-0.17253 z" + id="path21-34" /><path + style="display:inline" + inkscape:connector-curvature="0" + d="m 335.33399,174.29125 c 0,0 -0.0715,-0.12201 -0.0715,-0.12201 -0.021,-0.31553 0.83735,-1.22835 1.00987,-1.49337 0.26928,-0.23977 1.12763,-1.15259 1.44316,-1.17358 l 0.0968,0.0252 0.0968,0.0252 c 0.0967,0.0253 0.0715,0.12202 0.0462,0.21878 0.021,0.31553 -0.83736,1.22835 -1.00988,1.49337 v 0 c -0.26928,0.23976 -1.12762,1.15258 -1.44315,1.17358 l -0.0968,-0.0252 -0.0715,-0.12202 c -0.0253,0.0968 0,0 0,0 z m 2.08274,-2.04015 c -0.24403,0.14301 -0.41655,0.40803 -0.80784,0.7193 -0.29454,0.33653 -0.56382,0.5763 -0.71108,0.74456 0.24402,-0.14301 0.41654,-0.40803 0.80784,-0.7193 v 0 c 0.26928,-0.23977 0.56381,-0.5763 0.71108,-0.74456 z" + id="path43-0" /></g><g + inkscape:groupmode="layer" + id="Collar_Retirement_Nice" + inkscape:label="Collar_Retirement_Nice" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 300.64144,184.10882 c 0,0 -0.1,0 -0.1,0 -0.3,-0.2 -0.7,-1.3 -0.7,-1.7 -0.1,-0.3 -0.4,-1.5 -0.2,-1.8 v -0.1 l 0.1,-0.1 c 0.1,0 0.1,0 0.2,0 0.3,0.2 0.7,1.3 0.7,1.7 v 0 c 0.1,0.3 0.4,1.5 0.2,1.8 v 0.1 l -0.2,0.1 c 0,0 0,0 0,0 z m -0.7,-2.8 c 0,0.3 0.1,0.6 0.2,1 0.1,0.4 0.2,0.8 0.3,1 0,-0.3 -0.1,-0.6 -0.2,-1 v 0 c -0.1,-0.5 -0.2,-0.8 -0.3,-1 z" + id="path7-5" /><path + inkscape:connector-curvature="0" + d="m 301.44144,187.50882 c -0.6,0 -1.2,-0.7 -1.5,-1.8 -0.4,-1.2 -0.2,-2.4 0.5,-2.7 0.7,-0.3 1.5,0.5 1.8,1.7 v 0 c 0.4,1.2 0.2,2.4 -0.5,2.7 -0.1,0 -0.2,0.1 -0.3,0.1 z m -0.8,-4.2 c -0.1,0 -0.1,0 -0.2,0 -0.5,0.2 -0.6,1.2 -0.3,2.2 0.3,1 1,1.7 1.4,1.5 0.5,-0.2 0.6,-1.2 0.3,-2.2 v 0 c -0.2,-0.9 -0.8,-1.5 -1.2,-1.5 z" + id="path9-02" /><path + inkscape:connector-curvature="0" + d="m 302.84144,191.00882 c -0.2,0 -0.4,-0.2 -0.9,-2.1 -0.6,-2.2 -0.4,-2.2 -0.3,-2.3 0.2,-0.1 0.3,0.2 0.5,0.7 0.1,0.4 0.3,0.9 0.4,1.4 0.7,2.2 0.5,2.2 0.3,2.3 0,0 0,0 0,0 z" + id="path11-94" /><path + inkscape:connector-curvature="0" + d="m 304.04144,194.40882 c -0.6,0 -1.4,-0.7 -1.8,-1.8 -0.2,-0.6 -0.3,-1.2 -0.3,-1.6 0.1,-0.5 0.3,-0.9 0.6,-1 0.4,-0.1 0.8,0 1.2,0.3 0.4,0.3 0.7,0.8 0.9,1.4 0.5,1.2 0.3,2.4 -0.4,2.7 0,0 -0.1,0 -0.2,0 z m -1.1,-4.1 c -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.3 -0.4,0.7 0,0.4 0,0.9 0.2,1.5 0.4,1.1 1.2,1.7 1.6,1.5 0.4,-0.2 0.6,-1.1 0.2,-2.2 -0.2,-0.5 -0.5,-1 -0.8,-1.2 -0.3,-0.2 -0.5,-0.3 -0.7,-0.3 z" + id="path13-35" /><path + inkscape:connector-curvature="0" + d="m 313.78193,195.91021 c -0.29138,-0.0714 -0.46183,-0.21615 -0.63228,-0.36089 -0.46373,-0.62844 0.0161,-1.74634 1.12834,-2.50337 1.11216,-0.75702 2.27576,-0.88368 2.73949,-0.25523 0.46374,0.62845 -0.0161,1.74635 -1.12833,2.50337 -0.74938,0.53706 -1.52447,0.75894 -2.10722,0.61612 z m 2.50807,-3.09186 c -0.48564,-0.11901 -1.16361,0.12666 -1.79205,0.59039 -0.87031,0.61038 -1.3026,1.53403 -0.98551,1.92062 0.29329,0.48372 1.26263,0.30945 2.13294,-0.30093 0.87031,-0.61038 1.3026,-1.53403 0.98551,-1.92062 -0.0495,-0.21806 -0.14664,-0.24186 -0.34089,-0.28946 z" + id="path15-1" /><path + inkscape:connector-curvature="0" + d="m 319.14469,191.25287 c -0.19425,-0.0477 -0.29137,-0.0714 -0.3647,-0.19234 -0.48754,-0.53133 -0.12857,-1.5759 0.81315,-2.47766 0.94172,-0.90175 2.0558,-1.24647 2.54333,-0.71515 0.24378,0.26567 0.24568,0.67797 0.12666,1.1636 -0.21614,0.46182 -0.52941,0.89984 -0.9398,1.31407 -0.4104,0.41421 -0.89412,0.7075 -1.35403,0.90366 -0.31518,0.0257 -0.63036,0.0514 -0.82461,0.004 z m 2.43475,-3.21279 c -0.38851,-0.0952 -1.06648,0.15046 -1.74253,0.80846 -0.8208,0.82843 -1.13215,1.67875 -0.79126,1.96822 0.17045,0.14473 0.3647,0.19234 0.70369,0.0695 0.43611,-0.099 0.8227,-0.41613 1.20929,-0.73322 0.41039,-0.41422 0.69986,-0.75511 0.79508,-1.14362 0.0952,-0.3885 0.14282,-0.58275 -0.0276,-0.72748 0.0476,-0.19426 -0.0495,-0.21806 -0.14664,-0.24186 z" + id="path17-7" /><path + inkscape:connector-curvature="0" + d="m 316.14717,193.4011 v 0 c -0.17044,-0.14474 -0.41421,-0.41039 1.39781,-1.92253 0.4104,-0.41422 0.89412,-0.7075 1.25691,-0.92747 0.48372,-0.29329 0.70177,-0.34281 0.87222,-0.19807 l 0.0971,0.0238 -0.0238,0.0971 c 0.002,0.4123 -1.15786,1.36358 -1.52065,1.58354 -0.4342,0.51134 -1.6673,1.34168 -2.0796,1.3436 z m 2.60902,-2.24344 c -0.24186,0.14664 -0.60465,0.36661 -0.89411,0.7075 -0.38659,0.31709 -0.65226,0.56086 -0.91792,0.80463 0.24186,-0.14664 0.60465,-0.36661 0.89411,-0.7075 0.38659,-0.3171 0.65226,-0.56087 0.91792,-0.80463 z" + id="path19-4" /><path + inkscape:connector-curvature="0" + d="m 324.96737,186.39938 c -0.19425,-0.0477 -0.29138,-0.0714 -0.46183,-0.21615 -0.24376,-0.26566 -0.3428,-0.70177 -0.22379,-1.1874 0.11901,-0.48563 0.33517,-0.94746 0.72176,-1.26454 0.82079,-0.82844 1.93487,-1.17316 2.42241,-0.64182 0.24377,0.26565 0.3428,0.70177 0.22378,1.18739 -0.11901,0.48563 -0.33516,0.94745 -0.72175,1.26455 v 0 c -0.4104,0.41421 -0.79698,0.7313 -1.23309,0.83034 -0.21806,0.0495 -0.53324,0.0752 -0.72749,0.0276 z m 2.02244,-3.21088 c -0.3885,-0.0952 -1.06647,0.15046 -1.6216,0.73513 -0.28947,0.34089 -0.60274,0.77891 -0.67414,1.07029 -0.0715,0.29137 -0.0457,0.60656 0.12474,0.75129 0.17045,0.14473 0.46183,0.21614 0.80081,0.0933 0.33899,-0.12285 0.7989,-0.31901 1.08837,-0.6599 0.28946,-0.3409 0.60273,-0.77892 0.67415,-1.0703 0.0714,-0.29137 0.0457,-0.60655 -0.12475,-0.75129 -0.0971,-0.0238 -0.17045,-0.14473 -0.26758,-0.16853 z" + id="path21-3" /><path + inkscape:connector-curvature="0" + d="m 321.92033,188.32955 -0.0733,-0.12093 0.0238,-0.0971 c 0.0476,-0.19427 0.57892,-0.6818 1.61777,-1.55975 0.74938,-0.53706 1.64349,-1.24456 1.86155,-1.29408 l 0.0971,0.0238 0.0733,0.12092 -0.0238,0.0971 c -0.0476,0.19425 -0.57894,0.68178 -1.61779,1.55974 v 0 c -0.67605,0.65799 -1.64348,1.24456 -1.95866,1.27028 z" + id="path23-1" /><path + inkscape:connector-curvature="0" + d="m 311.24241,197.44996 -0.0733,-0.12093 0.0238,-0.0971 c 0.0238,-0.0971 -0.0257,-0.31518 1.27879,-1.43691 v 0 c 1.47305,-1.38929 1.54638,-1.26836 1.71681,-1.12363 0.17045,0.14474 0.24378,0.26567 -1.22927,1.65496 -1.40163,1.09792 -1.61969,1.14743 -1.71681,1.12363 z" + id="path25-4" /><path + inkscape:connector-curvature="0" + d="m 305.04144,197.50882 v 0 c -0.2,-0.1 -0.5,-0.8 -0.8,-2 -0.5,-2.1 -0.4,-2.2 -0.2,-2.2 v 0 c 0.2,0 0.3,-0.1 0.9,2 0.3,1.2 0.4,1.9 0.3,2.1 v 0.1 z" + id="path27-6" /><path + inkscape:connector-curvature="0" + d="m 329.69595,180.96886 c 0.0257,0.31518 -0.81888,1.24073 -0.98742,1.50831 v 0 c -0.26566,0.24377 -1.11026,1.16933 -1.42543,1.19505 l -0.0971,-0.0238 -0.0971,-0.0238 c 0,0 0,0 -0.0971,-0.0238 0,0 -0.0733,-0.12094 -0.0733,-0.12094 -0.0258,-0.31517 0.81888,-1.24073 0.98741,-1.5083 0.26566,-0.24378 1.11025,-1.16933 1.42544,-1.19504" + id="path29-9" /><path + inkscape:connector-curvature="0" + d="m 329.0675,181.43259 c -0.24186,0.14665 -0.41039,0.41422 -0.79698,0.73131 -0.28947,0.3409 -0.55514,0.58467 -0.69986,0.75512 0.24185,-0.14665 0.41039,-0.41422 0.79698,-0.73132 v 0 c 0.26566,-0.24376 0.55513,-0.58466 0.69986,-0.75511 z" + id="path31" /><path + d="m 304.24144,196.80882 7.3,0.5 -0.2,3.5 -7.3,-0.4 z" + id="polygon35" + inkscape:connector-curvature="0" /><path + id="path37-4" + d="m 304.74144,197.40882 6.3,0.4 -0.1,2.5 -6.3,-0.4 0.1,-2.5 m -0.5,-0.6 -0.2,3.6 7.3,0.4 0.2,-3.6 z" + inkscape:connector-curvature="0" /><rect + id="rect41" + height="3.399874" + width="7.0997367" + transform="rotate(3.3047751)" + y="178.83395" + x="315.06049" /><path + id="path43-2" + d="m 304.74144,197.30882 6.1,0.4 -0.1,2.4 -6.1,-0.4 0.1,-2.4 m -0.5,-0.6 -0.2,3.4 7.1,0.4 0.2,-3.4 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><text + transform="rotate(3.3047751)" + name="Collar_Text" + x="315.78552" + y="181.51642" + style="font-size:1.96150005px;line-height:0%;font-family:sans-serif;fill:#ff0000" + id="text1009">8888</text> +<path + style="display:inline" + inkscape:connector-curvature="0" + d="m 329.50389,181.73735 c -0.19425,-0.0477 -0.29138,-0.0714 -0.46183,-0.21615 -0.24376,-0.26566 -0.3428,-0.70177 -0.22379,-1.1874 0.11901,-0.48563 0.33517,-0.94746 0.72176,-1.26454 0.82079,-0.82844 1.93487,-1.17316 2.42241,-0.64182 0.24377,0.26565 0.3428,0.70177 0.22378,1.18739 -0.11901,0.48563 -0.33516,0.94745 -0.72175,1.26455 v 0 c -0.4104,0.41421 -0.79698,0.7313 -1.23309,0.83034 -0.21806,0.0495 -0.53324,0.0752 -0.72749,0.0276 z m 2.02244,-3.21088 c -0.3885,-0.0952 -1.06647,0.15046 -1.6216,0.73513 -0.28947,0.34089 -0.60274,0.77891 -0.67414,1.07029 -0.0715,0.29137 -0.0457,0.60656 0.12474,0.75129 0.17045,0.14473 0.46183,0.21614 0.80081,0.0933 0.33899,-0.12285 0.7989,-0.31901 1.08837,-0.6599 0.28946,-0.3409 0.60273,-0.77892 0.67415,-1.0703 0.0714,-0.29137 0.0457,-0.60655 -0.12475,-0.75129 -0.0971,-0.0238 -0.17045,-0.14473 -0.26758,-0.16853 z" + id="path21-3-5" /><path + style="display:inline" + inkscape:connector-curvature="0" + d="m 334.23247,176.30683 c 0.0257,0.31518 -0.81888,1.24073 -0.98742,1.50831 v 0 c -0.26566,0.24377 -1.11026,1.16933 -1.42543,1.19505 l -0.0971,-0.0238 -0.0971,-0.0238 c 0,0 0,0 -0.0971,-0.0238 0,0 -0.0733,-0.12094 -0.0733,-0.12094 -0.0258,-0.31517 0.81888,-1.24073 0.98741,-1.5083 0.26566,-0.24378 1.11025,-1.16933 1.42544,-1.19504" + id="path29-9-9" /><path + style="display:inline" + inkscape:connector-curvature="0" + d="m 333.60402,176.77056 c -0.24186,0.14665 -0.41039,0.41422 -0.79698,0.73131 -0.28947,0.3409 -0.55514,0.58467 -0.69986,0.75512 0.24185,-0.14665 0.41039,-0.41422 0.79698,-0.73132 v 0 c 0.26566,-0.24376 0.55513,-0.58466 0.69986,-0.75511 z" + id="path31-3" /><path + style="display:inline" + inkscape:connector-curvature="0" + d="m 333.76864,177.5389 c -0.19425,-0.0477 -0.29138,-0.0714 -0.46183,-0.21615 -0.24376,-0.26566 -0.3428,-0.70177 -0.22379,-1.1874 0.11901,-0.48563 0.33517,-0.94746 0.72176,-1.26454 0.82079,-0.82844 1.93487,-1.17316 2.42241,-0.64182 0.24377,0.26565 0.3428,0.70177 0.22378,1.18739 -0.11901,0.48563 -0.33516,0.94745 -0.72175,1.26455 v 0 c -0.4104,0.41421 -0.79698,0.7313 -1.23309,0.83034 -0.21806,0.0495 -0.53324,0.0752 -0.72749,0.0276 z m 2.02244,-3.21088 c -0.3885,-0.0952 -1.06647,0.15046 -1.6216,0.73513 -0.28947,0.34089 -0.60274,0.77891 -0.67414,1.07029 -0.0715,0.29137 -0.0457,0.60656 0.12474,0.75129 0.17045,0.14473 0.46183,0.21614 0.80081,0.0933 0.33899,-0.12285 0.7989,-0.31901 1.08837,-0.6599 0.28946,-0.3409 0.60273,-0.77892 0.67415,-1.0703 0.0714,-0.29137 0.0457,-0.60655 -0.12475,-0.75129 -0.0971,-0.0238 -0.17045,-0.14473 -0.26758,-0.16853 z" + id="path21-3-7" /><path + style="display:inline" + inkscape:connector-curvature="0" + d="m 338.49722,172.10838 c 0.0257,0.31518 -0.81888,1.24073 -0.98742,1.50831 v 0 c -0.26566,0.24377 -1.11026,1.16933 -1.42543,1.19505 l -0.0971,-0.0238 -0.0971,-0.0238 c 0,0 0,0 -0.0971,-0.0238 0,0 -0.0733,-0.12094 -0.0733,-0.12094 -0.0258,-0.31517 0.81888,-1.24073 0.98741,-1.5083 0.26566,-0.24378 1.11025,-1.16933 1.42544,-1.19504" + id="path29-9-7" /><path + style="display:inline" + inkscape:connector-curvature="0" + d="m 337.86877,172.57211 c -0.24186,0.14665 -0.41039,0.41422 -0.79698,0.73131 -0.28947,0.3409 -0.55514,0.58467 -0.69986,0.75512 0.24185,-0.14665 0.41039,-0.41422 0.79698,-0.73132 v 0 c 0.26566,-0.24376 0.55513,-0.58466 0.69986,-0.75511 z" + id="path31-6" /></g><g + inkscape:groupmode="layer" + id="Collar_Neck_Corset" + inkscape:label="Collar_Neck_Corset" + style="display:inline;opacity:1"><path + inkscape:connector-curvature="0" + d="m 355.58016,177.90382 c -16.75489,-1.68047 -24.26783,-1.85552 -25.04266,-28.06007 l 0.0614,-2.54085 c -4.44209,8.81484 -9.17434,14.60849 -14.23043,18.88685 -4.61614,3.90609 -9.48739,6.51233 -13.25962,9.74301 l -2.79922,-0.84568 0.24144,6.93439 c -5.15857,4.49938 -19.55545,5.94373 -26.62292,8.06291 -0.5,0.3 -0.26562,0.32812 0.23438,0.52812 4.47439,0.22267 8.86726,0.68988 12.875,2.3125 1.1,0.6 1.9,1.6 2.3,2.8 -2.64855,5.11669 -3.20471,10.23338 -4.70413,15.35007 5.7721,-5.57757 11.41269,-11.23251 19.12659,-15.66784 1.4,-0.8 2.9,-1.4 4.4,-1.8 16.28714,-6.9193 28.71122,-10.2157 47.6202,-14.30341 0.7,-0.2 0.6,-1.3 -0.2,-1.4 z" + id="path1012" + sodipodi:nodetypes="cccsccccccccccccc" /><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 305.2,184.4 c -0.7,0 -1.4,-0.2 -2,-0.5 -1.3,-0.7 -2,-2.1 -2,-3.5 0,-0.7 0.2,-1.4 0.5,-2 0.4,-0.7 1,-1.3 1.7,-1.6 0.2,-0.1 0.5,0 0.7,0.2 0.1,0.2 0,0.5 -0.2,0.7 -0.5,0.3 -1,0.7 -1.3,1.2 -0.3,0.5 -0.4,1 -0.4,1.5 0,1.1 0.6,2.1 1.5,2.7 0.5,0.3 1,0.4 1.5,0.4 1.1,0 2.1,-0.6 2.7,-1.5 0.3,-0.5 0.4,-1 0.4,-1.5 0,-1.1 -0.6,-2.1 -1.5,-2.7 -0.2,-0.1 -0.3,-0.4 -0.2,-0.7 0.1,-0.2 0.4,-0.3 0.7,-0.2 1.3,0.7 2,2.1 2,3.5 0,0.7 -0.2,1.4 -0.5,2 -0.8,1.2 -2.2,2 -3.6,2 z" + id="path8-4" /></g><g + inkscape:groupmode="layer" + id="Collar_Gold_Heavy" + inkscape:label="Collar_Gold_Heavy" + style="display:inline"><path + inkscape:connector-curvature="0" + d="m 342.07604,173.74841 c 7.7e-4,0.44722 -0.1327,0.84994 -0.1768,1.20779 -2.98271,7.87613 -33.43077,15.30497 -36.83077,15.00497 -6.1,-0.5 -7.7,-5.8 -7.9,-6.3 -0.7,-2.1 -0.5,-5.2 0.8,-6.4 1.3,-1.4 2.5,-1.4 3.3,0.7 -0.90837,0.3063 19.4784,5.06534 35.16441,-8.98819 0.62323,-1.65577 2.32272,-1.61399 3.84618,0.0828 1.12036,1.33971 1.83915,3.21676 1.79698,4.69264" + id="path7-2" + style="fill:#f2f24c" + sodipodi:nodetypes="ccccccccc" /><path + inkscape:connector-curvature="0" + d="m 305.36847,189.56117 c -6,0 -7.8,-4.9 -8,-5.3 -0.8,-1.9 -0.7,-4.8 0.5,-6.1 1.2,-1.4 2.4,-1.5 3.2,0.4 -0.48772,0.48643 14.15539,5.63962 34.55935,-9.63152 1.35866,-1.01687 2.18848,-1.65847 3.66668,-0.27467 1.52307,1.47317 2.28751,3.88681 1.75364,5.4977 -2.58037,7.786 -32.37967,15.40849 -35.67967,15.40849 z" + id="path9-88" + style="fill:#f7d548" + sodipodi:nodetypes="scccscss" /><path + inkscape:connector-curvature="0" + d="m 305.03588,194.23829 c -0.35,0 -0.7,-0.05 -1.0375,-0.1375 -0.3375,-0.0875 -0.6625,-0.2125 -0.9625,-0.3625 -0.65,-0.35 -1.15,-0.875 -1.4875,-1.4875 -0.3375,-0.6125 -0.5125,-1.3125 -0.5125,-2.0125 0,-0.35 0.05,-0.7 0.1375,-1.0375 0.0875,-0.3375 0.2125,-0.6625 0.3625,-0.9625 0.2,-0.35 0.45,-0.675 0.7375,-0.95 0.2875,-0.275 0.6125,-0.5 0.9625,-0.65 0.1,-0.05 0.225,-0.05 0.35,-0.0125 0.125,0.0375 0.25,0.1125 0.35,0.2125 0.05,0.1 0.05,0.225 0.0125,0.35 -0.0375,0.125 -0.1125,0.25 -0.2125,0.35 -0.25,0.15 -0.5,0.325 -0.725,0.525 -0.225,0.2 -0.425,0.425 -0.575,0.675 -0.15,0.25 -0.25,0.5 -0.3125,0.75 -0.0625,0.25 -0.0875,0.5 -0.0875,0.75 0,0.55 0.15,1.075 0.4125,1.5375 0.2625,0.4625 0.6375,0.8625 1.0875,1.1625 0.25,0.15 0.5,0.25 0.75,0.3125 0.25,0.0625 0.5,0.0875 0.75,0.0875 0.55,0 1.075,-0.15 1.5375,-0.4125 0.4625,-0.2625 0.8625,-0.6375 1.1625,-1.0875 0.15,-0.25 0.25,-0.5 0.3125,-0.75 0.0625,-0.25 0.0875,-0.5 0.0875,-0.75 0,-0.55 -0.15,-1.075 -0.4125,-1.5375 -0.2625,-0.4625 -0.6375,-0.8625 -1.0875,-1.1625 -0.1,-0.05 -0.175,-0.15 -0.2125,-0.275 -0.0375,-0.125 -0.0375,-0.275 0.0125,-0.425 0.05,-0.1 0.15,-0.175 0.275,-0.2125 0.125,-0.0375 0.275,-0.0375 0.425,0.0125 0.65,0.35 1.15,0.875 1.4875,1.4875 0.3375,0.6125 0.5125,1.3125 0.5125,2.0125 0,0.35 -0.05,0.7 -0.1375,1.0375 -0.0875,0.3375 -0.2125,0.6625 -0.3625,0.9625 -0.4,0.6 -0.925,1.1 -1.5375,1.45 -0.6125,0.35 -1.3125,0.55 -2.0625,0.55 z" + id="path11-8" + style="fill:#fefff2" + sodipodi:nodetypes="sscssscscscscssssscssscssscscscssscss" /></g><g + inkscape:groupmode="layer" + id="Collar_Retirement_Cruel" + inkscape:label="Collar_Retirement_Cruel" + style="display:inline"><path + inkscape:connector-curvature="0" + class="steel_chastity" + d="m 305.66645,184.3391 c -6.28524,0 -8.23193,-2.44977 -8.1875,-2.63125 -0.8,-0.8 -0.7,-2 0.5,-2.5 1.2,-0.6 2.51153,-0.69778 3.2,0.2 0.95461,1.24484 24.33056,-1.66153 35.65,-6.85 1.2,-0.5 2.7,-0.2 3.4,0.6 0.7,0.8 0.28345,2.06988 0.28345,2.06988 -1.41696,5.52614 -31.75546,9.11137 -34.84594,9.11137 z" + id="path13-33" + sodipodi:nodetypes="sccscscss" /><path + d="m 302.07895,180.40785 h 7.2 l -0.5,2.9 h -6.2 z" + id="polygon17" + inkscape:connector-curvature="0" /><path + id="path19-8" + d="m 308.77895,180.90785 v 2.4 h -6.1 v -2.4 h 6.1 m 0.5,-0.5 -7.3,-0.1 0.2,3 h 7.1 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><text + id="text21" + name="Collar_Text" + x="302.81207" + y="183.04065" + style="font-size:1.96150005px;line-height:0%;font-family:sans-serif;fill:#ff0000">8888</text> +</g><g + inkscape:groupmode="layer" + id="Collar_Cowbell" + inkscape:label="Collar_Cowbell" + style="display:inline"><path + id="path9-8" + d="m 300.925,176.875 c 1.8,1 23.0875,-2.8375 32.6875,-8.3375 0.3,-0.2 0.6,0 0.7,0.3 l 1.8875,2.71875 c 0,0.2 -0.1,0.4 -0.2,0.5 -5.6,3.3 -26.1375,9.51875 -29.4375,9.51875 -5.2,0 -6.5375,0.2 -7.0375,-0.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.5 0.6,-0.4 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccscccc" /><path + d="m 297.17442,186.03142 9.80069,2.63749 2.01146,23.34275 -22.06661,-4.46708 -2.81659,-5.63621 z" + id="polygon12" + inkscape:connector-curvature="0" /><path + id="path14" + d="m 304.28395,193.89936 -6.61047,-1.70345 2.965,-11.16552 6.59411,1.80211 z m -5.23045,-2.69116 4.37409,1.13019 2.35903,-8.73184 -4.37409,-1.13019 z" + inkscape:connector-curvature="0" /><path + id="path16" + d="m 303.97048,192.73243 -6.79143,-1.8348 2.73557,-10.39263 6.79143,1.8348 z m -5.34545,-2.60885 4.47274,1.14653 2.14596,-8.0576 -4.47275,-1.14653 z" + class="steel_chastity" + inkscape:connector-curvature="0" /><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"><path + transform="translate(-220)" + style="fill:#070505" + d="m 523.375,164.2125 -2.6,-6.8 c 12.75713,-2.94492 23.23175,-9.45485 32.075,-18.5625 l -2.2375,8.65 c -7.51195,8.76554 -17.68909,12.0982 -27.2375,16.7125 z" + id="XMLID_892_" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /><path + style="display:inline;fill:#070505" + d="m 293.22989,164.19677 -0.18125,-6.175 c -9.86299,-0.39059 -15.54142,-2.51766 -23.98953,-7.65228 1.68204,3.01591 3.32107,6.03183 5.86142,9.04775 5.59927,3.72945 11.74667,3.21777 18.30936,4.77953 z" + id="XMLID_892_-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /><ellipse + ry="8.6999998" + rx="7.5999999" + cy="161.16251" + cx="298.51154" + class="gag" + id="XMLID_893_" /><path + inkscape:connector-curvature="0" + d="m 306.02067,162.97491 -2.0677,2.89842 -5.39788,1.58688 -2.82555,-0.10895 -1.88734,-0.62251 -1.38183,-1.34784 -1.2286,-1.56979 1.06304,4.39723 6.7635,2.54005 5.76357,-2.47077 z" + class="skin" + id="path6092-9-0" + sodipodi:nodetypes="ccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 302.62164,169.71603 c -1.74238,0.53615 -2.60522,0.4584 -4.21391,0.59078 1.90231,1.18953 3.69017,1.02552 4.21391,-0.59078 z" + class="shadow" + id="path6086" + sodipodi:nodetypes="ccc" + inkscape:transform-center-x="-0.11271335" + inkscape:transform-center-y="0.18012958" /><path + inkscape:connector-curvature="0" + d="m 304.91055,156.29042 -2.41768,-3.28171 -5.11224,-1.06107 -5.04732,2.60438 -0.83575,3.32702 1.24872,-0.83125 8.84286,-1.44319 1.18295,-0.0262 z" + class="skin" + id="path6092-9" + sodipodi:nodetypes="ccccccccc" /><path + inkscape:connector-curvature="0" + d="m 295.20052,154.26071 c -2.3361,0.18741 -2.33066,0.35817 -4.0167,1.55377 1.655,-0.6968 2.23834,-1.20495 4.0167,-1.55377 z" + class="shadow" + id="path6090" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 304.161,154.50746 c -2.57764,-0.30209 -3.84681,-1.5219 -6.16236,-0.68113 1.75915,-0.36046 4.35011,0.67624 6.16236,0.68113 z" + class="shadow" + id="path6092" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 299.04326,167.07067 c -0.13152,0.022 -0.40257,0.12733 -0.53126,0.14693 -0.43426,0.066 -0.66116,0.11591 -0.9949,0.11275 -0.32669,-0.003 -0.64714,-0.0906 -0.9716,-0.12883 -0.39646,-0.0467 -0.8023,-0.0332 -1.19129,-0.1229 -0.4284,-0.0988 -0.70933,-0.26528 -1.2387,-0.45306 -0.77848,-0.27614 -2.88068,-2.86681 -2.88068,-2.86681 0,0 1.49812,2.61596 2.79901,3.13737 3.08136,1.23506 6.83182,0.62648 9.92721,-0.79502 0.85817,-0.39411 2.09247,-3.26423 2.09247,-3.26423 0,0 -1.38905,2.28638 -2.22782,2.75017 -0.83878,0.46378 -1.81847,0.80943 -2.77091,1.08765 -0.65596,0.19162 -1.81889,0.36368 -2.01153,0.39598 z" + class="shadow" + id="path6088-1" + sodipodi:nodetypes="ssaaascasccas" /><path + inkscape:connector-curvature="0" + d="m 301.42603,155.31779 c -1.28714,0.38629 -2.48719,0.72941 -3.60885,0.9432 -0.19845,0.0378 -0.36644,-0.0156 -0.55908,0.0167 -0.13152,0.022 -0.28928,0.13121 -0.41797,0.15079 -0.43426,0.066 -0.85211,0.11837 -1.2517,0.15887 -0.18968,0.0192 -0.37524,-0.0526 -0.55649,-0.0385 -0.18537,0.0144 -0.36623,0.11468 -0.54237,0.1242 -0.77914,0.0421 -1.28226,-0.0804 -1.68445,0.0447 -0.56144,0.17459 -1.39365,1.2375 -1.39365,1.2375 0,0 1.11202,-0.73807 1.36276,-0.82425 0.25074,-0.0862 5.13658,0.10226 8.25323,-1.27205 0.8774,-0.3869 2.03092,-0.18331 3.83075,0.45061 -1.71452,-1.0529 -3.04021,-1.10941 -3.43218,-0.99177 z" + class="shadow" + id="path6088-5" + sodipodi:nodetypes="ssssssssczscs" /><path + inkscape:connector-curvature="0" + d="m 306.00314,162.68917 c 0.82424,1.59261 -0.25293,4.15034 -0.18904,5.79891 0.0911,2.35063 0.32668,3.5911 0.37952,5.03581 1.6367,0.3233 0.5575,-1.65754 0.30956,-2.60214 -0.29108,-1.10897 -0.42575,-1.27143 -0.51903,-2.48708 -0.1298,-1.69155 1.24547,-4.2508 0.019,-5.7455 z" + class="highlightStrong" + id="path6086-7" + sodipodi:nodetypes="cscsscc" + inkscape:transform-center-x="0.11270875" + inkscape:transform-center-y="0.18012958" /><path + inkscape:connector-curvature="0" + d="m 291.15378,163.72407 c -0.16856,1.30377 1.45269,2.69973 1.87939,4.09263 0.53262,1.73866 0.85951,3.42387 1.37577,4.68809 -1.35851,0.96837 -1.26851,-1.95297 -1.43138,-2.91589 -0.11777,-0.69625 -0.20232,-0.84009 -0.3062,-1.37611 -0.29951,-1.54531 -1.83304,-2.52165 -1.51758,-4.48872 z" + class="highlightStrong" + id="path6086-7-7" + sodipodi:nodetypes="cscssc" + inkscape:transform-center-x="-0.45383565" + inkscape:transform-center-y="0.091816717" /><path + inkscape:connector-curvature="0" + d="m 305.98681,162.86279 c 0.3563,1.7575 -1.38048,3.92219 -1.77075,5.52517 -0.55648,2.28563 -0.79481,6.07442 -1.13986,7.47832 1.31025,1.89023 1.36569,-0.045 1.29978,-1.65992 -0.0468,-1.14558 -0.13923,-4.46443 0.10418,-5.65911 0.33867,-1.66238 2.27663,-3.9109 1.50666,-5.68446 z" + class="highlightStrong" + id="path6086-7-0" + sodipodi:nodetypes="cscsscc" + inkscape:transform-center-x="0.11270875" + inkscape:transform-center-y="0.18012958" /></g><g + inkscape:label="Bit_Gag" + style="display:inline" + id="Bit_Gag" + inkscape:groupmode="layer"><path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1228" + d="m 529.28859,160.06078 -1.00625,-4.3 c 13.50884,-2.39103 21.6049,-8.96251 24.56766,-16.91078 l -2.2375,8.65 c -4.5049,6.14649 -11.54337,7.7443 -21.32391,12.56078 z" + style="fill:#070505" + transform="translate(-220)" /><path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1230" + d="m 287.60397,163.73515 -0.11875,-4.39375 c -11.01207,0.032 -15.30758,-3.90726 -18.42611,-8.97191 1.68204,3.01591 3.32107,6.03183 5.86142,9.04775 4.97651,1.7366 6.12074,2.75612 12.68344,4.31791 z" + style="display:inline;fill:#070505" /><path + inkscape:connector-curvature="0" + d="m 307.0697,162.35378 -2.15252,-6.06594 -9.84101,-0.30977 -5.04732,2.60438 -0.39381,4.12252 1.91163,3.10203 12.51098,0.36877 1.18295,-0.0262 z" + class="skin" + id="path6092-9-1" + sodipodi:nodetypes="ccccccccc" /><path + inkscape:transform-center-y="0.18012958" + inkscape:transform-center-x="0.11270875" + sodipodi:nodetypes="cscsscc" + id="path1248" + class="highlightStrong" + d="m 303.88182,159.68397 c 0.82424,1.59261 1.86839,7.15554 1.93228,8.80411 0.0911,2.35063 0.32668,3.5911 0.37952,5.03581 1.6367,0.3233 0.5575,-1.65754 0.30956,-2.60214 -0.29108,-1.10897 -0.42575,-1.27143 -0.51903,-2.48708 -0.1298,-1.69155 -0.87585,-7.256 -2.10232,-8.7507 z" + inkscape:connector-curvature="0" /><path + inkscape:transform-center-y="0.091816717" + inkscape:transform-center-x="-0.45383565" + sodipodi:nodetypes="cscssc" + id="path1250" + class="highlightStrong" + d="m 293.18671,161.47017 c -0.16856,1.30377 -0.58024,4.95363 -0.15354,6.34653 0.53262,1.73866 0.85951,3.42387 1.37577,4.68809 -1.35851,0.96837 -1.26851,-1.95297 -1.43138,-2.91589 -0.11777,-0.69625 -0.20232,-0.84009 -0.3062,-1.37611 -0.29951,-1.54531 0.19989,-4.77555 0.51535,-6.74262 z" + inkscape:connector-curvature="0" /><path + inkscape:transform-center-y="0.18012958" + inkscape:transform-center-x="0.11270875" + sodipodi:nodetypes="cscsscc" + id="path1252" + class="highlightStrong" + d="m 303.755,159.65871 c 0.3563,1.7575 0.85133,7.12627 0.46106,8.72925 -0.55648,2.28563 -0.79481,6.07442 -1.13986,7.47832 1.31025,1.89023 1.36569,-0.045 1.29978,-1.65992 -0.0468,-1.14558 -0.13923,-4.46443 0.10418,-5.65911 0.33867,-1.66238 0.0448,-7.11498 -0.72515,-8.88854 z" + inkscape:connector-curvature="0" /><circle + id="circle1133-2" + class="steel_piercing" + cx="308.61899" + cy="157.93527" + r="2.25" /><circle + id="circle1133-7" + class="steel_piercing" + cx="287.7959" + cy="161.52223" + r="2.25" /><path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1230-5" + d="m 307.69511,158.62698 -0.17297,-0.81105 -3.86456,1.21173 c -0.0334,0.23738 -0.086,0.48025 0.0798,0.66071 z" + class="steel_piercing" /><path + class="steel_piercing" + d="m 293.26019,161.53274 c 0.0776,-0.2002 0.0362,-0.38058 -0.0625,-0.55141 l -4.4735,0.3679 0.15998,0.64652 z" + id="path1323" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /><path + sodipodi:nodetypes="ccc" + id="path1374" + class="shadow" + d="m 300.67907,164.2443 c -1.74079,0.54129 -2.60386,0.46609 -4.21215,0.60322 1.90581,1.1839 3.69318,1.01462 4.21215,-0.60322 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="assssssssaassaa" + id="path1376" + class="shadow" + d="m 304.16836,158.89728 c -0.65754,-0.15935 -1.25886,0.90901 -1.72778,1.06512 -1.27505,0.42448 -2.48719,0.72941 -3.60885,0.9432 -0.19845,0.0378 -0.36644,-0.0156 -0.55908,0.0167 -0.13152,0.022 -0.28928,0.13121 -0.41797,0.15079 -0.43426,0.066 -0.85211,0.11837 -1.2517,0.15887 -0.18968,0.0192 -0.37524,-0.0526 -0.55649,-0.0385 -0.18537,0.0144 -0.36623,0.11468 -0.54237,0.1242 -0.77914,0.0421 -1.26351,0.0593 -1.68445,0.0447 -0.26066,-0.009 -0.48867,-0.56649 -0.76394,-0.45611 -0.17938,0.0719 -0.27191,0.40524 -0.15456,0.5588 0.19626,0.2568 0.83404,-0.025 0.96964,-0.004 2.70837,0.41982 6.3844,-0.15314 9.47979,-1.57468 0.85817,-0.39411 1.04035,0.0106 1.1865,-0.37786 0.0838,-0.2227 -0.13749,-0.55517 -0.36874,-0.61121 z" + inkscape:connector-curvature="0" /><path + sodipodi:nodetypes="ccc" + id="path1378" + class="shadow" + d="m 301.37797,158.85176 c -1.48115,-0.33094 -1.90064,-0.66259 -3.53037,0.43264 0.92533,-0.58981 2.22192,-0.63997 3.53037,-0.43264 z" + inkscape:connector-curvature="0" /><path + inkscape:connector-curvature="0" + d="m 297.00827,159.30416 c -1.14969,-0.43141 -1.46342,-0.22949 -2.47508,0.37718 0.97221,-0.32418 1.20482,-0.53261 2.47508,-0.37718 z" + class="shadow" + id="path1380" + sodipodi:nodetypes="ccc" /></g><g + inkscape:groupmode="layer" + id="Dildo_Gag" + style="display:inline" + inkscape:label="Dildo_Gag"><path + transform="translate(-220)" + style="fill:#070505" + d="m 523.375,164.2125 -2.6,-6.8 c 12.75713,-2.94492 23.23175,-9.45485 32.075,-18.5625 l -2.2375,8.65 c -7.51195,8.76554 -17.68909,12.0982 -27.2375,16.7125 z" + id="path1259" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /><path + style="display:inline;fill:#070505" + d="m 293.22989,164.19677 -0.18125,-6.175 c -9.86299,-0.39059 -15.54142,-2.51766 -23.98953,-7.65228 1.68204,3.01591 3.32107,6.03183 5.86142,9.04775 5.59927,3.72945 11.74667,3.21777 18.30936,4.77953 z" + id="path1261" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /><ellipse + ry="8.6999998" + rx="7.5999999" + cy="161.16251" + cx="298.51154" + class="gag" + id="ellipse1263" /><path + inkscape:connector-curvature="0" + d="m 306.02067,162.97491 -2.0677,2.89842 -5.39788,1.58688 -2.82555,-0.10895 -1.88734,-0.62251 -1.38183,-1.34784 -1.2286,-1.56979 1.06304,4.39723 6.7635,2.54005 5.76357,-2.47077 z" + class="skin" + id="path1265" + sodipodi:nodetypes="ccccccccccc" /><path + inkscape:connector-curvature="0" + d="m 302.62164,169.71603 c -1.74238,0.53615 -2.60522,0.4584 -4.21391,0.59078 1.90231,1.18953 3.69017,1.02552 4.21391,-0.59078 z" + class="shadow" + id="path1267" + sodipodi:nodetypes="ccc" + inkscape:transform-center-x="-0.11271335" + inkscape:transform-center-y="0.18012958" /><path + inkscape:connector-curvature="0" + d="m 304.91055,156.29042 -2.41768,-3.28171 -5.11224,-1.06107 -5.04732,2.60438 -0.83575,3.32702 1.24872,-0.83125 8.84286,-1.44319 1.18295,-0.0262 z" + class="skin" + id="path1269" + sodipodi:nodetypes="ccccccccc" /><path + inkscape:connector-curvature="0" + d="m 295.20052,154.26071 c -2.3361,0.18741 -2.33066,0.35817 -4.0167,1.55377 1.655,-0.6968 2.23834,-1.20495 4.0167,-1.55377 z" + class="shadow" + id="path1271" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 304.161,154.50746 c -2.57764,-0.30209 -3.84681,-1.5219 -6.16236,-0.68113 1.75915,-0.36046 4.35011,0.67624 6.16236,0.68113 z" + class="shadow" + id="path1273" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 299.04326,167.07067 c -0.13152,0.022 -0.40257,0.12733 -0.53126,0.14693 -0.43426,0.066 -0.66116,0.11591 -0.9949,0.11275 -0.32669,-0.003 -0.64714,-0.0906 -0.9716,-0.12883 -0.39646,-0.0467 -0.8023,-0.0332 -1.19129,-0.1229 -0.4284,-0.0988 -0.70933,-0.26528 -1.2387,-0.45306 -0.77848,-0.27614 -2.88068,-2.86681 -2.88068,-2.86681 0,0 1.49812,2.61596 2.79901,3.13737 3.08136,1.23506 6.83182,0.62648 9.92721,-0.79502 0.85817,-0.39411 2.09247,-3.26423 2.09247,-3.26423 0,0 -1.38905,2.28638 -2.22782,2.75017 -0.83878,0.46378 -1.81847,0.80943 -2.77091,1.08765 -0.65596,0.19162 -1.81889,0.36368 -2.01153,0.39598 z" + class="shadow" + id="path1275" + sodipodi:nodetypes="ssaaascasccas" /><path + inkscape:connector-curvature="0" + d="m 301.42603,155.31779 c -1.28714,0.38629 -2.48719,0.72941 -3.60885,0.9432 -0.19845,0.0378 -0.36644,-0.0156 -0.55908,0.0167 -0.13152,0.022 -0.28928,0.13121 -0.41797,0.15079 -0.43426,0.066 -0.85211,0.11837 -1.2517,0.15887 -0.18968,0.0192 -0.37524,-0.0526 -0.55649,-0.0385 -0.18537,0.0144 -0.36623,0.11468 -0.54237,0.1242 -0.77914,0.0421 -1.28226,-0.0804 -1.68445,0.0447 -0.56144,0.17459 -1.39365,1.2375 -1.39365,1.2375 0,0 1.11202,-0.73807 1.36276,-0.82425 0.25074,-0.0862 5.13658,0.10226 8.25323,-1.27205 0.8774,-0.3869 2.03092,-0.18331 3.83075,0.45061 -1.71452,-1.0529 -3.04021,-1.10941 -3.43218,-0.99177 z" + class="shadow" + id="path1277" + sodipodi:nodetypes="ssssssssczscs" /><path + inkscape:connector-curvature="0" + d="m 306.00314,162.68917 c 0.82424,1.59261 -0.25293,4.15034 -0.18904,5.79891 0.0911,2.35063 0.32668,3.5911 0.37952,5.03581 1.6367,0.3233 0.5575,-1.65754 0.30956,-2.60214 -0.29108,-1.10897 -0.42575,-1.27143 -0.51903,-2.48708 -0.1298,-1.69155 1.24547,-4.2508 0.019,-5.7455 z" + class="highlightStrong" + id="path1279" + sodipodi:nodetypes="cscsscc" + inkscape:transform-center-x="0.11270875" + inkscape:transform-center-y="0.18012958" /><path + inkscape:connector-curvature="0" + d="m 291.15378,163.72407 c -0.16856,1.30377 1.45269,2.69973 1.87939,4.09263 0.53262,1.73866 0.85951,3.42387 1.37577,4.68809 -1.35851,0.96837 -1.26851,-1.95297 -1.43138,-2.91589 -0.11777,-0.69625 -0.20232,-0.84009 -0.3062,-1.37611 -0.29951,-1.54531 -1.83304,-2.52165 -1.51758,-4.48872 z" + class="highlightStrong" + id="path1281" + sodipodi:nodetypes="cscssc" + inkscape:transform-center-x="-0.45383565" + inkscape:transform-center-y="0.091816717" /><path + inkscape:connector-curvature="0" + d="m 305.98681,162.86279 c 0.3563,1.7575 -1.38048,3.92219 -1.77075,5.52517 -0.55648,2.28563 -0.79481,6.07442 -1.13986,7.47832 1.31025,1.89023 1.36569,-0.045 1.29978,-1.65992 -0.0468,-1.14558 -0.13923,-4.46443 0.10418,-5.65911 0.33867,-1.66238 2.27663,-3.9109 1.50666,-5.68446 z" + class="highlightStrong" + id="path1283" + sodipodi:nodetypes="cscsscc" + inkscape:transform-center-x="0.11270875" + inkscape:transform-center-y="0.18012958" /><path + inkscape:connector-curvature="0" + d="m 319.68491,173.84249 c 0.57969,-4.07993 0.531,-7.45638 -0.21061,-10.62401 1.11705,2.93421 1.43241,7.45321 0.21061,10.62401 z" + class="shadow" + id="XMLID_511_-1-84" + sodipodi:nodetypes="ccc" /><path + inkscape:connector-curvature="0" + d="m 313.35681,181.56712 c -5.6537,3.26843 -5.7874,1.7965 -10.91614,0.7136 5.28746,2.43499 5.52276,3.14938 10.91614,-0.7136 z" + class="shadow" + id="XMLID_511_-1-84-6" + sodipodi:nodetypes="ccc" /></g><g + id="Glasses" + inkscape:groupmode="layer" + inkscape:label="Glasses" + style="display:inline"><path + class="glasses" + d="m 263.69962,134.32933 c -0.0223,1.17276 0.2728,5.95704 1.9373,7.41 1.64409,1.33977 5.69174,1.26671 10.28071,0.7898 5.04176,-0.55856 7.66562,-0.91484 9.00537,-2.55894 1.7313,-2.06531 1.42698,-7.54917 1.14121,-9.13387 1.01873,-0.18372 1.92428,-0.34702 2.92261,-0.64391 1.13194,-0.20413 2.15068,-0.38784 3.16942,-0.57154 -0.0334,1.75914 0.23938,7.71618 2.70552,9.72582 1.08925,0.85544 2.8985,1.8148 13.13787,-0.3823 12.27685,-2.5645 13.66856,-4.56858 14.05081,-5.68939 0.87772,-2.26202 -0.0241,-7.17061 -0.78309,-8.78686 6.45204,-1.1635 12.88364,-2.44019 19.33566,-3.60368 l 0.42866,2.37706 -17.67859,3.07111 c 0.35816,1.3379 0.70515,5.76219 -0.12056,7.66422 -0.47504,1.25441 -2.0319,3.6389 -14.80235,6.05866 -11.16533,2.2472 -13.26218,0.98908 -14.37186,0.0204 -1.93171,-1.63851 -2.49398,-6.60836 -2.57378,-8.34709 -1.01872,0.18371 -3.0562,0.55114 -4.07495,0.73484 0.11132,1.26554 0.1596,5.97746 -1.13934,7.84794 -1.59771,2.1581 -4.44794,2.55521 -10.05565,3.21583 -4.92857,0.53814 -9.29539,0.78561 -11.00071,-0.89372 -1.26369,-1.17462 -1.56988,-5.37253 -1.64039,-6.41167 0.0316,-0.47318 0.0427,-1.05957 0.12613,-1.89275 z" + inkscape:connector-curvature="0" + id="path654" + sodipodi:nodetypes="ccccccccccccccccccccccccc" /></g></g><g + inkscape:groupmode="layer" + id="Hair_Fore_" + style="display:inline;opacity:1" + inkscape:label="Hair_Fore_"><g + inkscape:label="Hair_Fore_Messy" + style="display:inline;opacity:1" + id="Hair_Fore_Messy" + inkscape:groupmode="layer"><path + d="m 241.975,110.6 c -1.78889,25.64584 13.52447,45.19782 13.5625,45.175 -1.93899,-6.02162 -4.58574,-12.04324 -6.97785,-18.06486 3.80697,8.13875 8.97898,15.89019 19.45631,22.2992 -2.08533,-7.6352 -4.33537,-15.22335 -6.8328,-22.74081 2.87527,5.97812 6.73613,9.81795 12.38979,12.89733 -3.61707,-14.84432 -7.05785,-30.0097 -0.20207,-43.9675 2.95065,11.50283 10.38806,22.91156 24.51355,33.74186 -2.19377,-4.67914 -5.03254,-8.97127 -7.79276,-13.31053 3.76977,5.00946 8.11797,9.67031 13.44317,13.6813 -3.7337,-13.44579 -9.20375,-39.90723 -9.25786,-39.88694 8.45882,11.95774 21.21779,15.10832 22.939,44.10919 0.23524,0.0336 6.86184,-14.38832 6.60844,-23.34903 0.2151,0.0329 4.42164,16.16542 -0.40215,30.04238 -1.93115,5.55548 10.3178,-13.24469 11.516,-21.36538 2.91289,-19.74187 6.7127,-64.98074 -48.45534,-66.556006 C 264.42918,62.675482 246.76963,71.395231 241.975,110.6 Z" + class="shadow" + inkscape:connector-curvature="0" + id="path1681" + sodipodi:nodetypes="cccccccccccccsssc" /><path + sodipodi:nodetypes="cccccccccccccsssc" + id="path1683" + inkscape:connector-curvature="0" + class="hair" + d="m 241.975,110.6 c -1.0875,25.225 13.5625,45.175 13.5625,45.175 l -6.97785,-18.06486 c 4.23979,7.99448 9.29204,15.78584 19.45631,22.2992 l -6.8328,-22.74081 c 2.89723,5.94738 7.23848,9.11466 12.38979,12.89733 -4.08726,-15.18017 -7.40894,-30.26048 -0.20207,-43.9675 3.14245,11.40693 10.8749,22.66814 24.51355,33.74186 l -7.79276,-13.31053 c 4.14732,4.78293 8.31761,9.55053 13.44317,13.6813 -4.51523,-13.15272 -9.25786,-39.88694 -9.25786,-39.88694 8.66286,11.92373 21.69635,15.02856 22.939,44.10919 0,0 6.3016,-14.46835 6.60844,-23.34903 0.35004,-0.0121 5.13718,16.06244 -0.40215,30.04238 -2.17162,5.48065 9.98837,-13.42046 11.516,-21.36538 3.74614,-19.48304 6.08578,-64.724224 -48.19017,-66.114064 C 264.81038,63.185388 247.12665,71.633243 241.975,110.6 Z" /></g><g + inkscape:groupmode="layer" + id="Hair_Fore_Neat" + style="display:inline;opacity:1" + inkscape:label="Hair_Fore_Neat"><path + sodipodi:nodetypes="ccccccccccccccccccc" + id="path1711" + inkscape:connector-curvature="0" + class="shadow" + d="m 248.60413,106.18058 c -2.04734,26.40395 6.13148,51.98561 15.97494,70.1677 4.39713,6.72978 7.52187,7.37748 13.18887,11.71429 -1.1884,-0.16181 -8.46893,-29.0279 -8.41476,-28.94744 0.31529,1.07194 0.40623,1.233 1.2243,1.66065 -0.57569,0.34074 -5.13572,-33.2968 -4.5736,-40.02567 0.0682,0.91859 0.28487,1.78907 1.05455,2.47391 0.12279,-1.77728 3.30483,-13.8038 6.31245,-17.02566 3.19925,12.14534 28.96714,0.6572 42.54477,10.93767 -3.15657,-3.47155 -6.95408,-6.9054 -10.57699,-10.34952 3.96079,4.9135 14.62203,11.63192 14.7248,11.55998 -1.62157,-3.30049 -2.95395,-6.2972 -2.01001,-7.84616 0.53325,4.44201 7.68041,9.37749 10.5675,32.53133 0.42131,-0.97927 0.80084,-2.01078 1.05646,-3.19717 -0.17802,0 -0.9094,15.09511 -0.56915,18.22406 -0.85119,8.02927 -2.22823,15.58067 -4.54317,26.28104 6.10335,-4.24216 13.68515,-6.89944 16.71199,-13.48875 10.24425,-4.37842 19.01551,-107.842635 -45.69015,-99.413908 -19.19936,0.410451 -36.53562,-0.758031 -46.9828,34.743648 z" /><path + d="m 248.60413,106.18058 c -1.66902,26.21479 6.74136,51.68067 15.97494,70.1677 4.56517,6.26767 7.57687,7.22623 13.18887,11.71429 -1.27999,-0.14349 -8.66373,-28.98894 -8.41476,-28.94744 0.36079,1.05894 0.50254,1.20548 1.2243,1.66065 -1.0537,0.28099 -5.60048,-33.3549 -4.5736,-40.02567 0.16654,0.89401 0.42097,1.75505 1.05455,2.47391 0,-1.81236 3.02827,-13.88282 6.31245,-17.02566 3.14245,11.40693 28.90612,-0.13605 42.54477,10.93767 l -10.57699,-10.34952 c 4.14732,4.78293 14.7248,11.55998 14.7248,11.55998 -1.93032,-3.36224 -3.23417,-6.35324 -2.01001,-7.84616 0.59719,4.40649 8.55665,8.89069 10.5675,32.53133 l 1.05646,-3.19717 c 0,0 -0.41355,15.09511 -0.56915,18.22406 -0.39068,7.85658 -1.74604,15.39985 -4.54317,26.28104 6.00366,-4.292 12.93954,-7.27225 16.71199,-13.48875 8.76503,-5.55068 19.18463,-106.244216 -45.69015,-99.413908 -19.18263,1.258572 -35.55712,-0.07776 -46.9828,34.743648 z" + class="hair" + inkscape:connector-curvature="0" + id="path1707" + sodipodi:nodetypes="ccccccccccccccscccc" /></g><g + inkscape:label="Hair_Fore_Bun" + style="display:inline;opacity:1" + id="Hair_Fore_Bun" + inkscape:groupmode="layer"><path + d="m 257.9291,106.09219 c -0.19133,-0.0554 -2.9316,20.06637 7.31403,35.72092 l 1.2243,1.66065 c -1.0829,-2.32949 -1.59392,-4.89291 -2.54128,-7.42183 0.59713,1.08477 1.16635,0.9431 1.767,1.00595 -0.78883,-1.50187 -1.95045,-2.87782 -2.33322,-4.64904 0.54248,0.17604 1.10893,0.40897 1.45152,-0.54409 -0.74503,-1.60123 -1.2827,-3.22443 -1.6482,-4.86777 0.4416,0.44485 0.15755,0.63606 0.87018,0.19913 -0.30577,-2.8814 -1.28828,-7.29117 -1.08235,-8.64893 0.30773,0.48617 0.61821,0.29966 0.98826,-0.31398 0.20896,-3.75337 0.35878,-7.18569 1.31829,-10.30654 -0.16645,1.41258 -0.19192,2.78556 0.74567,4.05426 0.31931,-2.93001 0.85793,-5.71643 1.92528,-8.06648 0.30682,1.20113 0.62632,2.40082 2.03109,3.21587 0.64977,-3.03472 1.62294,-5.75505 3.39306,-7.710822 0.18461,1.492342 0.70077,2.841392 2.32632,3.777832 0.56266,-2.63176 1.46593,-5.186218 3.35799,-7.648123 0.006,2.011255 1.18198,3.533641 2.99614,4.796803 0.31223,-1.741219 0.45261,-3.524766 1.5581,-5.087975 0.37974,1.56741 1.58666,2.715238 4.02664,3.242071 1.06483,-1.987104 1.90021,-4.047156 3.75035,-5.799213 0.0109,1.964078 1.76048,3.329215 4.48858,4.128202 1.48861,-1.509028 3.53959,-2.817938 3.67916,-4.808874 1.74996,1.119058 3.09148,2.551986 4.30027,4.108084 1.48646,-0.948679 2.60722,-2.044503 2.81784,-3.467529 0.96067,1.141819 1.93284,2.292258 2.38154,3.762186 1.73153,-0.465567 2.89407,-1.311757 3.03223,-2.832939 1.04024,1.093809 2.02314,2.257469 2.32609,4.150576 1.91739,-0.183832 2.181,-1.39483 2.46879,-2.543759 1.08375,1.444497 1.63528,3.120311 1.90186,4.92097 1.25184,0.21524 1.81967,-0.745651 1.97168,-2.072767 0.62613,1.627097 1.84433,2.771787 1.45372,5.479337 0.63533,-0.26651 1.26752,-0.57484 1.07086,-1.71862 0.43597,1.68689 1.24132,3.26727 1.14726,5.31687 0.48364,-0.47133 0.59389,-1.16629 0.39158,-2.09463 0.47434,1.74464 0.69999,3.36521 0.88175,5.03529 0.37208,-0.58229 0.79199,-1.07987 0.66618,-1.97567 -0.003,1.53244 0.10467,3.06487 0.22437,4.59731 0.42098,-0.59521 0.707,-1.21259 0.65467,-2.05091 0.24715,1.6627 0.17111,3.36068 0.1896,5.06453 0.0476,0.64638 0.24021,1.23834 0.45209,1.8231 0.47209,-0.45453 0.57369,-0.93775 0.52728,-1.43381 0.0586,1.55949 0.25949,3.05527 0.2042,4.59115 0.43847,-0.31761 0.40048,-0.77294 0.42885,-1.18558 0.15694,1.27396 0.19877,2.60743 0.2242,4.02794 0.30822,1.56352 0.7166,3.10199 1.19132,4.62388 0.26004,-0.52413 0.57333,-1.00033 0.63651,-1.70163 -0.0369,1.33702 -0.0838,2.67504 0.0816,3.99182 0.46088,1.51424 1.13046,2.88934 1.77109,4.28375 0.39524,-1.05136 0.8384,-2.08675 1.05646,-3.19717 11.90069,-21.27589 7.00195,-64.195469 -37.5191,-61.322495 -15.65245,-1.109698 -36.68517,5.581542 -38.54171,35.892695 z" + class="shadow" + inkscape:connector-curvature="0" + id="path1728" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccc" /><path + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccc" + id="path1717" + inkscape:connector-curvature="0" + class="hair" + d="m 257.9291,106.09219 c -0.007,0.006 -1.97567,20.38501 7.31403,35.72092 l 1.2243,1.66065 c -1.10711,-2.32949 -1.79314,-4.89291 -2.54128,-7.42183 0.62095,0.84654 1.184,0.76662 1.767,1.00595 -0.93454,-1.48366 -2.13701,-2.8545 -2.33322,-4.64904 0.52732,0.12299 1.04691,0.1919 1.45152,-0.54409 -0.88984,-1.58675 -1.5469,-3.19801 -1.6482,-4.86777 0.45664,0.29442 0.18353,0.37621 0.87018,0.19913 -0.52127,-2.6659 -1.42219,-7.15726 -1.08235,-8.64893 0.35307,0.36829 0.67669,0.14762 0.98826,-0.31398 0.025,-3.66975 0.33847,-7.17646 1.31829,-10.30654 -0.0544,1.37896 -0.0959,2.75675 0.74567,4.05426 0.2328,-2.94443 0.69913,-5.7429 1.92528,-8.06648 0.39239,1.17546 0.74775,2.36439 2.03109,3.21587 0.59247,-3.07292 1.55541,-5.80007 3.39306,-7.710822 0.30776,1.430762 0.78432,2.799622 2.32632,3.777832 0.53632,-2.64932 1.37507,-5.246793 3.35799,-7.648123 0.14111,1.937462 1.27409,3.483398 2.99614,4.796803 0.26667,-1.769696 0.3381,-3.596335 1.5581,-5.087975 0.45789,1.532677 1.69497,2.667101 4.02664,3.242071 1.01846,-2.01029 1.78624,-4.10414 3.75035,-5.799213 0.0885,1.929566 1.86922,3.280887 4.48858,4.128202 1.44492,-1.525413 3.42384,-2.861344 3.67916,-4.808874 1.86112,1.054215 3.2297,2.471357 4.30027,4.108084 1.44759,-0.96034 2.45275,-2.090843 2.81784,-3.467529 1.0588,1.098207 2.02213,2.252575 2.38154,3.762186 1.67284,-0.502914 2.73401,-1.413613 3.03223,-2.832939 1.11987,1.053994 2.14954,2.19427 2.32609,4.150576 1.869,-0.197658 2.0868,-1.421744 2.46879,-2.543759 1.12659,1.426136 1.73345,3.078236 1.90186,4.92097 1.23123,0.20751 1.68979,-0.794357 1.97168,-2.072767 0.71793,1.600868 1.89588,2.757057 1.45372,5.479337 0.60707,-0.27862 1.16002,-0.62091 1.07086,-1.71862 0.59248,1.65559 1.27676,3.26018 1.14726,5.31687 0.42286,-0.5408 0.50965,-1.26256 0.39158,-2.09463 0.63988,1.67843 0.72087,3.35686 0.88175,5.03529 0.28783,-0.60101 0.68913,-1.10273 0.66618,-1.97567 l 0.22437,4.59731 c 0.39693,-0.62407 0.63258,-1.3019 0.65467,-2.05091 0.29253,1.6627 0.2675,3.36068 0.1896,5.06453 l 0.45209,1.8231 c 0.38638,-0.45453 0.51462,-0.93775 0.52728,-1.43381 0.16555,1.50601 0.36084,3.00459 0.2042,4.59115 0.34432,-0.32807 0.30713,-0.78331 0.42885,-1.18558 0.1847,1.26933 0.28877,2.59243 0.2242,4.02794 l 1.19132,4.62388 0.63651,-1.70163 0.0816,3.99182 1.77109,4.28375 1.05646,-3.19717 c 10.71484,-22.20048 5.99108,-64.270356 -37.5191,-61.322495 -15.38241,-0.812657 -36.14212,6.178893 -38.54171,35.892695 z" /></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="-165.58824" + y="1043.1471" + id="text4352"><tspan + sodipodi:role="line" + id="tspan4354" + x="-165.58824" + y="1043.1471" + style="font-size:17.5px;line-height:1.25">prndev's notes:</tspan><tspan + sodipodi:role="line" + x="-165.58824" + y="1065.0221" + 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="-165.58824" + y="1086.8971" + id="tspan4358" + style="font-size:17.5px;line-height:1.25">All Inkscape Layers are SVG groups.</tspan><tspan + sodipodi:role="line" + x="-165.58824" + y="1108.7721" + id="tspan4360" + style="font-size:17.5px;line-height:1.25">Inkscape Layer names should be unique.</tspan><tspan + sodipodi:role="line" + x="-165.58824" + y="1130.6471" + 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="-165.58824" + y="1152.5221" + 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="-165.58824" + y="1174.3971" + 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="-165.58824" + y="1196.2721" + 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="-165.58824" + y="1218.1471" + 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="-165.58824" + y="1240.0221" + id="tspan4370" + style="font-size:17.5px;line-height:1.25">Original art credit goes to Nov-X.</tspan></text> +</g></svg> \ No newline at end of file diff --git a/src/art/artWidgets.tw b/src/art/artWidgets.tw index 5626b80aa09011c27834555a13854f056d112bec..a8de527c14205b46822537418fc8b1b5aed2082a 100644 --- a/src/art/artWidgets.tw +++ b/src/art/artWidgets.tw @@ -551,7 +551,53 @@ vector art added later is drawn over previously added art <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/" + _hairStyle + " front.svg'" + " style='" + _hairFilter + "'/>">> <</if>> +<<elseif $imageChoice == 3>> /* VECTOR ART REVAMP*/ +<<if ndef $seeVectorArtHighlights>> + <<set $seeVectorArtHighlights = 1>> +<</if>> + +<<set _artSlave to $args[0] >> +<<silently>> +/* prepare HTML colour codes for slave display */ +/* note: latex clothing is mostly emulated by rubber colour for skin (and shoes) */ +/* TODO: consistently use american "color" instead of "colour" for all identifiers */ +<<include Art_Vector_Revamp_Set_Colour_Outfit_>> +<<include Art_Vector_Revamp_Set_Colour_Skin_>> +<<include Art_Vector_Revamp_Set_Colour_Hair_>> +<<include Art_Vector_Revamp_Set_Colour_Shoe_>> + +<<include Art_Vector_Revamp_Body_Clothing_Control_>> /*Controls which body parts should be shown depending on clothing*/ +<</silently>> +<<include Art_Vector_Revamp_Generate_Stylesheet_>> +/* +each passage adds one layer of vector art +vector art added later is drawn over previously added art +(what is listed on the bottom in the code appears on the top of the image) +*/ + + +<<include Art_Vector_Revamp_Arm_>> +<<include Art_Vector_Revamp_Hair_Back_>> +<<include Art_Vector_Revamp_Butt_>> +<<include Art_Vector_Revamp_Leg_>> +<<include Art_Vector_Revamp_Feet_>> /* includes shoes */ +<<include Art_Vector_Revamp_Torso_>> +<<include Art_Vector_Revamp_Chastity_Belt_>> +<<include Art_Vector_Revamp_Pussy_>> +<<include Art_Vector_Revamp_Pubic_Hair_>> +<<include Art_Vector_Revamp_Pussy_Piercings_>> +<<include Art_Vector_Revamp_Torso_Outfit_>> /* note: clothing covers chastity belts */ +<<include Art_Vector_Revamp_Belly_>> /* includes navel piercing and belly-related clothing options */ +<<include Art_Vector_Revamp_Balls_>> +<<include Art_Vector_Revamp_Penis_>> /* for dicks behind boobs */ +<<include Art_Vector_Revamp_Boob_>> /* includes areolae and piercings */ +<<include Art_Vector_Revamp_Penis_>> /* for dicks in front of boobs */ +<<include Art_Vector_Revamp_Boob_Addons_>> /* piercings always appear in front of boobs AND dick */ +<<include Art_Vector_Revamp_Clavicle>> +<<include Art_Vector_Revamp_Collar_>> +<<include Art_Vector_Revamp_Head_>> /* includes glasses */ +<<include Art_Vector_Revamp_Hair_Fore_>> <<else>> /* RENDERED IMAGES BY SHOKUSHU */ <<if $args[0].vagina > -1>> diff --git a/src/art/vector/Body_Clothing_Control.tw b/src/art/vector/Body_Clothing_Control.tw new file mode 100644 index 0000000000000000000000000000000000000000..ed662e74fcf8bf060a938cf0957d4b6753d02584 --- /dev/null +++ b/src/art/vector/Body_Clothing_Control.tw @@ -0,0 +1,100 @@ +:: Art_Vector_Body_Clothing_Control_ [nobr] + +<<set _eyeBallColor = "#ffffff">> + +<<if _artSlave.eyeColor neq "">> + <<if _artSlave.eyeColor.split(" ").length > 1>> + <<set _eyeLens = _artSlave.eyeColor.split(" ")[0]>> + + <<if _eyeLens == "demonic">> + <<set _eyeBallColor = _eyeColor>> + <<elseif _eyeLens == "devilish">> + <<set _eyeBallColor = "#000000">> + <</if>> + <</if>> +<</if>> + +<<set _muscles_value = _artSlave.muscles + 101>> +<<set _art_muscle_visibility = 0.910239*Math.log(0.02*_muscles_value) >> + +<<set _showEyes = 1>> +<<set _showLips = 1>> +<<set _showMouth = 1>> +<<set _showPubic = 1>> +<<set _showPussy = _artSlave.vagina >= 0>> +<<set _showArmHair = 1>> +<<set _showHair = _artSlave.hStyle != "shaved">> +<<set _showBoobs = 1>> +<<set _showNipples = 1>> +<<set _showArmHighlight = 0>> +<<set _showTorsoHighlight = 0>> +<<set _showLegHighlight = 0>> +<<set _showBoobsHighlight = 0>> +<<set _showEyesHighlight = 1>> +<<set _showHeadHighlight = 1>> +<<set _showBellyPiercings = 1>> +<<set _showNipplePiercings = 1>> +<<set _chastityAnal = _artSlave.dickAccessory == "anal chastity" || _artSlave.dickAccessory == "combined chastity" || _artSlave.vaginalAccessory == "anal chastity" || _artSlave.vaginalAccessory == "combined chastity" >> + +<<set _chastityVaginal = _artSlave.vaginalAccessory == "chastity belt" || _artSlave.vaginalAccessory == "combined chastity">> + +<<if _artSlave.fuckdoll > 0>> + <<set _showEyes = 0>> + <<set _showPubic = 0>> + <<set _showArmHair = 0>> + <<set _showHair = 0>> + <<set _showArmHighlight = 1>> + <<set _showTorsoHighlight = 1>> + <<set _showBoobsHighlight = 1>> + <<set _showLegHighlight = 1>> + <<set _showHeadHighlight = 1>> +<</if>> + +<<if _artSlave.clothes == "a nice maid outfit">> + <<set _showPubic = 0>> + <<set _showBoobs = 0>> + <<set _showBellyPiercings = 0>> + <<set _showNipplePiercings = 0>> + <<set _showNipples = 0>> +<</if>> + +<<if _artSlave.clothes == "a slutty maid outfit">> + <<set _showBellyPiercings = 0>> +<</if>> + +<<if _artSlave.clothes == "restrictive latex">> + <<set _showEyes = 0>> + <<set _showPubic = 0>> + <<set _showArmHair = 0>> + <<set _showHair = 0>> + <<set _showArmHighlight = 1>> + <<set _showTorsoHighlight = 1>> + <<set _showLegHighlight = 1>> + <<set _showHeadHighlight = 1>> + <<set _showBellyPiercings = 0>> +<</if>> + +<<if _artSlave.clothes == "a latex catsuit">> + <<set _showPubic = 0>> + <<set _showArmHair = 0>> + <<set _showArmHighlight = 1>> + <<set _showTorsoHighlight = 1>> + <<set _showLegHighlight = 1>> + <<set _showBoobsHighlight = 1>> + <<set _showHeadHighlight = 1>> + <<set _showBellyPiercings = 0>> + <<set _showNipplePiercings = 0>> + <<set _chastityAnal = 0>> + <<set _chastityVaginal = 0>> +<</if>> + +<<if $showBodyMods == 0>> + <<set _showNipplePiercings = 0>> +<</if>> + +<<if $seeVectorArtHighlights == 1>> + <<set _showArmHighlight = 0>> + <<set _showTorsoHighlight = 0>> + <<set _showLegHighlight = 0>> + <<set _showBoobsHighlight = 0>> +<</if>> \ No newline at end of file diff --git a/src/art/vector_revamp/Arm.tw b/src/art/vector_revamp/Arm.tw new file mode 100644 index 0000000000000000000000000000000000000000..2d91a469b99d0235759ba7e0c6aa3c686f785e36 --- /dev/null +++ b/src/art/vector_revamp/Arm.tw @@ -0,0 +1,44 @@ +:: Art_Vector_Revamp_Arm_ [nobr] + +/* Arms position switch courtesy of Nov-X */ + +<<if _artSlave.amp != 1>> + <<if _artSlave.devotion > 50>> + <<set _leftArmType = "High">> + <<set _rightArmType = "High">> + <<elseif _artSlave.trust >= -20>> + <<if _artSlave.devotion < -20>> + <<set _leftArmType = "Low">> + <<set _rightArmType = "Low">> + <<elseif _artSlave.devotion <= 20>> + <<set _leftArmType = "Low">> + <<set _rightArmType = "Low">> + <<else>> + <<set _leftArmType = "Mid">> + <<set _rightArmType = "High">> + <</if>> + <<else>> + <<set _leftArmType = "Mid">> + <<set _rightArmType = "Mid">> + <</if>> + + <<set _art = "Art_Vector_Revamp_Arm_Right_"+_rightArmType >> + <<include _art>> + <<set _art = "Art_Vector_Revamp_Arm_Left_"+_leftArmType >> + <<include _art>> +<<else>> + <<include Art_Vector_Revamp_Arm_Stump>> +<</if>> + +<<if _showArmHair == 1>> + <<if _artSlave.amp == 1 || _leftArmType == "High">> + <<switch _artSlave.underArmHStyle>> + <<case "bushy">> + <<include Art_Vector_Revamp_Arm_Up_Hair_Bushy >> + <<case "neat">> + <<include Art_Vector_Revamp_Arm_Up_Hair_Neat >> + <<default>> + /* armpit hair style not supported - don't display anything*/ + <</switch>> + <</if>> +<</if>> \ No newline at end of file diff --git a/src/art/vector_revamp/Balls.tw b/src/art/vector_revamp/Balls.tw new file mode 100644 index 0000000000000000000000000000000000000000..8df1f795e6b8bddb67fab25723656916224b04bd --- /dev/null +++ b/src/art/vector_revamp/Balls.tw @@ -0,0 +1,17 @@ +:: Art_Vector_Revamp_Balls_ [nobr] + +<<if _artSlave.scrotum > 0 && _artSlave.balls > 0 >> + <<if _artSlave.scrotum >= 6>> + <<set _ballSize = 4>> + <<elseif _artSlave.scrotum >= 4>> + <<set _ballSize = 3>> + <<elseif _artSlave.scrotum >= 3>> + <<set _ballSize = 2>> + <<elseif _artSlave.scrotum >= 2>> + <<set _ballSize = 1>> + <<else>> + <<set _ballSize = 0>> + <</if>> + <<set _art = "Art_Vector_Revamp_Balls_"+_ballSize>> + <<include _art>> +<</if>> diff --git a/src/art/vector_revamp/Belly.tw b/src/art/vector_revamp/Belly.tw new file mode 100644 index 0000000000000000000000000000000000000000..3f99c05bc6bb7f25517914425cc7cd760192cd63 --- /dev/null +++ b/src/art/vector_revamp/Belly.tw @@ -0,0 +1,42 @@ +:: Art_Vector_Revamp_Belly_ [nobr] + +<<set _showNavelPiercings = $showBodyMods == 1 && _artSlave.clothes != "restrictive latex" && _artSlave.clothes != "a latex catsuit">> + +<<if _artSlave.belly >= 5000>> + + <<if _artSlave.clothes == "a nice maid outfit">> + <<include Art_Vector_Revamp_Belly_Outfit_Maid>> + <<elseif _artSlave.clothes == "a slutty maid outfit">> + <<include Art_Vector_Revamp_Belly_Outfit_Maid_Lewd>> + <<else>> + <<include Art_Vector_Revamp_Belly>> + <</if>> + + /* shiny clothings */ + <<if $seeVectorArtHighlights == 1>> + <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> + <<include Art_Vector_Revamp_Belly_Outfit_Shine>> + <</if>> + <</if>> + + /* belly piercings */ + <<if _showNavelPiercings && _showBellyPiercings>> + <<if _artSlave.navelPiercing >= 1>> + <<include Art_Vector_Revamp_Belly_Piercing>> + <</if>> + <<if _artSlave.navelPiercing == 2>> + <<include Art_Vector_Revamp_Belly_Piercing_Heavy>> + <</if>> + <</if>> +<<else>> + + /* flat midriff piercings */ + <<if _showNavelPiercings && _showBellyPiercings >> + <<if _artSlave.navelPiercing >= 1>> + <<include Art_Vector_Revamp_Navel_Piercing>> + <</if>> + <<if _artSlave.navelPiercing == 2>> + <<include Art_Vector_Revamp_Navel_Piercing_Heavy>> + <</if>> + <</if>> +<</if>> diff --git a/src/art/vector_revamp/Body_Clothing_Control.tw b/src/art/vector_revamp/Body_Clothing_Control.tw new file mode 100644 index 0000000000000000000000000000000000000000..2fee60db3709cfd094ee369095b6a06407ca0429 --- /dev/null +++ b/src/art/vector_revamp/Body_Clothing_Control.tw @@ -0,0 +1,100 @@ +:: Art_Vector_Revamp_Body_Clothing_Control_ [nobr] + +<<set _eyeBallColor = "#ffffff">> + +<<if _artSlave.eyeColor neq "">> + <<if _artSlave.eyeColor.split(" ").length > 1>> + <<set _eyeLens = _artSlave.eyeColor.split(" ")[0]>> + + <<if _eyeLens == "demonic">> + <<set _eyeBallColor = _eyeColor>> + <<elseif _eyeLens == "devilish">> + <<set _eyeBallColor = "#000000">> + <</if>> + <</if>> +<</if>> + +<<set _muscles_value = _artSlave.muscles + 100>> +<<set _art_muscle_visibility = 0.910239*Math.log(0.02*_muscles_value) >> + +<<set _showEyes = 1>> +<<set _showLips = 1>> +<<set _showMouth = 1>> +<<set _showPubic = 1>> +<<set _showPussy = _artSlave.vagina >= 0>> +<<set _showArmHair = 1>> +<<set _showHair = _artSlave.hStyle != "shaved">> +<<set _showBoobs = 1>> +<<set _showNipples = 1>> +<<set _showArmHighlight = 0>> +<<set _showTorsoHighlight = 0>> +<<set _showLegHighlight = 0>> +<<set _showBoobsHighlight = 0>> +<<set _showEyesHighlight = 1>> +<<set _showHeadHighlight = 1>> +<<set _showBellyPiercings = 1>> +<<set _showNipplePiercings = 1>> +<<set _chastityAnal = _artSlave.dickAccessory == "anal chastity" || _artSlave.dickAccessory == "combined chastity" || _artSlave.vaginalAccessory == "anal chastity" || _artSlave.vaginalAccessory == "combined chastity" >> + +<<set _chastityVaginal = _artSlave.vaginalAccessory == "chastity belt" || _artSlave.vaginalAccessory == "combined chastity">> + +<<if _artSlave.fuckdoll > 0>> + <<set _showEyes = 0>> + <<set _showPubic = 0>> + <<set _showArmHair = 0>> + <<set _showHair = 0>> + <<set _showArmHighlight = 1>> + <<set _showTorsoHighlight = 1>> + <<set _showBoobsHighlight = 1>> + <<set _showLegHighlight = 1>> + <<set _showHeadHighlight = 1>> +<</if>> + +<<if _artSlave.clothes == "a nice maid outfit">> + <<set _showPubic = 0>> + <<set _showBoobs = 0>> + <<set _showBellyPiercings = 0>> + <<set _showNipplePiercings = 0>> + <<set _showNipples = 0>> +<</if>> + +<<if _artSlave.clothes == "a slutty maid outfit">> + <<set _showBellyPiercings = 0>> +<</if>> + +<<if _artSlave.clothes == "restrictive latex">> + <<set _showEyes = 0>> + <<set _showPubic = 0>> + <<set _showArmHair = 0>> + <<set _showHair = 0>> + <<set _showArmHighlight = 1>> + <<set _showTorsoHighlight = 1>> + <<set _showLegHighlight = 1>> + <<set _showHeadHighlight = 1>> + <<set _showBellyPiercings = 0>> +<</if>> + +<<if _artSlave.clothes == "a latex catsuit">> + <<set _showPubic = 0>> + <<set _showArmHair = 0>> + <<set _showArmHighlight = 1>> + <<set _showTorsoHighlight = 1>> + <<set _showLegHighlight = 1>> + <<set _showBoobsHighlight = 1>> + <<set _showHeadHighlight = 1>> + <<set _showBellyPiercings = 0>> + <<set _showNipplePiercings = 0>> + <<set _chastityAnal = 0>> + <<set _chastityVaginal = 0>> +<</if>> + +<<if $showBodyMods == 0>> + <<set _showNipplePiercings = 0>> +<</if>> + +<<if $seeVectorArtHighlights == 1>> + <<set _showArmHighlight = 0>> + <<set _showTorsoHighlight = 0>> + <<set _showLegHighlight = 0>> + <<set _showBoobsHighlight = 0>> +<</if>> \ No newline at end of file diff --git a/src/art/vector_revamp/Boob.tw b/src/art/vector_revamp/Boob.tw new file mode 100644 index 0000000000000000000000000000000000000000..3769f4950c5ab754b83518862ac652a44f504196 --- /dev/null +++ b/src/art/vector_revamp/Boob.tw @@ -0,0 +1,58 @@ +:: Art_Vector_Revamp_Boob_ [nobr] + +/* BEWARE: _art_have_boobs and _art_scale_factor interfere with Art_Vector_Revamp_Penis_ */ +<<set _art_have_boobs to true>> + +/* BEWARE: _art_boob_transform is also read by Art_Vector_Revamp_Boob_Addons_ */ + +/* +Prepare SVG transform matrix for continuous boob scaling. +This transform affects boobs, areolae and piercings. +The parameters were fit by points (300,0.75) and (15000,1.5). +See https://www.wolframalpha.com/input/?i=log+fit+%7B%7B300,1%7D,%7B15000,2.5%7D%7D . +Boobs start at 300cc as of "flesh description widgets". +Upper value was discussed at https://github.com/Free-Cities/Free-Cities/issues/950#issuecomment-321359466 . +*/ + +<<set _art_scale_factor = 0.255622*Math.log(0.0626767*_artSlave.boobs) >> + +<<set _art_translation_x = -283.841*_art_scale_factor+280.349 >> +<<set _art_translation_y = -198.438*_art_scale_factor+208.274 >> +<<set _art_boob_transform = "matrix(" + _art_scale_factor +",0,0," + _art_scale_factor + "," + _art_translation_x + "," + _art_translation_y + ")">> + +/* +_art_boob_transform is for internal program usage. +_art_transform will affect the display. +*/ +<<set _art_transform = _art_boob_transform>> + +<<if _artSlave.boobs < 300 >> + /* BEWARE: this threshold may be used in other art-related code, too */ + /* boobs too small - draw areolae directly onto torso */ + <<set _art_scale_factor = 1 >> + <<set _art_translation_x = 0 >> /* a little shift to the right is needed due to perspective */ + <<set _art_translation_y = 0 >> + <<set _art_boob_transform = "matrix(" + _art_scale_factor +",0,0," + _art_scale_factor + "," + _art_translation_x + "," + _art_translation_y + ")">> + <<set _art_transform = _art_boob_transform>> + <<if _showNipples>> + <<include Art_Vector_Revamp_Boob_Areola_NoBoob>> + <</if>> +<<else>> + <<if _showBoobs == 1>> + <<include Art_Vector_Revamp_Boob>> + <<if _showNipples>> + <<include Art_Vector_Revamp_Boob_Areola>> + <</if>> + <</if>> + /* shiny clothings */ + <<if $seeVectorArtHighlights == 1>> + <<if _showBoobsHighlight == 1>> + <<include Art_Vector_Revamp_Boob_Highlights1>> + <<include Art_Vector_Revamp_Boob_Highlights2>> + <</if>> + <</if>> +<</if>> + + +/* set _art_transform to empty string so stray SVG groups in other passages are not affected */ +<<set _art_transform = "">> diff --git a/src/art/vector_revamp/Boob_Addons.tw b/src/art/vector_revamp/Boob_Addons.tw new file mode 100644 index 0000000000000000000000000000000000000000..1445dfba4d0d9181d1c0dc77d567284720418a0a --- /dev/null +++ b/src/art/vector_revamp/Boob_Addons.tw @@ -0,0 +1,59 @@ +:: Art_Vector_Revamp_Boob_Addons_ [nobr] + +/* BEWARE: _art_boob_transform is set by Art_Vector_Revamp_Boob_ */ + +/* load _art_transform from _art_boob_transform */ +<<set _art_transform = _art_boob_transform>> + +/* this outfit is worn under the piercings */ +<<if _artSlave.clothes == "uncomfortable straps">> + <<if _artSlave.boobs < 300 >> + /* BEWARE: this threshold should be kept in sync with the one in Art_Vector_Revamp_Boob_ */ + /* boobs too small - have straps on torso only */ + <<else>> + <<include Art_Vector_Revamp_Boob_Outfit_Straps>> + <</if>> +<</if>> + +<<if _showNipplePiercings>> + <<if _artSlave.nipplesPiercing == 1>> + <<if _artSlave.boobs < 300 >> + <<include Art_Vector_Revamp_Boob_Piercing_NoBoob>> + <<else>> + <<include Art_Vector_Revamp_Boob_Piercing>> + <</if>> + <<elseif _artSlave.nipplesPiercing == 2>> + <<if _artSlave.boobs < 300 >> + <<include Art_Vector_Revamp_Boob_Piercing_NoBoob_Heavy>> + <<else>> + <<include Art_Vector_Revamp_Boob_Piercing_Heavy>> + <</if>> + <</if>> + <<if _artSlave.areolaePiercing == 1>> + <<if _artSlave.boobs < 300 >> + <<include Art_Vector_Revamp_Boob_Areola_Piercing_NoBoob>> + <<else>> + <<include Art_Vector_Revamp_Boob_Areola_Piercing>> + <</if>> + <<elseif _artSlave.areolaePiercing == 2>> + <<if _artSlave.boobs < 300 >> + <<include Art_Vector_Revamp_Boob_Areola_Piercing_NoBoob_Heavy>> + <<else>> + <<include Art_Vector_Revamp_Boob_Areola_Piercing_Heavy>> + <</if>> + <</if>> +<</if>> + +<<if _artSlave.clothes == "a nice maid outfit">> + <<if _artSlave.boobs >= 300 >> + <<include Art_Vector_Revamp_Boob_Outfit_Maid>> + <</if>> + +<<elseif _artSlave.clothes == "a slutty maid outfit">> + /*<<if _artSlave.boobs >= 300 >> + <<include Art_Vector_Revamp_Boob_Outfit_Maid_Lewd>> + <</if>>*/ +<</if>> + +/* set _art_transform to empty string so stray SVG groups in other passages are not affected */ +<<set _art_transform = "">> diff --git a/src/art/vector_revamp/Butt.tw b/src/art/vector_revamp/Butt.tw new file mode 100644 index 0000000000000000000000000000000000000000..6221b425a5531437bba5dcf30426e30c7e626df3 --- /dev/null +++ b/src/art/vector_revamp/Butt.tw @@ -0,0 +1,17 @@ +:: Art_Vector_Revamp_Butt_ [nobr] + +/* BEWARE: _buttSize is also used in Art_Vector_Revamp_Leg_ */ + +<<if _artSlave.amp != 1>> + <<if _artSlave.butt > 6>> + <<set _buttSize = 3>> + <<elseif _artSlave.butt > 4>> + <<set _buttSize = 2>> + <<elseif _artSlave.butt > 2>> + <<set _buttSize = 1>> + <<else>> + <<set _buttSize = 0>> + <</if>> + <<set _art = "Art_Vector_Revamp_Butt_"+_buttSize >> + <<include _art >> +<</if>> diff --git a/src/art/vector_revamp/Chastity_Belt.tw b/src/art/vector_revamp/Chastity_Belt.tw new file mode 100644 index 0000000000000000000000000000000000000000..3668b4d43a4c37426a7ed92b5fbbf8fed005301e --- /dev/null +++ b/src/art/vector_revamp/Chastity_Belt.tw @@ -0,0 +1,16 @@ +:: Art_Vector_Revamp_Chastity_Belt_ [nobr] + +/* note: penile chastity is handled by penis display */ + +<<if _chastityAnal>> + <<include Art_Vector_Revamp_Chastity_Anus>> +<</if>> + +<<if _chastityVaginal>> + <<include Art_Vector_Revamp_Chastity_Vagina>> +<</if>> + +<<if _chastityAnal || _chastityVaginal >> + <<include Art_Vector_Revamp_Chastity_Base>> +<</if>> + diff --git a/src/art/vector_revamp/Collar.tw b/src/art/vector_revamp/Collar.tw new file mode 100644 index 0000000000000000000000000000000000000000..1cbd18fc258101c4da1889b3d44358448a7ef7e1 --- /dev/null +++ b/src/art/vector_revamp/Collar.tw @@ -0,0 +1,28 @@ +:: Art_Vector_Revamp_Collar_ [nobr] + +/* TODO: find out where "uncomfortable leather" collar art went */ + +<<switch _artSlave.collar>> +<<case "leather with cowbell">> + <<include Art_Vector_Revamp_Collar_Cowbell >> +<<case "heavy gold">> + <<include Art_Vector_Revamp_Collar_Gold_Heavy >> +<<case "neck corset">> + <<include Art_Vector_Revamp_Collar_Neck_Corset >> +<<case "pretty jewelry">> + <<include Art_Vector_Revamp_Collar_Pretty_Jewelry >> +<<case "cruel retirement counter">> + <<include Art_Vector_Revamp_Collar_Retirement_Cruel >> +<<case "nice retirement counter">> + <<include Art_Vector_Revamp_Collar_Retirement_Nice >> +<<case "satin choker">> + <<include Art_Vector_Revamp_Collar_Satin_Choker >> +<<case "shock punishment">> + <<include Art_Vector_Revamp_Collar_Shock_Punishment >> +<<case "stylish leather">> + <<include Art_Vector_Revamp_Collar_Stylish_Leather >> +<<case "tight steel">> + <<include Art_Vector_Revamp_Collar_Tight_Steel >> +<<default>> +/* collar not supported - don't display anything */ +<</switch>> diff --git a/src/art/vector_revamp/Feet.tw b/src/art/vector_revamp/Feet.tw new file mode 100644 index 0000000000000000000000000000000000000000..43a21d84476f7c72a73221471631c9d0480e9e84 --- /dev/null +++ b/src/art/vector_revamp/Feet.tw @@ -0,0 +1,19 @@ +:: Art_Vector_Revamp_Feet_ [nobr] + +/* BEWARE: Uses _legSize set by Art_Vector_Revamp_Leg_ */ + +<<if _artSlave.amp != 1>> + <<switch _artSlave.shoes>> + <<case "heels">> + <<include Art_Vector_Revamp_Shoes_Heel>> + <<case "extreme heels">> + <<include Art_Vector_Revamp_Shoes_Exterme_Heel>> + <<case "boots">> + <<include Art_Vector_Revamp_Shoes_Boot>> + <<case "flats">> + <<include Art_Vector_Revamp_Shoes_Flat>> + <<default>> + <<include Art_Vector_Revamp_Feet>> + <</switch>> +<</if>> + diff --git a/src/art/vector_revamp/Generate_Stylesheet.tw b/src/art/vector_revamp/Generate_Stylesheet.tw new file mode 100644 index 0000000000000000000000000000000000000000..3e0cb7f5a2903e14a4cdb3e2b7ba70a5eb68ef70 --- /dev/null +++ b/src/art/vector_revamp/Generate_Stylesheet.tw @@ -0,0 +1,53 @@ +:: Art_Vector_Revamp_Generate_Stylesheet_ [nobr] + +/* _art_display_class is the style class for this display */ +<<if _art_display_id > 0 >> + <<set _art_display_id += 1>> +<<else>> + <<set _art_display_id = 1>> +<</if>> +<<set _art_display_class = "ad"+_art_display_id >> + +<<print "<style>."+_art_display_class+" { + position: absolute; + height: 100%; + margin-left: auto; + margin-right: auto; + left: 0; + right: 0; +} +."+_art_display_class+" .white { fill:#FFFFFF; } +."+_art_display_class+" .skin { fill:"+_skinColour+"; } +."+_art_display_class+" .head { "+_headSkinStyle+"; } +."+_art_display_class+" .torso { "+_torsoSkinStyle+"; } +."+_art_display_class+" .boob { "+_boobSkinStyle+"; } +."+_art_display_class+" .penis { "+_penisSkinStyle+"; } +."+_art_display_class+" .scrotum { "+_scrotumSkinStyle+"; } +."+_art_display_class+" .areola { "+_areolaStyle+"; } +."+_art_display_class+" .labia { "+_labiaStyle+"; } +."+_art_display_class+" .hair { fill:"+_hairColour+"; } +."+_art_display_class+" .shoe { fill:"+_shoeColour+"; } +."+_art_display_class+" .shoe_shadow { fill:"+_shoeShadowColour+"; } +."+_art_display_class+" .smart_piercing { fill:#4DB748; } +."+_art_display_class+" .steel_piercing { fill:#787878; } +."+_art_display_class+" .steel_chastity { fill:#BABABA; } +."+_art_display_class+" .outfit_base { fill:"+_outfitBaseColour+"; } +."+_art_display_class+" .gag { fill:#BF2126; } +."+_art_display_class+" .shadow { fill:#010101; } +."+_art_display_class+" .muscle_tone { fill:#010101;fill-opacity:"+_art_muscle_visibility+";} +."+_art_display_class+" .glasses { fill:#010101; } +."+_art_display_class+" .lips{ fill:#de8787ff; } +."+_art_display_class+" .eyeball { fill:"+_eyeBallColor+"; } +."+_art_display_class+" .iris { fill:"+_eyeColor+"; } +."+_art_display_class+" .highlight1{fill:#ffffff;opacity:0.9;mix-blend-mode:soft-light;} +."+_art_display_class+" .highlight2{fill:#ffffff;opacity:0.9;mix-blend-mode:soft-light;} +."+_art_display_class+" .highlight3{fill:#ffffff;fill-opacity:0.9;mix-blend-mode:soft-light;} +."+_art_display_class+" .highlightStrong{fill:#ffffff;} +."+_art_display_class+" .shade1{fill:#623729;fill-opacity:0.1;mix-blend-mode:screen;} +."+_art_display_class+" .shade2{fill:#764533;fill-opacity:0.1;mix-blend-mode:screen;} +."+_art_display_class+" .shade3{fill:#88503a;fill-opacity:0.1;mix-blend-mode:screen;} +."+_art_display_class+" .shade4{fill:#574b6f;fill-opacity:0.1;mix-blend-mode:screen;} +."+_art_display_class+" .armpit_hair{fill:"+_underArmHColor+";} +."+_art_display_class+" .pubic_hair{fill:"+_pubicColor+";} + +</style>" >> diff --git a/src/art/vector_revamp/Hair_Back.tw b/src/art/vector_revamp/Hair_Back.tw new file mode 100644 index 0000000000000000000000000000000000000000..b4a585122ffc045fd1d782a86f1ea596f0ceecdb --- /dev/null +++ b/src/art/vector_revamp/Hair_Back.tw @@ -0,0 +1,13 @@ +:: Art_Vector_Revamp_Hair_Back_ [nobr] + +/* note: latex clothing actually shows some hair, but there is no appropriate art for it */ +<<if _showHair == 1>> + <<switch _artSlave.hStyle>> + <<case "neat">> + <<include Art_Vector_Revamp_Hair_Back_Neat>> + <<case "bun">> + <<include Art_Vector_Revamp_Hair_Back_Bun>> + <<default>> + <<include Art_Vector_Revamp_Hair_Back_Messy>> + <</switch>> +<</if>> \ No newline at end of file diff --git a/src/art/vector_revamp/Hair_Fore.tw b/src/art/vector_revamp/Hair_Fore.tw new file mode 100644 index 0000000000000000000000000000000000000000..f230d0d7f3fd659e7a8ec968d409c6977114473b --- /dev/null +++ b/src/art/vector_revamp/Hair_Fore.tw @@ -0,0 +1,13 @@ +:: Art_Vector_Revamp_Hair_Fore_ [nobr] + +/* note: latex clothing actually shows some hair, but there is no appropriate art for it */ +<<if _showHair == 1>> + <<switch _artSlave.hStyle>> + <<case "neat">> + <<include Art_Vector_Revamp_Hair_Fore_Neat>> + <<case "bun">> + <<include Art_Vector_Revamp_Hair_Fore_Bun>> + <<default>> + <<include Art_Vector_Revamp_Hair_Fore_Messy>> + <</switch>> +<</if>> diff --git a/src/art/vector_revamp/Head.tw b/src/art/vector_revamp/Head.tw new file mode 100644 index 0000000000000000000000000000000000000000..e5dbf4f846f43c692557920c566f7cc3c4bbd4a0 --- /dev/null +++ b/src/art/vector_revamp/Head.tw @@ -0,0 +1,55 @@ +:: Art_Vector_Revamp_Head_ [nobr] + + +<<include Art_Vector_Revamp_Head>> + +<<if _showEyes == 1>> + <<if _artSlave.devotion > 50>> + <<include Art_Vector_Revamp_Eyes_Happy>> + <<if _showEyesHighlight == 1>> + <<include Art_Vector_Revamp_Eyes_Happy_Highlights>> + <</if>> + <<elseif _artSlave.devotion >= 0>> + <<include Art_Vector_Revamp_Eyes_Shy>> + <<if _showEyesHighlight == 1>> + <<include Art_Vector_Revamp_Eyes_Shy_Highlights>> + <</if>> + <<elseif _artSlave.devotion >= -50>> + <<include Art_Vector_Revamp_Eyes_Closed>> + <<else>> + <<include Art_Vector_Revamp_Eyes_Angry>> + <<if _showEyesHighlight == 1>> + <<include Art_Vector_Revamp_Eyes_Angry_Highlights>> + <</if>> + <</if>> +<</if>> + +<<if _showMouth == 1>> + <<if _artSlave.trust > 20>> + <<include Art_Vector_Revamp_Mouth_Happy>> + <<include Art_Vector_Revamp_Mouth_Happy_Highlights>> + <<else>> + <<include Art_Vector_Revamp_Mouth_Angry>> + <<include Art_Vector_Revamp_Mouth_Angry_Highlights>> + <</if>> +<</if>> + +<<if _showHeadHighlight == 1>> + <<include Art_Vector_Revamp_Face_Highlights>> +<</if>> + +/* ADDONS */ + +<<switch _artSlave.collar>> + <<case "dildo gag">> + <<include Art_Vector_Revamp_Dildo_Gag>> + <<case "bit gag">> + <<include Art_Vector_Revamp_Bit_Gag>> + <<case "ball gag">> + <<include Art_Vector_Revamp_Ball_Gag>> + <<default>> + <</switch>> + +<<if _artSlave.eyewear == "corrective glasses" or _artSlave.eyewear == "glasses" or _artSlave.eyewear == "blurring glasses">> + <<include Art_Vector_Revamp_Glasses>> +<</if>> diff --git a/src/art/vector_revamp/Leg.tw b/src/art/vector_revamp/Leg.tw new file mode 100644 index 0000000000000000000000000000000000000000..8f8f3d11f6fad71d3ccb613099904fce79b8b6b1 --- /dev/null +++ b/src/art/vector_revamp/Leg.tw @@ -0,0 +1,35 @@ +:: Art_Vector_Revamp_Leg_ [nobr] + +/* Leg wideness switch courtesy of Nov-X */ + +/* BEWARE: _legSize is also used in Art_Vector_Revamp_Feet_ */ +/* BEWARE: _buttSize set by Art_Vector_Revamp_Butt_ */ + +<<if _artSlave.amp != 1>> + <<set _legSize = "Normal">> + <<if _artSlave.hips < 0>> + <<if _artSlave.weight > 95>> + <<set _legSize = "Normal">> + <<else>> + <<set _legSize = "Narrow">> + <</if>> + <<elseif _artSlave.hips == 0>> + <<if _artSlave.weight > 95>> + <<set _legSize = "Wide">> + <<else>> + <<set _legSize = "Normal">> + <</if>> + <<elseif _artSlave.hips > 0>> + <<set _legSize = "Wide">> + <</if>> + <<set _art = "Art_Vector_Revamp_Leg_"+_legSize >> + <<include _art >> + <<if _showLegHighlight == 1>> + <<include Art_Vector_Revamp_Leg_Highlights1>> + <<include Art_Vector_Revamp_Leg_Highlights2>> + <</if>> +<<else>> + <<set _art = "Art_Vector_Revamp_Stump" >> + <<include _art >> +<</if>> + diff --git a/src/art/vector_revamp/Penis.tw b/src/art/vector_revamp/Penis.tw new file mode 100644 index 0000000000000000000000000000000000000000..548e69ce7c5f349a5a3b9e5d6ed268afd80d2f2c --- /dev/null +++ b/src/art/vector_revamp/Penis.tw @@ -0,0 +1,45 @@ +:: Art_Vector_Revamp_Penis_ [nobr] + +/* BEWARE: _art_have_boobs and _art_scale_factor interfere with Art_Vector_Revamp_Boob_ */ + +<<if _artSlave.dick >= 8>> + <<set _penisSize = 6>> +<<elseif _artSlave.dick >= 7>> + <<set _penisSize = 5>> +<<elseif _artSlave.dick >= 6>> + <<set _penisSize = 4>> +<<elseif _artSlave.dick >= 5>> + <<set _penisSize = 3>> +<<elseif _artSlave.dick >= 4>> + <<set _penisSize = 2>> +<<elseif _artSlave.dick >= 2>> + <<set _penisSize = 1>> +<<elseif _artSlave.dick >= 1>> + <<set _penisSize = 0>> +<<else>> + <<set _penisSize = -1>> +<</if>> + +<<if _penisSize >= 0>> + <<if canAchieveErection(_artSlave) && (_artSlave.dickAccessory != "chastity") && (_artSlave.dickAccessory != "combined chastity") >> + <<if (def _art_have_boobs) && (_art_scale_factor < 2.6)>> + /* only draw erect penis over boobs if boobs do not hide the penis' base */ + <<set _art = "Art_Vector_Revamp_Penis_"+_penisSize>> + <<include _art>> + <</if>> + <<else>> + <<if ndef _art_have_boobs >> + /* flaccid penises are always drawn behind the boobs */ + <<set _art = "Art_Vector_Revamp_Flaccid_"+_penisSize>> + <<include _art>> + <<if (_artSlave.dickAccessory == "chastity") || (_artSlave.dickAccessory == "combined chastity") >> + /* this draws chastity OVER latex catsuit. prndev finds this alright. */ + <<set _art = "Art_Vector_Revamp_Chastity_Cage_"+_penisSize>> + <<include _art>> + <</if>> + <</if>> + <</if>> +<</if>> + +/* unset the variable for the next display */ +<<unset _art_have_boobs >> diff --git a/src/art/vector_revamp/Pubic_Hair.tw b/src/art/vector_revamp/Pubic_Hair.tw new file mode 100644 index 0000000000000000000000000000000000000000..1c2d19a61479c2c7bef90327f8343f0eb8da01f4 --- /dev/null +++ b/src/art/vector_revamp/Pubic_Hair.tw @@ -0,0 +1,27 @@ +:: Art_Vector_Revamp_Pubic_Hair_ [nobr] +<<if _showPubic == 1>> + <<if $showBodyMods == 1>> + <<if _artSlave.vaginaTat == "rude words">> + <<if _artSlave.dick != 0>> + <<set _art_pussy_tattoo_text to "Useless" >> + <<else>> + <<set _art_pussy_tattoo_text to "Fucktoy" >> + <</if>> + <<include Art_Vector_Revamp_Pussy_Tattoo>> + <</if>> + <</if>> + + <<switch _artSlave.pubicHStyle>> + <<case "strip" "in a strip">> + <<include Art_Vector_Revamp_Pubic_Hair_Strip >> + <<case "bushy" "bushy in the front and neat in the rear" "very bushy">> + <<include Art_Vector_Revamp_Pubic_Hair_Bush >> + <<case "neat">> + <<include Art_Vector_Revamp_Pubic_Hair_Neat >> + <<case "waxed">> + /* no hair to display */ + <<default>> + /* pubic hair style not supported - don't display anything*/ + <</switch>> + +<</if>> diff --git a/src/art/vector_revamp/Pussy.tw b/src/art/vector_revamp/Pussy.tw new file mode 100644 index 0000000000000000000000000000000000000000..a1effb7a367c2acf927bde0cb6d7277b310bc4e3 --- /dev/null +++ b/src/art/vector_revamp/Pussy.tw @@ -0,0 +1,6 @@ +:: Art_Vector_Revamp_Pussy_ [nobr] + +<<if _chastityVaginal == 0 && _showPussy>> + <<include Art_Vector_Revamp_Pussy>> +<</if>> + diff --git a/src/art/vector_revamp/Pussy_Piercings.tw b/src/art/vector_revamp/Pussy_Piercings.tw new file mode 100644 index 0000000000000000000000000000000000000000..49a53493e9efc8e69c31b9709cb6edb1179d0d45 --- /dev/null +++ b/src/art/vector_revamp/Pussy_Piercings.tw @@ -0,0 +1,19 @@ +:: Art_Vector_Revamp_Pussy_Piercings_ [nobr] + +<<if _showPussy == 1>> /* catsuit covers crotch */ + <<if $showBodyMods == 1>> + <<if _artSlave.vaginaPiercing == 1>> + <<include Art_Vector_Revamp_Pussy_Piercing>> + <<elseif _artSlave.vaginaPiercing == 2>> + <<include Art_Vector_Revamp_Pussy_Piercing_Heavy>> + <</if>> + + <<if _artSlave.clitPiercing == 1>> + <<include Art_Vector_Revamp_Clit_Piercing>> + <<elseif _artSlave.clitPiercing == 2>> + <<include Art_Vector_Revamp_Clit_Piercing_Heavy>> + <<elseif _artSlave.clitPiercing == 3>> + <<include Art_Vector_Revamp_Clit_Piercing_Smart>> + <</if>> + <</if>> +<</if>> diff --git a/src/art/vector_revamp/Set_Colour_Hair.tw b/src/art/vector_revamp/Set_Colour_Hair.tw new file mode 100644 index 0000000000000000000000000000000000000000..bb415763c465e96b04e5a0a0d7680cdba349b62f --- /dev/null +++ b/src/art/vector_revamp/Set_Colour_Hair.tw @@ -0,0 +1,230 @@ +:: Art_Vector_Revamp_Set_Colour_Hair_ [nobr] + +/* +"Free-Cities Dyes (taken from Cosmetic Rules Assistant Settings)"- +to-"HTML Color"-Map +courtesy of Nov-X */ + +<<switch _artSlave.hColor>> +<<case "auburn">> + <<set _hairColour to "#7e543e">> +<<case "black">> + <<set _hairColour to "#3F4040">> +<<case "blonde">> + <<set _hairColour to "#F4F1A3">> +<<case "blue">> + <<set _hairColour to "#4685C5">> +<<case "brown">> + <<set _hairColour to "#8D4F21">> +<<case "burgundy">> + <<set _hairColour to "#5f3946">> +<<case "chestnut">> + <<set _hairColour to "#663622">> +<<case "chocolate">> + <<set _hairColour to "#6e4937">> +<<case "copper">> + <<set _hairColour to "#a16145">> +<<case "dark brown">> + <<set _hairColour to "#463325">> +<<case "ginger">> + <<set _hairColour to "#da822d">> +<<case "golden">> + <<set _hairColour to "#ffdf31">> +<<case "green">> + <<set _hairColour to "#5FBA46">> +<<case "grey">> + <<set _hairColour to "#9e9fa4">> +<<case "hazel">> + <<set _hairColour to "#8d6f1f">> +<<case "pink">> + <<set _hairColour to "#D18CBC">> +<<case "platinum blonde">> + <<set _hairColour to "#fcf3c1">> +<<case "red">> + <<set _hairColour to "#BB2027">> +<<case "silver">> + <<set _hairColour to "#cdc9c6">> +<<case "strawberry-blonde">> + <<set _hairColour to "#e5a88c">> +<<case "blazing red">> + <<set _hairColour to "#E00E2B">> +<<case "neon green">> + <<set _hairColour to "#25d12b">> +<<case "neon blue">> + <<set _hairColour to "#2284C3">> +<<case "neon pink">> + <<set _hairColour to "#cc26aa">> +<<default>> + /* everything else: assume it already is HTML compliant color name or value */ + <<set _hairColour to extractHairColor(_artSlave.hColor) >> +<</switch>> + +<<set _eyeColor to "fill:#F4F1A3;" >> + +<<switch _artSlave.eyeColor>> +<<case "auburn">> + <<set _eyeColor to "#7e543e">> +<<case "black">> + <<set _eyeColor to "#3F4040">> +<<case "blonde">> + <<set _eyeColor to "#F4F1A3">> +<<case "blue">> + <<set _eyeColor to "#4685C5">> +<<case "brown">> + <<set _eyeColor to "#8D4F21">> +<<case "burgundy">> + <<set _eyeColor to "#5f3946">> +<<case "chestnut">> + <<set _eyeColor to "#663622">> +<<case "chocolate">> + <<set _eyeColor to "#6e4937">> +<<case "copper">> + <<set _eyeColor to "#a16145">> +<<case "dark brown">> + <<set _eyeColor to "#463325">> +<<case "ginger">> + <<set _eyeColor to "#da822d">> +<<case "golden">> + <<set _eyeColor to "#ffdf31">> +<<case "green">> + <<set _eyeColor to "#5FBA46">> +<<case "grey">> + <<set _eyeColor to "#9e9fa4">> +<<case "hazel">> + <<set _eyeColor to "#8d6f1f">> +<<case "pink">> + <<set _eyeColor to "#D18CBC">> +<<case "platinum blonde">> + <<set _eyeColor to "#fcf3c1">> +<<case "red">> + <<set _eyeColor to "#BB2027">> +<<case "silver">> + <<set _eyeColor to "#cdc9c6">> +<<case "strawberry-blonde">> + <<set _eyeColor to "#e5a88c">> +<<case "blazing red">> + <<set _eyeColor to "#E00E2B">> +<<case "neon green">> + <<set _eyeColor to "#25d12b">> +<<case "neon blue">> + <<set _eyeColor to "#2284C3">> +<<case "neon pink">> + <<set _eyeColor to "#cc26aa">> +<<default>> + /* everything else: assume it already is HTML compliant color name or value */ + <<set _eyeColor to extractHairColor(_artSlave.eyeColor) >> +<</switch>> + + +<<set _pubicColor to "fill:#3F4040;" >> + +<<switch _artSlave.pubicHColor>> +<<case "auburn">> + <<set _pubicColor to "#7e543e">> +<<case "black">> + <<set _pubicColor to "#3F4040">> +<<case "blonde">> + <<set _pubicColor to "#F4F1A3">> +<<case "blue">> + <<set _pubicColor to "#4685C5">> +<<case "brown">> + <<set _pubicColor to "#8D4F21">> +<<case "burgundy">> + <<set _pubicColor to "#5f3946">> +<<case "chestnut">> + <<set _pubicColor to "#663622">> +<<case "chocolate">> + <<set _pubicColor to "#6e4937">> +<<case "copper">> + <<set _pubicColor to "#a16145">> +<<case "dark brown">> + <<set _pubicColor to "#463325">> +<<case "ginger">> + <<set _pubicColor to "#da822d">> +<<case "golden">> + <<set _pubicColor to "#ffdf31">> +<<case "green">> + <<set _pubicColor to "#5FBA46">> +<<case "grey">> + <<set _pubicColor to "#9e9fa4">> +<<case "hazel">> + <<set _pubicColor to "#8d6f1f">> +<<case "pink">> + <<set _pubicColor to "#D18CBC">> +<<case "platinum blonde">> + <<set _pubicColor to "#fcf3c1">> +<<case "red">> + <<set _pubicColor to "#BB2027">> +<<case "silver">> + <<set _pubicColor to "#cdc9c6">> +<<case "strawberry-blonde">> + <<set _pubicColor to "#e5a88c">> +<<case "blazing red">> + <<set _pubicColor to "#E00E2B">> +<<case "neon green">> + <<set _pubicColor to "#25d12b">> +<<case "neon blue">> + <<set _pubicColor to "#2284C3">> +<<case "neon pink">> + <<set _pubicColor to "#cc26aa">> +<<default>> + /* everything else: assume it already is HTML compliant color name or value */ + <<set _pubicColor to extractHairColor(_artSlave.pubicHColor) >> +<</switch>> + +<<set _underArmHColor to "fill:#3F4040;" >> + +<<switch _artSlave.underArmHColor>> +<<case "auburn">> + <<set _underArmHColor to "#7e543e">> +<<case "black">> + <<set _underArmHColor to "#3F4040">> +<<case "blonde">> + <<set _underArmHColor to "#F4F1A3">> +<<case "blue">> + <<set _underArmHColor to "#4685C5">> +<<case "brown">> + <<set _underArmHColor to "#8D4F21">> +<<case "burgundy">> + <<set _underArmHColor to "#5f3946">> +<<case "chestnut">> + <<set _underArmHColor to "#663622">> +<<case "chocolate">> + <<set _underArmHColor to "#6e4937">> +<<case "copper">> + <<set _underArmHColor to "#a16145">> +<<case "dark brown">> + <<set _underArmHColor to "#463325">> +<<case "ginger">> + <<set _underArmHColor to "#da822d">> +<<case "golden">> + <<set _underArmHColor to "#ffdf31">> +<<case "green">> + <<set _underArmHColor to "#5FBA46">> +<<case "grey">> + <<set _underArmHColor to "#9e9fa4">> +<<case "hazel">> + <<set _underArmHColor to "#8d6f1f">> +<<case "pink">> + <<set _underArmHColor to "#D18CBC">> +<<case "platinum blonde">> + <<set _underArmHColor to "#fcf3c1">> +<<case "red">> + <<set _underArmHColor to "#BB2027">> +<<case "silver">> + <<set _underArmHColor to "#cdc9c6">> +<<case "strawberry-blonde">> + <<set _underArmHColor to "#e5a88c">> +<<case "blazing red">> + <<set _underArmHColor to "#E00E2B">> +<<case "neon green">> + <<set _underArmHColor to "#25d12b">> +<<case "neon blue">> + <<set _underArmHColor to "#2284C3">> +<<case "neon pink">> + <<set _underArmHColor to "#cc26aa">> +<<default>> + /* everything else: assume it already is HTML compliant color name or value */ + <<set _underArmHColor to extractHairColor(_artSlave.underArmHColor) >> +<</switch>> + diff --git a/src/art/vector_revamp/Set_Colour_Outfit.tw b/src/art/vector_revamp/Set_Colour_Outfit.tw new file mode 100644 index 0000000000000000000000000000000000000000..e2310cb00a444a742e8e079012ff32693e227ba0 --- /dev/null +++ b/src/art/vector_revamp/Set_Colour_Outfit.tw @@ -0,0 +1,14 @@ +:: Art_Vector_Revamp_Set_Colour_Outfit_ + +/* BEWARE: _outfitBaseColour is used by Art_Vector_Revamp_Set_Colour_Skin_ */ +/* BEWARE: _outfitBaseColour is read by Wardrobe Use */ + +<<unset _outfitBaseColour>> + +<<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> + <<set _outfitBaseColour = "#515351" >> /* standard "black rubber" latex colour */ + <<if def _artSlave.clothingBaseColor>> + <<set _outfitBaseColour = _artSlave.clothingBaseColor >> /* latex colour selected by user */ + /* TODO: rewrite all textual descriptions not to explicitly mention the latex being of black colour. */ + <</if>> +<</if>> diff --git a/src/art/vector_revamp/Set_Colour_Shoe.tw b/src/art/vector_revamp/Set_Colour_Shoe.tw new file mode 100644 index 0000000000000000000000000000000000000000..f40595370de8e8ae463be0164bf8d23b933ab0b3 --- /dev/null +++ b/src/art/vector_revamp/Set_Colour_Shoe.tw @@ -0,0 +1,34 @@ +:: Art_Vector_Revamp_Set_Colour_Shoe_ [nobr] + +/* courtesy of Nov-X */ + +/* BEWARE: _shoeColour is read by Wardrobe Use */ + +/* note: only heels use this shadow */ +<<set _shoeShadowColour to "#15406D">> + +<<switch _artSlave.shoes>> + <<case "heels" "extreme heels">> + <<set _shoeColour to "#3E65B0">> + <<case "boots">> + <<set _shoeColour to "#8F8F8E">> + <<case "flats">> + <<set _shoeColour to "#65AD45">> + <<case "pumps">> + <<set _shoeColour to "#4F6AB2">> + <<default>> + /* use colour for "heels" by default */ + <<set _shoeColour to "#3E65B0">> +<</switch>> + +<<if def _artSlave.shoeColor>> + <<set _shoeColour = _artSlave.shoeColor >> /* shoe colour selected by user */ + <<set _shoeShadowColour to _shoeColour+";opacity: 0.5">> /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */ +<</if>> + +/* override colour in case of full body latex outfit */ +<<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" >> + <<set _shoeColour to _skinColour>> + <<set _shoeShadowColour to _shoeColour+";opacity: 0.5">> /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */ +<</if>> + diff --git a/src/art/vector_revamp/Set_Colour_Skin.tw b/src/art/vector_revamp/Set_Colour_Skin.tw new file mode 100644 index 0000000000000000000000000000000000000000..36b7e1fcaed4cfd14bf3ecbd50bf9caa5b34bd99 --- /dev/null +++ b/src/art/vector_revamp/Set_Colour_Skin.tw @@ -0,0 +1,80 @@ +:: Art_Vector_Revamp_Set_Colour_Skin_ + +/* BEWARE: _outfitBaseColour is set by Art_Vector_Revamp_Set_Colour_Outfit_ */ + +<<set _areolaStyle to "fill:#d76b93;" >> /* this is the default and can be customized later */ +<<set _labiaStyle to _areolaStyle >> /* this is the default and can be customized later */ +/* todo: introduce one "flesh" CSS class */ + +<<unset _headSkinStyle>> +<<unset _torsoSkinStyle >> +<<unset _boobSkinStyle>> +<<unset _penisSkinStyle>> +<<unset _scrotumSkinStyle>> + +<<switch _artSlave.skin>> +<<case "light" "white" "fair" "lightened" >> + <<set _skinColour to "#F6E0E8">> +<<case "extremely pale">> + <<set _skinColour to "#f4eaf0">> +<<case "pale">> + <<set _skinColour to "#f9ebf0">> +<<case "tanned" "natural">> + <<set _skinColour to "#F4C7A5">> +<<case "olive">> + <<set _skinColour to "#a07c48">> +<<case "light brown" "dark">> + <<set _skinColour to "#C97631">> + /* darker areolae and labia for more contrast to skin */ + <<set _areolaStyle to "fill:#ba3549;" >> + <<set _labiaStyle to _areolaStyle >> +<<case "brown" >> + <<set _skinColour to "#763818">> +<<case "black">> + <<set _skinColour to "#3f3b3a">> +<<case "camouflage patterned">> + <<set _skinColour to "#78875a">> +<<case "red dyed" "dyed red">> + <<set _skinColour to "#bc4949">> +<<case "green dyed" "dyed green">> + <<set _skinColour to "#A6C373">> +<<case "blue dyed" "dyed blue">> + <<set _skinColour to "#5b8eb7">> +<<case "tiger striped">> + <<set _skinColour to "#e2d75d">> +<<default>> + <<set _skinColour to _artSlave.skin>> +<</switch>> + +/* BEGIN SKIN COLOUR OVERRIDES FOR LATEX CLOTHING EMULATION */ + +<<if _artSlave.fuckdoll != 0>> + /* slave is a fuckdoll - display all skin as if it was black rubber */ + <<set _skinColour to _outfitBaseColour>> + <<set _areolaStyle to "fill:rgba(0,0,0,0.3);">> + <<set _labiaStyle to _areolaStyle >> +<</if>> + +/* slave wears restrictive latex - display most skin as if it was rubber */ +<<if _artSlave.clothes == "restrictive latex">> + /* nice latex does not cover any privates. */ + + <<set _torsoSkinStyle to _outfitBaseColour>> + <<set _boobSkinStyle to "fill:"+_skinColour+";">> + <<set _penisSkinStyle to _torsoSkinStyle>> + <<set _scrotumSkinStyle to _torsoSkinStyle>> + /* rest of body is covered in latex */ + <<set _skinColour to _outfitBaseColour>> +<</if>> +<<if _artSlave.clothes == "a latex catsuit">> + /* nice latex does not cover head. */ + <<set _headSkinStyle to "fill:"+_skinColour+";">> + /* rest of body is covered in latex */ + <<set _skinColour to _outfitBaseColour>> + /* catsuit covers areolae and crotch, too */ + <<set _areolaStyle to "fill:rgba(0,0,0,0.3);">> /* areolae are represented by a darker area */ + /* todo: gain control over piercings to do the same with them ^^ */ + <<set _labiaStyle to _areolaStyle >> +<</if>> + +/* END SKIN COLOUR OVERRIDES FOR LATEX CLOTHING EMULATION */ diff --git a/src/art/vector_revamp/Torso.tw b/src/art/vector_revamp/Torso.tw new file mode 100644 index 0000000000000000000000000000000000000000..7f96570868d379816ecbf74da8103a20e828111e --- /dev/null +++ b/src/art/vector_revamp/Torso.tw @@ -0,0 +1,40 @@ +:: Art_Vector_Revamp_Torso_ [nobr] + +/* Torso size switch courtesy of Nov-X */ + +/* BEWARE: _torsoSize might be used in torso outfit */ + +<<if _artSlave.waist < -40>> + <<if _artSlave.weight > 30>> + <<set _torsoSize = "Hourglass">> + <<else>> + <<set _torsoSize = "Unnatural">> + <</if>> +<<elseif _artSlave.waist <= 10>> + <<if _artSlave.weight > 30>> + <<set _torsoSize = "Normal">> + <<else>> + <<set _torsoSize = "Hourglass">> + <</if>> +<<else>> + <<set _torsoSize = "Normal">> +<</if>> + +<<set _art = "Art_Vector_Revamp_Torso_"+_torsoSize >> +<<include _art >> + +<<if _showTorsoHighlight == 1>> + <<include Art_Vector_Revamp_Torso_Highlights2 >> + <<include Art_Vector_Revamp_Torso_Highlights1 >> +<</if>> + +<<if _showArmHair == 1>> + <<switch _artSlave.underArmHStyle>> + <<case "bushy">> + <<include Art_Vector_Revamp_Arm_Down_Hair_Bushy >> + <<case "neat">> + <<include Art_Vector_Revamp_Arm_Down_Hair_Neat >> + <<default>> + /* pubic hair style not supported - don't display anything*/ + <</switch>> +<</if>> \ No newline at end of file diff --git a/src/art/vector_revamp/Torso_Outfit.tw b/src/art/vector_revamp/Torso_Outfit.tw new file mode 100644 index 0000000000000000000000000000000000000000..1e819506913f0ffb6fe424c28996361608a0e28c --- /dev/null +++ b/src/art/vector_revamp/Torso_Outfit.tw @@ -0,0 +1,43 @@ +:: Art_Vector_Revamp_Torso_Outfit_ [nobr] + +/* BEWARE: _torsoSize is set by Art_Vector_Revamp_Torso_ */ + +/* TODO: latex catsuit should cover vagina and its piercings, too */ + +<<set _art = false >> + +<<switch _artSlave.clothes>> + <<case "uncomfortable straps">> + <<set _art = "Art_Vector_Revamp_Torso_Outfit_Straps_" >> + <<default>> + /* do nothing */ +<</switch>> + +<<if _art >> + <<set _art = _art+_torsoSize >> + <<include _art >> +<</if>> + +<<if _artSlave.clothes == "a nice maid outfit">> + <<set _art = "Art_Vector_Revamp_Torso_Outfit_Maid_"+_torsoSize >> + <<include _art >> + +<<elseif _artSlave.clothes == "a slutty maid outfit">> + <<set _art = "Art_Vector_Revamp_Torso_Outfit_Maid_Lewd_"+_torsoSize >> + <<include _art >> +<</if>> + +/* shiny clothings */ +<<if $seeVectorArtHighlights == 1>> + <<if _showTorsoHighlight == 1>> + <<if _artSlave.amp != 0>> + /* this shiny shoulder only looks sensible on amputees */ + /*<<include Art_Vector_Revamp_Torso_Outfit_Shine_Shoulder>>*/ + <</if>> + <<if _artSlave.preg <= 0>> + /* the hip can be hidden by pregnant belly */ + /*<<set _art = "Art_Vector_Revamp_Torso_Outfit_Shine_"+_torsoSize >>*/ + /*<<include _art >>*/ + <</if>> + <</if>> +<</if>> diff --git a/src/art/vector_revamp/layers/Arm_Down_Hair_Bushy.tw b/src/art/vector_revamp/layers/Arm_Down_Hair_Bushy.tw new file mode 100644 index 0000000000000000000000000000000000000000..209c2cad35b6c04918baf170c07ef1e6ce715d26 --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Down_Hair_Bushy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Arm_Down_Hair_Bushy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><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"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Arm_Down_Hair_Neat.tw b/src/art/vector_revamp/layers/Arm_Down_Hair_Neat.tw new file mode 100644 index 0000000000000000000000000000000000000000..a76b1dbf76b1a7d2f1dc78d10be5b7e97a4227d1 --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Down_Hair_Neat.tw @@ -0,0 +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 diff --git a/src/art/vector_revamp/layers/Arm_Hair.tw b/src/art/vector_revamp/layers/Arm_Hair.tw new file mode 100644 index 0000000000000000000000000000000000000000..ad422060e7f555fcf7c4f8931db9bbed1e49d2c5 --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Hair.tw @@ -0,0 +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 diff --git a/src/art/vector_revamp/layers/Arm_Hightlights1.tw b/src/art/vector_revamp/layers/Arm_Hightlights1.tw new file mode 100644 index 0000000000000000000000000000000000000000..c8f3d3a20f58001b7320508f40a39655d4091622 --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Hightlights1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Arm_Hightlights1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 264.02548,194.63655 c -2.42677,0.3965 -4.07691,2.49696 -4.68327,3.78258 1.45536,-0.87497 3.7861,-2.37251 4.68327,-3.78258 z" class="highlight1" id="path1141-07" sodipodi:nodetypes="ccc"/><path d="m 387.27371,191.22429 c -1.20741,-3.25929 -4.94338,-5.47961 -6.89118,-5.97258 1.60807,1.78204 4.69195,5.10987 6.89118,5.97258 z" class="highlight1" id="path1141-07-4" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Arm_Hightlights2.tw b/src/art/vector_revamp/layers/Arm_Hightlights2.tw new file mode 100644 index 0000000000000000000000000000000000000000..371c44d76aa763388129ec3ffebb58e3c8aa04ba --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Hightlights2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Arm_Hightlights2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-7" class="highlight2" d="m 265.77944,193.45942 c -4.10072,1.03769 -6.4965,4.8075 -7.88783,5.69551 1.54928,-0.0618 6.54674,-0.73329 7.88783,-5.69551 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-7-7" class="highlight2" d="m 376.43971,182.92074 c 1.39814,3.96435 9.20533,8.8149 11.5112,9.59607 -0.012,-1.47027 -4.46242,-9.07782 -11.5112,-9.59607 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-7-7-9" class="highlight2" d="m 376.65484,195.65209 c -0.43813,1.40732 0.73929,4.4073 1.22362,5.11026 0.30485,-0.41575 0.64886,-3.48691 -1.22362,-5.11026 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0" class="highlight2" d="m 393.88595,237.77147 c -0.32539,0.74013 0.13184,2.44777 0.35259,2.86072 0.19174,-0.20786 0.56818,-1.86069 -0.35259,-2.86072 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4" class="highlight2" d="m 385.14008,263.75716 c -0.78222,2.40877 0.79804,8.13462 1.18455,9.61072 0.30165,-0.60698 1.05052,-6.02219 -1.18455,-9.61072 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4-2" class="highlight2" d="m 395.8318,320.41341 c -0.78222,2.40877 0.26679,5.72837 0.6533,7.20447 0.30165,-0.60698 1.58177,-3.61594 -0.6533,-7.20447 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4-2-3" class="highlight2" d="m 403.73963,350.27896 c -0.78222,2.40877 7.11689,32.90779 7.5034,34.38389 0.30165,-0.60698 -5.26833,-30.79536 -7.5034,-34.38389 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4-2-3-9" class="highlight2" d="m 401.89462,412.05807 c -0.78222,2.40877 1.74189,13.28279 2.1284,14.75889 0.30165,-0.60698 0.10667,-11.17036 -2.1284,-14.75889 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4-2-3-9-9" class="highlight2" d="m 426.17396,448.15929 c -0.29986,0.92338 0.66774,5.09182 0.8159,5.65767 0.11563,-0.23268 0.0409,-4.28204 -0.8159,-5.65767 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-7-7-7-7-9-0-4-2-3-9-9-9" class="highlight2" d="m 419.66199,478.73368 c -0.29986,0.92338 0.16774,2.27932 0.3159,2.84517 0.11563,-0.23268 0.5409,-1.46954 -0.3159,-2.84517 z"/><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" class="highlight2" d="m 224.70264,318.95995 c 0.32134,5.04063 -7.00595,19.45209 -8.15426,21.83013 -0.30999,-1.13135 3.20436,-18.68405 8.15426,-21.83013 z"/><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" class="highlight2" d="m 212.63145,385.55078 c 1.44309,8.15138 -3.97322,45.41148 -7.54093,49.38775 2.98356,-1.72687 4.87317,-42.0146 7.54093,-49.38775 z"/><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-5" class="highlight2" d="m 206.90405,453.66964 c 1.84328,3.70775 1.06078,14.41863 -0.7066,16.30014 1.40444,-0.81288 -0.54919,-12.82939 0.7066,-16.30014 z"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..4e40bb5c9e87610d3588f9ca01920941ef9ffaa0 --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Left_High.tw @@ -0,0 +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" 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 diff --git a/src/art/vector_revamp/layers/Arm_Left_Low.tw b/src/art/vector_revamp/layers/Arm_Left_Low.tw new file mode 100644 index 0000000000000000000000000000000000000000..2514f7b2248f7557a523aa51dca5a9461fb2799c --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Left_Low.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Arm_Left_Low [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><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"/><path d="m 376.26653,307.61106 c -1.88158,6.09632 1.78864,14.58239 5.2492,26.09205 2.46473,8.19757 1.44095,16.36694 3.6408,24.0503 3.71989,12.99237 10.12989,25.00635 12.07785,36.18157 4.97043,28.51471 7.02391,41.093 7.02391,41.093 0.93429,4.44769 1.11063,8.61058 1.13471,8.20116 -0.50858,2.50315 -1.84566,4.26985 -3.07415,6.13307 -4.24317,4.44186 -10.16962,8.21041 -12.54906,13.39776 -1.35273,1.84846 -1.33633,4.63248 -1.65625,6.40149 -1.54405,3.15371 -5.45081,5.77187 -1.20417,10.23813 0.67374,0.57695 1.79742,0.88394 2.87256,1.22005 0.43604,2.40878 0.39022,4.81755 0.16282,7.22633 2.85652,2.31993 5.73383,4.62055 10.20275,5.44325 2.74382,0.3074 5.49067,0.75728 8.17729,-1.62387 3.18049,0.27826 5.74573,-1.12514 8.04562,-3.25386 3.06833,-0.26918 5.98639,-1.00499 7.94931,-4.70674 2.52633,-0.0808 2.65601,-0.84635 3.69726,-1.35146 0.93229,-8.68965 1.82726,-17.46971 -0.23479,-33.41487 0.41885,-0.86041 0.90873,-1.54325 1.10644,-2.95652 -0.4755,-1.97859 -0.64423,-3.89583 -0.8344,-5.81736 0,0 -1.32658,-10.15105 -4.03375,-27.40667 -3.28397,-20.9322 -0.61749,-47.35642 -3.56145,-61.93369 -5.07086,-25.10879 -12.88754,-33.92208 -16.17665,-44.92823 -1.06963,-9.28742 -6.90951,-43.83017 -10.48131,-76.21312 1.6744,-16.82464 3.75524,-26.77216 -7.88563,-41.90342 -8.1,-7.9 -27.20662,-9.05478 -27.20662,-9.05478 -2.50151,5.59877 -7.25637,8.55837 -2.40116,26.5298 2.34527,6.04617 2.69274,12.23744 3.13339,18.91848 3.16851,28.04891 8.85591,61.81475 16.82548,83.43815 z" class="skin" id="L" sodipodi:nodetypes="csssccccccccccccccccssccccccc"/><path d="m 400.21324,339.59811 c 2.28724,-7.90419 0.16428,-14.75962 4.08426,-29.01888 -3.08119,14.24267 -0.8821,20.11482 -4.08426,29.01888 z" class="shadow" id="XMLID_511_-7" sodipodi:nodetypes="ccc"/><path d="m 389.91598,480.42287 c 3.56887,-5.29673 6.17469,-4.86012 7.88496,-5.19822 -2.90441,0.89603 -3.40117,1.2881 -7.88496,5.19822 z" class="shadow" id="XMLID_511_-7-7" sodipodi:nodetypes="ccc"/><path d="m 397.62,475.34913 c 0.91262,4.89077 0.42469,4.57738 -0.20879,6.45803 0.34559,-1.79147 0.47383,-1.55565 0.20879,-6.45803 z" class="shadow" id="XMLID_511_-7-7-1" sodipodi:nodetypes="ccc"/><path d="m 389.94651,480.42726 c 3.74075,0.1564 3.34657,0.40551 5.66621,1.39553 -2.29503,-0.79147 -2.60429,-0.71189 -5.66621,-1.39553 z" class="shadow" id="XMLID_511_-7-7-1-5" sodipodi:nodetypes="ccc"/><path d="m 395.58875,481.81007 c 0.81106,-0.0584 1.11219,0.0383 1.83027,-0.0263 -0.74815,-0.0766 -0.92069,-0.19236 -1.83027,0.0263 z" class="shadow" id="XMLID_511_-7-7-1-5-7" sodipodi:nodetypes="ccc"/><path d="m 395.21385,471.43485 c 3.24075,3.78139 6.52211,7.82362 6.6855,10.12614 -0.74816,-2.15084 -3.99858,-6.31751 -6.6855,-10.12614 z" class="shadow" id="XMLID_511_-7-7-1-3" sodipodi:nodetypes="ccc"/><path d="m 397.36582,481.79837 c 0.48966,2.24565 0.48961,2.53137 0.18896,4.84494 -0.03,-2.25028 9.9e-4,-2.53891 -0.18896,-4.84494 z" class="shadow" id="XMLID_511_-7-7-1-3-8" sodipodi:nodetypes="ccc"/><path d="m 395.59441,481.80942 c -1.77529,1.48331 -2.33881,2.63081 -3.19189,4.56873 0.50033,-2.4602 1.19423,-3.20182 3.19189,-4.56873 z" class="shadow" id="XMLID_511_-7-7-1-3-8-6" sodipodi:nodetypes="ccc"/><path d="m 406.58031,480.91449 c 2.78763,4.09389 1.63865,8.46444 1.80204,10.76696 -0.48254,-2.22896 0.88488,-6.95833 -1.80204,-10.76696 z" class="shadow" id="XMLID_511_-7-7-1-3-83" sodipodi:nodetypes="ccc"/><path d="m 414.94951,479.59973 c 2.85013,4.01576 1.21881,6.60828 1.3822,8.9108 -0.29504,-2.24459 1.30472,-5.10217 -1.3822,-8.9108 z" class="shadow" id="XMLID_511_-7-7-1-3-83-4" sodipodi:nodetypes="ccc"/><path d="m 422.63931,477.03646 c 2.78763,4.07826 1.5007,4.26397 1.66409,6.56649 -0.42004,-2.22896 1.02283,-2.75786 -1.66409,-6.56649 z" class="shadow" id="XMLID_511_-7-7-1-3-83-43" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Arm_Left_Mid.tw b/src/art/vector_revamp/layers/Arm_Left_Mid.tw new file mode 100644 index 0000000000000000000000000000000000000000..1a8608884f7714bc838a0c76c331a80b6c1ed444 --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Left_Mid.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Arm_Left_Mid [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 376.26653,307.61106 c -2.14507,6.09632 -0.33627,-1.11766 -8.28781,8.24803 -6.41273,5.73171 -13.73675,9.1208 -19.21976,14.90883 -9.89974,9.39391 -17.1364,21.01569 -25.69503,28.19124 -22.97544,17.58176 -32.54807,26.04377 -32.44767,26.17476 -4.71971,3.25593 -6.98177,5.17073 -6.60604,4.99068 -2.25247,0.42386 -4.54216,0.30428 -6.85349,0.3077 -5.97727,-2.19144 -12.14538,-5.25725 -17.81681,-4.42042 -2.42192,-0.43726 -4.77865,1.00481 -6.39623,1.67643 -3.50625,0.19028 -8.02445,-2.1659 -9.52507,3.94239 -0.31164,0.93267 -0.10386,2.09675 0.336,3.10278 -2.02172,1.40151 -4.15962,2.52147 -6.22906,3.66676 -0.9935,3.41188 -1.85756,6.89293 0.22449,11.56178 0.89202,2.85535 1.71797,5.68378 5.40606,6.34661 1.00146,3.18589 3.51876,4.70427 6.7648,5.43665 1.53016,2.74488 3.34207,5.18227 7.98617,4.64392 0.89042,2.39641 1.99385,1.92846 2.98313,2.56849 8.0794,-3.30439 16.22958,-6.65429 29.05616,-16.50298 0.88216,0.0148 1.51394,0.30053 3.12066,-0.47613 1.62864,-1.24752 3.16542,-2.38431 4.67149,-3.56582 0.0732,0.0997 8.45625,-5.76864 21.95816,-16.88893 16.563,-11.99664 40.36676,-23.22176 52.33009,-33.31707 19.61377,-15.66755 35.65223,-41.26319 32.25561,-52.31081 -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" class="shadow" id="path3147" sodipodi:nodetypes="ccccccccccccccccccccccccccccc"/><path sodipodi:nodetypes="csssccccccccccccccccssccccccc" id="path3149" class="skin" d="m 376.26653,307.61106 c -1.88158,6.09632 0.0721,-0.38679 -8.28781,8.24803 -5.95419,6.15001 -13.58527,9.24086 -19.21976,14.90883 -9.52778,9.5844 -16.88934,21.04002 -25.69503,28.19124 -22.4686,18.24708 -32.44767,26.17476 -32.44767,26.17476 -3.42707,2.98497 -6.9752,5.16935 -6.60604,4.99068 -2.43327,0.77692 -4.62773,0.47137 -6.85349,0.3077 -5.94727,-1.53772 -12.12776,-4.87332 -17.81681,-4.42042 -2.27347,-0.27933 -4.69587,1.09288 -6.39623,1.67643 -3.50625,0.19028 -7.69738,-1.94327 -9.52507,3.94239 -0.17505,0.86957 0.10502,2.00026 0.336,3.10278 -1.89015,1.55553 -4.01532,2.6904 -6.22906,3.66676 -0.63201,3.62524 -1.23701,7.25921 0.22449,11.56178 1.06993,2.54525 2.01696,5.16263 5.40606,6.34661 1.30836,2.91224 3.78469,4.46715 6.7648,5.43665 1.73156,2.54731 3.79719,4.73584 7.98617,4.64392 1.30274,2.16604 2.03431,1.90586 2.98313,2.56849 8.04065,-3.42448 16.14203,-6.92564 29.05616,-16.50298 0.95542,-0.054 1.79046,0.0406 3.12066,-0.47613 1.49535,-1.38016 3.08678,-2.46258 4.67149,-3.56582 0,0 8.21468,-6.10923 21.95816,-16.88893 16.67175,-13.07648 41.04026,-23.63702 52.33009,-33.31707 19.4463,-16.67353 35.54472,-41.30466 32.25561,-52.31081 -1.06963,-9.28742 -6.90951,-43.83017 -10.48131,-76.21312 1.6744,-16.82464 3.75524,-26.77216 -7.88563,-41.90342 -8.1,-7.9 -27.20662,-9.05478 -27.20662,-9.05478 -2.50151,5.59877 -7.25637,8.55837 -2.40116,26.5298 2.34527,6.04617 2.69274,12.23744 3.13339,18.91848 3.16851,28.04891 8.85591,61.81475 16.82548,83.43815 z"/><path sodipodi:nodetypes="ccc" id="path3151" class="shadow" d="m 383.41945,309.3693 c 2.28724,-7.90419 0.16428,-14.75962 4.08426,-29.01888 -3.08119,14.24267 -0.8821,20.11482 -4.08426,29.01888 z"/><path sodipodi:nodetypes="ccc" id="path3153" class="shadow" d="m 243.99178,394.75453 c 6.36467,0.53211 7.2545,3.0199 8.38384,4.34803 -2.19884,-2.09847 -2.78341,-2.3409 -8.38384,-4.34803 z"/><path sodipodi:nodetypes="ccc" id="path3155" class="shadow" d="m 252.17869,399.00532 c -3.82444,3.18216 -3.78884,2.60335 -5.7396,2.96762 1.73249,-0.57209 1.58917,-0.34512 5.7396,-2.96762 z"/><path sodipodi:nodetypes="ccc" id="path3157" class="shadow" d="m 389.94651,480.42726 c 3.74075,0.1564 3.34657,0.40551 5.66621,1.39553 -2.29503,-0.79147 -2.60429,-0.71189 -5.66621,-1.39553 z"/><path sodipodi:nodetypes="ccc" id="path3159" class="shadow" d="m 395.58875,481.81007 c 0.81106,-0.0584 1.11219,0.0383 1.83027,-0.0263 -0.74815,-0.0766 -0.92069,-0.19236 -1.83027,0.0263 z"/><path sodipodi:nodetypes="ccc" id="path3161" class="shadow" d="m 254.42221,394.99561 c -1.72043,4.67349 -3.64876,9.50965 -5.57914,10.77534 1.51274,-1.7022 3.5648,-6.57205 5.57914,-10.77534 z"/><path sodipodi:nodetypes="ccc" id="path3163" class="shadow" d="m 246.42463,401.92902 c -1.72159,1.52278 -1.97104,1.6621 -4.1374,2.52807 1.94983,-1.12376 2.21692,-1.23748 4.1374,-2.52807 z"/><path sodipodi:nodetypes="ccc" id="path3165" class="shadow" d="m 245.55098,400.388 c -2.1608,-0.82632 -3.4374,-0.75858 -5.54527,-0.55809 2.39176,-0.76317 3.37763,-0.51913 5.54527,0.55809 z"/><path sodipodi:nodetypes="ccc" id="path3167" class="shadow" d="m 251.69058,409.54203 c -2.21424,4.43034 -6.59008,5.55902 -8.52045,6.8247 1.71049,-1.50842 6.50611,-2.62141 8.52045,-6.8247 z"/><path sodipodi:nodetypes="ccc" id="path3169" class="shadow" d="m 256.9204,416.20694 c -2.11555,4.4468 -5.17445,4.28717 -7.10483,5.55286 1.81559,-1.35236 5.09049,-1.34957 7.10483,-5.55286 z"/><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"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..d4c948cb6d9b423105c3896d4db4cfa2d04a2c2c --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Right_High.tw @@ -0,0 +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"/><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_Right_Low.tw b/src/art/vector_revamp/layers/Arm_Right_Low.tw new file mode 100644 index 0000000000000000000000000000000000000000..231471cfcc9f94c098694f1f02165769ec26bb38 --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Right_Low.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Arm_Right_Low [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccccccccccccccccccccccc" id="path6858" d="m 271.15625,190.83398 c -10e-4,4.6e-4 -8.26074,0.52813 -17.10937,12.11719 -1.95254,1.86976 -4.95834,7.89234 -5.26368,13.1211 -1.71092,6.18845 -0.1326,11.40008 0.002,11.34961 -0.19861,0 -8.95387,22.74833 -10.89063,34.11914 -4.73894,17.98871 -5.67054,26.42171 -7.78906,36.2246 -3.17908,9.89918 -4.89436,15.96148 -5.71485,19.94336 -5.06993,6.85112 -8.10421,13.34386 -8.54687,20.41211 -2.24109,9.40174 -4.38422,26.77908 -4.7832,46.10157 -3.50027,22.27819 -5.65754,42.50139 -5.24317,42.45995 -0.7027,2.24865 -3.2029,17.94008 -2.65136,16.86036 0.0698,2.98489 2.21741,10.2966 2.64062,10.08203 -3.09584,18.22842 -1.13432,24.9636 -0.20117,33.41406 0.86351,0.5359 0.75775,1.60998 3.14258,1.35156 1.54951,3.84452 3.86687,4.77729 6.75781,4.70704 1.90524,2.23359 3.84428,4.14478 6.83789,3.2539 2.18731,2.68613 4.46787,2.41076 6.95117,1.625 3.94723,-0.66167 6.57922,-2.7601 8.67188,-5.44336 -0.0772,-2.36656 0.089,-4.70108 0.13867,-7.22656 1.08731,-0.11312 1.98448,-0.49494 2.44141,-1.2207 4.06786,-4.29003 0.31185,-7.07578 -1.02344,-10.23828 -0.0572,-1.85161 0.0658,-4.67587 -1.40625,-6.40039 -1.58155,-5.30494 -11.94648,-13.93928 -12.09961,-13.89844 -0.062,-2.40524 -0.10595,-4.80553 -0.79883,-7.38281 -0.1713,-7.88139 1.18999,-16.32513 1.13866,-20.25192 6.09926,-36.72474 24.81008,-86.9047 23.00389,-104.64057 7.91689,-17.39493 20.65345,-84.67624 20.02344,-84.86524 0.59049,-15.19144 -1.41369,-30.38287 1.77147,-45.57431 z" style="fill:#000000"/><path d="m 271.15625,190.83398 c 0,0 -6.00932,-0.18284 -17.10937,12.11719 -1.50978,1.67298 -4.34625,7.6203 -5.26368,13.1211 -0.98724,5.91707 0.002,11.34961 0.002,11.34961 0,0 -8.36237,22.74833 -10.89063,34.11914 -3.94958,17.76318 -5.33355,26.32543 -7.78906,36.2246 -2.45551,9.89918 -4.67817,15.96148 -5.71485,19.94336 -0.29595,1.13676 -6.38568,7.78114 -8.54687,20.41211 -2.23481,13.06125 -3.14408,30.49951 -4.7832,46.10157 -2.32818,22.16098 -5.24317,42.45995 -5.24317,42.45995 0,0 -2.24718,14.88177 -2.65136,16.86036 0.16806,1.41327 2.2846,9.22162 2.64062,10.08203 -1.75274,15.94516 -0.99362,24.72441 -0.20117,33.41406 0.88506,0.50511 0.9952,1.27076 3.14258,1.35156 1.66848,3.70176 4.14973,4.43786 6.75781,4.70704 1.95491,2.12872 4.13447,3.53216 6.83789,3.2539 2.28362,2.38115 4.61893,1.9324 6.95117,1.625 3.79859,-0.8227 6.24384,-3.12343 8.67188,-5.44336 -0.19329,-2.40878 -0.23197,-4.81778 0.13867,-7.22656 0.91387,-0.33611 1.86874,-0.64375 2.44141,-1.2207 3.60965,-4.46626 0.289,-7.08457 -1.02344,-10.23828 -0.27193,-1.76901 -0.25643,-4.55193 -1.40625,-6.40039 -2.02253,-5.18735 -12.09961,-13.89844 -12.09961,-13.89844 l -0.79883,-7.38281 c -0.93798,-8.23224 0.71057,-12.58293 1.06641,-19.01954 l 0.1445,-1.90225 c 6.39226,-48.88511 24.38187,-87.12412 22.93164,-103.9707 6.9,-17.7 20.02344,-84.86524 20.02344,-84.86524 z" id="R" sodipodi:nodetypes="ccccsscsscccccccccccccccccccc" class="skin"/><path d="m 238.37545,485.13693 c -3.21198,-5.29673 -5.55722,-4.86012 -7.09647,-5.19822 2.61397,0.89603 3.06106,1.2881 7.09647,5.19822 z" class="shadow" id="XMLID_511_-7-7-2" sodipodi:nodetypes="ccc"/><path d="m 231.44183,480.06319 c -0.82136,4.89077 -0.38222,4.57738 0.18791,6.45803 -0.31103,-1.79147 -0.42645,-1.55565 -0.18791,-6.45803 z" class="shadow" id="XMLID_511_-7-7-1-8" sodipodi:nodetypes="ccc"/><path d="m 238.34797,485.14132 c -3.36667,0.1564 -3.01191,0.40551 -5.09959,1.39553 2.06553,-0.79147 2.34386,-0.71189 5.09959,-1.39553 z" class="shadow" id="XMLID_511_-7-7-1-5-6" sodipodi:nodetypes="ccc"/><path d="m 233.26996,486.52413 c -0.72996,-0.0584 -1.00098,0.0383 -1.64725,-0.0263 0.67334,-0.0766 0.82862,-0.19236 1.64725,0.0263 z" class="shadow" id="XMLID_511_-7-7-1-5-7-8" sodipodi:nodetypes="ccc"/><path d="m 233.60737,476.14891 c -2.91668,3.78139 -5.8699,7.82362 -6.01695,10.12614 0.67334,-2.15084 3.59872,-6.31751 6.01695,-10.12614 z" class="shadow" id="XMLID_511_-7-7-1-3-1" sodipodi:nodetypes="ccc"/><path d="m 231.67059,486.51243 c -0.44069,2.24565 -0.44065,2.53137 -0.17006,4.84494 0.027,-2.25028 -8.9e-4,-2.53891 0.17006,-4.84494 z" class="shadow" id="XMLID_511_-7-7-1-3-8-1" sodipodi:nodetypes="ccc"/><path d="m 233.26486,486.52348 c 1.59776,1.48331 2.10493,2.63081 2.8727,4.56873 -0.45029,-2.4602 -1.0748,-3.20182 -2.8727,-4.56873 z" class="shadow" id="XMLID_511_-7-7-1-3-8-6-8" sodipodi:nodetypes="ccc"/><path d="m 223.67488,489.00293 c -2.72762,3.92201 -1.42836,5.1838 -1.35666,7.4082 0.0124,-2.24458 -1.06157,-3.59957 1.35666,-7.4082 z" class="shadow" id="XMLID_511_-7-7-1-3-83-47" sodipodi:nodetypes="ccc"/><path d="m 216.31402,486.23566 c -2.20575,4.25013 -1.28443,4.62391 -0.79086,6.92643 -0.32821,-2.24459 -1.06488,-2.78968 0.79086,-6.92643 z" class="shadow" id="XMLID_511_-7-7-1-3-83-4-5" sodipodi:nodetypes="ccc"/><path d="m 209.19191,482.61276 c -1.69128,4.25504 -0.69622,3.5111 -0.43702,5.81362 0.003,-2.22896 -1.10982,-1.62999 0.43702,-5.81362 z" class="shadow" id="XMLID_511_-7-7-1-3-83-43-5" sodipodi:nodetypes="ccc"/><path d="m 236.64537,334.13444 c 7.06021,-9.58357 6.87062,-4.51245 12.64676,-12.89388 -5.95381,6.59708 -7.27909,4.1666 -12.64676,12.89388 z" class="shadow" id="XMLID_511_-7-2" sodipodi:nodetypes="ccc"/><path d="m 226.7125,330.8948 c 2.03004,-7.72779 -0.11206,-3.27501 -0.69988,-11.9658 -0.56212,8.05549 2.57621,4.47596 0.69988,11.9658 z" class="shadow" id="XMLID_511_-7-2-0" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Arm_Right_Mid.tw b/src/art/vector_revamp/layers/Arm_Right_Mid.tw new file mode 100644 index 0000000000000000000000000000000000000000..d0982371528cb85b474fead094ebd8e9fc68bfa7 --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Right_Mid.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Arm_Right_Mid [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="display:inline;opacity:1;fill:#000000" d="m 271.15625,190.83398 c -10e-4,4.6e-4 -8.26074,0.52813 -17.10937,12.11719 -1.95254,1.86976 -4.95834,7.89234 -5.26368,13.1211 -1.71092,6.18845 -0.1326,11.40008 0.002,11.34961 -0.19861,0 -8.95387,22.74833 -10.89063,34.11914 -4.73894,17.98871 -5.67054,26.42171 -7.78906,36.2246 -3.17908,9.89918 -4.89436,15.96148 -5.71485,19.94336 -5.06993,6.85112 -3.83658,27.45999 1.73218,31.83549 6.46958,7.18051 19.56181,18.80628 35.24542,30.09973 16.35743,15.52431 31.7849,28.77666 31.98592,28.41196 1.45277,1.85464 12.9542,12.81771 12.37815,11.75086 2.49735,1.63637 9.73647,4.01722 9.79996,3.54699 13.25237,12.89318 19.91118,15.10009 27.39877,19.12712 0.93127,-0.4069 1.75565,0.28969 2.89619,-1.82061 4.04485,0.9058 6.12792,-0.47298 7.7106,-2.89323 2.92029,-0.30127 5.5943,-0.81332 6.55954,-3.78379 3.45298,-0.27672 4.52039,-2.31078 5.2826,-4.80141 1.69512,-3.6256 1.46086,-6.98356 0.43901,-10.22932 -1.99242,-1.27938 -3.82034,-2.741 -5.87162,-4.21503 0.52388,-0.95948 0.7186,-1.91488 0.38031,-2.70296 -1.22399,-5.78391 -5.64919,-4.27207 -9.01091,-4.96722 -1.55706,-1.00364 -3.81274,-2.7076 -6.06804,-2.47414 -5.26554,-1.70815 -18.25679,1.92653 -18.31006,2.0758 -2.01565,-1.31386 -4.01697,-2.63976 -6.53228,-3.53178 -6.58669,-4.3314 -12.76672,-10.24385 -16.02915,-12.42993 -26.77777,-25.86229 -53.20972,-51.69811 -55.01591,-69.43398 7.91689,-17.39493 20.65345,-84.67624 20.02344,-84.86524 0.59049,-15.19144 -1.41369,-30.38287 1.77147,-45.57431 z" id="path3186" sodipodi:nodetypes="cccccccccccccccccccccccccccc"/><path class="skin" sodipodi:nodetypes="ccccsscsscccccccccccccccccccc" id="path3188" d="m 271.15625,190.83398 c 0,0 -6.00932,-0.18284 -17.10937,12.11719 -1.50978,1.67298 -4.34625,7.6203 -5.26368,13.1211 -0.98724,5.91707 0.002,11.34961 0.002,11.34961 0,0 -8.36237,22.74833 -10.89063,34.11914 -3.94958,17.76318 -5.33355,26.32543 -7.78906,36.2246 -2.45551,9.89918 -4.67817,15.96148 -5.71485,19.94336 -0.29595,1.13676 -7.44168,22.88828 1.73218,31.83549 9.48636,9.252 23.32893,19.89639 35.24542,30.09973 16.92605,14.49271 31.98592,28.41196 31.98592,28.41196 0,0 10.97835,10.29527 12.37815,11.75086 1.25905,0.66361 8.88947,3.35187 9.79996,3.54699 12.13452,10.4916 19.79407,14.8485 27.39877,19.12712 0.91815,-0.44211 1.61108,-0.0983 2.89619,-1.82061 3.99482,0.72683 6.00895,-0.89851 7.7106,-2.89323 2.86213,-0.40168 5.25455,-1.3999 6.55954,-3.78379 3.25651,-0.52908 4.21224,-2.70662 5.2826,-4.80141 1.47818,-3.59459 0.97138,-6.91359 0.43901,-10.22932 -2.09307,-1.20775 -4.09857,-2.54294 -5.87162,-4.21503 0.24184,-0.94321 0.5304,-1.90402 0.38031,-2.70296 -1.62912,-5.50663 -5.66939,-4.25824 -9.01091,-4.96722 -1.6109,-0.77996 -3.89354,-2.37194 -6.06804,-2.47414 -5.41896,-1.27832 -18.31006,2.0758 -18.31006,2.0758 l -6.53228,-3.53178 c -7.31065,-3.89922 -9.95748,-7.72551 -15.05541,-11.6711 l -1.4843,-1.19845 c -36.62429,-33.00419 -53.05512,-52.14778 -54.50535,-68.99436 6.9,-17.7 20.02344,-84.86524 20.02344,-84.86524 z"/><path sodipodi:nodetypes="ccc" id="path3190" class="shadow" d="m 359.96083,414.41916 c -6.184,-0.36101 -7.15535,1.81781 -8.30722,2.89336 2.22113,-1.64386 2.79767,-1.7895 8.30722,-2.89336 z"/><path sodipodi:nodetypes="ccc" id="path3192" class="shadow" d="m 351.84852,417.24907 c 3.56093,3.45167 3.55208,2.91224 5.42413,3.51001 -1.65158,-0.7605 -1.52291,-0.53165 -5.42413,-3.51001 z"/><path sodipodi:nodetypes="ccc" id="path3194" class="shadow" d="m 359.94885,414.44428 c -1.78171,2.86085 -1.37528,2.7101 -1.7448,4.99089 0.52044,-2.14988 0.74391,-2.33389 1.7448,-4.99089 z"/><path sodipodi:nodetypes="ccc" id="path3196" class="shadow" d="m 233.26996,486.52413 c -0.72996,-0.0584 -1.00098,0.0383 -1.64725,-0.0263 0.67334,-0.0766 0.82862,-0.19236 1.64725,0.0263 z"/><path sodipodi:nodetypes="ccc" id="path3198" class="shadow" d="m 349.8544,413.24474 c 1.45845,4.5474 3.11093,9.27291 4.92336,10.7006 -1.38888,-1.77496 -3.15963,-6.54816 -4.92336,-10.7006 z"/><path sodipodi:nodetypes="ccc" id="path3200" class="shadow" d="m 357.2886,420.72046 c 1.59897,1.6372 1.83425,1.79931 3.89279,2.88939 -1.83755,-1.2992 -2.09103,-1.44003 -3.89279,-2.88939 z"/><path sodipodi:nodetypes="ccc" id="path3202" class="shadow" d="m 358.2024,419.41402 c 2.12802,-0.47385 3.36067,-0.24028 5.39203,0.22725 -2.28124,-1.02532 -3.24627,-0.93195 -5.39203,-0.22725 z"/><path sodipodi:nodetypes="ccc" id="path3204" class="shadow" d="m 354.80193,428.71736 c 1.68152,4.47153 3.45776,4.11776 5.33,5.321 -1.84113,-1.28394 -3.56627,-1.16856 -5.33,-5.321 z"/><path sodipodi:nodetypes="ccc" id="path3206" class="shadow" d="m 348.34631,433.20791 c 2.24783,4.22802 3.07842,3.68152 5.25439,4.58173 -2.03443,-1.00349 -2.90129,-0.70625 -5.25439,-4.58173 z"/><path sodipodi:nodetypes="ccc" id="path3208" class="shadow" d="m 341.32165,437.01632 c 2.54382,3.8072 2.49593,2.56571 4.5389,3.6589 -1.83361,-1.26734 -1.97191,-0.0112 -4.5389,-3.6589 z"/><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"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..80c4788ddb233c9bf2bbbec20d0a816d3ac5637c --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Stump.tw @@ -0,0 +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" 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" 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 new file mode 100644 index 0000000000000000000000000000000000000000..e42001566af398d69e2195879f7c10107b06a50a --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Up_Hair_Bushy.tw @@ -0,0 +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 diff --git a/src/art/vector_revamp/layers/Arm_Up_Hair_Neat.tw b/src/art/vector_revamp/layers/Arm_Up_Hair_Neat.tw new file mode 100644 index 0000000000000000000000000000000000000000..541e8092eb7c64205bc3ec428bd2efcaf5ddfb3f --- /dev/null +++ b/src/art/vector_revamp/layers/Arm_Up_Hair_Neat.tw @@ -0,0 +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 diff --git a/src/art/vector_revamp/layers/Ball_Gag.tw b/src/art/vector_revamp/layers/Ball_Gag.tw new file mode 100644 index 0000000000000000000000000000000000000000..063b9ec508e8fc824dedb729dc90343780c9c576 --- /dev/null +++ b/src/art/vector_revamp/layers/Ball_Gag.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Ball_Gag [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path transform="translate(-220)" style="fill:#070505" d="m 523.375,164.2125 -2.6,-6.8 c 12.75713,-2.94492 23.23175,-9.45485 32.075,-18.5625 l -2.2375,8.65 c -7.51195,8.76554 -17.68909,12.0982 -27.2375,16.7125 z" id="XMLID_892_" sodipodi:nodetypes="ccccc"/><path style="display:inline;fill:#070505" d="m 293.22989,164.19677 -0.18125,-6.175 c -9.86299,-0.39059 -15.54142,-2.51766 -23.98953,-7.65228 1.68204,3.01591 3.32107,6.03183 5.86142,9.04775 5.59927,3.72945 11.74667,3.21777 18.30936,4.77953 z" id="XMLID_892_-2" sodipodi:nodetypes="ccccc"/><ellipse ry="8.6999998" rx="7.5999999" cy="161.16251" cx="298.51154" class="gag" id="XMLID_893_"/><path d="m 306.02067,162.97491 -2.0677,2.89842 -5.39788,1.58688 -2.82555,-0.10895 -1.88734,-0.62251 -1.38183,-1.34784 -1.2286,-1.56979 1.06304,4.39723 6.7635,2.54005 5.76357,-2.47077 z" class="skin" id="path6092-9-0" sodipodi:nodetypes="ccccccccccc"/><path d="m 302.62164,169.71603 c -1.74238,0.53615 -2.60522,0.4584 -4.21391,0.59078 1.90231,1.18953 3.69017,1.02552 4.21391,-0.59078 z" class="shadow" id="path6086" sodipodi:nodetypes="ccc" inkscape:transform-center-x="-0.11271335" inkscape:transform-center-y="0.18012958"/><path d="m 304.91055,156.29042 -2.41768,-3.28171 -5.11224,-1.06107 -5.04732,2.60438 -0.83575,3.32702 1.24872,-0.83125 8.84286,-1.44319 1.18295,-0.0262 z" class="skin" id="path6092-9" sodipodi:nodetypes="ccccccccc"/><path d="m 295.20052,154.26071 c -2.3361,0.18741 -2.33066,0.35817 -4.0167,1.55377 1.655,-0.6968 2.23834,-1.20495 4.0167,-1.55377 z" class="shadow" id="path6090" sodipodi:nodetypes="ccc"/><path d="m 304.161,154.50746 c -2.57764,-0.30209 -3.84681,-1.5219 -6.16236,-0.68113 1.75915,-0.36046 4.35011,0.67624 6.16236,0.68113 z" class="shadow" id="path6092" sodipodi:nodetypes="ccc"/><path d="m 299.04326,167.07067 c -0.13152,0.022 -0.40257,0.12733 -0.53126,0.14693 -0.43426,0.066 -0.66116,0.11591 -0.9949,0.11275 -0.32669,-0.003 -0.64714,-0.0906 -0.9716,-0.12883 -0.39646,-0.0467 -0.8023,-0.0332 -1.19129,-0.1229 -0.4284,-0.0988 -0.70933,-0.26528 -1.2387,-0.45306 -0.77848,-0.27614 -2.88068,-2.86681 -2.88068,-2.86681 0,0 1.49812,2.61596 2.79901,3.13737 3.08136,1.23506 6.83182,0.62648 9.92721,-0.79502 0.85817,-0.39411 2.09247,-3.26423 2.09247,-3.26423 0,0 -1.38905,2.28638 -2.22782,2.75017 -0.83878,0.46378 -1.81847,0.80943 -2.77091,1.08765 -0.65596,0.19162 -1.81889,0.36368 -2.01153,0.39598 z" class="shadow" id="path6088-1" sodipodi:nodetypes="ssaaascasccas"/><path d="m 301.42603,155.31779 c -1.28714,0.38629 -2.48719,0.72941 -3.60885,0.9432 -0.19845,0.0378 -0.36644,-0.0156 -0.55908,0.0167 -0.13152,0.022 -0.28928,0.13121 -0.41797,0.15079 -0.43426,0.066 -0.85211,0.11837 -1.2517,0.15887 -0.18968,0.0192 -0.37524,-0.0526 -0.55649,-0.0385 -0.18537,0.0144 -0.36623,0.11468 -0.54237,0.1242 -0.77914,0.0421 -1.28226,-0.0804 -1.68445,0.0447 -0.56144,0.17459 -1.39365,1.2375 -1.39365,1.2375 0,0 1.11202,-0.73807 1.36276,-0.82425 0.25074,-0.0862 5.13658,0.10226 8.25323,-1.27205 0.8774,-0.3869 2.03092,-0.18331 3.83075,0.45061 -1.71452,-1.0529 -3.04021,-1.10941 -3.43218,-0.99177 z" class="shadow" id="path6088-5" sodipodi:nodetypes="ssssssssczscs"/><path d="m 306.00314,162.68917 c 0.82424,1.59261 -0.25293,4.15034 -0.18904,5.79891 0.0911,2.35063 0.32668,3.5911 0.37952,5.03581 1.6367,0.3233 0.5575,-1.65754 0.30956,-2.60214 -0.29108,-1.10897 -0.42575,-1.27143 -0.51903,-2.48708 -0.1298,-1.69155 1.24547,-4.2508 0.019,-5.7455 z" class="highlightStrong" id="path6086-7" sodipodi:nodetypes="cscsscc" inkscape:transform-center-x="0.11270875" inkscape:transform-center-y="0.18012958"/><path d="m 291.15378,163.72407 c -0.16856,1.30377 1.45269,2.69973 1.87939,4.09263 0.53262,1.73866 0.85951,3.42387 1.37577,4.68809 -1.35851,0.96837 -1.26851,-1.95297 -1.43138,-2.91589 -0.11777,-0.69625 -0.20232,-0.84009 -0.3062,-1.37611 -0.29951,-1.54531 -1.83304,-2.52165 -1.51758,-4.48872 z" class="highlightStrong" id="path6086-7-7" sodipodi:nodetypes="cscssc" inkscape:transform-center-x="-0.45383565" inkscape:transform-center-y="0.091816717"/><path d="m 305.98681,162.86279 c 0.3563,1.7575 -1.38048,3.92219 -1.77075,5.52517 -0.55648,2.28563 -0.79481,6.07442 -1.13986,7.47832 1.31025,1.89023 1.36569,-0.045 1.29978,-1.65992 -0.0468,-1.14558 -0.13923,-4.46443 0.10418,-5.65911 0.33867,-1.66238 2.27663,-3.9109 1.50666,-5.68446 z" class="highlightStrong" id="path6086-7-0" sodipodi:nodetypes="cscsscc" inkscape:transform-center-x="0.11270875" inkscape:transform-center-y="0.18012958"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Balls_0.tw b/src/art/vector_revamp/layers/Balls_0.tw new file mode 100644 index 0000000000000000000000000000000000000000..10cef6da79b7676c611412c783e23d83caf9e263 --- /dev/null +++ b/src/art/vector_revamp/layers/Balls_0.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Balls_0 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 280.8,465.675 c 0.7,2 1.6,2.3 2.3,2.5 1.4,0.4 2.2,-0.1 4.6,0.6 1.1,0.4 1.8,1.2 3.6,1.2 0.4,0 2.9,0.4 5,-1.5 1.3,-1.2 1.2,-3 1.2,-5.7 0,-2 -0.4,-3.3 -0.7,-4.1 -0.5,-1.3 -0.8,-2.1 -1.5,-2.6 -1.7,-1.1 -4.2,0.1 -5.5,0.7 -1.4,0.7 -3.1,-0.2 -4.7,1.3 -2.6,2.1 -5.2,5.2 -4.3,7.6 z" class="shadow" id="XMLID_876_" sodipodi:nodetypes="cscscsccccc"/><path d="m 280.9,463.575 c -0.1,1.2 0.4,2.7 1.5,3.5 1.2,0.9 2,0.1 4.5,0.7 2,0.5 1.9,1.2 3.5,1.3 0.4,0.1 3.3,0.4 5.1,-1.3 1.3,-1.3 1.2,-3.2 1.2,-5.9 0,-2 -0.4,-3.4 -0.7,-4.2 -0.5,-1.4 -1.37452,-4.32132 -2.17452,-4.82132 -1.7,-1.2 -4.4,0.1 -5.6,0.7 -1.4,0.7 -1.72548,3.52132 -3.32548,5.02132 -2.7,2.3 -3.9,3.5 -4,5 z" class="skin scrotum" id="XMLID_877_" sodipodi:nodetypes="cccccsccscc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Balls_1.tw b/src/art/vector_revamp/layers/Balls_1.tw new file mode 100644 index 0000000000000000000000000000000000000000..b7b70755abbd9643d94471018da5a4355969535a --- /dev/null +++ b/src/art/vector_revamp/layers/Balls_1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Balls_1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 272.075,472.6 c 1.2,3.4 2.8,3.9 3.9,4.3 2.5,0.7 3.8,-0.3 7.9,1.1 1.9,0.5 3.1,2.1 6.3,2.1 0.6,0 5,0.8 8.5,-2.7 2.2,-2.2 2.1,-5.3 2,-9.9 -0.1,-3.4 -0.8,-5.7 -1.2,-7 -0.9,-2.3 -1.3,-3.6 -2.7,-4.5 -2.9,-1.9 -7.3,0.2 -9.5,1.2 -2.4,1.2 -4.7,-0.7 -7.5,1.8 -4,3.8 -9.1,9.6 -7.7,13.6 z" class="shadow" id="XMLID_874_" sodipodi:nodetypes="cccsscccccc"/><path d="m 272.075,469.5 c -0.2,2.1 0.7,4.7 2.6,6.1 2.1,1.5 3.6,0.2 8.1,1.3 3.5,0.9 3.4,2 6.1,2.4 0.6,0.1 5.8,0.8 8.9,-2.4 2.3,-2.4 2.2,-5.6 2.1,-10.5 -0.1,-3.6 -0.8,-6 -1.3,-7.4 -0.9,-2.5 -1.75355,-4.91647 -3.15355,-5.81647 -3.1,-2 -7.7,0.2 -10,1.3 -2.6,1.2 -3.64645,3.61647 -6.54645,6.21647 -4.4,4 -6.6,6.1 -6.8,8.8 z" class="skin scrotum" id="XMLID_875_" sodipodi:nodetypes="ccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Balls_2.tw b/src/art/vector_revamp/layers/Balls_2.tw new file mode 100644 index 0000000000000000000000000000000000000000..95c0d8a00115aabbeaa80486c86e7b94f4eab3c5 --- /dev/null +++ b/src/art/vector_revamp/layers/Balls_2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Balls_2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 259.2,478.275 c 2,5.2 4.4,6.1 6.1,6.7 3.9,1.2 6,-0.4 12.4,1.6 2.9,0.9 4.9,3.3 9.8,3.3 0.9,0 7.8,1.3 13.3,-4.1 3.5,-3.4 3.3,-8.3 3.2,-15.5 -0.1,-5.3 -1.2,-8.9 -2,-10.9 -1.3,-3.6 -2.1,-5.8 -4.2,-7.1 -4.5,-2.9 -11.4,0.3 -14.8,2 -3.7,1.8 -6.8,-0.8 -11.2,3.2 -6.3,5.8 -14.9,14.5 -12.6,20.8 z" class="shadow" id="XMLID_872_" sodipodi:nodetypes="cccsccccccc"/><path d="m 259.2,473.675 c -0.2,3.4 1.2,7.6 4.2,9.7 3.3,2.4 5.8,0.3 12.8,2 5.5,1.4 5.3,3.1 9.7,3.8 1,0.2 9.2,1.3 14.2,-3.8 3.6,-3.7 3.6,-8.9 3.5,-16.6 -0.1,-5.7 -1.2,-9.6 -2,-11.7 -1.4,-3.9 -2.3,-6.1 -4.5,-7.6 -4.9,-3.2 -12.3,0.4 -15.9,2 -4.1,2 -6.4,4.1 -11.1,8.3 -7.1,6.4 -10.7,9.6 -10.9,13.9 z" class="skin scrotum" id="XMLID_873_" sodipodi:nodetypes="ccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Balls_3.tw b/src/art/vector_revamp/layers/Balls_3.tw new file mode 100644 index 0000000000000000000000000000000000000000..206c2d22d222de96d3b0e8af3bfceb50a5e08978 --- /dev/null +++ b/src/art/vector_revamp/layers/Balls_3.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Balls_3 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 252.4,487.475 c 2.5,6.8 5.7,8 8,8.7 5.1,1.5 7.8,-0.5 16.1,2.1 3.8,1.2 6.4,4.3 12.7,4.3 1.2,0 10.2,1.7 17.4,-5.3 4.5,-4.4 4.3,-10.8 4.2,-20.2 -0.1,-7 -1.5,-11.6 -2.5,-14.3 -1.7,-4.8 -2.8,-7.5 -5.4,-9.3 -5.9,-3.8 -14.8,0.3 -19.4,2.5 -4.9,2.3 -8.9,-1 -14.6,4.2 -8.3,7.7 -19.5,19 -16.5,27.3 z" class="shadow" id="XMLID_870_" sodipodi:nodetypes="cccsccccccc"/><path d="m 252.4,481.375 c -0.2,4.4 1.5,9.9 5.4,12.6 4.3,3.1 7.5,0.3 16.7,2.7 7.2,1.9 7,4.1 12.6,5 1.3,0.2 12.1,1.7 18.5,-5 4.8,-4.9 4.6,-11.6 4.5,-21.7 -0.1,-7.4 -1.6,-12.5 -2.7,-15.3 -1.9,-5.1 -3,-8 -5.9,-10 -6.4,-4.2 -16,0.5 -20.7,2.7 -5.3,2.5 -8.3,5.3 -14.5,10.8 -8.9,8.5 -13.5,12.7 -13.9,18.2 z" class="skin scrotum" id="XMLID_871_" sodipodi:nodetypes="ccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Balls_4.tw b/src/art/vector_revamp/layers/Balls_4.tw new file mode 100644 index 0000000000000000000000000000000000000000..26a0258484bb84fe4cdb1da68e129d3d8dc171d5 --- /dev/null +++ b/src/art/vector_revamp/layers/Balls_4.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Balls_4 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 243.6,499.375 c 3.3,8.9 7.4,10.4 10.4,11.3 6.6,2 10.1,-0.6 21,2.7 5,1.5 8.3,5.6 16.6,5.6 1.5,0 13.3,2.3 22.7,-7 5.9,-5.7 5.6,-14.1 5.4,-26.3 -0.2,-9.1 -2,-15.1 -3.3,-18.6 -2.3,-6.2 -3.6,-9.8 -7.1,-12.1 -7.7,-5 -19.3,0.5 -25.2,3.3 -6.3,3 -11.6,-1.4 -19,5.4 -10.8,10.2 -25.4,25 -21.5,35.7 z" class="shadow" id="XMLID_868_" sodipodi:nodetypes="cccsccccccc"/><path d="m 243.6,491.575 c -0.3,5.7 2,12.8 7.1,16.5 5.6,4.1 9.8,0.5 21.8,3.5 9.4,2.4 9.1,5.3 16.5,6.5 1.7,0.3 15.7,2.3 24.2,-6.5 6.2,-6.3 6,-15.1 5.9,-28.3 -0.2,-9.7 -2.1,-16.3 -3.5,-19.9 -2.4,-6.6 -3.9,-10.4 -7.7,-13 -8.3,-5.4 -20.9,0.6 -27.1,3.5 -7,3.3 -10.9,7 -18.9,14.1 -11.8,10.9 -17.8,16.3 -18.3,23.6 z" class="skin scrotum" id="XMLID_869_" sodipodi:nodetypes="ccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Belly.tw b/src/art/vector_revamp/layers/Belly.tw new file mode 100644 index 0000000000000000000000000000000000000000..cc47eb10c5a1144851b38449bb72ca2d13972a8c --- /dev/null +++ b/src/art/vector_revamp/layers/Belly.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Belly [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path1353" class="shadow" d="m 274.8,433.8 c 21.7045,0.8035 49.46622,-12.07771 61.9,-42.4 13.35711,-25.50652 -13.60539,-70.14322 -27.1735,-84.40895 C 307.9828,305.36798 290.7,289.7 290.7,289.7 l -38.01351,-0.0884 c -3.72119,10.50526 0.65099,5.14821 -10.23287,13.02156 C 225.22398,315.09704 205.23454,348.37128 208.9,386.5 c 2.04357,37.62359 45.18214,47.07566 65.9,47.3 z" sodipodi:nodetypes="ccsccscc"/><path d="m 274.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18.5,-83.4 -46,-101.7 -6.5,-4.3 -36.31351,-8.28839 -38.01351,-0.0884 C 250.08649,301.21161 205.4,323 208.9,386.5 c 1.8,34.8 45.1,47.2 65.9,47.3 z" class="skin" id="XMLID_544_" sodipodi:nodetypes="sscccs"/><path sodipodi:nodetypes="cccc" id="path1329" class="shadow" d="m 247.11813,400.93648 c 0.6843,-3.19765 0.13727,-8.57118 -0.57274,-9.24552 l -0.0242,10e-4 c -1.11133,4.1119 -0.35187,6.27483 0.59697,9.24433 z"/><path d="m 246.54539,391.69096 c -2.73244,-11.59717 1.40277,-43.43392 3.64449,-55.02388 7.09551,-25.7244 23.93942,-51.26551 23.93942,-51.26551 l 0.41957,0.10767 c 0,0 -13.88878,20.21402 -24.3576,51.16059 -2.55535,11.50057 -6.84773,48.18809 -3.67011,55.02232 z" class="muscle_tone" id="path1463" sodipodi:nodetypes="ccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Belly_Outfit_Maid.tw b/src/art/vector_revamp/layers/Belly_Outfit_Maid.tw new file mode 100644 index 0000000000000000000000000000000000000000..e48ffbaf42edc1e53a7f03445738a79442179f4c --- /dev/null +++ b/src/art/vector_revamp/layers/Belly_Outfit_Maid.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Belly_Outfit_Maid [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccsccscc" d="m 274.8,433.8 c 21.7045,0.8035 49.46622,-12.07771 61.9,-42.4 13.35711,-25.50652 -13.60539,-70.14322 -27.1735,-84.40895 C 307.9828,305.36798 290.7,289.7 290.7,289.7 h -40.4 c -3.72119,10.50526 0.56261,6.65081 -10.32125,14.52416 C 222.74911,316.68803 205.23454,348.37128 208.9,386.5 c 2.04357,37.62359 45.18214,47.07566 65.9,47.3 z" class="shadow" id="path1436"/><path style="display:inline;fill:#ffffff" id="path1438" d="m 274.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18.5,-83.4 -46,-101.7 -6.5,-4.3 -38.7,-8.2 -40.4,0 -2.6,11.6 -44.9,33.3 -41.4,96.8 1.8,34.8 45.1,47.2 65.9,47.3 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Belly_Outfit_Maid_Lewd.tw b/src/art/vector_revamp/layers/Belly_Outfit_Maid_Lewd.tw new file mode 100644 index 0000000000000000000000000000000000000000..0ea0259934a64ef407ed8524f21d6c9be5f016fd --- /dev/null +++ b/src/art/vector_revamp/layers/Belly_Outfit_Maid_Lewd.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Belly_Outfit_Maid_Lewd [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccsccscc" d="m 274.8,433.8 c 21.7045,0.8035 49.46622,-12.07771 61.9,-42.4 13.35711,-25.50652 -13.60539,-70.14322 -27.1735,-84.40895 C 307.9828,305.36798 290.7,289.7 290.7,289.7 h -40.4 c -3.72119,10.50526 0.56261,6.65081 -10.32125,14.52416 C 222.74911,316.68803 205.23454,348.37128 208.9,386.5 c 2.04357,37.62359 45.18214,47.07566 65.9,47.3 z" class="shadow" id="path1456"/><path id="path1458" class="skin" d="m 274.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18.5,-83.4 -46,-101.7 -6.5,-4.3 -38.7,-8.2 -40.4,0 -2.6,11.6 -44.9,33.3 -41.4,96.8 1.8,34.8 45.1,47.2 65.9,47.3 z"/><path d="m 274.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18,-72.7 -18,-72.7 -31.1469,1.14566 -64.65766,7.56452 -91.9,0 -17.21627,24.22829 -18.42262,47.68549 -17.9,67.8 1.8,34.8 45.1,47.2 65.9,47.3 z" id="path1450" style="display:inline;fill:#ffffff" sodipodi:nodetypes="sscccs"/><path d="m 255.56488,323.04208 c 2.51493,-15.06566 2.82724,-17.89909 18.56442,-37.64051 l 0.41957,0.10767 c -9.07306,11.02658 -17.01848,22.66319 -18.9826,37.53559 z" class="shadow" id="path1460" sodipodi:nodetypes="ccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Belly_Piercing.tw b/src/art/vector_revamp/layers/Belly_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..fb63c4af7214fab2650270e21029e5b74b3165ef --- /dev/null +++ b/src/art/vector_revamp/layers/Belly_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Belly_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle id="XMLID_547_" class="steel_piercing" cx="246.54645" cy="390.89999" r="1.2"/><circle id="XMLID_548_" class="steel_piercing" cx="247.16516" cy="401.18719" r="1.2"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Belly_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Belly_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..be602a8140eab71b72fd92d6048fa7e0113782ee --- /dev/null +++ b/src/art/vector_revamp/layers/Belly_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Belly_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 247,396.1 c -0.2,0 -1.6,2.1 -1.5,11.7 0.1,12.7 1.56039,13.34321 1.7,13.2 0.35325,-0.36234 0.35906,-16.24229 1.2,-15.9 -0.82281,-3.89532 -1.12121,-9.06465 -1.4,-9 z" class="steel_piercing" id="XMLID_549_" sodipodi:nodetypes="ccscc"/><path d="m 247.1,421.1 c -0.5,0 -1,2.4 -0.8,4.4 0.2,1.3 0.6,3 1.2,3 0.4,0 0.7,-1.8 0.8,-3 -0.1,-2 -0.7,-4.4 -1.2,-4.4 z" class="steel_piercing" id="XMLID_550_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Bit_Gag.tw b/src/art/vector_revamp/layers/Bit_Gag.tw new file mode 100644 index 0000000000000000000000000000000000000000..a0650c565e7be3384a9933961704e8d939c0a503 --- /dev/null +++ b/src/art/vector_revamp/layers/Bit_Gag.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Bit_Gag [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccc" id="path1228" d="m 529.28859,160.06078 -1.00625,-4.3 c 13.50884,-2.39103 21.6049,-8.96251 24.56766,-16.91078 l -2.2375,8.65 c -4.5049,6.14649 -11.54337,7.7443 -21.32391,12.56078 z" style="fill:#070505" transform="translate(-220)"/><path sodipodi:nodetypes="ccccc" id="path1230" d="m 287.60397,163.73515 -0.11875,-4.39375 c -11.01207,0.032 -15.30758,-3.90726 -18.42611,-8.97191 1.68204,3.01591 3.32107,6.03183 5.86142,9.04775 4.97651,1.7366 6.12074,2.75612 12.68344,4.31791 z" style="display:inline;fill:#070505"/><path d="m 307.0697,162.35378 -2.15252,-6.06594 -9.84101,-0.30977 -5.04732,2.60438 -0.39381,4.12252 1.91163,3.10203 12.51098,0.36877 1.18295,-0.0262 z" class="skin" id="path6092-9-1" sodipodi:nodetypes="ccccccccc"/><path inkscape:transform-center-y="0.18012958" inkscape:transform-center-x="0.11270875" sodipodi:nodetypes="cscsscc" id="path1248" class="highlightStrong" d="m 303.88182,159.68397 c 0.82424,1.59261 1.86839,7.15554 1.93228,8.80411 0.0911,2.35063 0.32668,3.5911 0.37952,5.03581 1.6367,0.3233 0.5575,-1.65754 0.30956,-2.60214 -0.29108,-1.10897 -0.42575,-1.27143 -0.51903,-2.48708 -0.1298,-1.69155 -0.87585,-7.256 -2.10232,-8.7507 z"/><path inkscape:transform-center-y="0.091816717" inkscape:transform-center-x="-0.45383565" sodipodi:nodetypes="cscssc" id="path1250" class="highlightStrong" d="m 293.18671,161.47017 c -0.16856,1.30377 -0.58024,4.95363 -0.15354,6.34653 0.53262,1.73866 0.85951,3.42387 1.37577,4.68809 -1.35851,0.96837 -1.26851,-1.95297 -1.43138,-2.91589 -0.11777,-0.69625 -0.20232,-0.84009 -0.3062,-1.37611 -0.29951,-1.54531 0.19989,-4.77555 0.51535,-6.74262 z"/><path inkscape:transform-center-y="0.18012958" inkscape:transform-center-x="0.11270875" sodipodi:nodetypes="cscsscc" id="path1252" class="highlightStrong" d="m 303.755,159.65871 c 0.3563,1.7575 0.85133,7.12627 0.46106,8.72925 -0.55648,2.28563 -0.79481,6.07442 -1.13986,7.47832 1.31025,1.89023 1.36569,-0.045 1.29978,-1.65992 -0.0468,-1.14558 -0.13923,-4.46443 0.10418,-5.65911 0.33867,-1.66238 0.0448,-7.11498 -0.72515,-8.88854 z"/><circle id="circle1133-2" class="steel_piercing" cx="308.61899" cy="157.93527" r="2.25"/><circle id="circle1133-7" class="steel_piercing" cx="287.7959" cy="161.52223" r="2.25"/><path sodipodi:nodetypes="ccccc" id="path1230-5" d="m 307.69511,158.62698 -0.17297,-0.81105 -3.86456,1.21173 c -0.0334,0.23738 -0.086,0.48025 0.0798,0.66071 z" class="steel_piercing"/><path class="steel_piercing" d="m 293.26019,161.53274 c 0.0776,-0.2002 0.0362,-0.38058 -0.0625,-0.55141 l -4.4735,0.3679 0.15998,0.64652 z" id="path1323" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccc" id="path1374" class="shadow" d="m 300.67907,164.2443 c -1.74079,0.54129 -2.60386,0.46609 -4.21215,0.60322 1.90581,1.1839 3.69318,1.01462 4.21215,-0.60322 z"/><path sodipodi:nodetypes="assssssssaassaa" id="path1376" class="shadow" d="m 304.16836,158.89728 c -0.65754,-0.15935 -1.25886,0.90901 -1.72778,1.06512 -1.27505,0.42448 -2.48719,0.72941 -3.60885,0.9432 -0.19845,0.0378 -0.36644,-0.0156 -0.55908,0.0167 -0.13152,0.022 -0.28928,0.13121 -0.41797,0.15079 -0.43426,0.066 -0.85211,0.11837 -1.2517,0.15887 -0.18968,0.0192 -0.37524,-0.0526 -0.55649,-0.0385 -0.18537,0.0144 -0.36623,0.11468 -0.54237,0.1242 -0.77914,0.0421 -1.26351,0.0593 -1.68445,0.0447 -0.26066,-0.009 -0.48867,-0.56649 -0.76394,-0.45611 -0.17938,0.0719 -0.27191,0.40524 -0.15456,0.5588 0.19626,0.2568 0.83404,-0.025 0.96964,-0.004 2.70837,0.41982 6.3844,-0.15314 9.47979,-1.57468 0.85817,-0.39411 1.04035,0.0106 1.1865,-0.37786 0.0838,-0.2227 -0.13749,-0.55517 -0.36874,-0.61121 z"/><path sodipodi:nodetypes="ccc" id="path1378" class="shadow" d="m 301.37797,158.85176 c -1.48115,-0.33094 -1.90064,-0.66259 -3.53037,0.43264 0.92533,-0.58981 2.22192,-0.63997 3.53037,-0.43264 z"/><path d="m 297.00827,159.30416 c -1.14969,-0.43141 -1.46342,-0.22949 -2.47508,0.37718 0.97221,-0.32418 1.20482,-0.53261 2.47508,-0.37718 z" class="shadow" id="path1380" sodipodi:nodetypes="ccc"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..69bda411c8a13bb050049fc0c2391aa0094b7c22 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g1065"><path sodipodi:nodetypes="cccccccc" id="path1056" class="shadow" 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 12.30515,-2.59845 22.51491,-12.16054 31.77186,-26.40779 2.55546,-15.31136 11.88781,-30.84621 8.29579,-40.31411 -1.93843,-3.02612 -7.62333,-5.27685 -12.16456,-8.48839 z"/><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 348.02261,248.51896 c 8.65355,-12.30579 11.43144,-30.88254 -0.97284,-43.4189 -14.67089,-12.96908 -28.30339,-7.92276 -38.99561,-8.00176 -24.21445,12.16832 -31.98806,25.58323 -28.88571,44.91992 6.30867,31.25913 54.29562,32.66603 68.85416,6.50074 z" class="shadow" id="path1050" sodipodi:nodetypes="ccccc"/><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 new file mode 100644 index 0000000000000000000000000000000000000000..ee04e34ee13938b4b98dde5484ff2e64da4b009c --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Areola.tw @@ -0,0 +1,3 @@ +:: 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_NoBoob.tw b/src/art/vector_revamp/layers/Boob_Areola_NoBoob.tw new file mode 100644 index 0000000000000000000000000000000000000000..f1d0120faef2906fdfecabd1d4bd6056edb0cf73 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Areola_NoBoob.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Areola_NoBoob [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_Areola_Piercing.tw b/src/art/vector_revamp/layers/Boob_Areola_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..c1699c4cd8098f66b6388710a3bd64543e86d447 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Areola_Piercing.tw @@ -0,0 +1,3 @@ +:: 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)"><circle id="circle1208" class="steel_piercing" cx="326.55273" cy="211.96944" r="2.25"/><circle r="2.25" id="circle1210" class="steel_piercing" cx="321.75674" cy="206.62288"/><circle id="circle1208-7" class="steel_piercing" cx="323.89911" cy="218.82379" r="2.25"/><circle id="circle1208-0" class="steel_piercing" cx="311.17117" cy="221.07768" r="2.25"/><circle id="circle1208-06" class="steel_piercing" cx="303.65814" cy="214.8905" r="2.25"/><circle id="circle1208-8" class="steel_piercing" cx="307.76822" cy="206.93555" r="2.25"/></g><g transform="'+_art_transform+'"id="g1417" transform="matrix(1.0228023,0,0,1.0228023,-5.1326497,-5.0109358)"><ellipse id="ellipse1212" transform="rotate(-166.16108)" class="steel_piercing" cx="-268.83929" cy="-169.38443" rx="1.350039" ry="1.8000519"/><ellipse id="ellipse1212-6" transform="rotate(-166.16108)" class="steel_piercing" cx="-270.20932" cy="-161.59186" rx="1.3500389" ry="1.8000519"/><ellipse id="ellipse1212-3" transform="rotate(-166.16108)" class="steel_piercing" cx="-263.35574" cy="-176.55655" rx="1.3500389" ry="1.8000519"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..a73ab67800f7e88832d2b89ab55ec7fd6a85660e --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Areola_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: 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="g1650" transform="matrix(1.0049807,0,0,1.0049807,-1.6578337,-0.99661844)"><path id="XMLID_525_-4" class="steel_piercing" d="m 322.98091,222.29698 c -0.0685,0.18791 2.92054,1.91584 5.23684,0.52488 1.80351,-1.1521 2.89046,-3.84255 1.65317,-5.99641 -1.27152,-2.05991 -3.88556,-2.4804 -5.77426,-1.67865 -2.30753,1.07485 -2.83075,3.97075 -2.7368,4.00499 0.24763,0.19668 1.27486,-2.62197 3.30847,-2.94518 1.20471,-0.0931 2.61403,0.42049 3.24541,1.6085 0.75081,1.4444 0.16871,3.04163 -0.80592,3.96365 -1.42769,1.28906 -4.15239,0.29607 -4.12691,0.51822 z"/><path id="XMLID_525_-4-3" class="steel_piercing" d="m 328.13387,215.2046 c 0.0611,0.19045 3.48187,-0.27678 4.45916,-2.79569 0.71859,-2.01584 -0.072,-4.80779 -2.36992,-5.75095 -2.26737,-0.84795 -4.59038,0.42234 -5.59106,2.21361 -1.16415,2.26379 0.19777,4.87246 0.29299,4.84192 0.31621,0.004 -0.60016,-2.85303 0.80837,-4.35506 0.89471,-0.81209 2.323,-1.27029 3.55012,-0.71876 1.47865,0.68088 1.99792,2.29963 1.79314,3.62556 -0.33771,1.89365 -3.09911,2.77948 -2.9428,2.93937 z"/><path id="XMLID_525_-4-3-0" class="steel_piercing" d="m 323.33923,208.9427 c 0.096,0.17545 3.36662,-0.93057 3.84966,-3.58889 0.3242,-2.11539 -0.98036,-4.70732 -3.41522,-5.19867 -2.38685,-0.40364 -4.42756,1.28324 -5.07125,3.23148 -0.7148,2.44317 1.1161,4.74704 1.20382,4.69903 0.31125,-0.0559 -1.12913,-2.68794 -0.0302,-4.42934 0.72489,-0.96671 2.04069,-1.68687 3.35,-1.37748 1.58077,0.38881 2.39693,1.88008 2.44673,3.2208 0.0267,1.92334 -2.51724,3.31564 -2.33351,3.44307 z"/><path id="XMLID_525_-4-3-0-5" class="steel_piercing" d="m 309.36246,208.08395 c 0.19032,0.0615 1.80589,-2.98979 0.32972,-5.25274 -1.21839,-1.75941 -3.94741,-2.74553 -6.05375,-1.42899 -2.01118,1.34726 -2.33415,3.97514 -1.46271,5.83271 1.15995,2.26596 4.07331,2.68109 4.10403,2.58593 0.18767,-0.25452 -2.66757,-1.17644 -3.06618,-3.19664 -0.13786,-1.20042 0.32296,-2.62786 1.48666,-3.303 1.41547,-0.80402 3.03325,-0.28173 3.99089,0.65792 1.34128,1.37873 0.45032,4.1385 0.67136,4.10479 z"/><path id="XMLID_525_-4-3-0-5-5" class="steel_piercing" d="m 304.98758,215.27739 c 0.19977,-0.01 0.62842,-3.43587 -1.55424,-5.02835 -1.76308,-1.21307 -4.66444,-1.16745 -6.1671,0.81042 -1.40278,1.97285 -0.77296,4.5445 0.70052,5.97238 1.88805,1.70742 4.75931,1.06255 4.7543,0.96268 0.0852,-0.30453 -2.91139,-0.15412 -4.00043,-1.90172 -0.55456,-1.07354 -0.62982,-2.57163 0.21887,-3.61553 1.0384,-1.25368 2.73626,-1.33896 3.96487,-0.79993 1.743,0.81355 1.8885,3.70992 2.08323,3.60002 z"/><path id="XMLID_525_-4-3-0-5-5-8" class="steel_piercing" d="m 313.00196,221.4571 c 0.19355,-0.0505 -0.0844,-3.49184 -2.54562,-4.60649 -1.97317,-0.82862 -4.80444,-0.19314 -5.87285,2.04928 -0.97165,2.21717 0.16865,4.60668 1.90203,5.70459 2.19618,1.28717 4.87596,0.0711 4.85072,-0.0256 0.0214,-0.3155 -2.88178,0.44197 -4.30387,-1.04725 -0.76155,-0.93812 -1.1403,-2.38949 -0.52197,-3.58434 0.76135,-1.43887 2.40627,-1.8681 3.7189,-1.59056 1.87215,0.44157 2.6044,3.24762 2.77267,3.10037 z"/></g><g transform="'+_art_transform+'"id="g1655" transform="matrix(1.0106254,0,0,1.0106254,-2.44532,-2.2864495)"><path id="XMLID_525_-4-3-0-3" class="steel_piercing" d="m 226.23976,224.03419 c 0.096,0.17545 3.36662,-0.93057 3.84966,-3.58889 0.3242,-2.11539 -0.98036,-4.70732 -3.41522,-5.19867 -2.38685,-0.40364 -4.42756,1.28324 -5.07125,3.23148 -0.7148,2.44317 1.1161,4.74704 1.20382,4.69903 0.31125,-0.0559 -1.12913,-2.68794 -0.0302,-4.42934 0.72489,-0.96671 2.04069,-1.68687 3.35,-1.37748 1.58077,0.38881 2.39693,1.88008 2.44673,3.2208 0.0267,1.92334 -2.51724,3.31564 -2.33351,3.44307 z"/><path id="XMLID_525_-4-3-0-3-2" class="steel_piercing" d="m 221.79512,232.06967 c 0.012,0.19964 3.44203,0.59373 5.01243,-1.60487 1.19522,-1.77523 1.12034,-4.67598 -0.87259,-6.15861 -1.9869,-1.38283 -4.55207,-0.7271 -5.96501,0.76071 -1.6883,1.90518 -1.0145,4.76979 -0.91468,4.76376 0.30537,0.0822 0.12474,-2.91279 1.86128,-4.0194 1.06788,-0.56535 2.56514,-0.65573 3.61755,0.18239 1.26409,1.02571 1.36649,2.72263 0.83988,3.9566 -0.79593,1.75113 -3.69069,1.92583 -3.57883,2.11943 z"/><path id="XMLID_525_-4-3-0-3-2-9" class="steel_piercing" d="m 213.61151,237.5937 c -0.072,0.1866 2.88498,1.969 5.22636,0.62068 1.8243,-1.11889 2.96033,-3.78898 1.76269,-5.96513 -1.23358,-2.08285 -3.8395,-2.55114 -5.74256,-1.78411 -2.32683,1.03243 -2.90298,3.91827 -2.80966,3.95422 0.24369,0.20154 1.32263,-2.59818 3.36185,-2.88408 1.20621,-0.071 2.60589,0.46828 3.21542,1.66764 0.72424,1.45791 0.11298,3.04422 -0.87836,3.94824 -1.45103,1.26272 -4.15711,0.21999 -4.13571,0.44256 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 new file mode 100644 index 0000000000000000000000000000000000000000..afd567c0228a589621d94bb08457a44317c3f341 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Areola_Piercing_NoBoob.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Areola_Piercing_NoBoob [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle id="circle1125" class="steel_piercing" cx="309.05273" cy="242.34444" r="2.25"/><ellipse id="ellipse1129" transform="rotate(-166.16108)" class="steel_piercing" cx="-301.22406" cy="-172.02744" rx="1.350039" ry="1.8000519"/><circle id="circle1131" class="steel_piercing" cx="317.02411" cy="242.44879" r="2.25"/><circle id="circle1133" class="steel_piercing" cx="317.17117" cy="233.57768" r="2.25"/><circle id="circle1135" class="steel_piercing" cx="308.90814" cy="233.703" r="2.25"/><ellipse id="ellipse1139" transform="rotate(-166.16108)" class="steel_piercing" cx="-295.81207" cy="-170.41136" rx="1.3500389" ry="1.8000519"/><ellipse id="ellipse1141" transform="rotate(-166.16108)" class="steel_piercing" cx="-298.56195" cy="-178.63326" rx="1.3500389" ry="1.8000519"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..859ef8336712c4c6bb04593290c8471b2fb1fe41 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Areola_Piercing_NoBoob_Heavy.tw @@ -0,0 +1,3 @@ +:: 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"><path d="m 316.57531,244.4989 c -0.0685,0.18791 2.92054,1.91584 5.23684,0.52488 1.80351,-1.1521 2.89046,-3.84255 1.65317,-5.99641 -1.27152,-2.05991 -3.88556,-2.4804 -5.77426,-1.67865 -2.30753,1.07485 -2.83075,3.97075 -2.7368,4.00499 0.24763,0.19668 1.27486,-2.62197 3.30847,-2.94518 1.20471,-0.0931 2.61403,0.42049 3.24541,1.6085 0.75081,1.4444 0.16871,3.04163 -0.80592,3.96365 -1.42769,1.28906 -4.15239,0.29607 -4.12691,0.51822 z" class="steel_piercing" id="path1657"/><path d="m 319.35905,235.62231 c 0.096,0.17545 3.36662,-0.93057 3.84966,-3.58889 0.3242,-2.11539 -0.98036,-4.70732 -3.41522,-5.19867 -2.38685,-0.40364 -4.42756,1.28324 -5.07125,3.23148 -0.7148,2.44317 1.1161,4.74704 1.20382,4.69903 0.31125,-0.0559 -1.12913,-2.68794 -0.0302,-4.42934 0.72489,-0.96671 2.04069,-1.68687 3.35,-1.37748 1.58077,0.38881 2.39693,1.88008 2.44673,3.2208 0.0267,1.92334 -2.51724,3.31564 -2.33351,3.44307 z" class="steel_piercing" id="path1661"/><path d="m 310.91722,234.39042 c 0.19032,0.0615 1.80589,-2.98979 0.32972,-5.25274 -1.21839,-1.75941 -3.94741,-2.74553 -6.05375,-1.42899 -2.01118,1.34726 -2.33415,3.97514 -1.46271,5.83271 1.15995,2.26596 4.07331,2.68109 4.10403,2.58593 0.18767,-0.25452 -2.66757,-1.17644 -3.06618,-3.19664 -0.13786,-1.20042 0.32296,-2.62786 1.48666,-3.303 1.41547,-0.80402 3.03325,-0.28173 3.99089,0.65792 1.34128,1.37873 0.45032,4.1385 0.67136,4.10479 z" class="steel_piercing" id="path1663"/><path d="m 311.4472,242.66397 c 0.19355,-0.0505 -0.0844,-3.49184 -2.54562,-4.60649 -1.97317,-0.82862 -4.80444,-0.19314 -5.87285,2.04928 -0.97165,2.21717 0.16865,4.60668 1.90203,5.70459 2.19618,1.28717 4.87596,0.0711 4.85072,-0.0256 0.0214,-0.3155 -2.88178,0.44197 -4.30387,-1.04725 -0.76155,-0.93812 -1.1403,-2.38949 -0.52197,-3.58434 0.76135,-1.43887 2.40627,-1.8681 3.7189,-1.59056 1.87215,0.44157 2.6044,3.24762 2.77267,3.10037 z" class="steel_piercing" id="path1667"/></g><g transform="'+_art_transform+'"transform="matrix(1.0106254,0,0,1.0106254,-2.44532,-2.2864495)" id="g1677"><path d="m 247.14266,237.14488 c 0.096,0.17545 3.36662,-0.93057 3.84966,-3.58889 0.3242,-2.11539 -0.98036,-4.70732 -3.41522,-5.19867 -2.38685,-0.40364 -4.42756,1.28324 -5.07125,3.23148 -0.7148,2.44317 1.1161,4.74704 1.20382,4.69903 0.31125,-0.0559 -1.12913,-2.68794 -0.0302,-4.42934 0.72489,-0.96671 2.04069,-1.68687 3.35,-1.37748 1.58077,0.38881 2.39693,1.88008 2.44673,3.2208 0.0267,1.92334 -2.51724,3.31564 -2.33351,3.44307 z" class="steel_piercing" id="path1671"/><path d="m 252.84025,241.53163 c 0.012,0.19964 3.44203,0.59373 5.01243,-1.60487 1.19522,-1.77523 1.12034,-4.67598 -0.87259,-6.15861 -1.9869,-1.38283 -4.55207,-0.7271 -5.96501,0.76071 -1.6883,1.90518 -1.0145,4.76979 -0.91468,4.76376 0.30537,0.0822 0.12474,-2.91279 1.86128,-4.0194 1.06788,-0.56535 2.56514,-0.65573 3.61755,0.18239 1.26409,1.02571 1.36649,2.72263 0.83988,3.9566 -0.79593,1.75113 -3.69069,1.92583 -3.57883,2.11943 z" class="steel_piercing" id="path1673"/><path d="m 247.50142,247.79778 c -0.072,0.1866 2.88498,1.969 5.22636,0.62068 1.8243,-1.11889 2.96033,-3.78898 1.76269,-5.96513 -1.23358,-2.08285 -3.8395,-2.55114 -5.74256,-1.78411 -2.32683,1.03243 -2.90298,3.91827 -2.80966,3.95422 0.24369,0.20154 1.32263,-2.59818 3.36185,-2.88408 1.20621,-0.071 2.60589,0.46828 3.21542,1.66764 0.72424,1.45791 0.11298,3.04422 -0.87836,3.94824 -1.45103,1.26272 -4.15711,0.21999 -4.13571,0.44256 z" class="steel_piercing" id="path1675"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..d862a90161b3faedcb3ed3252a7e465b772a1912 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Highlights1.tw @@ -0,0 +1,3 @@ +:: 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 new file mode 100644 index 0000000000000000000000000000000000000000..f7fbc692aea0b897022a402499dec56ec07a5e84 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Highlights2.tw @@ -0,0 +1,3 @@ +:: 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_Outfit_Maid.tw b/src/art/vector_revamp/layers/Boob_Outfit_Maid.tw new file mode 100644 index 0000000000000000000000000000000000000000..632aee841be621e47aa5e0c9c1d2c2fffb2bdaa7 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Outfit_Maid.tw @@ -0,0 +1,3 @@ +:: 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 -26.9708,5.57844 -53.81789,11.47426 -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 new file mode 100644 index 0000000000000000000000000000000000000000..71f4987a253906cab21f202140c090ae82e6e9df --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Outfit_Straps.tw @@ -0,0 +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 diff --git a/src/art/vector_revamp/layers/Boob_Piercing.tw b/src/art/vector_revamp/layers/Boob_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..d26f808a7c72f03fdc583614a55f68d305fea9ee --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Piercing.tw @@ -0,0 +1,3 @@ +:: 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)"><circle id="circle1102" class="steel_piercing" cx="308.05627" cy="208.32812" r="2.25"/><circle id="circle1104" class="steel_piercing" cy="207.72774" cx="320.6149" r="2.25"/><ellipse id="ellipse1106" transform="rotate(-166.16108)" class="steel_piercing" cx="-263.7442" cy="-165.79219" rx="1.350039" ry="1.8000519"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..4553c20663ebf03fe819fbe10f9f86f98d5d2661 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g1374" transform="matrix(1.0017178,0,0,1.0017178,-0.55263244,-0.3529705)"><path id="XMLID_610_" class="steel_piercing" d="m 309.90865,207.70517 c 0.21478,0 -1.07387,3.63006 -1.07387,8.81578 0,4.66721 1.07387,10.37151 3.65116,12.44583 3.00683,2.07431 6.22843,-4.66714 7.08751,-10.37151 0.8591,-5.70435 -0.64431,-10.37152 -0.42954,-10.8901 0.42954,-0.51857 2.36251,6.22293 1.93296,12.44584 -0.42955,7.26006 -3.65115,16.07583 -7.73184,14.52011 -3.00683,-1.03716 -6.01366,-6.74151 -6.01366,-14.52011 -0.42954,-7.26009 2.36251,-12.96441 2.57728,-12.44584 z" sodipodi:nodetypes="cscsccccc"/><path sodipodi:nodetypes="ccscccc" id="XMLID_611_" class="steel_piercing" d="m 211.74093,240.94933 c 1.60318,2.00397 4.01575,-3.05165 4.55014,-7.8612 0.53439,-4.40874 -0.17813,-8.0159 0,-8.4167 0.17813,-0.40078 1.06879,4.80954 0.89066,9.6191 -0.35627,5.61111 -3.06571,12.09415 -5.38141,11.29257 -1.05341,-1.99943 -0.215,-4.83345 -0.0594,-4.63377 z"/><path sodipodi:nodetypes="scccs" id="XMLID_612_" class="steel_piercing" d="m 212.62757,245.06158 c 0.12894,-0.24264 18.44383,30.27982 43.52882,29.12099 26.8292,-1.45432 58.8088,-41.66451 59.11592,-41.49573 0.32354,0.3868 -29.85403,43.84637 -57.84606,45.49774 -26.95814,1.69698 -44.92761,-32.88035 -44.79868,-33.123 z"/><circle id="circle1192" class="steel_piercing" cx="309.49377" cy="207.85938" r="2.25"/><circle r="2.25" id="circle1194" class="steel_piercing" cx="319.45865" cy="207.72774"/><ellipse id="ellipse1196" transform="rotate(-166.16108)" class="steel_piercing" cx="-263.7442" cy="-165.79219" rx="1.350039" ry="1.8000519"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..29ae9d3e763e84f385686551e3c9bcc5cbb007a4 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Piercing_NoBoob.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Piercing_NoBoob [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle id="XMLID_622_" class="steel_piercing" cx="308.27518" cy="237.54713" r="2.25"/><circle id="XMLID_623_" class="steel_piercing" cy="237.5405" cx="317.5838" r="2.25"/><ellipse id="XMLID_626_" transform="rotate(-166.16108)" class="steel_piercing" cx="-299.35211" cy="-174.46425" rx="1.350039" ry="1.8000519"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..cc4876bd461ac0103096611d5f132979aafec903 --- /dev/null +++ b/src/art/vector_revamp/layers/Boob_Piercing_NoBoob_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Boob_Piercing_NoBoob_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path1111" class="steel_piercing" d="m 308.53365,237.83017 c 0.21478,0 -1.07387,3.63006 -1.07387,8.81578 0,4.66721 1.07387,10.37151 3.65116,12.44583 3.00683,2.07431 6.22843,-4.66714 7.08751,-10.37151 0.8591,-5.70435 -0.64431,-10.37152 -0.42954,-10.8901 0.42954,-0.51857 2.36251,6.22293 1.93296,12.44584 -0.42955,7.26006 -3.65115,16.07583 -7.73184,14.52011 -3.00683,-1.03716 -6.01366,-6.74151 -6.01366,-14.52011 -0.42954,-7.26009 2.36251,-12.96441 2.57728,-12.44584 z" sodipodi:nodetypes="cscsccccc"/><path sodipodi:nodetypes="ccscccc" id="path1113" class="steel_piercing" d="m 243.0687,257.31608 c 1.60318,2.00397 4.95325,-3.11415 5.48764,-7.9237 0.53439,-4.40874 -0.17813,-8.0159 0,-8.4167 0.17813,-0.40078 1.06879,4.80954 0.89066,9.6191 -0.35627,5.61111 -4.00321,12.15665 -6.31891,11.35507 -1.05341,-1.99943 -0.215,-4.83345 -0.0594,-4.63377 z"/><path sodipodi:nodetypes="scccs" id="path1115" class="steel_piercing" d="m 243.42593,260.51411 c 0.12894,-0.24264 6.59979,33.10825 31.68478,31.94942 26.8292,-1.45432 38.47948,-29.82047 38.7866,-29.65169 0.32354,0.3868 -9.52471,32.00233 -37.51674,33.6537 -26.95814,1.69698 -33.08357,-35.70878 -32.95464,-35.95143 z"/><circle id="circle1117" class="steel_piercing" cx="308.29556" cy="237.84074" r="2.25"/><circle r="2.25" id="circle1119" class="steel_piercing" cx="317.58649" cy="237.63176"/><ellipse id="ellipse1121" transform="rotate(-166.16108)" class="steel_piercing" cx="-298.97275" cy="-173.90553" rx="1.350039" ry="1.8000519"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Butt_0.tw b/src/art/vector_revamp/layers/Butt_0.tw new file mode 100644 index 0000000000000000000000000000000000000000..69df5cf98ad0a282dc6d446e1933c4377c12b111 --- /dev/null +++ b/src/art/vector_revamp/layers/Butt_0.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Butt_0 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccc" d="m 266.49148,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" class="shadow" id="path6961"/><path id="path6963" class="skin" d="m 266.49148,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z"/><path id="path882" class="shadow" d="m 361.11649,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" sodipodi:nodetypes="cccccc"/><path d="m 361.11649,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" class="skin" id="path884"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Butt_1.tw b/src/art/vector_revamp/layers/Butt_1.tw new file mode 100644 index 0000000000000000000000000000000000000000..9fae61e7446caf7b05c48a9f52792b6d999e3756 --- /dev/null +++ b/src/art/vector_revamp/layers/Butt_1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Butt_1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path1037" class="shadow" d="m 267.81731,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" sodipodi:nodetypes="cccccc"/><path d="m 267.81731,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" class="skin" id="path1039"/><path sodipodi:nodetypes="cccccc" d="m 362.44232,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" class="shadow" id="path1041"/><path id="path1043" class="skin" d="m 362.44232,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Butt_2.tw b/src/art/vector_revamp/layers/Butt_2.tw new file mode 100644 index 0000000000000000000000000000000000000000..ab5705e7c6e3c99642040922cac8b806cb399a93 --- /dev/null +++ b/src/art/vector_revamp/layers/Butt_2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Butt_2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccc" d="m 269.58507,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" class="shadow" id="path1049"/><path id="path1051" class="skin" d="m 269.58507,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z"/><path id="path1053" class="shadow" d="m 364.21008,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" sodipodi:nodetypes="cccccc"/><path d="m 364.21008,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" class="skin" id="path1055"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Butt_3.tw b/src/art/vector_revamp/layers/Butt_3.tw new file mode 100644 index 0000000000000000000000000000000000000000..48232b9aaef8639c90f821e18dda25e6e44c4178 --- /dev/null +++ b/src/art/vector_revamp/layers/Butt_3.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Butt_3 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path1073" class="shadow" d="m 272.32511,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" sodipodi:nodetypes="cccccc"/><path d="m 272.32511,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" class="skin" id="path1075"/><path sodipodi:nodetypes="cccccc" d="m 366.95012,381.808 c 10.52433,-3.11217 26.75409,16.82296 31.8,30.1 11.42013,21.24004 7.31087,42.00362 5.3,52.2 -1.17392,13.81004 -5.34217,23.46418 -9.5,32.6 -6.39988,20.30005 -15.53381,39.62837 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" class="shadow" id="path1077"/><path id="path1079" class="skin" d="m 366.95012,381.808 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Chastity_Anus.tw b/src/art/vector_revamp/layers/Chastity_Anus.tw new file mode 100644 index 0000000000000000000000000000000000000000..9e23d1f4ebd0a4af98d2528a73f2485108e74584 --- /dev/null +++ b/src/art/vector_revamp/layers/Chastity_Anus.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Chastity_Anus [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccc" id="path3080" d="m 259.57075,420.99587 5.54092,2.13857 c 6.84074,12.92695 13.83515,25.67806 22.99206,38.15507 5.87262,1.49226 8.72636,0.53435 16.49875,-0.30496 2.72601,-20.54453 6.03555,-29.03633 14.92521,-48.24503 l 2.28574,-0.5993 c -5.31308,16.34941 -11.3981,32.06023 -16.22393,50.16815 -5.02246,3.8981 -10.47949,6.02978 -18.59375,0.25 -12.04308,-13.27369 -19.00846,-27.47246 -27.425,-41.5625 z" class="shadow"/><path class="steel_chastity" d="m 259.57075,420.99587 5.54092,2.13857 c 6.43322,12.76394 13.40942,25.50777 22.99206,38.15507 5.46252,1.69783 9.56792,1.06871 16.49875,-0.30496 3.07852,-20.54453 6.67016,-29.03633 14.92521,-48.24503 l 2.28574,-0.5993 c -5.68796,16.34941 -11.85486,32.06023 -16.22393,50.16815 -5.07591,3.55067 -10.54368,5.61252 -18.59375,0.25 -11.7304,-13.58637 -18.82904,-27.65188 -27.425,-41.5625 z" id="path7-06" sodipodi:nodetypes="ccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Chastity_Base.tw b/src/art/vector_revamp/layers/Chastity_Base.tw new file mode 100644 index 0000000000000000000000000000000000000000..0f260f9b52ec2ebb7d646612a2e2792b124b9946 --- /dev/null +++ b/src/art/vector_revamp/layers/Chastity_Base.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Chastity_Base [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 234.14215,411.65829 c 9.83963,2.44592 24.11909,4.87598 41.29544,3.79314 14.82928,-1.00347 25.26976,-4.22856 41.10914,-9.24736 31.67875,-10.0376 59.89552,-24.27204 59.89552,-24.27204 0,0 3.77627,-1.52869 6.22097,3.2396 2.4447,4.76829 -3.82372,5.48812 -3.82372,5.48812 -11.21596,5.27692 -21.47914,9.58762 -30.87638,13.25027 -5.87529,2.27682 -13.83348,5.40046 -24.7826,8.91127 -11.47387,3.69784 -21.23826,6.81251 -34.64102,8.90022 -4.327,0.70671 -10.41184,1.70053 -17.99393,2.02697 -8.40953,0.36025 -21.89647,0.23256 -38.00184,-4.0271 -3.4127,0.35474 -6.02754,-2.05529 -6.27918,-4.44599 -0.0582,-1.20639 0.39848,-3.51013 2.76794,-4.30243 1.7256,-0.48449 3.58016,-0.17944 5.10966,0.68533 z" id="path5" sodipodi:nodetypes="ccscsccccccccc"/><path class="steel_chastity" d="m 232.02342,410.58579 c 4.2276,1.23469 10.00709,2.62122 17.0904,3.49082 0,0 10.92765,1.45762 23.47433,0.92828 15.58596,-0.62043 54.91755,-11.40132 101.73537,-34.14536 0,0 3.77627,-1.52869 6.22097,3.2396 2.4447,4.76829 -3.82371,5.48811 -3.82371,5.48811 -11.21597,5.27692 -21.47915,9.58763 -30.87638,13.25028 -7.17912,2.79374 -15.01821,5.7966 -24.7826,8.91127 -14.53555,4.50187 -30.64536,9.56484 -50.60668,10.59591 -9.08562,0.47068 -23.26478,0.35472 -39.87878,-3.61922 -3.4127,0.35474 -6.02754,-2.05529 -6.27918,-4.44599 -0.0582,-1.20639 0.39848,-3.51013 2.76794,-4.30243 1.59039,-0.4624 3.42882,-0.25604 4.95832,0.60873 z" id="path7-0" sodipodi:nodetypes="ccccscccccccc"/><rect x="227.62526" y="439.7114" transform="rotate(-6.7781878)" width="10.100405" height="20.000801" id="rect9"/><rect x="227.61998" y="439.71948" transform="rotate(-6.7781878)" class="steel_chastity" width="9.1003647" height="19.400776" id="rect11-4"/><circle transform="rotate(-96.778188)" id="ellipse13" r="2.9001162" cy="232.19637" cx="-445.93915"/><rect x="231.53053" y="445.11972" transform="rotate(-6.7781878)" width="1.400056" height="9.8003931" id="rect15"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Chastity_Cage_0.tw b/src/art/vector_revamp/layers/Chastity_Cage_0.tw new file mode 100644 index 0000000000000000000000000000000000000000..114bdb86a26fd474aa8083bb58eeb425c316acb6 --- /dev/null +++ b/src/art/vector_revamp/layers/Chastity_Cage_0.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Chastity_Cage_0 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9" ry="0.30001223" rx="1.8000734" cy="467.29907" cx="279.54913" transform="rotate(-0.51733349)"/><ellipse id="ellipse11" ry="0.30001223" rx="1.8000734" cy="467.39847" cx="279.54852" class="steel_chastity" transform="rotate(-0.51733349)"/><ellipse transform="rotate(-17.980187)" cx="134.75592" cy="518.57367" rx="0.30001158" ry="2.3000886" id="ellipse17"/><ellipse transform="rotate(-17.980187)" class="steel_chastity" cx="134.67969" cy="518.55194" rx="0.30001158" ry="2.3000886" id="ellipse19"/><ellipse transform="rotate(-26.992949)" cx="50.34901" cy="533.17877" rx="0.30001268" ry="2.6001096" id="ellipse23"/><ellipse transform="rotate(-26.992949)" class="steel_chastity" cx="50.286343" cy="533.13831" rx="0.30001268" ry="2.6001096" id="ellipse25"/><ellipse transform="rotate(-54.237185)" cx="-202.58504" cy="496.51791" rx="0.29998401" ry="2.7998507" id="ellipse29"/><ellipse transform="rotate(-54.237185)" class="steel_chastity" cx="-202.6292" cy="496.42209" rx="0.29998401" ry="2.699856" id="ellipse31"/><ellipse transform="rotate(-80.822144)" cx="-406.91" cy="353.02335" rx="0.30000064" ry="2.7000055" id="ellipse35"/><ellipse transform="rotate(-80.822144)" class="steel_chastity" cx="-406.96771" cy="352.9758" rx="0.30000064" ry="2.6000051" id="ellipse37"/><ellipse transform="rotate(-0.44004565)" cx="280.09009" cy="464.81555" rx="0.30000886" ry="2.4000709" id="ellipse41"/><ellipse transform="rotate(-0.44004565)" class="steel_chastity" cx="279.99078" cy="464.71503" rx="0.30000886" ry="2.4000709" id="ellipse43"/><path id="path49" d="m 286.3375,462.5375 c -0.1,1.3 -0.8,2.3 -0.9,2.3 -0.2,0 0.2,-1.1 0.3,-2.4 0.1,-1.3 -0.1,-2.3 0.1,-2.3 0.2,0 0.7,1.1 0.5,2.4 z"/><path id="path932" d="m 286.3375,462.4375 c -0.1,1.3 -0.7,2.3 -0.9,2.3 -0.1,0 0.2,-1 0.3,-2.4 0.1,-1.3 -0.1,-2.3 0,-2.3 0.2,0.1 0.7,1.1 0.6,2.4 z" class="steel_chastity"/><path id="path57" d="m 281.6375,462.6375 c 0.1,1.3 0.5,2.2 0.3,2.4 -0.1,0.1 -0.8,-0.8 -1,-2.3 -0.1,-1.5 0.4,-2.8 0.6,-2.6 0.2,0 0,1.2 0.1,2.5 z"/><path id="path59" d="m 281.7375,462.6375 c 0.1,1.2 0.5,2.2 0.3,2.3 -0.1,0.1 -0.8,-0.8 -0.9,-2.2 -0.1,-1.5 0.4,-2.7 0.6,-2.5 0.1,0 -0.2,1.2 0,2.4 z" class="steel_chastity"/><ellipse transform="rotate(-12.809092)" cx="182.3781" cy="504.23175" rx="0.1999971" ry="2.0999694" id="ellipse63"/><ellipse transform="rotate(-12.809092)" class="steel_chastity" cx="182.29442" cy="504.11957" rx="0.1999971" ry="2.0999694" id="ellipse65"/><ellipse transform="rotate(-0.51733119)" cx="279.46997" cy="464.99747" rx="2.4000978" ry="0.30001223" id="ellipse69"/><ellipse transform="rotate(-0.51733119)" class="steel_chastity" cx="279.36935" cy="465.09668" rx="2.3000937" ry="0.30001223" id="ellipse71"/><path id="path73" d="M 287.9375,456.8375"/><ellipse transform="rotate(-41.042549)" cx="-82.119583" cy="529.44684" rx="0.29999119" ry="2.6999207" id="ellipse77"/><ellipse transform="rotate(-41.042549)" class="steel_chastity" cx="-82.168976" cy="529.37885" rx="0.29999119" ry="2.6999207" id="ellipse79"/><ellipse transform="rotate(-68.216677)" cx="-318.22693" cy="433.1188" rx="0.30000198" ry="2.8000183" id="ellipse83"/><ellipse transform="rotate(-68.216677)" class="steel_chastity" cx="-318.27298" cy="432.99356" rx="0.30000198" ry="2.7000179" id="ellipse85"/><path id="path87" d="m 290.5375,450.9375 c 0,0.1 -1.5,0.4 -3.2,1.6 -0.6,0.4 -1.3,0.9 -2,1.7 -0.9,1.1 -1.2,2.1 -1.3,2.4 -0.2,0.7 -0.3,1.4 -0.3,2 -0.1,0.6 -0.1,1.4 -0.1,1.4 0,0 0,0 0,0 v 0 c 0,0 0.1,0 0.1,0 0,0 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.2 -0.1,-0.3 -0.1,-0.8 0,-1 0,-1 -0.1,-0.4 0,-0.8 0.2,-1.5 0.1,-0.4 0.2,-1 0.5,-1.8 0.2,-0.5 0.5,-1.1 1.1,-1.8 0.5,-0.5 1.3,-1.1 2.3,-1.6 1.6,-0.9 3,-1.2 3,-1.1 z"/><path id="path89" d="m 290.6375,450.9375 c 0,0.1 -1,0.3 -2.3,0.9 -0.2,0.1 -0.3,0.2 -0.6,0.3 -0.6,0.3 -1.9,1.1 -2.9,2.6 0,0.1 -0.2,0.3 -0.3,0.6 -1.3,2.5 -0.7,5.1 -1,5.1 -0.1,0 -0.1,-0.2 -0.2,-0.4 -0.1,-0.4 -0.4,-1.6 0.4,-4 0.1,-0.4 0.4,-1 0.7,-1.6 0.4,-0.6 0.8,-1 1.1,-1.3 0,0 0,0 0.1,-0.1 1.5,-1.4 4,-2.1 4,-2.1 0.5,0 0.9,-0.1 1,0 z" class="steel_chastity"/><path id="path91" d="M 283.2375,451.9375" class="steel_chastity"/><path id="path93" d="M 280.9375,452.5375"/><path id="path95" d="M 282.9375,452.0375" class="steel_chastity"/><path id="path97" d="M 281.4375,451.1375"/><ellipse transform="rotate(-87.809755)" cx="-448.97247" cy="301.0705" rx="0.30000919" ry="2.5000765" id="ellipse101"/><ellipse transform="rotate(-87.809755)" class="steel_chastity" cx="-449.04303" cy="301.01602" rx="0.30000919" ry="2.5000765" id="ellipse103"/><ellipse transform="rotate(-1.8915592)" cx="275.81781" cy="460.21146" rx="0.20000899" ry="2.0000899" id="ellipse107"/><ellipse transform="rotate(-1.8915592)" class="steel_chastity" cx="275.72015" cy="460.20984" rx="0.20000899" ry="2.0000899" id="ellipse109"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Chastity_Cage_1.tw b/src/art/vector_revamp/layers/Chastity_Cage_1.tw new file mode 100644 index 0000000000000000000000000000000000000000..6787c0e9bb920a23a9e48aaae2ae2a49a570ec49 --- /dev/null +++ b/src/art/vector_revamp/layers/Chastity_Cage_1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Chastity_Cage_1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-6" ry="0.60002446" rx="3.3001344" cy="479.44797" cx="273.82657" transform="rotate(-0.51733349)"/><ellipse id="ellipse11-1" ry="0.50002038" rx="3.2001305" cy="479.54684" cx="273.72546" class="steel_chastity" transform="rotate(-0.51733349)"/><ellipse transform="rotate(-17.980187)" cx="132.69135" cy="519.04468" rx="0.50001931" ry="4.3001661" id="ellipse17-9"/><ellipse transform="rotate(-17.980187)" class="steel_chastity" cx="132.53522" cy="518.90448" rx="0.50001931" ry="4.2001619" id="ellipse19-2"/><ellipse transform="rotate(-26.992949)" cx="46.941521" cy="533.22223" rx="0.60002536" ry="4.900207" id="ellipse23-2"/><ellipse transform="rotate(-26.992949)" class="steel_chastity" cx="46.810341" cy="533.04767" rx="0.5000211" ry="4.8002028" id="ellipse25-3"/><ellipse transform="rotate(-54.237185)" cx="-208.40569" cy="494.58987" rx="0.59996802" ry="5.0997276" id="ellipse29-5"/><ellipse transform="rotate(-54.237185)" class="steel_chastity" cx="-208.50229" cy="494.41287" rx="0.49997333" ry="5.0997276" id="ellipse31-9"/><ellipse transform="rotate(-80.822144)" cx="-414.28348" cy="348.33478" rx="0.60000128" ry="4.9000101" id="ellipse35-2"/><ellipse transform="rotate(-80.822144)" class="steel_chastity" cx="-414.40549" cy="348.16217" rx="0.50000101" ry="4.9000101" id="ellipse37-8"/><ellipse transform="rotate(-0.44004565)" cx="274.2977" cy="475.17117" rx="0.60001773" ry="4.5001326" id="ellipse41-7"/><ellipse transform="rotate(-0.44004565)" class="steel_chastity" cx="274.09903" cy="474.97028" rx="0.50001472" ry="4.4001298" id="ellipse43-3"/><path id="path49-2" d="m 282.925,472.9375 c -0.2,2.5 -1.5,4.3 -1.7,4.3 -0.3,0 0.4,-1.9 0.6,-4.4 0.2,-2.4 -0.2,-4.3 0.2,-4.3 0.2,0 1.1,1.9 0.9,4.4 z"/><path id="path51-9" d="m 282.725,472.7375 c -0.2,2.5 -1.4,4.3 -1.6,4.2 -0.3,0 0.4,-1.9 0.6,-4.3 0.2,-2.4 -0.2,-4.3 0.1,-4.3 0.3,0 1.1,2 0.9,4.4 z" class="steel_chastity"/><path id="path57-9" d="m 274.125,473.0375 c 0.2,2.3 0.9,4.1 0.6,4.4 -0.2,0.3 -1.6,-1.4 -1.8,-4.3 -0.2,-2.8 0.8,-5.1 1.1,-4.9 0.3,0.2 -0.1,2.4 0.1,4.8 z"/><path id="path59-4" d="m 274.325,473.0375 c 0.2,2.3 0.8,4 0.6,4.2 -0.2,0.3 -1.5,-1.4 -1.7,-4.1 -0.2,-2.7 0.8,-4.9 1,-4.7 0.3,0.1 -0.2,2.3 0.1,4.6 z" class="steel_chastity"/><ellipse transform="rotate(-12.809092)" cx="181.5271" cy="504.76035" rx="0.39999419" ry="3.8999434" id="ellipse63-8"/><ellipse transform="rotate(-12.809092)" class="steel_chastity" cx="181.45718" cy="504.53781" rx="0.39999419" ry="3.8999434" id="ellipse65-4"/><ellipse transform="rotate(-0.51733119)" cx="273.56509" cy="475.14505" rx="4.4001794" ry="0.60002446" id="ellipse69-0"/><ellipse transform="rotate(-0.51733119)" class="steel_chastity" cx="273.36389" cy="475.34351" rx="4.3001757" ry="0.50002038" id="ellipse71-3"/><ellipse transform="rotate(-41.042549)" cx="-86.744507" cy="528.60522" rx="0.59998238" ry="4.9998531" id="ellipse75"/><ellipse transform="rotate(-41.042549)" class="steel_chastity" cx="-86.951141" cy="528.47955" rx="0.49998531" ry="4.9998531" id="ellipse77-6"/><ellipse transform="rotate(-68.216677)" cx="-324.80972" cy="429.86664" rx="0.60000396" ry="5.1000333" id="ellipse81"/><ellipse transform="rotate(-68.216677)" class="steel_chastity" cx="-324.91003" cy="429.63513" rx="0.50000328" ry="5.1000333" id="ellipse83-1"/><path id="path85" d="m 290.725,451.4375 c 0,0.1 -2.7,0.7 -5.9,2.9 -1.2,0.8 -2.4,1.6 -3.6,3.1 -1.6,2 -2.2,3.9 -2.4,4.4 -0.4,1.3 -0.5,2.7 -0.6,3.6 -0.1,1.1 -0.2,2.6 -0.2,2.6 0,0 0,0 0,0 v 0 c 0,0 0.1,0 0.1,0.1 0,0 -0.2,0.1 -0.3,0 -0.2,-0.1 -0.2,-0.3 -0.2,-0.5 -0.2,-1.4 -0.1,-1.9 -0.1,-1.9 -0.1,-0.8 0,-1.5 0.3,-2.9 0.1,-0.7 0.4,-1.9 1,-3.4 0.4,-0.9 1,-2 1.9,-3.2 0.9,-0.8 2.4,-2 4.3,-3 2.9,-1.4 5.6,-1.9 5.7,-1.8 z"/><path id="path87-0" d="m 290.725,451.3375 c 0,0.1 -1.8,0.5 -4.3,1.7 -0.3,0.2 -0.6,0.3 -1.1,0.5 -1.1,0.6 -3.5,2 -5.3,4.8 -0.1,0.1 -0.3,0.5 -0.6,1.1 -2.3,4.7 -1.4,9.4 -1.8,9.4 -0.1,0 -0.3,-0.4 -0.3,-0.7 -0.2,-0.7 -0.8,-3 0.7,-7.3 0.3,-0.8 0.7,-1.8 1.3,-3 0.7,-1.1 1.4,-1.9 1.9,-2.4 0,0 0.1,-0.1 0.1,-0.1 2.7,-2.7 7.3,-3.8 7.3,-3.8 1.2,-0.1 2.1,-0.2 2.1,-0.2 z" class="steel_chastity"/><ellipse transform="rotate(-87.809755)" cx="-457.5112" cy="295.76151" rx="0.60001838" ry="4.6001406" id="ellipse91"/><ellipse transform="rotate(-87.809755)" class="steel_chastity" cx="-457.65686" cy="295.57602" rx="0.50001532" ry="4.6001406" id="ellipse93"/><ellipse transform="rotate(-1.8915592)" cx="276.09088" cy="460.72162" rx="0.40001798" ry="3.6001616" id="ellipse97"/><ellipse transform="rotate(-1.8915592)" class="steel_chastity" cx="275.99527" cy="460.51865" rx="0.40001798" ry="3.6001616" id="ellipse99"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Chastity_Cage_2.tw b/src/art/vector_revamp/layers/Chastity_Cage_2.tw new file mode 100644 index 0000000000000000000000000000000000000000..31948a1754d5b999fe8a0f43ee81b77d8e9ec85d --- /dev/null +++ b/src/art/vector_revamp/layers/Chastity_Cage_2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Chastity_Cage_2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-3" ry="0.80003262" rx="4.6001873" cy="490.9444" cx="267.79684" transform="rotate(-0.51733349)"/><ellipse id="ellipse11-2" ry="0.80003262" rx="4.6001873" cy="491.14282" cx="267.59525" class="steel_chastity" transform="rotate(-0.51733349)"/><ellipse transform="rotate(-17.980187)" cx="129.94711" cy="519.67291" rx="0.70002699" ry="6.100235" id="ellipse17-1"/><ellipse transform="rotate(-17.980187)" class="steel_chastity" cx="129.70938" cy="519.41577" rx="0.70002699" ry="6.0002313" id="ellipse19-5"/><ellipse transform="rotate(-26.992949)" cx="42.951714" cy="533.26959" rx="0.80003381" ry="6.9002914" id="ellipse23-4"/><ellipse transform="rotate(-26.992949)" class="steel_chastity" cx="42.74955" cy="533.06342" rx="0.80003381" ry="6.8002872" id="ellipse25-7"/><ellipse transform="rotate(-54.237185)" cx="-214.39348" cy="492.40952" rx="0.79995733" ry="7.199616" id="ellipse29-56"/><ellipse transform="rotate(-54.237185)" class="steel_chastity" cx="-214.64661" cy="492.15811" rx="0.79995733" ry="7.199616" id="ellipse31-93"/><ellipse transform="rotate(-80.822144)" cx="-421.52307" cy="343.36212" rx="0.80000162" ry="7.0000143" id="ellipse35-4"/><ellipse transform="rotate(-80.822144)" class="steel_chastity" cx="-421.71213" cy="343.17468" rx="0.80000162" ry="6.9000144" id="ellipse37-5"/><ellipse transform="rotate(-0.44004565)" cx="268.19629" cy="485.07492" rx="0.80002362" ry="6.4001889" id="ellipse41-5"/><ellipse transform="rotate(-0.44004565)" class="steel_chastity" cx="267.99811" cy="484.87354" rx="0.80002362" ry="6.3001862" id="ellipse43-4"/><path id="path49-4" d="m 279,482.7875 c -0.3,3.5 -2.1,6.1 -2.5,6.1 -0.4,-0.1 0.6,-2.8 0.9,-6.2 0.3,-3.5 -0.2,-6.2 0.2,-6.1 0.5,0 1.7,2.7 1.4,6.2 z"/><path id="path51-3" d="m 278.8,482.5875 c -0.3,3.5 -1.9,6.1 -2.3,6 -0.4,-0.1 0.6,-2.7 0.8,-6.2 0.3,-3.4 -0.3,-6.1 0.1,-6.1 0.4,0.1 1.7,2.8 1.4,6.3 z" class="steel_chastity"/><path id="path57-8" d="m 266.5,482.9875 c 0.3,3.3 1.2,5.8 0.8,6.2 -0.4,0.4 -2.2,-2 -2.5,-6.1 -0.3,-4 1.1,-7.2 1.6,-6.9 0.4,0.3 -0.2,3.4 0.1,6.8 z"/><path id="path59-6" d="m 266.8,482.8875 c 0.3,3.2 1.2,5.7 0.8,6 -0.3,0.4 -2.1,-2 -2.4,-5.9 -0.3,-3.9 1.1,-7 1.5,-6.7 0.3,0.4 -0.3,3.4 0.1,6.6 z" class="steel_chastity"/><ellipse transform="rotate(-12.809092)" cx="180.00468" cy="505.48141" rx="0.59999132" ry="5.4999199" id="ellipse63-84"/><ellipse transform="rotate(-12.809092)" class="steel_chastity" cx="179.84734" cy="505.24936" rx="0.49999273" ry="5.4999199" id="ellipse65-3"/><ellipse transform="rotate(-0.51733119)" cx="267.35156" cy="484.94016" rx="6.2002525" ry="0.80003262" id="ellipse69-4"/><ellipse transform="rotate(-0.51733119)" class="steel_chastity" cx="267.14996" cy="485.13806" rx="6.2002525" ry="0.80003262" id="ellipse71-9"/><ellipse transform="rotate(-41.042549)" cx="-91.814835" cy="527.70331" rx="0.79997647" ry="7.1997881" id="ellipse75-0"/><ellipse transform="rotate(-41.042549)" class="steel_chastity" cx="-91.98201" cy="527.42474" rx="0.79997647" ry="7.099791" id="ellipse77-68"/><ellipse transform="rotate(-68.216677)" cx="-331.52155" cy="426.40738" rx="0.80000526" ry="7.200047" id="ellipse81-2"/><ellipse transform="rotate(-68.216677)" class="steel_chastity" cx="-331.67984" cy="426.07828" rx="0.80000526" ry="7.200047" id="ellipse83-6"/><path id="path85-6" d="m 290,452.2875 c 0.1,0.2 -3.8,1.1 -8.4,4.1 -1.6,1.1 -3.4,2.3 -5.2,4.5 -2.3,2.8 -3.1,5.6 -3.4,6.3 -0.6,1.9 -0.8,3.8 -0.9,5.2 -0.2,1.5 -0.3,3.7 -0.3,3.7 0,0 0,0 0,0 v 0 c 0,0 0.2,0 0.2,0.1 0,0 -0.2,0.1 -0.4,0 -0.2,-0.1 -0.3,-0.5 -0.3,-0.7 -0.2,-2 -0.1,-2.6 -0.1,-2.6 -0.2,-1.1 0,-2.1 0.4,-4.1 0.2,-1 0.5,-2.7 1.4,-4.8 0.5,-1.2 1.4,-2.9 2.8,-4.6 1.3,-1.2 3.3,-2.8 6.1,-4.2 4.2,-2.4 8.1,-3.1 8.1,-2.9 z"/><path id="path87-4" d="m 290.1,452.1875 c 0,0.1 -2.6,0.7 -6.1,2.5 -0.4,0.2 -0.9,0.4 -1.5,0.8 -1.5,0.9 -5,2.9 -7.5,6.8 -0.1,0.2 -0.4,0.7 -0.8,1.5 -3.3,6.7 -2,13.4 -2.6,13.4 -0.2,0 -0.4,-0.6 -0.5,-1 -0.3,-1 -1.1,-4.3 0.9,-10.4 0.4,-1.1 1,-2.6 1.9,-4.3 1,-1.5 2,-2.6 2.8,-3.4 0,0 0.1,-0.1 0.1,-0.1 3.9,-3.8 10.4,-5.4 10.4,-5.4 1.6,-0.3 2.9,-0.5 2.9,-0.4 z" class="steel_chastity"/><ellipse transform="rotate(-87.809755)" cx="-465.82806" cy="290.11841" rx="0.80002451" ry="6.5001988" id="ellipse91-5"/><ellipse transform="rotate(-87.809755)" class="steel_chastity" cx="-465.95081" cy="289.81277" rx="0.80002451" ry="6.5001988" id="ellipse93-0"/><ellipse transform="rotate(-1.8915592)" cx="275.63971" cy="461.45648" rx="0.60002697" ry="5.2002335" id="ellipse97-8"/><ellipse transform="rotate(-1.8915592)" class="steel_chastity" cx="275.54593" cy="461.25238" rx="0.50002247" ry="5.1002293" id="ellipse99-7"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Chastity_Cage_3.tw b/src/art/vector_revamp/layers/Chastity_Cage_3.tw new file mode 100644 index 0000000000000000000000000000000000000000..c386eea1608f25de0eb60f46ef19b5da4e7f036e --- /dev/null +++ b/src/art/vector_revamp/layers/Chastity_Cage_3.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Chastity_Cage_3 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-7" ry="1.300053" rx="7.2002935" cy="507.01486" cx="260.22626" transform="rotate(-0.51733349)"/><ellipse id="ellipse11-27" ry="1.2000489" rx="7.1002893" cy="507.31244" cx="259.92389" class="steel_chastity" transform="rotate(-0.51733349)"/><ellipse transform="rotate(-17.980187)" cx="129.64604" cy="517.00818" rx="1.1000425" ry="9.3003588" id="ellipse17-6"/><ellipse transform="rotate(-17.980187)" class="steel_chastity" cx="129.44194" cy="516.61993" rx="1.0000386" ry="9.3003588" id="ellipse19-1"/><ellipse transform="rotate(-26.992949)" cx="41.019997" cy="530.41113" rx="1.3000548" ry="10.700452" id="ellipse23-1"/><ellipse transform="rotate(-26.992949)" class="steel_chastity" cx="40.770897" cy="530.04755" rx="1.2000507" ry="10.600448" id="ellipse25-5"/><ellipse transform="rotate(-54.237185)" cx="-219.3932" cy="488.16318" rx="1.2999306" ry="11.199403" id="ellipse29-4"/><ellipse transform="rotate(-54.237185)" class="steel_chastity" cx="-219.66667" cy="487.7753" rx="1.199936" ry="11.099408" id="ellipse31-90"/><ellipse transform="rotate(-80.822144)" cx="-429.20181" cy="336.93039" rx="1.3000026" ry="10.700022" id="ellipse35-1"/><ellipse transform="rotate(-80.822144)" class="steel_chastity" cx="-429.53076" cy="336.53275" rx="1.2000026" ry="10.600022" id="ellipse37-7"/><ellipse transform="rotate(-0.44004565)" cx="260.47058" cy="498.15396" rx="1.3000383" ry="9.8002892" id="ellipse41-1"/><ellipse transform="rotate(-0.44004565)" class="steel_chastity" cx="260.1734" cy="497.75186" rx="1.2000355" ry="9.7002859" id="ellipse43-1"/><path id="path49-7" d="m 275.275,495.825 c -0.5,5.4 -3.2,9.5 -3.8,9.3 -0.6,-0.1 1,-4.3 1.4,-9.6 0.5,-5.3 -0.4,-9.5 0.4,-9.4 0.6,0 2.5,4.3 2,9.7 z"/><path id="path51-7" d="m 274.975,495.425 c -0.4,5.4 -3,9.4 -3.5,9.3 -0.6,-0.1 1,-4.2 1.3,-9.5 0.4,-5.3 -0.5,-9.4 0.2,-9.3 0.5,-0.1 2.4,4.2 2,9.5 z" class="steel_chastity"/><path id="path57-6" d="m 256.075,496.025 c 0.4,5.1 1.9,9 1.3,9.6 -0.5,0.6 -3.4,-3.1 -3.9,-9.4 -0.5,-6.2 1.8,-11.2 2.4,-10.7 0.6,0.5 -0.3,5.4 0.2,10.5 z"/><path id="path59-5" d="m 256.375,496.025 c 0.4,5 1.8,8.7 1.3,9.3 -0.5,0.6 -3.2,-3.1 -3.7,-9 -0.5,-6 1.7,-10.8 2.2,-10.3 0.6,0.3 -0.3,5 0.2,10 z" class="steel_chastity"/><ellipse transform="rotate(-12.809092)" cx="181.56415" cy="502.50012" rx="0.89998686" ry="8.5998755" id="ellipse63-3"/><ellipse transform="rotate(-12.809092)" class="steel_chastity" cx="181.42993" cy="502.25079" rx="0.79998839" ry="8.499876" id="ellipse65-9"/><ellipse transform="rotate(-0.51733119)" cx="259.6106" cy="497.70834" rx="9.6003914" ry="1.300053" id="ellipse69-8"/><ellipse transform="rotate(-0.51733119)" class="steel_chastity" cx="259.20819" cy="497.90512" rx="9.5003872" ry="1.2000489" id="ellipse71-1"/><path id="path73-2" d="M 281.575,472.525"/><ellipse transform="rotate(-41.042549)" cx="-95.2099" cy="524.43323" rx="1.2999617" ry="11.099674" id="ellipse77-3"/><ellipse transform="rotate(-41.042549)" class="steel_chastity" cx="-95.505165" cy="524.05786" rx="1.1999648" ry="10.999677" id="ellipse79-9"/><ellipse transform="rotate(-68.216677)" cx="-337.76065" cy="421.32883" rx="1.3000085" ry="11.200073" id="ellipse83-8"/><ellipse transform="rotate(-68.216677)" class="steel_chastity" cx="-338.04218" cy="420.92136" rx="1.2000079" ry="11.100074" id="ellipse85-8"/><path id="path87-5" d="m 292.275,448.625 c 0.1,0.2 -5.9,1.6 -13,6.3 -2.5,1.7 -5.3,3.5 -8,6.9 -3.5,4.4 -4.8,8.6 -5.2,9.7 -0.9,2.9 -1.2,5.9 -1.4,8 -0.2,2.3 -0.4,5.8 -0.5,5.8 0,0 0,0 0,-0.1 v 0 c 0,0 0.3,0.1 0.3,0.1 0,0.1 -0.4,0.2 -0.6,0.1 -0.4,-0.2 -0.4,-0.8 -0.5,-1 -0.3,-3 -0.2,-4.1 -0.2,-4.1 -0.3,-1.7 0,-3.2 0.6,-6.3 0.3,-1.5 0.8,-4.2 2.2,-7.4 0.8,-1.9 2.1,-4.4 4.3,-7.1 2,-1.8 5.2,-4.3 9.3,-6.5 6.7,-3.4 12.6,-4.6 12.7,-4.4 z"/><path id="path89-0" d="m 292.375,448.625 c 0.1,0.2 -4,1.1 -9.4,3.8 -0.7,0.3 -1.4,0.7 -2.3,1.2 -2.4,1.3 -7.8,4.4 -11.5,10.5 -0.2,0.2 -0.7,1.1 -1.3,2.3 -5.1,10.3 -3,20.6 -3.9,20.7 -0.3,0 -0.6,-0.9 -0.7,-1.5 -0.4,-1.6 -1.7,-6.6 1.5,-16 0.6,-1.7 1.5,-4 2.9,-6.6 1.6,-2.3 3.1,-4.1 4.3,-5.2 0.1,-0.1 0.1,-0.1 0.2,-0.2 6,-5.9 16,-8.3 16,-8.3 2.2,-0.6 4.2,-0.9 4.2,-0.7 z" class="steel_chastity"/><path id="path91-9" d="M 262.575,452.925" class="steel_chastity"/><path id="path93-6" d="M 253.375,455.025"/><path id="path95-3" d="M 261.475,453.025" class="steel_chastity"/><path id="path97-8" d="M 255.075,449.625"/><ellipse transform="rotate(-87.809755)" cx="-475.63037" cy="282.90826" rx="1.3000398" ry="10.100309" id="ellipse101-6"/><ellipse transform="rotate(-87.809755)" class="steel_chastity" cx="-475.91144" cy="282.58267" rx="1.2000368" ry="10.000306" id="ellipse103-1"/><ellipse transform="rotate(-1.8915592)" cx="278.33359" cy="457.88177" rx="0.90004039" ry="8.0003595" id="ellipse107-5"/><ellipse transform="rotate(-1.8915592)" class="steel_chastity" cx="278.14319" cy="457.57538" rx="0.80003595" ry="7.9003549" id="ellipse109-9"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Chastity_Cage_4.tw b/src/art/vector_revamp/layers/Chastity_Cage_4.tw new file mode 100644 index 0000000000000000000000000000000000000000..922643d102511ec3f129e9b7533f434c6e224695 --- /dev/null +++ b/src/art/vector_revamp/layers/Chastity_Cage_4.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Chastity_Cage_4 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-1" ry="1.6000652" rx="8.8003588" cy="520.67523" cx="252.42801" transform="rotate(-0.51731229)"/><ellipse id="ellipse11-0" ry="1.5000612" rx="8.7003546" cy="521.0719" cx="252.02472" class="steel_chastity" transform="rotate(-0.51731229)"/><ellipse transform="rotate(-17.980187)" cx="125.4729" cy="517.88269" rx="1.3000501" ry="11.300436" id="ellipse17-4"/><ellipse transform="rotate(-17.980187)" class="steel_chastity" cx="125.20676" cy="517.48279" rx="1.2000463" ry="11.300436" id="ellipse19-4"/><ellipse transform="rotate(-26.992949)" cx="35.382034" cy="530.53302" rx="1.6000676" ry="13.000548" id="ellipse23-47"/><ellipse transform="rotate(-26.992949)" class="steel_chastity" cx="35.150055" cy="530.14703" rx="1.5000633" ry="12.900544" id="ellipse25-6"/><ellipse transform="rotate(-54.237185)" cx="-227.30109" cy="485.23416" rx="1.5999147" ry="13.599275" id="ellipse29-1"/><ellipse transform="rotate(-54.237185)" class="steel_chastity" cx="-227.65594" cy="484.66739" rx="1.49992" ry="13.49928" id="ellipse31-7"/><ellipse transform="rotate(-80.822144)" cx="-438.15033" cy="330.48074" rx="1.6000032" ry="13.000027" id="ellipse35-9"/><ellipse transform="rotate(-80.822144)" class="steel_chastity" cx="-438.50885" cy="329.97794" rx="1.5000031" ry="12.900026" id="ellipse37-6"/><ellipse transform="rotate(-0.44003305)" cx="252.6046" cy="509.92383" rx="1.6000472" ry="11.900351" id="ellipse41-78"/><ellipse transform="rotate(-0.44003305)" class="steel_chastity" cx="252.20842" cy="509.42105" rx="1.5000442" ry="11.800348" id="ellipse43-5"/><path id="path49-5" d="m 269.90039,507.65445 c -0.6,6.6 -3.9,11.6 -4.6,11.3 -0.7,-0.1 1.2,-5.2 1.7,-11.7 0.6,-6.5 -0.5,-11.6 0.5,-11.5 0.7,0 3,5.3 2.4,11.9 z"/><path id="path51-97" d="m 269.50039,507.15445 c -0.5,6.6 -3.7,11.5 -4.3,11.3 -0.7,-0.1 1.2,-5.1 1.6,-11.6 0.5,-6.5 -0.6,-11.5 0.2,-11.3 0.7,-0.1 3,5.1 2.5,11.6 z" class="steel_chastity"/><path id="path57-88" d="m 246.50039,507.85445 c 0.5,6.2 2.3,11 1.6,11.7 -0.6,0.7 -4.1,-3.8 -4.8,-11.5 -0.6,-7.6 2.2,-13.6 2.9,-13 0.8,0.6 -0.3,6.6 0.3,12.8 z"/><path id="path59-3" d="m 246.80039,507.85445 c 0.5,6.1 2.2,10.6 1.6,11.3 -0.6,0.7 -3.9,-3.8 -4.5,-11 -0.6,-7.3 2.1,-13.2 2.7,-12.5 0.7,0.4 -0.4,6.1 0.2,12.2 z" class="steel_chastity"/><ellipse transform="rotate(-12.809092)" cx="178.68761" cy="503.60449" rx="1.099984" ry="10.499847" id="ellipse63-89"/><ellipse transform="rotate(-12.809092)" class="steel_chastity" cx="178.55089" cy="503.26062" rx="0.99998546" ry="10.399848" id="ellipse65-6"/><ellipse transform="rotate(-0.51731)" cx="251.73035" cy="509.36749" rx="11.700477" ry="1.6000652" id="ellipse69-3"/><ellipse transform="rotate(-0.51731)" class="steel_chastity" cx="251.22815" cy="509.56305" rx="11.600473" ry="1.5000612" id="ellipse71-38"/><ellipse transform="rotate(-41.042549)" cx="-102.11347" cy="523.11237" rx="1.5999529" ry="13.499603" id="ellipse75-04"/><ellipse transform="rotate(-41.042549)" class="steel_chastity" cx="-102.40156" cy="522.6637" rx="1.4999559" ry="13.399606" id="ellipse77-8"/><ellipse transform="rotate(-68.216677)" cx="-346.17831" cy="416.71124" rx="1.6000105" ry="13.60009" id="ellipse81-8"/><ellipse transform="rotate(-68.216677)" class="steel_chastity" cx="-346.53287" cy="416.18054" rx="1.5000099" ry="13.500089" id="ellipse83-9"/><path id="path85-7" d="m 290.60039,450.05445 c 0.1,0.2 -7.2,1.9 -15.8,7.7 -3,2.1 -6.5,4.3 -9.7,8.4 -4.3,5.4 -5.8,10.5 -6.3,11.8 -1.1,3.5 -1.5,7.2 -1.7,9.7 -0.2,2.8 -0.5,7.1 -0.6,7.1 0,0 0,0 0,-0.1 v 0 l 0.4,0.1 c 0,0.1 -0.5,0.2 -0.7,0.1 -0.5,-0.2 -0.5,-1 -0.6,-1.2 -0.4,-3.7 -0.2,-5 -0.2,-5 -0.4,-2.1 0,-3.9 0.7,-7.7 0.4,-1.8 1,-5.1 2.7,-9 1,-2.3 2.6,-5.4 5.2,-8.7 2.4,-2.2 6.3,-5.2 11.3,-7.9 8,-4 15.2,-5.5 15.3,-5.3 z"/><path id="path87-7" d="m 290.70039,450.05445 c 0.1,0.2 -4.9,1.3 -11.5,4.6 -0.9,0.4 -1.7,0.9 -2.8,1.5 -2.9,1.6 -9.5,5.4 -14,12.8 -0.2,0.2 -0.9,1.3 -1.6,2.8 -6.2,12.5 -3.7,25.1 -4.8,25.2 -0.4,0 -0.7,-1.1 -0.9,-1.8 -0.5,-1.9 -2.1,-8 1.8,-19.5 0.7,-2.1 1.8,-4.9 3.5,-8 1.9,-2.8 3.8,-5 5.2,-6.3 0.1,-0.1 0.1,-0.1 0.2,-0.2 7.3,-7.2 19.5,-10.1 19.5,-10.1 3,-0.8 5.4,-1.2 5.4,-1 z" class="steel_chastity"/><ellipse transform="rotate(-87.809822)" cx="-485.53848" cy="275.55014" rx="1.6000489" ry="12.300376" id="ellipse91-4"/><ellipse transform="rotate(-87.809822)" class="steel_chastity" cx="-485.8714" cy="275.1265" rx="1.5000458" ry="12.200373" id="ellipse93-3"/><ellipse transform="rotate(-1.8914744)" cx="276.81354" cy="459.26169" rx="1.1000494" ry="9.7004356" id="ellipse97-3"/><ellipse transform="rotate(-1.8914744)" class="steel_chastity" cx="276.6257" cy="458.95389" rx="1.0000449" ry="9.6004314" id="ellipse99-0"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Chastity_Cage_5.tw b/src/art/vector_revamp/layers/Chastity_Cage_5.tw new file mode 100644 index 0000000000000000000000000000000000000000..3b101563e0c8cb47c3c17ae16bb427340454d5b6 --- /dev/null +++ b/src/art/vector_revamp/layers/Chastity_Cage_5.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Chastity_Cage_5 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-4" ry="2.1000855" rx="11.400464" cy="541.96863" cx="235.52405" transform="rotate(-0.51731229)"/><ellipse id="ellipse11-05" ry="1.9000775" rx="11.200457" cy="542.46442" cx="235.01974" class="steel_chastity" transform="rotate(-0.51731229)"/><ellipse transform="rotate(-17.980187)" cx="115.03899" cy="516.97107" rx="1.7000656" ry="14.700566" id="ellipse17-69"/><ellipse transform="rotate(-17.980187)" class="steel_chastity" cx="114.71255" cy="516.34155" rx="1.6000618" ry="14.700566" id="ellipse19-22"/><ellipse transform="rotate(-26.992949)" cx="23.069269" cy="527.79224" rx="2.1000886" ry="16.900713" id="ellipse23-7"/><ellipse transform="rotate(-26.992949)" class="steel_chastity" cx="22.687128" cy="527.2511" rx="1.9000802" ry="16.700706" id="ellipse25-54"/><ellipse transform="rotate(-54.237185)" cx="-241.71759" cy="476.30286" rx="2.0998878" ry="17.699057" id="ellipse29-12"/><ellipse transform="rotate(-54.237185)" class="steel_chastity" cx="-242.1998" cy="475.69751" rx="1.8998986" ry="17.499067" id="ellipse31-8"/><ellipse transform="rotate(-80.822144)" cx="-452.28793" cy="315.5076" rx="2.1000042" ry="16.900034" id="ellipse35-6"/><ellipse transform="rotate(-80.822144)" class="steel_chastity" cx="-452.80457" cy="314.9664" rx="1.9000039" ry="16.700035" id="ellipse37-80"/><ellipse transform="rotate(-0.44003305)" cx="235.55316" cy="528.23846" rx="2.1000619" ry="15.500457" id="ellipse41-51"/><ellipse transform="rotate(-0.44003305)" class="steel_chastity" cx="235.05798" cy="527.53479" rx="1.900056" ry="15.300451" id="ellipse43-10"/><path id="path49-0" d="m 256.88999,525.89899 c -0.8,8.5 -5.1,15 -6,14.7 -0.9,-0.2 1.6,-6.8 2.2,-15.2 0.8,-8.4 -0.6,-15 0.6,-14.9 1,0.1 4,6.9 3.2,15.4 z"/><path id="path51-6" d="m 256.48999,525.29899 c -0.6,8.5 -4.7,14.9 -5.5,14.7 -0.9,-0.2 1.6,-6.6 2.1,-15 0.6,-8.4 -0.8,-14.9 0.3,-14.7 0.7,-0.2 3.7,6.6 3.1,15 z" class="steel_chastity"/><path id="path57-2" d="m 226.58999,526.19899 c 0.6,8.1 3,14.2 2.1,15.2 -0.8,0.9 -5.4,-4.9 -6.2,-14.9 -0.8,-9.8 2.8,-17.7 3.8,-16.9 0.9,0.8 -0.5,8.5 0.3,16.6 z"/><path id="path59-58" d="m 227.08999,526.19899 c 0.6,7.9 2.8,13.7 2.1,14.7 -0.7,1 -5.1,-4.9 -5.8,-14.2 -0.8,-9.5 2.7,-17.1 3.5,-16.3 0.8,0.5 -0.6,7.9 0.2,15.8 z" class="steel_chastity"/><ellipse transform="rotate(-12.809092)" cx="170.42334" cy="503.39645" rx="1.3999796" ry="13.599803" id="ellipse63-847"/><ellipse transform="rotate(-12.809092)" class="steel_chastity" cx="170.20547" cy="502.93967" rx="1.299981" ry="13.399805" id="ellipse65-2"/><ellipse transform="rotate(-0.51731)" cx="234.55676" cy="527.25861" rx="15.20062" ry="2.1000855" id="ellipse69-6"/><ellipse transform="rotate(-0.51731)" class="steel_chastity" cx="233.85391" cy="527.55292" rx="15.000611" ry="1.9000775" id="ellipse71-2"/><ellipse transform="rotate(-41.042549)" cx="-115.63295" cy="517.47675" rx="2.0999382" ry="17.499485" id="ellipse75-9"/><ellipse transform="rotate(-41.042549)" class="steel_chastity" cx="-116.05816" cy="516.92462" rx="1.8999441" ry="17.399488" id="ellipse77-0"/><ellipse transform="rotate(-68.216677)" cx="-360.61716" cy="404.87231" rx="2.1000137" ry="17.700117" id="ellipse81-3"/><ellipse transform="rotate(-68.216677)" class="steel_chastity" cx="-360.99899" cy="404.15442" rx="1.9000125" ry="17.500114" id="ellipse83-11"/><path id="path85-0" d="m 283.78999,451.29899 c 0.2,0.3 -9.3,2.5 -20.5,10 -3.9,2.7 -8.4,5.5 -12.6,10.9 -5.5,7 -7.6,13.6 -8.2,15.3 -1.4,4.6 -1.9,9.3 -2.2,12.6 -0.3,3.6 -0.6,9.2 -0.8,9.2 0,0 0,0 0,-0.2 v 0 l 0.5,0.2 c 0,0.2 -0.6,0.3 -0.9,0.2 -0.6,-0.3 -0.6,-1.3 -0.8,-1.6 -0.5,-4.7 -0.3,-6.5 -0.3,-6.5 -0.5,-2.7 0,-5.1 0.9,-10 0.5,-2.4 1.3,-6.6 3.5,-11.7 1.3,-3 3.3,-7 6.8,-11.2 3.2,-2.8 8.2,-6.8 14.7,-10.3 10.4,-5.3 19.7,-7.2 19.9,-6.9 z"/><path id="path87-3" d="m 283.98999,451.29899 c 0.2,0.3 -6.3,1.7 -14.9,6 -1.1,0.5 -2.2,1.1 -3.6,1.9 -3.8,2.1 -12.3,7 -18.2,16.6 -0.3,0.3 -1.1,1.7 -2.1,3.6 -8.1,16.3 -4.7,32.5 -6.2,32.7 -0.5,0 -0.9,-1.4 -1.1,-2.4 -0.6,-2.5 -2.7,-10.4 2.4,-25.3 0.9,-2.7 2.4,-6.3 4.6,-10.4 2.5,-3.6 4.9,-6.5 6.8,-8.2 0.2,-0.2 0.2,-0.2 0.3,-0.3 9.5,-9.3 25.3,-13.1 25.3,-13.1 3.5,-0.9 6.7,-1.4 6.7,-1.1 z" class="steel_chastity"/><ellipse transform="rotate(-87.809822)" cx="-500.91162" cy="259.28619" rx="2.100064" ry="16.000488" id="ellipse91-0"/><ellipse transform="rotate(-87.809822)" class="steel_chastity" cx="-501.42453" cy="258.74768" rx="1.900058" ry="15.800483" id="ellipse93-39"/><ellipse transform="rotate(-1.8914744)" cx="270.36884" cy="460.1936" rx="1.4000628" ry="12.600566" id="ellipse97-9"/><ellipse transform="rotate(-1.8914744)" class="steel_chastity" cx="270.08469" cy="459.78339" rx="1.3000582" ry="12.500561" id="ellipse99-6"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Chastity_Cage_6.tw b/src/art/vector_revamp/layers/Chastity_Cage_6.tw new file mode 100644 index 0000000000000000000000000000000000000000..9bee3058e19d2db989d1bd146382f28de3f22966 --- /dev/null +++ b/src/art/vector_revamp/layers/Chastity_Cage_6.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Chastity_Cage_6 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><ellipse id="ellipse9-5" ry="2.5001018" rx="14.00057" cy="563.46527" cx="223.78876" transform="rotate(-0.51731229)"/><ellipse id="ellipse11-6" ry="2.3000937" rx="13.800563" cy="564.05988" cx="223.18347" class="steel_chastity" transform="rotate(-0.51731229)"/><ellipse transform="rotate(-17.980187)" cx="109.78678" cy="517.46411" rx="2.100081" ry="18.100698" id="ellipse17-0"/><ellipse transform="rotate(-17.980187)" class="steel_chastity" cx="109.40092" cy="516.70447" rx="1.9000733" ry="18.100698" id="ellipse19-46"/><ellipse transform="rotate(-26.992949)" cx="15.549369" cy="527.31976" rx="2.5001056" ry="20.900883" id="ellipse23-6"/><ellipse transform="rotate(-26.992949)" class="steel_chastity" cx="15.118171" cy="526.62225" rx="2.300097" ry="20.700874" id="ellipse25-75"/><ellipse transform="rotate(-54.237185)" cx="-253.00562" cy="471.60324" rx="2.4998667" ry="21.798836" id="ellipse29-8"/><ellipse transform="rotate(-54.237185)" class="steel_chastity" cx="-253.51361" cy="470.8566" rx="2.2998772" ry="21.598848" id="ellipse31-72"/><ellipse transform="rotate(-80.822144)" cx="-465.65756" cy="305.72757" rx="2.500005" ry="20.900042" id="ellipse35-29"/><ellipse transform="rotate(-80.822144)" class="steel_chastity" cx="-466.23138" cy="304.94336" rx="2.3000047" ry="20.700043" id="ellipse37-9"/><ellipse transform="rotate(-0.44003305)" cx="223.67113" cy="546.64923" rx="2.5000737" ry="19.100563" id="ellipse41-0"/><ellipse transform="rotate(-0.44003305)" class="steel_chastity" cx="223.07713" cy="545.84473" rx="2.3000679" ry="18.900557" id="ellipse43-2"/><path id="path49-21" d="m 249.25,544.3 c -1,10.5 -6.2,18.5 -7.4,18.1 -1.2,-0.2 1.9,-8.4 2.7,-18.7 1,-10.3 -0.8,-18.5 0.8,-18.3 1.2,-0.1 4.9,8.3 3.9,18.9 z"/><path id="path51-5" d="m 248.65,543.5 c -0.8,10.5 -5.8,18.3 -6.8,18.1 -1.2,-0.2 1.9,-8.2 2.5,-18.5 0.8,-10.3 -1,-18.3 0.4,-18.1 1,-0.2 4.7,8.1 3.9,18.5 z" class="steel_chastity"/><path id="path57-1" d="m 211.85,544.6 c 0.8,9.9 3.7,17.5 2.5,18.7 -1,1.2 -6.6,-6 -7.6,-18.3 -1,-12.1 3.5,-21.8 4.7,-20.9 1.2,1.1 -0.6,10.6 0.4,20.5 z"/><path id="path59-49" d="m 212.45,544.6 c 0.8,9.7 3.5,17 2.5,18.1 -1,1.2 -6.2,-6 -7.2,-17.5 -1,-11.7 3.3,-21 4.3,-20.1 1.1,0.6 -0.6,9.8 0.4,19.5 z" class="steel_chastity"/><ellipse transform="rotate(-12.809092)" cx="167.35036" cy="504.03577" rx="1.7999737" ry="16.799755" id="ellipse63-7"/><ellipse transform="rotate(-12.809092)" class="steel_chastity" cx="167.05159" cy="503.56573" rx="1.5999768" ry="16.599758" id="ellipse65-5"/><ellipse transform="rotate(-0.51731)" cx="222.5524" cy="545.35284" rx="18.700764" ry="2.5001018" id="ellipse69-7"/><ellipse transform="rotate(-0.51731)" class="steel_chastity" cx="221.74893" cy="545.74579" rx="18.500753" ry="2.3000937" id="ellipse71-0"/><ellipse transform="rotate(-41.042549)" cx="-125.04724" cy="515.07556" rx="2.4999266" ry="21.599365" id="ellipse75-8"/><ellipse transform="rotate(-41.042549)" class="steel_chastity" cx="-125.60838" cy="514.41785" rx="2.2999322" ry="21.39937" id="ellipse77-04"/><ellipse transform="rotate(-68.216677)" cx="-372.95468" cy="397.76074" rx="2.5000165" ry="21.800142" id="ellipse81-9"/><ellipse transform="rotate(-68.216677)" class="steel_chastity" cx="-373.46225" cy="396.95178" rx="2.3000152" ry="21.600143" id="ellipse83-61"/><path id="path85-04" d="m 282.35,452.3 c 0.2,0.4 -11.5,3.1 -25.3,12.3 -4.9,3.3 -10.3,6.8 -15.6,13.4 -6.8,8.6 -9.4,16.8 -10.1,18.9 -1.8,5.7 -2.3,11.5 -2.7,15.6 -0.4,4.5 -0.8,11.3 -1,11.3 0,0 0,0 0,-0.2 v 0 l 0.6,0.2 c 0,0.2 -0.8,0.4 -1.2,0.2 -0.8,-0.4 -0.8,-1.6 -1,-1.9 -0.6,-5.8 -0.4,-8 -0.4,-8 -0.6,-3.3 0,-6.2 1.2,-12.3 0.6,-2.9 1.6,-8.2 4.3,-14.4 1.6,-3.7 4.1,-8.6 8.4,-13.8 3.9,-3.5 10.1,-8.4 18.1,-12.7 13,-6.7 24.5,-9 24.7,-8.6 z"/><path id="path87-2" d="m 282.55,452.3 c 0.2,0.4 -7.8,2.1 -18.3,7.4 -1.4,0.6 -2.7,1.4 -4.5,2.3 -4.7,2.5 -15.2,8.6 -22.4,20.5 -0.4,0.4 -1.4,2.1 -2.5,4.5 -9.9,20.1 -5.8,40.1 -7.6,40.3 -0.6,0 -1.2,-1.8 -1.4,-2.9 -0.8,-3.1 -3.3,-12.9 2.9,-31.2 1.2,-3.3 2.9,-7.8 5.7,-12.9 3.1,-4.5 6,-8 8.4,-10.1 0.2,-0.2 0.2,-0.2 0.4,-0.4 11.7,-11.5 31.2,-16.2 31.2,-16.2 4.2,-1.1 8.1,-1.7 8.1,-1.3 z" class="steel_chastity"/><ellipse transform="rotate(-87.809822)" cx="-516.20825" cy="248.2253" rx="2.5000763" ry="19.700602" id="ellipse91-2"/><ellipse transform="rotate(-87.809822)" class="steel_chastity" cx="-516.70093" cy="247.56767" rx="2.3000703" ry="19.500595" id="ellipse93-05"/><ellipse transform="rotate(-1.8914744)" cx="269.29996" cy="461.05957" rx="1.8000808" ry="15.6007" id="ellipse97-2"/><ellipse transform="rotate(-1.8914744)" class="steel_chastity" cx="268.91949" cy="460.44696" rx="1.6000718" ry="15.400691" id="ellipse99-9"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Chastity_Vagina.tw b/src/art/vector_revamp/layers/Chastity_Vagina.tw new file mode 100644 index 0000000000000000000000000000000000000000..f6f9d1c5e941e8aa1b8d94fd2fd0573a6c200e20 --- /dev/null +++ b/src/art/vector_revamp/layers/Chastity_Vagina.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Chastity_Vagina [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccc" id="path3078" d="m 246.27344,419.55409 38.26539,1.65534 50.70034,-17.16757 c -9.527,20.69304 -26.8295,38.13961 -29.60049,58.02694 -3.81473,4.94851 -11.42323,6.76119 -18.77833,0.13792 -12.59782,-13.26169 -20.10126,-26.49351 -40.58691,-42.65263 z" class="shadow"/><path class="steel_chastity" d="m 246.27344,419.55409 38.26539,1.65534 50.70034,-17.16757 c -10.62636,19.22723 -27.00876,37.9006 -29.60049,58.02694 -4.44975,4.2738 -12.12093,6.01989 -18.77833,0.13792 -12.1636,-13.34853 -19.37318,-26.63913 -40.58691,-42.65263 z" id="path7-68" sodipodi:nodetypes="cccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Clavicle.tw b/src/art/vector_revamp/layers/Clavicle.tw new file mode 100644 index 0000000000000000000000000000000000000000..deb07a5799631c02c1be90f5457b9a4dfcdd04dd --- /dev/null +++ b/src/art/vector_revamp/layers/Clavicle.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Clavicle [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path 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 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 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 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"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Clit_Piercing.tw b/src/art/vector_revamp/layers/Clit_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..7f53443727af934c471d87303c4e70f702fdffeb --- /dev/null +++ b/src/art/vector_revamp/layers/Clit_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Clit_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="1.2" cy="450.47501" cx="291.67499" class="steel_piercing" id="XMLID_537_"/><circle r="1.2" cy="450.97501" cx="286.97501" class="steel_piercing" id="XMLID_538_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Clit_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Clit_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..a8d9180e34f6bdf75c01c63629af088e2b0ad9bf --- /dev/null +++ b/src/art/vector_revamp/layers/Clit_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Clit_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="1.2" cy="449.35001" cx="291.67499" class="steel_piercing" id="XMLID_534_"/><circle r="1.2" cy="449.85001" cx="286.97501" class="steel_piercing" id="XMLID_535_"/><path d="m 287.375,450.15 c -0.1,-0.1 -3.5,1.9 -3.2,5.1 0.3,2.7 2.9,4.5 5.6,4.4 2.6,-0.2 4.9,-2.4 4.9,-4.9 0,-3.2 -3.6,-5 -3.7,-4.8 -0.1,0.2 2.5,2.1 2.1,4.5 -0.2,1.6 -1.9,3.6 -4.1,3.6 -2,-0.1 -3.4,-1.7 -3.6,-3.2 -0.4,-2.6 2.1,-4.7 2,-4.7 z" class="steel_piercing" id="XMLID_536_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Clit_Piercing_Smart.tw b/src/art/vector_revamp/layers/Clit_Piercing_Smart.tw new file mode 100644 index 0000000000000000000000000000000000000000..53fb015923ced8f261a25052128e343be79c53c1 --- /dev/null +++ b/src/art/vector_revamp/layers/Clit_Piercing_Smart.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Clit_Piercing_Smart [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="1.2" cy="450.0957" cx="291.85547" class="steel_piercing" id="XMLID_539_"/><circle r="1.2" cy="450.5957" cx="287.15549" class="steel_piercing" id="XMLID_540_"/><path d="m 287.35549,450.69569 c -0.1,-0.1 -2.3,3.3 -1.1,5.5 1.4,2.7 6.4,2.1 7.4,-0.8 0.8,-2.4 -1.6,-5.4 -1.8,-5.3 -0.1,0.1 1.4,2.5 0.5,4.4 -1,2.1 -3.6,2.3 -4.9,0.3 -1.2,-1.8 0,-4 -0.1,-4.1 z" class="steel_piercing" id="XMLID_541_"/><rect height="7.3005033" width="7.3005033" class="smart_piercing" transform="rotate(41.517924)" y="149.45445" x="519.35999" id="XMLID_542_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Collar_Cowbell.tw b/src/art/vector_revamp/layers/Collar_Cowbell.tw new file mode 100644 index 0000000000000000000000000000000000000000..fa7e679ab41f23da64037dced55848dcc555823b --- /dev/null +++ b/src/art/vector_revamp/layers/Collar_Cowbell.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Collar_Cowbell [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-8" d="m 300.925,176.875 c 1.8,1 23.0875,-2.8375 32.6875,-8.3375 0.3,-0.2 0.6,0 0.7,0.3 l 1.8875,2.71875 c 0,0.2 -0.1,0.4 -0.2,0.5 -5.6,3.3 -26.1375,9.51875 -29.4375,9.51875 -5.2,0 -6.5375,0.2 -7.0375,-0.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.5 0.6,-0.4 z" sodipodi:nodetypes="cccccscccc"/><path d="m 297.17442,186.03142 9.80069,2.63749 2.01146,23.34275 -22.06661,-4.46708 -2.81659,-5.63621 z" id="polygon12"/><path id="path14" d="m 304.28395,193.89936 -6.61047,-1.70345 2.965,-11.16552 6.59411,1.80211 z m -5.23045,-2.69116 4.37409,1.13019 2.35903,-8.73184 -4.37409,-1.13019 z"/><path id="path16" d="m 303.97048,192.73243 -6.79143,-1.8348 2.73557,-10.39263 6.79143,1.8348 z m -5.34545,-2.60885 4.47274,1.14653 2.14596,-8.0576 -4.47275,-1.14653 z" class="steel_chastity"/><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"/><path d="m 302.32515,180.06063 -0.85064,3.30581 2.90499,0.74858 0.85064,-3.3058 z" id="line20"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Collar_Gold_Heavy.tw b/src/art/vector_revamp/layers/Collar_Gold_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..aa0038027aaed7b99ea9aee207289f8e65add815 --- /dev/null +++ b/src/art/vector_revamp/layers/Collar_Gold_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Collar_Gold_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 342.07604,173.74841 c 7.7e-4,0.44722 -0.1327,0.84994 -0.1768,1.20779 -2.98271,7.87613 -33.43077,15.30497 -36.83077,15.00497 -6.1,-0.5 -7.7,-5.8 -7.9,-6.3 -0.7,-2.1 -0.5,-5.2 0.8,-6.4 1.3,-1.4 2.5,-1.4 3.3,0.7 -0.90837,0.3063 19.4784,5.06534 35.16441,-8.98819 0.62323,-1.65577 2.32272,-1.61399 3.84618,0.0828 1.12036,1.33971 1.83915,3.21676 1.79698,4.69264" id="path7-2" style="fill:#f2f24c" sodipodi:nodetypes="ccccccccc"/><path d="m 305.36847,189.56117 c -6,0 -7.8,-4.9 -8,-5.3 -0.8,-1.9 -0.7,-4.8 0.5,-6.1 1.2,-1.4 2.4,-1.5 3.2,0.4 -0.48772,0.48643 14.15539,5.63962 34.55935,-9.63152 1.35866,-1.01687 2.18848,-1.65847 3.66668,-0.27467 1.52307,1.47317 2.28751,3.88681 1.75364,5.4977 -2.58037,7.786 -32.37967,15.40849 -35.67967,15.40849 z" id="path9-88" style="fill:#f7d548" sodipodi:nodetypes="scccscss"/><path d="m 305.03588,194.23829 c -0.35,0 -0.7,-0.05 -1.0375,-0.1375 -0.3375,-0.0875 -0.6625,-0.2125 -0.9625,-0.3625 -0.65,-0.35 -1.15,-0.875 -1.4875,-1.4875 -0.3375,-0.6125 -0.5125,-1.3125 -0.5125,-2.0125 0,-0.35 0.05,-0.7 0.1375,-1.0375 0.0875,-0.3375 0.2125,-0.6625 0.3625,-0.9625 0.2,-0.35 0.45,-0.675 0.7375,-0.95 0.2875,-0.275 0.6125,-0.5 0.9625,-0.65 0.1,-0.05 0.225,-0.05 0.35,-0.0125 0.125,0.0375 0.25,0.1125 0.35,0.2125 0.05,0.1 0.05,0.225 0.0125,0.35 -0.0375,0.125 -0.1125,0.25 -0.2125,0.35 -0.25,0.15 -0.5,0.325 -0.725,0.525 -0.225,0.2 -0.425,0.425 -0.575,0.675 -0.15,0.25 -0.25,0.5 -0.3125,0.75 -0.0625,0.25 -0.0875,0.5 -0.0875,0.75 0,0.55 0.15,1.075 0.4125,1.5375 0.2625,0.4625 0.6375,0.8625 1.0875,1.1625 0.25,0.15 0.5,0.25 0.75,0.3125 0.25,0.0625 0.5,0.0875 0.75,0.0875 0.55,0 1.075,-0.15 1.5375,-0.4125 0.4625,-0.2625 0.8625,-0.6375 1.1625,-1.0875 0.15,-0.25 0.25,-0.5 0.3125,-0.75 0.0625,-0.25 0.0875,-0.5 0.0875,-0.75 0,-0.55 -0.15,-1.075 -0.4125,-1.5375 -0.2625,-0.4625 -0.6375,-0.8625 -1.0875,-1.1625 -0.1,-0.05 -0.175,-0.15 -0.2125,-0.275 -0.0375,-0.125 -0.0375,-0.275 0.0125,-0.425 0.05,-0.1 0.15,-0.175 0.275,-0.2125 0.125,-0.0375 0.275,-0.0375 0.425,0.0125 0.65,0.35 1.15,0.875 1.4875,1.4875 0.3375,0.6125 0.5125,1.3125 0.5125,2.0125 0,0.35 -0.05,0.7 -0.1375,1.0375 -0.0875,0.3375 -0.2125,0.6625 -0.3625,0.9625 -0.4,0.6 -0.925,1.1 -1.5375,1.45 -0.6125,0.35 -1.3125,0.55 -2.0625,0.55 z" id="path11-8" style="fill:#fefff2" sodipodi:nodetypes="sscssscscscscssssscssscssscscscssscss"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..8a19b8d254b080abc6b4232a5dc286bacfb0083c --- /dev/null +++ b/src/art/vector_revamp/layers/Collar_Maid.tw @@ -0,0 +1,3 @@ +:: 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/Collar_Neck_Corset.tw b/src/art/vector_revamp/layers/Collar_Neck_Corset.tw new file mode 100644 index 0000000000000000000000000000000000000000..9f8b960ec91990baa7a83715532914d7b7a85eee --- /dev/null +++ b/src/art/vector_revamp/layers/Collar_Neck_Corset.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Collar_Neck_Corset [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 355.58016,177.90382 c -16.75489,-1.68047 -24.26783,-1.85552 -25.04266,-28.06007 l 0.0614,-2.54085 c -4.44209,8.81484 -9.17434,14.60849 -14.23043,18.88685 -4.61614,3.90609 -9.48739,6.51233 -13.25962,9.74301 l -2.79922,-0.84568 0.24144,6.93439 c -5.15857,4.49938 -19.55545,5.94373 -26.62292,8.06291 -0.5,0.3 -0.26562,0.32812 0.23438,0.52812 4.47439,0.22267 8.86726,0.68988 12.875,2.3125 1.1,0.6 1.9,1.6 2.3,2.8 -2.64855,5.11669 -3.20471,10.23338 -4.70413,15.35007 5.7721,-5.57757 11.41269,-11.23251 19.12659,-15.66784 1.4,-0.8 2.9,-1.4 4.4,-1.8 16.28714,-6.9193 28.71122,-10.2157 47.6202,-14.30341 0.7,-0.2 0.6,-1.3 -0.2,-1.4 z" id="path1012" sodipodi:nodetypes="cccsccccccccccccc"/><path class="steel_chastity" d="m 305.2,184.4 c -0.7,0 -1.4,-0.2 -2,-0.5 -1.3,-0.7 -2,-2.1 -2,-3.5 0,-0.7 0.2,-1.4 0.5,-2 0.4,-0.7 1,-1.3 1.7,-1.6 0.2,-0.1 0.5,0 0.7,0.2 0.1,0.2 0,0.5 -0.2,0.7 -0.5,0.3 -1,0.7 -1.3,1.2 -0.3,0.5 -0.4,1 -0.4,1.5 0,1.1 0.6,2.1 1.5,2.7 0.5,0.3 1,0.4 1.5,0.4 1.1,0 2.1,-0.6 2.7,-1.5 0.3,-0.5 0.4,-1 0.4,-1.5 0,-1.1 -0.6,-2.1 -1.5,-2.7 -0.2,-0.1 -0.3,-0.4 -0.2,-0.7 0.1,-0.2 0.4,-0.3 0.7,-0.2 1.3,0.7 2,2.1 2,3.5 0,0.7 -0.2,1.4 -0.5,2 -0.8,1.2 -2.2,2 -3.6,2 z" id="path8-4"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Collar_Pretty_Jewelry.tw b/src/art/vector_revamp/layers/Collar_Pretty_Jewelry.tw new file mode 100644 index 0000000000000000000000000000000000000000..4370b8bf6012f170815556c2e8d955d6c7b4dd4d --- /dev/null +++ b/src/art/vector_revamp/layers/Collar_Pretty_Jewelry.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Collar_Pretty_Jewelry [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 299.76916,182.31783 c 0,0 -0.1,0 -0.1,0 -0.3,-0.2 -0.7,-1.3 -0.7,-1.7 -0.1,-0.3 -0.4,-1.5 -0.2,-1.8 v -0.1 l 0.1,-0.1 c 0.1,0 0.1,0 0.2,0 0.3,0.2 0.7,1.3 0.7,1.7 v 0 c 0.1,0.3 0.4,1.5 0.2,1.8 v 0.1 l -0.2,0.1 c 0,0 0,0 0,0 z m -0.7,-2.8 c 0,0.3 0.1,0.6 0.2,1 0.1,0.4 0.2,0.8 0.3,1 0,-0.3 -0.1,-0.6 -0.2,-1 v 0 c -0.1,-0.5 -0.2,-0.8 -0.3,-1 z" id="path7-4"/><path d="m 300.56916,185.71783 c -0.6,0 -1.2,-0.7 -1.5,-1.8 -0.4,-1.2 -0.2,-2.4 0.5,-2.7 0.7,-0.3 1.5,0.5 1.8,1.7 v 0 c 0.4,1.2 0.2,2.4 -0.5,2.7 -0.1,0 -0.2,0.1 -0.3,0.1 z m -0.8,-4.2 c -0.1,0 -0.1,0 -0.2,0 -0.5,0.2 -0.6,1.2 -0.3,2.2 0.3,1 1,1.7 1.4,1.5 0.5,-0.2 0.6,-1.2 0.3,-2.2 v 0 c -0.2,-0.9 -0.8,-1.5 -1.2,-1.5 z" id="path9-49"/><path d="m 301.96916,189.21783 c -0.2,0 -0.4,-0.2 -0.9,-2.1 -0.6,-2.2 -0.4,-2.2 -0.3,-2.3 0.2,-0.1 0.3,0.2 0.5,0.7 0.1,0.4 0.3,0.9 0.4,1.4 0.7,2.2 0.5,2.2 0.3,2.3 0,0 0,0 0,0 z" id="path11-9"/><path d="m 303.16916,192.61783 c -0.6,0 -1.4,-0.7 -1.8,-1.8 -0.2,-0.6 -0.3,-1.2 -0.3,-1.6 0.1,-0.5 0.3,-0.9 0.6,-1 0.4,-0.1 0.8,0 1.2,0.3 0.4,0.3 0.7,0.8 0.9,1.4 0.5,1.2 0.3,2.4 -0.4,2.7 0,0 -0.1,0 -0.2,0 z m -1.1,-4.1 c -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.3 -0.4,0.7 0,0.4 0,0.9 0.2,1.5 0.4,1.1 1.2,1.7 1.6,1.5 0.4,-0.2 0.6,-1.1 0.2,-2.2 -0.2,-0.5 -0.5,-1 -0.8,-1.2 -0.3,-0.2 -0.5,-0.3 -0.7,-0.3 z" id="path13-3"/><path d="m 313.01655,195.31378 c -0.29028,-0.0758 -0.45854,-0.22303 -0.62681,-0.3703 -0.45428,-0.63532 0.0423,-1.74591 1.16566,-2.48621 1.12337,-0.7403 2.28873,-0.84954 2.74301,-0.21422 0.45428,0.63531 -0.0423,1.74591 -1.16566,2.48621 -0.75733,0.52578 -1.53565,0.73604 -2.1162,0.58452 z m 2.55404,-3.05399 c -0.48379,-0.12628 -1.16536,0.10923 -1.80068,0.56352 -0.87934,0.59729 -1.3254,1.51436 -1.01413,1.90566 0.28602,0.48805 1.25786,0.3283 2.13721,-0.26899 0.87934,-0.59729 1.3254,-1.51437 1.01413,-1.90566 -0.0463,-0.21877 -0.14301,-0.24403 -0.33653,-0.29453 z" id="path15"/><path d="m 318.44839,190.73719 c -0.19352,-0.0505 -0.29028,-0.0758 -0.36178,-0.19777 -0.47954,-0.53856 -0.10498,-1.57765 0.85012,-2.46522 0.95511,-0.88756 2.07422,-1.21557 2.55375,-0.67701 0.23977,0.26928 0.23551,0.68156 0.10924,1.16536 -0.22303,0.45854 -0.54281,0.89182 -0.95936,1.29985 -0.41655,0.40803 -0.9046,0.69405 -1.3674,0.88331 -0.31553,0.021 -0.63106,0.042 -0.82457,-0.009 z m 2.48254,-3.176 c -0.38704,-0.10101 -1.06861,0.1345 -1.75443,0.78229 -0.83309,0.81606 -1.15714,1.66164 -0.82061,1.95617 0.16826,0.14727 0.36178,0.19778 0.70256,0.08 0.43754,-0.0925 0.82884,-0.40377 1.22013,-0.71504 0.41654,-0.40803 0.71108,-0.74456 0.81209,-1.13159 0.10102,-0.38704 0.15153,-0.58056 -0.0167,-0.72782 0.0505,-0.19352 -0.0462,-0.21877 -0.14301,-0.24403 z" id="path17"/><path d="m 315.41907,192.84034 v 0 c -0.16827,-0.14727 -0.40804,-0.41655 1.42641,-1.90141 0.41655,-0.40803 0.9046,-0.69404 1.27064,-0.90856 0.48805,-0.28602 0.70682,-0.33227 0.87508,-0.185 l 0.0968,0.0253 -0.0253,0.0967 c -0.004,0.41229 -1.17814,1.34611 -1.54417,1.56062 -0.4418,0.50479 -1.71244,1.41335 -2.09947,1.31234 z m 2.64228,-2.20416 c -0.24402,0.14301 -0.61006,0.35752 -0.90459,0.69405 -0.3913,0.31127 -0.66058,0.55104 -0.92986,0.7908 0.24403,-0.143 0.61007,-0.35752 0.9046,-0.69404 0.39129,-0.31128 0.66057,-0.55104 0.92985,-0.79081 z" id="path19"/><path d="m 324.34303,185.97135 c -0.19352,-0.0505 -0.29028,-0.0758 -0.45854,-0.22302 -0.23977,-0.26928 -0.33227,-0.70683 -0.206,-1.19062 0.12627,-0.48379 0.3493,-0.94233 0.74059,-1.2536 0.83309,-0.81607 1.95221,-1.14408 2.43174,-0.60552 0.23977,0.26928 0.33227,0.70683 0.206,1.19062 -0.12627,0.48379 -0.3493,0.94233 -0.74059,1.2536 v 0 c -0.41655,0.40803 -0.80784,0.71931 -1.24539,0.81181 -0.21877,0.0462 -0.5343,0.0672 -0.72781,0.0167 z m 2.07025,-3.18026 c -0.38704,-0.10101 -1.0686,0.1345 -1.63242,0.71079 -0.29453,0.33653 -0.61432,0.76981 -0.69008,1.06009 -0.0758,0.29027 -0.0548,0.6058 0.1135,0.75307 0.16826,0.14727 0.45853,0.22303 0.79932,0.10528 0.34078,-0.11776 0.80358,-0.30702 1.09811,-0.64355 0.29454,-0.33652 0.61432,-0.76981 0.69009,-1.06008 0.0758,-0.29028 0.0548,-0.60581 -0.1135,-0.75307 -0.0968,-0.0253 -0.16826,-0.14727 -0.26502,-0.17253 z" id="path21"/><path d="m 321.26745,187.85573 -0.0715,-0.12202 0.0253,-0.0968 c 0.0505,-0.19351 0.58907,-0.67305 1.64094,-1.53536 0.75733,-0.52579 1.66192,-1.21983 1.88069,-1.26608 l 0.0968,0.0252 0.0715,0.12201 -0.0253,0.0968 c -0.0505,0.19352 -0.58906,0.67305 -1.64093,1.53537 v 0 c -0.68582,0.64779 -1.56517,1.24508 -1.97746,1.24083 z" id="path23"/><path d="m 310.45428,196.81537 -0.0715,-0.12201 0.0253,-0.0968 c 0.0253,-0.0968 -0.021,-0.31553 1.30014,-1.41761 v 0 c 1.49367,-1.3671 1.56517,-1.24509 1.73344,-1.09782 0.16826,0.14726 0.23976,0.26928 -1.2539,1.63638 -1.4179,1.07682 -1.63667,1.12307 -1.73343,1.09782 z" id="path27"/><path d="m 304.16916,195.81783 v 0 c -0.2,-0.1 -0.5,-0.8 -0.8,-2 -0.5,-2.1 -0.4,-2.2 -0.2,-2.2 v 0 c 0.2,0 0.3,-0.1 0.9,2 0.3,1.2 0.4,1.9 0.3,2.1 v 0.1 z" id="path29"/><path id="path33" d="m 311.56916,198.41783 c -0.5,2.1 -2.9,4.3 -5.7,5.9 -1.7,-2 -3.1,-5.4 -2.8,-7.8 0.3,-2 2.7,-3.6 4.3,1.1 3,-4.5 4.7,-1.1 4.2,0.8 z"/><path id="path35" d="m 310.96916,198.11783 c -0.5,2 -2.8,4.1 -5.4,5.6 -1.6,-1.9 -2.9,-5.1 -2.6,-7.3 0.2,-1.9 2.5,-3.4 4,1 2.8,-4.3 4.4,-1.1 4,0.7 z" class="steel_chastity"/><rect x="337.68442" y="139.20795" transform="rotate(10.64922)" width="0.40000939" height="1.8000422" id="rect39"/><circle r="0.79999298" transform="rotate(-83.724979)" cx="-164.25607" cy="326.31647" id="ellipse41-6"/><path d="m 326.43427,183.10662 c 0,0 -0.0715,-0.12201 -0.0715,-0.12201 -0.021,-0.31553 0.83735,-1.22835 1.00987,-1.49337 0.26928,-0.23977 1.12763,-1.15259 1.44316,-1.17358 l 0.0968,0.0252 0.0968,0.0252 c 0.0967,0.0253 0.0715,0.12202 0.0462,0.21878 0.021,0.31553 -0.83736,1.22835 -1.00988,1.49337 v 0 c -0.26928,0.23976 -1.12762,1.15258 -1.44315,1.17358 l -0.0968,-0.0252 -0.0715,-0.12202 c -0.0253,0.0968 0,0 0,0 z m 2.08274,-2.04015 c -0.24403,0.14301 -0.41655,0.40803 -0.80784,0.7193 -0.29454,0.33653 -0.56382,0.5763 -0.71108,0.74456 0.24402,-0.14301 0.41654,-0.40803 0.80784,-0.7193 v 0 c 0.26928,-0.23977 0.56381,-0.5763 0.71108,-0.74456 z" id="path43"/><path style="display:inline" d="m 328.8365,181.40598 c -0.19352,-0.0505 -0.29028,-0.0758 -0.45854,-0.22302 -0.23977,-0.26928 -0.33227,-0.70683 -0.206,-1.19062 0.12627,-0.48379 0.3493,-0.94233 0.74059,-1.2536 0.83309,-0.81607 1.95221,-1.14408 2.43174,-0.60552 0.23977,0.26928 0.33227,0.70683 0.206,1.19062 -0.12627,0.48379 -0.3493,0.94233 -0.74059,1.2536 v 0 c -0.41655,0.40803 -0.80784,0.71931 -1.24539,0.81181 -0.21877,0.0462 -0.5343,0.0672 -0.72781,0.0167 z m 2.07025,-3.18026 c -0.38704,-0.10101 -1.0686,0.1345 -1.63242,0.71079 -0.29453,0.33653 -0.61432,0.76981 -0.69008,1.06009 -0.0758,0.29027 -0.0548,0.6058 0.1135,0.75307 0.16826,0.14727 0.45853,0.22303 0.79932,0.10528 0.34078,-0.11776 0.80358,-0.30702 1.09811,-0.64355 0.29454,-0.33652 0.61432,-0.76981 0.69009,-1.06008 0.0758,-0.29028 0.0548,-0.60581 -0.1135,-0.75307 -0.0968,-0.0253 -0.16826,-0.14727 -0.26502,-0.17253 z" id="path21-36"/><path style="display:inline" d="m 330.92774,178.54125 c 0,0 -0.0715,-0.12201 -0.0715,-0.12201 -0.021,-0.31553 0.83735,-1.22835 1.00987,-1.49337 0.26928,-0.23977 1.12763,-1.15259 1.44316,-1.17358 l 0.0968,0.0252 0.0968,0.0252 c 0.0967,0.0253 0.0715,0.12202 0.0462,0.21878 0.021,0.31553 -0.83736,1.22835 -1.00988,1.49337 v 0 c -0.26928,0.23976 -1.12762,1.15258 -1.44315,1.17358 l -0.0968,-0.0252 -0.0715,-0.12202 c -0.0253,0.0968 0,0 0,0 z m 2.08274,-2.04015 c -0.24403,0.14301 -0.41655,0.40803 -0.80784,0.7193 -0.29454,0.33653 -0.56382,0.5763 -0.71108,0.74456 0.24402,-0.14301 0.41654,-0.40803 0.80784,-0.7193 v 0 c 0.26928,-0.23977 0.56381,-0.5763 0.71108,-0.74456 z" id="path43-6"/><path style="display:inline" d="m 333.24275,177.15598 c -0.19352,-0.0505 -0.29028,-0.0758 -0.45854,-0.22302 -0.23977,-0.26928 -0.33227,-0.70683 -0.206,-1.19062 0.12627,-0.48379 0.3493,-0.94233 0.74059,-1.2536 0.83309,-0.81607 1.95221,-1.14408 2.43174,-0.60552 0.23977,0.26928 0.33227,0.70683 0.206,1.19062 -0.12627,0.48379 -0.3493,0.94233 -0.74059,1.2536 v 0 c -0.41655,0.40803 -0.80784,0.71931 -1.24539,0.81181 -0.21877,0.0462 -0.5343,0.0672 -0.72781,0.0167 z m 2.07025,-3.18026 c -0.38704,-0.10101 -1.0686,0.1345 -1.63242,0.71079 -0.29453,0.33653 -0.61432,0.76981 -0.69008,1.06009 -0.0758,0.29027 -0.0548,0.6058 0.1135,0.75307 0.16826,0.14727 0.45853,0.22303 0.79932,0.10528 0.34078,-0.11776 0.80358,-0.30702 1.09811,-0.64355 0.29454,-0.33652 0.61432,-0.76981 0.69009,-1.06008 0.0758,-0.29028 0.0548,-0.60581 -0.1135,-0.75307 -0.0968,-0.0253 -0.16826,-0.14727 -0.26502,-0.17253 z" id="path21-34"/><path style="display:inline" d="m 335.33399,174.29125 c 0,0 -0.0715,-0.12201 -0.0715,-0.12201 -0.021,-0.31553 0.83735,-1.22835 1.00987,-1.49337 0.26928,-0.23977 1.12763,-1.15259 1.44316,-1.17358 l 0.0968,0.0252 0.0968,0.0252 c 0.0967,0.0253 0.0715,0.12202 0.0462,0.21878 0.021,0.31553 -0.83736,1.22835 -1.00988,1.49337 v 0 c -0.26928,0.23976 -1.12762,1.15258 -1.44315,1.17358 l -0.0968,-0.0252 -0.0715,-0.12202 c -0.0253,0.0968 0,0 0,0 z m 2.08274,-2.04015 c -0.24403,0.14301 -0.41655,0.40803 -0.80784,0.7193 -0.29454,0.33653 -0.56382,0.5763 -0.71108,0.74456 0.24402,-0.14301 0.41654,-0.40803 0.80784,-0.7193 v 0 c 0.26928,-0.23977 0.56381,-0.5763 0.71108,-0.74456 z" id="path43-0"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Collar_Retirement_Cruel.tw b/src/art/vector_revamp/layers/Collar_Retirement_Cruel.tw new file mode 100644 index 0000000000000000000000000000000000000000..976c4a40b989e2f8e937d3ba24becc7a275e8654 --- /dev/null +++ b/src/art/vector_revamp/layers/Collar_Retirement_Cruel.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Collar_Retirement_Cruel [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path class="steel_chastity" d="m 305.66645,184.3391 c -6.28524,0 -8.23193,-2.44977 -8.1875,-2.63125 -0.8,-0.8 -0.7,-2 0.5,-2.5 1.2,-0.6 2.51153,-0.69778 3.2,0.2 0.95461,1.24484 24.33056,-1.66153 35.65,-6.85 1.2,-0.5 2.7,-0.2 3.4,0.6 0.7,0.8 0.28345,2.06988 0.28345,2.06988 -1.41696,5.52614 -31.75546,9.11137 -34.84594,9.11137 z" id="path13-33" sodipodi:nodetypes="sccscscss"/><path d="m 302.07895,180.40785 h 7.2 l -0.5,2.9 h -6.2 z" id="polygon17"/><path id="path19-8" d="m 308.77895,180.90785 v 2.4 h -6.1 v -2.4 h 6.1 m 0.5,-0.5 -7.3,-0.1 0.2,3 h 7.1 z" class="steel_chastity"/><text id="text21" name="Collar_Text" x="302.81207" y="183.04065" style="font-size:1.96150005px;line-height:0%;font-family:sans-serif;fill:#ff0000">8888</text></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Collar_Retirement_Nice.tw b/src/art/vector_revamp/layers/Collar_Retirement_Nice.tw new file mode 100644 index 0000000000000000000000000000000000000000..20c01876fef2a9f5c1653229ee8402cf6ca4b9f2 --- /dev/null +++ b/src/art/vector_revamp/layers/Collar_Retirement_Nice.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Collar_Retirement_Nice [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 300.64144,184.10882 c 0,0 -0.1,0 -0.1,0 -0.3,-0.2 -0.7,-1.3 -0.7,-1.7 -0.1,-0.3 -0.4,-1.5 -0.2,-1.8 v -0.1 l 0.1,-0.1 c 0.1,0 0.1,0 0.2,0 0.3,0.2 0.7,1.3 0.7,1.7 v 0 c 0.1,0.3 0.4,1.5 0.2,1.8 v 0.1 l -0.2,0.1 c 0,0 0,0 0,0 z m -0.7,-2.8 c 0,0.3 0.1,0.6 0.2,1 0.1,0.4 0.2,0.8 0.3,1 0,-0.3 -0.1,-0.6 -0.2,-1 v 0 c -0.1,-0.5 -0.2,-0.8 -0.3,-1 z" id="path7-5"/><path d="m 301.44144,187.50882 c -0.6,0 -1.2,-0.7 -1.5,-1.8 -0.4,-1.2 -0.2,-2.4 0.5,-2.7 0.7,-0.3 1.5,0.5 1.8,1.7 v 0 c 0.4,1.2 0.2,2.4 -0.5,2.7 -0.1,0 -0.2,0.1 -0.3,0.1 z m -0.8,-4.2 c -0.1,0 -0.1,0 -0.2,0 -0.5,0.2 -0.6,1.2 -0.3,2.2 0.3,1 1,1.7 1.4,1.5 0.5,-0.2 0.6,-1.2 0.3,-2.2 v 0 c -0.2,-0.9 -0.8,-1.5 -1.2,-1.5 z" id="path9-02"/><path d="m 302.84144,191.00882 c -0.2,0 -0.4,-0.2 -0.9,-2.1 -0.6,-2.2 -0.4,-2.2 -0.3,-2.3 0.2,-0.1 0.3,0.2 0.5,0.7 0.1,0.4 0.3,0.9 0.4,1.4 0.7,2.2 0.5,2.2 0.3,2.3 0,0 0,0 0,0 z" id="path11-94"/><path d="m 304.04144,194.40882 c -0.6,0 -1.4,-0.7 -1.8,-1.8 -0.2,-0.6 -0.3,-1.2 -0.3,-1.6 0.1,-0.5 0.3,-0.9 0.6,-1 0.4,-0.1 0.8,0 1.2,0.3 0.4,0.3 0.7,0.8 0.9,1.4 0.5,1.2 0.3,2.4 -0.4,2.7 0,0 -0.1,0 -0.2,0 z m -1.1,-4.1 c -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.3 -0.4,0.7 0,0.4 0,0.9 0.2,1.5 0.4,1.1 1.2,1.7 1.6,1.5 0.4,-0.2 0.6,-1.1 0.2,-2.2 -0.2,-0.5 -0.5,-1 -0.8,-1.2 -0.3,-0.2 -0.5,-0.3 -0.7,-0.3 z" id="path13-35"/><path d="m 313.78193,195.91021 c -0.29138,-0.0714 -0.46183,-0.21615 -0.63228,-0.36089 -0.46373,-0.62844 0.0161,-1.74634 1.12834,-2.50337 1.11216,-0.75702 2.27576,-0.88368 2.73949,-0.25523 0.46374,0.62845 -0.0161,1.74635 -1.12833,2.50337 -0.74938,0.53706 -1.52447,0.75894 -2.10722,0.61612 z m 2.50807,-3.09186 c -0.48564,-0.11901 -1.16361,0.12666 -1.79205,0.59039 -0.87031,0.61038 -1.3026,1.53403 -0.98551,1.92062 0.29329,0.48372 1.26263,0.30945 2.13294,-0.30093 0.87031,-0.61038 1.3026,-1.53403 0.98551,-1.92062 -0.0495,-0.21806 -0.14664,-0.24186 -0.34089,-0.28946 z" id="path15-1"/><path d="m 319.14469,191.25287 c -0.19425,-0.0477 -0.29137,-0.0714 -0.3647,-0.19234 -0.48754,-0.53133 -0.12857,-1.5759 0.81315,-2.47766 0.94172,-0.90175 2.0558,-1.24647 2.54333,-0.71515 0.24378,0.26567 0.24568,0.67797 0.12666,1.1636 -0.21614,0.46182 -0.52941,0.89984 -0.9398,1.31407 -0.4104,0.41421 -0.89412,0.7075 -1.35403,0.90366 -0.31518,0.0257 -0.63036,0.0514 -0.82461,0.004 z m 2.43475,-3.21279 c -0.38851,-0.0952 -1.06648,0.15046 -1.74253,0.80846 -0.8208,0.82843 -1.13215,1.67875 -0.79126,1.96822 0.17045,0.14473 0.3647,0.19234 0.70369,0.0695 0.43611,-0.099 0.8227,-0.41613 1.20929,-0.73322 0.41039,-0.41422 0.69986,-0.75511 0.79508,-1.14362 0.0952,-0.3885 0.14282,-0.58275 -0.0276,-0.72748 0.0476,-0.19426 -0.0495,-0.21806 -0.14664,-0.24186 z" id="path17-7"/><path d="m 316.14717,193.4011 v 0 c -0.17044,-0.14474 -0.41421,-0.41039 1.39781,-1.92253 0.4104,-0.41422 0.89412,-0.7075 1.25691,-0.92747 0.48372,-0.29329 0.70177,-0.34281 0.87222,-0.19807 l 0.0971,0.0238 -0.0238,0.0971 c 0.002,0.4123 -1.15786,1.36358 -1.52065,1.58354 -0.4342,0.51134 -1.6673,1.34168 -2.0796,1.3436 z m 2.60902,-2.24344 c -0.24186,0.14664 -0.60465,0.36661 -0.89411,0.7075 -0.38659,0.31709 -0.65226,0.56086 -0.91792,0.80463 0.24186,-0.14664 0.60465,-0.36661 0.89411,-0.7075 0.38659,-0.3171 0.65226,-0.56087 0.91792,-0.80463 z" id="path19-4"/><path d="m 324.96737,186.39938 c -0.19425,-0.0477 -0.29138,-0.0714 -0.46183,-0.21615 -0.24376,-0.26566 -0.3428,-0.70177 -0.22379,-1.1874 0.11901,-0.48563 0.33517,-0.94746 0.72176,-1.26454 0.82079,-0.82844 1.93487,-1.17316 2.42241,-0.64182 0.24377,0.26565 0.3428,0.70177 0.22378,1.18739 -0.11901,0.48563 -0.33516,0.94745 -0.72175,1.26455 v 0 c -0.4104,0.41421 -0.79698,0.7313 -1.23309,0.83034 -0.21806,0.0495 -0.53324,0.0752 -0.72749,0.0276 z m 2.02244,-3.21088 c -0.3885,-0.0952 -1.06647,0.15046 -1.6216,0.73513 -0.28947,0.34089 -0.60274,0.77891 -0.67414,1.07029 -0.0715,0.29137 -0.0457,0.60656 0.12474,0.75129 0.17045,0.14473 0.46183,0.21614 0.80081,0.0933 0.33899,-0.12285 0.7989,-0.31901 1.08837,-0.6599 0.28946,-0.3409 0.60273,-0.77892 0.67415,-1.0703 0.0714,-0.29137 0.0457,-0.60655 -0.12475,-0.75129 -0.0971,-0.0238 -0.17045,-0.14473 -0.26758,-0.16853 z" id="path21-3"/><path d="m 321.92033,188.32955 -0.0733,-0.12093 0.0238,-0.0971 c 0.0476,-0.19427 0.57892,-0.6818 1.61777,-1.55975 0.74938,-0.53706 1.64349,-1.24456 1.86155,-1.29408 l 0.0971,0.0238 0.0733,0.12092 -0.0238,0.0971 c -0.0476,0.19425 -0.57894,0.68178 -1.61779,1.55974 v 0 c -0.67605,0.65799 -1.64348,1.24456 -1.95866,1.27028 z" id="path23-1"/><path d="m 311.24241,197.44996 -0.0733,-0.12093 0.0238,-0.0971 c 0.0238,-0.0971 -0.0257,-0.31518 1.27879,-1.43691 v 0 c 1.47305,-1.38929 1.54638,-1.26836 1.71681,-1.12363 0.17045,0.14474 0.24378,0.26567 -1.22927,1.65496 -1.40163,1.09792 -1.61969,1.14743 -1.71681,1.12363 z" id="path25-4"/><path d="m 305.04144,197.50882 v 0 c -0.2,-0.1 -0.5,-0.8 -0.8,-2 -0.5,-2.1 -0.4,-2.2 -0.2,-2.2 v 0 c 0.2,0 0.3,-0.1 0.9,2 0.3,1.2 0.4,1.9 0.3,2.1 v 0.1 z" id="path27-6"/><path d="m 329.69595,180.96886 c 0.0257,0.31518 -0.81888,1.24073 -0.98742,1.50831 v 0 c -0.26566,0.24377 -1.11026,1.16933 -1.42543,1.19505 l -0.0971,-0.0238 -0.0971,-0.0238 c 0,0 0,0 -0.0971,-0.0238 0,0 -0.0733,-0.12094 -0.0733,-0.12094 -0.0258,-0.31517 0.81888,-1.24073 0.98741,-1.5083 0.26566,-0.24378 1.11025,-1.16933 1.42544,-1.19504" id="path29-9"/><path d="m 329.0675,181.43259 c -0.24186,0.14665 -0.41039,0.41422 -0.79698,0.73131 -0.28947,0.3409 -0.55514,0.58467 -0.69986,0.75512 0.24185,-0.14665 0.41039,-0.41422 0.79698,-0.73132 v 0 c 0.26566,-0.24376 0.55513,-0.58466 0.69986,-0.75511 z" id="path31"/><path d="m 304.24144,196.80882 7.3,0.5 -0.2,3.5 -7.3,-0.4 z" id="polygon35"/><path id="path37-4" d="m 304.74144,197.40882 6.3,0.4 -0.1,2.5 -6.3,-0.4 0.1,-2.5 m -0.5,-0.6 -0.2,3.6 7.3,0.4 0.2,-3.6 z"/><rect id="rect41" height="3.399874" width="7.0997367" transform="rotate(3.3047751)" y="178.83395" x="315.06049"/><path id="path43-2" d="m 304.74144,197.30882 6.1,0.4 -0.1,2.4 -6.1,-0.4 0.1,-2.4 m -0.5,-0.6 -0.2,3.4 7.1,0.4 0.2,-3.4 z" class="steel_chastity"/><text transform="rotate(3.3047751)" name="Collar_Text" x="315.78552" y="181.51642" style="font-size:1.96150005px;line-height:0%;font-family:sans-serif;fill:#ff0000" id="text1009">8888</text><path style="display:inline" d="m 329.50389,181.73735 c -0.19425,-0.0477 -0.29138,-0.0714 -0.46183,-0.21615 -0.24376,-0.26566 -0.3428,-0.70177 -0.22379,-1.1874 0.11901,-0.48563 0.33517,-0.94746 0.72176,-1.26454 0.82079,-0.82844 1.93487,-1.17316 2.42241,-0.64182 0.24377,0.26565 0.3428,0.70177 0.22378,1.18739 -0.11901,0.48563 -0.33516,0.94745 -0.72175,1.26455 v 0 c -0.4104,0.41421 -0.79698,0.7313 -1.23309,0.83034 -0.21806,0.0495 -0.53324,0.0752 -0.72749,0.0276 z m 2.02244,-3.21088 c -0.3885,-0.0952 -1.06647,0.15046 -1.6216,0.73513 -0.28947,0.34089 -0.60274,0.77891 -0.67414,1.07029 -0.0715,0.29137 -0.0457,0.60656 0.12474,0.75129 0.17045,0.14473 0.46183,0.21614 0.80081,0.0933 0.33899,-0.12285 0.7989,-0.31901 1.08837,-0.6599 0.28946,-0.3409 0.60273,-0.77892 0.67415,-1.0703 0.0714,-0.29137 0.0457,-0.60655 -0.12475,-0.75129 -0.0971,-0.0238 -0.17045,-0.14473 -0.26758,-0.16853 z" id="path21-3-5"/><path style="display:inline" d="m 334.23247,176.30683 c 0.0257,0.31518 -0.81888,1.24073 -0.98742,1.50831 v 0 c -0.26566,0.24377 -1.11026,1.16933 -1.42543,1.19505 l -0.0971,-0.0238 -0.0971,-0.0238 c 0,0 0,0 -0.0971,-0.0238 0,0 -0.0733,-0.12094 -0.0733,-0.12094 -0.0258,-0.31517 0.81888,-1.24073 0.98741,-1.5083 0.26566,-0.24378 1.11025,-1.16933 1.42544,-1.19504" id="path29-9-9"/><path style="display:inline" d="m 333.60402,176.77056 c -0.24186,0.14665 -0.41039,0.41422 -0.79698,0.73131 -0.28947,0.3409 -0.55514,0.58467 -0.69986,0.75512 0.24185,-0.14665 0.41039,-0.41422 0.79698,-0.73132 v 0 c 0.26566,-0.24376 0.55513,-0.58466 0.69986,-0.75511 z" id="path31-3"/><path style="display:inline" d="m 333.76864,177.5389 c -0.19425,-0.0477 -0.29138,-0.0714 -0.46183,-0.21615 -0.24376,-0.26566 -0.3428,-0.70177 -0.22379,-1.1874 0.11901,-0.48563 0.33517,-0.94746 0.72176,-1.26454 0.82079,-0.82844 1.93487,-1.17316 2.42241,-0.64182 0.24377,0.26565 0.3428,0.70177 0.22378,1.18739 -0.11901,0.48563 -0.33516,0.94745 -0.72175,1.26455 v 0 c -0.4104,0.41421 -0.79698,0.7313 -1.23309,0.83034 -0.21806,0.0495 -0.53324,0.0752 -0.72749,0.0276 z m 2.02244,-3.21088 c -0.3885,-0.0952 -1.06647,0.15046 -1.6216,0.73513 -0.28947,0.34089 -0.60274,0.77891 -0.67414,1.07029 -0.0715,0.29137 -0.0457,0.60656 0.12474,0.75129 0.17045,0.14473 0.46183,0.21614 0.80081,0.0933 0.33899,-0.12285 0.7989,-0.31901 1.08837,-0.6599 0.28946,-0.3409 0.60273,-0.77892 0.67415,-1.0703 0.0714,-0.29137 0.0457,-0.60655 -0.12475,-0.75129 -0.0971,-0.0238 -0.17045,-0.14473 -0.26758,-0.16853 z" id="path21-3-7"/><path style="display:inline" d="m 338.49722,172.10838 c 0.0257,0.31518 -0.81888,1.24073 -0.98742,1.50831 v 0 c -0.26566,0.24377 -1.11026,1.16933 -1.42543,1.19505 l -0.0971,-0.0238 -0.0971,-0.0238 c 0,0 0,0 -0.0971,-0.0238 0,0 -0.0733,-0.12094 -0.0733,-0.12094 -0.0258,-0.31517 0.81888,-1.24073 0.98741,-1.5083 0.26566,-0.24378 1.11025,-1.16933 1.42544,-1.19504" id="path29-9-7"/><path style="display:inline" d="m 337.86877,172.57211 c -0.24186,0.14665 -0.41039,0.41422 -0.79698,0.73131 -0.28947,0.3409 -0.55514,0.58467 -0.69986,0.75512 0.24185,-0.14665 0.41039,-0.41422 0.79698,-0.73132 v 0 c 0.26566,-0.24376 0.55513,-0.58466 0.69986,-0.75511 z" id="path31-6"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Collar_Satin_Choker.tw b/src/art/vector_revamp/layers/Collar_Satin_Choker.tw new file mode 100644 index 0000000000000000000000000000000000000000..866bc99456f6b40ff1919c4c42ae9a453b04efa5 --- /dev/null +++ b/src/art/vector_revamp/layers/Collar_Satin_Choker.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Collar_Satin_Choker [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-9" d="m 300.45955,176.79435 c 5.75393,4.57809 15.10826,-1.25778 32.69185,-10.78675 0.25346,-0.26166 0.59427,-0.13296 0.75882,0.13764 l 1.45752,3.26042 c 0.0437,0.19518 -0.0117,0.41252 -0.0889,0.53226 -4.82606,4.46138 -25.17723,13.55643 -28.52657,13.55643 -5.27775,0 -6.06553,-1.19062 -6.573,-1.89062 -0.1015,-0.1 -0.1015,-0.3 -0.1015,-0.4 l -0.22717,-4.00938 c 0,-0.4 0.30448,-0.6 0.60897,-0.4 z" style="stroke-width:1.00744832" sodipodi:nodetypes="cccccsccccc"/><path id="path13-6" d="m 299.96797,179.10998 c 7.00222,2.06304 7.82277,2.97274 34.52324,-11.76259 l 0.27371,0.75854 c -4.77068,4.24404 -24.96781,13.18842 -28.11416,13.18842 -5.07476,0 -6.87776,-1.28437 -6.67477,-1.28437" class="steel_chastity" sodipodi:nodetypes="cccsc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Collar_Shock_Punishment.tw b/src/art/vector_revamp/layers/Collar_Shock_Punishment.tw new file mode 100644 index 0000000000000000000000000000000000000000..72b0d32ecd225434acc8bf2bc45d8c13f8cb6668 --- /dev/null +++ b/src/art/vector_revamp/layers/Collar_Shock_Punishment.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Collar_Shock_Punishment [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-4" d="m 306.15,183.8375 c -5.4,0 -7.7,-3.1 -7.8,-3.3 -0.5,-0.7 -0.3,-1.6 0.4,-2.1 0.7,-0.5 1.6,-0.3 2.1,0.4 0.2,0.3 5.3375,5.475 34.275,-9.625 0.7,-0.4 1.6,-0.2 2.1,0.5 0.4,0.7 0.2,1.6 -0.5,2.1 -5.7,3.4 -27.375,12.025 -30.575,12.025 z" sodipodi:nodetypes="scsccccs"/><rect x="299.67276" y="183.13045" transform="rotate(-1.1601983)" width="6.3000274" height="10.500045" id="rect11"/><rect x="299.66086" y="183.14191" transform="rotate(-1.1601983)" class="steel_chastity" width="6.0000257" height="10.100043" id="rect13-0"/><circle cx="288.78955" cy="208.56601" r="1.3" id="circle15" style="fill:#ce5b5b" transform="rotate(-5.1341055)"/><circle style="fill:#d13737" cx="288.78955" cy="208.466" r="1.2" id="circle17" transform="rotate(-5.1341055)"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Collar_Stylish_Leather.tw b/src/art/vector_revamp/layers/Collar_Stylish_Leather.tw new file mode 100644 index 0000000000000000000000000000000000000000..1779a7f98419e6e1d6b6120dca96b9068400e6a1 --- /dev/null +++ b/src/art/vector_revamp/layers/Collar_Stylish_Leather.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Collar_Stylish_Leather [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-3" d="m 300.325,177.925 c -0.10721,3.72459 23.52313,-0.3129 34.7073,-8.01083 0.19654,-0.30228 0.55115,-0.23713 0.76157,-0.001 l 2.02623,2.93844 c 0.079,0.18372 0.0662,0.40696 0.0139,0.53834 -3.83995,5.24449 -28.00898,11.23512 -31.30898,11.23512 -5.2,0 -7.1,-1.8 -7.6,-2.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.6 0.6,-0.4 z" sodipodi:nodetypes="cccccscccc"/><path style="fill:#ffffff" d="m 303.00781,184.69339 h 3.4 v -0.6 h 1 v 1.5 h -5.4 v -7 h 5.4 v 1.3 l -1,0.1 v -0.5 h -3.4 z" id="polygon11"/><rect x="-172.36217" y="307.03809" transform="rotate(-88.080303)" class="white" width="0.9999612" height="2.499903" id="rect13"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Collar_Tight_Steel.tw b/src/art/vector_revamp/layers/Collar_Tight_Steel.tw new file mode 100644 index 0000000000000000000000000000000000000000..16444a28b55b238f61e1056f7c6a82eb43cc656f --- /dev/null +++ b/src/art/vector_revamp/layers/Collar_Tight_Steel.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Collar_Tight_Steel [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 338.84761,173.73169 c -0.2,0.2 -0.4,0.3 -0.7,0.4 -6,2.3 -29.80237,10.05946 -33.20237,9.95946 -5.9,-0.2 -7.5,-2.3 -7.7,-2.5 -0.7,-0.8 -0.4,-2.1 0.8,-2.6 1.3,-0.5 2.5,-0.5 3.2,0.3 0.009,3.44028 22.58334,-3.43594 34.70237,-8.25946 1.2,-0.5 2.7,-0.1 3.3,0.7 0.5,0.6 0.3,1.4 -0.4,2" id="path11-0" sodipodi:nodetypes="ccccccccc"/><path class="steel_chastity" d="m 305.44524,184.09115 c -6,0 -7.8,-2 -8,-2.1 -0.8,-0.8 -0.7,-2 0.5,-2.5 1.2,-0.6 2.76576,-0.84472 3.2,0.2 1.15585,2.7808 23.09391,-3.71229 34.60237,-8.75946 1.2,-0.5 2.7,-0.2 3.4,0.6 0.7,0.8 0.3,1.9 -0.9,2.3 -5.7,2.3 -29.40237,10.25946 -32.80237,10.25946 z" id="path13" sodipodi:nodetypes="sccscscs"/><circle r="3.5999207" transform="rotate(-59.999272)" style="fill:none;stroke:#fefff2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:19" cx="-7.6341872" cy="357.4375" id="ellipse15"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Dildo_Gag.tw b/src/art/vector_revamp/layers/Dildo_Gag.tw new file mode 100644 index 0000000000000000000000000000000000000000..725d0c53073bdf0d7a448014ce9595c8cc9a35a5 --- /dev/null +++ b/src/art/vector_revamp/layers/Dildo_Gag.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Dildo_Gag [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path transform="translate(-220)" style="fill:#070505" d="m 523.375,164.2125 -2.6,-6.8 c 12.75713,-2.94492 23.23175,-9.45485 32.075,-18.5625 l -2.2375,8.65 c -7.51195,8.76554 -17.68909,12.0982 -27.2375,16.7125 z" id="path1259" sodipodi:nodetypes="ccccc"/><path style="display:inline;fill:#070505" d="m 293.22989,164.19677 -0.18125,-6.175 c -9.86299,-0.39059 -15.54142,-2.51766 -23.98953,-7.65228 1.68204,3.01591 3.32107,6.03183 5.86142,9.04775 5.59927,3.72945 11.74667,3.21777 18.30936,4.77953 z" id="path1261" sodipodi:nodetypes="ccccc"/><ellipse ry="8.6999998" rx="7.5999999" cy="161.16251" cx="298.51154" class="gag" id="ellipse1263"/><path d="m 306.02067,162.97491 -2.0677,2.89842 -5.39788,1.58688 -2.82555,-0.10895 -1.88734,-0.62251 -1.38183,-1.34784 -1.2286,-1.56979 1.06304,4.39723 6.7635,2.54005 5.76357,-2.47077 z" class="skin" id="path1265" sodipodi:nodetypes="ccccccccccc"/><path d="m 302.62164,169.71603 c -1.74238,0.53615 -2.60522,0.4584 -4.21391,0.59078 1.90231,1.18953 3.69017,1.02552 4.21391,-0.59078 z" class="shadow" id="path1267" sodipodi:nodetypes="ccc" inkscape:transform-center-x="-0.11271335" inkscape:transform-center-y="0.18012958"/><path d="m 304.91055,156.29042 -2.41768,-3.28171 -5.11224,-1.06107 -5.04732,2.60438 -0.83575,3.32702 1.24872,-0.83125 8.84286,-1.44319 1.18295,-0.0262 z" class="skin" id="path1269" sodipodi:nodetypes="ccccccccc"/><path d="m 295.20052,154.26071 c -2.3361,0.18741 -2.33066,0.35817 -4.0167,1.55377 1.655,-0.6968 2.23834,-1.20495 4.0167,-1.55377 z" class="shadow" id="path1271" sodipodi:nodetypes="ccc"/><path d="m 304.161,154.50746 c -2.57764,-0.30209 -3.84681,-1.5219 -6.16236,-0.68113 1.75915,-0.36046 4.35011,0.67624 6.16236,0.68113 z" class="shadow" id="path1273" sodipodi:nodetypes="ccc"/><path d="m 299.04326,167.07067 c -0.13152,0.022 -0.40257,0.12733 -0.53126,0.14693 -0.43426,0.066 -0.66116,0.11591 -0.9949,0.11275 -0.32669,-0.003 -0.64714,-0.0906 -0.9716,-0.12883 -0.39646,-0.0467 -0.8023,-0.0332 -1.19129,-0.1229 -0.4284,-0.0988 -0.70933,-0.26528 -1.2387,-0.45306 -0.77848,-0.27614 -2.88068,-2.86681 -2.88068,-2.86681 0,0 1.49812,2.61596 2.79901,3.13737 3.08136,1.23506 6.83182,0.62648 9.92721,-0.79502 0.85817,-0.39411 2.09247,-3.26423 2.09247,-3.26423 0,0 -1.38905,2.28638 -2.22782,2.75017 -0.83878,0.46378 -1.81847,0.80943 -2.77091,1.08765 -0.65596,0.19162 -1.81889,0.36368 -2.01153,0.39598 z" class="shadow" id="path1275" sodipodi:nodetypes="ssaaascasccas"/><path d="m 301.42603,155.31779 c -1.28714,0.38629 -2.48719,0.72941 -3.60885,0.9432 -0.19845,0.0378 -0.36644,-0.0156 -0.55908,0.0167 -0.13152,0.022 -0.28928,0.13121 -0.41797,0.15079 -0.43426,0.066 -0.85211,0.11837 -1.2517,0.15887 -0.18968,0.0192 -0.37524,-0.0526 -0.55649,-0.0385 -0.18537,0.0144 -0.36623,0.11468 -0.54237,0.1242 -0.77914,0.0421 -1.28226,-0.0804 -1.68445,0.0447 -0.56144,0.17459 -1.39365,1.2375 -1.39365,1.2375 0,0 1.11202,-0.73807 1.36276,-0.82425 0.25074,-0.0862 5.13658,0.10226 8.25323,-1.27205 0.8774,-0.3869 2.03092,-0.18331 3.83075,0.45061 -1.71452,-1.0529 -3.04021,-1.10941 -3.43218,-0.99177 z" class="shadow" id="path1277" sodipodi:nodetypes="ssssssssczscs"/><path d="m 306.00314,162.68917 c 0.82424,1.59261 -0.25293,4.15034 -0.18904,5.79891 0.0911,2.35063 0.32668,3.5911 0.37952,5.03581 1.6367,0.3233 0.5575,-1.65754 0.30956,-2.60214 -0.29108,-1.10897 -0.42575,-1.27143 -0.51903,-2.48708 -0.1298,-1.69155 1.24547,-4.2508 0.019,-5.7455 z" class="highlightStrong" id="path1279" sodipodi:nodetypes="cscsscc" inkscape:transform-center-x="0.11270875" inkscape:transform-center-y="0.18012958"/><path d="m 291.15378,163.72407 c -0.16856,1.30377 1.45269,2.69973 1.87939,4.09263 0.53262,1.73866 0.85951,3.42387 1.37577,4.68809 -1.35851,0.96837 -1.26851,-1.95297 -1.43138,-2.91589 -0.11777,-0.69625 -0.20232,-0.84009 -0.3062,-1.37611 -0.29951,-1.54531 -1.83304,-2.52165 -1.51758,-4.48872 z" class="highlightStrong" id="path1281" sodipodi:nodetypes="cscssc" inkscape:transform-center-x="-0.45383565" inkscape:transform-center-y="0.091816717"/><path d="m 305.98681,162.86279 c 0.3563,1.7575 -1.38048,3.92219 -1.77075,5.52517 -0.55648,2.28563 -0.79481,6.07442 -1.13986,7.47832 1.31025,1.89023 1.36569,-0.045 1.29978,-1.65992 -0.0468,-1.14558 -0.13923,-4.46443 0.10418,-5.65911 0.33867,-1.66238 2.27663,-3.9109 1.50666,-5.68446 z" class="highlightStrong" id="path1283" sodipodi:nodetypes="cscsscc" inkscape:transform-center-x="0.11270875" inkscape:transform-center-y="0.18012958"/><path d="m 319.68491,173.84249 c 0.57969,-4.07993 0.531,-7.45638 -0.21061,-10.62401 1.11705,2.93421 1.43241,7.45321 0.21061,10.62401 z" class="shadow" id="XMLID_511_-1-84" sodipodi:nodetypes="ccc"/><path d="m 313.35681,181.56712 c -5.6537,3.26843 -5.7874,1.7965 -10.91614,0.7136 5.28746,2.43499 5.52276,3.14938 10.91614,-0.7136 z" class="shadow" id="XMLID_511_-1-84-6" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Eyes_Angry.tw b/src/art/vector_revamp/layers/Eyes_Angry.tw new file mode 100644 index 0000000000000000000000000000000000000000..6eaec7b44f7fa48525727c57b746c1c61d1b5817 --- /dev/null +++ b/src/art/vector_revamp/layers/Eyes_Angry.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Eyes_Angry [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 307.10947,134.55307 c -2.14996,-0.21128 -3.4884,-1.89949 -3.24482,-3.7169 0.90501,-3.62549 5.40258,-8.3911 5.85861,-8.3191 4.86402,-0.7642 5.54559,-1.15495 14.48347,-0.67268 l -2.84372,2.07583 c 0,0 0.49128,3.89972 -0.83752,5.48536 -1.89128,4.05864 -4.62305,4.52956 -13.41602,5.14749 z" class="shadow" id="path1272" sodipodi:nodetypes="ccccccc"/><path sodipodi:nodetypes="ccccc" id="path1274" class="eyeball" d="m 307.10947,134.55307 c -1.87469,-0.40868 -3.30955,-2.02174 -3.24482,-3.70585 6.28282,-6.69771 12.58105,-6.52676 17.49836,-6.927 -0.089,1.78171 -0.22231,3.81052 -0.83752,5.48536 -2.6457,5.43786 -9.03811,4.15868 -13.41602,5.14749 z"/><path d="m 310.42091,134.12686 c -3.67367,-1.48686 -4.27487,-3.07746 -3.1319,-6.32664 2.69791,-2.16227 6.05502,-3.5901 10.32531,-3.68959 2.99107,2.5491 2.10558,6.05001 -0.68069,8.79811 -1.41133,0.79838 -4.36294,1.09099 -6.51272,1.21812 z" class="shadow" id="path1276" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccccc" id="path1278" class="iris" d="m 310.42091,134.12686 c -3.31639,-1.90368 -3.88249,-3.53524 -3.1319,-6.32664 3.29831,-1.48 6.34788,-3.25731 10.32531,-3.68959 1.97318,2.65914 1.62432,6.10204 -0.68069,8.79811 -2.63874,0.78543 -4.65878,1.07777 -6.51272,1.21812 z"/><path d="m 312.95436,125.34937 c 1.10576,-0.11043 1.2531,1.93253 1.3748,3.0371 0.10786,0.97889 0.37016,2.74199 -0.60312,2.89222 -1.01892,0.15728 -1.36813,-1.67605 -1.515,-2.69652 -0.15752,-1.09444 -0.35693,-3.12293 0.74332,-3.2328 z" class="shadow" id="path1285" sodipodi:nodetypes="aaaaa"/><path sodipodi:nodetypes="cccc" id="path1287" class="shadow" d="m 317.65086,114.80093 c -7.68644,3.55278 -16.95996,9.88357 -21.12863,10.22739 -0.50012,-0.83277 -0.541,-1.08655 -0.54648,-1.94262 4.52321,-0.46314 11.95535,-5.79083 21.67511,-8.28477 z"/><path d="m 317.65086,114.80093 c -7.80434,3.41386 -15.03783,8.63815 -21.12863,10.22739 -0.4503,-0.83989 -0.48773,-1.09416 -0.54648,-1.94262 4.62053,-0.16073 12.07485,-5.67553 21.67511,-8.28477 z" class="hair" id="path1289" sodipodi:nodetypes="cccc"/><path d="m 274.44284,139.61902 c -3.77011,-1.33495 -4.55682,-6.00874 -4.41296,-6.17657 l -2.12826,-0.77244 c 2.10867,-1.74524 4.33093,-3.42232 8.17537,-4.1261 3.31352,1.95033 6.40829,4.86888 6.94086,6.58701 0.70038,0.99444 1.14834,1.97959 1.20977,3.09041 -0.11063,0.6088 -0.16261,0.79325 -1.19487,1.03043 -2.0078,1.16001 -6.00188,0.26906 -8.58991,0.36726 z" class="shadow" id="path1291" sodipodi:nodetypes="cccccccc"/><path sodipodi:nodetypes="cccccc" id="path1293" class="eyeball" d="m 274.44284,139.61902 c -3.10223,-2.11414 -3.60251,-3.82535 -4.41296,-6.17657 4.81902,-5.82796 9.04523,0.53115 13.13641,2.39159 0.7155,0.74756 0.79828,1.35208 1.06133,2.38729 -0.18602,0.58367 -0.41907,0.70776 -1.19487,1.03043 -2.25853,0.56739 -6.04492,0.16732 -8.58991,0.36726 z"/><path sodipodi:nodetypes="ccccc" id="path1295" class="shadow" d="m 277.24269,139.56084 c -3.75163,-1.66167 -4.05213,-6.2542 -3.89825,-8.44963 4.41482,-1.71661 6.48962,1.95868 9.57878,4.535 0.35859,1.15724 0.43496,2.38079 -0.22192,3.68282 0.0631,0.0631 -2.54258,0.40292 -5.45861,0.23181 z"/><path d="m 277.24269,139.56084 c -3.52398,-2.02728 -3.57865,-6.00853 -3.89825,-8.44963 4.6668,-0.10393 6.50004,2.02537 9.57878,4.535 0.0721,1.2479 -0.002,2.49742 -0.22192,3.68282 0.0434,0.0916 -2.69968,0.48355 -5.45861,0.23181 z" class="iris" id="path1297" sodipodi:nodetypes="ccccc"/><path d="m 278.79463,132.40661 c 0.7753,-0.12567 0.96972,1.30423 1.11402,2.07628 0.14378,0.76921 0.47663,2.16241 -0.28777,2.32986 -0.76786,0.16821 -1.09139,-1.23356 -1.24105,-2.00526 -0.15462,-0.79729 -0.3869,-2.27094 0.4148,-2.40088 z" class="shadow" id="path1299" sodipodi:nodetypes="aaaaa"/><path sodipodi:nodetypes="cccc" id="path1301" class="shadow" d="m 268.39389,124.29164 c 4.03739,0.7803 9.33495,3.23319 13.41954,4.36469 -0.22533,-0.68817 -0.22859,-1.82011 -0.992,-2.30772 -4.47886,-0.46046 -8.54751,-2.12495 -12.42754,-2.05697 z"/><path d="m 268.39389,124.29164 c 4.14998,0.71944 9.36197,3.16113 13.41954,4.36469 -0.29393,-0.68817 -0.32561,-1.82011 -0.992,-2.30772 -4.43766,-0.34078 -8.31978,-2.00468 -12.42754,-2.05697 z" class="hair" id="path1303" sodipodi:nodetypes="cccc"/><path d="m 314.20378,120.03142 c -6.05866,2.28691 -9.91789,5.31957 -11.60213,12.97625 1.05717,-5.02699 1.21906,-5.81731 1.21906,-5.81731 -0.0166,0.18218 3.35758,-5.46132 10.38307,-7.15894 z" class="shadow" id="path1431" sodipodi:nodetypes="cccc"/><path d="m 283.68032,134.64216 c -2.29173,-3.19341 -6.45228,-8.28346 -11.63652,-5.8299 5.27592,-2.57386 9.21676,1.98688 9.21676,1.98688 0,0 0.78358,1.28953 2.41976,3.84302 z" class="shadow" id="path1433" sodipodi:nodetypes="cccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Eyes_Angry_Highlights.tw b/src/art/vector_revamp/layers/Eyes_Angry_Highlights.tw new file mode 100644 index 0000000000000000000000000000000000000000..7942a8b4d08dc1ff0448b2afae802923b9041d24 --- /dev/null +++ b/src/art/vector_revamp/layers/Eyes_Angry_Highlights.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Eyes_Angry_Highlights [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 276.31935,138.03596 c -1.74948,-1.08152 -2.82634,-0.70082 -4.14058,-0.83618 1.46255,1.3039 2.31388,1.58407 4.14058,0.83618 z" class="highlight1" id="path1406" sodipodi:nodetypes="ccc"/><path d="m 283.0156,136.69833 c 0.33283,-0.52775 -0.16277,-1.40573 -0.68949,-1.74018 -0.5567,-0.35349 -1.62751,-0.43801 -1.97452,0.12275 -0.33312,0.53831 0.20098,1.41744 0.74031,1.7489 0.54759,0.33653 1.58085,0.41218 1.9237,-0.13147 z" class="highlight1" id="path1408" sodipodi:nodetypes="aaaaa"/><path d="m 319.26713,128.31283 c 0.40208,-0.65326 0.15902,-1.79617 -0.45511,-2.25581 -0.76332,-0.57128 -2.3685,-0.57543 -2.84953,0.24775 -0.47889,0.81956 0.31823,2.19001 1.17781,2.59266 0.66581,0.31188 1.74144,0.0415 2.12683,-0.5846 z" class="highlight1" id="path1410" sodipodi:nodetypes="aaaaa"/><path d="m 310.10154,134.01083 c -1.95261,-0.58152 -3.31071,-0.68519 -4.64058,-1.07055 1.46255,1.3039 2.81388,1.81844 4.64058,1.07055 z" class="highlight1" id="path1412" sodipodi:nodetypes="ccc"/><path d="m 309.12579,132.53462 c 0.22973,-0.28484 0.11628,-0.86094 -0.17386,-1.08393 -0.32114,-0.24683 -0.95451,-0.19244 -1.2089,0.12275 -0.21702,0.26887 -0.14841,0.8069 0.11531,1.03015 0.32294,0.27338 1.00184,0.26038 1.26745,-0.069 z" class="highlight1" id="path1414" sodipodi:nodetypes="aaaaa"/><path d="m 321.00393,127.22871 c -4.30477,3.52286 -10.19709,4.94055 -15.78334,6.32872 1.62696,1.45996 11.01913,0.36266 12.83524,-1.28593 0.16245,0.19855 3.12965,-2.46418 2.9481,-5.04279 z" class="highlight2" id="path1416" sodipodi:nodetypes="cccc"/><path d="m 283.12848,136.19405 c 0.0421,0.92348 -6.53131,0.97784 -11.80589,0.2897 0.37816,1.02046 3.14838,3.09154 3.14838,3.09154 2.95098,-0.14535 5.96765,0.44056 8.57173,-0.35388 1.67495,-0.40155 1.15179,-1.67781 0.0858,-3.02736 z" class="highlight2" id="path1418" sodipodi:nodetypes="ccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Eyes_Closed.tw b/src/art/vector_revamp/layers/Eyes_Closed.tw new file mode 100644 index 0000000000000000000000000000000000000000..f1fdf00b9f107073aac901aff93516fb1ff34fca --- /dev/null +++ b/src/art/vector_revamp/layers/Eyes_Closed.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Eyes_Closed [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 302.16296,131.24318 c 2.57167,-0.52673 5.58238,0.006 9.33942,-0.69862 2.58668,-0.4848 5.43996,-1.74164 9.09976,-3.58177 l -2.13661,2.38519 c -4.04644,3.14664 -11.31128,2.34686 -16.30257,1.8952 z" class="shadow" id="path1266" sodipodi:nodetypes="csccc"/><path sodipodi:nodetypes="cccc" id="path1316" class="shadow" d="m 314.07752,117.274 c -6.46523,0.2848 -13.00456,1.26106 -19.23505,-0.64511 l -0.54648,-1.94262 c 6.66634,2.35597 13.21476,2.28288 19.78153,2.58773 z"/><path d="m 314.07752,117.274 c -6.30971,0.1139 -12.52917,1.16848 -19.23505,-0.64511 -0.11296,-0.62159 -0.35966,-1.29334 -0.54648,-1.94262 6.39298,2.42643 13.10866,2.34048 19.78153,2.58773 z" class="hair" id="path1318" sodipodi:nodetypes="cccc"/><path d="m 269.949,137.67138 c 0.73177,-0.37643 0.86265,-1.21509 1.07486,-1.99119 3.59562,2.03489 7.47707,0.76228 11.35725,-0.49555 -5.4811,2.92985 -9.73399,4.45824 -12.43211,2.48674 z" class="shadow" id="path1320" sodipodi:nodetypes="cccc"/><path sodipodi:nodetypes="cccc" id="path1330" class="shadow" d="m 268.39113,125.24474 c 3.63876,-0.89851 6.76925,-2.25327 10.18168,-4.73608 -0.62683,-0.53103 -0.61519,-0.89808 -0.76402,-1.63693 -2.88076,2.79444 -5.97516,5.03497 -9.41766,6.37301 z"/><path d="m 268.39113,125.24474 c 3.984,-0.95362 7.05184,-2.69915 10.18168,-4.73608 -0.69182,-0.47535 -0.69569,-0.82906 -0.76402,-1.63693 -2.61352,2.58433 -5.48274,4.94492 -9.41766,6.37301 z" class="hair" id="path1332" sodipodi:nodetypes="cccc"/><path d="m 316.03784,127.49081 c -4.30281,1.05938 -7.95357,2.3998 -14.53503,2.477 0.44427,-0.21168 0.43707,-0.6506 0.30235,-1.15169 6.72552,0.42105 9.85993,-0.72177 14.23268,-1.32531 z" class="shadow" id="path1305" sodipodi:nodetypes="cccc"/><path d="m 284.71888,133.33632 c -4.35972,0.4276 -3.84243,1.28326 -12.01845,1.57179 3.11507,-0.36955 6.44566,-1.01385 8.97997,-2.27702 0.46806,0.45298 1.88596,0.52604 3.03848,0.70523 z" class="shadow" id="path1307" sodipodi:nodetypes="cccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Eyes_Happy.tw b/src/art/vector_revamp/layers/Eyes_Happy.tw new file mode 100644 index 0000000000000000000000000000000000000000..aea84b6e67bb3d4d6fc33824758d111fca853e86 --- /dev/null +++ b/src/art/vector_revamp/layers/Eyes_Happy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Eyes_Happy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccc" id="path6045" class="shadow" d="m 307.10671,134.50075 c -2.14996,-0.21128 -3.4884,-1.89949 -3.24482,-3.7169 5.61251,-12.66418 20.17095,-9.17457 20.34208,-8.99178 l -2.84372,2.07583 c 0,0 0.49128,3.89972 -0.83752,5.48536 -1.92253,5.79302 -5.27149,5.56862 -13.41602,5.14749 z"/><path d="m 307.10671,134.50075 c -1.87469,-0.40868 -3.30955,-2.02174 -3.24482,-3.70585 6.37333,-6.81838 12.60798,-6.56266 17.49836,-6.927 -0.089,1.78171 -0.22231,3.81052 -0.83752,5.48536 -2.65086,5.61858 -6.10961,5.14951 -13.41602,5.14749 z" class="eyeball" id="XMLID_511_-4-2" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccccc" id="path6043" class="shadow" d="m 310.44159,134.49641 c -3.67367,-1.48686 -4.29831,-3.49933 -3.15534,-6.74851 2.69791,-2.16227 6.05502,-3.5901 10.32531,-3.68959 2.99107,2.5491 2.13293,6.70626 -0.65334,9.45436 -2.61876,1.10509 -4.65424,0.97852 -6.51663,0.98374 z"/><path d="m 310.44159,134.49641 c -3.31639,-1.90368 -3.90593,-3.95711 -3.15534,-6.74851 2.69791,-2.16227 6.05502,-3.5901 10.32531,-3.68959 1.97318,2.65914 1.65167,6.75829 -0.65334,9.45436 -2.61876,1.10509 -4.65424,0.97852 -6.51663,0.98374 z" class="iris" id="XMLID_511_-4-2-3" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="aaaaa" id="path836-0" class="shadow" d="m 312.9516,125.29705 c 1.10576,-0.11043 1.2531,1.93253 1.3748,3.0371 0.10786,0.97889 0.37016,2.74199 -0.60312,2.89222 -1.01892,0.15728 -1.36813,-1.67605 -1.515,-2.69652 -0.15752,-1.09444 -0.35693,-3.12293 0.74332,-3.2328 z"/><path d="m 317.67935,111.63924 c -7.50966,2.24905 -13.60059,5.38357 -18.28488,9.05551 -0.50012,-0.83277 -0.541,-1.08655 -0.54648,-1.94262 2.10133,-1.86939 9.26628,-5.39235 18.83136,-7.11289 z" class="shadow" id="path898" sodipodi:nodetypes="cccc"/><path sodipodi:nodetypes="cccc" id="path836-0-8-5-8" class="hair" d="m 317.67935,111.63924 c -7.62756,2.19852 -13.77221,5.31002 -18.28488,9.05551 -0.4503,-0.83989 -0.48773,-1.09416 -0.54648,-1.94262 1.80803,-1.6451 8.85545,-5.07818 18.83136,-7.11289 z"/><path sodipodi:nodetypes="cccscccc" id="path6039" class="shadow" d="m 274.44008,140.2959 c -3.77011,-1.33495 -4.55682,-6.73794 -4.41296,-6.90577 l -2.12826,-0.77244 c 0,0 4.27612,-4.61357 8.17537,-4.1261 3.11408,0.38931 5.88666,4.99929 6.94086,6.58701 0.70038,0.99444 1.14834,1.97959 1.20977,3.09041 -0.11063,0.6088 -0.16261,0.79325 -1.19487,1.03043 -2.0078,1.16001 -6.00188,0.99826 -8.58991,1.09646 z"/><path d="m 274.44008,140.2959 c -3.10223,-2.11414 -3.60251,-4.55455 -4.41296,-6.90577 6.75267,-6.49147 10.05247,0.18553 13.13641,2.39159 0.7155,0.74756 0.79828,1.35208 1.06133,2.38729 -0.18602,0.58367 -0.41907,0.70776 -1.19487,1.03043 -2.25853,0.56739 -6.04492,0.89652 -8.58991,1.09646 z" class="eyeball" id="XMLID_511_-4-2-6" sodipodi:nodetypes="cccccc"/><path d="m 277.23993,140.0554 c -3.75163,-1.66167 -4.05213,-6.80108 -3.89825,-8.99651 4.41482,-1.71661 6.48962,1.95868 9.57878,4.535 0.35859,1.15724 0.43496,2.38638 -0.22192,3.68841 0,0 -2.91362,0.57316 -5.45861,0.7731 z" class="shadow" id="path6037" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccccc" id="path2346" class="iris" d="m 277.23993,140.0554 c -3.52398,-2.02728 -3.57865,-6.55541 -3.89825,-8.99651 4.41482,-1.71661 6.48962,1.95868 9.57878,4.535 0.0721,1.2479 -0.002,2.50301 -0.22192,3.68841 0,0 -2.91362,0.57316 -5.45861,0.7731 z"/><path sodipodi:nodetypes="aaaaa" id="path836-0-1" class="shadow" d="m 278.79187,132.35429 c 0.7753,-0.12567 0.96972,1.30423 1.11402,2.07628 0.14378,0.76921 0.47663,2.16241 -0.28777,2.32986 -0.76786,0.16821 -1.09139,-1.23356 -1.24105,-2.00526 -0.15462,-0.79729 -0.3869,-2.27094 0.4148,-2.40088 z"/><path d="m 268.39113,125.24474 c 3.84956,-1.23054 7.58928,-1.35196 11.67387,-0.22046 -0.22533,-0.68817 -0.47718,-1.38369 -1.24059,-1.8713 -3.84357,-0.72563 -7.95641,0.48803 -10.43328,2.09176 z" class="shadow" id="path900" sodipodi:nodetypes="cccc"/><path sodipodi:nodetypes="cccc" id="path836-0-8-5-8-4" class="hair" d="m 268.39113,125.24474 c 3.88481,-1.32454 7.6163,-1.42402 11.67387,-0.22046 -0.29393,-0.68817 -0.5742,-1.38369 -1.24059,-1.8713 -3.82999,-0.617 -7.94966,0.54201 -10.43328,2.09176 z"/><path sodipodi:nodetypes="cccc" id="path836-0-8-5" class="shadow" d="m 314.20378,119.09392 c -6.05866,2.28691 -11.22162,5.0986 -12.90586,12.75528 0.30717,-4.71449 0.75031,-5.81731 0.75031,-5.81731 0,0 5.19124,-5.91333 12.15555,-6.93797 z"/><path sodipodi:nodetypes="cccc" id="path836-0-8-5-6" class="shadow" d="m 283.68032,132.67341 c -2.29173,-3.19341 -6.81165,-7.67408 -11.63652,-4.4549 4.04155,-3.32386 9.21676,0.61188 9.21676,0.61188 0,0 0.78358,1.28953 2.41976,3.84302 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Eyes_Happy_Highlights.tw b/src/art/vector_revamp/layers/Eyes_Happy_Highlights.tw new file mode 100644 index 0000000000000000000000000000000000000000..c03e137de7dee928baac596c80262d03f1ca57c2 --- /dev/null +++ b/src/art/vector_revamp/layers/Eyes_Happy_Highlights.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Eyes_Happy_Highlights [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccc" id="path1358" class="highlight1" d="m 276.31935,138.03596 c -1.74948,-1.08152 -2.82634,-0.70082 -4.14058,-0.83618 1.46255,1.3039 2.31388,1.58407 4.14058,0.83618 z"/><path sodipodi:nodetypes="aaaaa" id="path1360" class="highlight1" d="m 283.0156,136.69833 c 0.33283,-0.52775 -0.16277,-1.40573 -0.68949,-1.74018 -0.5567,-0.35349 -1.62751,-0.43801 -1.97452,0.12275 -0.33312,0.53831 0.20098,1.41744 0.74031,1.7489 0.54759,0.33653 1.58085,0.41218 1.9237,-0.13147 z"/><path sodipodi:nodetypes="aaaaa" id="path1362" class="highlight1" d="m 319.26713,128.31283 c 0.40208,-0.65326 0.15902,-1.79617 -0.45511,-2.25581 -0.76332,-0.57128 -2.3685,-0.57543 -2.84953,0.24775 -0.47889,0.81956 0.31823,2.19001 1.17781,2.59266 0.66581,0.31188 1.74144,0.0415 2.12683,-0.5846 z"/><path sodipodi:nodetypes="ccc" id="path1364" class="highlight1" d="m 310.10154,134.01083 c -1.95261,-0.58152 -3.31071,-0.68519 -4.64058,-1.07055 1.46255,1.3039 2.81388,1.81844 4.64058,1.07055 z"/><path sodipodi:nodetypes="aaaaa" id="path1366" class="highlight1" d="m 309.12579,132.53462 c 0.22973,-0.28484 0.11628,-0.86094 -0.17386,-1.08393 -0.32114,-0.24683 -0.95451,-0.19244 -1.2089,0.12275 -0.21702,0.26887 -0.14841,0.8069 0.11531,1.03015 0.32294,0.27338 1.00184,0.26038 1.26745,-0.069 z"/><path sodipodi:nodetypes="cccc" id="path1368" class="highlight2" d="m 321.00393,127.22871 c -4.30477,3.52286 -10.19709,4.94055 -15.78334,6.32872 1.62696,1.45996 10.61033,1.15816 12.42644,-0.49043 0,0 3.43904,-3.38118 3.3569,-5.83829 z"/><path sodipodi:nodetypes="ccccc" id="path1370" class="highlight2" d="m 283.12848,136.19405 c 0.0421,0.92348 -6.38287,1.60284 -11.65745,0.9147 0.37816,1.02046 2.99994,3.12279 2.99994,3.12279 2.95098,-0.14535 5.87909,-0.37074 8.66548,-1.09216 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Eyes_Shy.tw b/src/art/vector_revamp/layers/Eyes_Shy.tw new file mode 100644 index 0000000000000000000000000000000000000000..991329f5761e91b77f330c7ce5437ecf12d69f46 --- /dev/null +++ b/src/art/vector_revamp/layers/Eyes_Shy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Eyes_Shy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 307.10671,133.23513 c -2.14996,-0.21128 -3.4884,-0.63387 -3.24482,-2.45128 5.61251,-12.66418 20.17095,-9.17457 20.34208,-8.99178 l -2.84372,2.07583 c 0,0 0.49128,3.89972 -0.83752,5.48536 -4.6569,4.69927 -4.74024,3.03737 -13.41602,3.88187 z" class="shadow" id="path1383" sodipodi:nodetypes="cccccc"/><path sodipodi:nodetypes="ccccc" id="path1385" class="eyeball" d="m 307.10671,133.23513 c -1.87469,-0.40868 -3.30955,-0.75612 -3.24482,-2.44023 6.37333,-6.81838 12.60798,-6.56266 17.49836,-6.927 -0.089,1.78171 -0.22231,3.81052 -0.83752,5.48536 -4.63523,3.72796 -4.96899,2.80576 -13.41602,3.88187 z"/><path d="m 310.44159,132.82454 c -2.37038,-2.40092 -2.27065,-3.28058 -0.76472,-6.52976 2.69791,-2.16227 5.44322,-2.2007 9.71351,-2.30019 1.02447,3.36359 0.96171,4.79101 -0.65334,6.72697 -2.10986,1.90314 -6.35887,2.21411 -8.29545,2.10298 z" class="shadow" id="path1387" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccccc" id="path1389" class="iris" d="m 310.44159,132.80891 c -2.06639,-2.49743 -1.51531,-3.72273 -0.76472,-6.51413 3.39397,-1.8971 5.44322,-2.2007 9.71351,-2.30019 0.91996,3.36377 0.44572,5.40578 -0.65334,6.71134 -2.09074,1.5744 -4.38813,2.04437 -8.29545,2.10298 z"/><path d="m 314.67793,125.49592 c 1.10576,-0.11043 1.25309,1.93253 1.3748,3.0371 0.10786,0.97889 0.37016,2.74199 -0.60312,2.89222 -1.01892,0.15728 -1.36813,-1.67605 -1.515,-2.69652 -0.15752,-1.09444 -0.35693,-3.12292 0.74332,-3.2328 z" class="shadow" id="path1391" sodipodi:nodetypes="aaaaa"/><path sodipodi:nodetypes="cccc" id="path1393" class="shadow" d="m 316.5303,114.40138 c -6.66941,0.72065 -12.03275,1.96548 -21.48896,0.96797 -0.0572,-0.64754 -0.32141,-1.29508 -0.54648,-1.94262 7.94186,0.96275 14.90918,0.88375 22.03544,0.97465 z"/><path d="m 316.5303,114.40138 c -6.85014,0.90399 -13.36209,1.48406 -21.48896,0.96797 0.0949,-0.51969 -0.28129,-1.25676 -0.54648,-1.94262 7.70775,1.30604 14.79826,0.94191 22.03544,0.97465 z" class="hair" id="path1395" sodipodi:nodetypes="cccc"/><path d="m 274.44008,139.12475 c -3.77011,-1.33495 -4.55682,-5.56679 -4.41296,-5.73462 l -2.12826,-0.77244 c 0,0 4.27612,-3.56396 8.17537,-3.07649 3.11408,0.38931 4.98068,3.73976 6.94086,5.5374 0.70038,0.99444 0.6622,0.90788 0.72363,2.0187 -0.11063,0.6088 0.14384,0.65866 -0.70873,0.93099 -2.0078,1.16001 -6.00188,0.99826 -8.58991,1.09646 z" class="shadow" id="path1397" sodipodi:nodetypes="cccscccc"/><path sodipodi:nodetypes="cccccc" id="path1399" class="eyeball" d="m 274.44008,139.12475 c -3.10223,-2.11414 -3.60251,-3.3834 -4.41296,-5.73462 6.75267,-6.49147 10.05247,0.18553 13.13641,2.39159 0.36003,0.38428 0.18323,0.27256 0.44628,1.30777 -0.18602,0.58367 -0.1204,0.39348 -0.57982,0.9388 -2.25853,0.56739 -6.04492,0.89652 -8.58991,1.09646 z"/><path sodipodi:nodetypes="ccccc" id="path1401" class="shadow" d="m 277.23993,138.8953 c -3.23601,-2.56011 -2.26384,-6.08103 -2.10996,-8.27646 4.33748,0.018 4.70133,2.39873 7.79049,4.97505 0.35859,1.15724 0.43496,1.22628 -0.22192,2.52831 0,0 -2.91362,0.57316 -5.45861,0.7731 z"/><path d="m 277.23993,138.90635 c -3.19586,-2.9179 -1.97786,-5.79953 -2.10996,-8.28751 3.93974,0.22794 4.70133,2.39873 7.79049,4.97505 1.19438,0.83852 0.73936,2.31119 -0.22192,2.53936 0,0 -2.91362,0.57316 -5.45861,0.7731 z" class="iris" id="path1403" sodipodi:nodetypes="ccccc"/><path d="m 280.24499,132.97929 c 0.77531,-0.12566 0.96972,1.30423 1.11402,2.07628 0.14378,0.7692 0.47663,2.16241 -0.28777,2.32986 -0.76787,0.16821 -1.09138,-1.23356 -1.24105,-2.00526 -0.15462,-0.79729 -0.38688,-2.27094 0.4148,-2.40088 z" class="shadow" id="path1405" sodipodi:nodetypes="aaaaa"/><path sodipodi:nodetypes="cccc" id="path1407" class="shadow" d="m 266.88853,124.93538 c 5.14281,-2.35048 8.8204,-4.54964 11.7733,-6.94902 -0.64858,-0.54081 -1.09249,-1.15385 -1.24059,-1.8713 -3.15256,3.1591 -6.34148,6.29597 -10.53271,8.82032 z"/><path d="m 266.71175,125.01272 c 4.28394,-1.97306 8.31478,-4.40496 11.95008,-7.02636 -0.59259,-0.44063 -1.10195,-0.96639 -1.24059,-1.8713 -3.0006,3.32594 -6.50676,6.48064 -10.70949,8.89766 z" class="hair" id="path1409" sodipodi:nodetypes="cccc"/><path d="m 315.90526,120.41975 c -7.90241,3.58378 -11.88871,4.3252 -14.9167,11.98188 0.30717,-4.71449 0.75031,-4.84504 0.75031,-4.84504 0,0 7.35676,-6.00172 14.16639,-7.13684 z" class="shadow" id="path1411" sodipodi:nodetypes="cccc"/><path d="m 283.68032,134.28278 c -2.29173,-3.19341 -6.45739,-7.99776 -13.10527,-5.22052 5.93085,-3.26862 10.68551,1.3775 10.68551,1.3775 0,0 0.78358,1.28953 2.41976,3.84302 z" class="shadow" id="path1413" sodipodi:nodetypes="cccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Eyes_Shy_Highlights.tw b/src/art/vector_revamp/layers/Eyes_Shy_Highlights.tw new file mode 100644 index 0000000000000000000000000000000000000000..454476103b533ab04022f177ba72e66654fb9635 --- /dev/null +++ b/src/art/vector_revamp/layers/Eyes_Shy_Highlights.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Eyes_Shy_Highlights [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccc" id="path1422" class="highlight1" d="m 276.31935,136.60153 c -1.74948,-1.08152 -2.82634,-0.70082 -4.14058,-0.83618 1.46255,1.3039 2.31388,1.58407 4.14058,0.83618 z"/><path sodipodi:nodetypes="aaaaa" id="path1424" class="highlight1" d="m 283.0156,136.69833 c 0.33283,-0.52775 -0.16277,-1.40573 -0.68949,-1.74018 -0.5567,-0.35349 -1.62751,-0.43801 -1.97452,0.12275 -0.33312,0.53831 0.20098,1.41744 0.74031,1.7489 0.54759,0.33653 1.58085,0.41218 1.9237,-0.13147 z"/><path sodipodi:nodetypes="aaaaa" id="path1426" class="highlight1" d="m 319.26713,128.31283 c 0.40208,-0.65326 0.15902,-1.79617 -0.45511,-2.25581 -0.76332,-0.57128 -2.3685,-0.57543 -2.84953,0.24775 -0.47889,0.81956 0.31823,2.19001 1.17781,2.59266 0.66581,0.31188 1.74144,0.0415 2.12683,-0.5846 z"/><path sodipodi:nodetypes="ccc" id="path1428" class="highlight1" d="m 308.9531,132.21396 c -1.95261,-0.58152 -3.31071,-0.68519 -4.64058,-1.07055 1.46255,1.3039 2.81388,1.81844 4.64058,1.07055 z"/><path sodipodi:nodetypes="aaaaa" id="path1430" class="highlight1" d="m 309.12579,132.53462 c 0.22973,-0.28484 0.11628,-0.86094 -0.17386,-1.08393 -0.32114,-0.24683 -0.95451,-0.19244 -1.2089,0.12275 -0.21702,0.26887 -0.14841,0.8069 0.11531,1.03015 0.32294,0.27338 1.00184,0.26038 1.26745,-0.069 z"/><path sodipodi:nodetypes="ccccc" id="path1432" class="highlight2" d="m 321.26909,125.30626 c -4.30477,3.52286 -11.2025,5.59241 -16.78875,6.98058 0.42493,0.38132 2.61485,0.92369 2.61485,0.92369 3.74766,-0.56824 8.59308,-0.25714 11.14846,-2.06598 0,0 2.93081,-1.48083 3.02544,-5.83829 z"/><path sodipodi:nodetypes="cccccc" id="path1434" class="highlight2" d="m 283.12848,135.7569 c 0.0421,0.92348 -6.71985,0.86812 -11.99443,0.17998 0.37816,1.02046 3.3093,3.19461 3.3093,3.19461 2.95098,-0.14535 5.90671,-0.44256 8.6931,-1.16398 0.9821,-1.2502 0.32176,-1.64424 -0.008,-2.21061 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Face_Highlights.tw b/src/art/vector_revamp/layers/Face_Highlights.tw new file mode 100644 index 0000000000000000000000000000000000000000..845e2a2c3806edfcf53f4eda171654d07596759a --- /dev/null +++ b/src/art/vector_revamp/layers/Face_Highlights.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Face_Highlights [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-0-9-5" class="highlight2" d="m 275.19669,144.91885 c -0.45504,-0.57446 -1.58115,-0.6711 -2.43843,-0.69755 0.35064,0.57872 1.68753,1.54395 2.43843,0.69755 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-0-9-5-7" class="highlight2" d="m 325.10727,135.45519 c -1.5378,0.39782 -2.70811,0.94199 -3.38861,1.31329 0.35064,0.57872 2.6819,0.15183 3.38861,-1.31329 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-0-9-5-8-4-8" class="highlight2" d="m 287.40684,166.81779 c -0.37424,-0.72047 -8.60195,-6.72222 -9.45432,-6.6478 0.1152,0.76888 7.07094,6.64629 9.45432,6.6478 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Feet.tw b/src/art/vector_revamp/layers/Feet.tw new file mode 100644 index 0000000000000000000000000000000000000000..56097223f49eab2216527d1715ca04713f72c5c5 --- /dev/null +++ b/src/art/vector_revamp/layers/Feet.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Feet [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccccccccccccc" id="path1094" class="shadow" d="m 238.95,872.025 c -0.48582,4.8674 0.15294,9.06839 -0.0125,13.6 2.22973,9.99408 1.7936,14.49404 2.1125,20.825 0.022,5.27636 -1.31474,9.10565 -4.425,9.7625 -3.67413,1.13135 -6.74815,2.63651 -14.39869,1.5302 -9.18145,2.47145 -15.2613,8.08123 -19.65088,12.66319 -5.99441,11.15878 -13.47376,7.21014 -20.43229,8.63526 -2.26339,1.53969 -4.48245,2.64592 -5.92759,3.92125 -8.08027,1.27814 -9.78952,-1.14984 -9.34055,-4.7749 -4.73388,-0.59152 -3.07859,-2.61348 -3.4875,-4.1125 -2.1797,-0.86783 -3.38524,-2.25017 -1.8875,-5.5125 -1.64492,-1.58194 -0.59193,-3.0027 1.0125,-4.4125 -0.047,-1.41206 -0.0626,-2.02062 1.85427,-3.5987 2.47354,-1.16931 5.2035,-1.82041 6.88323,-3.0263 9.61678,-4.02794 17.69545,-9.58214 24.9375,-15.6 6.764,-7.70672 11.93927,-16.77333 16.725,-26.1125 0.38886,-5.72349 1.1106,-11.50246 2.49687,-17.39219 8.29195,1.78724 16.46415,2.06569 24.4617,0.1436 0.0134,4.46773 -0.288,9.28647 -0.92107,13.46109 z"/><path d="m 238.95,872.025 c -0.78366,4.8674 -0.0123,9.06839 -0.0125,13.6 1.96104,9.99408 1.6598,14.49404 2.1125,20.825 -0.33122,5.1439 -1.39649,9.075 -4.425,9.7625 -3.7164,0.94114 -6.82187,2.30479 -14.39869,1.5302 -9.54221,2.255 -15.48251,7.9485 -19.65088,12.66319 -5.99441,10.40697 -13.47376,7.11956 -20.43229,8.63526 -2.68208,1.30708 -4.5396,2.61417 -5.92759,3.92125 -7.45032,0.85817 -9.58295,-1.28756 -9.34055,-4.7749 -4.44919,-0.9711 -3.04844,-2.65368 -3.4875,-4.1125 -1.9584,-0.90471 -3.25864,-2.27127 -1.8875,-5.5125 -1.25464,-1.53858 -0.48809,-2.99116 1.0125,-4.4125 0.0921,-1.45 0.40705,-2.1487 1.85427,-3.5987 2.78612,-0.81208 5.26912,-1.74541 6.88323,-3.0263 10.38085,-4.02794 18.06828,-9.58214 24.9375,-15.6 7.28492,-7.70672 12.23858,-16.77333 16.725,-26.1125 l 2.49687,-17.39219 24.4617,0.1436 c -0.20353,4.43674 -0.48332,9.25857 -0.92107,13.46109 z" class="skin" id="XMLID_463_" sodipodi:nodetypes="ccccccccccccccccccc"/><path sodipodi:nodetypes="cccccccccccccccccccc" id="path1096" class="shadow" d="m 375.58471,902.04597 c 0.52386,-4.42278 1.19018,-8.77106 2.62778,-13.11184 -0.18418,-4.15006 -1.53153,-7.58074 -2.24386,-11.19255 1.41187,-3.81106 3.55196,-7.41574 3.75747,-11.68734 l 9.5403,1.19132 11.39699,0.54305 c -0.13161,5.61968 0.61689,10.96792 1.61199,16.17184 -0.39734,2.28591 -1.32892,4.4142 -1.48163,6.5833 0.49368,10.63259 0.94138,21.12141 0.78125,31.41875 1.02096,6.09599 4.65404,10.88578 -0.98008,20.3093 1.08539,5.03478 -0.79793,7.36352 -3.88112,9.44835 -0.76646,0.77233 -1.5056,1.34202 -2.34991,0.25285 -1.29478,4.61758 -3.69222,4.6425 -6.30536,3.64975 -1.58037,3.04176 -4.00867,3.2139 -7.08388,1.97332 -3.5406,3.44729 -7.70644,0.0206 -7.31963,-0.63385 -4.38119,2.60045 -6.80232,1.14845 -7.60246,-4.0751 0.35561,-2.38229 1.37471,-4.40392 1.37081,-7.1661 -0.32501,-1.77042 -0.20542,-3.64462 -0.12828,-5.82926 2.01476,-4.1624 4.14533,-8.22545 5.26725,-12.21996 2.26819,-8.61114 1.87934,-17.08855 3.02237,-25.62583 z"/><path d="m 375.58471,902.04597 c 0.75862,-4.37061 1.32442,-8.74123 2.62778,-13.11184 0.0883,-4.25905 -1.39782,-7.63422 -2.24386,-11.19255 1.53488,-3.81106 3.75773,-7.41574 3.75747,-11.68734 l 9.6028,-0.87118 11.33449,2.60555 c -0.54348,5.61968 0.32614,10.96792 1.61199,16.17184 -0.64128,2.19443 -1.39646,4.38887 -1.48163,6.5833 0.33165,10.6866 0.61556,21.23002 0.78125,31.41875 0.89521,6.14315 4.16056,11.07084 -0.98008,20.3093 0.80111,5.03478 -1.4045,7.36352 -3.88112,9.44835 -0.7833,0.60391 -1.56661,0.73191 -2.34991,0.25285 -1.50732,4.13937 -3.80652,4.38532 -6.30536,3.64975 -1.64076,2.4379 -4.02654,3.0352 -7.08388,1.97332 -3.47099,3.02964 -7.70217,-0.005 -7.31963,-0.63385 -4.31272,2.15538 -6.70519,0.51711 -7.60246,-4.0751 0.46976,-2.38229 1.66083,-4.40392 1.37081,-7.1661 -0.0428,-1.77042 -0.0855,-3.64462 -0.12828,-5.82926 2.29215,-4.04352 4.45099,-8.09445 5.26725,-12.21996 2.52972,-8.61114 2.11758,-17.08855 3.02237,-25.62583 z" class="skin" id="XMLID_510_" sodipodi:nodetypes="cccccccccccccccccccc"/><path d="m 396.35932,879.09548 c 0.33577,5.97053 1.94225,6.86306 4.45368,11.7344 -4.10767,-5.64573 -4.49649,-6.43544 -4.45368,-11.7344 z" class="shadow" id="XMLID_590_-04-8-55-8-75-5" sodipodi:nodetypes="ccc"/><path d="m 378.16403,886.94416 c 3.50178,-2.27327 4.23806,-2.786 5.89065,-7.82868 -0.78635,4.34205 -1.48231,5.32462 -5.89065,7.82868 z" class="shadow" id="XMLID_590_-04-8-55-8-75-5-3" sodipodi:nodetypes="ccc"/><path d="m 395.69892,943.48628 c -0.6807,3.78292 -1.85845,3.72528 -1.22527,8.57452 -1.10247,-5.75622 0.27648,-4.68977 1.22527,-8.57452 z" class="shadow" id="XMLID_590_-04-8-55-8-75-5-34" sodipodi:nodetypes="ccc"/><path d="m 389.12868,946.23737 c -0.6807,3.78292 -1.77006,4.43239 -1.13688,9.28163 -1.10247,-5.75622 0.18809,-5.39688 1.13688,-9.28163 z" class="shadow" id="XMLID_590_-04-8-55-8-75-5-34-6" sodipodi:nodetypes="ccc"/><path d="m 382.17591,947.91674 c -0.6807,3.78292 -1.37231,4.91853 -1.20317,9.74567 -0.74892,-5.60154 0.25438,-5.86092 1.20317,-9.74567 z" class="shadow" id="XMLID_590_-04-8-55-8-75-5-34-6-8" sodipodi:nodetypes="ccc"/><path d="m 375.34424,947.66262 c -0.6807,3.78292 -1.70377,4.56498 -1.79979,9.37002 -0.35118,-5.49105 0.851,-5.48527 1.79979,-9.37002 z" class="shadow" id="XMLID_590_-04-8-55-8-75-5-34-6-8-0" sodipodi:nodetypes="ccc"/><path d="m 233.85987,866.45583 c 0.20162,3.58528 1.78152,8.46827 1.27913,12.44825 -0.33424,2.64785 -1.53099,3.78741 -2.39316,6.67724 0.49516,-2.71172 1.67721,-3.99993 2.00285,-6.68659 0.49663,-4.09741 -0.91468,-9.23845 -0.88882,-12.4389 z" class="shadow" id="XMLID_590_-04-8-55-8-75-5-4" sodipodi:nodetypes="cscsc"/><path d="m 174.52487,930.47124 c -0.6807,3.78292 -7.54752,3.28373 -7.64354,8.08877 -0.35118,-5.49105 6.69475,-4.20402 7.64354,-8.08877 z" class="shadow" id="XMLID_590_-04-8-55-8-75-5-34-6-8-0-9" sodipodi:nodetypes="ccc"/><path d="m 171.50081,927.25578 c -0.6807,3.78292 -7.92317,3.54889 -8.01919,8.35393 -0.35118,-5.49105 7.0704,-4.46918 8.01919,-8.35393 z" class="shadow" id="XMLID_590_-04-8-55-8-75-5-34-6-8-0-9-0" sodipodi:nodetypes="ccc"/><path d="m 170.10938,922.88554 c -1.57133,3.50167 -6.25131,2.72077 -8.61295,5.86956 2.43007,-3.53793 6.80478,-2.48481 8.61295,-5.86956 z" class="shadow" id="XMLID_590_-04-8-55-8-75-5-34-6-8-0-9-0-3" sodipodi:nodetypes="ccc"/><path d="m 169.29085,920.33085 c -1.75883,3.47042 -4.50131,0.78327 -6.86295,3.93206 2.43007,-3.53793 4.92978,-0.57856 6.86295,-3.93206 z" class="shadow" id="XMLID_590_-04-8-55-8-75-5-34-6-8-0-9-0-3-1" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Flaccid_0.tw b/src/art/vector_revamp/layers/Flaccid_0.tw new file mode 100644 index 0000000000000000000000000000000000000000..c88af10dd20ca88bc035991c78db6470e4c72338 --- /dev/null +++ b/src/art/vector_revamp/layers/Flaccid_0.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Flaccid_0 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path6" d="m 285.17635,460.26374 c 0,0.1 0.2,0.1 0.3,0.1 1.1,0.1 1.1,1.7 0.8,2.7 0,0.1 0,0.2 -0.1,0.3 -0.3,1.2 -0.8,1.7 -0.8,1.7 -0.1,0.1 -0.5,0.5 -0.9,0.6 -0.1,0 -0.2,0.1 -0.4,0.1 -1.5,-0.1 -2.2,-1.5 -2.4,-2.8 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.6 -0.11527,-1.2161 0.2,-1.5 l 0.2,-0.2 0.2,-0.2" sodipodi:nodetypes="cccccccccscc"/><path id="path8" d="m 281.87635,458.56374 v -0.8 c 0,-0.2 0,-0.8 0.2,-1.7 0.1,-0.5 0.2,-1 0.2,-1.1 0.6,-2.8 2.6,-4.3 2.6,-4.3 0.2,-0.2 0.8,-0.5 1,-0.7 0.5,-0.3 1.9,-1 3.9,-0.3 0.3,0.1 2.2,0.9 2.6,1.4 0.4,0.7 -0.3,-0.4 -0.4,-0.3 -0.1,0.1 -0.2,0.1 -0.3,0.3 -0.2,0.2 -0.2,0.4 -0.3,0.5 -0.2,0.4 -0.6,0.5 -1.1,0.7 -0.7,0.3 -1.2,0.5 -1.7,0.8 -0.3,0.3 -0.6,0.5 -1,1.1 -0.4,0.5 -0.6,0.8 -0.8,1.2 -0.1,0.1 -0.2,0.5 -0.4,1.1 -0.1,0.4 -0.2,0.5 -0.2,0.7 -0.1,0.3 -0.2,0.6 -0.2,0.8 -0.1,0.5 -0.4,1.4 -1.3,2.2 -0.4,0.4 -0.9,0.9 -1.5,0.7 -1,0 -1.3,-2.1 -1.3,-2.3 z" sodipodi:nodetypes="ssccccccscccccccccccs"/><path id="path10" d="m 288.57635,449.56374 c 1,-0.1 3.3,0.7 3.7,1.5 0.3,0.7 0.2,-0.2 -0.4,0.4 -0.3,0.1 -0.8,0.3 -1.4,0.6 -1.4,0.6 -1.6,0.6 -2.1,1 -0.5,0.4 -0.9,0.9 -1.1,1.1 -0.2,0.2 -0.4,0.5 -0.6,0.9 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.4,1.3 -1,2.5 -0.8,3.7 v 0.3 0.3 c -0.3,0.6 0.5,0.5 0.7,1 0.1,0.7 0,1.3 -0.1,1.9 0,0.1 -0.1,0.2 -0.1,0.3 -0.3,1 -0.8,1.4 -0.8,1.4 -0.1,0.1 -0.3,0.3 -0.6,0.5 -0.1,0.1 -0.2,0.1 -0.3,0.1 -1.6,0.5 -2.3,-1.3 -2.6,-2.5 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.5 -0.1,-1.1 0.2,-1.4 l 0.2,-0.2 c 0.1,-0.1 0.1,-0.1 0.1,-0.2 -0.5,-1.7 -0.1,-3.3 0.1,-4.9 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.8 0.1,-1 0.4,-1.7 0.1,-0.3 0.5,-1.4 1.5,-2.4 1.9,-1.6 3.2,-1.5 4.3,-1.6 z" class="skin penis" sodipodi:nodetypes="ccccsscsccccccccccccsscccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Flaccid_1.tw b/src/art/vector_revamp/layers/Flaccid_1.tw new file mode 100644 index 0000000000000000000000000000000000000000..f685b274c8671768e6047ecabf723b346d51d2fc --- /dev/null +++ b/src/art/vector_revamp/layers/Flaccid_1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Flaccid_1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path6-3" d="m 280.78125,468.36875 c 0,0.1 0.3,0.2 0.5,0.3 1.9,0.2 1.9,3.1 1.5,4.9 0,0.2 -0.1,0.3 -0.1,0.5 -0.6,2.2 -1.6,3.1 -1.6,3.1 -0.2,0.2 -0.9,0.9 -1.7,1.2 -0.2,0.1 -0.4,0.1 -0.7,0.2 -2.8,-0.1 -4,-2.7 -4.4,-5.1 -0.1,-0.2 -0.1,-0.5 -0.2,-0.8 -0.2,-1 -0.2,-2.1 0.4,-2.7 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.4" sodipodi:nodetypes="cccccccccssc"/><path id="path8-6" d="m 274.78125,465.26875 v -1.5 c 0,-0.3 0.1,-1.5 0.3,-3.2 0.1,-1 0.3,-1.8 0.3,-2 1,-5.2 4.8,-7.8 4.8,-7.8 0.4,-0.3 1.4,-0.9 1.8,-1.3 0.8,-0.5 3.4,-1.7 7,-0.6 0.5,0.2 4.1,1.7 4.7,2.6 0.7,1.2 -0.5,-0.8 -0.7,-0.5 l -0.6,0.6 c -0.3,0.4 -0.4,0.8 -0.5,0.9 -0.3,0.6 -1,0.8 -2.1,1.3 -1.4,0.5 -2.2,0.9 -3.1,1.5 -0.6,0.5 -1,1 -1.9,2 -0.7,0.9 -1.2,1.4 -1.6,2.3 -0.1,0.3 -0.3,0.8 -0.7,2 -0.3,0.7 -0.4,1 -0.5,1.3 -0.2,0.6 -0.3,1.1 -0.4,1.5 -0.2,0.9 -0.8,2.6 -2.3,4.1 -0.7,0.7 -1.7,1.6 -2.7,1.4 -1.4,-0.5 -1.8,-4.3 -1.8,-4.6 z" sodipodi:nodetypes="ssccccccccccccccscscs"/><path id="path10-7" d="m 286.98125,448.86875 c 1.9,-0.1 6.1,1.2 6.8,2.8 0.6,1.3 0.3,-0.4 -0.7,0.8 -0.6,0.2 -1.5,0.6 -2.6,1.1 -2.5,1 -3,1.1 -3.9,1.8 -1,0.7 -1.7,1.6 -2,2 -0.3,0.4 -0.7,0.9 -1.1,1.6 l -0.3,0.6 c -0.1,0.2 -0.2,0.3 -0.3,0.5 -0.7,2.3 -1.8,4.6 -1.4,6.8 v 0.6 0.6 c -0.6,1.2 0.9,0.9 1.2,1.9 0.3,1.3 0,2.3 -0.1,3.6 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.6,1.8 -1.4,2.5 -1.4,2.5 -0.2,0.2 -0.5,0.5 -1,0.8 -0.2,0.1 -0.3,0.2 -0.5,0.3 -2.9,0.9 -4.2,-2.4 -4.8,-4.5 -0.1,-0.2 -0.1,-0.5 -0.2,-0.7 -0.2,-1 -0.2,-2 0.4,-2.5 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.4 -1,-3.1 -0.2,-6 0.2,-8.9 0,-0.2 0.1,-0.4 0.1,-0.6 0.2,-1.4 0.2,-1.8 0.8,-3.2 0.2,-0.5 0.9,-2.6 2.8,-4.5 3.1,-3.4 5.5,-3.2 7.5,-3.3 z" class="skin penis" sodipodi:nodetypes="cccccscscccccccccccccscccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Flaccid_2.tw b/src/art/vector_revamp/layers/Flaccid_2.tw new file mode 100644 index 0000000000000000000000000000000000000000..4742a2dd9aca6404e23a7a501718013564bb506f --- /dev/null +++ b/src/art/vector_revamp/layers/Flaccid_2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Flaccid_2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path6-5" d="m 275.575,476.125 c 0.1,0.1 0.4,0.3 0.8,0.4 2.8,0.3 2.8,4.4 2.2,7 -0.1,0.2 -0.1,0.5 -0.2,0.7 -0.9,3.1 -2.2,4.4 -2.2,4.4 -0.3,0.3 -1.2,1.2 -2.4,1.7 -0.3,0.1 -0.6,0.2 -1,0.2 -4,-0.1 -5.8,-3.9 -6.3,-7.3 -0.1,-0.4 -0.2,-0.7 -0.2,-1.1 -0.3,-1.5 -0.2,-3.1 0.6,-3.9 0.2,-0.2 0.4,-0.3 0.6,-0.5 0.2,-0.1 0.3,-0.3 0.4,-0.6" sodipodi:nodetypes="cccccccccscc"/><path id="path8-3" d="m 266.875,471.725 c 0,-0.5 0,-1.2 0.1,-2.1 0,-0.4 0.1,-2.1 0.5,-4.5 0.2,-1.4 0.4,-2.5 0.5,-2.8 1.5,-7.5 6.9,-11.2 6.9,-11.2 0.6,-0.5 2,-1.3 2.6,-1.8 1.2,-0.8 4.9,-2.5 10.1,-0.9 0.7,0.2 5.9,2.4 6.7,3.8 1,1.8 -0.7,-1.1 -1,-0.8 -0.2,0.1 -0.5,0.4 -0.8,0.8 -0.4,0.6 -0.6,1.1 -0.7,1.3 -0.4,0.9 -1.5,1.2 -3,1.8 -2,0.8 -3.2,1.3 -4.4,2.2 -0.9,0.7 -1.5,1.4 -2.7,2.9 -1.1,1.3 -1.7,2 -2.2,3.2 -0.2,0.4 -0.5,1.2 -1.1,2.8 -0.4,1 -0.5,1.4 -0.7,1.9 -0.3,0.9 -0.4,1.6 -0.5,2.2 -0.3,1.3 -1.2,3.8 -3.4,5.8 -1.1,1 -2.5,2.3 -3.9,1.9 -2.4,-0.6 -2.9,-6.1 -3,-6.5 z" sodipodi:nodetypes="cccccccccccsccccccscc"/><path id="path10-5" d="m 284.475,448.125 c 2.7,-0.2 8.7,1.7 9.7,4 0.9,1.9 0.4,-0.6 -0.9,1.1 -0.8,0.4 -2.1,0.9 -3.7,1.6 -3.6,1.4 -4.3,1.6 -5.6,2.5 -1.4,1 -2.4,2.3 -2.9,2.9 -0.4,0.5 -1,1.3 -1.6,2.3 -0.2,0.3 -0.3,0.6 -0.5,0.8 -0.2,0.2 -0.3,0.5 -0.4,0.7 -1.1,3.3 -2.5,6.6 -2,9.7 v 0.9 c 0,0.3 0,0.6 -0.1,0.9 -0.9,1.7 1.3,1.3 1.7,2.8 0.4,1.8 0,3.3 -0.1,5.1 -0.1,0.3 -0.1,0.6 -0.2,0.8 -0.8,2.6 -2,3.6 -2,3.6 -0.2,0.2 -0.8,0.8 -1.5,1.2 -0.2,0.1 -0.5,0.3 -0.8,0.4 -4.2,1.3 -6,-3.5 -6.9,-6.5 -0.1,-0.3 -0.2,-0.7 -0.2,-1 -0.2,-1.4 -0.2,-2.8 0.5,-3.6 0.2,-0.2 0.4,-0.3 0.5,-0.4 0.2,-0.1 0.3,-0.3 0.4,-0.5 -1.4,-4.5 -0.3,-8.6 0.2,-12.8 0,-0.3 0.1,-0.6 0.1,-0.9 0.3,-2.1 0.3,-2.6 1.2,-4.6 0.3,-0.7 1.3,-3.7 4,-6.4 4.8,-4.7 8.2,-4.4 11.1,-4.6 z" class="skin penis" sodipodi:nodetypes="cccccccsccsccccccccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Flaccid_3.tw b/src/art/vector_revamp/layers/Flaccid_3.tw new file mode 100644 index 0000000000000000000000000000000000000000..9f70e71fa681ef16889257cd86bd5c2241e7f6cc --- /dev/null +++ b/src/art/vector_revamp/layers/Flaccid_3.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Flaccid_3 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 269.6625,486.0125 c 0.1,0.2 0.6,0.4 1.1,0.6 4,0.4 4,6.4 3.2,10.1 -0.1,0.3 -0.2,0.7 -0.2,1 -1.2,4.5 -3.2,6.3 -3.2,6.3 -0.4,0.4 -1.8,1.8 -3.5,2.5 -0.4,0.2 -0.9,0.3 -1.4,0.3 -5.8,-0.2 -8.4,-5.7 -9.2,-10.6 -0.1,-0.5 -0.2,-1 -0.3,-1.6 -0.4,-2.2 -0.3,-4.4 0.8,-5.7 0.3,-0.3 0.6,-0.5 0.8,-0.7 0.3,-0.2 0.5,-0.4 0.6,-0.8" id="path8-62" sodipodi:nodetypes="cccccccccccc"/><path d="m 257.1625,479.7125 c 0,-0.7 0,-1.8 0.1,-3 0,-0.6 0.2,-3 0.7,-6.6 0.3,-2.1 0.6,-3.7 0.7,-4.1 2.2,-10.8 10,-16.3 10,-16.3 0.9,-0.7 2.9,-1.9 3.8,-2.6 1.8,-1.1 7.2,-3.6 14.6,-1.3 1.1,0.3 8.5,3.5 9.7,5.5 1.5,2.5 -1,-1.6 -1.5,-1.1 -0.2,0.2 -0.7,0.5 -1.2,1.2 -0.6,0.8 -0.9,1.6 -1,1.9 -0.6,1.3 -2.1,1.7 -4.3,2.6 -2.8,1.1 -4.6,1.9 -6.4,3.2 -1.3,1 -2.2,2 -3.9,4.2 -1.5,1.9 -2.4,2.9 -3.2,4.7 -0.3,0.5 -0.7,1.7 -1.5,4.1 -0.5,1.4 -0.7,2.1 -0.9,2.8 -0.4,1.3 -0.6,2.4 -0.7,3.1 -0.5,1.9 -1.7,5.5 -4.9,8.4 -1.6,1.4 -3.6,3.3 -5.6,2.8 -3.6,-0.9 -4.4,-8.9 -4.5,-9.5 z" id="path10-9" sodipodi:nodetypes="cccccccssccccccccccsc"/><path class="skin penis" d="m 282.6625,445.5125 c 3.9,-0.2 12.6,2.5 14.1,5.8 1.3,2.8 0.6,-0.9 -1.4,1.6 -1.2,0.5 -3,1.3 -5.4,2.3 -5.2,2.1 -6.2,2.3 -8.1,3.7 -2,1.5 -3.5,3.3 -4.2,4.2 -0.6,0.8 -1.5,1.9 -2.3,3.3 -0.3,0.4 -0.5,0.8 -0.7,1.2 -0.2,0.4 -0.4,0.7 -0.5,1 -1.5,4.8 -3.7,9.6 -2.9,14.1 v 1.3 c 0,0.4 0,0.9 -0.1,1.3 -1.2,2.4 1.9,1.9 2.5,4 0.5,2.7 0,4.8 -0.2,7.4 l -0.3,1.2 c -1.2,3.7 -2.9,5.3 -2.9,5.3 -0.3,0.3 -1.1,1.1 -2.2,1.7 -0.3,0.2 -0.7,0.4 -1.1,0.6 -6,1.9 -8.7,-5 -10,-9.4 l -0.3,-1.5 c -0.3,-2 -0.3,-4.1 0.8,-5.2 0.3,-0.3 0.5,-0.4 0.8,-0.6 0.2,-0.2 0.4,-0.4 0.6,-0.8 -2,-6.5 -0.4,-12.4 0.3,-18.5 0.1,-0.5 0.1,-0.9 0.2,-1.3 0.5,-3 0.4,-3.8 1.7,-6.6 0.5,-1.1 1.9,-5.3 5.8,-9.3 6.6,-6.9 11.6,-6.6 15.8,-6.8 z" id="path12" sodipodi:nodetypes="cccccccsccscccccccccsccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Flaccid_4.tw b/src/art/vector_revamp/layers/Flaccid_4.tw new file mode 100644 index 0000000000000000000000000000000000000000..645233116e76bb2aa0e794a50a6e6ca4c06b127a --- /dev/null +++ b/src/art/vector_revamp/layers/Flaccid_4.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Flaccid_4 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path6-1" d="m 262.35248,496.07062 c 0.1,0.3 0.7,0.5 1.4,0.7 5.2,0.5 5.2,8.1 4.1,12.9 -0.1,0.4 -0.2,0.9 -0.3,1.3 -1.6,5.7 -4.1,8.1 -4.1,8.1 -0.5,0.5 -2.3,2.3 -4.5,3.1 -0.6,0.2 -1.1,0.4 -1.8,0.4 -7.4,-0.3 -10.7,-7.2 -11.7,-13.5 -0.2,-0.7 -0.3,-1.3 -0.4,-2 -0.5,-2.8 -0.4,-5.7 1,-7.3 0.3,-0.4 0.7,-0.6 1,-0.9 0.3,-0.3 0.6,-0.6 0.8,-1.1" sodipodi:nodetypes="ccccccccccsc"/><path id="path8-2" d="m 246.45248,488.07062 c 0,-0.9 0,-2.3 0.1,-3.9 0,-0.8 0.2,-3.9 0.9,-8.4 0.4,-2.6 0.8,-4.7 0.9,-5.2 2.8,-13.8 12.7,-20.7 12.7,-20.8 1.1,-0.9 3.7,-2.4 4.8,-3.3 2.2,-1.4 9.1,-4.6 18.7,-1.7 1.4,0.4 10.9,4.4 12.4,7 1.9,3.2 -1.2,-2.1 -1.9,-1.4 -0.3,0.3 -0.8,0.7 -1.5,1.5 -0.8,1.1 -1.1,2 -1.3,2.4 -0.8,1.7 -2.7,2.2 -5.5,3.4 -3.6,1.4 -5.9,2.4 -8.1,4 -1.6,1.2 -2.8,2.6 -5,5.3 -2,2.4 -3.1,3.8 -4.1,6 -0.3,0.7 -0.9,2.2 -2,5.2 -0.7,1.8 -0.9,2.6 -1.2,3.5 -0.5,1.6 -0.8,3 -0.9,4 -0.6,2.4 -2.1,7 -6.2,10.7 -2,1.8 -4.6,4.3 -7.1,3.6 -4.6,-1 -5.6,-11.2 -5.7,-11.9 z" sodipodi:nodetypes="ccccccccscccccccccccc"/><path id="path10-70" d="m 278.85248,444.47062 c 5,-0.3 16,3.1 18,7.4 1.6,3.5 0.7,-1.2 -1.7,2 -1.5,0.7 -3.9,1.7 -6.8,2.9 -6.6,2.7 -7.9,2.9 -10.3,4.7 -2.6,1.9 -4.4,4.2 -5.4,5.4 -0.8,1 -1.9,2.4 -3,4.2 l -0.9,1.5 c -0.3,0.5 -0.5,0.9 -0.7,1.3 -2,6.1 -4.7,12.2 -3.6,18 v 1.7 c 0,0.6 -0.1,1.1 -0.1,1.7 -1.6,3.1 2.5,2.4 3.1,5.1 0.7,3.4 0,6.1 -0.3,9.4 -0.1,0.5 -0.3,1 -0.4,1.5 -1.5,4.7 -3.7,6.7 -3.7,6.7 -0.4,0.4 -1.4,1.4 -2.8,2.2 -0.4,0.3 -0.9,0.5 -1.4,0.7 -7.7,2.4 -11.1,-6.4 -12.8,-12 -0.2,-0.6 -0.3,-1.2 -0.4,-1.9 -0.4,-2.5 -0.4,-5.2 1,-6.7 0.3,-0.3 0.7,-0.6 1,-0.8 0.3,-0.2 0.6,-0.5 0.7,-1 -2.6,-8.3 -0.6,-15.8 0.4,-23.6 0.1,-0.6 0.2,-1.1 0.3,-1.7 0.6,-3.8 0.5,-4.8 2.1,-8.4 0.6,-1.3 2.4,-6.8 7.4,-11.8 8.6,-8.7 15,-8.2 20.3,-8.5 z" class="skin penis" sodipodi:nodetypes="cccccccsccsccccccccccscccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Flaccid_5.tw b/src/art/vector_revamp/layers/Flaccid_5.tw new file mode 100644 index 0000000000000000000000000000000000000000..af1cbadfc473b69cab382253556d51207a256ce3 --- /dev/null +++ b/src/art/vector_revamp/layers/Flaccid_5.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Flaccid_5 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 248.15,510.825 c 0.1,0.4 1,0.7 1.8,0.9 6.7,0.6 6.7,10.6 5.3,16.7 -0.1,0.6 -0.3,1.1 -0.4,1.7 -2.1,7.4 -5.3,10.5 -5.3,10.5 -0.6,0.6 -2.9,3 -5.9,4.1 -0.7,0.3 -1.5,0.5 -2.3,0.6 -9.6,-0.4 -13.9,-9.4 -15.2,-17.5 -0.2,-0.8 -0.4,-1.7 -0.6,-2.6 -0.6,-3.6 -0.5,-7.4 1.3,-9.4 0.4,-0.5 0.9,-0.8 1.3,-1.1 0.4,-0.4 0.8,-0.7 1,-1.4" id="path7" sodipodi:nodetypes="cccccccccccc"/><path d="m 227.45,500.425 c 0,-1.2 0,-2.9 0.1,-5.1 0.1,-1.1 0.3,-5 1.1,-10.9 0.5,-3.4 1,-6.1 1.1,-6.7 3.6,-17.9 16.5,-26.9 16.5,-27 1.4,-1.2 4.8,-3.2 6.2,-4.3 2.9,-1.8 11.9,-6 24.2,-2.2 1.8,0.5 14.1,5.8 16.1,9.1 2.5,4.2 -1.6,-2.7 -2.5,-1.8 -0.4,0.4 -1.1,0.9 -1.9,2 -1.1,1.4 -1.5,2.6 -1.7,3.1 -1,2.2 -3.5,2.9 -7.2,4.4 -4.7,1.9 -7.7,3.1 -10.6,5.3 -2.1,1.6 -3.6,3.4 -6.5,6.9 -2.6,3.1 -4,4.9 -5.3,7.8 -0.4,0.9 -1.1,2.8 -2.6,6.7 -0.9,2.4 -1.2,3.4 -1.6,4.6 -0.6,2.1 -1,3.9 -1.2,5.2 -0.8,3.1 -2.8,9.1 -8,14 -2.6,2.4 -6,5.5 -9.3,4.6 -5.4,-1.5 -6.8,-14.7 -6.9,-15.7 z" id="path9" sodipodi:nodetypes="ccccccccscccccccccccc"/><path class="skin penis" d="m 269.65,443.725 c 6.5,-0.4 20.8,4.1 23.4,9.6 2.1,4.6 1,-1.5 -2.3,2.6 -1.9,0.8 -5,2.2 -8.9,3.7 -8.6,3.5 -10.3,3.8 -13.4,6.1 -3.3,2.5 -5.7,5.5 -7,7 -1.1,1.3 -2.5,3.2 -3.9,5.5 -0.4,0.7 -0.8,1.4 -1.1,2 -0.3,0.6 -0.6,1.2 -0.9,1.7 -2.6,7.9 -6.1,15.8 -4.7,23.3 v 2.2 c 0,0.7 -0.1,1.4 -0.2,2.2 -2.1,4 3.2,3.1 4.1,6.6 0.9,4.4 0,7.9 -0.3,12.3 -0.2,0.7 -0.4,1.3 -0.6,1.9 -2,6.1 -4.8,8.7 -4.8,8.7 -0.6,0.5 -1.9,1.8 -3.6,2.9 -0.6,0.3 -1.2,0.7 -1.8,0.9 -10,3.1 -14.4,-8.3 -16.6,-15.6 -0.2,-0.8 -0.4,-1.6 -0.5,-2.4 -0.6,-3.3 -0.5,-6.8 1.3,-8.7 0.4,-0.4 0.9,-0.7 1.3,-1.1 0.4,-0.3 0.7,-0.7 0.9,-1.3 -3.4,-10.8 -0.7,-20.5 0.5,-30.7 0.1,-0.8 0.2,-1.5 0.3,-2.2 0.8,-4.9 0.7,-6.3 2.8,-10.9 0.8,-1.8 3.1,-8.8 9.7,-15.3 11.1,-11.2 19.3,-10.6 26.3,-11 z" id="path11" sodipodi:nodetypes="cccccccsccsccccccccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Flaccid_6.tw b/src/art/vector_revamp/layers/Flaccid_6.tw new file mode 100644 index 0000000000000000000000000000000000000000..96c762dbe5694d0d3f144b76bf4a94bc5e656105 --- /dev/null +++ b/src/art/vector_revamp/layers/Flaccid_6.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Flaccid_6 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 238.2,524.475 c 0.2,0.4 1.2,0.8 2.3,1.2 8.3,0.8 8.3,13 6.5,20.7 -0.2,0.7 -0.3,1.4 -0.5,2 -2.5,9.1 -6.6,13 -6.6,13 -0.8,0.8 -3.6,3.6 -7.2,5 -0.9,0.3 -1.8,0.6 -2.8,0.7 -11.9,-0.4 -17.2,-11.6 -18.7,-21.6 -0.3,-1 -0.5,-2.1 -0.7,-3.2 -0.8,-4.4 -0.7,-9.1 1.7,-11.7 0.5,-0.6 1.1,-1 1.7,-1.4 0.5,-0.4 1,-0.9 1.2,-1.7" id="path7-6" sodipodi:nodetypes="ccccccccsccc"/><path d="m 212.7,511.675 c 0,-1.5 0,-3.6 0.2,-6.2 0.1,-1.3 0.3,-6.2 1.4,-13.5 0.6,-4.2 1.2,-7.5 1.4,-8.3 4.3,-22.1 20.3,-33.3 20.3,-33.3 1.8,-1.4 5.9,-3.9 7.7,-5.3 3.6,-2.3 14.6,-7.4 29.9,-2.7 2.2,0.7 17.4,7.1 19.9,11.2 3.1,5.2 -1.9,-3.3 -3.1,-2.2 -0.5,0.4 -1.3,1.1 -2.4,2.4 -1.3,1.7 -1.8,3.2 -2.1,3.9 -1.2,2.7 -4.3,3.6 -8.9,5.4 -5.8,2.3 -9.4,3.8 -13,6.5 -2.6,2 -4.4,4.2 -8,8.6 -3.1,3.9 -4.9,6 -6.6,9.6 -0.5,1.1 -1.4,3.5 -3.2,8.3 -1.1,3 -1.5,4.2 -1.9,5.7 -0.8,2.6 -1.2,4.8 -1.5,6.4 -1,3.9 -3.4,11.2 -9.9,17.2 -3.2,2.9 -7.3,6.8 -11.4,5.7 -7.1,-1.9 -8.7,-18.2 -8.8,-19.4 z" id="path9-0" sodipodi:nodetypes="csccccccccccccccccccc"/><path class="skin penis" d="m 264.7,441.675 c 8,-0.5 25.7,5 28.8,11.9 2.6,5.6 1.2,-1.9 -2.8,3.3 -2.4,1 -6.2,2.7 -10.9,4.6 -10.6,4.3 -12.7,4.7 -16.5,7.5 -4.1,3.1 -7.1,6.7 -8.7,8.7 -1.3,1.6 -3,3.9 -4.8,6.8 -0.5,0.9 -1,1.7 -1.4,2.4 -0.4,0.8 -0.8,1.5 -1.1,2.1 -3.2,9.8 -7.5,19.5 -5.8,28.8 v 2.7 c 0,0.9 -0.1,1.8 -0.2,2.7 -2.5,4.9 4,3.8 5,8.2 1.1,5.4 0,9.8 -0.4,15.1 -0.2,0.8 -0.4,1.6 -0.7,2.4 -2.4,7.5 -5.9,10.8 -5.9,10.8 -0.7,0.7 -2.3,2.3 -4.4,3.6 -0.7,0.4 -1.5,0.8 -2.3,1.1 -12.3,3.9 -17.8,-10.2 -20.5,-19.3 -0.2,-1 -0.5,-2 -0.7,-3 -0.7,-4.1 -0.6,-8.3 1.6,-10.7 0.5,-0.6 1.1,-0.9 1.6,-1.3 0.5,-0.4 0.9,-0.8 1.1,-1.6 -4.2,-13.4 -0.9,-25.3 0.7,-37.9 0.1,-0.9 0.3,-1.8 0.4,-2.7 1,-6.1 0.9,-7.7 3.4,-13.5 1,-2.2 3.9,-10.8 11.9,-18.9 13.9,-14 24,-13.3 32.6,-13.8 z" id="path11-6" sodipodi:nodetypes="ccccccccccsccccccccccscccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Glasses.tw b/src/art/vector_revamp/layers/Glasses.tw new file mode 100644 index 0000000000000000000000000000000000000000..58dc928038fa9c901024535bcf97171baa6fb461 --- /dev/null +++ b/src/art/vector_revamp/layers/Glasses.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Glasses [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path class="glasses" d="m 263.69962,134.32933 c -0.0223,1.17276 0.2728,5.95704 1.9373,7.41 1.64409,1.33977 5.69174,1.26671 10.28071,0.7898 5.04176,-0.55856 7.66562,-0.91484 9.00537,-2.55894 1.7313,-2.06531 1.42698,-7.54917 1.14121,-9.13387 1.01873,-0.18372 1.92428,-0.34702 2.92261,-0.64391 1.13194,-0.20413 2.15068,-0.38784 3.16942,-0.57154 -0.0334,1.75914 0.23938,7.71618 2.70552,9.72582 1.08925,0.85544 2.8985,1.8148 13.13787,-0.3823 12.27685,-2.5645 13.66856,-4.56858 14.05081,-5.68939 0.87772,-2.26202 -0.0241,-7.17061 -0.78309,-8.78686 6.45204,-1.1635 12.88364,-2.44019 19.33566,-3.60368 l 0.42866,2.37706 -17.67859,3.07111 c 0.35816,1.3379 0.70515,5.76219 -0.12056,7.66422 -0.47504,1.25441 -2.0319,3.6389 -14.80235,6.05866 -11.16533,2.2472 -13.26218,0.98908 -14.37186,0.0204 -1.93171,-1.63851 -2.49398,-6.60836 -2.57378,-8.34709 -1.01872,0.18371 -3.0562,0.55114 -4.07495,0.73484 0.11132,1.26554 0.1596,5.97746 -1.13934,7.84794 -1.59771,2.1581 -4.44794,2.55521 -10.05565,3.21583 -4.92857,0.53814 -9.29539,0.78561 -11.00071,-0.89372 -1.26369,-1.17462 -1.56988,-5.37253 -1.64039,-6.41167 0.0316,-0.47318 0.0427,-1.05957 0.12613,-1.89275 z" id="path654" sodipodi:nodetypes="ccccccccccccccccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Hair_Back.tw b/src/art/vector_revamp/layers/Hair_Back.tw new file mode 100644 index 0000000000000000000000000000000000000000..2af086c80550e1b6feca56f5f25a45f6e1ba413d --- /dev/null +++ b/src/art/vector_revamp/layers/Hair_Back.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Hair_Back [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"inkscape:label="Hair_Back_Messy" style="display:inline;opacity:1" id="Hair_Back_Messy" inkscape:groupmode="layer"><path d="m 344.30213,163.49241 c -0.62532,-4.17031 -0.84807,-3.85928 -0.84705,-3.85979 0.0498,-0.0207 0.91983,3.55309 -2.00341,13.67755 0.2185,-4.91233 -0.45712,-7.08344 -0.43108,-7.08865 -0.57955,2.40428 -1.35935,4.80856 -2.10785,7.21284 -0.0209,0.003 -0.92981,-8.71701 -2.48909,-12.11531 -0.0451,12.50339 -4.62485,11.13036 -8.58845,27.84975 -1.13435,-9.03155 -3.32768,-17.57687 -10.9138,-21.79354 -0.67059,9.21684 -3.43836,18.7832 -5.79902,28.2989 -0.2739,-7.66902 -0.6167,-15.04148 -4.25842,-22.3501 -3.63359,11.75353 -2.84586,21.92003 -3.55767,32.63108 -7.97552,-10.84968 -12.35861,-24.22774 -12.18158,-24.31625 0.0152,0 -1.23598,5.00437 -0.50282,13.32661 -5.01363,-8.99968 -8.64441,-18.1795 -8.60106,-18.19684 0.0244,0.0105 0.44784,4.73472 1.82794,10.06693 -3.04966,-2.91491 -3.03295,-4.22634 -4.02795,-6.07813 -0.0681,-0.0119 0.66962,1.29253 1.4644,5.41992 -7.34076,-12.23961 -8.43093,-12.67841 -11.0848,-22.97368 0.70411,9.55503 -0.008,7.29224 1.48892,16.46521 -11.9477,-26.61774 -45.88518,-98.846887 12.60533,-112.069623 81.94109,-21.019875 64.37946,92.935353 60.00746,95.893123 z" class="shadow" id="path1690" sodipodi:nodetypes="ccccccccccccccccccccc"/><path sodipodi:nodetypes="ccccccccccccccccccccc" id="path1692" class="hair" d="m 344.30213,163.49241 c -0.40157,-4.28218 -0.84705,-3.85979 -0.84705,-3.85979 0,0 0.64803,3.66634 -2.00341,13.67755 0.32859,-4.93435 -0.43108,-7.08865 -0.43108,-7.08865 l -2.10785,7.21284 c 0,0 -0.79146,-8.74007 -2.48909,-12.11531 -0.23337,12.44063 -4.62485,11.13036 -8.58845,27.84975 -1.07895,-9.03946 -3.11201,-17.60768 -10.9138,-21.79354 -0.8598,9.1853 -3.47853,18.77651 -5.79902,28.2989 -0.25695,-7.6775 -0.41188,-15.14389 -4.25842,-22.3501 -3.89213,11.6889 -2.88905,21.90923 -3.55767,32.63108 -7.81949,-10.9277 -12.18158,-24.31625 -12.18158,-24.31625 0,0 -1.51657,5.00437 -0.50282,13.32661 -4.86186,-9.06039 -8.60106,-18.19684 -8.60106,-18.19684 0,0 0.21265,4.63393 1.82794,10.06693 -2.9014,-2.97845 -2.88956,-4.28779 -4.02795,-6.07813 -0.0727,-0.008 0.44773,1.47744 1.4644,5.41992 -7.11313,-12.29652 -8.33772,-12.70171 -11.0848,-22.97368 0.52476,9.52514 -0.0641,7.28281 1.48892,16.46521 -11.31512,-26.61774 -45.10202,-98.846887 12.60533,-112.069623 81.43385,-20.018738 63.40041,92.478433 60.00746,95.893123 z"/></g><g transform="'+_art_transform+'"inkscape:groupmode="layer" id="Hair_Back_Neat" style="display:inline;opacity:1" inkscape:label="Hair_Back_Neat"><path sodipodi:nodetypes="ccccccc" id="path1713" class="shadow" d="m 341.03176,163.49241 c -19.2084,3.76854 -55.46085,5.32927 -62.59166,5.9475 -0.37549,-0.64869 -1.20645,-1.35626 -1.76009,-2.17128 0.32341,0.92552 0.56958,1.85103 0.27442,2.77655 -3.93849,0.62454 -6.85101,1.92929 -8.52918,3.06294 -0.25176,0.036 -45.53604,-90.431971 14.01326,-103.917842 83.39811,-21.246401 59.1124,93.977662 58.59325,94.302132 z"/><path d="m 341.03176,163.49241 c -19.8314,2.62637 -55.8227,4.66587 -62.59166,5.9475 -0.22535,-0.72376 -1.02392,-1.44752 -1.76009,-2.17128 0.18666,0.92552 0.37515,1.85103 0.27442,2.77655 -4.02517,0.30673 -6.88398,1.80839 -8.52918,3.06294 0,0 -43.69409,-90.695106 14.01326,-103.917842 81.43385,-20.018738 58.59325,94.302132 58.59325,94.302132 z" class="hair" id="path1701" sodipodi:nodetypes="ccccccc"/></g><g transform="'+_art_transform+'"inkscape:label="Hair_Back_Bun" style="display:inline;opacity:1" id="Hair_Back_Bun" inkscape:groupmode="layer"><path d="M 296.71866,97.884396 C 286.62945,93.731299 283.972,75.602879 290.47374,64.267699 c 1.06126,-1.488966 4.23728,-3.124406 5.72445,-3.710227 -2.35642,0.482976 -3.54454,1.648735 -4.72615,2.784184 0.77444,-1.299041 1.45583,-3.097836 2.74335,-4.040515 2.80838,-2.798392 7.16974,-4.230205 11.96353,-4.543065 0.56185,-0.107968 9.03448,1.273229 11.87926,3.134681 -2.74807,-1.492501 -2.76361,-1.590076 -9.61963,-2.624171 7.48004,-0.931009 15.28704,1.245206 19.89921,5.460526 0.51267,0.343212 2.822,6.647219 2.72946,8.268796 -0.039,-3.284796 -1.13244,-3.890602 -2.12126,-6.785416 0.93515,1.079939 3.07758,3.249382 3.13102,4.345403 0.8369,2.441445 0.93832,5.062021 -0.0999,7.77625 -2.70733,4.735086 -3.7116,4.633021 -4.98227,5.831302 1.64782,-1.132067 0.84177,0.461309 4.37899,-4.965447 -4.53587,12.907106 -23.29612,27.36021 -34.65518,22.684396 z" class="shadow" id="path1741" sodipodi:nodetypes="ccccccccccccccccc"/><path d="m 310.87721,68.488317 c 10.1863,-7.245453 12.24126,-7.224029 26.97186,-9.809734 -16.89829,2.457319 -18.17225,3.08713 -26.97186,9.809734 z" class="shadow" id="XMLID_511_-3-7" sodipodi:nodetypes="ccc"/><path d="m 279.77204,58.955442 c 12.67434,5.067335 12.86761,3.661959 22.80256,14.310729 -10.71271,-12.157113 -11.92773,-9.7917 -22.80256,-14.310729 z" class="shadow" id="XMLID_511_-3-7-9-2" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccccccccccccccccc" id="path1723" class="hair" d="m 296.71866,97.884396 c -10.08921,-4.153097 -11.81523,-22.813762 -6.24492,-33.616697 1.16248,-1.416668 4.42234,-2.992223 5.72445,-3.710227 -2.44978,0.401284 -3.6173,1.585068 -4.72615,2.784184 0.82352,-1.299041 1.67526,-3.097836 2.74335,-4.040515 2.92758,-2.583827 7.25788,-4.071558 11.96353,-4.543065 0.47945,-0.04804 8.80774,1.438134 11.87926,3.134681 -2.61824,-1.564626 -2.62829,-1.665252 -9.61963,-2.624171 7.32849,-0.198526 15.28103,1.274271 19.89921,5.460526 0.42165,0.38222 2.70735,6.696353 2.72946,8.268796 0.024,-3.31386 -0.8434,-4.024003 -2.12126,-6.785416 0.67256,1.006996 2.80985,3.175014 3.13102,4.345403 0.67491,2.459444 0.58563,5.101208 -0.0999,7.77625 -2.63759,4.130641 -3.70202,4.549966 -4.98227,5.831302 1.66962,-1.132067 1.13339,0.461309 4.37899,-4.965447 -5.25261,12.907106 -23.29612,27.36021 -34.65518,22.684396 z"/><path d="M 278.80443,65.57968 C 291.33509,64.374918 299.36183,64.004629 309.12,75.338409 298.3631,62.076442 290.67639,64.763461 278.80443,65.57968 Z" class="shadow" id="XMLID_511_-3-7-9" sodipodi:nodetypes="ccc"/><path d="m 307.43125,70.468741 c 12.46875,-0.8875 14.2125,0.2 28.1375,5.65625 -15.70937,-6.69375 -17.125,-6.81875 -28.1375,-5.65625 z" class="shadow" id="XMLID_511_-3" sodipodi:nodetypes="ccc"/><path d="m 292.11448,52.614564 c 5.39719,1.130155 5.37584,0.557465 10.07327,4.099903 -5.11234,-4.088212 -5.43041,-3.062107 -10.07327,-4.099903 z" class="shadow" id="XMLID_511_-3-7-9-2-1" sodipodi:nodetypes="ccc"/><path d="m 316.86102,58.888871 c 4.73564,-2.824995 4.33197,-3.231786 10.18708,-3.808323 -6.53004,0.45616 -6.06887,1.426409 -10.18708,3.808323 z" class="shadow" id="XMLID_511_-3-7-9-2-1-7" sodipodi:nodetypes="ccc"/></g></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Hair_Back_Bun.tw b/src/art/vector_revamp/layers/Hair_Back_Bun.tw new file mode 100644 index 0000000000000000000000000000000000000000..ab78fbbfe125c765c5c707c1bc27879b01f1f887 --- /dev/null +++ b/src/art/vector_revamp/layers/Hair_Back_Bun.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Hair_Back_Bun [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="M 296.71866,97.884396 C 286.62945,93.731299 283.972,75.602879 290.47374,64.267699 c 1.06126,-1.488966 4.23728,-3.124406 5.72445,-3.710227 -2.35642,0.482976 -3.54454,1.648735 -4.72615,2.784184 0.77444,-1.299041 1.45583,-3.097836 2.74335,-4.040515 2.80838,-2.798392 7.16974,-4.230205 11.96353,-4.543065 0.56185,-0.107968 9.03448,1.273229 11.87926,3.134681 -2.74807,-1.492501 -2.76361,-1.590076 -9.61963,-2.624171 7.48004,-0.931009 15.28704,1.245206 19.89921,5.460526 0.51267,0.343212 2.822,6.647219 2.72946,8.268796 -0.039,-3.284796 -1.13244,-3.890602 -2.12126,-6.785416 0.93515,1.079939 3.07758,3.249382 3.13102,4.345403 0.8369,2.441445 0.93832,5.062021 -0.0999,7.77625 -2.70733,4.735086 -3.7116,4.633021 -4.98227,5.831302 1.64782,-1.132067 0.84177,0.461309 4.37899,-4.965447 -4.53587,12.907106 -23.29612,27.36021 -34.65518,22.684396 z" class="shadow" id="path1741" sodipodi:nodetypes="ccccccccccccccccc"/><path d="m 310.87721,68.488317 c 10.1863,-7.245453 12.24126,-7.224029 26.97186,-9.809734 -16.89829,2.457319 -18.17225,3.08713 -26.97186,9.809734 z" class="shadow" id="XMLID_511_-3-7" sodipodi:nodetypes="ccc"/><path d="m 279.77204,58.955442 c 12.67434,5.067335 12.86761,3.661959 22.80256,14.310729 -10.71271,-12.157113 -11.92773,-9.7917 -22.80256,-14.310729 z" class="shadow" id="XMLID_511_-3-7-9-2" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccccccccccccccccc" id="path1723" class="hair" d="m 296.71866,97.884396 c -10.08921,-4.153097 -11.81523,-22.813762 -6.24492,-33.616697 1.16248,-1.416668 4.42234,-2.992223 5.72445,-3.710227 -2.44978,0.401284 -3.6173,1.585068 -4.72615,2.784184 0.82352,-1.299041 1.67526,-3.097836 2.74335,-4.040515 2.92758,-2.583827 7.25788,-4.071558 11.96353,-4.543065 0.47945,-0.04804 8.80774,1.438134 11.87926,3.134681 -2.61824,-1.564626 -2.62829,-1.665252 -9.61963,-2.624171 7.32849,-0.198526 15.28103,1.274271 19.89921,5.460526 0.42165,0.38222 2.70735,6.696353 2.72946,8.268796 0.024,-3.31386 -0.8434,-4.024003 -2.12126,-6.785416 0.67256,1.006996 2.80985,3.175014 3.13102,4.345403 0.67491,2.459444 0.58563,5.101208 -0.0999,7.77625 -2.63759,4.130641 -3.70202,4.549966 -4.98227,5.831302 1.66962,-1.132067 1.13339,0.461309 4.37899,-4.965447 -5.25261,12.907106 -23.29612,27.36021 -34.65518,22.684396 z"/><path d="M 278.80443,65.57968 C 291.33509,64.374918 299.36183,64.004629 309.12,75.338409 298.3631,62.076442 290.67639,64.763461 278.80443,65.57968 Z" class="shadow" id="XMLID_511_-3-7-9" sodipodi:nodetypes="ccc"/><path d="m 307.43125,70.468741 c 12.46875,-0.8875 14.2125,0.2 28.1375,5.65625 -15.70937,-6.69375 -17.125,-6.81875 -28.1375,-5.65625 z" class="shadow" id="XMLID_511_-3" sodipodi:nodetypes="ccc"/><path d="m 292.11448,52.614564 c 5.39719,1.130155 5.37584,0.557465 10.07327,4.099903 -5.11234,-4.088212 -5.43041,-3.062107 -10.07327,-4.099903 z" class="shadow" id="XMLID_511_-3-7-9-2-1" sodipodi:nodetypes="ccc"/><path d="m 316.86102,58.888871 c 4.73564,-2.824995 4.33197,-3.231786 10.18708,-3.808323 -6.53004,0.45616 -6.06887,1.426409 -10.18708,3.808323 z" class="shadow" id="XMLID_511_-3-7-9-2-1-7" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Hair_Back_Messy.tw b/src/art/vector_revamp/layers/Hair_Back_Messy.tw new file mode 100644 index 0000000000000000000000000000000000000000..c231995065e2dbbb3c206b10a420a672136c5a26 --- /dev/null +++ b/src/art/vector_revamp/layers/Hair_Back_Messy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Hair_Back_Messy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 344.30213,163.49241 c -0.62532,-4.17031 -0.84807,-3.85928 -0.84705,-3.85979 0.0498,-0.0207 0.91983,3.55309 -2.00341,13.67755 0.2185,-4.91233 -0.45712,-7.08344 -0.43108,-7.08865 -0.57955,2.40428 -1.35935,4.80856 -2.10785,7.21284 -0.0209,0.003 -0.92981,-8.71701 -2.48909,-12.11531 -0.0451,12.50339 -4.62485,11.13036 -8.58845,27.84975 -1.13435,-9.03155 -3.32768,-17.57687 -10.9138,-21.79354 -0.67059,9.21684 -3.43836,18.7832 -5.79902,28.2989 -0.2739,-7.66902 -0.6167,-15.04148 -4.25842,-22.3501 -3.63359,11.75353 -2.84586,21.92003 -3.55767,32.63108 -7.97552,-10.84968 -12.35861,-24.22774 -12.18158,-24.31625 0.0152,0 -1.23598,5.00437 -0.50282,13.32661 -5.01363,-8.99968 -8.64441,-18.1795 -8.60106,-18.19684 0.0244,0.0105 0.44784,4.73472 1.82794,10.06693 -3.04966,-2.91491 -3.03295,-4.22634 -4.02795,-6.07813 -0.0681,-0.0119 0.66962,1.29253 1.4644,5.41992 -7.34076,-12.23961 -8.43093,-12.67841 -11.0848,-22.97368 0.70411,9.55503 -0.008,7.29224 1.48892,16.46521 -11.9477,-26.61774 -45.88518,-98.846887 12.60533,-112.069623 81.94109,-21.019875 64.37946,92.935353 60.00746,95.893123 z" class="shadow" id="path1690" sodipodi:nodetypes="ccccccccccccccccccccc"/><path sodipodi:nodetypes="ccccccccccccccccccccc" id="path1692" class="hair" d="m 344.30213,163.49241 c -0.40157,-4.28218 -0.84705,-3.85979 -0.84705,-3.85979 0,0 0.64803,3.66634 -2.00341,13.67755 0.32859,-4.93435 -0.43108,-7.08865 -0.43108,-7.08865 l -2.10785,7.21284 c 0,0 -0.79146,-8.74007 -2.48909,-12.11531 -0.23337,12.44063 -4.62485,11.13036 -8.58845,27.84975 -1.07895,-9.03946 -3.11201,-17.60768 -10.9138,-21.79354 -0.8598,9.1853 -3.47853,18.77651 -5.79902,28.2989 -0.25695,-7.6775 -0.41188,-15.14389 -4.25842,-22.3501 -3.89213,11.6889 -2.88905,21.90923 -3.55767,32.63108 -7.81949,-10.9277 -12.18158,-24.31625 -12.18158,-24.31625 0,0 -1.51657,5.00437 -0.50282,13.32661 -4.86186,-9.06039 -8.60106,-18.19684 -8.60106,-18.19684 0,0 0.21265,4.63393 1.82794,10.06693 -2.9014,-2.97845 -2.88956,-4.28779 -4.02795,-6.07813 -0.0727,-0.008 0.44773,1.47744 1.4644,5.41992 -7.11313,-12.29652 -8.33772,-12.70171 -11.0848,-22.97368 0.52476,9.52514 -0.0641,7.28281 1.48892,16.46521 -11.31512,-26.61774 -45.10202,-98.846887 12.60533,-112.069623 81.43385,-20.018738 63.40041,92.478433 60.00746,95.893123 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Hair_Back_Neat.tw b/src/art/vector_revamp/layers/Hair_Back_Neat.tw new file mode 100644 index 0000000000000000000000000000000000000000..af533aeef3cd0dd67d2b96d2f884be578008fcc0 --- /dev/null +++ b/src/art/vector_revamp/layers/Hair_Back_Neat.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Hair_Back_Neat [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccc" id="path1713" class="shadow" d="m 341.03176,163.49241 c -19.2084,3.76854 -55.46085,5.32927 -62.59166,5.9475 -0.37549,-0.64869 -1.20645,-1.35626 -1.76009,-2.17128 0.32341,0.92552 0.56958,1.85103 0.27442,2.77655 -3.93849,0.62454 -6.85101,1.92929 -8.52918,3.06294 -0.25176,0.036 -45.53604,-90.431971 14.01326,-103.917842 83.39811,-21.246401 59.1124,93.977662 58.59325,94.302132 z"/><path d="m 341.03176,163.49241 c -19.8314,2.62637 -55.8227,4.66587 -62.59166,5.9475 -0.22535,-0.72376 -1.02392,-1.44752 -1.76009,-2.17128 0.18666,0.92552 0.37515,1.85103 0.27442,2.77655 -4.02517,0.30673 -6.88398,1.80839 -8.52918,3.06294 0,0 -43.69409,-90.695106 14.01326,-103.917842 81.43385,-20.018738 58.59325,94.302132 58.59325,94.302132 z" class="hair" id="path1701" sodipodi:nodetypes="ccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Hair_Fore_Bun.tw b/src/art/vector_revamp/layers/Hair_Fore_Bun.tw new file mode 100644 index 0000000000000000000000000000000000000000..7f50fb72544ea5e9b9238739587727ebd4c53e54 --- /dev/null +++ b/src/art/vector_revamp/layers/Hair_Fore_Bun.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Hair_Fore_Bun [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 257.9291,106.09219 c -0.19133,-0.0554 -2.9316,20.06637 7.31403,35.72092 l 1.2243,1.66065 c -1.0829,-2.32949 -1.59392,-4.89291 -2.54128,-7.42183 0.59713,1.08477 1.16635,0.9431 1.767,1.00595 -0.78883,-1.50187 -1.95045,-2.87782 -2.33322,-4.64904 0.54248,0.17604 1.10893,0.40897 1.45152,-0.54409 -0.74503,-1.60123 -1.2827,-3.22443 -1.6482,-4.86777 0.4416,0.44485 0.15755,0.63606 0.87018,0.19913 -0.30577,-2.8814 -1.28828,-7.29117 -1.08235,-8.64893 0.30773,0.48617 0.61821,0.29966 0.98826,-0.31398 0.20896,-3.75337 0.35878,-7.18569 1.31829,-10.30654 -0.16645,1.41258 -0.19192,2.78556 0.74567,4.05426 0.31931,-2.93001 0.85793,-5.71643 1.92528,-8.06648 0.30682,1.20113 0.62632,2.40082 2.03109,3.21587 0.64977,-3.03472 1.62294,-5.75505 3.39306,-7.710822 0.18461,1.492342 0.70077,2.841392 2.32632,3.777832 0.56266,-2.63176 1.46593,-5.186218 3.35799,-7.648123 0.006,2.011255 1.18198,3.533641 2.99614,4.796803 0.31223,-1.741219 0.45261,-3.524766 1.5581,-5.087975 0.37974,1.56741 1.58666,2.715238 4.02664,3.242071 1.06483,-1.987104 1.90021,-4.047156 3.75035,-5.799213 0.0109,1.964078 1.76048,3.329215 4.48858,4.128202 1.48861,-1.509028 3.53959,-2.817938 3.67916,-4.808874 1.74996,1.119058 3.09148,2.551986 4.30027,4.108084 1.48646,-0.948679 2.60722,-2.044503 2.81784,-3.467529 0.96067,1.141819 1.93284,2.292258 2.38154,3.762186 1.73153,-0.465567 2.89407,-1.311757 3.03223,-2.832939 1.04024,1.093809 2.02314,2.257469 2.32609,4.150576 1.91739,-0.183832 2.181,-1.39483 2.46879,-2.543759 1.08375,1.444497 1.63528,3.120311 1.90186,4.92097 1.25184,0.21524 1.81967,-0.745651 1.97168,-2.072767 0.62613,1.627097 1.84433,2.771787 1.45372,5.479337 0.63533,-0.26651 1.26752,-0.57484 1.07086,-1.71862 0.43597,1.68689 1.24132,3.26727 1.14726,5.31687 0.48364,-0.47133 0.59389,-1.16629 0.39158,-2.09463 0.47434,1.74464 0.69999,3.36521 0.88175,5.03529 0.37208,-0.58229 0.79199,-1.07987 0.66618,-1.97567 -0.003,1.53244 0.10467,3.06487 0.22437,4.59731 0.42098,-0.59521 0.707,-1.21259 0.65467,-2.05091 0.24715,1.6627 0.17111,3.36068 0.1896,5.06453 0.0476,0.64638 0.24021,1.23834 0.45209,1.8231 0.47209,-0.45453 0.57369,-0.93775 0.52728,-1.43381 0.0586,1.55949 0.25949,3.05527 0.2042,4.59115 0.43847,-0.31761 0.40048,-0.77294 0.42885,-1.18558 0.15694,1.27396 0.19877,2.60743 0.2242,4.02794 0.30822,1.56352 0.7166,3.10199 1.19132,4.62388 0.26004,-0.52413 0.57333,-1.00033 0.63651,-1.70163 -0.0369,1.33702 -0.0838,2.67504 0.0816,3.99182 0.46088,1.51424 1.13046,2.88934 1.77109,4.28375 0.39524,-1.05136 0.8384,-2.08675 1.05646,-3.19717 11.90069,-21.27589 7.00195,-64.195469 -37.5191,-61.322495 -15.65245,-1.109698 -36.68517,5.581542 -38.54171,35.892695 z" class="shadow" id="path1728" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccc"/><path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccc" id="path1717" class="hair" d="m 257.9291,106.09219 c -0.007,0.006 -1.97567,20.38501 7.31403,35.72092 l 1.2243,1.66065 c -1.10711,-2.32949 -1.79314,-4.89291 -2.54128,-7.42183 0.62095,0.84654 1.184,0.76662 1.767,1.00595 -0.93454,-1.48366 -2.13701,-2.8545 -2.33322,-4.64904 0.52732,0.12299 1.04691,0.1919 1.45152,-0.54409 -0.88984,-1.58675 -1.5469,-3.19801 -1.6482,-4.86777 0.45664,0.29442 0.18353,0.37621 0.87018,0.19913 -0.52127,-2.6659 -1.42219,-7.15726 -1.08235,-8.64893 0.35307,0.36829 0.67669,0.14762 0.98826,-0.31398 0.025,-3.66975 0.33847,-7.17646 1.31829,-10.30654 -0.0544,1.37896 -0.0959,2.75675 0.74567,4.05426 0.2328,-2.94443 0.69913,-5.7429 1.92528,-8.06648 0.39239,1.17546 0.74775,2.36439 2.03109,3.21587 0.59247,-3.07292 1.55541,-5.80007 3.39306,-7.710822 0.30776,1.430762 0.78432,2.799622 2.32632,3.777832 0.53632,-2.64932 1.37507,-5.246793 3.35799,-7.648123 0.14111,1.937462 1.27409,3.483398 2.99614,4.796803 0.26667,-1.769696 0.3381,-3.596335 1.5581,-5.087975 0.45789,1.532677 1.69497,2.667101 4.02664,3.242071 1.01846,-2.01029 1.78624,-4.10414 3.75035,-5.799213 0.0885,1.929566 1.86922,3.280887 4.48858,4.128202 1.44492,-1.525413 3.42384,-2.861344 3.67916,-4.808874 1.86112,1.054215 3.2297,2.471357 4.30027,4.108084 1.44759,-0.96034 2.45275,-2.090843 2.81784,-3.467529 1.0588,1.098207 2.02213,2.252575 2.38154,3.762186 1.67284,-0.502914 2.73401,-1.413613 3.03223,-2.832939 1.11987,1.053994 2.14954,2.19427 2.32609,4.150576 1.869,-0.197658 2.0868,-1.421744 2.46879,-2.543759 1.12659,1.426136 1.73345,3.078236 1.90186,4.92097 1.23123,0.20751 1.68979,-0.794357 1.97168,-2.072767 0.71793,1.600868 1.89588,2.757057 1.45372,5.479337 0.60707,-0.27862 1.16002,-0.62091 1.07086,-1.71862 0.59248,1.65559 1.27676,3.26018 1.14726,5.31687 0.42286,-0.5408 0.50965,-1.26256 0.39158,-2.09463 0.63988,1.67843 0.72087,3.35686 0.88175,5.03529 0.28783,-0.60101 0.68913,-1.10273 0.66618,-1.97567 l 0.22437,4.59731 c 0.39693,-0.62407 0.63258,-1.3019 0.65467,-2.05091 0.29253,1.6627 0.2675,3.36068 0.1896,5.06453 l 0.45209,1.8231 c 0.38638,-0.45453 0.51462,-0.93775 0.52728,-1.43381 0.16555,1.50601 0.36084,3.00459 0.2042,4.59115 0.34432,-0.32807 0.30713,-0.78331 0.42885,-1.18558 0.1847,1.26933 0.28877,2.59243 0.2242,4.02794 l 1.19132,4.62388 0.63651,-1.70163 0.0816,3.99182 1.77109,4.28375 1.05646,-3.19717 c 10.71484,-22.20048 5.99108,-64.270356 -37.5191,-61.322495 -15.38241,-0.812657 -36.14212,6.178893 -38.54171,35.892695 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Hair_Fore_Messy.tw b/src/art/vector_revamp/layers/Hair_Fore_Messy.tw new file mode 100644 index 0000000000000000000000000000000000000000..fa56f75e0733db77e1322ac2a459ab15b05ed9c5 --- /dev/null +++ b/src/art/vector_revamp/layers/Hair_Fore_Messy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Hair_Fore_Messy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 241.975,110.6 c -1.78889,25.64584 13.52447,45.19782 13.5625,45.175 -1.93899,-6.02162 -4.58574,-12.04324 -6.97785,-18.06486 3.80697,8.13875 8.97898,15.89019 19.45631,22.2992 -2.08533,-7.6352 -4.33537,-15.22335 -6.8328,-22.74081 2.87527,5.97812 6.73613,9.81795 12.38979,12.89733 -3.61707,-14.84432 -7.05785,-30.0097 -0.20207,-43.9675 2.95065,11.50283 10.38806,22.91156 24.51355,33.74186 -2.19377,-4.67914 -5.03254,-8.97127 -7.79276,-13.31053 3.76977,5.00946 8.11797,9.67031 13.44317,13.6813 -3.7337,-13.44579 -9.20375,-39.90723 -9.25786,-39.88694 8.45882,11.95774 21.21779,15.10832 22.939,44.10919 0.23524,0.0336 6.86184,-14.38832 6.60844,-23.34903 0.2151,0.0329 4.42164,16.16542 -0.40215,30.04238 -1.93115,5.55548 10.3178,-13.24469 11.516,-21.36538 2.91289,-19.74187 6.7127,-64.98074 -48.45534,-66.556006 C 264.42918,62.675482 246.76963,71.395231 241.975,110.6 Z" class="shadow" id="path1681" sodipodi:nodetypes="cccccccccccccsssc"/><path sodipodi:nodetypes="cccccccccccccsssc" id="path1683" class="hair" d="m 241.975,110.6 c -1.0875,25.225 13.5625,45.175 13.5625,45.175 l -6.97785,-18.06486 c 4.23979,7.99448 9.29204,15.78584 19.45631,22.2992 l -6.8328,-22.74081 c 2.89723,5.94738 7.23848,9.11466 12.38979,12.89733 -4.08726,-15.18017 -7.40894,-30.26048 -0.20207,-43.9675 3.14245,11.40693 10.8749,22.66814 24.51355,33.74186 l -7.79276,-13.31053 c 4.14732,4.78293 8.31761,9.55053 13.44317,13.6813 -4.51523,-13.15272 -9.25786,-39.88694 -9.25786,-39.88694 8.66286,11.92373 21.69635,15.02856 22.939,44.10919 0,0 6.3016,-14.46835 6.60844,-23.34903 0.35004,-0.0121 5.13718,16.06244 -0.40215,30.04238 -2.17162,5.48065 9.98837,-13.42046 11.516,-21.36538 3.74614,-19.48304 6.08578,-64.724224 -48.19017,-66.114064 C 264.81038,63.185388 247.12665,71.633243 241.975,110.6 Z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Hair_Fore_Neat.tw b/src/art/vector_revamp/layers/Hair_Fore_Neat.tw new file mode 100644 index 0000000000000000000000000000000000000000..38bd2b459456824444fc793e217b17c3e189e2fa --- /dev/null +++ b/src/art/vector_revamp/layers/Hair_Fore_Neat.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Hair_Fore_Neat [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccccccccccccc" id="path1711" class="shadow" d="m 248.60413,106.18058 c -2.04734,26.40395 6.13148,51.98561 15.97494,70.1677 4.39713,6.72978 7.52187,7.37748 13.18887,11.71429 -1.1884,-0.16181 -8.46893,-29.0279 -8.41476,-28.94744 0.31529,1.07194 0.40623,1.233 1.2243,1.66065 -0.57569,0.34074 -5.13572,-33.2968 -4.5736,-40.02567 0.0682,0.91859 0.28487,1.78907 1.05455,2.47391 0.12279,-1.77728 3.30483,-13.8038 6.31245,-17.02566 3.19925,12.14534 28.96714,0.6572 42.54477,10.93767 -3.15657,-3.47155 -6.95408,-6.9054 -10.57699,-10.34952 3.96079,4.9135 14.62203,11.63192 14.7248,11.55998 -1.62157,-3.30049 -2.95395,-6.2972 -2.01001,-7.84616 0.53325,4.44201 7.68041,9.37749 10.5675,32.53133 0.42131,-0.97927 0.80084,-2.01078 1.05646,-3.19717 -0.17802,0 -0.9094,15.09511 -0.56915,18.22406 -0.85119,8.02927 -2.22823,15.58067 -4.54317,26.28104 6.10335,-4.24216 13.68515,-6.89944 16.71199,-13.48875 10.24425,-4.37842 19.01551,-107.842635 -45.69015,-99.413908 -19.19936,0.410451 -36.53562,-0.758031 -46.9828,34.743648 z"/><path d="m 248.60413,106.18058 c -1.66902,26.21479 6.74136,51.68067 15.97494,70.1677 4.56517,6.26767 7.57687,7.22623 13.18887,11.71429 -1.27999,-0.14349 -8.66373,-28.98894 -8.41476,-28.94744 0.36079,1.05894 0.50254,1.20548 1.2243,1.66065 -1.0537,0.28099 -5.60048,-33.3549 -4.5736,-40.02567 0.16654,0.89401 0.42097,1.75505 1.05455,2.47391 0,-1.81236 3.02827,-13.88282 6.31245,-17.02566 3.14245,11.40693 28.90612,-0.13605 42.54477,10.93767 l -10.57699,-10.34952 c 4.14732,4.78293 14.7248,11.55998 14.7248,11.55998 -1.93032,-3.36224 -3.23417,-6.35324 -2.01001,-7.84616 0.59719,4.40649 8.55665,8.89069 10.5675,32.53133 l 1.05646,-3.19717 c 0,0 -0.41355,15.09511 -0.56915,18.22406 -0.39068,7.85658 -1.74604,15.39985 -4.54317,26.28104 6.00366,-4.292 12.93954,-7.27225 16.71199,-13.48875 8.76503,-5.55068 19.18463,-106.244216 -45.69015,-99.413908 -19.18263,1.258572 -35.55712,-0.07776 -46.9828,34.743648 z" class="hair" id="path1707" sodipodi:nodetypes="ccccccccccccccscccc"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..902ff509ee792785c07098907b1d1294e3182f9e --- /dev/null +++ b/src/art/vector_revamp/layers/Head.tw @@ -0,0 +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 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 289.19072,140.7229 c -0.58382,3.43317 -0.99352,4.10273 -2.32781,7.22613 0.94543,-2.80397 1.75469,-4.08105 2.32781,-7.22613 z"/><path sodipodi:nodetypes="ccc" id="path836-0-8-3" class="shadow" d="m 289.73258,148.65358 c -1.16267,0.69754 -1.8436,-0.002 -2.85814,-0.73987 0.89019,0.8089 1.8548,1.4671 2.85814,0.73987 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Leg_Highlights1.tw b/src/art/vector_revamp/layers/Leg_Highlights1.tw new file mode 100644 index 0000000000000000000000000000000000000000..31900d027061a20488c761b677e423bcf7d7079c --- /dev/null +++ b/src/art/vector_revamp/layers/Leg_Highlights1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Leg_Highlights1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 251.99197,509.9025 c -5.23668,7.36843 -4.53715,18.6497 -2.744,23.55798 1.47494,-6.06602 4.11072,-17.56782 2.744,-23.55798 z" class="highlight1" id="path1141-07-4-0" sodipodi:nodetypes="ccc"/><path d="m 356.65399,517.81824 c 6.76776,9.52278 5.86371,24.10242 3.54628,30.44576 -1.90617,-7.83958 -5.31259,-22.70422 -3.54628,-30.44576 z" class="highlight1" id="path1141-07-4-0-3" sodipodi:nodetypes="ccc"/><path d="m 360.4759,558.09508 c 0.81932,1.60231 0.35659,3.80443 -0.13802,4.71965 -0.11582,-1.23741 -0.30375,-3.57904 0.13802,-4.71965 z" class="highlight1" id="path1141-07-4-0-3-9" sodipodi:nodetypes="ccc"/><path d="m 247.61623,559.01301 c -0.81932,1.60231 -0.35659,3.80443 0.13802,4.71965 0.11582,-1.23741 0.30375,-3.57904 -0.13802,-4.71965 z" class="highlight1" id="path1141-07-4-0-3-9-2" sodipodi:nodetypes="ccc"/><path d="m 239.97063,629.98426 c -1.13405,1.65477 -0.53336,6.49014 0.13802,7.3759 -0.10399,-1.20078 0.025,-6.18884 -0.13802,-7.3759 z" class="highlight1" id="path1141-07-4-0-3-9-2-6" sodipodi:nodetypes="ccc"/><path d="m 370.086,637.36953 c 1.64444,1.34354 1.87091,6.96776 1.08314,8.01095 -0.0993,-1.27689 -1.05116,-6.87277 -1.08314,-8.01095 z" class="highlight1" id="path1141-07-4-0-3-9-5" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Leg_Highlights2.tw b/src/art/vector_revamp/layers/Leg_Highlights2.tw new file mode 100644 index 0000000000000000000000000000000000000000..84162eec1a3d7d2ddcba2e2b6082477a2604c4ca --- /dev/null +++ b/src/art/vector_revamp/layers/Leg_Highlights2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Leg_Highlights2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><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-8-4-2-7-6-6" class="highlight2" d="m 252.40264,490.48989 c 10.07018,29.84487 -3.27803,57.85752 -3.82385,61.89524 -3.30803,-1.62614 -7.09693,-44.45212 3.82385,-61.89524 z"/><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-8-4-2-7-6-6-0" class="highlight2" d="m 247.84341,555.55395 c 2.9926,8.86913 0.40085,10.94377 0.23865,12.14368 -0.98306,-0.48325 -3.48403,-6.96003 -0.23865,-12.14368 z"/><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-8-4-2-7-6-6-0-8" class="highlight2" d="m 240.30654,628.14692 c 2.9926,8.86913 0.40085,10.94377 0.23865,12.14368 -0.98306,-0.48325 -3.48403,-6.96003 -0.23865,-12.14368 z"/><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-8-4-2-7-6-6-0-0" class="highlight2" d="m 369.91756,635.45313 c -1.97841,9.14894 0.82978,10.91963 1.12561,12.09376 0.92262,-0.59052 2.68097,-7.30704 -1.12561,-12.09376 z"/><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-8-4-2-7-6-6-5" class="highlight2" d="m 353.92504,483.09326 c -3.41721,37.99625 7.60129,92.56555 9.59682,99.67367 3.83375,-17.75114 7.1206,-59.60555 -9.59682,-99.67367 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Leg_Narrow.tw b/src/art/vector_revamp/layers/Leg_Narrow.tw new file mode 100644 index 0000000000000000000000000000000000000000..bd861c75edbfb7fd499293fdd7f2c04dd85c1af7 --- /dev/null +++ b/src/art/vector_revamp/layers/Leg_Narrow.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Leg_Narrow [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccccccccccccccccccccccc" id="path6860" class="shadow" d="m 230.16344,406.75684 c -0.45725,0.19597 -13.71714,52.20295 -12.8877,76.1189 -2.06873,32.41749 4.89133,108.27705 14.46929,134.30347 0.0164,4.8235 -4.19061,11.34488 -0.74046,25.66374 0.70559,9.86707 1.46989,9.97145 4.7938,18.63204 -3.04236,59.54886 -15.65675,146.12389 -20.39721,197.05189 7.84194,-4.38266 15.89481,-5.60145 24.44118,0.58235 C 243.31989,808.28831 292.17696,748.44875 282.3,688.2 c 1.17052,-5.16551 -6.13072,-15.79216 -6.185,-24.33327 1.31033,-7.42825 1.63646,-18.3535 -0.0492,-29.59286 -0.5844,-5.41129 -1.3899,-10.65541 -1.88678,-16.19898 7.43414,-17.32734 10.54386,-39.4311 13.55873,-62.48667 9.12116,-16.1781 17.20545,-81.64845 13.49464,-84.48248 -3.95738,-3.4222 -8.61637,-6.669 -13.51105,-9.85687 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -4.79782,15.97069 30.38462,150.0183 40.86482,167.99625 -0.30896,6.54251 1.22253,11.96366 3.58293,16.51999 1.95745,6.2414 7.67144,16.40567 8.31026,16.27188 -0.20808,0.10404 2.37617,30.85173 9.17797,58.18868 2.41014,12.81931 6.35083,28.63924 9.61479,46.06708 2.92205,27.63185 3.1728,57.02446 2.2074,100.15166 6.83065,-3.93915 13.84195,-3.00057 21.00588,2.05882 2.84613,-58.5 33.05508,-146.87213 -7.38839,-213.23096 2.21201,-14.63772 -2.15046,-28.96177 -3.83238,-43.53363 -2.02672,-44.83468 11.10825,-100.53242 4.16575,-152.08653 -3.78587,-25.46967 -14.28583,-68.54216 -14.75479,-68.54216 L 230.1634,406.75684"/><path d="m 230.16344,406.75684 c 0,0 -12.5877,51.7189 -12.8877,76.1189 -0.36782,31.77965 6.95433,107.50343 14.46929,134.30347 0.36107,4.69556 -3.03695,10.79151 -0.74046,25.66374 1.36037,8.80989 2.21605,9.30911 4.7938,18.63204 -1.57612,59.1823 -15.41843,146.06431 -20.39721,197.05189 l 24.44118,0.58235 c 2.2,-51.3 48.68707,-110.66217 42.45766,-170.90923 0.25772,-5.16551 -6.84658,-15.66345 -6.185,-24.33327 0.61317,-8.03525 0.74534,-18.83014 -0.0492,-29.59286 -0.40774,-5.52344 -2.62982,-10.65541 -1.88678,-16.19898 6.92108,-17.8404 8.86083,-41.11413 13.55873,-62.48667 6.60293,-16.1781 16.66209,-81.64845 13.49464,-84.48248 l -13.51105,-9.85687 c 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -3.40993,15.37588 32.27981,149.20607 40.86482,167.99625 0.38726,6.28143 1.71425,11.94402 3.58293,16.51999 2.67979,6.56225 8.31026,16.27188 8.31026,16.27188 0,0 3.45796,30.31083 9.17797,58.18868 2.6121,12.73068 7.26837,28.37709 9.61479,46.06708 3.65301,27.54048 4.30844,56.8825 2.2074,100.15166 l 21.00588,2.05882 c 0.2,-58.5 32.71749,-146.87213 -7.38839,-213.23096 1.59844,-15.40469 -2.8685,-29.85933 -3.83238,-43.53363 -3.17906,-45.1006 8.10954,-101.22443 4.16575,-152.08653 -0.3,-26 -14.75479,-68.54216 -14.75479,-68.54216 L 230.1634,406.75684" class="skin" id="XMLID_464_" sodipodi:nodetypes="cccsccccsscccccccscsscccsccc"/><path d="m 247.56984,612.94295 c -1.74439,-1.03364 -2.21606,-1.46317 -4.53268,-2.4083 3.01875,0.65797 2.98097,0.84985 4.53268,2.4083 z" class="shadow" id="XMLID_590_-04-8-55" sodipodi:nodetypes="ccc"/><path d="m 236.04758,612.88385 c -0.72877,1.13042 -1.31762,1.55245 -2.06393,2.72451 0.85469,-1.08422 1.39503,-1.32984 2.06393,-2.72451 z" class="shadow" id="XMLID_590_-04-8-55-0" sodipodi:nodetypes="ccc"/><path d="m 254.79184,646.43543 c -1.32454,1.59592 -3.05575,7.57454 -3.82557,16.35213 -0.22953,-7.60634 1.53236,-12.92801 3.82557,-16.35213 z" class="shadow" id="XMLID_590_-04-8-55-8" sodipodi:nodetypes="ccc"/><path d="m 235.79639,660.98019 c 2.95671,5.50217 3.00675,8.23079 3.58068,13.78963 0.42672,-7.66884 -1.31139,-10.80301 -3.58068,-13.78963 z" class="shadow" id="XMLID_590_-04-8-55-8-7" sodipodi:nodetypes="ccc"/><path d="m 388.88703,650.29137 c -2.16423,9.3299 -1.81831,17.03209 -2.58813,25.80968 0.21241,-9.68346 0.0297,-19.29197 2.58813,-25.80968 z" class="shadow" id="XMLID_590_-04-8-55-8-75" sodipodi:nodetypes="ccc"/><path d="m 358.71593,661.56392 c 4.38265,5.28303 6.91607,6.62584 9.0525,16.71593 -1.16259,-10.63658 -5.61093,-13.43259 -9.0525,-16.71593 z" class="shadow" id="XMLID_590_-04-8-55-8-75-3" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Leg_Normal.tw b/src/art/vector_revamp/layers/Leg_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..5983915ddf45ab5a6557428fe9f4dbb2825dac7a --- /dev/null +++ b/src/art/vector_revamp/layers/Leg_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Leg_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 230.16344,406.75684 c -0.45725,0.19597 -13.76292,52.20295 -12.8877,76.1189 -2.18291,32.41749 4.89133,108.27705 14.46929,134.30347 0.0164,4.8235 -4.19061,11.34488 -0.74046,25.66374 0.70559,9.86707 1.46989,9.97145 4.7938,18.63204 -3.04236,59.54886 -15.65675,146.12389 -20.39721,197.05189 7.84194,-4.38266 15.89481,-5.60145 24.44118,0.58235 3.47755,-50.82092 56.46873,-110.66048 46.04662,-170.90923 1.23512,-5.16551 -2.93357,-15.79216 -2.99085,-24.33327 1.38265,-7.42825 1.72678,-18.3535 -0.0519,-29.59286 -0.61665,-5.41129 -1.46661,-10.65541 -1.99091,-16.19898 8.64254,-21.66379 7.87642,-41.52669 10.77156,-62.48667 9.62459,-16.1781 13.31636,-81.64845 9.60555,-84.48248 -3.95738,-3.4222 -8.61637,-6.669 -13.51105,-9.85687 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -4.79782,15.97069 27.37942,150.0183 37.85962,167.99625 -0.30896,6.54251 1.22253,11.96366 3.58293,16.51999 1.95745,6.2414 7.67144,16.40567 8.31026,16.27188 -0.20808,0.10404 5.38137,30.85173 12.18317,58.18868 2.41014,12.81931 6.35083,28.63924 9.61479,46.06708 2.92205,27.63185 3.1728,57.02446 2.2074,100.15166 6.83065,-3.93915 13.84195,-3.00057 21.00588,2.05882 2.84613,-58.5 37.12094,-146.87213 -3.32253,-213.23096 2.21201,-14.63772 -2.15046,-28.96177 -3.83238,-43.53363 -2.02672,-44.83468 7.04239,-100.53242 0.0999,-152.08653 -3.78587,-25.46967 -14.28583,-68.54216 -14.75479,-68.54216 l -148.7328,16.03681" class="shadow" id="path3088" sodipodi:nodetypes="cccccccccccccccccccccccccccc"/><path sodipodi:nodetypes="cccsccccsscccccccscsscccsccc" id="path3090" class="skin" d="m 230.16344,406.75684 c 0,0 -12.57114,51.7189 -12.8877,76.1189 -0.38812,31.77965 6.95433,107.50343 14.46929,134.30347 0.36107,4.69556 -3.03695,10.79151 -0.74046,25.66374 1.36037,8.80989 2.21605,9.30911 4.7938,18.63204 -1.57612,59.1823 -15.41843,146.06431 -20.39721,197.05189 l 24.44118,0.58235 c 2.2,-51.3 52.61985,-110.66217 46.04662,-170.90923 0.27194,-5.16551 -3.68895,-15.66345 -2.99085,-24.33327 0.64701,-8.03525 0.78648,-18.83014 -0.0519,-29.59286 -0.43024,-5.52344 -2.77497,-10.65541 -1.99091,-16.19898 7.30308,-17.8404 5.81436,-41.11413 10.77156,-62.48667 6.96737,-16.1781 12.773,-81.64845 9.60555,-84.48248 l -13.51105,-9.85687 c 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -3.40993,15.37588 29.27461,149.20607 37.85962,167.99625 0.38726,6.28143 1.71425,11.94402 3.58293,16.51999 2.67979,6.56225 8.31026,16.27188 8.31026,16.27188 0,0 6.46316,30.31083 12.18317,58.18868 2.6121,12.73068 7.26837,28.37709 9.61479,46.06708 3.65301,27.54048 4.30844,56.8825 2.2074,100.15166 l 21.00588,2.05882 c 0.2,-58.5 36.78335,-146.87213 -3.32253,-213.23096 1.59844,-15.40469 -2.8685,-29.85933 -3.83238,-43.53363 -3.17906,-45.1006 4.04368,-101.22443 0.0999,-152.08653 -0.3,-26 -14.75479,-68.54216 -14.75479,-68.54216 l -148.7328,16.03681"/><path sodipodi:nodetypes="ccc" id="path3092" class="shadow" d="m 247.56984,612.94295 c -1.74439,-1.03364 -2.21606,-1.46317 -4.53268,-2.4083 3.01875,0.65797 2.98097,0.84985 4.53268,2.4083 z"/><path sodipodi:nodetypes="ccc" id="path3094" class="shadow" d="m 236.04758,612.88385 c -0.72877,1.13042 -1.31762,1.55245 -2.06393,2.72451 0.85469,-1.08422 1.39503,-1.32984 2.06393,-2.72451 z"/><path sodipodi:nodetypes="ccc" id="path3096" class="shadow" d="m 254.79184,646.43543 c -1.32454,1.59592 -3.05575,7.57454 -3.82557,16.35213 -0.22953,-7.60634 1.53236,-12.92801 3.82557,-16.35213 z"/><path sodipodi:nodetypes="ccc" id="path3098" class="shadow" d="m 235.79639,660.98019 c 2.95671,5.50217 3.00675,8.23079 3.58068,13.78963 0.42672,-7.66884 -1.31139,-10.80301 -3.58068,-13.78963 z"/><path sodipodi:nodetypes="ccc" id="path3100" class="shadow" d="m 388.88703,650.29137 c -2.16423,9.3299 -1.81831,17.03209 -2.58813,25.80968 0.21241,-9.68346 0.0297,-19.29197 2.58813,-25.80968 z"/><path sodipodi:nodetypes="ccc" id="path3102" class="shadow" d="m 358.71593,661.56392 c 4.38265,5.28303 6.91607,6.62584 9.0525,16.71593 -1.16259,-10.63658 -5.61093,-13.43259 -9.0525,-16.71593 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Leg_Wide.tw b/src/art/vector_revamp/layers/Leg_Wide.tw new file mode 100644 index 0000000000000000000000000000000000000000..52e737b5832fb40c03650d1d8976f99a2f9281ee --- /dev/null +++ b/src/art/vector_revamp/layers/Leg_Wide.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Leg_Wide [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccccccccccccccccccccccc" id="path3112" class="shadow" d="m 230.16344,406.75684 c -0.45725,0.19597 -13.71714,52.20295 -12.8877,76.1189 -2.06873,32.41749 4.89133,108.27705 14.46929,134.30347 0.0164,4.8235 -4.19061,11.34488 -0.74046,25.66374 0.70559,9.86707 1.46989,9.97145 4.7938,18.63204 -3.04236,59.54886 -15.65675,146.12389 -20.39721,197.05189 7.84194,-4.38266 15.89481,-5.60145 24.44118,0.58235 C 243.31989,808.28831 302.42696,748.44875 292.55,688.2 c 1.17052,-5.16551 -4.63072,-15.79216 -4.685,-24.33327 1.31033,-7.42825 1.63646,-18.3535 -0.0492,-29.59286 -0.5844,-5.41129 -1.3899,-10.65541 -1.88678,-16.19898 7.43414,-17.32734 10.6379,-36.86783 12.06178,-60.7189 9.12116,-16.1781 6.9524,-83.41622 3.24159,-86.25025 -3.95738,-3.4222 -8.61637,-6.669 -13.51105,-9.85687 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -4.79782,15.97069 11.88462,136.6433 35.11482,167.99625 -0.30896,6.54251 1.22253,11.96366 3.58293,16.51999 1.95745,6.2414 7.67144,16.40567 8.31026,16.27188 -0.20808,0.10404 8.12617,30.85173 14.92797,58.18868 2.41014,12.81931 6.35083,28.63924 9.61479,46.06708 2.92205,27.63185 3.1728,57.02446 2.2074,100.15166 6.83065,-3.93915 13.84195,-3.00057 21.00588,2.05882 2.84613,-58.5 49.30508,-148.62213 0.36161,-213.23096 2.21201,-14.63772 -2.15046,-28.96177 -3.83238,-43.53363 10.22328,-45.83468 3.35825,-100.53242 -3.58425,-152.08653 -3.78587,-25.46967 -14.28583,-68.54216 -14.75479,-68.54216 L 230.1634,406.75684"/><path d="m 230.16344,406.75684 c 0,0 -12.5877,51.7189 -12.8877,76.1189 -0.36782,31.77965 6.95433,107.50343 14.46929,134.30347 0.36107,4.69556 -3.03695,10.79151 -0.74046,25.66374 1.36037,8.80989 2.21605,9.30911 4.7938,18.63204 -1.57612,59.1823 -15.41843,146.06431 -20.39721,197.05189 l 24.44118,0.58235 c 2.2,-51.3 58.93707,-110.66217 52.70766,-170.90923 0.25772,-5.16551 -5.34658,-15.66345 -4.685,-24.33327 0.61317,-8.03525 0.74534,-18.83014 -0.0492,-29.59286 -0.40774,-5.52344 -2.62982,-10.65541 -1.88678,-16.19898 6.92108,-17.8404 9.4852,-38.19731 12.06178,-60.7189 6.60293,-16.1781 6.40904,-83.41622 3.24159,-86.25025 l -13.51105,-9.85687 c 0,0 15.5597,-0.57049 15.07622,-0.62421 l 3.14438,0.23429 c -3.40993,15.37588 9.52981,126.20607 35.11482,167.99625 0.38726,6.28143 1.71425,11.94402 3.58293,16.51999 2.67979,6.56225 8.31026,16.27188 8.31026,16.27188 0,0 9.20796,30.31083 14.92797,58.18868 2.6121,12.73068 7.26837,28.37709 9.61479,46.06708 3.65301,27.54048 4.30844,56.8825 2.2074,100.15166 l 21.00588,2.05882 c 0.2,-58.5 48.21749,-148.87213 0.36161,-213.23096 1.59844,-15.40469 -6.10129,-30.01447 -3.83238,-43.53363 7.82094,-46.6006 0.35954,-101.22443 -3.58425,-152.08653 -0.3,-26 -14.75479,-68.54216 -14.75479,-68.54216 L 230.1634,406.75684" class="skin" id="path3114" sodipodi:nodetypes="cccsccccsscccccccscsscccsccc"/><path d="m 247.56984,612.94295 c -1.74439,-1.03364 -2.21606,-1.46317 -4.53268,-2.4083 3.01875,0.65797 2.98097,0.84985 4.53268,2.4083 z" class="shadow" id="path3116" sodipodi:nodetypes="ccc"/><path d="m 236.04758,612.88385 c -0.72877,1.13042 -1.31762,1.55245 -2.06393,2.72451 0.85469,-1.08422 1.39503,-1.32984 2.06393,-2.72451 z" class="shadow" id="path3118" sodipodi:nodetypes="ccc"/><path d="m 254.79184,646.43543 c -1.32454,1.59592 -3.05575,7.57454 -3.82557,16.35213 -0.22953,-7.60634 1.53236,-12.92801 3.82557,-16.35213 z" class="shadow" id="path3120" sodipodi:nodetypes="ccc"/><path d="m 235.79639,660.98019 c 2.95671,5.50217 3.00675,8.23079 3.58068,13.78963 0.42672,-7.66884 -1.31139,-10.80301 -3.58068,-13.78963 z" class="shadow" id="path3122" sodipodi:nodetypes="ccc"/><path d="m 388.88703,650.29137 c -2.16423,9.3299 -1.81831,17.03209 -2.58813,25.80968 0.21241,-9.68346 0.0297,-19.29197 2.58813,-25.80968 z" class="shadow" id="path3124" sodipodi:nodetypes="ccc"/><path d="m 358.71593,661.56392 c 4.38265,5.28303 6.91607,6.62584 9.0525,16.71593 -1.16259,-10.63658 -5.61093,-13.43259 -9.0525,-16.71593 z" class="shadow" id="path3126" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Mouth_Angry.tw b/src/art/vector_revamp/layers/Mouth_Angry.tw new file mode 100644 index 0000000000000000000000000000000000000000..eab5a13fef2e7c8c5c4dff3580271be1187db5ad --- /dev/null +++ b/src/art/vector_revamp/layers/Mouth_Angry.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Mouth_Angry [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccc" id="path1342" class="shadow" d="m 298.72595,162.8693 c -1.74079,0.54129 -2.60386,0.46609 -4.21215,0.60322 1.90581,1.1839 3.69318,1.01462 4.21215,-0.60322 z"/><path sodipodi:nodetypes="cssssssssaassaacc" id="path1344" class="shadow" d="m 301.77369,159.93145 c -0.59536,-0.32141 -1.49558,-0.40995 -1.98879,-0.37828 -1.34109,0.0861 -1.78502,-0.068 -2.90668,0.14576 -0.19845,0.0378 -0.36644,-0.0156 -0.55908,0.0167 -0.13152,0.022 -0.28928,-0.025 -0.41797,-0.005 -0.43426,0.066 -0.79514,0.22644 -1.19473,0.26689 -0.18968,0.0192 -0.40838,0.12419 -0.58963,0.13829 -0.18537,0.0144 -0.3784,0.0592 -0.54237,0.1242 -0.71345,0.28296 -0.89674,0.69602 -1.22192,0.90329 -0.21994,0.14018 -0.53951,0.0353 -0.65453,0.23682 -0.0837,0.14669 -0.0681,0.45023 0.0939,0.49793 0.31005,0.0913 0.55359,-0.62672 0.66731,-0.70349 2.58321,-1.74397 4.97811,-1.13453 8.10014,-1.2676 0.94348,-0.0402 0.62791,0.84829 1.01771,0.70994 0.22385,-0.0794 0.16356,-0.44971 0.19666,-0.68492 v -1e-5 z"/><path sodipodi:nodetypes="ccc" id="path1346" class="shadow" d="m 299.48212,157.46491 c -1.66583,-0.75246 -1.79505,-0.91063 -3.55652,-0.043 0.99585,-0.46087 1.94376,-0.64981 3.55652,0.043 z"/><path d="m 295.11418,157.52297 c -1.20709,-0.22549 -1.61386,-0.15189 -2.37217,0.8007 0.97157,-0.91756 1.0942,-0.73349 2.37217,-0.8007 z" class="shadow" id="path1348" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Mouth_Angry_Highlights.tw b/src/art/vector_revamp/layers/Mouth_Angry_Highlights.tw new file mode 100644 index 0000000000000000000000000000000000000000..203a27d75eeb25f973e69bdf0b66ae88d3729fba --- /dev/null +++ b/src/art/vector_revamp/layers/Mouth_Angry_Highlights.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Mouth_Angry_Highlights [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-0-9-5-8" class="highlight2" d="m 299.56552,160.5872 c -2.03048,0.13893 -3.24258,0.38714 -4.23558,0.68032 0.35064,0.57872 3.64093,0.72858 4.23558,-0.68032 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-0-9-5-8-4" class="highlight2" d="m 294.69804,162.49514 c -0.62424,-0.0486 -1.55508,-0.7066 -2.40745,-0.63218 0.35064,0.57872 1.65655,1.47858 2.40745,0.63218 z"/><path sodipodi:nodetypes="ccc" id="XMLID_511_-1-8-0-3-9-0-9-5-8-4-4" class="highlight2" d="m 295.30404,157.90142 c -0.60251,0.35152 -1.09223,0.56877 -1.8449,-0.0253 0.26033,-0.21724 1.01509,-0.27581 1.8449,0.0253 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Mouth_Happy.tw b/src/art/vector_revamp/layers/Mouth_Happy.tw new file mode 100644 index 0000000000000000000000000000000000000000..3ccad03aced06c3ea24548997365452ec523f4a3 --- /dev/null +++ b/src/art/vector_revamp/layers/Mouth_Happy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Mouth_Happy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 300.67907,164.2443 c -1.74079,0.54129 -2.60386,0.46609 -4.21215,0.60322 1.90581,1.1839 3.69318,1.01462 4.21215,-0.60322 z" class="shadow" id="path1314" sodipodi:nodetypes="ccc"/><path d="m 304.16836,158.89728 c -0.65754,-0.15935 -1.25886,0.90901 -1.72778,1.06512 -1.27505,0.42448 -2.48719,0.72941 -3.60885,0.9432 -0.19845,0.0378 -0.36644,-0.0156 -0.55908,0.0167 -0.13152,0.022 -0.28928,0.13121 -0.41797,0.15079 -0.43426,0.066 -0.85211,0.11837 -1.2517,0.15887 -0.18968,0.0192 -0.37524,-0.0526 -0.55649,-0.0385 -0.18537,0.0144 -0.36623,0.11468 -0.54237,0.1242 -0.77914,0.0421 -1.26351,0.0593 -1.68445,0.0447 -0.26066,-0.009 -0.48867,-0.56649 -0.76394,-0.45611 -0.17938,0.0719 -0.27191,0.40524 -0.15456,0.5588 0.19626,0.2568 0.83404,-0.025 0.96964,-0.004 2.70837,0.41982 6.3844,-0.15314 9.47979,-1.57468 0.85817,-0.39411 1.04035,0.0106 1.1865,-0.37786 0.0838,-0.2227 -0.13749,-0.55517 -0.36874,-0.61121 z" class="shadow" id="path1317" sodipodi:nodetypes="assssssssaassaa"/><path d="m 301.37797,158.85176 c -1.48115,-0.33094 -1.90064,-0.66259 -3.53037,0.43264 0.92533,-0.58981 2.22192,-0.63997 3.53037,-0.43264 z" class="shadow" id="path1319" sodipodi:nodetypes="ccc"/><path sodipodi:nodetypes="ccc" id="path1321" class="shadow" d="m 297.00827,159.30416 c -1.14969,-0.43141 -1.46342,-0.22949 -2.47508,0.37718 0.97221,-0.32418 1.20482,-0.53261 2.47508,-0.37718 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Mouth_Happy_Highlights.tw b/src/art/vector_revamp/layers/Mouth_Happy_Highlights.tw new file mode 100644 index 0000000000000000000000000000000000000000..b9ca60f9400360b1f5e536f9f333ff326c1d9993 --- /dev/null +++ b/src/art/vector_revamp/layers/Mouth_Happy_Highlights.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Mouth_Happy_Highlights [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 301.6256,162.6093 c -2.03048,0.13893 -3.24258,0.38714 -4.23558,0.68032 0.35064,0.57872 3.64093,0.72858 4.23558,-0.68032 z" class="highlight2" id="path1464" sodipodi:nodetypes="ccc"/><path d="m 296.64123,163.36824 c -0.62424,-0.0486 -1.55508,-0.7066 -2.40745,-0.63218 0.35064,0.57872 1.65655,1.47858 2.40745,0.63218 z" class="highlight2" id="path1466" sodipodi:nodetypes="ccc"/><path d="m 297.44467,159.49516 c -0.60251,0.35152 -1.09223,0.56877 -1.8449,-0.0253 0.26033,-0.21724 1.01509,-0.27581 1.8449,0.0253 z" class="highlight2" id="path1468" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Navel_Piercing.tw b/src/art/vector_revamp/layers/Navel_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..a3c21c24aaabb045d182f4ff0e7d5fa1d7fc5000 --- /dev/null +++ b/src/art/vector_revamp/layers/Navel_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Navel_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="2.7" cy="336.9996" cx="276.44211" class="steel_piercing" id="XMLID_515_"/><circle r="2.7" cy="346.14935" cx="276.88406" class="steel_piercing" id="XMLID_516_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Navel_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Navel_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..75d20edfeff7f2a9cb45a6ec7c7890912a53323f --- /dev/null +++ b/src/art/vector_revamp/layers/Navel_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Navel_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 277.10131,343.99568 c -0.3,-2.7e-4 -1.95,3 -1.8,17.4 0.15,19.05 1.8,19.95 2.1,19.95 0.49818,0 0.33196,-11.1 1.33125,-23.85 -0.75,-5.99289 -1.18125,-13.49959 -1.63125,-13.5 z" class="steel_piercing" id="XMLID_513_" sodipodi:nodetypes="scscs"/><path d="m 277.25964,381.16047 c -0.75,0 -1.5,3.6 -1.2,6.6 0.3,1.95 0.9,4.5 1.8,4.5 0.6,0 1.05,-2.7 1.2,-4.5 0,-3.15 -1.05,-6.6 -1.8,-6.6 z" class="steel_piercing" id="XMLID_514_" sodipodi:nodetypes="scscs"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Penis_0.tw b/src/art/vector_revamp/layers/Penis_0.tw new file mode 100644 index 0000000000000000000000000000000000000000..3f6c5a0d39c66856fe53c04846a6d02708b66759 --- /dev/null +++ b/src/art/vector_revamp/layers/Penis_0.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Penis_0 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 278.4,442.4 c 0.2,0.1 0.2,0.4 0.2,0.5 0,1 1.5,4.4 3.3,6 4.8,4.2 10.2,6.1 9.7,3.9 -0.1,-0.4 0.4,-0.5 0.4,-0.7 0.6,-2.1 -2.1,-5.3 -5.6,-8.3 -2.9,-2.5 -3.4,-2.2 -4,-2.7 -0.1,-0.1 -0.3,-0.2 -0.3,-0.5 -0.1,-0.3 0.2,-0.5 0.2,-0.7 0.1,-0.8 -0.9,-1.3 -1.9,-1.8 -0.7,-0.4 -2.2,-0.8 -3,-0.2 -1.7,1.3 -0.7,5.3 0.4,4.7 0.2,-0.1 0.4,-0.3 0.6,-0.2 z" class="shadow" id="XMLID_890_" sodipodi:nodetypes="ssccccccccccs"/><path d="m 278.5,442.5 c 0.2,0.2 0.2,0.4 0.2,0.5 0,0.6 1.6,3.9 4.8,6.6 2.4,2 6.9,5 8.5,3.6 0.3,-0.3 0.4,-0.5 0.4,-0.8 0.7,-2.3 -2.8,-5.2 -3.7,-6.1 -3.3,-2.8 -5.2,-4.5 -6,-5 -0.1,-0.1 -0.4,-0.3 -0.5,-0.6 -0.1,-0.3 0.1,-0.4 0.1,-0.6 0.1,-0.6 -1,-1.3 -1.8,-1.7 -0.6,-0.3 -2,-0.8 -2.8,-0.2 -1.4,1.1 -0.5,4.2 0.2,4.4 0.2,0 0.4,-0.2 0.6,-0.1 z" class="skin penis" id="XMLID_891_" sodipodi:nodetypes="cscccccscsccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Penis_1.tw b/src/art/vector_revamp/layers/Penis_1.tw new file mode 100644 index 0000000000000000000000000000000000000000..52b04830b167879a106a902ce3c896335b2680b4 --- /dev/null +++ b/src/art/vector_revamp/layers/Penis_1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Penis_1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 268,434.4 c 0.4,0.3 0.4,0.8 0.4,1 0,1.8 2.4,7.6 6.3,11.2 9.7,8.8 18.8,11.3 17.9,7.1 -0.2,-0.6 0.8,-1 0.9,-1.3 0.8,-3 -4.1,-10 -10.7,-15.3 -5.5,-4.4 -6,-4.3 -7.3,-5.1 -0.2,-0.1 -0.4,-0.3 -0.5,-0.9 -0.1,-0.4 0.3,-1 0.4,-1.3 0.2,-1.4 -1.8,-2.5 -3.6,-3.4 -1.4,-0.7 -4.2,-1.5 -5.6,-0.4 -3.2,2.6 -1.1,9.7 0.7,8.7 0.3,-0.2 0.7,-0.6 1.1,-0.3 z" class="shadow" id="XMLID_888_" sodipodi:nodetypes="sscccccccsccs"/><path d="m 268,434.6 c 0.4,0.3 0.4,0.9 0.4,1 0,1.2 3,7.3 9,12.4 4.4,3.9 13.1,9.3 16,6.9 0.5,-0.4 0.7,-1.1 0.8,-1.4 1.3,-4.3 -5.1,-9.9 -7,-11.6 -6.2,-5.4 -9.9,-8.5 -11.2,-9.4 -0.2,-0.1 -0.8,-0.5 -1,-1.2 -0.1,-0.5 0.2,-0.8 0.3,-1.2 0.2,-1.2 -1.9,-2.6 -3.4,-3.2 -1.2,-0.4 -3.6,-1.6 -5.3,-0.4 -2.7,2 -1,7.9 0.4,8.1 0.2,0.1 0.7,-0.3 1,0 z" class="skin penis" id="XMLID_889_" sodipodi:nodetypes="csccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Penis_2.tw b/src/art/vector_revamp/layers/Penis_2.tw new file mode 100644 index 0000000000000000000000000000000000000000..fee0079be29b5d6a3e11eddec2c55df1646c3c4b --- /dev/null +++ b/src/art/vector_revamp/layers/Penis_2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Penis_2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 251.7,421.6 c 0.5,0.4 0.5,1.3 0.5,1.5 0,2.8 5.5,12.7 10.5,17.6 15,14.6 29.9,18.3 28.4,11.7 -0.2,-1 1.2,-1.5 1.4,-2.1 2,-6.3 -7.5,-15.7 -17.9,-24.4 -8.7,-7.3 -9,-6.9 -10.9,-8.3 -0.3,-0.2 -0.7,-0.5 -0.9,-1.5 -0.2,-0.7 0.4,-1.6 0.5,-2.2 0.4,-2.3 -2.8,-4 -5.6,-5.4 -2.2,-1.2 -6.7,-2.5 -9.1,-0.5 -5.2,4.1 -1.2,15.3 1.2,14 0.6,-0.2 1.3,-0.7 1.9,-0.4 z" class="shadow" id="XMLID_886_" sodipodi:nodetypes="csccccccccccc"/><path d="m 252,422.1 c 0.6,0.4 0.5,1.3 0.5,1.5 0,1.9 4.9,11.6 14.3,19.9 7.1,6.2 21,15 25.6,11.1 0.9,-0.7 1.2,-1.7 1.3,-2.3 2.1,-6.9 -8.2,-15.9 -11.3,-18.6 -10,-8.6 -15.7,-13.7 -17.9,-15.1 -0.3,-0.2 -1.3,-0.8 -1.5,-2 -0.2,-0.8 0.3,-1.2 0.4,-2 0.3,-2 -3,-4.2 -5.3,-5.2 -1.8,-0.8 -5.9,-2.6 -8.6,-0.5 -4.3,3.1 -1.5,12.6 0.5,13 0.5,0.3 1.3,-0.2 2,0.2 z" class="skin penis" id="XMLID_887_" sodipodi:nodetypes="csccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Penis_3.tw b/src/art/vector_revamp/layers/Penis_3.tw new file mode 100644 index 0000000000000000000000000000000000000000..e6b4b5f30aeb98527eac050c05c7dae4e05a511e --- /dev/null +++ b/src/art/vector_revamp/layers/Penis_3.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Penis_3 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 235.8,408.5 c 0.7,0.5 0.8,1.9 0.8,2.1 0,4 7.6,17.9 14.7,24.6 21.1,20.4 41.9,25.7 39.8,16.4 -0.3,-1.4 1.8,-2.1 2,-3 2.7,-8.8 -10.5,-22 -25,-34.2 -12.3,-10.2 -12.5,-9.7 -15.4,-11.6 -0.4,-0.3 -1,-0.7 -1.2,-2 -0.2,-1.1 0.7,-2.2 0.8,-3.1 0.4,-3.2 -3.9,-5.5 -7.9,-7.6 -3.1,-1.6 -9.2,-3.5 -12.6,-0.8 -7.2,5.8 -1.6,21.3 1.6,19.6 0.6,-0.3 1.6,-1 2.4,-0.4 z" class="shadow" id="XMLID_884_" sodipodi:nodetypes="csccccccccccc"/><path d="m 235.7,408.5 c 0.8,0.6 0.8,2 0.8,2.1 0.1,2.7 6.8,16.4 20.3,28.1 10.1,8.8 29.6,21.2 36.2,15.6 1.2,-1 1.6,-2.3 1.9,-3.2 3,-9.8 -11.6,-22.4 -15.9,-26.2 -14,-12.2 -22.2,-19.3 -25.4,-21.3 -0.4,-0.3 -1.9,-1.2 -2.1,-2.7 -0.2,-1.2 0.4,-1.8 0.5,-2.7 0.4,-2.8 -4.3,-5.9 -7.6,-7.3 -2.6,-1.1 -8.3,-3.6 -12.2,-0.8 -6,4.4 -2.1,17.9 0.8,18.4 0.8,0.1 1.9,-0.7 2.7,0 z" class="skin penis" id="XMLID_885_" sodipodi:nodetypes="ccccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Penis_4.tw b/src/art/vector_revamp/layers/Penis_4.tw new file mode 100644 index 0000000000000000000000000000000000000000..d4ca509064e6c8ffe7c48ce44e7c9649f31fad30 --- /dev/null +++ b/src/art/vector_revamp/layers/Penis_4.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Penis_4 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 218.8,395.4 c 1,0.6 1,2.4 1,2.7 0,5.1 9.7,22.6 18.6,31.2 26.7,25.9 53,32.5 50.4,20.7 -0.4,-1.8 2.2,-2.8 2.6,-3.8 3.5,-11.1 -13.2,-27.9 -31.6,-43.3 -15.5,-12.9 -15.8,-12.3 -19.4,-14.6 -0.5,-0.4 -1.3,-0.9 -1.6,-2.6 -0.3,-1.3 0.9,-2.8 1,-3.9 0.6,-4 -4.9,-7 -10,-9.6 -3.9,-2 -11.7,-4.4 -16,-1 -9.2,7.3 -2,27 2,24.8 0.8,-0.4 2,-1.3 3,-0.6 z" class="shadow" id="XMLID_882_" sodipodi:nodetypes="csccccccccccc"/><path d="m 218.6,395.4 c 1.1,0.7 1.1,2.5 1.1,2.8 0.1,3.5 8.8,21.1 25.9,36 12.9,11.2 37.9,27.2 46.4,20.1 1.5,-1.3 2,-3 2.4,-4.2 3.8,-12.5 -14.8,-28.7 -20.4,-33.6 -18,-15.6 -28.5,-24.7 -32.5,-27.4 -0.5,-0.4 -2.4,-1.5 -2.8,-3.5 -0.3,-1.5 0.5,-2.3 0.7,-3.5 0.4,-3.5 -5.4,-7.5 -9.7,-9.3 -3.3,-1.4 -10.7,-4.6 -15.6,-1.1 -7.7,5.6 -2.8,22.8 1.1,23.5 0.9,0.4 2.3,-0.6 3.4,0.2 z" class="skin penis" id="XMLID_883_" sodipodi:nodetypes="cccccccsccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Penis_5.tw b/src/art/vector_revamp/layers/Penis_5.tw new file mode 100644 index 0000000000000000000000000000000000000000..e017419125e76bd8562d951557175690ac5daec1 --- /dev/null +++ b/src/art/vector_revamp/layers/Penis_5.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Penis_5 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 202.1,382.1 c 1.2,0.8 1.2,2.9 1.2,3.2 0,6.2 11.8,27.5 22.6,38 32.5,31.5 64.6,39.6 61.4,25.2 -0.4,-2.2 2.7,-3.4 3.1,-4.7 4.2,-13.5 -16.1,-34 -38.6,-52.7 -18.8,-15.7 -19.3,-14.9 -23.6,-17.8 -0.6,-0.4 -1.6,-1.1 -1.9,-3.1 -0.3,-1.6 1.1,-3.5 1.2,-4.8 0.8,-4.9 -6,-8.6 -12.1,-11.7 -4.8,-2.4 -14.3,-5.3 -19.5,-1.2 -11.2,8.9 -2.4,32.9 2.5,30.2 1,-0.3 2.6,-1.4 3.7,-0.6 z" class="shadow" id="XMLID_880_" sodipodi:nodetypes="csccccccccccc"/><path d="m 201.9,382.1 c 1.3,0.9 1.3,3 1.3,3.4 0.1,4.2 10.7,25.7 31.6,43.9 15.7,13.6 46.1,33.1 56.5,24.5 1.8,-1.6 2.5,-3.7 2.9,-5.1 4.7,-15.3 -18.1,-35 -24.9,-40.9 -22,-19.1 -34.8,-30.1 -39.6,-33.4 -0.6,-0.4 -2.9,-1.8 -3.4,-4.2 -0.3,-1.8 0.6,-2.8 0.9,-4.2 0.5,-4.2 -6.6,-9.1 -11.8,-11.4 -4,-1.7 -13,-5.6 -19,-1.3 -9.4,6.8 -3.4,27.8 1.3,28.7 1.2,0.3 2.8,-0.9 4.2,0 z" class="skin penis" id="XMLID_881_" sodipodi:nodetypes="ccccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Penis_6.tw b/src/art/vector_revamp/layers/Penis_6.tw new file mode 100644 index 0000000000000000000000000000000000000000..ef4557756aad7dfc421aa8b4e34632e971695ad8 --- /dev/null +++ b/src/art/vector_revamp/layers/Penis_6.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Penis_6 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 183.2,369.4 c 1.4,0.9 1.4,3.5 1.4,3.9 0,7.5 14.3,33.3 27.4,46 39.3,38.2 78.2,48 74.4,30.6 -0.5,-2.6 3.3,-4.1 3.8,-5.6 5.1,-16.4 -19.5,-41.2 -46.7,-63.9 -22.8,-19 -23.3,-18.1 -28.6,-21.5 -0.8,-0.5 -2,-1.3 -2.4,-3.8 -0.4,-2 1.3,-4.2 1.4,-5.8 0.9,-5.9 -7.2,-10.4 -14.7,-14.2 -5.8,-2.9 -17.3,-6.4 -23.6,-1.4 -13.5,10.8 -2.9,39.9 3,36.6 1.3,-0.6 3.1,-1.9 4.6,-0.9 z" class="shadow" id="XMLID_878_" sodipodi:nodetypes="csccccccccccc"/><path d="m 182.9,369.4 c 1.6,1 1.6,3.7 1.6,4.1 0.1,5.1 13,31.1 38.3,53.1 19,16.5 55.9,40.1 68.5,29.6 2.2,-2 3,-4.5 3.5,-6.2 5.6,-18.5 -21.9,-42.4 -30.2,-49.6 -26.6,-23.1 -42.1,-36.5 -48,-40.4 -0.8,-0.5 -3.5,-2.2 -4.1,-5.1 -0.4,-2.2 0.8,-3.4 1,-5.1 0.7,-5.1 -8,-11 -14.3,-13.8 -4.9,-2.1 -15.7,-6.8 -23,-1.6 -11.4,8.3 -4.1,33.7 1.6,34.8 1.4,0.5 3.4,-1 5.1,0.2 z" class="skin penis" id="XMLID_879_" sodipodi:nodetypes="ccccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Pubic_Hair_Bush.tw b/src/art/vector_revamp/layers/Pubic_Hair_Bush.tw new file mode 100644 index 0000000000000000000000000000000000000000..25881d0541d62906e7ab4f6e9be1b8ee69923ea6 --- /dev/null +++ b/src/art/vector_revamp/layers/Pubic_Hair_Bush.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Pubic_Hair_Bush [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 308.13404,461.37031 c -0.42215,-1.28729 0.0816,-2.88322 0.21937,-4.35713 0.83735,-0.9231 3.39354,-0.46675 4.27169,-0.32918 -1.30887,-1.90043 -2.57358,-4.54221 -2.26693,-6.80614 1.738,0.72332 5.26268,-0.10717 6.41461,-0.67323 -0.0359,-0.042 -3.73233,-5.5593 -3.73233,-5.5593 l 9.37697,-2.92546 c -2.29483,-1.16082 -2.9398,-3.27348 -0.88244,-5.06275 2.05735,-1.78926 4.65981,-3.19815 6.96574,-5.50002 2.30592,-2.30188 5.70181,-7.11497 7.1718,-9.21523 -3.30249,2.57531 -8.11937,4.56169 -12.38086,6.76405 3.87939,-4.08083 5.14191,-8.70938 6.56483,-13.30436 -2.75485,4.55035 -5.96287,8.80998 -11.80357,11.38073 0.0795,-2.69081 -1.1771,-5.33024 -2.60799,-7.96296 -0.22411,2.1009 0.65963,4.43504 -1.59857,6.10771 -1.87893,0.66093 -0.47641,0.32561 -1.63156,-0.61901 -1.15515,-0.94462 -1.07324,-2.86249 -0.92674,-4.77175 0.20638,0.15948 -5.2425,3.40307 -10.88069,2.89338 0.39636,-1.77718 -0.0929,-3.59654 -0.547,-5.41423 -1.43947,1.75633 -2.54315,3.7645 -5.73335,4.20778 -2.4605,-0.40363 -2.23191,-1.95973 -2.31051,-3.38418 -1.13808,1.43053 -1.96377,3.07348 -4.50289,3.5513 -1.9104,-1.28206 -0.74793,-2.77125 -0.61109,-4.22119 -1.53049,0.96737 -3.1427,1.90033 -3.58898,3.32421 -0.54093,-1.76679 -2.17255,-2.5156 -3.54365,-3.50756 -0.0389,1.41793 0.87573,3.17815 -1.27914,3.8365 -1.65822,-2.01275 -2.66902,-3.03894 -4.81025,-3.3656 0.25465,1.17773 3.29056,2.50997 -1.24916,3.42134 -2.99547,0.66615 -4.88472,-1.06452 -6.85325,-2.62341 1.01031,2.71963 1.71296,5.80844 3.5463,7.54043 -2.27359,-0.46197 -8.62398,-1.3164 -12.1147,-8.21411 -1.18774,2.82298 -3.39707,5.36503 -1.4599,9.04737 -4.08,-0.2462 -6.1875,-2.55065 -8.40846,-4.73671 0.87978,2.88663 0.68095,5.90808 3.36457,8.56923 -3.64826,0.33795 -6.3127,-1.29171 -9.26707,-2.34153 3.9514,4.60614 8.75627,7.56631 13.86823,9.93423 1.34859,1.27311 6.10477,6.04621 5.62068,7.31932 2.82401,-2.71219 1.92529,-1.87573 4.91302,-0.16768 2.79974,2.66519 2.83014,1.95151 3.16745,4.12421 1.92433,1.50259 3.84866,1.63676 5.77299,0.97623 0,0 -2.01653,2.6409 -4.35182,2.38868 1.74775,0.61934 4.06788,-0.37099 5.9306,-0.0583 1.77365,1.74778 0.43253,3.2124 -1.41503,4.63097 2.73367,-0.28074 5.4652,-0.70503 8.23933,1.72431 1.73622,1.49945 2.78135,3.0373 3.78142,4.57765 1.20741,0.19088 2.97961,-0.0117 1.69438,1.91564 0.94867,-0.32712 2.37843,-0.52377 1.68983,-1.29489 1.14987,0.78895 2.29975,0.66306 3.44962,0.4995 -0.7627,-0.5118 -1.8836,-1.08502 -0.37378,-1.68488 l -1.10478,-0.10762 -0.6613,-0.63638 c -0.0538,-0.38752 0.0965,-0.69562 0.57239,-0.87715 -0.55161,-0.19514 -0.82876,-0.0489 -0.99909,0.22508 0.0467,-0.74904 -0.0233,-1.52988 -0.30014,-2.36715 -0.37451,0.28516 -0.76038,0.25212 -1.16432,-0.28668 0.002,-0.91711 -0.0725,-1.84829 0.23704,-2.70958 -0.16694,0.37927 -0.59322,0.44156 -1.01892,0.50457 0.38567,-0.60697 0.46502,-1.15824 0.53332,-1.7075 -0.4944,0.29755 -1.11943,0.0252 -1.05496,-0.82437 0.33836,-0.10834 0.62446,-0.4585 0.67693,-0.79556 -0.43615,-0.85876 -0.10806,-1.64444 -0.0504,-2.55807 0.27076,0.89645 0.49642,1.81024 1.13611,2.5648 0.13715,-0.65786 0.62993,-1.03497 1.15644,-1.38545 0.48685,0.95084 0.54472,1.96297 0.4514,2.9967 0.23312,-0.65185 0.73464,-0.76691 1.27616,-0.80195 0.12849,0.90282 0.30765,1.81288 -0.27027,2.61479 0.54567,-0.30808 1.13159,-0.3075 1.62165,-1.04187 -0.0858,1.11195 -0.27643,2.20992 -0.67396,3.28031 0.25461,-0.26873 0.6401,-0.4284 0.66867,-0.8855 0.23427,0.66706 0.0246,1.11215 -0.0483,1.62563 0.11494,-0.22262 0.30901,-0.3028 0.63201,-0.15092 -0.23603,0.51298 -0.21479,0.99569 0.25629,1.42548 -0.0542,-0.28824 -0.10088,-0.57291 0.23199,-0.67779 0.40976,0.32368 0.52422,0.69166 0.51908,1.07758 -0.002,0.53232 -0.031,0.73901 0.15212,1.14793 -0.0165,-0.005 1.73831,1.6893 1.73831,1.6893 0.38852,-0.50132 0.92958,-0.77384 1.56782,-0.90059 1.1846,0.75012 2.56975,0.89857 3.88755,1.24905 -0.4332,-1.00083 0.027,-1.15529 0.77386,-1.03816 1.46038,-0.0697 1.24438,0.67559 1.26775,1.30448 1.46259,-1.00786 1.07324,-1.76849 1.50981,-2.14482 0.64839,0.13025 1.1895,0.0102 1.588,-0.44262 z" id="path4354-2" class="pubic_hair" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Pubic_Hair_Neat.tw b/src/art/vector_revamp/layers/Pubic_Hair_Neat.tw new file mode 100644 index 0000000000000000000000000000000000000000..c07a01feafc16b815cf22760a8feb3eb93cd598b --- /dev/null +++ b/src/art/vector_revamp/layers/Pubic_Hair_Neat.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Pubic_Hair_Neat [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="M 487.94,432.27" class="hair" id="path225"/><path d="m 286.65609,461.98173 c 0.16638,0.005 0.65051,0.34419 0.56084,0.39247 0.19977,0.003 0.32856,-0.0658 0.40338,-0.1882 0.33422,0.12782 0.51696,0.25564 0.58043,0.38346 0.21609,-0.0894 0.4782,-0.15944 1.0133,-0.11503 0.43584,0.10754 0.68692,0.23419 0.82103,0.37294 -0.008,0.0927 0.52663,-0.14421 0.736,-0.32954 -0.90113,-4.11148 -2.10193,-8.21187 -1.94173,-12.36266 2.71856,4.23162 8.61462,12.04671 8.61462,12.04671 0.38989,0.13811 0.74234,0.29026 0.96675,0.49043 0.24847,-0.10956 0.69829,-0.13102 1.10404,-0.17177 0.58751,0.0888 1.10811,0.2044 1.59165,0.33481 0.6335,-0.21513 1.27181,-0.4289 2.23112,-0.55239 0.52527,0.0705 1.01879,0.15999 1.33811,0.35403 0.15476,-0.34455 0.70352,-0.50509 1.09301,-0.76827 0,0 0.44736,-5.11636 0.76594,-5.196 -0.12435,-0.50648 -0.23931,-1.02703 0.0439,-2.14488 l 2.01173,-3.54551 c -0.43128,0.39066 -0.44976,-0.25068 -0.56821,-0.64206 -1.08258,-0.32189 7.91303,-16.94494 10.50549,-18.79352 -0.63953,0.33539 -13.02,1.46541 -13.26141,1.25849 -0.98823,0.039 -1.25854,-0.32319 -1.79438,-0.53699 -1.41965,0.37941 -3.15091,0.48875 -4.77102,0.69443 -0.81811,-0.007 -1.4182,-0.1762 -1.83865,-0.47812 -1.18533,0.5001 -2.60972,0.62168 -3.95727,0.86493 -0.81281,-0.12067 -1.55687,-0.28389 -2.06256,-0.59468 -1.39849,0.35479 -3.03308,0.59666 -5.10777,0.62804 -0.72143,-0.13335 -1.41712,-0.2812 -1.90627,-0.54521 -1.13229,0.38897 -2.62485,0.50346 -4.37547,0.42133 -0.93928,-0.0262 -1.90812,-0.0174 -2.53422,-0.41368 -0.42921,0.26544 -1.18226,0.18798 -1.84402,0.20719 -0.52649,0.46904 -18.28084,2.95756 -19.55531,2.12087 0.66622,-0.3004 16.89738,8.89776 17.23132,10.56747 0.62897,0.18482 2.21565,2.89524 2.70926,3.29872 0.93409,1.06603 1.82894,2.13206 2.47505,3.19809 1.19621,0.89238 2.23683,1.80421 3.09974,2.73825 0.58096,0.62421 0.87351,1.24843 1.06066,1.87264 0.77048,0.99028 1.01013,0.94544 1.39224,1.17839 0.30699,0.2588 0.57315,0.52927 0.59205,0.87038 0.66159,0.27273 0.91436,0.709 1.1695,1.14431 0.0913,0.17244 0.0921,0.30177 -0.0352,0.37012 0.27389,0.19768 0.54396,0.36486 0.79721,0.39746 0.0924,-0.009 0.65123,0.76933 0.6451,1.17255 z" id="path5158" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccc" class="pubic_hair"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Pubic_Hair_Strip.tw b/src/art/vector_revamp/layers/Pubic_Hair_Strip.tw new file mode 100644 index 0000000000000000000000000000000000000000..b22d420ff559544c9790d6a40c198429fcb65c12 --- /dev/null +++ b/src/art/vector_revamp/layers/Pubic_Hair_Strip.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Pubic_Hair_Strip [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 290.07972,451.35547 c -5.26522,-8.42781 -6.8522,-25.02276 -6.40057,-24.40984 l -1.97847,0.0413 c -0.0968,0.0277 0.0996,15.01567 6.42775,24.67062 z" id="path4354" class="pubic_hair" sodipodi:nodetypes="ccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Pussy.tw b/src/art/vector_revamp/layers/Pussy.tw new file mode 100644 index 0000000000000000000000000000000000000000..4a0fe0e046070c2e96139a36dbae95fcb1b35709 --- /dev/null +++ b/src/art/vector_revamp/layers/Pussy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Pussy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccc" id="path6854" class="shadow" d="m 299.10498,462.39177 c -2.35316,0.0854 -4.70179,0.18592 -7.09885,0.12501 -0.0824,0.0494 -3.69251,-8.40114 -3.88549,-16.1264 2.52772,6.08878 11.00392,15.97054 10.98435,16.0013 z"/><path d="m 299.10498,462.39177 -7.09885,0.12501 c 0,0 -3.56283,-8.47896 -3.88549,-16.1264 2.35055,6.18003 10.98435,16.0013 10.98435,16.0013 z" class="labia" id="Vagina" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="cccscscc" id="path6854-9-8" class="shadow" d="m 292.63216,466.59055 c -1.73061,-0.19437 -7.03001,-3.72505 -5.70219,-9.91665 0.1601,-2.76887 0.0867,-6.16317 1.17318,-10.18253 0.28641,1.03144 0.69131,1.94771 0.91322,2.88009 0.0307,0.12881 -0.12066,0.32495 -0.0898,0.45181 0.72643,2.99258 1.24632,5.58783 1.7703,8.72249 0.22169,1.32631 0.89219,2.60457 1.38619,4.09161 1.34088,1.31773 0.15979,2.63545 0.54911,3.95318 z"/><path d="m 292.63216,466.59055 c -1.86507,-0.54952 -6.66046,-3.79896 -5.70219,-9.91665 0.42844,-2.73531 0.15024,-6.23197 1.19594,-10.25643 0.27357,0.96308 1.3884,2.11196 0.90145,2.97052 -0.27993,0.49354 -0.17918,0.53324 -0.0547,1.05621 0.49134,2.00515 0.99352,3.99243 1.20405,5.86369 0.42793,3.80361 1.81823,6.40782 1.90634,6.32948 1.01304,1.31773 0.0191,2.63545 0.54911,3.95318 z" class="skin" id="path1025" sodipodi:nodetypes="cscscsccc"/><path sodipodi:nodetypes="cccccccc" id="path2716" class="shadow" d="m 290.61167,451.63404 c 0,0 -0.78182,-1.41165 -1.1002,-2.03943 0,0 -0.21834,-0.0813 -0.33065,-0.094 -0.34764,-0.10249 -0.86066,0.44582 -1.06839,0.90358 -0.60478,0.75697 -0.3926,1.36358 -0.28906,1.55988 0.39221,0.71764 2.20573,0.62723 2.6884,-0.0278 0.13288,-0.11236 0.1371,-0.30214 0.0999,-0.30214 z"/><path d="m 290.61167,451.63404 c 0,0 -0.78182,-1.41165 -1.1002,-2.03943 0,0 -0.21834,-0.0813 -0.33065,-0.094 -0.33065,-0.094 -0.79324,0.47954 -1.06839,0.90358 -0.20634,0.31802 -0.57552,1.07272 -0.28906,1.55988 0.5294,0.85571 2.53188,0.35264 2.6884,-0.0278 0.0737,-0.11236 0.1275,-0.30214 0.0999,-0.30214 z" class="labia" id="XMLID_891_-5" sodipodi:nodetypes="cccscccc"/><path sodipodi:nodetypes="ccccscc" id="path6854-9" class="shadow" d="m 301.16804,466.55174 c 0.50134,-2.76742 2.59402,-7.92667 -4.70124,-12.03808 -2.47545,-1.86861 -4.84755,-4.98299 -8.3269,-8.07647 0.37045,0.99586 0.38749,3.21147 0.38749,3.21147 0,0 0.97999,0.0942 1.05319,0.23802 3.11283,6.13944 7.49401,9.79553 9.40544,12.53571 0.14956,1.46264 -1.23066,2.71722 2.18202,4.12935 z"/><path d="m 301.16804,466.55174 c 0.1522,-2.28319 2.8586,-7.43057 -4.70124,-12.03808 -2.8757,-1.75266 -4.90969,-4.97366 -8.34395,-8.08216 0.22774,0.85313 -0.63101,3.51922 0.66276,3.20922 0.4373,-0.10479 0.81609,0.13292 1.09603,0.60885 1.32562,2.37763 3.08839,4.85882 4.4723,6.29919 2.84306,2.95909 4.63208,5.87363 4.63208,5.87363 0.21939,1.35814 -1.02735,2.71722 2.18202,4.12935 z" class="skin" id="path1023" sodipodi:nodetypes="cscscscc"/><path sodipodi:nodetypes="ccc" id="path1126-6" class="shadow" d="m 290.54407,451.69582 c 4.14509,6.87889 3.90142,4.72146 6.65769,10.77769 -3.7205,-6.98985 -3.68107,-4.95515 -6.65769,-10.77769 z"/><path sodipodi:nodetypes="ccc" id="path1126-6-1" class="shadow" d="m 289.4631,452.39396 c 2.38282,6.92091 2.62899,7.89107 3.65068,10.1027 -1.00056,-1.52637 -2.58149,-5.88488 -3.65068,-10.1027 z"/><path d="m 290.73545,453.71977 c 3.55162,5.89401 3.75219,3.56791 6.11383,8.75706 -3.18783,-5.9891 -3.56339,-3.76815 -6.11383,-8.75706 z" class="shadow" id="path2763" sodipodi:nodetypes="ccc"/><path d="m 290.71887,453.74374 c 2.04169,5.93003 1.75231,6.85793 2.62772,8.75292 -0.85731,-1.30784 -1.45577,-5.09919 -2.62772,-8.75292 z" class="shadow" id="path2765" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Pussy_Piercing.tw b/src/art/vector_revamp/layers/Pussy_Piercing.tw new file mode 100644 index 0000000000000000000000000000000000000000..359297234eb22196f6c6979d9f6141a7e9e925b7 --- /dev/null +++ b/src/art/vector_revamp/layers/Pussy_Piercing.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Pussy_Piercing [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 293.62018,454.94004 c 0.1,-0.1 1.3,0.5 1.4,1.7 0.1,0.9 -0.6,2 -1.7,2 -1,0.1 -1.8,-0.7 -2,-1.5 -0.2,-1.1 0.6,-2 0.7,-2 0.1,0 -0.6,1.1 -0.2,1.9 0.3,0.4 0.8,0.8 1.3,0.7 0.7,-0.1 1.2,-0.7 1.2,-1.2 0.1,-0.9 -0.8,-1.6 -0.7,-1.6 z" class="steel_piercing" id="XMLID_528_"/><path d="m 289.93897,455.31149 c 0.1,0 0.7,1.2 0,2.2 -0.5,0.7 -1.7,1.1 -2.6,0.4 -0.8,-0.6 -0.9,-1.7 -0.5,-2.5 0.5,-0.9 1.8,-1.1 1.8,-1 0,0.1 -1.2,0.4 -1.3,1.3 -0.1,0.4 0.1,1.1 0.6,1.4 0.5,0.4 1.3,0.2 1.7,-0.2 0.6,-0.5 0.2,-1.6 0.3,-1.6 z" class="steel_piercing" id="XMLID_529_"/><path d="m 289.58138,459.13801 c 0.1,0 0.8,1.2 0.3,2.2 -0.4,0.8 -1.6,1.2 -2.6,0.7 -0.9,-0.5 -1.1,-1.6 -0.7,-2.4 0.4,-1 1.7,-1.2 1.7,-1.2 0.1,0.1 -1.2,0.5 -1.2,1.4 -0.1,0.4 0.2,1.1 0.7,1.3 0.6,0.3 1.3,0.1 1.7,-0.4 0.5,-0.5 0,-1.6 0.1,-1.6 z" class="steel_piercing" id="XMLID_530_"/><path d="m 297.78934,458.63353 c 0.1,-0.1 1.4,0.4 1.7,1.4 0.2,0.9 -0.4,2 -1.4,2.2 -1,0.3 -1.9,-0.4 -2.1,-1.2 -0.4,-1 0.4,-2 0.4,-2 0.1,0 -0.4,1.2 0.1,1.9 0.3,0.4 0.9,0.7 1.4,0.5 0.6,-0.2 1,-0.9 1,-1.4 0,-0.9 -1.2,-1.4 -1.1,-1.4 z" class="steel_piercing" id="XMLID_531_"/><path d="m 299.47329,463.1065 c 0.1,-0.1 1.4,0.4 1.7,1.5 0.2,0.9 -0.4,2 -1.4,2.2 -1,0.2 -1.9,-0.5 -2.1,-1.2 -0.4,-1 0.4,-2 0.4,-2 0.1,0 -0.4,1.2 0.1,1.9 0.3,0.4 0.9,0.7 1.4,0.5 0.6,-0.2 1,-0.9 1,-1.3 -0.1,-1 -1.1,-1.5 -1.1,-1.6 z" class="steel_piercing" id="XMLID_532_"/><path d="m 290.58817,462.89093 c 0.1,0 0.8,1.2 0.3,2.2 -0.4,0.8 -1.6,1.2 -2.6,0.7 -0.9,-0.5 -1.1,-1.6 -0.7,-2.4 0.4,-1 1.7,-1.2 1.7,-1.2 0.1,0.1 -1.2,0.5 -1.2,1.4 -0.1,0.4 0.2,1.1 0.7,1.3 0.6,0.3 1.3,0.1 1.7,-0.4 0.4,-0.5 0,-1.6 0.1,-1.6 z" class="steel_piercing" id="XMLID_533_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Pussy_Piercing_Heavy.tw b/src/art/vector_revamp/layers/Pussy_Piercing_Heavy.tw new file mode 100644 index 0000000000000000000000000000000000000000..63492737123ae8fcd392d4efbc3f3e24d314435e --- /dev/null +++ b/src/art/vector_revamp/layers/Pussy_Piercing_Heavy.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Pussy_Piercing_Heavy [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 291.54981,461.60083 c 0.2,0 2,2.8 0.8,5.2 -1,2 -3.6,3.1 -6,2 -2.1,-1.1 -2.8,-3.7 -2,-5.6 0.9,-2.4 3.7,-3.1 3.9,-2.9 0.1,0.2 -2.6,1.4 -2.7,3.6 -0.1,1.2 0.5,2.6 1.9,3.1 1.4,0.6 3.1,0 3.9,-1 1.3,-1.7 0.1,-4.3 0.2,-4.4 z" class="steel_piercing" id="XMLID_512_"/><ellipse ry="2.0000744" rx="1.8000669" cy="-502.68118" cx="-218.76495" class="steel_piercing" transform="rotate(172.03924)" id="XMLID_517_"/><ellipse ry="1.8000669" rx="1.7000633" cy="-503.97836" cx="-221.59023" class="steel_piercing" transform="rotate(172.03924)" id="XMLID_518_"/><path d="m 291.24614,458.0085 c 0.2,0 1.7,3 0.1,5.2 -1.2,1.8 -4.1,2.6 -6.1,1.2 -2,-1.4 -2.2,-4.1 -1.2,-5.8 1.2,-2.2 4.2,-2.6 4.3,-2.4 0.1,0.2 -2.8,1.1 -3.1,3.1 -0.2,1.2 0.2,2.6 1.4,3.4 1.3,0.9 3.1,0.4 4,-0.4 1.3,-1.5 0.5,-4.3 0.6,-4.3 z" class="steel_piercing" id="XMLID_519_"/><ellipse ry="2" rx="1.8" cy="461.40851" cx="283.84613" class="steel_piercing" id="XMLID_520_"/><ellipse ry="1.8" rx="1.7" cy="463.7085" cx="285.84613" class="steel_piercing" id="XMLID_521_"/><path d="m 296.04874,461.50971 c -0.2,0 -1.4,3.2 0.4,5.2 1.4,1.7 4.3,2.2 6.2,0.6 1.9,-1.5 1.9,-4.3 0.8,-5.9 -1.3,-2.1 -4.4,-2.2 -4.4,-2 0,0.2 2.8,0.8 3.4,2.8 0.3,1.1 0,2.6 -1.1,3.5 -1.2,1 -3,0.7 -4,-0.2 -1.7,-1.2 -1.1,-4 -1.3,-4 z" class="steel_piercing" id="XMLID_522_"/><ellipse ry="2.0000093" rx="1.8000083" cy="490.00046" cx="262.68652" class="steel_piercing" transform="rotate(-4.7982784)" id="XMLID_523_"/><ellipse ry="1.8000085" rx="1.7000082" cy="491.17413" cx="259.87625" class="steel_piercing" transform="rotate(-4.7983462)" id="XMLID_524_"/><path d="m 293.60229,458.12012 c -0.2,0 -0.8,3.4 1.3,5.1 1.7,1.3 4.6,1.4 6.2,-0.5 1.5,-1.9 1,-4.5 -0.4,-6 -1.8,-1.8 -4.7,-1.3 -4.7,-1.2 -0.1,0.3 2.9,0.3 3.9,2.1 0.5,1.1 0.5,2.6 -0.4,3.6 -1.1,1.2 -2.8,1.2 -4,0.6 -1.7,-0.9 -1.7,-3.8 -1.9,-3.7 z" class="steel_piercing" id="XMLID_525_"/><ellipse ry="2.0000699" rx="1.8000628" cy="526.64166" cx="161.29683" class="steel_piercing" transform="rotate(-15.705363)" id="XMLID_526_"/><ellipse ry="1.8000628" rx="1.7000594" cy="526.31403" cx="164.18712" class="steel_piercing" transform="rotate(-15.705363)" id="XMLID_527_"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Pussy_Tattoo.tw b/src/art/vector_revamp/layers/Pussy_Tattoo.tw new file mode 100644 index 0000000000000000000000000000000000000000..3882cac1b74dc0a27d9ad6404265b6dbe0238382 --- /dev/null +++ b/src/art/vector_revamp/layers/Pussy_Tattoo.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Pussy_Tattoo [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="fill:none;stroke:none" d="m 253.62239,430.50769 c 14.1376,12.59209 60.92413,9.84192 72.85898,-5.2246" id="path4363" sodipodi:nodetypes="cc"/><text xml:space="preserve" id="text4365" style="font-size:12px;line-height:0%;text-align:center;text-anchor:middle" x="45.367271" y="18.561554"><textPath xlink:href="#path4363" id="textPath4369" style="font-size:12px;text-align:center;text-anchor:middle">'+_art_pussy_tattoo_text+'</textPath></text></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Shoes_Boot.tw b/src/art/vector_revamp/layers/Shoes_Boot.tw new file mode 100644 index 0000000000000000000000000000000000000000..8a99d4d9661f504d3d9975012cdb95224a3bd4c9 --- /dev/null +++ b/src/art/vector_revamp/layers/Shoes_Boot.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Shoes_Boot [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 410.16185,900.0141 c 2.86198,8.5845 -2.04252,30.0269 -2.04252,30.0269 -2.6082,0.68854 -3.40523,0.43588 -4.22778,6.50664 -0.62624,4.62187 1.57451,13.48604 0.72183,20.15407 -0.70731,5.53119 -1.99538,11.20183 -4.78637,16.02933 -2.73689,4.73391 -6.44108,9.36425 -11.28012,11.91064 -3.96775,2.0879 -9.22079,3.98196 -13.2869,2.09276 -4.86908,-2.26228 -7.20428,-8.52988 -8.34573,-13.77611 -3.12418,-14.35908 3.89312,-29.67483 5.11156,-43.78772 0.56958,-9.56894 0.56958,-17.42915 0.45566,-21.87186 0,-0.78196 0.5419,-1.93558 0.55511,-3.02502 0.0176,-1.4499 -0.49225,-2.78612 -0.49225,-2.98125 3.13628,-27.51762 -3.62235,-80.17699 -7.02883,-121.55654 -1.76091,-21.39034 -8.15834,-63.86913 -8.15834,-63.86913 27.93153,-9.28995 53.21077,9.69771 71.38941,-8.39445 1.69105,35.38515 -7.04987,61.39476 -7.99949,92.08389 0.26562,31.67469 -6.78797,59.35802 -10.58524,100.45785 z" class="shoe" id="XMLID_476_" sodipodi:nodetypes="ccsaaaaaccscscccc"/><path d="m 220.3433,696.48401 c 8.38156,-0.20607 59.08473,13.7755 77.55825,9.34059 5.76359,46.33045 -41.72917,95.75159 -43.05923,107.72214 -1.33006,11.97055 -6.25632,16.9788 -12.5741,57.54565 0,0 -0.5542,6.09611 1.55173,11.08384 0.88671,2.21677 1.55174,2.32761 2.77096,4.21186 3.10348,4.98773 4.21186,12.63557 3.65767,18.28833 -0.44335,4.65521 -1.77341,4.65521 -3.43599,10.30797 -1.77341,6.20695 -2.10593,15.2957 -2.66012,33.36236 0,1.66257 -0.44336,5.54192 -0.44336,7.20449 -0.44335,0.33252 -2.21676,0.33252 -2.88179,0 0.11084,-1.33006 0.11084,-3.87934 0.11084,-5.43108 -0.22168,-9.31042 1.33006,-28.04211 -0.33252,-29.03966 -1.10838,-0.66503 -18.99219,8.39588 -21.3198,14.8245 -4.65521,13.52229 -2.54928,18.73169 -6.20695,23.60858 -3.10347,4.21186 -22.11225,7.09366 -31.75519,6.31779 -10.19714,-0.88671 -12.08139,-4.21186 -12.74642,-5.32024 -2.32761,-4.43354 -2.66012,-11.97055 -0.55419,-14.51983 0.77587,-0.99755 1.33006,-0.55419 3.32515,-1.21922 3.65767,-1.10839 6.31779,-3.76851 7.2045,-4.76606 3.10347,-3.54682 12.49702,-12.91267 16.01614,-15.51737 3.99535,-14.0275 5.72631,-17.90314 6.65031,-23.71941 0,0 0.77586,-4.3227 1.10838,-9.19959 0.44335,-5.43108 8.82169,-104.08788 18.04646,-176.75792 0,-2.21677 0.30178,-11.78826 -0.0307,-18.32772 z" class="shoe" id="XMLID_477_" sodipodi:nodetypes="ccscccccccccsccccccccccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Shoes_Boot_Wide.tw b/src/art/vector_revamp/layers/Shoes_Boot_Wide.tw new file mode 100644 index 0000000000000000000000000000000000000000..fb0a68535d2c3ce658d9b6156ea5637e8d725cf8 --- /dev/null +++ b/src/art/vector_revamp/layers/Shoes_Boot_Wide.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Shoes_Boot_Wide [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"/></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Shoes_Exterme_Heel.tw b/src/art/vector_revamp/layers/Shoes_Exterme_Heel.tw new file mode 100644 index 0000000000000000000000000000000000000000..107b25aedd4b448cb215abdbb233b346b91a5ab2 --- /dev/null +++ b/src/art/vector_revamp/layers/Shoes_Exterme_Heel.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Shoes_Exterme_Heel [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccccccc" id="path3082" class="shoe" d="m 197.71421,928.07188 c 0.84235,-11.67605 -1.71189,-49.689 14.90659,-65.62886 1.90184,-5.28177 6.69781,-82.56184 6.89573,-82.59309 l 49.973,2.42 c 3.07009,2.23279 -24.33404,71.01812 -25.51981,81.01101 3.22845,1.13574 4.21503,15.11979 3.86846,24.30368 -6.98224,17.7335 -5.47757,69.39834 -5.47757,69.39834 l -0.94939,-0.18887 c 0,0 -4.47938,-36.71186 -4.23419,-52.20785 -7.90677,18.65992 -21.83411,60.13149 -30.39884,64.8018 -3.0313,-0.44283 -4.27378,0.68941 -6.41589,-1.37679 -3.4832,-21.25345 -2.64809,-39.93937 -2.64809,-39.93937 z"/><path sodipodi:nodetypes="ccccaccac" id="path3084" class="shoe" d="m 375.8095,877.51789 c 7.02973,-8.58252 3.90877,-84.70624 -1.77465,-84.88229 l 42.09097,1.29066 -14.30132,77.42063 c 5.687,16.577 11.33733,41.86577 11.132,63.283 -0.18518,19.31554 -3.388,29.161 -11.132,56.87 -2.904,3.63 -14.52,2.299 -18.392,-0.121 -8.228,-22.99 -12.09246,-37.92868 -13.33653,-57.596 -1.19009,-18.81385 3.65653,-31.702 5.71353,-56.265 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Shoes_Exterme_Heel_Wide.tw b/src/art/vector_revamp/layers/Shoes_Exterme_Heel_Wide.tw new file mode 100644 index 0000000000000000000000000000000000000000..b9c72a076e3fb10a7e5da599ddf660ba9a8e8a20 --- /dev/null +++ b/src/art/vector_revamp/layers/Shoes_Exterme_Heel_Wide.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Shoes_Exterme_Heel_Wide [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 197.71421,928.07188 c 0.84235,-11.67605 -1.71189,-49.689 14.90659,-65.62886 1.90184,-5.28177 16.95086,-130.29155 17.14878,-130.3228 l 49.973,2.42 c 3.07009,2.23279 -34.58709,118.74783 -35.77286,128.74072 3.22845,1.13574 4.21503,15.11979 3.86846,24.30368 -6.98224,17.7335 -5.47757,69.39834 -5.47757,69.39834 l -0.94939,-0.18887 c 0,0 -4.47938,-36.71186 -4.23419,-52.20785 -7.90677,18.65992 -21.83411,60.13149 -30.39884,64.8018 -3.0313,-0.44283 -4.27378,0.68941 -6.41589,-1.37679 -3.4832,-21.25345 -2.64809,-39.93937 -2.64809,-39.93937 z" class="shoe" id="XMLID_490_" sodipodi:nodetypes="cccccccccccc"/><path d="m 375.8095,877.51789 c 8.80066,-8.83551 2.15407,-133.54898 -3.89597,-133.67266 l 42.09097,1.29066 -12.18,126.211 c 5.687,16.577 11.33733,41.86577 11.132,63.283 -0.18518,19.31554 -3.388,29.161 -11.132,56.87 -2.904,3.63 -14.52,2.299 -18.392,-0.121 -8.228,-22.99 -12.09246,-37.92868 -13.33653,-57.596 -1.19009,-18.81385 3.65653,-31.702 5.71353,-56.265 z" class="shoe" id="XMLID_491_" sodipodi:nodetypes="ccccaccac"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Shoes_Flat.tw b/src/art/vector_revamp/layers/Shoes_Flat.tw new file mode 100644 index 0000000000000000000000000000000000000000..61ecc146daebad69754a37081487e78d590104f3 --- /dev/null +++ b/src/art/vector_revamp/layers/Shoes_Flat.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Shoes_Flat [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 238.95,872.025 c -0.48582,4.8674 0.15294,9.06839 -0.0125,13.6 2.22973,9.99408 1.7936,14.49404 2.1125,20.825 0.022,5.27636 -1.31474,9.10565 -4.425,9.7625 -3.67413,1.13135 -6.74815,2.63651 -14.39869,1.5302 -9.18145,2.47145 -15.2613,8.08123 -19.65088,12.66319 -5.99441,11.15878 -13.47376,7.21014 -20.43229,8.63526 -2.26339,1.53969 -4.48245,2.64592 -5.92759,3.92125 -8.08027,1.27814 -9.78952,-1.14984 -9.34055,-4.7749 -4.73388,-0.59152 -3.07859,-2.61348 -3.4875,-4.1125 -2.1797,-0.86783 -3.38524,-2.25017 -1.8875,-5.5125 -1.64492,-1.58194 -0.59193,-3.0027 1.0125,-4.4125 -0.047,-1.41206 -0.0626,-2.02062 1.85427,-3.5987 2.47354,-1.16931 5.2035,-1.82041 6.88323,-3.0263 9.61678,-4.02794 17.69545,-9.58214 24.9375,-15.6 6.764,-7.70672 11.93927,-16.77333 16.725,-26.1125 0.38886,-5.72349 1.1106,-11.50246 2.49687,-17.39219 8.29195,1.78724 16.46415,2.06569 24.4617,0.1436 0.0134,4.46773 -0.288,9.28647 -0.92107,13.46109 z" class="shadow" id="path1284" sodipodi:nodetypes="ccccccccccccccccccc"/><path sodipodi:nodetypes="ccccccccccccccccccc" id="path1286" class="skin" d="m 238.95,872.025 c -0.78366,4.8674 -0.0123,9.06839 -0.0125,13.6 1.96104,9.99408 1.6598,14.49404 2.1125,20.825 -0.33122,5.1439 -1.39649,9.075 -4.425,9.7625 -3.7164,0.94114 -6.82187,2.30479 -14.39869,1.5302 -9.54221,2.255 -15.48251,7.9485 -19.65088,12.66319 -5.99441,10.40697 -13.47376,7.11956 -20.43229,8.63526 -2.68208,1.30708 -4.5396,2.61417 -5.92759,3.92125 -7.45032,0.85817 -9.58295,-1.28756 -9.34055,-4.7749 -4.44919,-0.9711 -3.04844,-2.65368 -3.4875,-4.1125 -1.9584,-0.90471 -3.25864,-2.27127 -1.8875,-5.5125 -1.25464,-1.53858 -0.48809,-2.99116 1.0125,-4.4125 0.0921,-1.45 0.40705,-2.1487 1.85427,-3.5987 2.78612,-0.81208 5.26912,-1.74541 6.88323,-3.0263 10.38085,-4.02794 18.06828,-9.58214 24.9375,-15.6 7.28492,-7.70672 12.23858,-16.77333 16.725,-26.1125 l 2.49687,-17.39219 24.4617,0.1436 c -0.20353,4.43674 -0.48332,9.25857 -0.92107,13.46109 z"/><path d="m 375.58471,902.04597 c 0.52386,-4.42278 1.19018,-8.77106 2.62778,-13.11184 -0.18418,-4.15006 -1.53153,-7.58074 -2.24386,-11.19255 1.41187,-3.81106 3.55196,-7.41574 3.75747,-11.68734 l 9.5403,1.19132 11.39699,0.54305 c -0.13161,5.61968 0.61689,10.96792 1.61199,16.17184 -0.39734,2.28591 -1.32892,4.4142 -1.48163,6.5833 0.49368,10.63259 0.94138,21.12141 0.78125,31.41875 1.02096,6.09599 4.65404,10.88578 -0.98008,20.3093 1.08539,5.03478 -0.79793,7.36352 -3.88112,9.44835 -0.76646,0.77233 -1.5056,1.34202 -2.34991,0.25285 -1.29478,4.61758 -3.69222,4.6425 -6.30536,3.64975 -1.58037,3.04176 -4.00867,3.2139 -7.08388,1.97332 -3.5406,3.44729 -7.70644,0.0206 -7.31963,-0.63385 -4.38119,2.60045 -6.80232,1.14845 -7.60246,-4.0751 0.35561,-2.38229 1.37471,-4.40392 1.37081,-7.1661 -0.32501,-1.77042 -0.20542,-3.64462 -0.12828,-5.82926 2.01476,-4.1624 4.14533,-8.22545 5.26725,-12.21996 2.26819,-8.61114 1.87934,-17.08855 3.02237,-25.62583 z" class="shadow" id="path1288" sodipodi:nodetypes="cccccccccccccccccccc"/><path sodipodi:nodetypes="cccccccccccccccccccc" id="path1290" class="skin" d="m 375.58471,902.04597 c 0.75862,-4.37061 1.32442,-8.74123 2.62778,-13.11184 0.0883,-4.25905 -1.39782,-7.63422 -2.24386,-11.19255 1.53488,-3.81106 3.75773,-7.41574 3.75747,-11.68734 l 9.6028,-0.87118 11.33449,2.60555 c -0.54348,5.61968 0.32614,10.96792 1.61199,16.17184 -0.64128,2.19443 -1.39646,4.38887 -1.48163,6.5833 0.33165,10.6866 0.61556,21.23002 0.78125,31.41875 0.89521,6.14315 4.16056,11.07084 -0.98008,20.3093 0.80111,5.03478 -1.4045,7.36352 -3.88112,9.44835 -0.7833,0.60391 -1.56661,0.73191 -2.34991,0.25285 -1.50732,4.13937 -3.80652,4.38532 -6.30536,3.64975 -1.64076,2.4379 -4.02654,3.0352 -7.08388,1.97332 -3.47099,3.02964 -7.70217,-0.005 -7.31963,-0.63385 -4.31272,2.15538 -6.70519,0.51711 -7.60246,-4.0751 0.46976,-2.38229 1.66083,-4.40392 1.37081,-7.1661 -0.0428,-1.77042 -0.0855,-3.64462 -0.12828,-5.82926 2.29215,-4.04352 4.45099,-8.09445 5.26725,-12.21996 2.52972,-8.61114 2.11758,-17.08855 3.02237,-25.62583 z"/><path sodipodi:nodetypes="ccc" id="path1292" class="shadow" d="m 396.35932,879.09548 c 0.33577,5.97053 1.94225,6.86306 4.45368,11.7344 -4.10767,-5.64573 -4.49649,-6.43544 -4.45368,-11.7344 z"/><path sodipodi:nodetypes="ccc" id="path1294" class="shadow" d="m 378.16403,886.94416 c 3.50178,-2.27327 4.23806,-2.786 5.89065,-7.82868 -0.78635,4.34205 -1.48231,5.32462 -5.89065,7.82868 z"/><path sodipodi:nodetypes="ccc" id="path1296" class="shadow" d="m 395.69892,943.48628 c -0.6807,3.78292 -1.85845,3.72528 -1.22527,8.57452 -1.10247,-5.75622 0.27648,-4.68977 1.22527,-8.57452 z"/><path sodipodi:nodetypes="ccc" id="path1298" class="shadow" d="m 389.12868,946.23737 c -0.6807,3.78292 -1.77006,4.43239 -1.13688,9.28163 -1.10247,-5.75622 0.18809,-5.39688 1.13688,-9.28163 z"/><path sodipodi:nodetypes="ccc" id="path1300" class="shadow" d="m 382.17591,947.91674 c -0.6807,3.78292 -1.37231,4.91853 -1.20317,9.74567 -0.74892,-5.60154 0.25438,-5.86092 1.20317,-9.74567 z"/><path sodipodi:nodetypes="ccc" id="path1302" class="shadow" d="m 375.34424,947.66262 c -0.6807,3.78292 -1.70377,4.56498 -1.79979,9.37002 -0.35118,-5.49105 0.851,-5.48527 1.79979,-9.37002 z"/><path sodipodi:nodetypes="cscsc" id="path1304" class="shadow" d="m 233.85987,866.45583 c 0.20162,3.58528 1.78152,8.46827 1.27913,12.44825 -0.33424,2.64785 -1.53099,3.78741 -2.39316,6.67724 0.49516,-2.71172 1.67721,-3.99993 2.00285,-6.68659 0.49663,-4.09741 -0.91468,-9.23845 -0.88882,-12.4389 z"/><path sodipodi:nodetypes="ccc" id="path1306" class="shadow" d="m 174.52487,930.47124 c -0.6807,3.78292 -7.54752,3.28373 -7.64354,8.08877 -0.35118,-5.49105 6.69475,-4.20402 7.64354,-8.08877 z"/><path sodipodi:nodetypes="ccc" id="path1308" class="shadow" d="m 171.50081,927.25578 c -0.6807,3.78292 -7.92317,3.54889 -8.01919,8.35393 -0.35118,-5.49105 7.0704,-4.46918 8.01919,-8.35393 z"/><path sodipodi:nodetypes="ccc" id="path1310" class="shadow" d="m 170.10938,922.88554 c -1.57133,3.50167 -6.25131,2.72077 -8.61295,5.86956 2.43007,-3.53793 6.80478,-2.48481 8.61295,-5.86956 z"/><path sodipodi:nodetypes="ccc" id="path1312" class="shadow" d="m 169.29085,920.33085 c -1.75883,3.47042 -4.50131,0.78327 -6.86295,3.93206 2.43007,-3.53793 4.92978,-0.57856 6.86295,-3.93206 z"/><path d="m 230.45,922.8 c 3.85881,-1.84229 9.7,-4 11,-6.6 2.2,-4.4 1.86667,-9.69149 1.625,-13.9 -0.25625,-4.4625 -3.63125,-14.53125 -3.63125,-14.53125 0,0 -0.36875,2.03125 -1.46875,4.43125 -1.4,3.6 -7.175,9.4125 -9.775,11.7125 -14.5,12.9 -40.12015,3.86298 -40.12015,3.86298 0,0 -10.2204,5.65968 -15.40485,8.34952 -3.16251,1.6408 -7.14797,2.1417 -9.575,4.75 -3.73865,4.01788 -8.05388,10.05854 -6.2375,15.2375 2.0624,5.88043 10.15263,8.32568 16.3375,9.0875 11.21911,1.38192 22.71118,-3.60382 32.75,-8.8 3.84711,-1.9913 6.24412,-6.14154 10,-8.3 4.46178,-2.56413 9.85603,-3.08285 14.5,-5.3 z" class="shoe" id="XMLID_507_" sodipodi:nodetypes="assccccaaaaaaa"/><path d="m 375.79425,900.4029 c 0,0 -4.6154,16.02837 -6.68537,24.10598 -1.60665,6.26961 -4.06203,12.43938 -4.44905,18.9 -0.19029,3.17658 0.073,6.46298 1.0625,9.4875 0.76026,2.32384 1.5754,5.06857 3.65,6.3625 7.20694,4.49496 17.65124,5.08244 25.42698,1.66447 3.34793,-1.47165 5.42494,-5.19303 6.87423,-8.5507 2.52235,-5.84372 2.45461,-12.55089 2.62323,-18.91351 0.10833,-4.08767 -0.61807,-8.15587 -1.03934,-12.22322 -0.52587,-5.07731 -1.85728,-15.20035 -1.85728,-15.20035 -0.64133,8.18038 -8.65808,22.74034 -16.16284,20.44039 -10.43676,-3.19851 -10.21428,-16.25102 -9.44306,-26.07306 z" class="shoe" id="XMLID_508_" sodipodi:nodetypes="caaaaaaaacsc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Shoes_Heel.tw b/src/art/vector_revamp/layers/Shoes_Heel.tw new file mode 100644 index 0000000000000000000000000000000000000000..138296c31e89638784aaba1edf77e0b4c289b007 --- /dev/null +++ b/src/art/vector_revamp/layers/Shoes_Heel.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Shoes_Heel [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccccc" id="path1155" class="skin" d="m 240.59845,873.07198 c 0.50286,4.90436 1.00937,7.12738 2.18205,11.50463 0.85694,12.72572 1.68645,15.02898 3.7623,21.02706 1.01141,5.05435 0.99988,9.12721 -1.7475,10.57512 -3.34618,1.87095 -5.9929,3.99189 -13.51203,5.20472 -46.61525,37.98885 -67.56847,48.2592 -29.24548,-8.53938 5.04205,-9.3296 9.51324,-18.92743 11.42962,-29.10955 l 2.00493,-25.33317 24.35037,0.50298 c 0.95172,4.33824 0.11088,9.99496 0.77574,14.16759 z"/><path sodipodi:nodetypes="ccccccccscccccczc" id="path1148" class="shoe" d="m 244.31995,884.92623 c 0,0 1.55174,2.32761 2.77096,4.21186 3.10348,4.98773 4.21186,12.63557 3.65767,18.28833 -0.44335,4.65521 -1.77341,4.65521 -3.43599,10.30797 -1.77341,6.20695 -2.10593,15.2957 -2.66012,33.36236 0,1.66257 -0.44336,5.54192 -0.44336,7.20449 -0.44335,0.33252 -2.21676,0.33252 -2.88179,0 0.11084,-1.33006 0.11084,-3.87934 0.11084,-5.43108 -0.22168,-9.31042 1.33006,-28.04211 -0.33252,-29.03966 -1.10838,-0.66503 -18.99219,8.39588 -21.3198,14.8245 -4.65521,13.52229 -9.53196,20.1459 -13.18963,25.02279 -3.10347,4.21186 -15.12957,5.67945 -24.77251,4.90358 -10.19714,-0.88671 -15.55892,-3.88274 -15.55892,-3.88274 0,0 -1.75502,-8.83719 26.68462,-40.85535 l 15.13332,-23.22251 c -3.15612,7.97704 -12.0531,21.27684 -9.42395,24.21053 2.62915,2.93369 45.66118,-39.90507 45.66118,-39.90507 z"/><path sodipodi:nodetypes="ccccccccccc" id="path1159" class="skin" d="m 375.58471,902.04597 c 0.75862,-4.37061 1.32442,-8.74123 2.62778,-13.11184 0.0883,-4.25905 -1.39782,-7.63422 -2.24386,-11.19255 1.53488,-3.81106 3.75773,-7.41574 3.75747,-11.68734 l 9.6028,-0.87118 11.33449,2.60555 c -0.54348,5.61968 0.32614,10.96792 1.61199,16.17184 -0.64128,2.19443 -1.39646,4.38887 -1.48163,6.5833 0.33165,10.6866 0.61556,21.23002 0.78125,31.41875 3.99699,37.66992 -39.08408,53.65806 -29.01266,5.7093 2.52972,-8.61114 2.11758,-17.08855 3.02237,-25.62583 z"/><path sodipodi:nodetypes="ccssszcccscc" id="path1146" class="shoe" d="m 401.16185,898.2641 c 4.86978,9.3269 4.14816,19.20588 3.20748,30.0269 0,0 -1.59383,25.88068 -5.20133,38.22252 -2.09871,7.18004 -4.5609,14.6838 -9.42657,20.3656 -1.98298,2.31559 -4.50163,7.07804 -7.61012,5.07283 -5.21682,-3.36524 -6.42685,-5.44847 -9.40639,-16.07421 -2.97954,-10.62574 -2.04254,-33.46924 -0.8241,-47.58213 0.30849,-4.24462 -0.58204,-25.74717 4.23787,-29.94193 l -0.54506,4.14234 c 0.68491,-0.2283 -5.89176,37.99606 7.34151,39.67379 14.711,1.86508 18.43779,-40.48551 18.43779,-40.48551 z"/><path sodipodi:nodetypes="ccc" id="path1161" class="shadow" d="m 396.35932,879.09548 c 0.33577,5.97053 1.94225,6.86306 4.45368,11.7344 -4.10767,-5.64573 -4.49649,-6.43544 -4.45368,-11.7344 z"/><path sodipodi:nodetypes="ccc" id="path1163" class="shadow" d="m 378.16403,886.94416 c 3.50178,-2.27327 4.23806,-2.786 5.89065,-7.82868 -0.78635,4.34205 -1.48231,5.32462 -5.89065,7.82868 z"/><path sodipodi:nodetypes="cscsc" id="path1173" class="shadow" d="m 229.24641,868.83321 c 1.12269,3.41093 3.91256,7.71863 4.45739,11.69303 0.36247,2.64412 -0.49857,4.0546 -0.58342,7.06911 -0.22351,-2.74748 0.5848,-4.29773 0.20399,-6.97713 -0.58078,-4.08633 -3.2746,-8.68693 -4.07796,-11.78501 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Shoes_Pump.tw b/src/art/vector_revamp/layers/Shoes_Pump.tw new file mode 100644 index 0000000000000000000000000000000000000000..04575be0f911fab7a52843e59e9f94a2ecbad0ae --- /dev/null +++ b/src/art/vector_revamp/layers/Shoes_Pump.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Shoes_Pump [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"/></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Stump.tw b/src/art/vector_revamp/layers/Stump.tw new file mode 100644 index 0000000000000000000000000000000000000000..6a64503f9f0420097d25b359f3d4dda8fcb8fe63 --- /dev/null +++ b/src/art/vector_revamp/layers/Stump.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Stump [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccc" id="path1372" d="m 230.28965,407.60424 c 27.39204,-26.79135 106.43008,-43.38985 148.417,-16.8629 22.94771,17.0173 36.08141,60.01349 20.40321,84.0104 -13.72251,17.8756 -32.7562,14.73245 -52.05351,12.51115 -20.85364,-0.58883 -33.61362,-25.83908 -52.17969,-26.54843 -15.8761,1.03867 -28.23124,23.52457 -45.43451,22.30034 -13.25287,-0.31877 -29.07118,-7.54966 -32.94684,-20.32451 -7.97944,-17.5338 7.02473,-49.02171 13.79434,-55.08605 z" class="shadow"/><path class="skin" d="m 230.28965,407.60424 c 27.39204,-26.79135 110.72562,-49.39699 148.417,-16.8629 21.00008,18.12665 35.42478,59.4177 20.40321,84.0104 -9.30215,15.22909 -34.33101,14.60117 -52.05351,12.51115 -19.38076,-2.28558 -32.66513,-26.40818 -52.17969,-26.54843 -16.87031,-0.12125 -28.58338,23.11374 -45.43451,22.30034 -12.88883,-0.62214 -28.08465,-8.37177 -32.94684,-20.32451 -7.13248,-17.5338 7.57873,-49.02171 13.79434,-55.08605 z" id="path62" sodipodi:nodetypes="csaaaaac"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Highlights1.tw b/src/art/vector_revamp/layers/Torso_Highlights1.tw new file mode 100644 index 0000000000000000000000000000000000000000..c2597fe9cb3f3793cef13f4ece85068723a209bb --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Highlights1.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Torso_Highlights1 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 289.94777,295.4534 c -1.6989,1.77767 -0.82374,4.35987 -0.53385,5.75144 1.26028,-1.19667 0.74988,-3.92307 0.53385,-5.75144 z" class="highlight1" id="path1141-0" sodipodi:nodetypes="ccc"/><path d="m 264.42812,302.28055 c -1.6989,1.77767 -0.82374,4.35987 -0.53385,5.75144 1.26028,-1.19667 0.74988,-3.92307 0.53385,-5.75144 z" class="highlight1" id="path1141-0-8" sodipodi:nodetypes="ccc"/><path d="m 264.66554,309.1915 c -0.66567,0.91065 -0.10291,1.90971 0.20025,2.42067 0.49089,-0.59211 0.16685,-1.69027 -0.20025,-2.42067 z" class="highlight1" id="path1141-0-8-7" sodipodi:nodetypes="ccc"/><path d="m 289.8216,345.80715 c -0.88546,0.69883 -0.61117,1.8122 -0.45611,2.38573 0.63167,-0.43881 0.61393,-1.58365 0.45611,-2.38573 z" class="highlight1" id="path1141-0-8-7-5" sodipodi:nodetypes="ccc"/><path d="m 337.466,377.21609 c -2.30617,0.13597 -2.84869,1.67314 -2.48904,3.26962 2.13427,-0.43881 2.64686,-2.46754 2.48904,-3.26962 z" class="highlight1" id="path1141-0-8-7-5-0" sodipodi:nodetypes="ccc"/><path d="m 248.30395,412.94797 c -1.46912,-3.58912 -3.04506,-5.40954 -5.40786,-5.39969 -0.8259,3.89201 3.18008,5.39446 5.40786,5.39969 z" class="highlight1" id="path1141-0-8-7-5-0-9" sodipodi:nodetypes="ccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Highlights2.tw b/src/art/vector_revamp/layers/Torso_Highlights2.tw new file mode 100644 index 0000000000000000000000000000000000000000..c54bc822ca0acd3b2454f9206cbcbd58cf1ffead --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Highlights2.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Torso_Highlights2 [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><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"/><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-8" class="highlight2" d="m 263.8142,294.55822 c 2.74268,8.04932 2.76861,26.83209 0.89606,27.91484 -1.12917,-1.27471 -5.12923,-22.1752 -0.89606,-27.91484 z"/><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-8-4" class="highlight2" d="m 289.50061,337.66987 c 2.74268,8.04932 1.84052,16.44647 -0.032,17.52922 -1.12917,-1.27471 -4.20114,-11.78958 0.032,-17.52922 z"/><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-8-4-2" class="highlight2" d="m 244.58793,342.8708 c -1.39447,6.83617 -4.62602,11.20746 -5.51208,12.57947 -1.00378,-1.21683 1.66574,-6.6613 5.51208,-12.57947 z"/><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-8-4-2-7" class="highlight2" d="m 338.3403,373.13569 c 2.26913,12.90402 -4.61748,11.22161 -5.51208,12.57947 -1.0473,-1.2502 -1.53943,-9.11859 5.51208,-12.57947 z"/><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-8-4-2-7-6" class="highlight2" d="m 242.25302,404.89085 c -2.26913,12.90402 6.03169,10.58079 7.43452,11.6072 1.0473,-1.2502 -0.38301,-8.14632 -7.43452,-11.6072 z"/><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-5" class="highlight2" d="m 274.56079,341.01946 c -0.6917,2.59191 1.01886,6.14891 1.5481,6.57075 -0.0597,-0.50761 -0.7297,-4.73118 -1.5481,-6.57075 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 new file mode 100644 index 0000000000000000000000000000000000000000..7539146f8e683337bdf4a4cd5b20a2d53c832956 --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Hourglass.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Torso_Hourglass [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><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 1.67702,0.43271 4.94669,1.18016 5.313,-0.25046 l 4.82293,-0.062 c 0,-0.003 0.49727,1.92474 9.35695,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 sodipodi:nodetypes="cccccccsccccccccscccccccccc" id="path1104" class="skin torso" d="m 246.30911,231.06259 c -5.87551,18.9358 -2.96597,38.67852 2.84033,56.00881 -1.06764,11.32585 -1.52536,26.55789 1.00056,35.50213 C 238.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 0.71424,0.0435 3.1774,0.77206 4.37876,0.44893 0.70147,-0.18868 0.95983,-0.71607 0.95983,-0.71607 l 4.82917,-0.077 c 0.96846,1.30549 6.32302,0.7661 9.32277,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 -7.38454,-13.70829 -7.45206,-15.85983 2.56898,-6.32141 6.52289,-30.99874 8.07452,-32.87542 13.06864,-15.80638 16.79552,-26.31022 21.5701,-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 -15.75422,-3.81595 -28.55683,3.36571 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -5.62538,4.35924 -11.13319,4.21882 -29.51103,8.85181 -8.65971,10.94361 -15.77697,17.65654 -24.83698,40.22861 z"/><path sodipodi:nodetypes="ccccc" id="path1106" class="shadow" 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" id="path1440" sodipodi:nodetypes="cccccc"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..3f52be9aeb1338a5f0ab747220224d2cad9a5c92 --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Normal.tw @@ -0,0 +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.67702,0.43271 4.94669,1.18016 5.313,-0.25046 l 4.82293,-0.062 c 0,-0.003 0.49727,1.92474 9.35695,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 246.30911,231.06259 c -5.87551,18.9358 -2.96597,38.67852 2.84033,56.00881 -1.06764,11.32585 -1.52536,26.55789 1.00056,35.50213 C 238.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 0.71424,0.0435 3.1774,0.77206 4.37876,0.44893 0.70147,-0.18868 0.95983,-0.71607 0.95983,-0.71607 l 4.82917,-0.077 c 0.96846,1.30549 6.32302,0.7661 9.32277,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 -23.58113,-57.47054 -9.97979,-57.27407 1.61601,-114.68532 -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 -15.75422,-3.81595 -28.55683,3.36571 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -5.62538,4.35924 -11.13319,4.21882 -29.51103,8.85181 -8.65971,10.94361 -15.77697,17.65654 -24.83698,40.22861 z" class="skin torso" id="Body_Normal_1_" sodipodi:nodetypes="cccccccscccccccccccccccc"/><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" id="path1444" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="cccccc" id="path1446" class="muscle_tone" 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 diff --git a/src/art/vector_revamp/layers/Torso_Outfit_Maid_Hourglass.tw b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Hourglass.tw new file mode 100644 index 0000000000000000000000000000000000000000..5624e263e321221c8ee6bd80d779fb74d7e16ed4 --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Hourglass.tw @@ -0,0 +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 diff --git a/src/art/vector_revamp/layers/Torso_Outfit_Maid_Lewd_Hourglass.tw b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Lewd_Hourglass.tw new file mode 100644 index 0000000000000000000000000000000000000000..dd31991b1e9ef4c7fd6913686269a4405af8fb4c --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Lewd_Hourglass.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Torso_Outfit_Maid_Lewd_Hourglass [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><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" class="shadow"/><path style="display:inline;opacity:1;fill:#000000" d="m 249.99805,323.03906 c 19.2233,7.95638 55.40396,-0.4426 85.00781,-4.5039 -7.47162,0.73268 -15.33345,1.82358 -23.21875,2.9375 -7.8853,1.11391 -15.79532,2.25094 -23.36523,3.07422 -3.78496,0.41163 -7.48528,0.74598 -11.05469,0.95898 -3.56942,0.213 -7.0068,0.304 -10.26953,0.23437 -3.26274,-0.0696 -6.34992,-0.30009 -9.21485,-0.73632 -2.86492,-0.43624 -5.50878,-1.07802 -7.88476,-1.96485 z" id="path2358" sodipodi:nodetypes="ccccsccc"/><path d="m 335.00494,318.53533 c 0,0 2.60164,5.12801 3.8029,7.55426 23.94861,15.0158 25.77303,27.13678 35.62962,42.89594 13.12179,20.97971 30.59015,67.64028 30.59015,67.64028 -70.8552,-28.58878 -143.13155,31.22676 -211.75934,0.10113 0,0 8.14697,-40.75862 17.18577,-59.21839 9.85604,-20.12879 35.639,-43.442 39.5444,-54.469 20.08971,8.80583 55.63969,-1.71367 85.0065,-4.50422 z" id="path1227" sodipodi:nodetypes="ccaccscc" style="display:inline;opacity:1;fill:#333333"/><path d="m 311.04401,327.6899 c 0.0522,-0.10709 7.00362,0.37294 7.78287,2.98975 1.09373,1.91041 -2.71095,5.0065 -2.81525,4.94713 -0.0624,-0.10254 7.16168,-0.42581 8.18384,2.13824 0.82618,2.04666 -4.36222,4.60347 -4.41092,4.5368 0.18756,-0.13865 8.76141,0.0136 9.37508,2.95661 1.12339,2.7339 -5.04179,6.86259 -5.08064,6.76687 0.17801,-0.0914 6.83044,0.80604 7.29555,3.1376 0.99465,2.53804 -4.0223,6.41207 -4.07764,6.30604 0.17207,-0.0883 8.56703,1.55963 8.9644,4.56029 1.01602,2.6197 -4.88943,6.28089 -5.03113,6.20815 0.1094,-0.0749 8.97405,1.71591 9.66103,4.9139 1.38429,3.32371 -5.67328,8.79376 -5.84007,8.74239 0.0763,-0.0104 8.03849,4.78518 7.56356,8.27073 0.0883,3.45544 -7.85098,7.31249 -7.90197,7.27062 0.15001,-0.0548 9.02844,6.59283 6.18398,9.86775 -2.11902,3.09446 -12.21137,-0.21607 -12.26513,-0.39269 0.0165,-0.0806 2.22395,9.26158 -1.73237,12.2649 -5.26342,3.32418 -17.88837,-0.8649 -17.59669,-1.01463 0.17956,0.0164 -1.34524,8.44366 -5.82577,9.89737 -4.5076,1.64849 -13.55715,-4.10713 -13.55715,-4.30795 0.17277,0.2838 -4.10847,6.59393 -8.12207,6.7862 0,0 -10.48671,-4.77116 -10.17145,-4.94609 0.29167,0.0989 -5.79892,4.83916 -10.43279,4.62568 -3.91425,-0.0968 -8.69575,-5.63783 -8.57089,-5.76602 0.18168,0.12789 -7.46896,4.76081 -11.76673,3.19345 -3.81063,-1.2341 -5.11346,-7.4931 -4.96204,-7.47396 -0.0296,0.21811 -10.64044,3.62348 -14.26381,0.83998 -3.65492,-2.13109 -1.49016,-10.09638 -1.34588,-10.10822 -0.13832,0.0568 -7.77646,-3.2513 -8.37111,-6.44327 -1.27342,-3.07674 3.11397,-8.91689 3.39631,-8.83959 -0.14867,0.0305 -3.34488,-5.29429 -2.02206,-7.96607 0.54322,-2.43642 5.99585,-5.00377 6.09658,-4.93483 -0.0881,0.0362 -1.90373,-4.97675 -0.46419,-7.36633 0.79291,-2.30555 6.32486,-4.80668 6.46038,-4.75899 -0.13335,0.0274 -1.42641,-4.03491 -0.05,-5.8995 0.70184,-1.71401 4.30644,-3.15261 4.34563,-3.02387 -0.25505,0.0524 -1.32182,-3.33886 -0.27293,-4.90796 0.86407,-1.96083 4.77924,-3.72749 4.75483,-3.52701 -0.048,0 0.12068,-3.08126 1.40387,-4.44066 0.88392,-1.8868 4.23392,-4.31588 4.29183,-4.20491 -0.1068,0.0329 1.54301,-4.29535 3.4155,-6.4064 1.05336,-1.94277 5.13741,-5.29514 5.24937,-5.29514 -0.0584,0.006 0.95294,-3.0619 2.45542,-4.48355 1.19345,-1.94404 4.55632,-4.3091 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z" class="shadow" id="path1229" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacacc" id="path1231" d="m 311.04401,327.6899 c 0,0 6.84733,0.37283 7.78287,2.98975 0.6387,1.78662 -2.81525,4.94713 -2.81525,4.94713 0,0 7.42648,-0.57766 8.18384,2.13824 0.56655,2.03169 -4.41092,4.5368 -4.41092,4.5368 0,0 8.37349,-0.16331 9.37508,2.95661 0.86218,2.68563 -5.08064,6.76687 -5.08064,6.76687 0,0 6.52509,0.60499 7.29555,3.1376 0.72854,2.39482 -4.07764,6.30604 -4.07764,6.30604 0,0 8.26692,1.28109 8.9644,4.56029 0.55415,2.60533 -5.03113,6.20815 -5.03113,6.20815 0,0 8.74735,1.41837 9.66103,4.9139 0.88626,3.39062 -5.84007,8.74239 -5.84007,8.74239 0,0 7.72456,4.5383 7.56356,8.27073 -0.15425,3.57598 -7.90197,7.27062 -7.90197,7.27062 0,0 8.1178,6.50196 6.18398,9.86775 -2.03778,3.54675 -12.26513,-0.39269 -12.26513,-0.39269 0,0 1.46134,9.64806 -1.73237,12.2649 -4.54459,3.7237 -17.59669,-1.01463 -17.59669,-1.01463 0,0 -2.2505,8.52889 -5.82577,9.89737 -4.42841,1.69502 -13.55715,-4.30795 -13.55715,-4.30795 0,0 -4.62018,6.35786 -8.12207,6.7862 -3.7422,0.45774 -10.17145,-4.94609 -10.17145,-4.94609 0,0 -6.64323,4.95785 -10.43279,4.62568 -3.43015,-0.30068 -8.57089,-5.76602 -8.57089,-5.76602 0,0 -7.96291,4.62455 -11.76673,3.19345 -2.79886,-1.05301 -4.96204,-7.47396 -4.96204,-7.47396 0,0 -10.5899,3.87098 -14.26381,0.83998 -2.622,-2.16317 -1.34588,-10.10822 -1.34588,-10.10822 0,0 -7.41836,-3.05339 -8.37111,-6.44327 -0.85408,-3.03879 3.39631,-8.83959 3.39631,-8.83959 0,0 -2.8861,-5.36632 -2.02206,-7.96607 0.82459,-2.48106 6.09658,-4.93483 6.09658,-4.93483 0,0 -1.5043,-5.13669 -0.46419,-7.36633 1.13073,-2.4239 6.46038,-4.75899 6.46038,-4.75899 0,0 -0.95325,-4.15262 -0.05,-5.8995 0.81052,-1.56758 4.34563,-3.02387 4.34563,-3.02387 0,0 -0.96863,-3.42448 -0.27293,-4.90796 0.83789,-1.78667 4.75483,-3.52701 4.75483,-3.52701 0,0 0.59123,-3.11792 1.40387,-4.44066 1.0484,-1.70649 4.29183,-4.20491 4.29183,-4.20491 0,0 1.97917,-4.45875 3.4155,-6.4064 1.47514,-2.00028 5.24937,-5.29514 5.24937,-5.29514 0,0 1.41081,-3.13734 2.45542,-4.48355 1.27666,-1.64525 4.56262,-4.26767 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z"/><path sodipodi:nodetypes="ccssccc" id="path1233" class="shadow" d="m 309.71288,327.6899 c 0.17826,-0.0554 11.29343,14.89769 12.56072,23.45 5.35408,18.68238 17.63515,40.72923 4.38693,56.74234 -20.35084,24.59804 -79.88819,32.00846 -104.40557,3.84551 -10.16656,-11.67826 0.99038,-31.4387 9.04984,-47.4412 5.24788,-12.61332 23.50188,-36.42668 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z"/><path d="m 309.71288,327.6899 c 0,0 10.07222,14.93896 12.56072,23.45 5.32378,18.20822 17.01533,42.58588 4.38693,56.74234 -23.18276,25.98792 -81.71681,30.26582 -104.40557,3.84551 -10.48841,-12.21341 2.84148,-32.58757 9.04984,-47.4412 5.64594,-13.50803 24.91963,-36.16771 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z" id="path1235" sodipodi:nodetypes="caaaacc" style="display:inline;opacity:1;fill:#ffffff"/><path sodipodi:nodetypes="ccccc" id="path1245" class="shadow" 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"/><path 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" id="path1247" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/><g transform="'+_art_transform+'"style="display:inline;opacity:0.697" transform="matrix(0.99515665,0,0,0.99515665,59.14021,25.319195)" id="g1223-8"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Outfit_Maid_Lewd_Normal.tw b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Lewd_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..01f752b37383db6769a4e50952ba6b0069c58307 --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Lewd_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Torso_Outfit_Maid_Lewd_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccc" id="path1363" d="m 349.25494,318.53533 c 0,0 0.78914,5.12801 1.9904,7.55426 20.33794,23.39971 14.61913,26.64309 23.19212,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 69.88969,-1.71367 99.2565,-4.50422 z" class="shadow"/><path style="display:inline;opacity:1;fill:#000000" d="m 249.99805,323.03906 c 19.2233,7.95638 69.65396,-0.4426 99.25781,-4.5039 -7.47162,0.73268 -29.58345,1.82358 -37.46875,2.9375 -7.8853,1.11391 -15.79532,2.25094 -23.36523,3.07422 -3.78496,0.41163 -7.48528,0.74598 -11.05469,0.95898 -3.56942,0.213 -7.0068,0.304 -10.26953,0.23437 -3.26274,-0.0696 -6.34992,-0.30009 -9.21485,-0.73632 -2.86492,-0.43624 -5.50878,-1.07802 -7.88476,-1.96485 z" id="path1369" sodipodi:nodetypes="ccccsccc"/><path d="m 349.25494,318.53533 c 0,0 0.78914,5.12801 1.9904,7.55426 18.76111,23.0783 15.97322,28.3322 23.19212,42.89594 10.98968,22.17107 30.59015,67.64028 30.59015,67.64028 -70.8552,-28.58878 -143.13155,31.22676 -211.75934,0.10113 0,0 8.14697,-40.75862 17.18577,-59.21839 9.85604,-20.12879 35.639,-43.442 39.5444,-54.469 20.08971,8.80583 69.88969,-1.71367 99.2565,-4.50422 z" id="path1377" sodipodi:nodetypes="ccaccscc" style="display:inline;opacity:1;fill:#333333"/><path d="m 311.04401,327.6899 c 0.0522,-0.10709 7.00362,0.37294 7.78287,2.98975 1.09373,1.91041 -2.71095,5.0065 -2.81525,4.94713 -0.0624,-0.10254 7.16168,-0.42581 8.18384,2.13824 0.82618,2.04666 -4.36222,4.60347 -4.41092,4.5368 0.18756,-0.13865 8.76141,0.0136 9.37508,2.95661 1.12339,2.7339 -5.04179,6.86259 -5.08064,6.76687 0.17801,-0.0914 6.83044,0.80604 7.29555,3.1376 0.99465,2.53804 -4.0223,6.41207 -4.07764,6.30604 0.17207,-0.0883 8.56703,1.55963 8.9644,4.56029 1.01602,2.6197 -4.88943,6.28089 -5.03113,6.20815 0.1094,-0.0749 8.97405,1.71591 9.66103,4.9139 1.38429,3.32371 -5.67328,8.79376 -5.84007,8.74239 0.0763,-0.0104 8.03849,4.78518 7.56356,8.27073 0.0883,3.45544 -7.85098,7.31249 -7.90197,7.27062 0.15001,-0.0548 9.02844,6.59283 6.18398,9.86775 -2.11902,3.09446 -12.21137,-0.21607 -12.26513,-0.39269 0.0165,-0.0806 2.22395,9.26158 -1.73237,12.2649 -5.26342,3.32418 -17.88837,-0.8649 -17.59669,-1.01463 0.17956,0.0164 -1.34524,8.44366 -5.82577,9.89737 -4.5076,1.64849 -13.55715,-4.10713 -13.55715,-4.30795 0.17277,0.2838 -4.10847,6.59393 -8.12207,6.7862 0,0 -10.48671,-4.77116 -10.17145,-4.94609 0.29167,0.0989 -5.79892,4.83916 -10.43279,4.62568 -3.91425,-0.0968 -8.69575,-5.63783 -8.57089,-5.76602 0.18168,0.12789 -7.46896,4.76081 -11.76673,3.19345 -3.81063,-1.2341 -5.11346,-7.4931 -4.96204,-7.47396 -0.0296,0.21811 -10.64044,3.62348 -14.26381,0.83998 -3.65492,-2.13109 -1.49016,-10.09638 -1.34588,-10.10822 -0.13832,0.0568 -7.77646,-3.2513 -8.37111,-6.44327 -1.27342,-3.07674 3.11397,-8.91689 3.39631,-8.83959 -0.14867,0.0305 -3.34488,-5.29429 -2.02206,-7.96607 0.54322,-2.43642 5.99585,-5.00377 6.09658,-4.93483 -0.0881,0.0362 -1.90373,-4.97675 -0.46419,-7.36633 0.79291,-2.30555 6.32486,-4.80668 6.46038,-4.75899 -0.13335,0.0274 -1.42641,-4.03491 -0.05,-5.8995 0.70184,-1.71401 4.30644,-3.15261 4.34563,-3.02387 -0.25505,0.0524 -1.32182,-3.33886 -0.27293,-4.90796 0.86407,-1.96083 4.77924,-3.72749 4.75483,-3.52701 -0.048,0 0.12068,-3.08126 1.40387,-4.44066 0.88392,-1.8868 4.23392,-4.31588 4.29183,-4.20491 -0.1068,0.0329 1.54301,-4.29535 3.4155,-6.4064 1.05336,-1.94277 5.13741,-5.29514 5.24937,-5.29514 -0.0584,0.006 0.95294,-3.0619 2.45542,-4.48355 1.19345,-1.94404 4.55632,-4.3091 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z" class="shadow" id="path1379" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacacc" id="path1381" d="m 311.04401,327.6899 c 0,0 6.84733,0.37283 7.78287,2.98975 0.6387,1.78662 -2.81525,4.94713 -2.81525,4.94713 0,0 7.42648,-0.57766 8.18384,2.13824 0.56655,2.03169 -4.41092,4.5368 -4.41092,4.5368 0,0 8.37349,-0.16331 9.37508,2.95661 0.86218,2.68563 -5.08064,6.76687 -5.08064,6.76687 0,0 6.52509,0.60499 7.29555,3.1376 0.72854,2.39482 -4.07764,6.30604 -4.07764,6.30604 0,0 8.26692,1.28109 8.9644,4.56029 0.55415,2.60533 -5.03113,6.20815 -5.03113,6.20815 0,0 8.74735,1.41837 9.66103,4.9139 0.88626,3.39062 -5.84007,8.74239 -5.84007,8.74239 0,0 7.72456,4.5383 7.56356,8.27073 -0.15425,3.57598 -7.90197,7.27062 -7.90197,7.27062 0,0 8.1178,6.50196 6.18398,9.86775 -2.03778,3.54675 -12.26513,-0.39269 -12.26513,-0.39269 0,0 1.46134,9.64806 -1.73237,12.2649 -4.54459,3.7237 -17.59669,-1.01463 -17.59669,-1.01463 0,0 -2.2505,8.52889 -5.82577,9.89737 -4.42841,1.69502 -13.55715,-4.30795 -13.55715,-4.30795 0,0 -4.62018,6.35786 -8.12207,6.7862 -3.7422,0.45774 -10.17145,-4.94609 -10.17145,-4.94609 0,0 -6.64323,4.95785 -10.43279,4.62568 -3.43015,-0.30068 -8.57089,-5.76602 -8.57089,-5.76602 0,0 -7.96291,4.62455 -11.76673,3.19345 -2.79886,-1.05301 -4.96204,-7.47396 -4.96204,-7.47396 0,0 -10.5899,3.87098 -14.26381,0.83998 -2.622,-2.16317 -1.34588,-10.10822 -1.34588,-10.10822 0,0 -7.41836,-3.05339 -8.37111,-6.44327 -0.85408,-3.03879 3.39631,-8.83959 3.39631,-8.83959 0,0 -2.8861,-5.36632 -2.02206,-7.96607 0.82459,-2.48106 6.09658,-4.93483 6.09658,-4.93483 0,0 -1.5043,-5.13669 -0.46419,-7.36633 1.13073,-2.4239 6.46038,-4.75899 6.46038,-4.75899 0,0 -0.95325,-4.15262 -0.05,-5.8995 0.81052,-1.56758 4.34563,-3.02387 4.34563,-3.02387 0,0 -0.96863,-3.42448 -0.27293,-4.90796 0.83789,-1.78667 4.75483,-3.52701 4.75483,-3.52701 0,0 0.59123,-3.11792 1.40387,-4.44066 1.0484,-1.70649 4.29183,-4.20491 4.29183,-4.20491 0,0 1.97917,-4.45875 3.4155,-6.4064 1.47514,-2.00028 5.24937,-5.29514 5.24937,-5.29514 0,0 1.41081,-3.13734 2.45542,-4.48355 1.27666,-1.64525 4.56262,-4.26767 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z"/><path sodipodi:nodetypes="ccssccc" id="path1384" class="shadow" d="m 309.71288,327.6899 c 0.17826,-0.0554 11.29343,14.89769 12.56072,23.45 5.35408,18.68238 17.63515,40.72923 4.38693,56.74234 -20.35084,24.59804 -79.88819,32.00846 -104.40557,3.84551 -10.16656,-11.67826 0.99038,-31.4387 9.04984,-47.4412 5.24788,-12.61332 23.50188,-36.42668 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z"/><path d="m 309.71288,327.6899 c 0,0 10.07222,14.93896 12.56072,23.45 5.32378,18.20822 17.01533,42.58588 4.38693,56.74234 -23.18276,25.98792 -81.71681,30.26582 -104.40557,3.84551 -10.48841,-12.21341 2.84148,-32.58757 9.04984,-47.4412 5.64594,-13.50803 24.91963,-36.16771 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z" id="path1386" sodipodi:nodetypes="caaaacc" style="display:inline;opacity:1;fill:#ffffff"/><path sodipodi:nodetypes="ccccc" id="path1388" class="shadow" d="m 349.38308,318.51346 1.95505,7.52419 c -34.68921,1.29057 -83.12169,18.30652 -105.10765,3.82289 l 3.86668,-6.97285 c 33.13895,8.49273 66.58122,-5.8368 99.28592,-4.37423 z"/><path d="m 349.38308,318.51346 1.95505,7.52419 c -35.36449,0.47083 -84.53547,17.70061 -105.10765,3.82289 l 3.86668,-6.97285 c 30.76253,9.95515 66.00714,-4.70842 99.28592,-4.37423 z" id="path1390" sodipodi:nodetypes="ccccc" style="display:inline;opacity:1;fill:#ffffff"/><g transform="'+_art_transform+'"style="display:inline;opacity:0.697" transform="matrix(0.99515665,0,0,0.99515665,59.14021,25.319195)" id="g1392"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Outfit_Maid_Lewd_Unnatural.tw b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Lewd_Unnatural.tw new file mode 100644 index 0000000000000000000000000000000000000000..0b7f15c079c3f06e4038be0a5e2e2f1c2300178a --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Lewd_Unnatural.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Torso_Outfit_Maid_Lewd_Unnatural [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path class="shadow" d="m 332.46378,318.91098 c 0,0 4.92183,4.75236 6.12309,7.17861 22.32823,15.82318 26.05552,27.17961 35.85059,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 38.43236,-43.77013 43.46628,-54.79713 20.08971,8.80583 49.17665,-1.00989 78.54346,-3.80044 z" id="path1326" sodipodi:nodetypes="cccccccc"/><path style="display:inline;opacity:1;fill:#333333" sodipodi:nodetypes="ccsccscc" id="path1343" d="m 332.46378,318.91098 c 0,0 4.92183,4.75236 6.12309,7.17861 21.82184,16.49529 25.63258,27.32918 35.85059,42.89594 13.57881,20.68684 30.59015,67.64028 30.59015,67.64028 -70.8552,-28.58878 -143.13155,31.22676 -211.75934,0.10113 0,0 8.14697,-40.75862 17.18577,-59.21839 9.85604,-20.12879 39.56088,-43.77013 43.46628,-54.79713 20.08971,8.80583 49.17665,-1.00989 78.54346,-3.80044 z"/><path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc" id="path1345" class="shadow" d="m 311.04401,327.6899 c 0.0522,-0.10709 7.00362,0.37294 7.78287,2.98975 1.09373,1.91041 -2.71095,5.0065 -2.81525,4.94713 -0.0624,-0.10254 7.16168,-0.42581 8.18384,2.13824 0.82618,2.04666 -4.36222,4.60347 -4.41092,4.5368 0.18756,-0.13865 8.76141,0.0136 9.37508,2.95661 1.12339,2.7339 -5.04179,6.86259 -5.08064,6.76687 0.17801,-0.0914 6.83044,0.80604 7.29555,3.1376 0.99465,2.53804 -4.0223,6.41207 -4.07764,6.30604 0.17207,-0.0883 8.56703,1.55963 8.9644,4.56029 1.01602,2.6197 -4.88943,6.28089 -5.03113,6.20815 0.1094,-0.0749 8.97405,1.71591 9.66103,4.9139 1.38429,3.32371 -5.67328,8.79376 -5.84007,8.74239 0.0763,-0.0104 8.03849,4.78518 7.56356,8.27073 0.0883,3.45544 -7.85098,7.31249 -7.90197,7.27062 0.15001,-0.0548 9.02844,6.59283 6.18398,9.86775 -2.11902,3.09446 -12.21137,-0.21607 -12.26513,-0.39269 0.0165,-0.0806 2.22395,9.26158 -1.73237,12.2649 -5.26342,3.32418 -17.88837,-0.8649 -17.59669,-1.01463 0.17956,0.0164 -1.34524,8.44366 -5.82577,9.89737 -4.5076,1.64849 -13.55715,-4.10713 -13.55715,-4.30795 0.17277,0.2838 -4.10847,6.59393 -8.12207,6.7862 0,0 -10.48671,-4.77116 -10.17145,-4.94609 0.29167,0.0989 -5.79892,4.83916 -10.43279,4.62568 -3.91425,-0.0968 -8.69575,-5.63783 -8.57089,-5.76602 0.18168,0.12789 -7.46896,4.76081 -11.76673,3.19345 -3.81063,-1.2341 -5.11346,-7.4931 -4.96204,-7.47396 -0.0296,0.21811 -10.64044,3.62348 -14.26381,0.83998 -3.65492,-2.13109 -1.49016,-10.09638 -1.34588,-10.10822 -0.13832,0.0568 -7.77646,-3.2513 -8.37111,-6.44327 -1.27342,-3.07674 3.11397,-8.91689 3.39631,-8.83959 -0.14867,0.0305 -3.34488,-5.29429 -2.02206,-7.96607 0.54322,-2.43642 5.99585,-5.00377 6.09658,-4.93483 -0.0881,0.0362 -1.90373,-4.97675 -0.46419,-7.36633 0.79291,-2.30555 6.32486,-4.80668 6.46038,-4.75899 -0.13335,0.0274 -1.42641,-4.03491 -0.05,-5.8995 0.70184,-1.71401 4.30644,-3.15261 4.34563,-3.02387 -0.25505,0.0524 -1.32182,-3.33886 -0.27293,-4.90796 0.86407,-1.96083 4.77924,-3.72749 4.75483,-3.52701 -0.048,0 0.12068,-3.08126 1.40387,-4.44066 0.88392,-1.8868 4.23392,-4.31588 4.29183,-4.20491 -0.1068,0.0329 1.54301,-4.29535 3.4155,-6.4064 1.05336,-1.94277 5.13741,-5.29514 5.24937,-5.29514 -0.0584,0.006 0.95294,-3.0619 2.45542,-4.48355 1.19345,-1.94404 4.55632,-4.3091 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z"/><path d="m 311.04401,327.6899 c 0,0 6.84733,0.37283 7.78287,2.98975 0.6387,1.78662 -2.81525,4.94713 -2.81525,4.94713 0,0 7.42648,-0.57766 8.18384,2.13824 0.56655,2.03169 -4.41092,4.5368 -4.41092,4.5368 0,0 8.37349,-0.16331 9.37508,2.95661 0.86218,2.68563 -5.08064,6.76687 -5.08064,6.76687 0,0 6.52509,0.60499 7.29555,3.1376 0.72854,2.39482 -4.07764,6.30604 -4.07764,6.30604 0,0 8.26692,1.28109 8.9644,4.56029 0.55415,2.60533 -5.03113,6.20815 -5.03113,6.20815 0,0 8.74735,1.41837 9.66103,4.9139 0.88626,3.39062 -5.84007,8.74239 -5.84007,8.74239 0,0 7.72456,4.5383 7.56356,8.27073 -0.15425,3.57598 -7.90197,7.27062 -7.90197,7.27062 0,0 8.1178,6.50196 6.18398,9.86775 -2.03778,3.54675 -12.26513,-0.39269 -12.26513,-0.39269 0,0 1.46134,9.64806 -1.73237,12.2649 -4.54459,3.7237 -17.59669,-1.01463 -17.59669,-1.01463 0,0 -2.2505,8.52889 -5.82577,9.89737 -4.42841,1.69502 -13.55715,-4.30795 -13.55715,-4.30795 0,0 -4.62018,6.35786 -8.12207,6.7862 -3.7422,0.45774 -10.17145,-4.94609 -10.17145,-4.94609 0,0 -6.64323,4.95785 -10.43279,4.62568 -3.43015,-0.30068 -8.57089,-5.76602 -8.57089,-5.76602 0,0 -7.96291,4.62455 -11.76673,3.19345 -2.79886,-1.05301 -4.96204,-7.47396 -4.96204,-7.47396 0,0 -10.5899,3.87098 -14.26381,0.83998 -2.622,-2.16317 -1.34588,-10.10822 -1.34588,-10.10822 0,0 -7.41836,-3.05339 -8.37111,-6.44327 -0.85408,-3.03879 3.39631,-8.83959 3.39631,-8.83959 0,0 -2.8861,-5.36632 -2.02206,-7.96607 0.82459,-2.48106 6.09658,-4.93483 6.09658,-4.93483 0,0 -1.5043,-5.13669 -0.46419,-7.36633 1.13073,-2.4239 6.46038,-4.75899 6.46038,-4.75899 0,0 -0.95325,-4.15262 -0.05,-5.8995 0.81052,-1.56758 4.34563,-3.02387 4.34563,-3.02387 0,0 -0.96863,-3.42448 -0.27293,-4.90796 0.83789,-1.78667 4.75483,-3.52701 4.75483,-3.52701 0,0 0.59123,-3.11792 1.40387,-4.44066 1.0484,-1.70649 4.29183,-4.20491 4.29183,-4.20491 0,0 1.97917,-4.45875 3.4155,-6.4064 1.47514,-2.00028 5.24937,-5.29514 5.24937,-5.29514 0,0 1.41081,-3.13734 2.45542,-4.48355 1.27666,-1.64525 4.56262,-4.26767 4.56262,-4.26767 21.08,4.88646 37.63366,0.81147 55.50803,-0.44514 z" id="path1347" sodipodi:nodetypes="cacacacacacacacacacacacacacacacacacacacacacacc" style="display:inline;opacity:1;fill:#ffffff"/><path d="m 309.71288,327.6899 c 0.17826,-0.0554 11.29343,14.89769 12.56072,23.45 5.35408,18.68238 17.63515,40.72923 4.38693,56.74234 -20.35084,24.59804 -79.88819,32.00846 -104.40557,3.84551 -10.16656,-11.67826 0.99038,-31.4387 9.04984,-47.4412 5.24788,-12.61332 23.50188,-36.42668 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z" class="shadow" id="path1349" sodipodi:nodetypes="ccssccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="caaaacc" id="path1351" d="m 309.71288,327.6899 c 0,0 10.07222,14.93896 12.56072,23.45 5.32378,18.20822 17.01533,42.58588 4.38693,56.74234 -23.18276,25.98792 -81.71681,30.26582 -104.40557,3.84551 -10.48841,-12.21341 2.84148,-32.58757 9.04984,-47.4412 5.64594,-13.50803 24.91963,-36.16771 24.91963,-36.16771 20.31304,4.70868 36.26441,0.78195 53.48845,-0.42894 z"/><path d="m 332.59192,318.88911 6.08774,7.14854 c -34.68921,1.29057 -66.54134,17.97839 -88.5273,3.49476 l 3.86668,-6.97285 c 33.13895,8.49273 45.86818,-5.13302 78.57288,-3.67045 z" class="shadow" id="path1354" sodipodi:nodetypes="ccccc"/><path style="display:inline;opacity:1;fill:#ffffff" sodipodi:nodetypes="ccccc" id="path1356" d="m 332.59192,318.88911 6.08774,7.14854 c -35.36449,0.47083 -67.95512,17.37248 -88.5273,3.49476 l 3.86668,-6.97285 c 30.76253,9.95515 45.2941,-4.00464 78.57288,-3.67045 z"/><g transform="'+_art_transform+'"id="g1358" transform="matrix(0.99515665,0,0,0.99515665,59.14021,25.319195)" style="display:inline;opacity:0.697"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..21a9d63d2c2b84bf3190df624a661456c16cf9b4 --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Normal.tw @@ -0,0 +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 diff --git a/src/art/vector_revamp/layers/Torso_Outfit_Maid_Unnatural.tw b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Unnatural.tw new file mode 100644 index 0000000000000000000000000000000000000000..713952e5be076bb1662c767edfff232ab6c73e16 --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Outfit_Maid_Unnatural.tw @@ -0,0 +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 diff --git a/src/art/vector_revamp/layers/Torso_Outfit_Straps_Hourglass.tw b/src/art/vector_revamp/layers/Torso_Outfit_Straps_Hourglass.tw new file mode 100644 index 0000000000000000000000000000000000000000..3a4971a3862d031bee12a8ea05e972a76406c159 --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Outfit_Straps_Hourglass.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Torso_Outfit_Straps_Hourglass [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 300.64645,182.01961 c 0.19647,-2.8289 -0.21252,-5.25416 -0.48765,-7.76866 l 18.75297,-10.43959 11.53228,-16.37604 c 0.48515,9.29334 0.35747,19.09563 5.57428,24.45929 -11.37581,3.97083 -19.90829,12.02571 -35.37188,10.125 z" class="shadow" id="path1059" sodipodi:nodetypes="cccccc"/><path d="m 282.74507,409.66612 c -3.02008,-75.15795 -28.86151,-165.97691 20.57911,-228.58327 l 7.48106,-2.774 c -52.38053,67.74199 -24.96872,151.88878 -22.44483,231.28803 z" class="shadow" id="path1061" sodipodi:nodetypes="ccccc"/><path d="m 248.61993,292.69037 0.49718,-5.61448 c 26.08054,7.76617 67.99111,-3.38669 89.95679,-8.90649 l -1.5334,6.06498 c -25.3681,6.21736 -60.17783,18.9423 -88.92057,8.45599 z" class="shadow" id="path1063" sodipodi:nodetypes="ccccc"/><path d="m 250.11347,322.51288 -1.23696,-5.4714 c 26.11901,7.93288 63.08772,-3.03436 84.20257,-12.2411 l -1.77559,6.01811 C 311.74357,317.86559 278.86187,333 250.11347,322.51288 Z" class="shadow" id="path1065" sodipodi:nodetypes="ccccc"/><path d="m 305.58478,461.76323 -2.91688,0.62771 c -0.237,-34.63249 43.891,-58.56721 74.52696,-75.64102 l 2.20189,5.09003 c -23.66963,12.29432 -69.72202,41.24006 -73.81197,69.92328 z" class="shadow" id="path1067" sodipodi:nodetypes="ccccc"/><path d="m 286.46262,461.96295 2.91688,0.62771 c -28.01268,-37.53971 -26.96023,-23.95407 -59.71446,-54.45352 l -1.38939,5.15253 c 34.69638,28.86465 42.2831,28.46475 58.18697,48.67328 z" class="shadow" id="path1069" sodipodi:nodetypes="ccccc"/><path d="m 230.0681,406.94442 0.77062,-5.05979 c 67.99401,11.93288 109.67161,-12.54586 143.53646,-21.5026 l 1.98091,4.40502 c -19.55992,7.0471 -78.41459,38.51949 -146.28799,22.15737 z" class="shadow" id="path1071" sodipodi:nodetypes="ccccc"/><path d="m 283.47212,411.04042 5.17119,-1.14037 26.1263,22.47011 -2.15059,4.14311 z" class="shadow" id="path1076" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccccc" id="path1078" class="shadow" d="m 283.47212,411.04042 5.17119,-1.14037 -16.9362,33.09511 -3.33809,-2.73189 z"/><path d="m 306.84144,179.80553 -2.06007,3.22555 c 23.3503,2.52905 38.53464,15.87246 53.33726,29.7214 l -1.09146,-6.06498 c -14.87819,-17.81605 -32.01863,-24.80565 -50.18573,-26.88197 z" class="shadow" id="path1080" sodipodi:nodetypes="ccccc"/><path d="m 302.41314,180.3416 2.06007,3.22555 c -17.14399,8.74118 -36.94672,13.05114 -49.62495,29.23526 l 2.50567,-4.20882 c 11.69297,-15.28809 29.81478,-19.23118 45.05921,-28.25199 z" class="shadow" id="path1083" sodipodi:nodetypes="ccccc"/><path d="m 295.92707,406.04635 -5.48014,0.45093 c 15.27591,-31.3179 31.43451,-62.33025 40.82744,-95.68456 l 2.64023,5.6203 c -10.44934,31.1379 -23.84084,59.86194 -37.98753,89.61333 z" class="shadow" id="path1085" sodipodi:nodetypes="ccccc"/><path d="m 282.59169,408.07843 5.48014,0.45093 C 271.9581,377.42091 257.55557,356.46024 250.06195,322.6311 l -2.97225,5.42499 c 8.59628,31.47482 20.75767,50.37961 35.50199,80.02234 z" class="shadow" id="path1087" sodipodi:nodetypes="ccccc"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Outfit_Straps_Normal.tw b/src/art/vector_revamp/layers/Torso_Outfit_Straps_Normal.tw new file mode 100644 index 0000000000000000000000000000000000000000..203aef2407b6fb9c0e9638ec9e1e8f1516b97fe5 --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Outfit_Straps_Normal.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Torso_Outfit_Straps_Normal [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccc" id="path1017" class="shadow" d="m 300.64645,182.01961 c 0.19647,-2.8289 -0.21252,-5.25416 -0.48765,-7.76866 l 18.75297,-10.43959 11.53228,-16.37604 c 0.48515,9.29334 0.35747,19.09563 5.57428,24.45929 -11.37581,3.97083 -19.90829,12.02571 -35.37188,10.125 z"/><path sodipodi:nodetypes="ccccc" id="path1019" class="shadow" d="m 282.74507,409.66612 c -3.02008,-75.15795 -28.86151,-165.97691 20.57911,-228.58327 l 7.48106,-2.774 c -52.38053,67.74199 -24.96872,151.88878 -22.44483,231.28803 z"/><path sodipodi:nodetypes="ccccc" id="path1021" class="shadow" d="m 248.54181,293.0185 0.59093,-5.63792 c 26.08054,7.76617 81.41051,-8.64113 103.37619,-14.16093 l -1.5334,6.06498 c -25.3681,6.21736 -73.69098,24.22018 -102.43372,13.73387 z"/><path sodipodi:nodetypes="ccccc" id="path1024" class="shadow" d="m 249.83337,322.70417 -1.10438,-5.55979 c 26.11901,7.93288 77.02383,-9.41284 98.13868,-18.61958 l -0.44977,5.62037 c -19.55992,7.0471 -67.83613,29.04612 -96.58453,18.559 z"/><path sodipodi:nodetypes="ccccc" id="path1026" class="shadow" d="m 305.58478,461.76323 -2.91688,0.62771 c -0.237,-34.63249 43.891,-58.56721 74.52696,-75.64102 l 2.20189,5.09003 c -23.66963,12.29432 -69.72202,41.24006 -73.81197,69.92328 z"/><path sodipodi:nodetypes="ccccc" id="path1028" class="shadow" d="m 286.46262,461.96295 2.91688,0.62771 c -28.01268,-37.53971 -26.96023,-23.95407 -59.71446,-54.45352 l -1.38939,5.15253 c 34.69638,28.86465 42.2831,28.46475 58.18697,48.67328 z"/><path sodipodi:nodetypes="ccccc" id="path1030" class="shadow" d="m 230.0681,406.94442 0.77062,-5.05979 c 67.99401,11.93288 109.67161,-12.54586 143.53646,-21.5026 l 1.98091,4.40502 c -19.55992,7.0471 -78.41459,38.51949 -146.28799,22.15737 z"/><path sodipodi:nodetypes="ccccc" id="path1032" class="shadow" d="m 283.47212,411.04042 5.17119,-1.14037 26.1263,22.47011 -2.15059,4.14311 z"/><path d="m 283.47212,411.04042 5.17119,-1.14037 -16.9362,33.09511 -3.33809,-2.73189 z" class="shadow" id="path1034" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccccc" id="path1036" class="shadow" d="m 306.84144,179.80553 -2.06007,3.22555 c 23.3503,2.52905 38.53464,15.87246 53.33726,29.7214 l -1.09146,-6.06498 c -14.87819,-17.81605 -32.01863,-24.80565 -50.18573,-26.88197 z"/><path sodipodi:nodetypes="ccccc" id="path1038" class="shadow" d="m 302.41314,180.3416 2.06007,3.22555 c -17.14399,8.74118 -36.94672,13.05114 -49.62495,29.23526 l 2.50567,-4.20882 c 11.69297,-15.28809 29.81478,-19.23118 45.05921,-28.25199 z"/><path sodipodi:nodetypes="ccccc" id="path1040" class="shadow" d="m 290.49119,405.86957 -5.48014,0.45093 c 15.27591,-31.3179 51.9848,-68.82679 61.37773,-102.1811 l 0.87606,5.45462 c -10.44934,31.1379 -42.62696,66.52416 -56.77365,96.27555 z"/><path sodipodi:nodetypes="ccccc" id="path1044" class="shadow" d="m 282.59169,408.07843 5.48014,0.45093 c -16.11373,-31.10845 -30.52048,-51.97001 -38.0141,-85.79915 l -2.97225,5.42499 c 8.59628,31.47482 20.76189,50.2805 35.50621,79.92323 z"/></svg></html>' >> \ No newline at end of file diff --git a/src/art/vector_revamp/layers/Torso_Outfit_Straps_Unnatural.tw b/src/art/vector_revamp/layers/Torso_Outfit_Straps_Unnatural.tw new file mode 100644 index 0000000000000000000000000000000000000000..c49b241d8ebbcff5b9ccf81e06b59015a962b50e --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Outfit_Straps_Unnatural.tw @@ -0,0 +1,3 @@ +:: Art_Vector_Revamp_Torso_Outfit_Straps_Unnatural [nobr] + +<<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 300.64645,182.01961 c 0.19647,-2.8289 -0.21252,-5.25416 -0.48765,-7.76866 l 18.75297,-10.43959 11.53228,-16.37604 c 0.48515,9.29334 0.35747,19.09563 5.57428,24.45929 -11.37581,3.97083 -19.90829,12.02571 -35.37188,10.125 z" class="shadow" id="XMLID_511_-1-1" sodipodi:nodetypes="cccccc"/><path d="m 282.74507,409.66612 c -3.02008,-75.15795 -28.86151,-165.97691 20.57911,-228.58327 l 7.48106,-2.774 c -52.38053,67.74199 -24.96872,151.88878 -22.44483,231.28803 z" class="shadow" id="XMLID_511_-1-1-0" sodipodi:nodetypes="ccccc"/><path d="m 252.72931,292.831 0.21593,-5.70042 c 26.08054,7.76617 58.6829,-3.61816 80.64858,-9.13796 l -1.5334,6.06498 c -25.3681,6.21736 -50.58837,19.25971 -79.33111,8.7734 z" class="shadow" id="XMLID_511_-1-1-2" sodipodi:nodetypes="ccccc"/><path d="m 253.95837,322.57917 -1.10438,-5.55979 c 26.11901,7.93288 53.67436,-3.18904 74.78921,-12.39578 l -1.77559,6.01811 c -19.55992,7.0471 -43.16084,22.42458 -71.90924,11.93746 z" class="shadow" id="XMLID_511_-1-1-2-6" sodipodi:nodetypes="ccccc"/><path d="m 305.58478,461.76323 -2.91688,0.62771 c -0.237,-34.63249 43.891,-58.56721 74.52696,-75.64102 l 2.20189,5.09003 c -23.66963,12.29432 -69.72202,41.24006 -73.81197,69.92328 z" class="shadow" id="XMLID_511_-1-1-2-6-1" sodipodi:nodetypes="ccccc"/><path d="m 286.46262,461.96295 2.91688,0.62771 c -28.01268,-37.53971 -26.96023,-23.95407 -59.71446,-54.45352 l -1.38939,5.15253 c 34.69638,28.86465 42.2831,28.46475 58.18697,48.67328 z" class="shadow" id="XMLID_511_-1-1-2-6-1-0" sodipodi:nodetypes="ccccc"/><path d="m 230.0681,406.94442 0.77062,-5.05979 c 67.99401,11.93288 109.67161,-12.54586 143.53646,-21.5026 l 1.98091,4.40502 c -19.55992,7.0471 -78.41459,38.51949 -146.28799,22.15737 z" class="shadow" id="XMLID_511_-1-1-2-6-2" sodipodi:nodetypes="ccccc"/><path d="m 283.47212,411.04042 5.17119,-1.14037 26.1263,22.47011 -2.15059,4.14311 z" class="shadow" id="XMLID_511_-1-1-2-6-3" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="ccccc" id="path5007" class="shadow" d="m 283.47212,411.04042 5.17119,-1.14037 -16.9362,33.09511 -3.33809,-2.73189 z"/><path d="m 306.84144,179.80553 -2.06007,3.22555 c 23.3503,2.52905 38.53464,15.87246 53.33726,29.7214 l -1.09146,-6.06498 c -14.87819,-17.81605 -32.01863,-24.80565 -50.18573,-26.88197 z" class="shadow" id="XMLID_511_-1-1-2-3" sodipodi:nodetypes="ccccc"/><path d="m 302.41314,180.3416 2.06007,3.22555 c -17.14399,8.74118 -36.94672,13.05114 -49.62495,29.23526 l 2.50567,-4.20882 c 11.69297,-15.28809 29.81478,-19.23118 45.05921,-28.25199 z" class="shadow" id="XMLID_511_-1-1-2-3-1" sodipodi:nodetypes="ccccc"/><path d="m 290.49119,405.86957 -5.48014,0.45093 c 15.27591,-31.3179 31.43451,-62.33025 40.82744,-95.68456 l 3.21835,4.52655 c -10.44934,31.1379 -24.41896,60.95569 -38.56565,90.70708 z" class="shadow" id="XMLID_511_-1-1-2-6-1-06" sodipodi:nodetypes="ccccc"/><path d="m 282.59169,408.07843 5.48014,0.45093 c -16.11373,-31.10845 -26.58298,-52.15751 -34.0766,-85.98665 l -2.97225,5.42499 c 8.59628,31.47482 16.82439,50.468 31.56871,80.11073 z" class="shadow" id="XMLID_511_-1-1-2-6-1-06-9" sodipodi:nodetypes="ccccc"/></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 new file mode 100644 index 0000000000000000000000000000000000000000..16bc6d3047a15898a83c97e511abec55d0ad314e --- /dev/null +++ b/src/art/vector_revamp/layers/Torso_Unnatural.tw @@ -0,0 +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 1.67702,0.43271 4.94669,1.18016 5.313,-0.25046 l 4.82293,-0.062 c 0,-0.003 0.49727,1.92474 9.35695,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 -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 246.30911,231.06259 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 0.71424,0.0435 3.1774,0.77206 4.37876,0.44893 0.70147,-0.18868 0.95983,-0.71607 0.95983,-0.71607 l 4.82917,-0.077 c 0.96846,1.30549 6.32302,0.7661 9.32277,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 -15.75422,-3.81595 -28.55683,3.36571 -28.3123,-32.42233 l -33.94646,3.49567 c -0.60023,11.74644 4.71192,22.22273 4.14186,32.15688 -5.62538,4.35924 -11.13319,4.21882 -29.51103,8.85181 -8.65971,10.94361 -15.77697,17.65654 -24.83698,40.22861 z" class="skin torso" id="path1152" sodipodi:nodetypes="cccccccsccccccccscccccccccc"/><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" id="path1454" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="cccccc" id="path1459" class="muscle_tone" 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 diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw index ef6201f5f9985162f15adcead9ac1bef5195c1be..69c400e1dc4e34b13cda54681f8a4b9d2860298a 100644 --- a/src/events/intro/introSummary.tw +++ b/src/events/intro/introSummary.tw @@ -884,7 +884,7 @@ Currently ''enabled.'' [[Disable|Intro Summary][$seeImages = 0]] <br> <<if $imageChoice == 1>> - ''Vector art by NoX'' is selected. [[Switch to rendered imagepack|Intro Summary][$imageChoice = 0]] | [[Switch to non-embedded vector art|Intro Summary][$imageChoice = 2]] + ''Vector art by NoX'' is selected. [[Switch to rendered imagepack|Intro Summary][$imageChoice = 0]] | [[Switch to non-embedded vector art|Intro Summary][$imageChoice = 2]] | [[Switch to revamped vector art|Intro Summary][$imageChoice = 3]] <br> Highlights on shiny clothing <<if $seeVectorArtHighlights == 1>> @@ -894,7 +894,17 @@ Currently <</if>> <br>@@.red;Git compiled only, no exceptions.@@ <<elseif $imageChoice == 2>> - ''Vector art by NoX - non-embed version'' is selected. [[Switch to rendered imagepack|Intro Summary][$imageChoice = 0]] | [[Switch to embedded vector art|Intro Summary][$imageChoice = 1]] + ''Vector art by NoX - non-embed version'' is selected. [[Switch to rendered imagepack|Intro Summary][$imageChoice = 0]] | [[Switch to embedded vector art|Intro Summary][$imageChoice = 1]] | [[Switch to revamped vector art|Intro Summary][$imageChoice = 3]] + <<elseif $imageChoice == 3>> + ''Vector art revamp'' is selected. [[Switch to rendered imagepack|Intro Summary][$imageChoice = 0]] | [[Switch to embedded vector art|Intro Summary][$imageChoice = 1]] | [[Switch to non-embedded vector art|Intro Summary][$imageChoice = 2]] + <br> + Highlights on shiny clothing + <<if $seeVectorArtHighlights == 1>> + @@.cyan;ENABLED@@. [[Disable|Intro Summary][$seeVectorArtHighlights = 0]] + <<else>> + @@.red;DISABLED@@. [[Enable|Intro Summary][$seeVectorArtHighlights = 1]] + <</if>> + <br>@@.red;Git compiled only, no exceptions.@@ <<elseif $imageChoice == 0>> ''Rendered imagepack by Shokushu'' is selected. [[Switch to vector art|Intro Summary][$imageChoice = 1]] <br> diff --git a/src/uncategorized/options.tw b/src/uncategorized/options.tw index e5a83b09e6b55e4b10112c6986d90fcd6ca32c79..61f4ad97745dc018f8d686ad4863e5569cc35a17 100644 --- a/src/uncategorized/options.tw +++ b/src/uncategorized/options.tw @@ -52,7 +52,7 @@ Image display @@.cyan;ENABLED@@. [[Disable|Options][$seeImages = 0]] <br> <<if $imageChoice == 1>> - @@.yellow;Vector art by NoX@@ is selected. [[Switch to rendered imagepack|Options][$imageChoice = 0]] | [[Switch to non-embedded vector art|Options][$imageChoice = 2]] + @@.yellow;Vector art by NoX@@ is selected. [[Switch to rendered imagepack|Options][$imageChoice = 0]] | [[Switch to non-embedded vector art|Options][$imageChoice = 2]] | [[Switch to revamped vector art|Options][$imageChoice = 3]] <br> Highlights on shiny clothing <<if $seeVectorArtHighlights == 1>> @@ -62,7 +62,17 @@ Image display <</if>> <br>@@.red;Git compiled only, no exceptions.@@ <<elseif $imageChoice == 2>> - @@.yellow;Vector art by NoX - non-embed version@@ is selected. [[Switch to rendered imagepack|Options][$imageChoice = 0]] | [[Switch to embedded vector art|Options][$imageChoice = 1]] + @@.yellow;Vector art by NoX - non-embed version@@ is selected. [[Switch to rendered imagepack|Options][$imageChoice = 0]] | [[Switch to embedded vector art|Options][$imageChoice = 1]] | [[Switch to revamped vector art|Options][$imageChoice = 3]] + <<elseif $imageChoice == 3>> + @@.yellow;Vector art revamp@@ is selected. [[Switch to rendered imagepack|Options][$imageChoice = 0]] | [[Switch to embedded vector art|Options][$imageChoice = 1]] | [[Switch to non-embedded vector art|Options][$imageChoice = 2]] + <br> + Highlights on shiny clothing + <<if $seeVectorArtHighlights == 1>> + @@.cyan;ENABLED@@. [[Disable|Options][$seeVectorArtHighlights = 0]] + <<else>> + @@.red;DISABLED@@. [[Enable|Options][$seeVectorArtHighlights = 1]] + <</if>> + <br>@@.red;Git compiled only, no exceptions.@@ <<elseif $imageChoice == 0>> @@.yellow;Rendered imagepack by Shokushu@@ is selected. [[Switch to vector art|Options][$imageChoice = 1]] <br>