code
stringlengths
0
56.1M
repo_name
stringclasses
515 values
path
stringlengths
2
147
language
stringclasses
447 values
license
stringclasses
7 values
size
int64
0
56.8M
:: Art_Vector_Set_Colour_Outfit_ /* BEWARE: _outfitBaseColour is used by Art_Vector_Set_Colour_Skin_ */ /* BEWARE: _outfitBaseColour is read by Wardrobe Use */ /* BEWARE: _glassesColor is read by Wardrobe Use */ <<set _s = Art_Vector_Set_Colour_Outfit(_artSlave) >> <<set _outfitBaseColour = _s.outfitBaseColour>> <<set _glassesColor = _s.glassesColor>> <<set _eyeColor = _s.eyeColor>>
amomynous0/fc
src/art/vector/Set_Colour_Outfit.tw
tw
bsd-3-clause
387
:: Art_Vector_Set_Colour_Outfit_JS [script] window.Art_Vector_Set_Colour_Outfit = function(artSlave) { var s = { outfitBaseColour : undefined, glassesColor : undefined } if (artSlave.fuckdoll != 0 || artSlave.clothes == "restrictive latex" || artSlave.clothes == "a latex catsuit" || artSlave.clothes == "a cybersuit") { s.outfitBaseColour = "#515351" ; /* standard "black rubber" latex colour */ if (artSlave.clothingBaseColor) { s.outfitBaseColour = artSlave.clothingBaseColor ; /* latex colour selected by user */ /* TODO: rewrite all textual descriptions not to explicitly mention the latex being of black colour. */ } } if (artSlave.fuckdoll != 0 || artSlave.clothes == "a comfortable bodysuit") { s.outfitBaseColour = "#464646" ; /* bodysuit */ if (artSlave.clothingBaseColor) { s.outfitBaseColour = artSlave.clothingBaseColor ; /* bodysuit colour selected by user */ } } /* head addons */ switch (artSlave.eyewear) { case "corrective glasses": case "glasses": case "blurring glasses": s.glassesColor = "#010101"; break; default: /* use colour for "glasses" by default */ s.glassesColor = "#010101"; } switch (artSlave.collar) { case "porcelain mask": s.glassesColor = "#FFFFFF"; break; default: /* use colour for "mask" by default */ s.glassesColor = "#010101"; } if (artSlave.glassesColor) { s.glassesColor = artSlave.glassesColor; /* glasses colour selected by user */ } if (artSlave.eyeColor) { s.eyeColor = extractColor(artSlave.eyeColor, 1); } return s; }
amomynous0/fc
src/art/vector/Set_Colour_Outfit_JS.tw
tw
bsd-3-clause
1,520
:: Art_Vector_Set_Colour_Shoe_ [nobr] /* courtesy of Nov-X */ /* BEWARE: _shoeColour is read by Wardrobe Use */ /* note: only heels use this shadow */ <<set _shoeShadowColour = "#616a6b">> <<switch _artSlave.shoes>> <<case "heels" "extreme heels">> <<set _shoeColour = "#80808080">> <<case "boots">> <<set _shoeColour = "#80808080">> <<case "flats">> <<set _shoeColour = "#80808080">> <<case "pumps">> <<set _shoeColour = "#80808080">> <<default>> /* use colour for "heels" by default */ <<set _shoeColour = "#595959">> <</switch>> <<if def _artSlave.shoeColor>> <<set _shoeColour = _artSlave.shoeColor+";opacity: 0.4">> /* shoe colour selected by user */ <<set _shoeShadowColour = _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 = _skinColour>> <<set _shoeShadowColour = _shoeColour+";opacity: 0.5">> /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */ <</if>>
amomynous0/fc
src/art/vector/Set_Colour_Shoe.tw
tw
bsd-3-clause
1,211
:: Art_Vector_Set_Colour_Skin_ /* BEWARE: _outfitBaseColour is set by Art_Vector_Set_Colour_Outfit_ */ <<set _s = Art_Vector_Set_Colour_Skin(_artSlave, _outfitBaseColour) >> <<set _areolaStyle = _s.areolaStyle>> <<set _bellySkinStyle = _s.bellySkinStyle>> <<set _boobSkinStyle = _s.boobSkinStyle>> <<set _headSkinStyle = _s.headSkinStyle>> <<set _labiaStyle = _s.labiaStyle>> <<set _penisSkinStyle = _s.penisSkinStyle>> <<set _scrotumSkinStyle = _s.scrotumSkinStyle>> <<set _skinColour = _s.skinColour>> <<set _torsoSkinStyle = _s.torsoSkinStyle>>
amomynous0/fc
src/art/vector/Set_Colour_Skin.tw
tw
bsd-3-clause
550
:: Art_Vector_Set_Colour_Skin_JS [script] window.Art_Vector_Set_Colour_Skin = function(artSlave, outfitBaseColour) { /* create an aggregator object yielding all computed styles */ var s = { areolaStyle: "#d76b93;", /* this is the default and can be customized later */ labiaStyle: "#d76b93;", /* this is the default and can be customized later */ /* todo: introduce fleshStyle */ /* these need to be declared so they can be set conditionally */ headSkinStyle: undefined, torsoSkinStyle: undefined, boobSkinStyle: undefined, penisSkinStyle: undefined, scrotumSkinStyle: undefined, bellySkinStyle: undefined, skinColour: undefined, eyeColor: undefined } var colorSlave = skinColorCatcher(artSlave); s.areolaStyle = colorSlave.areolaColor; s.labiaStyle = colorSlave.labiaColor; s.skinColour = colorSlave.skinColor; /* 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 */ s.skinColour = outfitBaseColour; s.areolaStyle = "fill:rgba(0,0,0,0.3);"; s.labiaStyle = s.areolaStyle; } /* slave wears restrictive latex - display most skin as if it was rubber */ if (artSlave.clothes == "restrictive latex") { /* nice latex does not cover any privates. */ s.boobSkinStyle = "fill:"+s.skinColour+";"; s.penisSkinStyle = "fill:"+s.skinColour+";"; s.scrotumSkinStyle = "fill:"+s.skinColour+";"; s.torsoSkinStyle = "fill:"+s.skinColour+";"; /* rest of body is covered in latex */ s.skinColour = outfitBaseColour; } if (artSlave.clothes == "a latex catsuit") { /* nice latex does not cover head. */ s.headSkinStyle = "fill:"+s.skinColour+";"; /* rest of body is covered in latex */ s.skinColour = outfitBaseColour; /* catsuit covers areolae and crotch, too */ } if (artSlave.clothes == "a cybersuit") { /* rest of body is covered in latex */ s.skinColour = outfitBaseColour; } /* END SKIN COLOUR OVERRIDES FOR LATEX CLOTHING EMULATION */ if (artSlave.clothes == "a comfortable bodysuit") { /* nice bodysuit does not cover head. */ s.headSkinStyle = "fill:"+s.skinColour+";"; /* rest of body is covered in bodysuit */ s.skinColour = outfitBaseColour; } /* outfit dick coloring to match outfit rgba in svg */ switch (artSlave.clothes) { case "a cheerleader outfit": s.scrotumSkinStyle = "fill:rgba(250,186,0,1);"; s.bellySkinStyle = "fill:rgba(250,186,0,1);"; break; case "cutoffs and a t-shirt": s.scrotumSkinStyle = "fill:rgba(81,124,211,1);"; break; case "a halter top dress": s.scrotumSkinStyle = "fill:rgba(94,51,124,1);"; s.bellySkinStyle = "fill:rgba(94,51,124,1);"; break; case "a hijab and abaya": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; s.bellySkinStyle = "fill:rgba(51,51,51,1);"; break; case "a niqab and abaya": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; s.bellySkinStyle = "fill:rgba(51,51,51,1);"; break; case "a burqa": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; s.bellySkinStyle = "fill:rgba(51,51,51,1);"; break; case "a hijab and blouse": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; s.bellySkinStyle = "fill:rgba(51,51,51,1);"; break; case "a burkini": s.scrotumSkinStyle = "fill:rgba(0,97,158,1);"; s.bellySkinStyle = "fill:rgba(0,97,158,1);"; break; case "a klan robe": s.scrotumSkinStyle = "fill:rgba(236,236,236,1);"; s.bellySkinStyle = "fill:rgba(236,236,236,1);"; break; case "a nice maid outfit": s.scrotumSkinStyle = "fill:rgba(225,225,225,1);"; s.bellySkinStyle = "fill:rgba(225,225,225,1);"; break; case "a slutty maid outfit": s.scrotumSkinStyle = "fill:rgba(225,225,225,1);"; s.bellySkinStyle = "fill:rgba(225,225,225,1);"; break; case "a leotard": s.scrotumSkinStyle = "fill:rgba(120,15,55,1);"; s.bellySkinStyle = "fill:rgba(120,15,55,1);"; break; case "a military uniform": s.scrotumSkinStyle = "fill:rgba(34,42,18,1);"; s.bellySkinStyle = "fill:rgba(34,42,18,1);"; break; case "a mini dress": s.scrotumSkinStyle = "fill:rgba(39,174,96,1);"; s.bellySkinStyle = "fill:rgba(39,174,96,1);"; break; case "a nice nurse outfit": s.scrotumSkinStyle = "fill:rgba(0,128,128,1);"; s.bellySkinStyle = "fill:rgba(0,128,128,1);"; break; case "a slutty nurse outfit": s.scrotumSkinStyle = "fill:rgba(200,200,200,1);"; break; case "a scalemail bikini": s.scrotumSkinStyle = "fill:rgba(133,146,158,1);"; break; case "striped panties": s.scrotumSkinStyle = "fill:rgba(255,255,255,1);"; break; case "a schoolgirl outfit": s.scrotumSkinStyle = "fill:rgba(28,31,36,1);"; s.bellySkinStyle = "fill:rgba(28,31,36,1);"; break; case "a ball gown": s.scrotumSkinStyle = "fill:rgba(128,0,0,1);"; s.bellySkinStyle = "fill:rgba(128,0,0,1);"; break; case "battledress": s.scrotumSkinStyle = "fill:rgba(34,42,18,1);"; s.bellySkinStyle = "fill:rgba(34,42,18,1);"; break; case "a slave gown": s.scrotumSkinStyle = "fill:rgba(200,200,200,1);"; s.bellySkinStyle = "fill:rgba(200,200,200,1);"; break; case "a slutty outfit": s.scrotumSkinStyle = "fill:rgba(63,126,181,1);"; break; case "spats and a tank top": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; break; case "a succubus outfit": s.scrotumSkinStyle = "fill:rgba(128,0,0,1);"; s.bellySkinStyle = "fill:rgba(128,0,0,1);"; break; case "nice business attire": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; s.bellySkinStyle = "fill:rgba(51,51,51,1);"; break; case "slutty business attire": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; break; case "attractive lingerie for a pregnant woman": s.scrotumSkinStyle = "fill:rgba(153,153,153,1);"; break; case "a bunny outfit": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; s.bellySkinStyle = "fill:rgba(51,51,51,1);"; break; case "conservative clothing": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; s.bellySkinStyle = "fill:rgba(51,51,51,1);"; break; case "harem gauze": s.scrotumSkinStyle = "fill:rgba(0,168,131,1);"; break; case "a huipil": s.scrotumSkinStyle = "fill:rgba(200,200,200,1);"; s.bellySkinStyle = "fill:rgba(200,200,200,1);"; break; case "a kimono": s.scrotumSkinStyle = "fill:rgba(0,91,150,1);"; s.bellySkinStyle = "fill:rgba(0,91,150,1);"; break; case "a maternity dress": s.scrotumSkinStyle = "fill:rgba(48,54,72,1);"; s.bellySkinStyle = "fill:rgba(48,54,72,1);"; break; case "a slutty qipao": s.scrotumSkinStyle = "fill:rgba(204,177,68,1);"; s.bellySkinStyle = "fill:rgba(204,177,68,1);"; break; case "stretch pants and a crop-top": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; break; case "a toga": s.scrotumSkinStyle = "fill:rgba(200,200,200,1);"; s.bellySkinStyle = "fill:rgba(200,200,200,1);"; break; case "a penitent nuns habit": s.scrotumSkinStyle = "fill:rgba(114,93,73,1);"; break; case "a chattel habit": s.scrotumSkinStyle = "fill:rgba(200,200,200,1);"; break; case "a monokini": s.scrotumSkinStyle = "fill:rgba(33,47,61,1);"; break; case "a schutzstaffel uniform": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; s.bellySkinStyle = "fill:rgba(51,51,51,1);"; break; case "a slutty schutzstaffel uniform": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; s.bellySkinStyle = "fill:rgba(51,51,51,1);"; break; case "a red army uniform": s.scrotumSkinStyle = "fill:rgba(114,93,73,1);"; s.bellySkinStyle = "fill:rgba(114,93,73,1);"; break; case "an apron": s.scrotumSkinStyle = "fill:rgba(255,105,180,1);"; s.bellySkinStyle = "fill:rgba(255,105,180,1);"; break; case "a fallen nuns habit": s.bellySkinStyle = "fill:rgba(51,51,51,1);"; break; case "a dirndl": s.scrotumSkinStyle = "fill:rgba(128,0,51,1);"; break; case "lederhosen": s.scrotumSkinStyle = "fill:rgba(93,83,108,1);"; break; case "a long qipao": s.scrotumSkinStyle = "fill:rgba(0,128,0,1);"; break; case "a mounty outfit": s.scrotumSkinStyle = "fill:rgba(51,51,51,1);"; break; case "battlearmor": s.scrotumSkinStyle = "fill:rgba(200,200,200,1);"; break; case "a biyelgee costume": s.scrotumSkinStyle = "fill:rgba(33,68,120,1);"; } return s; }
amomynous0/fc
src/art/vector/Set_Colour_Skin_JS.tw
tw
bsd-3-clause
7,919
:: Art_Vector_Torso_ [nobr] /* Torso size switch courtesy of Nov-X */ /* BEWARE: _torsoSize might be used in torso outfit */ <<if _artSlave.waist >= 96 && _artSlave.waist > -96>> <<if _artSlave.weight >= 96>> <<set _torsoSize = "Obese">> <<elseif _artSlave.weight < 96 && _artSlave.weight >= 11>> <<set _torsoSize = "Fat">> <<elseif _artSlave.weight < 11 && _artSlave.weight > -31>> <<set _torsoSize = "Chubby">> <<elseif _artSlave.weight <= -31>> <<set _torsoSize = "Normal">> <</if>> <<elseif _artSlave.waist < 96 && _artSlave.waist >= 41>> <<if _artSlave.weight >= 131>> <<set _torsoSize = "Obese">> <<elseif _artSlave.weight < 131 && _artSlave.weight >= 31>> <<set _torsoSize = "Fat">> <<elseif _artSlave.weight < 31 && _artSlave.weight >= 0>> <<set _torsoSize = "Chubby">> <<elseif _artSlave.weight < 0 && _artSlave.weight > -96>> <<set _torsoSize = "Normal">> <<elseif _artSlave.weight <= -96>> <<set _torsoSize = "Hourglass">> <</if>> <<elseif _artSlave.waist < 41 && _artSlave.waist >= 11>> <<if _artSlave.weight >= 161>> <<set _torsoSize = "Obese">> <<elseif _artSlave.weight < 161 && _artSlave.weight >= 96>> <<set _torsoSize = "Fat">> <<elseif _artSlave.weight < 96 && _artSlave.weight >= 11>> <<set _torsoSize = "Chubby">> <<elseif _artSlave.weight < 11 && _artSlave.weight > -31>> <<set _torsoSize = "Normal">> <<elseif _artSlave.weight <= -31>> <<set _torsoSize = "Hourglass">> <</if>> <<elseif _artSlave.waist < 11 && _artSlave.waist > -11>> <<if _artSlave.weight >= 191>> <<set _torsoSize = "Obese">> <<elseif _artSlave.weight < 191 && _artSlave.weight >= 131>> <<set _torsoSize = "Fat">> <<elseif _artSlave.weight < 131 && _artSlave.weight >= 31>> <<set _torsoSize = "Chubby">> <<elseif _artSlave.weight < 31 && _artSlave.weight >= 0>> <<set _torsoSize = "Normal">> <<elseif _artSlave.weight < 0 && _artSlave.weight > -96>> <<set _torsoSize = "Hourglass">> <<elseif _artSlave.weight <= -96>> <<set _torsoSize = "Unnatural">> <</if>> <<elseif _artSlave.waist <= -11 && _artSlave.waist > -41>> <<if _artSlave.weight >= 161>> <<set _torsoSize = "Fat">> <<elseif _artSlave.weight < 161 && _artSlave.weight >= 96>> <<set _torsoSize = "Chubby">> <<elseif _artSlave.weight < 96 && _artSlave.weight >= 11>> <<set _torsoSize = "Normal">> <<elseif _artSlave.weight < 11 && _artSlave.weight > -31>> <<set _torsoSize = "Hourglass">> <<elseif _artSlave.weight <= -31>> <<set _torsoSize = "Unnatural">> <</if>> <<elseif _artSlave.waist <= -41 && _artSlave.waist > -96>> <<if _artSlave.weight >= 191>> <<set _torsoSize = "Fat">> <<elseif _artSlave.weight < 191 && _artSlave.weight >= 131>> <<set _torsoSize = "Chubby">> <<elseif _artSlave.weight < 131 && _artSlave.weight >= 31>> <<set _torsoSize = "Normal">> <<elseif _artSlave.weight < 31 && _artSlave.weight > -11>> <<set _torsoSize = "Hourglass">> <<elseif _artSlave.weight <= -11>> <<set _torsoSize = "Unnatural">> <</if>> <<elseif _artSlave.waist <= -96>> <<if _artSlave.weight >= 161>> <<set _torsoSize = "Chubby">> <<elseif _artSlave.weight < 161 && _artSlave.weight >= 96>> <<set _torsoSize = "Normal">> <<elseif _artSlave.weight < 96 && _artSlave.weight > 0>> <<set _torsoSize = "Hourglass">> <<elseif _artSlave.weight <= 0>> <<set _torsoSize = "Unnatural">> <</if>> <</if>> <<set _art = "Art_Vector_Torso_"+_torsoSize >> <<include _art >>
amomynous0/fc
src/art/vector/Torso.tw
tw
bsd-3-clause
3,432
:: Art_Vector_ArmFat_Left_High [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccc" id="path7355" class="skin" d="m 359.7,208 c 16.38299,3.17157 64.84168,-35.50465 77.54168,-38.30465 -28.1,-11.8 -20.5169,-21.01665 -67.2169,-52.51665 0,0 -42.12478,8.1213 -43.52478,-7.6787 C 323,69.600003 357.6,87.000003 374.9,99.600003 389.7,100.8 486.3,157.4 482.3,170.9 c -6.1,20.6 -84.8,65.8 -114.7,81.4 -49.9,-6.5 -28.8,-47.8 -7.9,-44.3"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/ArmFat_Left_High.tw
tw
bsd-3-clause
509
:: Art_Vector_ArmFat_Left_Low [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccc" id="path7359" class="skin" d="m 353.4,255 c 14.74021,27.56002 19.11226,59.16617 27.01226,77.36617 -15.30952,31.61467 -24.40245,54.91908 -28.06428,79.6298 0,0 -39.74798,-13.49597 -41.14798,2.30403 -3.5,39.9 28.5,17.8 48.4,9.9 12.4,-4.9 45.77506,-58.82967 55.78235,-97.15882 C 418.48235,315.74118 395.7,237.4 378,220 c -8.1,-7.9 -9.6,-4.9 -16.6,-9.2 -50.1,6.3 -29,47.7 -8,44.2"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/ArmFat_Left_Low.tw
tw
bsd-3-clause
543
:: Art_Vector_ArmFat_Left_Mid [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccc" id="path7363" class="skin" d="m 353.94055,255.75216 c 19.64921,17.70888 12.05649,49.19135 17.7,62.1 C 353.29271,310.35354 335.46811,312.4246 283,313.5 c 0,0 -36.7,-17.8 -37.9,-2.2 -3,39.3 20.4,22.7 37.9,14.8 15.01595,6.73485 120.8,33 124.8,16.6 2.8,-11.1 -12.7,-103.2 -28.2,-120.3 -7.1,-7.8 -8.4,-4.8 -14.5,-9.1 -43.7,6.4 -25.3,47.1 -7,43.7"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/ArmFat_Left_Mid.tw
tw
bsd-3-clause
509
:: Art_Vector_ArmFat_Left_Rebel [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccccccccccccccccc" id="path7367" class="skin" d="m 358.05,247.8 c 9.9,3.7 9.74165,11.18206 39.84165,25.68206 28.20186,16.59843 39.42329,23.06542 61.83652,29.41206 21.41162,8.84351 44.18778,4.09722 44.18778,4.09722 L 508.4,313.6 c 1.8,3.2 3.7,7.7 4.7,13.4 0.9,5.3 0.4,8.9 1.3,9.1 1.1,0.2 3.7,-4.2 3.9,-9.1 0.2,-5.5 -2.7,-8.8 -1.3,-10.3 1.3,-1.3 3.7,1 6.5,0.1 5.7,-1.8 9.04118,-14.01176 9.14118,-15.51176 C 532.74118,296.58824 530,290.1 526.4,286.7 c -4.4,-4.1 -10.6,-1 -20,-0.7 -9.4,0.4 -22.56378,-7.71162 -45.46378,-17.91162 -10.4,-4.6 -15.01269,-4.87073 -22.01269,-8.97073 C 425.52353,251.31765 416.9,243.9 410.6,238 384.4,219 375,213.3 372.3,212.6 c -0.4,-0.1 -3.1,-0.8 -6.5,-2.3 -0.9,-0.4 -2,-0.9 -3.2,-1.6 -11.7,3 -19,6.2 -23.5,9.2 -3.9,2.7 -6.8,5.7 -6.5,8.7 0.5,5.6 8.65,14.8 25.45,21.2 z"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/ArmFat_Left_Rebel.tw
tw
bsd-3-clause
958
:: Art_Vector_ArmFat_Left_Thumb_Down [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccccccc" id="path7371" class="skin" d="m 354.7,252.8 c 16.27647,11.07059 4.68823,71.22941 12.58823,89.42941 13.9,6.4 33.92941,0.006 56.67647,-23.61764 0,0 15.25922,-35.57988 8.05922,-38.57988 C 430.32392,279.33189 424.8,278 424.8,278 c 0,-7.6 0.50588,-22.97754 -2.39412,-23.20146 -2.4,0.4 -1.10588,15.70146 -2.60588,23.10146 -16.91162,-0.17973 -7.6,20.6 -6.9,30.8 -7.17868,2.6967 -8.93604,0.37477 -18.03604,4.32183 3.1,-11.3 2.23604,-77.92183 -15.56396,-95.22183 -8.1,-7.9 -9.6,-4.9 -16.6,-9.2 -50,6.3 -29,47.6 -8,44.2"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/ArmFat_Left_Thumb_Down.tw
tw
bsd-3-clause
688
:: Art_Vector_ArmFat_Right_High [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="cccccccc" id="path7343" class="skin" d="M 281.8,204.7 C 261.76777,199.61472 239.61677,170.01201 218.81677,162.21201 241.61347,150.76556 254.10229,134.05736 275.7,106.8 c 0,0 42,18 43.4,2.2 3.5,-39.9 -31.1,-22.5 -48.4,-9.9 -14.8,1.2 -92.9,44.3 -88.9,57.8 6.1,20.6 48.4,58 75.4,76 8.9,4.4 28.5,-13.6 24.6,-28.2"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/ArmFat_Right_High.tw
tw
bsd-3-clause
468
:: Art_Vector_ArmFat_Right_Low [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccc" id="path7347" class="skin" d="m 266.2,253.7 c -28.3,-5.9 -23.73622,54.91595 -30.63622,72.61595 4.3,15.6 16.93052,44.23553 29.63622,84.28405 0,0 36.2,-17.5 37.3,-2.1 3,38.7 -24.5,17.2 -41.7,9.6 C 250.1,413.3 211.93661,341.6754 209.07647,321 206.37647,310.1 229.7,236.8 245,219.9 c 6.9,-7.7 8.3,-4.7 14.3,-8.9 43,6 24.9,46 6.9,42.7"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/ArmFat_Right_Low.tw
tw
bsd-3-clause
499
:: Art_Vector_ArmFat_Right_Mid [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path sodipodi:nodetypes="ccccccccc" id="path7351" class="skin" d="m 267.4,253.7 c -28.3,-5.9 -22.8,53.7 -29.6,71.4 18.2,0.4 51.1,-12.2 103.6,-15.7 0,0 36.2,-17.5 37.3,-2.1 3,38.7 -20.2,22.3 -37.3,14.6 -18.04351,17.54942 -130.23052,37.90729 -134.13052,21.80729 C 204.56948,332.80729 230.9,236.6 246.2,219.8 c 6.9,-7.7 8.3,-4.7 14.3,-8.9 43.1,6.1 25,46.1 6.9,42.8"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/ArmFat_Right_Mid.tw
tw
bsd-3-clause
495
:: Art_Vector_Arm_Left_High [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 359.7,208 c 33,6 74.74118,-36.21176 87.44118,-39.01176 -28.1,-11.8 -29.70929,-25.61284 -76.40929,-57.11284 0,0 -42.83189,13.4246 -44.23189,-2.3754 C 323,69.600003 357.6,87.000003 374.9,99.600003 389.7,100.8 486.3,157.4 482.3,170.9 c -6.1,20.6 -84.8,65.8 -114.7,81.4 -49.9,-6.5 -28.8,-47.8 -7.9,-44.3" class="skin" id="L_2_" sodipodi:nodetypes="cccccccc"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Left_High.tw
tw
bsd-3-clause
493
:: Art_Vector_Arm_Left_Low [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 353.4,255 c 28.88235,9.88235 29.01176,54.92353 36.91176,73.12353 -18.13795,26.66492 -21.57403,55.62619 -37.96378,83.87244 0,0 -39.74798,-13.49597 -41.14798,2.30403 -3.5,39.9 28.5,17.8 48.4,9.9 12.4,-4.9 45.77506,-58.82967 55.78235,-97.15882 C 418.48235,315.74118 395.7,237.4 378,220 c -8.1,-7.9 -9.6,-4.9 -16.6,-9.2 -50.1,6.3 -29,47.7 -8,44.2" class="skin" id="L" sodipodi:nodetypes="ccccccccc"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Left_Low.tw
tw
bsd-3-clause
533
:: Art_Vector_Arm_Left_Mid [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 353.94055,255.75216 c 19.64921,17.70888 18.05649,54.69135 28.7,67.6 C 362.79271,313.35354 335.46811,312.4246 283,313.5 c 0,0 -36.7,-17.8 -37.9,-2.2 -3,39.3 20.4,22.7 37.9,14.8 15.01595,6.73485 120.8,33 124.8,16.6 2.8,-11.1 -12.7,-103.2 -28.2,-120.3 -7.1,-7.8 -8.4,-4.8 -14.5,-9.1 -43.7,6.4 -25.3,47.1 -7,43.7" class="skin" id="L_1_" sodipodi:nodetypes="ccccccccc"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Left_Mid.tw
tw
bsd-3-clause
502
:: Art_Vector_Arm_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Left_None.tw
tw
bsd-3-clause
127
:: Art_Vector_Arm_Left_Rebel [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 361.3,240.3 c 9.9,3.7 9.74165,11.18206 39.84165,25.68206 28.20186,16.59843 39.42329,23.06542 61.83652,29.41206 21.41162,8.84351 33.73778,1.29722 40.93778,11.59722 3.9,5.5 4.48405,6.60866 4.48405,6.60866 1.8,3.2 3.7,7.7 4.7,13.4 0.9,5.3 0.4,8.9 1.3,9.1 1.1,0.2 3.7,-4.2 3.9,-9.1 0.2,-5.5 -2.7,-8.8 -1.3,-10.3 1.3,-1.3 3.7,1 6.5,0.1 5.7,-1.8 9.04118,-14.01176 9.14118,-15.51176 C 532.74118,296.58824 530,290.1 526.4,286.7 c -4.4,-4.1 -10.6,-1 -20,-0.7 -9.4,0.4 -22.56378,-7.71162 -45.46378,-17.91162 -10.4,-4.6 -15.01269,-4.87073 -22.01269,-8.97073 C 425.52353,251.31765 416.9,243.9 410.6,238 384.4,219 375,213.3 372.3,212.6 c -0.4,-0.1 -3.1,-0.8 -6.5,-2.3 -0.9,-0.4 -2,-0.9 -3.2,-1.6 -11.7,3 -19,6.2 -23.5,9.2 -3.9,2.7 -6.8,5.7 -6.5,8.7 0.5,5.6 11.9,7.3 28.7,13.7 z" class="skin" id="path4819" sodipodi:nodetypes="cccccccccccccccccccccc"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Left_Rebel.tw
tw
bsd-3-clause
977
:: Art_Vector_Arm_Left_Thumb_Down [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 354.7,252.8 c 16.27647,11.07059 4.68823,71.22941 12.58823,89.42941 13.9,6.4 33.92941,0.006 56.67647,-23.61764 0,0 15.25922,-35.57988 8.05922,-38.57988 C 430.32392,279.33189 424.8,278 424.8,278 c 0,-7.6 0.50588,-22.97754 -2.39412,-23.20146 -2.4,0.4 -1.10588,15.70146 -2.60588,23.10146 -16.91162,-0.17973 -7.6,20.6 -6.9,30.8 -9.3,8 -15.3,8.15294 -24.4,12.1 3.1,-11.3 8.6,-85.7 -9.2,-103 -8.1,-7.9 -9.6,-4.9 -16.6,-9.2 -50,6.3 -29,47.6 -8,44.2" class="skin" id="path4821" sodipodi:nodetypes="cccccccccccc"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Left_Thumb_Down.tw
tw
bsd-3-clause
648
:: Art_Vector_Arm_Outfit_Battlearmor_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Battlearmor_Left_None.tw
tw
bsd-3-clause
146
:: Art_Vector_Arm_Outfit_Battlearmor_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Battlearmor_Right_None.tw
tw
bsd-3-clause
147
:: Art_Vector_Arm_Outfit_Battledress_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Battledress_Left_None.tw
tw
bsd-3-clause
146
:: Art_Vector_Arm_Outfit_Battledress_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Battledress_Right_None.tw
tw
bsd-3-clause
147
:: Art_Vector_Arm_Outfit_BiyelgeeCostume_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_BiyelgeeCostume_Left_None.tw
tw
bsd-3-clause
150
:: Art_Vector_Arm_Outfit_BiyelgeeCostume_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_BiyelgeeCostume_Right_None.tw
tw
bsd-3-clause
151
:: Art_Vector_Arm_Outfit_Burkini_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Burkini_Left_None.tw
tw
bsd-3-clause
142
:: Art_Vector_Arm_Outfit_Burkini_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Burkini_Right_None.tw
tw
bsd-3-clause
143
:: Art_Vector_Arm_Outfit_Cheerleader_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Cheerleader_Left_None.tw
tw
bsd-3-clause
146
:: Art_Vector_Arm_Outfit_Cheerleader_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Cheerleader_Right_None.tw
tw
bsd-3-clause
147
:: Art_Vector_Arm_Outfit_ClubslutNetting_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_ClubslutNetting_Left_None.tw
tw
bsd-3-clause
150
:: Art_Vector_Arm_Outfit_ClubslutNetting_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_ClubslutNetting_Right_None.tw
tw
bsd-3-clause
151
:: Art_Vector_Arm_Outfit_Conservative_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Conservative_Left_None.tw
tw
bsd-3-clause
147
:: Art_Vector_Arm_Outfit_Conservative_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Conservative_Right_None.tw
tw
bsd-3-clause
148
:: Art_Vector_Arm_Outfit_CutoffsAndATshirt_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_CutoffsAndATshirt_Left_None.tw
tw
bsd-3-clause
152
:: Art_Vector_Arm_Outfit_CutoffsAndATshirt_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_CutoffsAndATshirt_Right_None.tw
tw
bsd-3-clause
153
:: Art_Vector_Arm_Outfit_Dirndl_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Dirndl_Left_None.tw
tw
bsd-3-clause
141
:: Art_Vector_Arm_Outfit_Dirndl_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Dirndl_Right_None.tw
tw
bsd-3-clause
142
:: Art_Vector_Arm_Outfit_HijabAndAbaya_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_HijabAndAbaya_Left_None.tw
tw
bsd-3-clause
148
:: Art_Vector_Arm_Outfit_HijabAndAbaya_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_HijabAndAbaya_Right_None.tw
tw
bsd-3-clause
149
:: Art_Vector_Arm_Outfit_Huipil_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Huipil_Left_None.tw
tw
bsd-3-clause
141
:: Art_Vector_Arm_Outfit_Huipil_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Huipil_Right_None.tw
tw
bsd-3-clause
142
:: Art_Vector_Arm_Outfit_Kimono_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Kimono_Left_None.tw
tw
bsd-3-clause
141
:: Art_Vector_Arm_Outfit_Kimono_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Kimono_Right_None.tw
tw
bsd-3-clause
142
:: Art_Vector_Arm_Outfit_KlanRobe_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_KlanRobe_Left_None.tw
tw
bsd-3-clause
143
:: Art_Vector_Arm_Outfit_KlanRobe_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_KlanRobe_Right_None.tw
tw
bsd-3-clause
144
:: Art_Vector_Arm_Outfit_Lederhosen_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Lederhosen_Left_None.tw
tw
bsd-3-clause
145
:: Art_Vector_Arm_Outfit_Lederhosen_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Lederhosen_Right_None.tw
tw
bsd-3-clause
146
:: Art_Vector_Arm_Outfit_LongQipao_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_LongQipao_Left_None.tw
tw
bsd-3-clause
144
:: Art_Vector_Arm_Outfit_LongQipao_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_LongQipao_Right_None.tw
tw
bsd-3-clause
145
:: Art_Vector_Arm_Outfit_MilitaryUniform_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_MilitaryUniform_Left_None.tw
tw
bsd-3-clause
150
:: Art_Vector_Arm_Outfit_MilitaryUniform_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_MilitaryUniform_Right_None.tw
tw
bsd-3-clause
151
:: Art_Vector_Arm_Outfit_Mounty_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Mounty_Left_None.tw
tw
bsd-3-clause
141
:: Art_Vector_Arm_Outfit_Mounty_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Mounty_Right_None.tw
tw
bsd-3-clause
142
:: Art_Vector_Arm_Outfit_NiceBusinessAttire_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_NiceBusinessAttire_Left_None.tw
tw
bsd-3-clause
153
:: Art_Vector_Arm_Outfit_NiceBusinessAttire_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_NiceBusinessAttire_Right_None.tw
tw
bsd-3-clause
154
:: Art_Vector_Arm_Outfit_NiceMaid_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_NiceMaid_Left_None.tw
tw
bsd-3-clause
143
:: Art_Vector_Arm_Outfit_NiceMaid_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_NiceMaid_Right_None.tw
tw
bsd-3-clause
144
:: Art_Vector_Arm_Outfit_NiceNurse_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_NiceNurse_Left_None.tw
tw
bsd-3-clause
144
:: Art_Vector_Arm_Outfit_NiceNurse_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_NiceNurse_Right_None.tw
tw
bsd-3-clause
145
:: Art_Vector_Arm_Outfit_RedArmyUniform_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_RedArmyUniform_Left_None.tw
tw
bsd-3-clause
149
:: Art_Vector_Arm_Outfit_RedArmyUniform_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_RedArmyUniform_Right_None.tw
tw
bsd-3-clause
150
:: Art_Vector_Arm_Outfit_Schoolgirl_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Schoolgirl_Left_None.tw
tw
bsd-3-clause
145
:: Art_Vector_Arm_Outfit_Schoolgirl_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Schoolgirl_Right_None.tw
tw
bsd-3-clause
146
:: Art_Vector_Arm_Outfit_SchutzstaffelUniform_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SchutzstaffelUniform_Left_None.tw
tw
bsd-3-clause
155
:: Art_Vector_Arm_Outfit_SchutzstaffelUniform_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SchutzstaffelUniform_Right_None.tw
tw
bsd-3-clause
156
:: Art_Vector_Arm_Outfit_SlaveGown_Left_High [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="display:inline;fill-opacity:1;fill-rule:evenodd;fill:#a0a0a0;opacity:1;stroke-dasharray:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0;stroke-width:3.0515182;stroke:#000000" d="m 280.55286,844.46879 c 0.28505,-2.48961 -4.51878,-175.98914 5.68472,-209.40858 3.85895,-12.63916 44.66133,-6.13065 47.67975,-0.008 7.02311,14.24672 8.30776,209.13431 8.12323,210.46482 -35.07428,0.57305 -32.11287,-3.80572 -61.4877,-1.0486 z" id="path4164-0" sodipodi:nodetypes="cssccc"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SlaveGown_Left_High.tw
tw
bsd-3-clause
658
:: Art_Vector_Arm_Outfit_SlaveGown_Left_Low [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="display:inline;fill-opacity:1;fill-rule:evenodd;fill:#a0a0a0;opacity:1;stroke-dasharray:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0;stroke-width:3.0515182;stroke:#000000" d="m 280.55286,844.46879 c 0.28505,-2.48961 -4.51878,-175.98914 5.68472,-209.40858 3.85895,-12.63916 44.66133,-6.13065 47.67975,-0.008 7.02311,14.24672 8.30776,209.13431 8.12323,210.46482 -35.07428,0.57305 -32.11287,-3.80572 -61.4877,-1.0486 z" id="path4164-0-3" sodipodi:nodetypes="cssccc"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SlaveGown_Left_Low.tw
tw
bsd-3-clause
659
:: Art_Vector_Arm_Outfit_SlaveGown_Left_Mid [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="display:inline;fill-opacity:1;fill-rule:evenodd;fill:#a0a0a0;opacity:1;stroke-dasharray:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0;stroke-width:3.0515182;stroke:#000000" d="m 280.55286,844.46879 c 0.28505,-2.48961 -4.51878,-175.98914 5.68472,-209.40858 3.85895,-12.63916 44.66133,-6.13065 47.67975,-0.008 7.02311,14.24672 8.30776,209.13431 8.12323,210.46482 -35.07428,0.57305 -32.11287,-3.80572 -61.4877,-1.0486 z" id="path4164-0-3-4" sodipodi:nodetypes="cssccc"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SlaveGown_Left_Mid.tw
tw
bsd-3-clause
661
:: Art_Vector_Arm_Outfit_SluttyBusinessAttire_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyBusinessAttire_Left_None.tw
tw
bsd-3-clause
155
:: Art_Vector_Arm_Outfit_SluttyBusinessAttire_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyBusinessAttire_Right_None.tw
tw
bsd-3-clause
156
:: Art_Vector_Arm_Outfit_SluttyJewelry_Left_High [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 377.90977,100.30266 c 1.10112,-1.34442 2.23302,-0.758325 1.99471,0.66627 -0.5891,2.58416 -2.69292,8.31146 -5.82622,12.99397 -1.22684,1.8334 -2.74606,0.83403 -1.97293,-0.59898 1.38771,-2.57417 3.99368,-6.61437 5.80446,-13.06131 z" id="path5995-5-8-8" sodipodi:nodetypes="ccscc" style="fill-opacity:1;fill:#ffa000"/><path d="m 382.55642,101.56815 c 1.10112,-1.48617 2.23302,-0.83827 1.99471,0.73652 -0.5891,2.85663 -2.69292,9.1878 -5.82622,14.36403 -1.22684,2.0267 -2.74606,0.92196 -1.97293,-0.66214 1.38771,-2.84558 3.99368,-7.31177 5.80446,-14.43846 z" id="path5995-5-8-8-5" sodipodi:nodetypes="ccscc" style="fill-opacity:1;fill:#ffa000"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyJewelry_Left_High.tw
tw
bsd-3-clause
798
:: Art_Vector_Arm_Outfit_SluttyJewelry_Left_Low [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 352.62537,412.01247 c -1.00159,-1.4854 -0.16602,-2.48663 1.12509,-1.86233 2.30321,1.29284 7.21028,4.9746 10.87243,9.4303 1.43388,1.74461 0.11079,3.0316 -1.05594,1.85803 -2.09609,-2.10704 -5.28003,-5.85178 -10.94163,-9.42604 z" id="path5995-5-8-8-7" sodipodi:nodetypes="ccscc" style="fill-opacity:1;fill:#ffa000"/><path d="m 354.97466,407.59764 c -1.13592,-1.52327 -0.24177,-2.50797 1.19168,-1.84356 2.56142,1.36562 8.04078,5.20869 12.17083,9.79626 1.61706,1.79625 0.19411,3.0551 -1.1158,1.84116 -2.3533,-2.17953 -5.94095,-6.03806 -12.24675,-9.79389 z" id="path5995-5-8-8-5-6" sodipodi:nodetypes="ccscc" style="fill-opacity:1;fill:#ffa000"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyJewelry_Left_Low.tw
tw
bsd-3-clause
798
:: Art_Vector_Arm_Outfit_SluttyJewelry_Left_Mid [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyJewelry_Left_Mid.tw
tw
bsd-3-clause
147
:: Art_Vector_Arm_Outfit_SluttyJewelry_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyJewelry_Left_None.tw
tw
bsd-3-clause
148
:: Art_Vector_Arm_Outfit_SluttyJewelry_Left_Rebel [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 497.85835,302.44366 c -0.97182,1.73176 -2.15685,1.22363 -2.05367,-0.46917 0.34361,-3.09478 1.90177,-10.07604 4.5861,-16.00018 1.05106,-2.31957 2.6617,-1.39027 2.02558,0.39428 -1.14156,3.20547 -3.36035,8.30206 -4.55802,16.07513 z" id="path5995-5-8-8-9-1" sodipodi:nodetypes="ccscc" style="fill-opacity:1;fill:#ffa000"/><path d="m 493.10144,301.68391 c -0.95842,1.89659 -2.14907,1.31713 -2.06033,-0.55085 0.31784,-3.41158 1.81893,-11.09494 4.45661,-17.59314 1.03278,-2.54429 2.65336,-1.4925 2.03155,0.46773 -1.11591,3.52103 -3.29443,9.11291 -4.42785,17.67632 z" id="path5995-5-8-8-5-49-4" sodipodi:nodetypes="ccscc" style="fill-opacity:1;fill:#ffa000"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyJewelry_Left_Rebel.tw
tw
bsd-3-clause
811
:: Art_Vector_Arm_Outfit_SluttyJewelry_Left_Thumb [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 423.06882,319.08855 c 0.86757,1.50574 -0.0813,2.35687 -1.32924,1.62969 -2.20829,-1.46573 -6.82,-5.46076 -10.09013,-10.04875 -1.28039,-1.79642 0.19207,-2.8635 1.25861,-1.63314 1.91624,2.20909 4.77233,6.07653 10.1608,10.05224 z" id="path5995-5-8-8-9" sodipodi:nodetypes="ccscc" style="fill-opacity:1;fill:#ffa000"/><path d="m 420.24038,322.98634 c 1.00015,1.55592 -0.006,2.38517 -1.39495,1.60483 -2.46311,-1.56219 -7.63958,-5.77098 -11.37146,-10.53376 -1.46117,-1.86484 0.10983,-2.89461 1.31768,-1.61078 2.17007,2.30517 5.42457,6.32341 11.44877,10.53975 z" id="path5995-5-8-8-5-49" sodipodi:nodetypes="ccscc" style="fill-opacity:1;fill:#ffa000"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyJewelry_Left_Thumb.tw
tw
bsd-3-clause
804
:: Art_Vector_Arm_Outfit_SluttyJewelry_Right_High [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 261.57943,100.89551 c -1.10112,-1.344423 -2.23302,-0.75833 -1.99471,0.66627 0.5891,2.58416 2.69292,8.31146 5.82622,12.99397 1.22684,1.8334 2.74606,0.83403 1.97293,-0.59898 -1.38771,-2.57417 -3.99368,-6.61437 -5.80446,-13.06131 z" id="path5995-5-8-8-0" sodipodi:nodetypes="ccscc" style="fill-opacity:1;fill:#ffa000"/><path d="m 256.93278,102.161 c -1.10112,-1.48617 -2.23302,-0.83827 -1.99471,0.73652 0.5891,2.85663 2.69292,9.1878 5.82622,14.36403 1.22684,2.0267 2.74606,0.92196 1.97293,-0.66214 -1.38771,-2.84558 -3.99368,-7.31177 -5.80446,-14.43846 z" id="path5995-5-8-8-5-4" sodipodi:nodetypes="ccscc" style="fill-opacity:1;fill:#ffa000"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyJewelry_Right_High.tw
tw
bsd-3-clause
801
:: Art_Vector_Arm_Outfit_SluttyJewelry_Right_Low [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyJewelry_Right_Low.tw
tw
bsd-3-clause
148
:: Art_Vector_Arm_Outfit_SluttyJewelry_Right_Mid [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyJewelry_Right_Mid.tw
tw
bsd-3-clause
148
:: Art_Vector_Arm_Outfit_SluttyJewelry_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyJewelry_Right_None.tw
tw
bsd-3-clause
149
:: Art_Vector_Arm_Outfit_SluttyNurse_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyNurse_Left_None.tw
tw
bsd-3-clause
146
:: Art_Vector_Arm_Outfit_SluttyNurse_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyNurse_Right_None.tw
tw
bsd-3-clause
147
:: Art_Vector_Arm_Outfit_SluttyQipao_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyQipao_Left_None.tw
tw
bsd-3-clause
146
:: Art_Vector_Arm_Outfit_SluttyQipao_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttyQipao_Right_None.tw
tw
bsd-3-clause
147
:: Art_Vector_Arm_Outfit_SluttySchutzstaffelUniform_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttySchutzstaffelUniform_Left_None.tw
tw
bsd-3-clause
161
:: Art_Vector_Arm_Outfit_SluttySchutzstaffelUniform_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_SluttySchutzstaffelUniform_Right_None.tw
tw
bsd-3-clause
162
:: Art_Vector_Arm_Outfit_Western_Left_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Western_Left_None.tw
tw
bsd-3-clause
142
:: Art_Vector_Arm_Outfit_Western_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Outfit_Western_Right_None.tw
tw
bsd-3-clause
143
:: Art_Vector_Arm_Right_High [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="M 281.8,204.7 C 260,208.1 230.03529,168.97647 207.73529,155.67647 235.83529,143.87647 229,138.3 275.7,106.8 c 0,0 42,18 43.4,2.2 3.5,-39.9 -31.1,-22.5 -48.4,-9.9 -14.8,1.2 -92.9,44.3 -88.9,57.8 6.1,20.6 48.4,58 75.4,76 8.9,4.4 28.5,-13.6 24.6,-28.2" class="skin" id="R_2_" sodipodi:nodetypes="cccccccc"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Right_High.tw
tw
bsd-3-clause
441
:: Art_Vector_Arm_Right_Low [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 266.2,253.7 c -28.3,-5.9 -23.73622,54.91595 -30.63622,72.61595 4.3,15.6 16.93052,44.23553 29.63622,84.28405 0,0 36.2,-17.5 37.3,-2.1 3,38.7 -24.5,17.2 -41.7,9.6 C 250.1,413.3 211.93661,341.6754 209.07647,321 206.37647,310.1 229.7,236.8 245,219.9 c 6.9,-7.7 8.3,-4.7 14.3,-8.9 43,6 24.9,46 6.9,42.7" class="skin" id="R" sodipodi:nodetypes="ccccccccc"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Right_Low.tw
tw
bsd-3-clause
489
:: Art_Vector_Arm_Right_Mid [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 267.4,253.7 c -28.3,-5.9 -22.8,53.7 -29.6,71.4 18.2,0.4 51.1,-12.2 103.6,-15.7 0,0 36.2,-17.5 37.3,-2.1 3,38.7 -20.2,22.3 -37.3,14.6 -18.04351,17.54942 -130.23052,37.90729 -134.13052,21.80729 C 204.56948,332.80729 230.9,236.6 246.2,219.8 c 6.9,-7.7 8.3,-4.7 14.3,-8.9 43.1,6.1 25,46.1 6.9,42.8" class="skin" id="R_1_" sodipodi:nodetypes="ccccccccc"/></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Right_Mid.tw
tw
bsd-3-clause
488
:: Art_Vector_Arm_Right_None [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Arm_Right_None.tw
tw
bsd-3-clause
128
:: Art_Vector_Balls [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g5023"><path style="fill:#000000" sodipodi:nodetypes="ccccccc" d="m 257.66607,496.61899 c 4.14944,1.13097 8.46586,0.43899 9.39342,0.34412 7.94674,3.97257 15.70719,1.85262 19.64687,-6.1883 2.20344,-4.85122 -0.36417,-11.7545 -3.29443,-19.13452 -2.1949,-5.45385 -5.06156,-11.54066 -6.62573,-13.27699 -9.84786,-9.91781 -13.13813,-2.67766 -21.91172,15.67268 -4.86509,8.27714 -8.95386,19.27496 2.79159,22.58301 z" id="path1992-1"/><path sodipodi:nodetypes="ccccccc" d="m 258.20272,495.47299 c 3.92914,1.10083 8.0164,0.42729 8.89473,0.33495 7.52486,3.86671 14.8733,1.80325 18.60382,-6.0234 2.08647,-4.72194 -0.0776,-11.80627 -2.85234,-18.98964 -2.07837,-5.30852 -4.29067,-11.23314 -5.77179,-12.9232 -9.32505,-9.65353 -13.21001,-2.2413 -21.51782,15.62006 -4.60678,8.05657 -8.4785,18.76133 2.6434,21.98123 z" class="skin scrotum" id="path1992"/></g></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Balls.tw
tw
bsd-3-clause
996
:: Art_Vector_Beauty_Mark [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"style="fill:#d76b93" id="g2484" transform="matrix(0.74324233,0,0,0.74324233,88.094305,25.377528)"><path style="fill:#000000;stroke-width:3.25451159" sodipodi:nodetypes="cscsc" d="m 301.7267,152.63908 c -1.06018,-0.0702 -1.45585,0.64632 -1.46547,1.34987 -0.0109,0.66473 0.31313,1.31328 1.18944,1.42365 1.15833,0.1024 1.48259,-0.52989 1.48785,-1.23705 0.004,-0.6226 -0.1682,-1.30797 -1.21182,-1.53647 z" id="path2452"/></g></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Beauty_Mark.tw
tw
bsd-3-clause
579
:: Art_Vector_Belly [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g7940"><path id="XMLID_543_" class="shadow" d="m 274.8,433.8 c 20.7,-1.5 47.7,-4.5 61.9,-42.4 13.1,-44.3 -27.8,-99.6 -59.9,-101.5 -40.1,6.2 -61.8,42.8 -63.9,96.9 2.2,31 33.1,49 61.9,47 z"/><path id="XMLID_544_" class="skin belly" 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 id="XMLID_545_" d="m 249.39747,396.08802 c 0.12486,1.70749 -0.62641,4.50894 -2.16866,4.62172 -1.54225,0.11277 -2.36338,-2.46164 -2.48824,-4.16913 -0.12486,-1.70749 0.67061,-4.35425 2.21286,-4.46703 1.54225,-0.11278 2.31918,2.30695 2.44404,4.01444 z" class="areola" sodipodi:nodetypes="scscs"/></g></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Belly.tw
tw
bsd-3-clause
865
:: Art_Vector_Belly_EP [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g5468"><path d="m 273.26793,433.3 c 18.21293,-1.21233 22.76299,-91.7608 15.71848,-140.70267 -15.50619,-0.97074 -17.14167,1.59939 -23.83364,6.17516 -10.25302,12.64188 -40.72912,35.78184 -37.75512,89.07498 1.77945,33.97955 25.30774,45.35489 45.87028,45.45253 z" class="shadow" id="path5461-8" sodipodi:nodetypes="ccccc"/><path d="m 274.8,433.8 c 18.42325,-1.2416 23.02585,-93.97641 15.9,-144.1 -6.5,-4.3 -19.2,-7.45 -20.9,0.75 -2.6,11.6 -44.9,33.3 -41.4,96.8 1.8,34.8 25.6,46.45 46.4,46.55 z" class="skin" id="path5461" sodipodi:nodetypes="ccccc"/><path sodipodi:nodetypes="scscs" class="areola" d="m 249.39747,396.08802 c 0.12486,1.70749 -0.62641,4.50894 -2.16866,4.62172 -1.54225,0.11277 -2.36338,-2.46164 -2.48824,-4.16913 -0.12486,-1.70749 0.67061,-4.35425 2.21286,-4.46703 1.54225,-0.11278 2.31918,2.30695 2.44404,4.01444 z" id="path5466"/></g></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Belly_EP.tw
tw
bsd-3-clause
1,006
:: Art_Vector_Belly_Outfit_Apron [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g5459" transform="matrix(1.014792,0,0,1.0059302,-4.1476732,-2.5734225)"><path id="path5455" class="shadow" d="m 274.8,433.8 c 20.7,-1.5 47.7,-4.5 61.9,-42.4 13.1,-44.3 -27.8,-99.6 -59.9,-101.5 -40.1,6.2 -61.8,42.8 -63.9,96.9 2.2,31 33.1,49 61.9,47 z"/><path style="fill-opacity:1;fill:#ff69b4" id="path5457" 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"/></g></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Belly_Outfit_Apron.tw
tw
bsd-3-clause
657
:: Art_Vector_Belly_Outfit_BallGown [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g6081" transform="matrix(1.014792,0,0,1.0059302,-4.1476732,-2.5734225)"><path d="m 274.8,433.8 c 20.7,-1.5 47.7,-4.5 61.9,-42.4 13.1,-44.3 -27.8,-99.6 -59.9,-101.5 -40.1,6.2 -61.8,42.8 -63.9,96.9 2.2,31 33.1,49 61.9,47 z" class="shadow" id="path6077"/><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 -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" id="path6079" style="fill-opacity:1;fill:#800000"/></g></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Belly_Outfit_BallGown.tw
tw
bsd-3-clause
660
:: Art_Vector_Belly_Outfit_Battlearmor [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"transform="matrix(1.014792,0,0,1.0059302,-4.1476732,-2.5734225)" id="g7386"><path id="path7382" class="shadow" d="m 274.8,433.8 c 20.7,-1.5 47.7,-4.5 61.9,-42.4 13.1,-44.3 -27.8,-99.6 -59.9,-101.5 -40.1,6.2 -61.8,42.8 -63.9,96.9 2.2,31 33.1,49 61.9,47 z"/><path style="fill-opacity:1;fill:#c8c8c8" id="path7384" 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"/></g></svg></html>' >>
amomynous0/fc
src/art/vector/layers/Belly_Outfit_Battlearmor.tw
tw
bsd-3-clause
663